Homework_4

Author

mya mitchem

##loading libraries and data

library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.1     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.1
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(lubridate)
library(tidycensus)
library(ggplot2)
library(dplyr)
data = read.csv(here::here("C:\\Users\\myami\\Documents\\Plan372\\plan372-exercises\\Homework_4\\airport_pairs (1).csv"))
head(data)
  origin dest passengers distancemiles                             origin_name
1    EWR  DTW     205100           488            Newark Liberty International
2    FLL  DTW     378280          1127 Fort Lauderdale-Hollywood International
3    JAX  DTW      68740           813              Jacksonville International
4    LAX  DTW     422730          1979               Los Angeles International
5    LAX  OAK     418340           337               Los Angeles International
6    LAX  PHX     662760           370               Los Angeles International
  origin_cbsa                        origin_cbsa_name
1       35620   New York-Newark-Jersey City, NY-NJ-PA
2       33100 Miami-Fort Lauderdale-Pompano Beach, FL
3       27260                        Jacksonville, FL
4       31080      Los Angeles-Long Beach-Anaheim, CA
5       31080      Los Angeles-Long Beach-Anaheim, CA
6       31080      Los Angeles-Long Beach-Anaheim, CA
                           dest_name dest_cbsa
1         Detroit Metro Wayne County     19820
2         Detroit Metro Wayne County     19820
3         Detroit Metro Wayne County     19820
4         Detroit Metro Wayne County     19820
5 Metropolitan Oakland International     41860
6   Phoenix Sky Harbor International     38060
                      dest_cbsa_name
1        Detroit-Warren-Dearborn, MI
2        Detroit-Warren-Dearborn, MI
3        Detroit-Warren-Dearborn, MI
4        Detroit-Warren-Dearborn, MI
5 San Francisco-Oakland-Berkeley, CA
6          Phoenix-Mesa-Chandler, AZ

#filtering the data by flights going to RDU and getting the sum of passengers

rdu_passengers = data |>
  filter(dest=="RDU")|>
  filter(passengers > 10000)|>
  summarize(rdu_passengers = sum(passengers))|>
  ungroup()
  
print(rdu_passengers)
  rdu_passengers
1        4968740

##departing RDU flights

rdu_departing = data |>
  filter(origin=="RDU")|>
  filter(passengers > 10000)|>
  summarize(rdu_departing = sum(passengers))|>
  ungroup()
  
print(rdu_departing)
  rdu_departing
1       4922060

#Each destination departing from RDU and Going to RDU and their passengers

passengers_origin_to_RDU = data |>
  filter(dest == "RDU")|>
  filter(passengers > 10000)|>
  group_by(origin)|>
  summarize(passengers_origin_to_RDU = (sum(passengers)))|>
  ungroup()
  
passengers_from_RDU = data |>
  filter(origin == "RDU")|>
  filter(passengers > 10000)|>
  group_by(dest)|>
  summarize(passengers_from_RDU = (sum(passengers)))|>
  ungroup()
  
print(passengers_origin_to_RDU)
# A tibble: 35 × 2
   origin passengers_origin_to_RDU
   <chr>                     <int>
 1 ATL                      537720
 2 AUS                       95450
 3 BNA                      149660
 4 BOS                      216900
 5 BUF                       11140
 6 BWI                      125660
 7 CLT                      378130
 8 DAL                       45370
 9 DCA                      128190
10 DEN                      220540
# ℹ 25 more rows
print(passengers_from_RDU)
# A tibble: 34 × 2
   dest  passengers_from_RDU
   <chr>               <int>
 1 ATL                540190
 2 AUS                101110
 3 BNA                141990
 4 BOS                215960
 5 BWI                130900
 6 CLT                370480
 7 DAL                 46530
 8 DCA                129930
 9 DEN                226520
10 DFW                215960
# ℹ 24 more rows
library(tidyverse)
library(tidycensus)
library(sf)
Linking to GEOS 3.12.1, GDAL 3.8.4, PROJ 9.3.1; sf_use_s2() is TRUE
library(stringr)
data = read.csv(here::here("C:\\Users\\myami\\Documents\\Plan372\\plan372-exercises\\Homework_4\\airport_pairs (1).csv"))
head(data)
  origin dest passengers distancemiles                             origin_name
1    EWR  DTW     205100           488            Newark Liberty International
2    FLL  DTW     378280          1127 Fort Lauderdale-Hollywood International
3    JAX  DTW      68740           813              Jacksonville International
4    LAX  DTW     422730          1979               Los Angeles International
5    LAX  OAK     418340           337               Los Angeles International
6    LAX  PHX     662760           370               Los Angeles International
  origin_cbsa                        origin_cbsa_name
1       35620   New York-Newark-Jersey City, NY-NJ-PA
2       33100 Miami-Fort Lauderdale-Pompano Beach, FL
3       27260                        Jacksonville, FL
4       31080      Los Angeles-Long Beach-Anaheim, CA
5       31080      Los Angeles-Long Beach-Anaheim, CA
6       31080      Los Angeles-Long Beach-Anaheim, CA
                           dest_name dest_cbsa
1         Detroit Metro Wayne County     19820
2         Detroit Metro Wayne County     19820
3         Detroit Metro Wayne County     19820
4         Detroit Metro Wayne County     19820
5 Metropolitan Oakland International     41860
6   Phoenix Sky Harbor International     38060
                      dest_cbsa_name
1        Detroit-Warren-Dearborn, MI
2        Detroit-Warren-Dearborn, MI
3        Detroit-Warren-Dearborn, MI
4        Detroit-Warren-Dearborn, MI
5 San Francisco-Oakland-Berkeley, CA
6          Phoenix-Mesa-Chandler, AZ

#loading the census data and creating a CSV file in excel.

census_data = load_variables(2021, "acs5")
write_csv(census_data, "census_data.csv")

#retrieve Popoulation data from Census

census = get_acs(
  geography = "cbsa",
  variables = c(
  "total_population" = "B01003_001",
   "age_distribution" = "B01001_002"),
  year = 2022,
  survey = "acs5", 
  output = "wide")
Getting data from the 2018-2022 5-year ACS
head(census)
# A tibble: 6 × 6
  GEOID NAME               total_populationE total_populationM age_distributionE
  <chr> <chr>                          <dbl>             <dbl>             <dbl>
1 10100 Aberdeen, SD Micr…             42292                NA             21066
2 10140 Aberdeen, WA Micr…             75672                NA             39090
3 10180 Abilene, TX Metro…            176656                NA             89507
4 10220 Ada, OK Micro Area             38116                NA             18629
5 10300 Adrian, MI Micro …             99263                NA             50546
6 10380 Aguadilla-Isabela…            308919                NA            149938
# ℹ 1 more variable: age_distributionM <dbl>

#mutating the data to match the same types: characters and characters

data = data |>
  mutate(origin_cbsa = as.character(origin_cbsa))
data = data |>
  mutate(dest_cbsa = as.character(dest_cbsa))

joining the data of origin_cbsa to geoid

join_1 = data |>
  left_join(census, by = c ("origin_cbsa" = "GEOID"))
print(join_1)
     origin dest passengers distancemiles
1       EWR  DTW     205100           488
2       FLL  DTW     378280          1127
3       JAX  DTW      68740           813
4       LAX  DTW     422730          1979
5       LAX  OAK     418340           337
6       LAX  PHX     662760           370
7       LGA  DTW     382450           502
8       LGA  MIA     750650          1096
9       MCO  DTW     576280           957
10      MIA  DTW     204770          1145
11      MSY  DTW     116190           926
12      RSW  DTW     337790          1084
13      SEA  PDX     511400           129
14      SEA  PHX     795450          1107
15      SEA  SJC     455450           696
16      SLC  SJC     170090           584
17      TPA  DTW     327990           983
18      ATL  DAY     104470           432
19      ATL  BUF     166580           712
20      ATL  ECP     260070           240
21      ATL  MSP     488860           907
22      ATL  ONT     143830          1900
23      ATL  PVD     133160           903
24      ATL  JAX     615330           270
25      ATL  PBI     556290           545
26      ATL  AVL     136170           164
27      ATL  EWR     665820           746
28      ATL  EYW     156910           646
29      ATL  JAN     228330           341
30      ATL  LAX     796790          1947
31      ATL  PDX     195350          2172
32      ATL  RDU     537720           356
33      ATL  SMF     138670          2092
34      DTW  FLL     379710          1127
35      DTW  SFO     198170          2079
36      MSP  DEN     717630           680
37      MSP  EWR     203530          1008
38      MSP  SAN     237560          1532
39      MSP  SEA     428250          1399
40      SLC  SAN     308880           626
41      SLC  SMF     201930           532
42      SLC  PSC      58870           521
43      ATL  HPN     118010           780
44      ATL  LGA     911360           762
45      MSP  ATL     487210           907
46      MSP  DFW     378840           852
47      ATL  LFT      47170           503
48      ATL  AUS     475980           813
49      ATL  CVG     292510           373
50      ATL  MCI     335950           692
51      ATL  ORD     592170           606
52      ATL  SAN     313120          1892
53      ATL  SYR     124930           794
54      JFK  FLL     588470          1069
55      LAX  HNL     797610          2556
56      LGA  BUF      71730           292
57      MSP  FSD      95530           196
58      SLC  BZN     111160           347
59      SLC  SEA     424050           689
60      MSP  DSM      57090           232
61      MSP  BOS     299520          1124
62      MSP  LGA     250120          1020
63      MSP  FAR     127590           223
64      SLC  ATL     464470          1590
65      SLC  DCA      61750          1851
66      SLC  JFK     280840          1990
67      SLC  MSY      52980          1428
68      SLC  SAT      91220          1087
69      SLC  SNA     226830           588
70      SLC  FAT      74330           501
71      SLC  IDA      82980           188
72      SLC  PSP      62640           541
73      ATL  GPT      99980           352
74      ATL  BOS     577460           946
75      ATL  MCO    1143930           404
76      DTW  GSP      32370           508
77      ATL  ALB     125600           853
78      ATL  BDL     265460           859
79      ATL  DTW     609260           594
80      ATL  MKE     276270           669
81      ATL  DAL     353130           721
82      ATL  MEM     376700           332
83      ATL  BWI     631380           577
84      ATL  CMH     324310           447
85      ATL  MSY     525540           425
86      ATL  ORF     337330           516
87      ATL  PIT     304270           526
88      LAX  FLL     297470          2343
89      LAX  MCO     454250          2218
90      LAX  LAS    1046680           236
91      LAX  SAN      49300           109
92      LAX  SMF     349900           373
93      MSP  RDU     126900           980
94      MSP  CMH      79600           626
95      SEA  MCO     260490          2554
96      SLC  PDX     280140           630
97      ATL  OMA     196310           821
98      ATL  DAB     172330           366
99      ATL  IND     397560           432
100     ATL  JFK     344030           760
101     ATL  SLC     468780          1590
102     ATL  SRQ     349790           444
103     ATL  VPS     226580           250
104     DTW  BOS     264470           632
105     LAX  IND      80390          1814
106     LAX  TUS     147880           451
107     MSP  LAX     472490          1535
108     SLC  LAX     597950           590
109     ATL  MDW     363690           591
110     ATL  GSO     229550           306
111     ATL  CLE     363070           554
112     ATL  GRR     175370           640
113     ATL  PHL     640040           666
114     ATL  SNA     139330          1919
115     ATL  IAH     450090           689
116     DTW  AZO      36720           113
117     DTW  JFK      89350           509
118     LAS  JFK     408930          2248
119     LAX  DEN     790700           862
120     LAX  KOA     241250          2504
121     MCO  JFK     620540           944
122     MCO  LGA     638260           950
123     MIA  JFK     736430          1089
124     MIA  LGA     767670          1096
125     RSW  JFK     168630          1074
126     SEA  LIH     132790          2701
127     SEA  SLC     424580           689
128     SEA  SNA     409810           978
129     SEA  GEG     432600           224
130     SLC  GEG     148960           546
131     SLC  JAC      76580           205
132     SLC  OAK     231730           588
133     SLC  COS      44620           411
134     TPA  JFK     265210          1005
135     SAN  JFK     304560          2446
136     LAX  RNO     214400           391
137     SEA  BOI     301640           399
138     ATL  OAJ      56390           399
139     DTW  CVG      71580           229
140     DTW  SYR      64510           374
141     DTW  CLE      82190            95
142     DTW  TPA     334470           983
143     JFK  SYR      60720           209
144     JFK  LAS     391010          2248
145     MSP  DLH      77650           144
146     MSP  BDL     102230          1050
147     RDU  JFK     183080           427
148     SLC  AUS     167430          1086
149     SLC  LAS     500620           368
150     ATL  AGS     122800           143
151     ATL  RIC     415870           481
152     ATL  SAT     361450           874
153     BNA  LAX     276900          1797
154     CVG  LGA     114670           585
155     CVG  BOS      90330           752
156     DFW  LAX     922130          1235
157     DTW  BDL     109560           549
158     DTW  BUF     104490           241
159     DTW  LGA     386380           502
160     DTW  RIC      54910           456
161     HNL  LAX     810630          2556
162     JFK  BUF     143910           301
163     JFK  RIC      63770           288
164     RDU  MCO     259640           534
165     SAT  LAX     160300          1211
166     SEA  ANC     926610          1448
167     SLC  FCA      84770           531
168     SLC  LGB      89230           588
169     SLC  MSO      71240           436
170     SLC  SUN      44060           222
171     ATL  OKC     208440           761
172     DTW  GRR     125570           120
173     DTW  LAX     415560          1979
174     DTW  PHX     323680          1671
175     DTW  SAN     149480          1956
176     DTW  SEA     293100          1927
177     FLL  LGA     614620          1076
178     MSP  BOI      91780          1142
179     MSP  GEG     102350          1175
180     MSP  PHX     622720          1276
181     MSP  SFO     281270          1589
182     MSP  SMF      76560          1517
183     ORD  LGA    1049510           733
184     SRQ  LGA      58400          1047
185     TPA  LGA     353540          1010
186     LAX  BOS     571010          2611
187     ATL  LIT     219160           453
188     ATL  BTR     100670           448
189     MSP  PDX     231840          1426
190     ATL  LEX     162920           304
191     ATL  HNL      82300          4502
192     ATL  IAD     272690           534
193     ATL  STL     349720           484
194     DTW  MCO     592530           957
195     DTW  LSE       3940           416
196     JFK  MCO     612830           944
197     LGA  MCO     630040           950
198     MSP  GRB      50530           252
199     ATL  TPA     851260           406
200     ATL  TUS     117330          1541
201     ATL  DEN     800470          1199
202     ATL  SFO     363180          2139
203     ATL  TYS     194700           152
204     MSP  CID      28630           220
205     SLC  DEN     709950           391
206     ATL  BQK      35430           238
207     ATL  RSW     486050           515
208     ATL  GSP     310880           153
209     MSP  DCA     234830           931
210     ATL  FLL    1020520           581
211     ATL  MYR     141230           317
212     ATL  SAV     339340           214
213     ATL  TUL     110620           674
214     AUS  MSP     136110          1042
215     BNA  MSP     189690           695
216     BOS  MSP     296190          1124
217     DCA  MSP     235600           931
218     DEN  MSP     730620           680
219     DFW  MSP     379400           852
220     DTW  DFW     359950           986
221     DTW  MIA     211190          1145
222     DTW  RSW     340660          1084
223     EWR  MSP     209200          1008
224     LAS  MSP     560980          1299
225     LAX  MSP     469880          1535
226     LGA  PWM      79570           269
227     LGA  MSP     239110          1020
228     MCO  MSP     500880          1310
229     MSY  MSP      57240          1039
230     ORD  MSP     461170           334
231     PDX  MSP     231140          1426
232     PHL  MSP     152970           980
233     RDU  MSP     123300           980
234     RSW  MSP     362870          1416
235     SEA  MSP     421790          1399
236     TPA  MSP     266030          1306
237     DTW  LAN      34510            74
238     DTW  MSY     117390           926
239     MSP  MSY      56220          1039
240     MSP  SNA      90030          1522
241     ATL  BHM     315480           134
242     ATL  CLT     383000           226
243     SLC  RDU      58390          1823
244     SLC  SFO     266060           599
245     ATL  PNS     354230           271
246     MSP  MCO     506460          1310
247     SLC  ONT     137530           558
248     ATL  HHH      31830           238
249     BOS  ORD     671890           867
250     DTW  SDF      49240           306
251     LGA  SYR      52060           198
252     LGA  ORD    1033110           733
253     MSP  ORD     481950           334
254     MSP  HIB      13420           174
255     SEA  LAX     729000           954
256     ATL  DSM      91410           743
257     ATL  CHS     384440           259
258     MSP  IND     131980           503
259     SEA  PSP     180730           987
260     SLC  BOS     167120          2105
261     SLC  MCI     110110           920
262     SLC  ABQ      64360           493
263     SLC  RNO     119190           422
264     ATL  ABQ     152080          1269
265     ATL  MIA     817720           594
266     DTW  PHL     172800           453
267     MSP  RST      42770            76
268     ATL  PWM      74110          1027
269     JFK  BOS     312700           187
270     MSP  SBN      20420           411
271     ATL  BNA     471810           214
272     ATL  DCA     641730           547
273     ATL  LAS     739940          1747
274     DTW  RDU     124700           501
275     FLL  RDU      97440           680
276     LAS  RDU      94100          2026
277     LAX  RDU     104750          2239
278     LAX  SFO     949530           337
279     MCO  RDU     259570           534
280     SEA  RDU     110710          2354
281     ATL  DFW     781170           731
282     ATL  BTV      34280           961
283     LGA  RSW     132660          1080
284     DTW  GRB      49380           287
285     SEA  SAN     538340          1050
286     SLC  MCO     318030          1931
287     SLC  TPA      59460          1888
288     ATL  FAY      48590           331
289     ATL  SEA     491550          2182
290     DTW  BWI     196210           409
291     DTW  IAD     114470           383
292     LAS  SEA     849910           867
293     LAX  SEA     740440           954
294     MSP  MKE     137210           297
295     PHX  SEA     796950          1107
296     SAN  SEA     541490          1050
297     SLC  SGU      59310           272
298     SNA  SEA     411270           978
299     SEA  BNA     142310          1978
300     SLC  CVG      79400          1450
301     SLC  MIA      71270          2088
302     MSP  DTW     252630           528
303     SLC  DTW     227150          1481
304     BOI  SLC     142450           290
305     DFW  SLC     450160           989
306     DTW  CID      22070           430
307     DTW  MKE     106640           237
308     DTW  CMH      70810           155
309     EWR  SLC     101530          1969
310     GEG  SLC     148900           546
311     JFK  SLC     277250          1990
312     LAS  SLC     481120           368
313     LAX  SLC     594160           590
314     MSP  JFK      88060          1029
315     ONT  SLC     130560           558
316     SAN  SLC     310710           626
317     SFO  SLC     266780           599
318     SJC  SLC     169040           584
319     SNA  SLC     228840           588
320     MSP  BNA     197320           695
321     SLC  MSP     256980           991
322     ATL  CHA     173700           106
323     MSP  GRR     117170           408
324     SEA  EUG     159000           234
325     SLC  RDM      49740           525
326     ATL  SDF     285220           321
327     MSP  STL     147900           448
328     ATL  GEG      57000          1969
329     ATL  GRB      37500           774
330     ATL  FSD      32410           954
331     DTW  MBS      38930            98
332     DTW  LAS     507640          1749
333     JFK  TPA     265120          1005
334     LGA  TPA     343460          1010
335     MSP  TPA     263590          1306
336     LAS  ATL     744000          1747
337     ONT  ATL     146200          1900
338     LAS  AUS     399400          1090
339     MCO  BWI     649380           787
340     MCO  CLE     317690           895
341     DEN  SAN     678240           853
342     LAS  ONT     248060           197
343     PHL  CLT     356980           449
344     FAT  DEN     120220           844
345     ORD  DEN     906020           888
346     TPA  ISP      78410          1034
347     TPA  LAS     151140          1984
348     TTN  MCO     115060           896
349     DEN  ONT     283320           819
350     LAS  MEM      36460          1416
351     PHL  MIA     366980          1013
352     LAS  PDX     434240           763
353     LAS  PHL     264790          2176
354     MCO  PHL     865350           861
355     TPA  PHL     343200           920
356     SAN  PHX     617170           304
357     SJU  RDU      37840          1433
358     LAS  SAN     685770           258
359     LAS  SAT     198810          1069
360     EWR  SJU     332700          1608
361     IAD  LGA      95370           229
362     EWR  CLT     384930           529
363     ORD  CLT     452110           599
364     IAD  HNL      26940          4817
365     ORD  LAS     741580          1514
366     ORD  PHX     777970          1440
367     EWR  PBI     392820          1023
368     CLE  IAH      84410          1091
369     CLT  EWR     395740           529
370     DCA  DEN     217890          1476
371     GSO  EWR      37070           445
372     IND  EWR      92770           645
373     ROC  EWR      53170           246
374     IAD  AVL       9730           370
375     EWR  GSO      38360           445
376     ORD  SPI      16300           174
377     HHH  IAD      12420           498
378     IND  IAD      59540           476
379     IAD  TYS      24540           420
380     ORD  RSW     408390          1120
381     ORD  IAH     520970           925
382     ORD  SFO     706430          1846
383     EWR  BNA     171930           748
384     EWR  SFO     725590          2565
385     IAD  SFO     325210          2419
386     IAD  TPA     101050           811
387     EWR  JAX     125160           820
388     EWR  SEA     264120          2402
389     EWR  ROC      56390           246
390     ORD  SEA     634720          1721
391     ORD  STL     161270           258
392     EWR  SYR      36090           195
393     EWR  IND      91900           645
394     IAD  PHX      62340          1956
395     ORD  LIT      65730           552
396     ORD  EWR     613040           719
397     ORD  TYS      75270           475
398     ORD  PIT     209740           413
399     CLT  BDL     237770           644
400     MIA  STX      91470          1139
401     ORD  MCO     781340          1005
402     BNA  AUS     213440           756
403     CVG  AUS      47620           958
404     OKC  AUS      48750           358
405     ORD  SDF      96290           286
406     AUS  LAS     388970          1090
407     ORD  ATL     582040           606
408     ORD  SYR     125730           607
409     ORD  BOS     688500           867
410     ORD  FAR      64540           557
411     DFW  EWR     387260          1372
412     ORD  SNA     288370          1726
413     DFW  OKC     256360           175
414     DFW  FAT     158660          1313
415     DFW  XNA     155510           280
416     ORD  PDX     252220          1739
417     DCA  MCO     482830           759
418     DCA  CVG      99020           411
419     MIA  MCO     308320           192
420     MIA  TPA     182120           204
421     MIA  CVG      54390           948
422     ORD  ICT      72330           588
423     DFW  MLU      40860           293
424     DTW  DCA     233870           405
425     MEM  DCA      60870           762
426     LCH  DFW      35700           295
427     MTJ  DFW      55950           722
428     DFW  BHM     129870           597
429     ORD  SJC      30600          1829
430     DFW  MCO     657430           985
431     ORD  MIA     493050          1197
432     ORD  RIC     112050           642
433     DFW  TUL     241460           237
434     ORD  LAX    1026760          1744
435     DFW  PHX     593600           868
436     DFW  MIA     491540          1121
437     DFW  COS     180400           592
438     DFW  GEG      43660          1477
439     DFW  GCK      27370           404
440     CLT  LYH      73900           175
441     MIA  ORD     485330          1197
442     ORD  BGR      20300           978
443     ORD  JAX     105830           864
444     ORD  FSD      76840           463
445     DFW  SDF     121650           733
446     DFW  SYR      35200          1336
447     DFW  AUS     443610           190
448     DFW  ONT     308710          1188
449     DFW  LFT      64170           351
450     CLT  IAD     157030           322
451     ORD  AUS     336610           977
452     DFW  SJC     121400          1438
453     ORD  MCI     199940           403
454     PIT  MIA      53540          1013
455     DFW  BNA     337180           631
456     ORD  CLE     273780           315
457     DFW  MCI     250780           460
458     ORD  FWA      67390           157
459     ORD  MSY     182000           836
460     DFW  CAE      56760           922
461     ORD  LEX      68950           323
462     AUS  ORD     341420           977
463     CVG  ORD     144330           264
464     RDU  ORD     201390           646
465     ORD  RNO      21410          1671
466     ORD  GRR     148010           137
467     DFW  ORD     680380           801
468     ORD  XNA      88780           522
469     MIA  LAX     483190          2342
470     MIA  EYW      64800           126
471     MIA  SDF      27450           910
472     DFW  IAH     458700           224
473     DFW  AGS      21570           874
474     ORD  RDU     208960           646
475     DFW  MSY     302870           447
476     DFW  ABQ     286170           569
477     MIA  ATL     804300           594
478     ORD  LAN      32090           179
479     DFW  DEN     709240           641
480     DFW  LAS     864160          1055
481     DFW  SEA     515930          1660
482     MIA  ACY      23970           998
483     MYR  ACY      47990           466
484     RSW  ACY      59160           982
485     EWR  ATL     662630           746
486     FLL  AUS     143240          1105
487     IAH  ATL     453220           689
488     LAS  SNA     510450           226
489     MSY  ATL     538210           425
490     LAX  ATL     795360          1947
491     TPA  BDL      97450          1111
492     FLL  BNA     184870           793
493     LAS  BNA     198190          1587
494     LAX  BNA     275590          1797
495     LGA  BNA     377650           764
496     BWI  BOS     259980           369
497     FLL  BOS     365040          1237
498     LAS  BOS     215250          2381
499     SJU  BOS     215070          1674
500     TPA  BOS     307990          1185
501     LAS  BUR     408340           223
502     FLL  BWI     407020           925
503     FLL  DEN     278960          1703
504     LAS  BWI     236950          2106
505     MSY  BWI     138500           998
506     TPA  BWI     315870           842
507     BOS  BWI     257920           369
508     LAS  CLE     141620          1824
509     LAS  MCO     197860          2039
510     RSW  CLE     158200          1025
511     TPA  CLE     163880           927
512     MCO  IAH     485940           854
513     MCO  CLT     673680           468
514     MCO  CMH     221870           802
515     IAH  BWI     123760          1235
516     FLL  DFW     369480          1119
517     LAS  DFW     863420          1055
518     MSY  DFW     311110           447
519     ORD  DFW     667620           801
520     TPA  ORD     450750          1011
521     LAS  DTW     502190          1749
522     BNA  EWR     173770           748
523     FLL  EWR     669740          1065
524     IAH  EWR     420390          1400
525     MCO  EWR     925000           937
526     AUS  EWR     204470          1504
527     BNA  FLL     176790           793
528     BOS  FLL     364770          1237
529     BWI  FLL     414510           925
530     DEN  FLL     287330          1703
531     EWR  FLL     672010          1065
532     IND  FLL      85790          1005
533     LAS  FLL     116320          2173
534     LGA  FLL     597140          1076
535     EWR  IAH     403220          1400
536     LAS  IAH     511480          1222
537     FLL  IND      84930          1005
538     LAS  IND     185210          1590
539     TPA  IND     125650           837
540     BNA  LAS     205000          1587
541     BOS  LAS     211870          2381
542     DTW  ATL     592890           594
543     MCO  GSO       1840           535
544     MSY  LAS     147870          1500
545     PIT  LAS     109100          1910
546     SEA  LAS     844720           867
547     FLL  LAX     286200          2343
548     MCI  LAX     134110          1363
549     MSY  TPA     121940           488
550     PHL  LAX     340410          2402
551     SDF  LAX      31190          1843
552     MCO  LBE      51400           823
553     RSW  LBE       6840           956
554     LAS  MCI     208490          1139
555     LAX  MCI     142850          1363
556     BNA  MCO     317540           616
557     BQN  MCO     138520          1129
558     CLT  MCO     664450           468
559     LAS  OAK     598700           407
560     PIT  MCO     239840           834
561     SJU  MCO     914420          1189
562     LAS  MKE     171640          1524
563     FLL  PHL     336670           992
564     LAS  MSY     145170          1500
565     LAS  EWR     393300          2227
566     LAS  ORD     741240          1514
567     MCO  ORD     766710          1005
568     MSY  ORD     176200           836
569     RSW  ORD     408830          1120
570     LAS  PIT      99510          1910
571     LAX  PIT      40860          2136
572     MCO  PIT     244060           834
573     ORD  SAN     343770          1723
574     BOS  SJU     208980          1674
575     TPA  STL     121140           869
576     FLL  IAH     256240           966
577     BOS  TPA     302520          1185
578     BWI  TPA     330650           842
579     CMH  TPA     120990           829
580     LAS  TPA     152650          1984
581     CLT  SRQ     125900           547
582     CLT  SDF     121430           335
583     DCA  VPS      25460           789
584     PHL  LAS     264180          2176
585     DCA  PHX     175100          1979
586     CLT  ALB     113810           646
587     CLT  LAS     393500          1916
588     CLT  LGA     446700           544
589     CLT  MSP     226910           930
590     CLT  PHL     387840           449
591     CLT  PBI     246290           590
592     DCA  BNA     236750           562
593     DCA  JFK      81620           213
594     DCA  LGA     335100           214
595     CLT  TPA     432960           507
596     CLT  VPS     102230           460
597     CLT  STL     218240           575
598     CLT  SAT     157980          1095
599     PHL  CHS      74020           550
600     CLT  BWI     328250           361
601     ABE  CLT      59470           481
602     BNA  CLT     309970           328
603     HPN  CLT      67370           564
604     IAD  CLT     158290           322
605     PIA  CLT      34270           607
606     CLT  FLL     379430           632
607     CLT  OKC      71980           940
608     PHL  MCO     871340           861
609     CLT  IND     172270           427
610     CLT  MEM     182340           511
611     CLT  PHX     389020          1773
612     CLT  CAK      66940           394
613     CLT  CLE     160400           430
614     DCA  DAY      51150           391
615     CLT  AUS     252560          1032
616     JAN  DCA      18350           860
617     JAX  DCA     104690           634
618     MSY  DCA     151540           969
619     PHL  SFO     154510          2521
620     MGM  DFW      43840           622
621     CLT  DCA     279500           331
622     DCA  HPN      57610           234
623     DCA  PVD     152160           356
624     CLT  ATL     387660           226
625     PHL  DTW     176800           453
626     PHL  PWM      70980           364
627     CLT  SAV     182890           213
628     CLT  LIT      73050           640
629     CLT  MLB      60050           490
630     CLT  DTW     279850           500
631     CLT  MCI     139160           808
632     CLT  ORD     463030           599
633     CLT  MKE      86970           651
634     CLT  FNT      38150           555
635     CLT  DAY      77330           370
636     DCA  BOS     749190           399
637     DCA  PIT      73540           204
638     CLT  DFW     490140           936
639     CLT  OMA      78250           913
640     CLT  HPN      63150           564
641     DCA  PBI     143340           857
642     DCA  ATL     640780           547
643     CLT  RSW     261320           600
644     CLT  BUF     116850           546
645     CLT  PIT     220710           366
646     CLT  ABE      58310           481
647     CLT  ORF     227420           290
648     CLT  PHF      73730           282
649     CLT  JAX     249150           328
650     DCA  JAX     102530           634
651     DCA  MHT      57630           406
652     PHL  BOS     412720           280
653     PHL  JAX      87280           742
654     CLT  AVL     134970            91
655     CLT  RDU     378130           130
656     CLT  FAY      90440           118
657     CLT  OAJ      86830           191
658     CLT  MDT     122770           413
659     CLT  MIA     280400           650
660     CLT  CHS     222330           168
661     CLT  IAH     244240           912
662     CLT  DSM      62460           815
663     CLT  GSP     147130            75
664     DCA  PWM      85160           482
665     CLT  MSY     202240           651
666     CLT  JAN      60180           562
667     DCA  MSY     149130           969
668     PHL  LEX      12570           520
669     BNA  PHL     226160           675
670     CHS  PHL      74970           550
671     DCA  BHM      43310           653
672     ILM  PHL      32410           413
673     JAX  PHL      87640           742
674     MSP  PHL     156400           980
675     RDU  PHL     153970           337
676     CLT  DEN     378710          1337
677     CLT  SAN     196240          2077
678     PHL  SEA     142310          2378
679     PHL  IND      72460           588
680     PHL  ISP      23700           130
681     PHL  ORD     484390           678
682     PHL  BDL      64970           196
683     CLT  TYS     115730           177
684     CLT  PVD     148190           683
685     DCA  RDU     128190           227
686     DCA  STL     182230           719
687     DCA  SYR      59180           298
688     DCA  SDF      53190           474
689     LAX  ABQ     148090           677
690     DEN  IAH     640350           862
691     ORD  LNK      37540           466
692     ORD  ALB     140030           723
693     ORD  ONT       8140          1700
694     LAX  ASE      40390           737
695     SAN  HNL     155760          2614
696     DEN  SEA     754890          1024
697     ORD  ABQ      69910          1118
698     ORD  BNA     349350           409
699     DEN  MCI     391950           533
700     SFO  BIH       4930           221
701     DEN  MFR      72810           964
702     ORD  PSP      53720          1652
703     DEN  SBA     129340           916
704     IAH  LAX     605510          1379
705     GEG  BOI      51570           287
706     LAX  BOI      99200           674
707     PDX  BOI      81040           344
708     SEA  ATL     501710          2182
709     SFO  BOI      93730           522
710     SJC  BOI      68260           523
711     SEA  KOA     174780          2688
712     SLC  BUR     129250           574
713     DEN  BOI     228250           649
714     PHX  STS      28050           699
715     PHX  BUR     329820           369
716     PDX  BUR      71560           817
717     SFO  OGG     261320          2338
718     LAX  BZN      32920           902
719     ORD  BWI     265780           621
720     DEN  BZN     283600           524
721     ORD  OKC      76300           693
722     DFW  GRK      99920           134
723     DEN  BOS     403540          1754
724     DEN  EWR     369030          1605
725     LAX  COS      14600           833
726     DEN  LAX     807770           862
727     LAX  DAL     197350          1246
728     AUS  DEN     489110           775
729     BOI  DEN     244520           649
730     BZN  DEN     281420           524
731     DSM  DEN     204430           589
732     MEM  DEN     104340           872
733     OMA  DEN     291000           472
734     DEN  TUS     191010           639
735     DEN  SLC     724190           391
736     MSP  PIT      75180           726
737     DEN  DSM     207490           589
738     DEN  PSC      29700           852
739     ORD  MDT      96560           594
740     SFO  EUG      69090           451
741     SFO  DEN     659770           967
742     PHX  FAT      91850           493
743     PDX  FAT      27380           626
744     SAN  FAT      35090           314
745     SEA  FAT      71410           748
746     SFO  RDM      79600           462
747     SFO  ORD     714510          1846
748     MSP  FCA      45720          1026
749     SLC  ORD     275330          1250
750     ORD  FLL     410700          1182
751     ORD  SRQ      57630          1050
752     DTW  JAX      67140           813
753     BOI  PHX     153940           735
754     BOI  GEG      52140           287
755     LAX  GEG      47770           945
756     SEA  BOS     326650          2496
757     SFO  BNA      40570          1969
758     IAH  FLL     258150           966
759     IAH  MIA     326910           964
760     IAH  SJC      45440          1608
761     ORD  ABE      52090           654
762     DEN  HDN     113480           141
763     DTW  SLC     229940          1481
764     MSP  LSE      30000           119
765     DTW  IAH     219950          1075
766     ELP  IAH      78010           667
767     SLC  PIH      13370           150
768     DEN  CLE     272020          1201
769     DEN  FAR      74300           627
770     ORD  DCA     576940           612
771     IAD  PIT      55790           182
772     LAX  ORD    1047770          1744
773     PHX  LAX     676260           370
774     TUS  LAX     159140           451
775     BOI  LAX      94200           674
776     BZN  LAX      32480           902
777     GEG  LAX      50270           945
778     STS  LAX      32030           400
779     SJC  LAX     400480           308
780     ASE  LAX      39680           737
781     IAH  BTR      61690           253
782     IAH  SFO     352040          1635
783     ORD  IND     160010           177
784     ORD  AZO      36420           122
785     DFW  SAT     419980           247
786     ORD  MSN     150140           109
787     PHX  MSP     625350          1276
788     SFO  SAN     522370           447
789     DEN  MKE     227660           896
790     DEN  LAS    1028700           628
791     DEN  EUG      74040           996
792     SAN  MRY      20080           375
793     MSP  MSN      91790           228
794     ATW  MSP      48210           236
795     IAD  MSP      72850           908
796     DEN  GTF      48150           623
797     ORD  GRB      98880           174
798     PDX  OAK     196830           543
799     DFW  ROW      38170           435
800     LAX  OGG     430470          2486
801     ORD  AVP      54800           632
802     DEN  LGA     588630          1620
803     IAH  JAX      77780           817
804     LAX  OMA      21890          1330
805     DTW  PVD      55660           615
806     MSP  CIU      12540           435
807     PHX  ONT     288160           325
808     PHX  SAT     272840           843
809     SFO  ONT     102290           363
810     CLE  MIA      85750          1080
811     COU  ORD      34780           315
812     ICT  ORD      70940           588
813     GSP  ORD      62590           577
814     TYS  ORD      76340           475
815     DTW  DEN     383260          1123
816     BUR  PDX      73300           817
817     FAT  PDX      27910           626
818     MFR  PDX      26590           222
819     OAK  PDX     204640           543
820     SAN  PDX     194840           933
821     SFO  PDX     351220           550
822     SMF  PDX     176540           479
823     LAX  PDX     399550           834
824     SEA  MCI     117360          1489
825     SFO  KOA     166800          2367
826     FAT  PHX      91700           493
827     DEN  PHX    1037230           602
828     DTW  PIT      76720           201
829     ORD  MKE     131220            67
830     IAH  LAS     522440          1222
831     PHX  RDM      36820           893
832     SJC  PSP      15920           390
833     SLC  BOI     141000           290
834     DTW  MSN      80480           311
835     DEN  RAP      94560           300
836     PHX  MEM      55320          1264
837     SEA  ONT     231730           956
838     SLC  HLN      37050           402
839     DEN  ATW      15950           883
840     DEN  CLT     377220          1337
841     DEN  RIC      81960          1482
842     SEA  RNO     113340           564
843     PHX  SMF     377240           647
844     SMF  SAN     555330           480
845     AUS  SAN     209110          1164
846     FAT  SAN      35570           314
847     MRY  SAN      19520           375
848     PDX  SAN     195180           933
849     SJC  SAN     538830           417
850     STS  SAN      34170           508
851     LAX  MRY      28650           266
852     LAX  PRC       2420           346
853     LAX  SBP      17730           156
854     PHX  LAS     750310           255
855     SFO  SBA      80160           262
856     DTW  STL     140360           440
857     PDX  SBP      17890           722
858     MSP  LAS     549330          1299
859     LAX  MIA     480820          2342
860     BOI  SEA     302120           399
861     FAT  SEA      69480           748
862     GEG  SEA     430270           224
863     SJC  SEA     455150           696
864     PSP  SFO     157190           421
865     DAL  SFO      35180          1476
866     PDX  SFO     354140           550
867     PHX  SFO     462190           651
868     SNA  SFO     276710           372
869     BOI  SFO      96800           522
870     DFW  SFO     417720          1464
871     GEG  SFO      47660           733
872     AUS  SJC     140790          1476
873     GEG  SJC      47720           742
874     LAX  SJC     405420           308
875     PDX  SJC     240540           569
876     SAN  SJC     552300           417
877     DEN  DTW     372830          1123
878     DFW  TUS     309820           813
879     SAN  KOA      55920          2556
880     LGB  SLC      89730           588
881     DEN  DRO      88740           251
882     DEN  MCO     609380          1546
883     SFO  BFL      15270           238
884     SFO  SBP      39530           190
885     SFO  HNL     424250          2398
886     BOI  SMF      79310           437
887     PDX  SMF     173420           479
888     SAN  SMF     554030           480
889     SEA  HNL     284980          2677
890     SEA  RDM     165400           228
891     SFO  SEA     625070           679
892     SFO  SNA     278200           372
893     ORD  BHM      41220           583
894     ORD  SBN      66290            84
895     PHX  DFW     599400           868
896     LAX  STS      34730           400
897     PDX  STS      23120           489
898     SAN  STS      34500           508
899     ORD  OMA     148840           416
900     DTW  OMA      46940           651
901     LAX  ANC      40080          2345
902     SEA  TUS     103220          1216
903     IAH  DCA     176230          1208
904     SFO  BUR     193800           326
905     PDX  ABQ      28950          1111
906     SEA  BIL      45240           664
907     SEA  ORD     631010          1721
908     PAE  BOI      23970           419
909     PUW  BOI      12620           224
910     SMF  BOI      78540           437
911     SEA  BZN      89000           543
912     SEA  PSC     155600           172
913     SEA  DTW     291110          1927
914     SEA  JFK     414300          2422
915     SEA  MSY      61320          2086
916     SEA  MSO      65000           389
917     SEA  FCA      59690           379
918     PAE  GEG      22460           222
919     PDX  JFK     129440          2454
920     PDX  SBA      19440           784
921     SEA  EWR     274000          2402
922     SFO  GEG      48040           733
923     SEA  MFR     135050           352
924     SEA  HLN      21360           491
925     SEA  IDA      23200           566
926     SFO  LAX     931340           337
927     LAX  MFR      32630           630
928     PDX  MFR      23090           222
929     SEA  OAK     290000           672
930     BOI  PAE      22230           419
931     GEG  PAE      22170           222
932     LAS  PAE      40530           894
933     SNA  PAE      26100          1008
934     GEG  PDX      74860           279
935     SJC  PDX     247070           569
936     SFO  PSP     149350           421
937     SEA  ELP      37430          1368
938     SEA  PUW      52560           250
939     LAX  RDM      37430           726
940     PAE  SAN      19170          1080
941     SEA  SBA      38850           908
942     BZN  SEA      89700           543
943     EUG  SEA     160710           234
944     FCA  SEA      61720           379
945     GTF  SEA      22810           512
946     IDA  SEA      24750           566
947     MFR  SEA     134370           352
948     MRY  SEA      19130           750
949     MSO  SEA      66030           389
950     OAK  SEA     291230           672
951     PDX  SEA     504200           129
952     PUW  SEA      51450           250
953     RDD  SEA      20330           479
954     RDM  SEA     168190           228
955     RNO  SEA     116000           564
956     SMF  SEA     423510           605
957     LAS  SFO     620980           414
958     BOI  SJC      66440           523
959     STS  SNA      24270           433
960     SEA  STS      49420           618
961     SEA  DEN     751560          1024
962     IAH  AUS     167500           140
963     ORD  BDL     192390           783
964     ORD  PHL     491250           678
965     DEN  FCA     104460           752
966     DEN  MSO      93550           679
967     IAD  ATL     272450           534
968     ORD  LWB       5630           489
969     ORD  ATW      96120           161
970     BOS  DEN     412590          1754
971     DEN  AUS     505270           775
972     DEN  OMA     300040           472
973     EWR  AUS     207700          1504
974     IAH  MEI      10820           422
975     IAH  SEA     220560          1874
976     IAH  SNA     148790          1346
977     IAH  LGA     373400          1416
978     DEN  SNA     506420           846
979     IAD  AUS      95540          1297
980     IAD  BDL     115020           326
981     IAD  LAX     332730          2288
982     IAD  RDU      80640           224
983     IAD  SAV      34790           515
984     IAD  GSO       6780           239
985     CLL  BHM        190           600
986     DEN  CVG     221430          1069
987     DEN  ATL     792990          1199
988     ORD  BOI      79380          1437
989     DEN  JAC      89480           406
990     DEN  RDM      59300           898
991     EWR  BOS     314030           200
992     EWR  DEN     374430          1605
993     EWR  MCO     923020           937
994     EWR  MSY     165990          1167
995     EWR  TPA     363300           997
996     IAD  HHH      12000           498
997     IAH  BOS     195000          1597
998     LAX  LIH     216840          2615
999     ORD  DSM     131120           299
1000    SFO  LIH      92730          2447
1001    EWR  BUF      72080           282
1002    IAD  EWR     105790           212
1003    DEN  HNL     102290          3365
1004    ORD  HNL      95010          4243
1005    ORD  OGG      61410          4184
1006    SFO  LAS     616990           414
1007    DEN  MSY     277290          1062
1008    DEN  PIT     184680          1290
1009    ORD  MBS      29630           222
1010    ORD  PWM      84570           900
1011    DEN  LNK      43240           423
1012    EWR  CLE     134580           404
1013    FLL  CLE     136010          1062
1014    IAD  RSW      73820           891
1015    DEN  RNO     238960           804
1016    ORD  COS      57370           911
1017    ORD  SLN       5350           559
1018    BOS  EWR     297570           200
1019    EWR  MIA     548470          1085
1020    IAD  BOS     150390           413
1021    IAH  VPS      10210           528
1022    IAH  DEN     634840           862
1023    LAX  SBA      19690            89
1024    LAX  EWR     815750          2454
1025    MCI  DEN     400860           533
1026    ORD  IAD     162990           588
1027    ORD  ORF     109610           717
1028    ORD  DLH      30980           397
1029    PDX  DEN     474230           991
1030    PHX  DEN    1056610           602
1031    SAT  DEN     348530           794
1032    SMF  DEN     443410           909
1033    EWR  DFW     386740          1372
1034    ORD  JLN       6270           484
1035    SFO  IAH     350880          1635
1036    CLE  DEN     273400          1201
1037    CLE  RSW     161370          1025
1038    CLE  EWR     133080           404
1039    DEN  COS     277410            73
1040    DEN  SMF     453110           909
1041    IAD  BNA      68490           542
1042    IAH  COS      35020           809
1043    IAH  OKC     108730           395
1044    JAX  EWR     127780           820
1045    MCO  FLL     136660           177
1046    MIA  EWR     548920          1085
1047    ORD  SLC     275010          1250
1048    ORD  JAC      54440          1162
1049    PBI  EWR     395660          1023
1050    PHX  EWR     352900          2133
1051    RDU  EWR     195890           416
1052    RSW  EWR     297330          1068
1053    SAN  EWR     218790          2425
1054    SAV  EWR      64950           708
1055    SFO  EWR     728880          2565
1056    SJU  EWR     333830          1608
1057    SLC  EWR     103240          1969
1058    SRQ  EWR     101350          1034
1059    TPA  EWR     366080           997
1060    DEN  FSD     105460           483
1061    DEN  SFO     697100           967
1062    EWR  PQI      13770           515
1063    IAD  FLL     102090           901
1064    IAH  GRK       5640           166
1065    SFO  FLL     120150          2584
1066    DEN  TPA     377210          1506
1067    DEN  SAT     325580           794
1068    ORD  GSP      63480           577
1069    EWR  PIT      99010           319
1070    EWR  SDF      32880           642
1071    EWR  SRQ     101900          1034
1072    IAH  ECP      30990           572
1073    IAH  MSY     301870           305
1074    IAH  SDF      40000           788
1075    SFO  SMF      38490            86
1076    SFO  BWI      40520          2457
1077    SFO  MCO     160410          2446
1078    BNA  IAD      72320           542
1079    BOS  IAD     145230           413
1080    FLL  IAD     100400           901
1081    JAX  IAD      71760           630
1082    LAX  IAD     336730          2288
1083    MCO  IAD     196710           758
1084    PBI  IAD      25090           859
1085    RDU  IAD      78870           224
1086    SFO  PSC      14770           620
1087    TPA  IAD     105790           811
1088    DEN  ABQ     236050           349
1089    JAX  IAH      80410           817
1090    LAX  IAH     584590          1379
1091    LGA  IAH     359890          1416
1092    MSY  IAH     300970           305
1093    ORD  PAH      11570           342
1094    PHX  IAH     252910          1009
1095    RSW  IAH      75740           861
1096    TPA  IAH     176230           787
1097    DEN  CHS      78300          1449
1098    DEN  OKC     225600           495
1099    DEN  DCA     213650          1476
1100    EWR  PWM      74340           284
1101    IAD  ROC      40680           288
1102    IAD  JAX      73390           630
1103    IAH  SAT     198680           191
1104    SFO  JFK     855410          2586
1105    DEN  BWI     349370          1491
1106    DEN  CMH     194210          1154
1107    EWR  RIC      56630           277
1108    EWR  LAS     393420          2227
1109    IAD  BGR       5520           601
1110    IAD  MHT       4410           418
1111    IAH  BNA     218390           657
1112    IAH  MKE      37670           984
1113    IAH  CLE      89970          1091
1114    IAH  IND      62050           844
1115    IAH  MCO     493060           854
1116    IAH  TPA     175930           787
1117    ORD  CMH     170850           296
1118    ORD  CVG     144680           264
1119    DEN  MSN     118550           826
1120    EWR  CVG      86340           569
1121    IAH  DTW     214480          1075
1122    IAH  CVG      57820           871
1123    IAH  RSW      74990           861
1124    LAS  LAX    1039680           236
1125    MCO  LAX     455390          2218
1126    ORD  DTW     271920           235
1127    DEN  SJC     304810           948
1128    DEN  PDX     476960           991
1129    IAD  DEN     385420          1452
1130    ORD  SMF     143750          1781
1131    DEN  RDU     220540          1436
1132    LAX  BWI     178190          2329
1133    DEN  OGG      97550          3302
1134    EWR  RSW     290150          1068
1135    IAD  ORF      67470           157
1136    IAH  PHX     246550          1009
1137    IAH  SAN     202920          1303
1138    ORD  FNT      63100           223
1139    IAH  PBI      17430           956
1140    IAH  LFT      58870           201
1141    DEN  IAD     397950          1452
1142    DEN  BHM      89240          1083
1143    DEN  BIL      95860           455
1144    DEN  KOA      52450          3329
1145    IAD  SYR      54540           296
1146    IAH  SLC     181700          1195
1147    DEN  STL     395270           770
1148    DEN  BDL      86860          1671
1149    DEN  IND     275430           977
1150    DEN  ORD     916180           888
1151    BWI  ORD     277710           621
1152    CLE  ORD     274400           315
1153    DCA  ORD     571520           612
1154    DEN  PSP     146010           776
1155    EWR  ORD     606000           719
1156    FLL  ORD     405990          1182
1157    GRR  DEN     143870          1015
1158    IAD  ORD     175150           588
1159    IAH  ORD     529540           925
1160    PIT  ORD     208570           413
1161    RIC  ORD     113760           642
1162    ROC  ORD     140830           528
1163    SAN  ORD     351540          1723
1164    DEN  LIH      51940          3414
1165    ORD  MEM      88050           491
1166    EWR  CMH      79240           463
1167    DEN  CID     101470           692
1168    EWR  PDX     108340          2434
1169    SFO  IAD     335090          2419
1170    SFO  PHX     446950           651
1171    IAD  BUF      45740           283
1172    ORD  CHA      28990           500
1173    ORD  BZN      83800          1186
1174    DEN  SDF      98220          1024
1175    DEN  BNA     381320          1014
1176    ORD  PIA      53630           130
1177    SFO  MFR      55740           329
1178    EWR  SAT      62550          1569
1179    IAH  DFW     458750           224
1180    IAH  PSP      17580          1269
1181    DEN  MLI      31000           752
1182    DEN  DFW     712270           641
1183    IAD  ITH      10700           250
1184    ORD  BTV      83670           763
1185    ORD  CID     101750           196
1186    ORD  DAY      95740           240
1187    AUS  SFO     218470          1504
1188    DCA  EWR     107850           199
1189    EWR  PVD      49500           160
1190    FLL  SFO     119810          2584
1191    IAD  PWM      42160           493
1192    IAD  PHL      23160           135
1193    IAH  STL      59100           667
1194    OGG  SFO     256520          2338
1195    ORD  PVD      71440           849
1196    ORD  ROC     140970           528
1197    ORD  MLI      60930           139
1198    EWR  DCA     111770           199
1199    IAH  BDL      27180          1507
1200    IAD  MIA      52840           921
1201    CLE  TPA     168980           927
1202    IAD  CVG      39870           388
1203    IAH  ONT      32730          1334
1204    IAH  TUS      49160           936
1205    DAL  ECP      73700           674
1206    DAL  ABQ     162310           580
1207    LAS  LIH      32780          2818
1208    AUS  ABQ      67180           619
1209    LAS  ABQ     145850           486
1210    PHX  ABQ     247770           328
1211    BWI  ALB     174650           289
1212    BWI  MCO     651950           787
1213    BWI  PBI     120770           883
1214    BWI  RSW     154540           919
1215    MCO  RSW      40990           133
1216    MDW  SMF      56540          1790
1217    MDW  ALB      94850           717
1218    BWI  SMF       3010          2395
1219    MCO  ALB     120380          1073
1220    LAS  AMA      37600           758
1221    DAL  AMA     106030           323
1222    BWI  ATL     633670           577
1223    DAL  ATL     338830           721
1224    DAL  ELP     166980           562
1225    DAL  LAS     297050          1067
1226    DAL  LAX     205070          1246
1227    DAL  PHX     348590           879
1228    HOU  ATL     321530           696
1229    LGA  ATL     898100           762
1230    MCO  ATL    1137640           404
1231    MDW  ATL     353430           591
1232    MKE  ATL     282690           669
1233    PHX  LGB     190070           355
1234    PHX  OAK     266980           646
1235    PHX  SLC     528340           507
1236    STL  ATL     339570           484
1237    AUS  ATL     477050           813
1238    BNA  ATL     457750           214
1239    CLE  ATL     366130           554
1240    ECP  ATL     261440           240
1241    FLL  ATL    1015960           581
1242    HOU  TUL      63590           453
1243    IND  ATL     394950           432
1244    JAN  ATL     223610           341
1245    LAS  OGG      57120          2695
1246    LIT  ATL     219340           453
1247    MCI  ATL     341710           692
1248    MEM  ATL     378710           332
1249    MYR  ATL     147200           317
1250    PHL  ATL     635510           666
1251    PHX  HNL     172070          2917
1252    PIT  ATL     313180           526
1253    RIC  ATL     419640           481
1254    RSW  ATL     497710           515
1255    TPA  ATL     850170           406
1256    BNA  BOS     214300           942
1257    DAL  LGA     175140          1381
1258    DAL  OMA      39220           586
1259    DAL  SAV      42990           914
1260    ELP  AUS     157020           528
1261    HOU  MIA     127600           955
1262    HOU  OMA      38870           804
1263    LGB  OAK     165870           353
1264    MDW  SEA      70710          1733
1265    PHX  PSP     146650           261
1266    PHX  SAN     628240           304
1267    PHX  AUS     339670           872
1268    SAN  AUS     219480          1164
1269    BUR  AUS      49660          1241
1270    BWI  AUS     133950          1342
1271    DAL  AUS     220890           189
1272    DCA  AUS      45540          1315
1273    HOU  AUS     141730           148
1274    HRL  AUS      56590           273
1275    LAX  AUS     522100          1242
1276    LGB  AUS      67040          1226
1277    MCI  AUS      95550           650
1278    MDW  AUS     169270           972
1279    MSP  AUS     133670          1042
1280    MSY  AUS     157080           444
1281    OAK  AUS      56480          1497
1282    RDU  AUS     101110          1162
1283    SNA  AUS      60090          1209
1284    STL  AUS     130530           721
1285    TPA  PVD      71510          1136
1286    MDW  LAS     358740          1521
1287    MDW  ONT      47920          1706
1288    BWI  BDL     171510           283
1289    MCO  BDL     307940          1050
1290    BWI  BHM      40710           682
1291    DAL  BHM      88080           587
1292    HOU  BHM      50630           570
1293    MCO  BHM      57340           479
1294    MDW  BHM      52330           570
1295    TPA  BHM      38880           459
1296    LAS  BLI      34700           954
1297    AUS  BNA     225690           756
1298    BDL  BNA      44140           852
1299    DAL  BNA     231670           623
1300    DEN  MTJ     114710           196
1301    HOU  BNA     142000           670
1302    ISP  BNA      32330           803
1303    MCI  BNA     122920           491
1304    MCO  BNA     315080           616
1305    ORF  BNA      43320           585
1306    PHX  RNO     219780           601
1307    RSW  BNA      47340           722
1308    SJC  LGB      94660           324
1309    SRQ  BNA      76740           648
1310    TPA  BNA     190520           612
1311    BOS  BNA     214170           942
1312    BWI  BNA     174830           587
1313    CHS  BNA      74200           439
1314    CLE  BNA      88490           448
1315    CLT  BNA     311980           328
1316    CMH  BNA      70780           337
1317    DTW  BNA     217430           456
1318    ECP  BNA     108760           401
1319    JAX  BNA      89360           483
1320    MDW  BNA     205990           395
1321    MIA  BNA     196750           806
1322    MKE  BNA      83720           475
1323    MSY  BNA     117380           471
1324    MYR  BNA      59650           471
1325    OAK  HNL     127750          2409
1326    OAK  OGG      90980          2349
1327    PHL  BNA     220700           675
1328    PIT  BNA      80910           462
1329    PNS  BNA      83940           391
1330    RDU  BNA     141990           442
1331    SAV  BNA      46260           417
1332    VPS  BNA      79350           389
1333    DEN  BUF      66890          1359
1334    DEN  MIA     299070          1709
1335    LAS  BOI     102090           519
1336    OAK  BOI      85530           512
1337    PHX  BOI     160570           735
1338    SAN  BOI      56320           749
1339    LAS  RNO     348130           345
1340    BNA  DAL     232490           623
1341    BNA  HOU     146480           670
1342    BWI  CHS     122120           472
1343    BWI  GSP      38780           426
1344    BWI  IND      88920           516
1345    BWI  JAX     137550           663
1346    BWI  PHX     129510          1999
1347    BWI  SAV      80260           549
1348    MDW  DEN     367810           895
1349    MDW  LAX     174020          1750
1350    MDW  MSP     268720           349
1351    MDW  PHX     367880          1444
1352    MDW  SJC      60310          1838
1353    MDW  BOS     143840           861
1354    BWI  SRQ     130270           880
1355    FLL  BUF      65580          1166
1356    MCO  BUF     204450          1011
1357    MDW  BUF     112790           468
1358    DAL  BUR      25170          1243
1359    DAL  MSY     252900           436
1360    DAL  RDU      45370          1052
1361    DAL  TPA     145240           917
1362    LAS  OKC      87800           986
1363    SMF  BUR     251690           358
1364    AUS  BUR      51190          1241
1365    DEN  BUR     193030           850
1366    HOU  BUR      19420          1389
1367    OAK  BUR     301650           325
1368    SJC  BUR     236870           296
1369    BHM  BWI      37800           682
1370    BNA  BWI     166400           587
1371    BNA  SEA     146690          1978
1372    CVG  BWI      80020           430
1373    GRR  BWI      46640           528
1374    IND  BWI      94220           516
1375    MDW  BWI     180460           611
1376    SAV  BWI      77980           549
1377    VPS  BWI      36650           819
1378    BDL  BWI     172810           283
1379    BUF  BWI     164180           281
1380    CHS  BWI     122420           472
1381    CLE  BWI      89210           314
1382    FLL  SJU     345700          1046
1383    GSP  BWI      37960           426
1384    HOU  BWI     151910          1246
1385    ISP  BWI     130550           220
1386    LAS  KOA      29160          2717
1387    LGA  BWI      68520           185
1388    MDW  IAD      81120           577
1389    MIA  BWI     279100           946
1390    MYR  BWI     138330           399
1391    ORF  BWI     163750           159
1392    PHX  KOA      72100          2860
1393    PIT  BWI     101720           210
1394    PVD  BWI     176670           327
1395    PWM  BWI     126330           452
1396    RDU  BWI     130900           255
1397    ROC  BWI     122000           277
1398    RSW  BWI     156870           919
1399    SDF  BWI      76860           495
1400    DEN  RSW     152510          1607
1401    LAS  BZN      65790           701
1402    BNA  MCI     130620           491
1403    BNA  MKE      88800           475
1404    BNA  CHS      75940           439
1405    DAL  COS     104570           602
1406    MDW  CHS      61160           745
1407    STL  LAX     123180          1592
1408    BNA  RSW      49970           722
1409    BNA  CLE      87460           448
1410    BWI  CLE      91820           314
1411    LAS  HNL      88370          2762
1412    MDW  CLE     127550           307
1413    STL  CLE      50290           487
1414    BNA  CMH      78640           337
1415    MDW  CMH     133580           283
1416    MDW  TUS      28790          1440
1417    SRQ  CMH      23700           869
1418    STL  PHX     245520          1262
1419    BNA  ECP     104990           401
1420    BWI  CMH      95430           337
1421    DCA  CMH     111880           323
1422    LAS  CMH     131180          1771
1423    PHX  CMH     146330          1670
1424    STL  CMH      57270           409
1425    TPA  CMH     122650           829
1426    LAS  SBA      85620           289
1427    LAS  COS     127670           604
1428    PHX  COS     131770           551
1429    HOU  CRP      87150           187
1430    HOU  RSW      10380           853
1431    DEN  GEG     204250           836
1432    MDW  OAK      92230          1844
1433    BWI  CVG      79500           430
1434    MCO  CVG     230230           757
1435    MDW  CVG      97450           249
1436    MDW  TPA     224940           997
1437    TPA  CVG     104660           773
1438    ABQ  DAL     166250           580
1439    AUS  LGB      66330          1226
1440    BHM  DAL      86230           587
1441    DEN  OAK     255070           957
1442    DEN  DAL     373420           651
1443    ELP  DAL     167630           562
1444    HOU  DAL     330610           239
1445    LGA  DAL     169540          1381
1446    LGB  DAL      44190          1232
1447    MCO  DAL     268980           973
1448    OAK  DAL      93190          1468
1449    OMA  DAL      40340           586
1450    SJC  DAL      80340          1450
1451    SLC  DAL      79250           999
1452    SNA  DAL      41770          1216
1453    STL  DAL     185240           546
1454    TPA  DAL     146920           917
1455    AMA  DAL     110770           323
1456    AUS  DAL     224520           189
1457    CMH  DAL      48680           919
1458    COS  DAL     112490           602
1459    DCA  DAL     170500          1184
1460    ECP  DAL      75760           674
1461    FLL  DAL      94200          1108
1462    IAH  DAL     112030           216
1463    LBB  DAL     163100           293
1464    LIT  DAL      90640           296
1465    MAF  DAL     118770           319
1466    MCI  DAL     193630           461
1467    MDW  DAL     283100           793
1468    MSP  DAL       9090           853
1469    MSY  DAL     246160           436
1470    ORD  DAL     142660           798
1471    PHX  DAL     350330           879
1472    PNS  DAL      49190           592
1473    SAT  DAL     277840           247
1474    TUL  DAL     106360           238
1475    VPS  DAL      44500           630
1476    BNA  OAK      27650          1959
1477    BNA  SRQ      71310           648
1478    BNA  DCA     231320           562
1479    FLL  DCA     244730           899
1480    MDW  DCA     180450           601
1481    STL  DEN     402300           770
1482    STL  DCA     181260           719
1483    CMH  DCA     110650           323
1484    DAL  DCA     174580          1184
1485    MCO  DCA     496070           759
1486    MKE  DCA      56390           634
1487    OMA  DCA      42950          1012
1488    RSW  DCA     106820           892
1489    STL  BWI     110120           738
1490    TPA  DCA     238860           814
1491    BHM  DEN      85970          1083
1492    BNA  LGA     370250           764
1493    BUR  DEN     191920           850
1494    BWI  ISP     132790           220
1495    CVG  DEN     214950          1069
1496    DAL  SRQ      20390           934
1497    DAL  DEN     360880           651
1498    ELP  DEN     135400           563
1499    GEG  DEN     210010           836
1500    HOU  SRQ      34540           789
1501    IND  DEN     270060           977
1502    LAS  DEN    1031750           628
1503    LGA  DEN     577590          1620
1504    MDW  MCO     353770           990
1505    MDW  PHL     167820           668
1506    MKE  DEN     228930           896
1507    SBA  DEN     130540           916
1508    SNA  DEN     488960           846
1509    STL  FLL     109620          1057
1510    TUL  DEN     166230           541
1511    TUS  DEN     203990           639
1512    ABQ  DEN     241760           349
1513    BUF  DEN      70050          1359
1514    CHS  DEN      77220          1449
1515    HDN  DEN     115390           141
1516    HOU  DEN     279930           883
1517    ICT  DEN     137650           420
1518    LAS  SMF     537440           397
1519    LGB  DEN     120810           854
1520    LIT  DEN      93500           771
1521    MIA  DEN     296910          1709
1522    MSY  DEN     275790          1062
1523    OAK  DEN     250420           957
1524    OKC  DEN     228640           495
1525    RNO  DEN     252020           804
1526    SAN  DEN     667220           853
1527    TPA  DEN     387310          1506
1528    STL  TPA     121560           869
1529    BNA  IAH     207440           657
1530    MDW  HOU     215170           937
1531    MDW  SAN     154680          1728
1532    BNA  DTW     219550           456
1533    BWI  DTW     208200           409
1534    STL  DTW     132460           440
1535    HOU  ABQ      77710           759
1536    STL  PHL     112780           814
1537    AUS  ELP     143790           528
1538    DEN  ELP     129650           563
1539    HOU  ELP     104140           677
1540    LAS  ELP     103190           583
1541    LAX  ELP      81870           715
1542    PHX  SJC     305790           621
1543    AUS  TPA     135110           928
1544    HOU  JAX      36860           816
1545    HOU  TPA     124500           781
1546    PHX  ELP     217990           347
1547    SAT  ELP      60410           496
1548    OAK  SAN     342510           446
1549    LAS  EUG      45780           700
1550    OAK  EUG      76720           445
1551    LAS  FAT     120360           259
1552    BWI  DEN     346890          1491
1553    HOU  LAS     223600          1235
1554    HOU  SJC      47990          1621
1555    HOU  FLL     105270           957
1556    MCO  AUS     314670           994
1557    MSY  FLL     154190           674
1558    RDU  FLL      94610           680
1559    BWI  PVD     176540           327
1560    DAL  FLL      98170          1108
1561    DCA  FLL     228950           899
1562    MDW  FLL     163510          1167
1563    PHX  FLL      51320          1972
1564    PHX  SNA     487090           338
1565    PIT  FLL     111660           994
1566    SAT  FLL       6300          1145
1567    TPA  FLL     102890           197
1568    DEN  ORF      74180          1553
1569    DEN  TUL     169430           541
1570    LAS  GEG     103610           806
1571    MDW  MHT      61690           838
1572    PHX  GEG     105170          1020
1573    SMF  GEG      55540           649
1574    LAS  PHX     725740           255
1575    OAK  GEG      76630           723
1576    BWI  GRR      42560           528
1577    HOU  GSP      20550           845
1578    LIH  SJC      57680          2466
1579    OAK  LAX     411480           337
1580    OAK  SLC     233110           588
1581    PHX  BNA     216210          1449
1582    ATL  HOU     322810           696
1583    BNA  RDU     149660           442
1584    BWI  LGA      70880           185
1585    DAL  HOU     339930           239
1586    DEN  HOU     257970           883
1587    ELP  HOU     106340           677
1588    GSP  HOU      19440           845
1589    MIA  HOU     123770           955
1590    MSP  HOU      10220          1057
1591    MSY  HOU     198520           302
1592    PHX  HOU     206500          1020
1593    STL  HOU     127330           687
1594    STL  LGA     259480           888
1595    AUS  HOU     143500           148
1596    BUR  HOU      19930          1389
1597    ECP  HOU      59190           571
1598    FLL  HOU     110250           957
1599    HRL  HOU     143220           277
1600    LAS  HOU     228800          1235
1601    LAX  HOU     146730          1390
1602    LBB  HOU       4220           474
1603    LGA  HOU     123490          1428
1604    LGB  HOU      57140          1374
1605    MAF  HOU     102980           441
1606    MCO  HOU     240350           849
1607    MEM  HOU      41440           484
1608    OAK  HOU      82400          1642
1609    OKC  HOU     114060           419
1610    ONT  HOU      11410          1345
1611    PHL  HOU       3610          1336
1612    PNS  HOU      41600           488
1613    RSW  HOU      15200           853
1614    SAT  HOU     160720           192
1615    SAT  ISP         90          1624
1616    SAV  HOU      36130           853
1617    SJC  HOU      50090          1621
1618    TPA  HOU     128670           781
1619    TUL  HOU      67330           453
1620    HOU  JAN      75840           359
1621    HOU  HRL     135850           277
1622    MDW  COS      51760           917
1623    MDW  SLC      86710          1259
1624    DAL  OAK      91770          1468
1625    DAL  SMF      71810          1442
1626    MDW  GRR     109280           137
1627    DAL  IAH     114920           216
1628    DAL  MCO     253700           973
1629    MDW  IAH      80380           917
1630    DEN  ICT     142400           420
1631    STL  ICT      43110           392
1632    BWI  PWM     126240           452
1633    DAL  IND      63720           755
1634    HOU  IND      37110           861
1635    MCO  IND     242930           829
1636    RSW  IND     123690           945
1637    SRQ  IND      25520           876
1638    BNA  ISP      33770           803
1639    BWI  MIA     279780           946
1640    BWI  VPS      35900           819
1641    BWI  MHT     164550           377
1642    STL  JAX      42910           753
1643    BNA  JAX      90080           483
1644    MDW  JAX      47400           849
1645    PHX  ATL     512350          1587
1646    PHX  BWI     123070          1999
1647    PHX  OKC     139040           833
1648    ABQ  LAS     136810           486
1649    AMA  LAS      35570           758
1650    AUS  IND      80250           919
1651    AUS  MSY     163970           444
1652    DAL  PIT      14890          1060
1653    GEG  LAS     104090           806
1654    MDW  PIT     137430           402
1655    MKE  TPA      84380          1075
1656    OAK  LAS     607610           407
1657    PDX  LAS     441990           763
1658    SAT  ATL     380670           874
1659    SLC  MDW      92290          1259
1660    SMF  LAS     540530           397
1661    SNA  LAS     517190           226
1662    STL  PIT      46310           554
1663    BOI  LAS      97590           519
1664    BUR  LAS     417860           223
1665    BWI  LAS     226220          2106
1666    BZN  LAS      66190           701
1667    COS  LAS     125940           604
1668    EUG  LAS      47070           700
1669    LGB  LAS     187670           231
1670    MKE  LAS     174790          1524
1671    ONT  LAS     236440           197
1672    PSP  LAS      40530           173
1673    RNO  LAS     340660           345
1674    SAN  LAS     686560           258
1675    SBA  LAS      85080           289
1676    SJC  LAS     332880           386
1677    TUL  LAS      45160          1076
1678    TUS  LAS     105080           365
1679    ABQ  LAX     154950           677
1680    ELP  LAX      93150           715
1681    HNL  LIH     160190           102
1682    MDW  MSY     124290           825
1683    MSY  SAT      36080           494
1684    MSY  LAX     176780          1670
1685    PHX  TUL      69200           935
1686    PHX  MCO     264530          1849
1687    AUS  FLL     142410          1105
1688    AUS  LAX     527950          1242
1689    HOU  LAX     144390          1390
1690    RNO  LAX     213720           391
1691    SMF  LAX     348030           373
1692    SMF  ONT     206530           390
1693    AUS  RDU      95450          1162
1694    DAL  LBB     161190           293
1695    BWI  DAL     193120          1209
1696    BWI  HOU     139360          1246
1697    HOU  LGA     127500          1428
1698    STL  MSY      70180           604
1699    STL  OKC      53220           462
1700    MDW  LGA     211690           725
1701    MSY  LGA     121340          1183
1702    DEN  LGB     120530           854
1703    LAS  MDW     382590          1521
1704    OAK  LGB     166060           353
1705    SMF  SNA     271480           404
1706    STL  LGB      34780          1581
1707    HNL  LGB      52390          2569
1708    HOU  LGB      58650          1374
1709    HOU  ONT      10780          1345
1710    LAS  LGB     195860           231
1711    MDW  LGB      40910          1741
1712    OGG  LGB      33030          2498
1713    RNO  LGB      68950           402
1714    SMF  LGB     150830           387
1715    DAL  LIT      95650           296
1716    DAL  MAF     124560           319
1717    HOU  MAF      89320           441
1718    AUS  MCI      96870           650
1719    DAL  MCI     191990           461
1720    MDW  SRQ      65430          1035
1721    MDW  MCI     207870           405
1722    BWI  MCI      75940           967
1723    FLL  MCI      53560          1242
1724    LGA  MCI     150210          1107
1725    MCO  MCI     196840          1072
1726    MSY  MCI      30960           689
1727    RSW  MCI      33160          1155
1728    BWI  BUF     151300           281
1729    DAL  BZN       4600          1172
1730    DAL  ONT      38400          1200
1731    DAL  SEA      53890          1670
1732    DEN  FAT     116920           844
1733    HOU  PHX     210810          1020
1734    MCI  MCO     196490          1072
1735    STL  BOS     136380          1047
1736    STL  DSM      51600           259
1737    STL  SAN      52110          1557
1738    ALB  MCO     121660          1073
1739    BDL  MCO     306350          1050
1740    BHM  MCO      55280           479
1741    BUF  MCO     200620          1011
1742    CVG  MCO     234050           757
1743    FLL  MCO     136870           177
1744    IND  MCO     249430           829
1745    MEM  MCO      77650           684
1746    MSY  MCO     244650           551
1747    ORF  MCO      63310           655
1748    PHX  LIH      71970          2979
1749    SDF  MCO     103710           719
1750    STL  MCO     304110           882
1751    AUS  MDW     172550           972
1752    BHM  MDW      53230           570
1753    BNA  MDW     207930           395
1754    BWI  MDW     198130           611
1755    CHS  MDW      63160           745
1756    CMH  MDW     142900           283
1757    DAL  MDW     278260           793
1758    DCA  MDW     181400           601
1759    DEN  MDW     354270           895
1760    FLL  MDW     157960          1167
1761    GRR  MDW     106030           137
1762    IAD  MDW      86440           577
1763    JAX  MDW      42910           849
1764    LGA  MDW     212540           725
1765    MCI  MDW     213280           405
1766    MCO  MDW     351830           990
1767    MSP  MDW     260760           349
1768    MSY  MDW     123990           825
1769    OMA  MDW     149810           423
1770    ORF  MDW      59750           704
1771    PHX  MDW     342880          1444
1772    PVD  MDW      67610           842
1773    RIC  MDW      50900           629
1774    SAN  MDW     153910          1728
1775    SDF  MDW     106060           271
1776    SEA  MDW      73460          1733
1777    SFO  MDW      21760          1855
1778    TPA  MDW     227690           997
1779    BOS  MDW     145560           861
1780    BUF  MDW     107640           468
1781    CLE  MDW     130140           307
1782    CLE  STL      53060           487
1783    CVG  MDW      91110           249
1784    HOU  MDW     218500           937
1785    IAH  MDW      80310           917
1786    LAX  MDW     173980          1750
1787    MEM  MDW      86300           480
1788    MIA  MDW     120500          1182
1789    MYR  MDW      57200           738
1790    OAK  MDW      99150          1844
1791    OKC  MDW      48880           691
1792    PHL  MDW     169670           668
1793    PIT  MDW     146640           402
1794    RDU  MDW     118840           632
1795    RSW  MDW     167720          1105
1796    SMF  MDW      51720          1790
1797    SNA  MDW      33110          1731
1798    SRQ  MDW      72520          1035
1799    STL  MDW     177160           251
1800    TUS  MDW      30860          1440
1801    MCO  MEM      78050           684
1802    MDW  MEM      76030           480
1803    DAL  MEM      43480           423
1804    DEN  MEM     110130           872
1805    HOU  MEM      48840           484
1806    BWI  SAT      79340          1407
1807    STL  MSP     151230           448
1808    MDW  MIA     119820          1182
1809    MSY  MIA     154180           675
1810    STL  MCI      81380           237
1811    BWI  MKE      73550           641
1812    DCA  MKE      59300           634
1813    PHX  MKE     176210          1460
1814    RSW  MKE      81240          1183
1815    STL  MKE      61270           317
1816    HOU  MSP       7910          1057
1817    STL  RSW     103150           979
1818    HOU  SAN      91040          1313
1819    HOU  MSY     181310           302
1820    MCI  MSY      34320           689
1821    BNA  MSY     120260           471
1822    BWI  MSY     129260           998
1823    FLL  MSY     154720           674
1824    LAX  MSY     186010          1670
1825    LGA  MSY     121090          1183
1826    MCO  MSY     241480           551
1827    MCO  COS       6630          1520
1828    MIA  MSY     153990           675
1829    SAT  MSY      37830           494
1830    TPA  MSY     121360           488
1831    DAL  TUL     114160           238
1832    BWI  MYR     138100           399
1833    MDW  MYR      61870           738
1834    AUS  OAK      52510          1497
1835    BLI  OAK      51420           764
1836    BUR  OAK     296520           325
1837    HNL  OAK     128300          2409
1838    LIH  SAN      50420          2676
1839    ONT  OAK     169570           362
1840    PHX  IND     193560          1488
1841    PSP  OAK      65610           418
1842    SAN  OAK     356100           446
1843    BOI  OAK      79670           512
1844    BUR  SJC     230000           296
1845    EUG  OAK      75280           445
1846    GEG  OAK      67490           723
1847    KOA  OAK      51010          2378
1848    SBA  OAK      30370           263
1849    SNA  OAK     306740           371
1850    HNL  SMF      56790          2462
1851    AUS  OKC      48080           358
1852    HOU  OKC     117040           419
1853    MDW  OKC      50370           691
1854    PHX  OGG     137230          2845
1855    STL  SRQ      32170           903
1856    LAS  OMA     120200          1099
1857    MDW  OMA     154350           423
1858    STL  OMA      66860           342
1859    HOU  SAT     160370           192
1860    OAK  ONT     158690           362
1861    SJC  ONT     136880           333
1862    BNA  SAV      47440           417
1863    PHX  ORD     775390          1440
1864    BNA  ORD     338220           409
1865    DAL  ORD     142510           798
1866    BNA  ORF      46030           585
1867    MDW  ORF      64250           704
1868    BWI  ORF     159000           159
1869    MCO  ORF      60190           655
1870    MDW  BDL      82770           777
1871    PHX  OMA     176020          1037
1872    PHX  PDX     378980          1009
1873    PHX  TPA     117800          1788
1874    SJC  LIH      66700          2466
1875    MDW  SFO      18040          1855
1876    DEN  PHL     331900          1558
1877    AUS  MIA     213460          1103
1878    GEG  PHX     102430          1020
1879    HOU  MKE      13530          1004
1880    OAK  PHX     251160           646
1881    OKC  ATL     206540           761
1882    PDX  PHX     374630          1009
1883    RNO  PHX     214500           601
1884    SAT  PHX     281650           843
1885    SJC  PHX     301210           621
1886    SLC  PHX     523740           507
1887    SMF  PHX     368000           647
1888    ABQ  PHX     247990           328
1889    AUS  PHX     330280           872
1890    BUR  PHX     319390           369
1891    CMH  PHX     141590          1670
1892    COS  PHX     133720           551
1893    ELP  PHX     227050           347
1894    FLL  PHX      51020          1972
1895    LGB  PHX     189690           355
1896    LIH  HNL     166520           102
1897    MKE  PHX     174060          1460
1898    OMA  PHX     178800          1037
1899    ONT  PHX     273010           325
1900    PSP  PHX     151880           261
1901    SNA  PHX     468580           338
1902    TPA  PHX     118280          1788
1903    PHX  PIT      81680          1814
1904    RSW  PIT      74870           966
1905    SRQ  PIT      21660           912
1906    BNA  PIT      83390           462
1907    BWI  PIT     103120           210
1908    FLL  PIT     113040           994
1909    BNA  PNS      81360           391
1910    DAL  PNS      46250           592
1911    HOU  PNS      42450           488
1912    SMF  PSP      47270           439
1913    LAS  PSP      43000           173
1914    MDW  RDU     120530           632
1915    STL  OAK      16640          1725
1916    BWI  RDU     125660           255
1917    BWI  SJU     172010          1565
1918    MCO  SAT      93960          1041
1919    TPA  RDU     146790           587
1920    MDW  RIC      51720           629
1921    BUR  RNO      34690           374
1922    LGB  RNO      68760           402
1923    SAN  RNO      80120           488
1924    SJC  RNO      29010           188
1925    MCO  ROC      45190          1033
1926    TPA  ROC      14020          1079
1927    MDW  DTW     161610           228
1928    MKE  RSW      83750          1183
1929    DCA  RSW      96740           892
1930    MCI  RSW      32100          1155
1931    MDW  RSW     163070          1105
1932    SDF  RSW      19550           835
1933    BOI  SAN      57980           749
1934    DAL  VPS      45430           630
1935    HOU  CHS      27440           928
1936    SJC  GEG      47330           742
1937    HNL  SAN     150340          2614
1938    OGG  SAN      71240          2541
1939    TUS  SAN      42610           368
1940    DAL  MSP      12450           853
1941    HOU  TUS      36270           945
1942    BNA  SAT      71690           822
1943    DAL  SAT     292030           247
1944    ELP  SAT      66370           496
1945    LAX  SAT     157880          1211
1946    LAS  DAL     300690          1067
1947    OAK  SBA      29690           263
1948    MCO  SDF     101880           719
1949    MDW  SDF     116410           271
1950    BWI  SDF      70790           495
1951    RSW  SDF      18980           835
1952    TPA  SDF      53450           727
1953    OAK  SNA     299800           371
1954    SJC  SNA     290770           342
1955    PHX  RDU      51880          1891
1956    BUR  SFO     195390           326
1957    SAN  SFO     538260           447
1958    DAL  SJC      85050          1450
1959    LAS  SJC     344370           386
1960    OGG  HNL     256530           100
1961    OGG  SJC     111020          2355
1962    HNL  OGG     274070           100
1963    KOA  OGG      32720            84
1964    LGB  SJC     100340           324
1965    ONT  SJC     136980           333
1966    RNO  SJC      31370           188
1967    SNA  SJC     298720           342
1968    MCO  SJU     904050          1189
1969    DAL  SLC      77160           999
1970    BUR  SLC     130550           574
1971    MCO  SLC     321400          1931
1972    SMF  SLC     205270           532
1973    GEG  SMF      55070           649
1974    SAN  MCI      37000          1334
1975    SEA  SMF     433120           605
1976    BUR  SMF     248860           358
1977    HNL  KOA     145970           163
1978    LGB  SMF     153700           387
1979    ONT  SMF     203700           390
1980    PSP  SMF      47420           439
1981    SNA  SMF     275180           404
1982    DAL  SNA      41230          1216
1983    PHX  MSY      77020          1300
1984    AUS  SNA      58030          1209
1985    CMH  SRQ      23120           869
1986    AUS  SRQ       2000           936
1987    IND  SRQ      27530           876
1988    LGA  SRQ      56320          1047
1989    BWI  STL     115470           738
1990    DAL  STL     194160           546
1991    FLL  STL     104120          1057
1992    HOU  STL     126570           687
1993    JAX  STL      43260           753
1994    LGA  STL     266440           888
1995    LGB  STL      40140          1581
1996    MDW  STL     179550           251
1997    MSY  STL      70480           604
1998    SEA  STL      85030          1709
1999    AUS  STL     129080           721
2000    BNA  BDL      46820           852
2001    BNA  STL     112220           272
2002    CMH  STL      54690           409
2003    DSM  STL      53180           259
2004    ECP  STL      35370           634
2005    ICT  STL      48480           392
2006    LAX  STL     117510          1592
2007    LIT  STL      53570           296
2008    MCI  STL      82750           237
2009    MCO  STL     305360           882
2010    MIA  STL      98300          1068
2011    MKE  STL      56090           317
2012    OKC  STL      60340           462
2013    OMA  STL      67900           342
2014    PHX  STL     244100          1262
2015    PNS  STL      18770           598
2016    SRQ  STL      30960           903
2017    BNA  TPA     187610           612
2018    BWI  SYR      73020           273
2019    CMH  DEN     196120          1154
2020    DCA  TPA     226450           814
2021    ORD  TPA     457090          1011
2022    RDU  TPA     146550           587
2023    SDF  TPA      53110           727
2024    BDL  TPA      95470          1111
2025    BHM  TPA      40080           459
2026    BUF  TPA      93500          1053
2027    CVG  TPA     107020           773
2028    FLL  TPA     106160           197
2029    SAN  TUS      43390           368
2030    LAS  TUS     116680           365
2031    BNA  VPS      78380           389
2032    DAL  MKE      44140           850
2033    IAH  SHV      31870           192
2034    PHX  MFR      33990           854
2035    IAD  MCO     194250           758
2036    STL  DFW     211700           550
2037    DFW  SMF     208900          1431
2038    PHX  CVG      38970          1569
2039    DFW  JAX     219370           918
2040    DFW  SAN     476300          1171
2041    DFW  RDU     223120          1061
2042    LGA  IAD      89640           229
2043    PIT  IAD      53410           182
2044    SAV  IAH      29960           851
2045    TUL  IAH      85890           429
2046    DFW  LGA     742200          1389
2047    PHX  PHL     298260          2075
2048    BFL  PHX      56640           425
2049    EUG  PHX      37760           952
2050    DFW  SNA     409090          1205
2051    DFW  PNS     154530           604
2052    IAH  MSP     163230          1034
2053    IAH  SJU     129690          2007
2054    IAH  IAD     142840          1190
2055    DCA  BGR      58570           590
2056    DCA  BUF      55930           296
2057    PHL  MDT      49440            84
2058    JFK  JAX     159640           828
2059    IND  BOS      85120           818
2060    LGA  CVG     113960           585
2061    CMH  BOS      70830           640
2062    JFK  DEN     137640          1626
2063    JFK  MSY     123840          1182
2064    LGA  DSM      16750          1031
2065    LGA  ORF     106470           296
2066    LGA  DFW     727730          1389
2067    LGA  PBI     253180          1035
2068    LGA  BOS     432440           184
2069    PIT  BOS     115330           496
2070    RDU  BOS     215960           612
2071    JFK  SFO     830530          2586
2072    EWR  MHT      26450           209
2073    EWR  CHS     122220           628
2074    CLT  TUL      68580           842
2075    LGA  CLE     128330           419
2076    JFK  CLE      62780           425
2077    JFK  CLT     240930           541
2078    LGA  CLT     438570           544
2079    LGA  IND     132300           660
2080    LGA  CMH     154310           479
2081    BOS  CMH      69350           640
2082    PHL  CMH      60550           406
2083    JFK  CVG      23110           589
2084    CLT  SMF      39150          2244
2085    JFK  DCA      81780           213
2086    RDU  DCA     129930           227
2087    SDF  DCA      53990           474
2088    BOS  DCA     743410           399
2089    LGA  MSN      39680           812
2090    CHS  EWR     120790           628
2091    DTW  EWR     201160           488
2092    EYW  EWR      41890          1196
2093    MKE  EWR      49380           725
2094    MSY  EWR     157690          1167
2095    PWM  EWR      73590           284
2096    CLT  PNS     103880           488
2097    LGA  GSO      88980           461
2098    MSY  IAD      50690           955
2099    SRQ  IAD      14710           849
2100    LGA  ILM      63900           500
2101    BOS  IND      86400           818
2102    CLT  DAB      88710           416
2103    IAD  IND      60310           476
2104    EWR  MKE      50650           725
2105    BNA  MWA        470           171
2106    BWI  DFW     188990          1217
2107    BWI  JFK      54440           184
2108    DCA  ECP      21210           769
2109    ORF  JFK      71700           290
2110    PHL  PHX     303310          2075
2111    PHL  TYS      26040           554
2112    PIT  LGA     167630           335
2113    CLE  JFK      59700           425
2114    CMH  JFK      41350           483
2115    IND  JFK      51310           665
2116    IND  LGA     129780           660
2117    RIC  LGA     101090           292
2118    CVG  JFK      21320           589
2119    CLT  JFK     235220           541
2120    JAX  JFK     160610           828
2121    BOS  LGA     425410           184
2122    RDU  LGA     272810           431
2123    CMH  LGA     151830           479
2124    IAD  GSP      11630           384
2125    DCA  ORF      70350           142
2126    LGA  OMA      47860          1148
2127    JFK  ORF      75770           290
2128    BOS  PHL     396560           280
2129    JFK  PIT      62580           340
2130    LGA  PIT     166370           335
2131    ORD  FAI      13660          2785
2132    BOS  PIT     116640           496
2133    DCA  SAV      40460           519
2134    EWR  SAV      65390           708
2135    IAD  SDF      23780           451
2136    PHL  RDU     152980           337
2137    EWR  RDU     196960           416
2138    IAD  PVD      32390           371
2139    CLT  BOS     490360           728
2140    LGA  SDF      72440           659
2141    CLT  CMH     155470           347
2142    DCA  CLT     268420           331
2143    ORD  CHS      97260           760
2144    IAD  CLE      88930           288
2145    IAD  CHO      25660            77
2146    IAD  CAK       5750           251
2147    BUF  IAD      44250           283
2148    IAD  SEA     185200          2306
2149    ORD  SUX       9150           436
2150    GSO  ORD      54640           589
2151    HPN  ORD      79410           738
2152    IAD  LAS      89650          2065
2153    MSP  SAT      78830          1097
2154    MSP  AZA      12710          1267
2155    BZN  MSP     117540           874
2156    SFO  MSP     276700          1589
2157    MSP  EAU         90            85
2158    PHL  ALB      44320           212
2159    PHL  ILM      30910           413
2160    PHL  DEN     316840          1558
2161    PHL  DCA      44830           119
2162    PHL  SAN      90220          2370
2163    PHL  MYR      72060           473
2164    PHL  RSW     210180           993
2165    PHL  RIC      41980           198
2166    PHL  GSO      31120           365
2167    BOS  SYR      24480           265
2168    PHL  MCI      44730          1038
2169    FLG  DEN      22000           503
2170    DEN  GRR     143240          1015
2171    IAD  HSV      14580           596
2172    LIT  IAH      47480           374
2173    EWR  LAX     803750          2454
2174    EYW  FLL       5370           145
2175    MCO  PNS      30790           381
2176    MCO  DEN     602000          1546
2177    TPA  PNS       4450           330
2178    FLL  HVN      34580          1127
2179    TPA  HVN      26140          1067
2180    HVN  MCO      62910          1005
2181    BOS  LAX     560640          2611
2182    IAH  ASE      24320           913
2183    LGA  BHM      27850           866
2184    MKE  LGA      60370           738
2185    LGA  MKE      61860           738
2186    LAS  DCA      59280          2089
2187    MIA  DCA     315170           919
2188    BOS  DFW     409970          1562
2189    PSP  DFW     138700          1126
2190    OGG  DFW     153160          3711
2191    DFW  HNL     163900          3784
2192    PHX  JFK     312710          2153
2193    DFW  ATL     772690           731
2194    STT  ORD       8990          2115
2195    SAN  PHL      85840          2370
2196    SFO  PHL     160820          2521
2197    MCI  PHX     231390          1044
2198    RDU  PHX      50940          1891
2199    MIA  SAN      45540          2267
2200    SEA  FAI     232160          1533
2201    HNL  PDX      52600          2603
2202    RSW  BOS     250150          1249
2203    SFO  BOS     502000          2704
2204    RSW  LGA     139600          1080
2205    JFK  ONT      48230          2429
2206    BDL  SFO      11170          2625
2207    ABQ  ATL     152180          1269
2208    BOS  ATL     568900           946
2209    JAC  ATL      27200          1572
2210    MLB  ATL     128560           442
2211    PBI  ATL     560700           545
2212    PDX  ATL     197620          2172
2213    MCO  BOS     603310          1121
2214    LAX  DCA     230060          2311
2215    MCI  DTW      97660           629
2216    PHX  DTW     322850          1671
2217    DFW  DTW     355010           986
2218    AUS  JFK     250740          1521
2219    DEN  JFK     136420          1626
2220    FLL  JFK     603990          1069
2221    SJU  JFK     459370          1598
2222    CVG  LAX      42830          1900
2223    JFK  LAX    1252310          2475
2224    RDU  LAX     101210          2239
2225    MIA  MSP     148850          1501
2226    SAN  MSP     236620          1532
2227    ATL  SJC      82820          2116
2228    AUS  SLC     165250          1086
2229    MCI  SLC     107100           920
2230    MSP  SLC     250120           991
2231    LAX  TPA     145670          2158
2232    SEA  TPA     132890          2520
2233    CLT  LAX     366120          2125
2234    HPN  DTW      32220           505
2235    PSP  ORD      55430          1652
2236    RSW  DEN     153200          1607
2237    LAX  JFK    1256120          2475
2238    BOS  IAH     192930          1597
2239    HDN  IAH       8210           985
2240    RNO  IAH      22540          1530
2241    SLC  IAH     177560          1195
2242    SFO  RDU      50750          2400
2243    TPA  SFO      66680          2393
2244    RDU  IAH      60860          1042
2245    CMH  EWR      80640           463
2246    MCI  LGA     148090          1107
2247    ABQ  ORD      67980          1118
2248    LGA  RIC     101400           292
2249    SEA  PHL     147050          2378
2250    MSP  MCI      93040           393
2251    SLC  DFW     453590           989
2252    TPA  GRR      12000          1041
2253    SJU  PHL     300130          1576
2254    FLL  MYR      55400           529
2255    ANC  FAI     184100           261
2256    HNL  GUM      68890          3801
2257    GUM  SPN      26920           129
2258    HNL  SEA     293440          2677
2259    KOA  SEA     181850          2688
2260    HNL  SLC      82340          2994
2261    OGG  DEN     101370          3302
2262    LAS  IAD      90400          2065
2263    ATL  ABE      56460           692
2264    BTR  ATL     101020           448
2265    GNV  ATL     126620           300
2266    GPT  ATL     102330           352
2267    LEX  ATL     163620           304
2268    MOB  ATL      86380           302
2269    ROA  ATL      71640           357
2270    SGF  ATL      66210           563
2271    TUL  ATL     108590           674
2272    LGA  BGR      50190           378
2273    MKE  BOS      58450           860
2274    RIC  BOS     105510           474
2275    ATL  CHO      50630           457
2276    LGA  CHS     127520           641
2277    BOS  CVG      83130           752
2278    DTW  MDT      32790           371
2279    BTV  DTW      29040           537
2280    CHS  DTW      43580           667
2281    GSP  DTW      32710           508
2282    PWM  DTW      44570           668
2283    RDU  DTW     130110           501
2284    ROC  DTW      71990           296
2285    TYS  DTW      37480           443
2286    CVG  EWR      87590           569
2287    ATL  PHX     503560          1587
2288    JFK  IND      50730           665
2289    BGR  JFK      21370           382
2290    BNA  JFK     106860           765
2291    CHS  JFK     134230           636
2292    CHS  LGA     126180           641
2293    PIT  JFK      59190           340
2294    SAV  JFK     104080           718
2295    BHM  LGA      27700           866
2296    GSO  LGA      87970           461
2297    GSP  LGA      44700           610
2298    MEM  LGA      63780           963
2299    PWM  LGA      78050           269
2300    SAV  LGA      85320           722
2301    ATL  MDT      80600           620
2302    CVG  MSP      96220           596
2303    DSM  MSP      57110           232
2304    JFK  MSP      88160          1029
2305    LGA  RDU     274490           431
2306    ATL  ROA      70270           357
2307    DTW  ROC      65480           296
2308    LGA  TYS      35670           648
2309    TPA  AUS     137270           928
2310    BOS  AUS     163920          1698
2311    DFW  MSN      88220           821
2312    JFK  AUS     250420          1521
2313    MIA  BDL     122250          1194
2314    AUS  BOS     165430          1698
2315    DFW  BOS     414310          1562
2316    DFW  IND     194920           761
2317    PHX  BOS     251530          2300
2318    CLT  SFO     183110          2296
2319    CMH  CLT     151920           347
2320    LAS  CLT     401720          1916
2321    MSP  CLT     226560           930
2322    MSY  CLT     208980           651
2323    ORF  CLT     215040           290
2324    PHX  MRY      60040           598
2325    PIT  CLT     221870           366
2326    PWM  CLT      93090           813
2327    TPA  CLT     433860           507
2328    CLT  CVG     122100           335
2329    LGA  DCA     341730           214
2330    JAX  DFW     220980           918
2331    MEM  DFW     239980           431
2332    ABQ  DFW     290990           569
2333    BGR  DFW       1970          1717
2334    CMH  DFW     170780           926
2335    GSO  DFW      58320           999
2336    ICT  DFW     146740           328
2337    LAX  DFW     924080          1235
2338    MDT  DFW      37370          1231
2339    MFE  DFW     207090           469
2340    MKE  DFW     117230           853
2341    ONT  DFW     311440          1188
2342    PBI  DFW     116250          1102
2343    PWM  DFW       8210          1622
2344    RSW  DFW     190160          1017
2345    SFO  DFW     411610          1464
2346    ORD  SGF      57340           438
2347    ORD  COU      34260           315
2348    CLT  SEA     151840          2279
2349    MIA  IAH     320140           964
2350    DFW  FLL     373310          1119
2351    DFW  JFK     171400          1391
2352    MIA  LAS     231790          2174
2353    DFW  SHV      89090           190
2354    CLT  ILM     188250           185
2355    DFW  RIC     112220          1158
2356    CLT  BTV      54250           761
2357    ORD  JFK     158410           740
2358    AUS  MCO     315460           994
2359    DFW  MDT      36670          1231
2360    CLT  PWM      94470           813
2361    DFW  LIT     162300           304
2362    DFW  MFE     189060           469
2363    TPA  MIA     173050           204
2364    LAS  MIA     237140          2174
2365    PHX  MIA     164740          1972
2366    SFO  MIA     139220          2585
2367    SJU  MIA     389780          1045
2368    STT  MIA     138810          1107
2369    CLT  TLH      71450           386
2370    DFW  PBI     122120          1102
2371    DFW  CHS     113670           987
2372    EYW  ORD      37980          1251
2373    ONT  ORD       7520          1700
2374    SJU  ORD     118890          2072
2375    SNA  ORD     275440          1726
2376    SRQ  ORD      58220          1050
2377    CLT  CHO      99210           245
2378    DFW  PHL     399610          1303
2379    RSW  PHL     214510           993
2380    BOS  PHX     241940          2300
2381    EWR  PHX     345520          2133
2382    JFK  PHX     296470          2153
2383    MIA  PHX     157880          1972
2384    CLT  PDX      41730          2282
2385    DFW  BTR      84770           383
2386    MIA  RDU     200900           700
2387    DFW  RSW     189240          1017
2388    DFW  TRI      31400           868
2389    PHL  PIT      76580           268
2390    CLT  GSO     138100            83
2391    CLT  ROA      93210           155
2392    CLT  BHM     109970           350
2393    MIA  SJU     386580          1045
2394    MIA  CMH      36420           990
2395    PHL  SDF      31250           576
2396    DFW  FAR      38760           968
2397    DFW  YUM      21160          1022
2398    HNL  ANC      30590          2777
2399    BRW  ANC      30050           725
2400    ANC  BRW      30190           725
2401    SEA  DCA     105620          2329
2402    SEA  KTN      86220           680
2403    ANC  HNL      29830          2777
2404    ANC  KTN      13390           775
2405    LIH  LAX     219650          2615
2406    PDX  LAX     394570           834
2407    SEA  OMA      46880          1368
2408    ANC  OTZ      31920           548
2409    LIH  PDX      24440          2631
2410    SEA  OGG     195840          2640
2411    PSP  SEA     181570           987
2412    FLL  SEA      85170          2717
2413    LIH  SEA     140020          2701
2414    MCO  SEA     260360          2554
2415    DCA  SFO      95760          2442
2416    JFK  ABQ      40090          1826
2417    BOS  RSW     242510          1249
2418    FLL  ALB      51920          1204
2419    FLL  BDL      81380          1173
2420    SFO  BDL      11910          2625
2421    BUF  BOS      32020           395
2422    PBI  BOS     215780          1197
2423    SAN  BOS     168130          2588
2424    SRQ  BOS      34590          1220
2425    JFK  BUR      76460          2465
2426    PBI  DCA     153120           857
2427    RIC  FLL      67910           805
2428    ABQ  JFK      40830          1826
2429    BOS  SEA     326550          2496
2430    BUR  JFK      74740          2465
2431    PBI  JFK     254830          1028
2432    PSP  JFK      21600          2378
2433    BDL  LAX      29030          2527
2434    BUF  LAX      27650          2218
2435    JFK  PSP      22160          2378
2436    MCO  PVD     202960          1072
2437    PBI  PVD      26930          1148
2438    JFK  SAN     292370          2446
2439    JFK  SJU     451540          1598
2440    TPA  SJU     172530          1237
2441    JFK  SMF      41360          2521
2442    BOS  SRQ      33550          1220
2443    MCO  SYR      72000          1053
2444    ALB  ATL     122990           853
2445    BDL  ATL     264230           859
2446    BOI  ATL      56910          1838
2447    BZN  ATL      59650          1640
2448    CMH  ATL     316580           447
2449    DAY  ATL     102510           432
2450    EGE  ATL      15180          1312
2451    GSO  ATL     227430           306
2452    HSV  ATL     177410           151
2453    ILM  ATL      78430           377
2454    JAX  ATL     616980           270
2455    OMA  ATL     202420           821
2456    ORF  ATL     341020           516
2457    PNS  ATL     358330           271
2458    PWM  ATL      75530          1027
2459    RDU  ATL     540190           356
2460    SAN  ATL     319790          1892
2461    SFO  ATL     369910          2139
2462    SJU  ATL     210960          1547
2463    SNA  ATL     134240          1919
2464    TUS  ATL     118840          1541
2465    VPS  ATL     225830           250
2466    DTW  AUS     131150          1149
2467    SEA  AUS     192880          1770
2468    SLC  BNA      92550          1404
2469    MIA  BOS     442550          1258
2470    MSP  JAC       5990           872
2471    SLC  CLT     126220          1727
2472    FLL  CVG      37640           932
2473    LAS  CVG     116920          1678
2474    RSW  CVG     117590           879
2475    DTW  TVC      68580           207
2476    JFK  DFW     173890          1391
2477    AUS  DTW     124840          1149
2478    BOS  DTW     265770           632
2479    BUF  DTW     111030           241
2480    MKE  DTW     101970           237
2481    MYR  DTW      81640           636
2482    SAN  DTW     152810          1956
2483    SAT  DTW      63990          1214
2484    SFO  DTW     195790          2079
2485    SRQ  DTW      14400          1022
2486    ATL  ELP      88920          1282
2487    ATL  MLB     128060           442
2488    SEA  IAD     192200          2306
2489    SLC  IND       4510          1355
2490    MSY  JFK     126240          1182
2491    PBI  LGA     260700          1035
2492    IND  LAX      80170          1814
2493    TPA  LAX     139490          2158
2494    BOS  MCO     606680          1121
2495    SLC  MEM      49260          1262
2496    BOS  MIA     449030          1258
2497    JFK  MIA     729110          1089
2498    BDL  MSP     101690          1050
2499    BWI  MSP     180770           936
2500    DTW  MSP     264880           528
2501    FLL  MSP     124330          1487
2502    MCI  MSP      95600           393
2503    MKE  MSP     139840           297
2504    MSO  MSP      49950          1013
2505    PSP  MSP      45440          1454
2506    SAT  MSP      81870          1097
2507    SMF  MSP      78480          1517
2508    SNA  MSP      80090          1522
2509    SRQ  MSP      34040          1342
2510    BOS  JFK     281490           187
2511    DTW  GSO      14830           460
2512    CVG  RSW     116070           879
2513    DTW  SAT      62190          1214
2514    AUS  SEA     195780          1770
2515    JFK  SEA     409190          2422
2516    MSP  RAP      58710           489
2517    TPA  SEA     133400          2520
2518    BOS  SFO     493060          2704
2519    ATL  SJU     207670          1547
2520    BNA  SLC      91510          1404
2521    BOS  SLC     162250          2105
2522    BWI  SLC      72750          1865
2523    DCA  SLC      57690          1851
2524    FLL  SLC      93180          2084
2525    IND  SLC       4440          1355
2526    MSY  SLC      51260          1428
2527    PDX  SLC     279390           630
2528    RDU  SLC      55170          1823
2529    RNO  SLC     118080           422
2530    SAT  SLC      96310          1087
2531    STL  SLC     116740          1156
2532    TPA  SLC      59520          1888
2533    ATL  TRI      64760           227
2534    EWR  BTV      49800           266
2535    BTV  EWR      49520           266
2536    BUF  EWR      67160           282
2537    GRR  EWR      25390           605
2538    GSP  EWR      36910           594
2539    HHH  EWR       9730           687
2540    RIC  EWR      55640           277
2541    BTV  IAD      51920           441
2542    STL  IAD      19600           696
2543    KOA  LAX     234590          2504
2544    DFW  TLH      52970           767
2545    DFW  BRO      58830           482
2546    BRO  DFW      72370           482
2547    CAE  DFW      55860           922
2548    CMI  DFW      26770           692
2549    CRP  DFW     109380           354
2550    SPI  DFW      26910           630
2551    TYS  DFW      96850           771
2552    MIA  DSM       5690          1327
2553    MIA  PHL     375280          1013
2554    DFW  FSM      53030           227
2555    DFW  GJT      55270           773
2556    DFW  ICT     148000           328
2557    DFW  JAN      97020           408
2558    DFW  LCH      35540           295
2559    OMA  MIA       5670          1393
2560    MIA  OMA       4860          1393
2561    OMA  ORD     149660           416
2562    DSM  ORD     130960           299
2563    RST  ORD      33310           268
2564    DFW  SPI      27580           630
2565    MIA  TLH      52450           402
2566    CLT  SLC     117390          1727
2567    CLT  ELP       8050          1482
2568    MSN  CLT      63690           708
2569    CLE  CLT     161090           430
2570    DTW  CLT     280970           500
2571    LFT  CLT      31220           729
2572    LIT  CLT      74630           640
2573    MDT  CLT     121330           413
2574    DAY  DCA      51620           391
2575    TYS  DCA      43390           437
2576    DCA  GSO      35570           248
2577    PHL  MSN      17060           764
2578    MHT  PHL      44900           289
2579    DCA  PNS      45150           816
2580    DCA  HSV      57980           613
2581    MSP  BIS      86430           386
2582    DEN  CPR      54770           230
2583    DFW  CRP     107260           354
2584    ATW  DEN      16080           883
2585    BNA  DEN     380210          1014
2586    CPR  DEN      54230           230
2587    EUG  DEN      73690           996
2588    MAF  DEN      54340           563
2589    ORF  DEN      76180          1553
2590    SDF  DEN      94880          1024
2591    XWA  DEN      37790           582
2592    ALB  DTW      74430           489
2593    OMA  DTW      48370           651
2594    SBN  DTW      22720           157
2595    DFW  STL     218200           550
2596    ORD  HPN      80200           738
2597    MSP  IAH     165080          1034
2598    MCI  IAH      64060           643
2599    MKE  IAH      38020           984
2600    PSP  IAH      19140          1269
2601    XNA  LAX      17160          1371
2602    DEN  LBB      33600           456
2603    DEN  MAF      55520           563
2604    IAH  MCI      64530           643
2605    BIS  MSP      86710           386
2606    MEM  MSP      55800           700
2607    OKC  MSP      25310           694
2608    OMA  MSP      80100           282
2609    PIT  MSP      71340           726
2610    RIC  MSP       4970           970
2611    SDF  MSP      37300           604
2612    MSP  OMA      83890           282
2613    BDL  ORD     181640           783
2614    ALB  ORD     137780           723
2615    BHM  ORD      38280           583
2616    MEM  ORD      90450           491
2617    RAP  ORD      38900           780
2618    DTW  ORF      57480           529
2619    DRO  PHX      29410           351
2620    MSP  RIC       5480           970
2621    DEN  SAV      30830          1414
2622    ONT  SEA     237710           956
2623    ABQ  SFO      34510           896
2624    TUS  SFO      37540           751
2625    ABQ  SLC      65890           493
2626    FAT  SLC      73220           501
2627    HLN  SLC      37230           402
2628    PSC  SLC      56830           521
2629    PSP  SLC      62500           541
2630    RAP  SLC       8330           508
2631    TUS  SLC      68300           601
2632    SLC  TUS      64480           601
2633    BOI  PDX      81790           344
2634    SFO  DCA     101970          2442
2635    LIH  DEN      52090          3414
2636    MSN  DEN     117600           826
2637    MSO  DEN      95710           679
2638    IAH  DSM      37110           802
2639    SAT  EWR      65780          1569
2640    SMF  EWR      40530          2500
2641    DEN  ANC      68150          2405
2642    IAH  SMF      55630          1609
2643    PDX  IAD      39970          2327
2644    PHX  IAD      66530          1956
2645    SAN  IAD     119260          2253
2646    SJU  IAD      69580          1571
2647    BWI  IAH     121200          1235
2648    CMH  IAH      49220           986
2649    CVG  IAH      57270           871
2650    HNL  IAH      84810          3904
2651    JAC  IAH      12180          1265
2652    PHL  IAH     172490          1325
2653    PIT  IAH      89030          1117
2654    SEA  IAH     215880          1874
2655    EWR  MCI      54500          1092
2656    IAH  MFE     104690           316
2657    IAH  OMA      44350           781
2658    IAH  PIT      90560          1117
2659    EWR  SAN     203570          2425
2660    ORD  ASE      39220          1013
2661    BWI  SFO      38580          2457
2662    HNL  SFO     428870          2398
2663    MCO  SFO     158910          2446
2664    SEA  SFO     629450           679
2665    EWR  SMF      40290          2500
2666    DEN  ASE     111570           125
2667    EWR  SNA      96500          2434
2668    SJC  AUS     140970          1476
2669    BNA  BUR      27500          1791
2670    SJU  BWI     169200          1565
2671    RSW  CMH     101880           930
2672    ECP  DEN       7660          1250
2673    HOU  PDX       2110          1843
2674    HNL  LAS      93470          2762
2675    MCI  LAS     202010          1139
2676    BNA  SAN      76280          1751
2677    HNL  PHX     179430          2917
2678    IND  RSW     130080           945
2679    SAT  SAN      42680          1129
2680    FLL  MKE      26210          1243
2681    IAH  ELP      73340           667
2682    DFW  FSD      45890           737
2683    DSM  IAH      35940           802
2684    EYW  IAH       9270           915
2685    SDF  IAH      38380           788
2686    IAD  MCI      17570           926
2687    CHS  BOS      86700           818
2688    CLE  BOS     101670           563
2689    JAX  BOS     108470          1010
2690    BOS  CHS      88500           818
2691    JFK  CMH      42350           483
2692    MSN  DCA      13620           707
2693    CMH  DTW      68430           155
2694    MCI  EWR      49080          1092
2695    MEM  EWR      27230           946
2696    MSN  EWR      17990           799
2697    SDF  EWR      32300           642
2698    EWR  GSP      37800           594
2699    XNA  LGA      40820          1147
2700    EYW  LGA      14900          1207
2701    SDF  LGA      69700           659
2702    LGA  OKC      21350          1341
2703    JFK  ORD     163060           740
2704    CHS  ORD     100230           760
2705    JAX  ORD     105210           864
2706    SDF  ORD      97480           286
2707    EYW  PHL      35860          1121
2708    MSY  PHL      97100          1089
2709    CLT  SHV      37190           764
2710    BOS  RDU     216900           612
2711    LGA  XNA      42290          1147
2712    ORD  EVV      15100           272
2713    ITH  IAD      10710           250
2714    CAE  ORD      25370           666
2715    PNS  ORD      27040           794
2716    ORD  PNS      28070           794
2717    HRL  MSP      17570          1310
2718    MSP  PSP      46530          1454
2719    GRB  RSW       5050          1287
2720    SBY  CLT      30920           371
2721    SDF  CLT     123780           335
2722    PHL  MHT      43460           289
2723    ISP  PHL      23380           130
2724    SAV  PHL      46220           629
2725    IAH  BHM      48250           562
2726    DIK  DEN      20890           488
2727    ALB  IAD      40470           325
2728    MOB  IAH      39660           427
2729    STL  IAH      59390           667
2730    IAH  ICT      37770           542
2731    DEN  LIT      96300           771
2732    ABE  ATL      57290           692
2733    JFK  BGR      20680           382
2734    JFK  BNA     108520           765
2735    LGA  BTV      41860           258
2736    MSP  BWI     184510           936
2737    LGA  GRR      43440           618
2738    LGA  GSP      45140           610
2739    BTV  JFK      73480           266
2740    PWM  JFK      57670           273
2741    CAE  LGA      13990           617
2742    GRR  LGA      43150           618
2743    ORF  LGA     104880           296
2744    ATL  XNA      90120           589
2745    JFK  RDU     185520           427
2746    BOS  RIC     108410           474
2747    JFK  ROC      86330           264
2748    LGA  ROC      47860           254
2749    JFK  SAV      99740           718
2750    LGA  SAV      89150           722
2751    DFW  TPA     393830           929
2752    DFW  HSV      92680           603
2753    MIA  AUS     212280          1103
2754    PHX  TUS     142570           110
2755    CLT  CHA      84470           241
2756    CLT  PGV      33690           203
2757    DFW  BOI      76360          1272
2758    DFW  OGG     138090          3711
2759    DFW  MAF     114980           309
2760    DFW  BUR     107490          1231
2761    CLT  HNL      19730          4678
2762    CLT  LFT      30330           729
2763    DFW  CLE     180530          1021
2764    MIA  CLE      83840          1080
2765    PHX  CLE     119730          1737
2766    ORD  ANC     101360          2846
2767    BOS  CLT     491160           728
2768    BUF  CLT     115030           546
2769    BWI  CLT     328460           361
2770    CVG  CLT     122940           335
2771    DFW  CLT     496790           936
2772    EYW  CLT     116110           736
2773    FLL  CLT     377460           632
2774    LAX  CLT     379700          2125
2775    MIA  CLT     279810           650
2776    PHX  CLT     397310          1773
2777    RSW  CLT     262320           600
2778    SFO  CLT     187700          2296
2779    STL  CLT     220160           575
2780    SYR  CLT     125670           603
2781    DFW  CVG     160120           812
2782    DFW  DCA     393400          1192
2783    SRQ  DCA      47700           851
2784    PHL  DFW     393350          1303
2785    BNA  DFW     332400           631
2786    BOI  DFW      77810          1272
2787    BUR  DFW     105750          1231
2788    COS  DFW     180800           592
2789    CVG  DFW     156690           812
2790    DCA  DFW     392710          1192
2791    JAC  DFW      44760          1047
2792    LIT  DFW     160770           304
2793    MCI  DFW     241290           460
2794    MCO  DFW     660530           985
2795    MIA  DFW     467760          1121
2796    PIT  DFW     165020          1067
2797    SAN  DFW     487700          1171
2798    SAV  DFW      85240           925
2799    SJU  DFW      68040          2165
2800    SMF  DFW     213470          1431
2801    SNA  DFW     404790          1205
2802    DFW  OMA     133880           583
2803    CLT  LEX      68580           281
2804    CLT  SYR     126450           603
2805    LAX  OKC      35630          1187
2806    DFW  COU      44330           489
2807    DFW  RNO     144470          1345
2808    MIA  STT     133890          1107
2809    DFW  CMH     175380           926
2810    MIA  IND      61970          1020
2811    MIA  JAX     112960           335
2812    CLT  AVP     110510           509
2813    DFW  GPT      47230           500
2814    DFW  VPS     115540           641
2815    AUS  TUL      34750           426
2816    CLT  BGR      28270           921
2817    CLT  AGS      82970           140
2818    DCA  LAX     220750          2311
2819    DFW  SRQ      46170           945
2820    DFW  GRI      26960           561
2821    DFW  MEM     245590           431
2822    PHL  PVD      60170           237
2823    CLT  CAE     111880            88
2824    CLT  MYR     182250           157
2825    CLT  MOB      56800           526
2826    PHX  MCI     235880          1044
2827    DFW  HDN      17940           769
2828    MIA  MEM      40230           859
2829    RDU  MIA     196350           700
2830    BNA  MIA     194690           806
2831    CHS  MIA      40840           489
2832    CLT  RNO        370          2141
2833    DCA  MIA     308330           919
2834    DFW  DSM      94650           624
2835    JAX  MIA     109240           335
2836    SEA  MIA      55600          2724
2837    PHX  MSN      44120          1396
2838    CLT  RIC     268770           257
2839    DFW  ACT      50130            89
2840    PBI  ORD      80400          1143
2841    TUS  ORD      82670          1437
2842    DFW  PSP     139300          1126
2843    PHL  PBI     162110           951
2844    DFW  ELP     292500           551
2845    CLT  EWN      71460           221
2846    CLT  SJU     122140          1475
2847    MCO  PHX     259950          1849
2848    MSN  PHX      46530          1396
2849    DFW  PIT     164160          1067
2850    DFW  BWI     192750          1217
2851    PHX  GJT      41090           438
2852    CLT  ROC      99840           573
2853    DFW  ORF     113700          1212
2854    MIA  PNS      46970           530
2855    DFW  LGB       9090          1221
2856    DFW  HRL      62830           461
2857    MIA  SEA      59180          2724
2858    ORD  MHT      19220           843
2859    PHL  AVL      10050           504
2860    MIA  SFO     136260          2585
2861    DFW  HOU     123200           247
2862    DFW  PDX     273890          1616
2863    PHL  SJU     295860          1576
2864    PHL  CAE      19150           523
2865    DFW  AVL      36650           848
2866    DFW  LEX      57310           785
2867    BOS  STL     127350          1047
2868    CLT  CSG      26220           295
2869    PHL  TPA     348430           920
2870    ORD  TUS      78620          1437
2871    SEA  ABQ      55500          1180
2872    SEA  DFW     513830          1660
2873    SEA  OKC      50780          1519
2874    SEA  CHS      46700          2415
2875    SEA  BWI      66350          2335
2876    SEA  IND      65670          1866
2877    PSG  KTN       1920           111
2878    JNU  KTN      15920           234
2879    SAN  MCO      59230          2149
2880    SEA  MKE      49750          1694
2881    ABQ  PDX      28790          1111
2882    MCO  SAN      56760          2149
2883    SEA  SAT      57970          1774
2884    BUR  SEA     160880           937
2885    CMH  SEA      44980          2016
2886    CVG  SEA      81030          1965
2887    IND  SEA      63890          1866
2888    MKE  SEA      49980          1694
2889    OGG  SEA     208140          2640
2890    OKC  SEA      51040          1519
2891    OMA  SEA      48580          1368
2892    RDU  SEA     109050          2354
2893    SAT  SEA      59600          1774
2894    STL  SEA      83710          1709
2895    TUS  SEA     102460          1216
2896    HNL  SJC     142280          2417
2897    LAX  BDL      30880          2527
2898    PBI  BDL      38640          1133
2899    RSW  BDL      46940          1180
2900    EYW  BOS      11700          1373
2901    SAT  BOS      32430          1764
2902    SAV  BOS      56370           901
2903    MCO  BQN     139170          1129
2904    BOS  BUF      32180           395
2905    LAX  CHS      19400          2206
2906    BOS  CLE     102510           563
2907    BOS  SAN     164080          2588
2908    SJU  DCA      50120          1554
2909    STT  EWR      41260          1634
2910    STT  JFK      77970          1623
2911    JAX  FLL      35460           319
2912    PVD  FLL      54790          1188
2913    SAN  FLL      38210          2269
2914    SJU  FLL     346850          1046
2915    SLC  FLL      98130          2084
2916    MCO  HPN      92450           972
2917    TPA  HPN      39160          1032
2918    JFK  IAH      42040          1417
2919    BOS  JAX     108920          1010
2920    FLL  JAX      35440           319
2921    LAX  JAX      25630          2153
2922    LGA  JAX     131290           833
2923    BQN  JFK      77020          1576
2924    EYW  JFK      13120          1201
2925    IAH  JFK      42890          1417
2926    SAT  JFK      46670          1587
2927    SRQ  JFK      51410          1041
2928    PVD  MCO     206880          1072
2929    BDL  FLL      75490          1173
2930    BDL  PBI      40530          1133
2931    BOS  PBI     212490          1197
2932    JFK  PBI     247300          1028
2933    PVD  PBI      23790          1148
2934    MCO  PSE      67180          1179
2935    FLL  RIC      66930           805
2936    LAX  RIC       1490          2305
2937    MCO  RIC      92070           667
2938    JFK  RNO      33000          2411
2939    JFK  RSW     164250          1074
2940    FLL  SAN      35500          2269
2941    BOS  SAT      30060          1764
2942    JFK  SJC      37990          2569
2943    RDU  SJU      36860          1433
2944    JFK  BTV      72550           266
2945    JFK  SRQ      47420          1041
2946    SLC  OKC      43340           866
2947    BUF  ATL     160190           712
2948    CHS  ATL     383710           259
2949    GRR  ATL     177140           640
2950    JFK  ATL     336420           760
2951    PVD  ATL     129450           903
2952    SRQ  ATL     349700           444
2953    MSP  BIL      45420           748
2954    DTW  FWA      16310           128
2955    SLC  HNL      84960          2994
2956    ATL  HSV     177450           151
2957    ATL  STT     105880          1599
2958    SLC  IAD      46610          1828
2959    DCA  DTW     236870           405
2960    MSP  MLI      22610           274
2961    MSP  FLL     122920          1487
2962    MSP  CLE      83390           622
2963    DTW  LEX      47600           296
2964    DTW  ELM      38130           332
2965    ATL  CSG      32490            83
2966    ATL  FWA      42100           508
2967    ATL  ILM      78810           377
2968    ATL  ABY      33350           145
2969    DTW  ORD     281770           235
2970    JFK  PDX     126360          2454
2971    MSP  RSW     363180          1416
2972    CVG  DCA      98910           411
2973    SLC  STL     115750          1156
2974    SLC  GJT      13010           216
2975    IAD  SLC      45380          1828
2976    ATL  ROC     125100           749
2977    DTW  IND      87340           231
2978    CID  DEN     102370           692
2979    FAR  DEN      71890           627
2980    RDU  DEN     226520          1436
2981    XNA  DEN      64350           616
2982    PBI  ISP      93670          1052
2983    RDU  LAS      94810          2026
2984    LIT  MCO       4210           776
2985    MCO  ONT      37550          2171
2986    PWM  RSW       9220          1343
2987    SYR  RSW      11980          1186
2988    LAS  STL     288500          1371
2989    TTN  TPA      41710           955
2990    MCO  TTN     116890           896
2991    RSW  TTN      20570          1028
2992    DEN  TYS      64380          1162
2993    DEN  XNA      62530           616
2994    IAD  GRR       5660           501
2995    ORD  GSO      52600           589
2996    GSP  IAD      10820           384
2997    ORF  ORD     111570           717
2998    EWR  BQN      55900          1585
2999    IAD  STL      19750           696
3000    DFW  MOB      58220           539
3001    MIA  BHM      22950           661
3002    DFW  LAW      42530           140
3003    DFW  CHA      55870           695
3004    DFW  CID      58990           685
3005    IND  DCA      99160           500
3006    AVL  DFW      37290           848
3007    BFL  DFW      44100          1271
3008    BHM  DFW     126630           597
3009    GCK  DFW      26670           404
3010    LRD  DFW      61760           396
3011    MYR  DFW      27360          1048
3012    VPS  DFW     115900           641
3013    MIA  GRR       5390          1214
3014    CVG  MIA      52700           948
3015    SAV  MIA      23100           440
3016    TYS  MIA      12790           724
3017    CMH  ORD     170670           296
3018    EVV  ORD      14120           272
3019    LIT  ORD      62640           552
3020    SAT  ORD     140030          1041
3021    AUS  CLT     253540          1032
3022    MIA  SAV      23770           440
3023    DFW  TYS      96820           771
3024    MCO  ACY     104560           852
3025    MCO  CAK      23480           861
3026    LAX  CLE      95670          2052
3027    IND  LAS     186560          1590
3028    MKE  LAX      23350          1756
3029    LAX  MKE      21470          1756
3030    LAX  SDF      31350          1843
3031    DCA  AGS      18900           468
3032    PHL  CLE      55890           363
3033    ECP  CLT      45930           437
3034    MKE  CLT      87590           651
3035    TLH  CLT      70920           386
3036    VPS  CLT     101520           460
3037    PHL  CVG      60330           507
3038    AGS  DCA      17410           468
3039    ALB  DCA      57680           318
3040    DSM  DCA      34210           897
3041    HSV  DCA      58650           613
3042    MGM  DCA      11710           693
3043    PWM  DCA      79070           482
3044    DCA  DSM      38860           897
3045    PHL  BHM      26060           772
3046    CLT  ECP      44260           437
3047    CLT  GNV      71570           388
3048    DCA  GRR      30820           524
3049    CLT  ERI      32610           476
3050    DCA  IND      95920           500
3051    CVG  PHL      60090           507
3052    DFW  SBN      41240           846
3053    PSP  AUS       7950          1132
3054    DEN  BFL      20070           845
3055    DEN  PRC       7560           557
3056    SFO  STS      10130            66
3057    JAX  DEN      80510          1447
3058    PSP  DEN     146260           776
3059    SAV  DEN      30830          1414
3060    LBB  DFW     127080           282
3061    TRI  DFW      30630           868
3062    PVD  DTW      57600           615
3063    DFW  FWA      42240           859
3064    SEA  JNU     172470           909
3065    IAH  HOB      13160           501
3066    DEN  IDA      64050           458
3067    OKC  LAX      36640          1187
3068    FAT  LAX      42480           209
3069    MFR  LAX      29730           630
3070    IAH  AEX      13250           190
3071    IAH  VCT       5960           123
3072    CMH  MSP      79280           626
3073    OKC  ORD      75860           693
3074    DTW  PWM      45210           668
3075    PHX  SAF      26750           370
3076    ORD  SAV      56710           773
3077    ORD  ROA      30930           530
3078    MCI  SEA     122270          1489
3079    EUG  SFO      71080           451
3080    MFR  SFO      55350           329
3081    ONT  SFO     107110           363
3082    SBA  SFO      80790           262
3083    DSM  SLC       7190           955
3084    SLC  EUG      49650           618
3085    IAH  ORF      24010          1201
3086    SEA  ALW      37750           213
3087    FAI  ANC     178960           261
3088    ANC  LAX      42800          2345
3089    SEA  MRY      19980           750
3090    PSP  PAE      13390          1017
3091    ALW  SEA      38090           213
3092    SFO  AUS     217600          1504
3093    EWR  HNL      63350          4962
3094    ORD  CGI       6640           339
3095    ORD  TUL      68400           585
3096    ORD  SJU     116680          2072
3097    IAH  CMH      50430           986
3098    PIT  DEN     175530          1290
3099    SJC  DEN     292130           948
3100    BQN  EWR      55080          1585
3101    LAX  FAT      41940           209
3102    AUS  IAD      97230          1297
3103    RSW  IAD      74820           891
3104    MFE  IAH     132280           316
3105    PDX  IAH      80760          1825
3106    SAN  IAH     208810          1303
3107    SJC  IAH      42400          1608
3108    SMF  IAH      55530          1609
3109    SNA  IAH     150770          1346
3110    IAH  PDX      82110          1825
3111    SFO  RDD      39970           199
3112    BWI  LAX     171710          2329
3113    CLE  LAX      95500          2052
3114    IAD  STT      33850          1606
3115    IAD  SJU      70660          1571
3116    IAH  PHL     176540          1325
3117    DEN  SLN       7750           383
3118    DEN  SRQ      24170          1531
3119    IAH  CRP      71260           201
3120    DEN  LBL       5920           280
3121    OAK  ABQ      44780           889
3122    SAN  ABQ      45250           628
3123    ABQ  AUS      62650           619
3124    LBB  AUS      30980           341
3125    LAS  BHM      17630          1618
3126    STL  BNA     120790           272
3127    OAK  BNA      23170          1959
3128    SMF  BNA       7940          1917
3129    BNA  PHX     228770          1449
3130    TPA  BUF      97600          1053
3131    ALB  BWI     179310           289
3132    AUS  BWI     137380          1342
3133    CMH  BWI      88580           337
3134    DAL  BWI     186820          1209
3135    MCI  BWI      74090           967
3136    MHT  BWI     173800           377
3137    SYR  BWI      73340           273
3138    MKE  BWI      73800           641
3139    PBI  BWI     121610           883
3140    SAT  BWI      78850          1407
3141    DAL  CHS      41770           977
3142    FLL  CMH      99010           973
3143    MYR  CMH       6440           488
3144    IND  DAL      62750           755
3145    MEM  DAL      41170           423
3146    MIA  DAL      77700          1109
3147    MKE  DAL      44290           850
3148    SAN  DAL     156230          1182
3149    SAV  DAL      41640           914
3150    SRQ  DAL      21330           934
3151    RSW  DAL      24710          1005
3152    HOU  DCA     100750          1218
3153    MCI  DCA     114730           949
3154    COS  DEN     262700            73
3155    MTJ  DEN     113420           196
3156    ISP  FLL      32730          1092
3157    ABQ  HOU      85450           759
3158    CRP  HOU      89320           187
3159    DCA  HOU      98060          1218
3160    JAN  HOU      75200           359
3161    MCO  ISP     171520           971
3162    FAT  LAS     119980           259
3163    OKC  LAS      87460           986
3164    LAS  LBB      42810           775
3165    HOU  LBB       4360           474
3166    DAL  LGB      42540          1232
3167    STL  LIT      50060           296
3168    LAS  MAF      37500           795
3169    HOU  MCI      73470           666
3170    DCA  MCI     119110           949
3171    SAT  MCO     101710          1041
3172    HOU  MCO     231840           849
3173    ISP  MCO     176390           971
3174    DTW  MDW     173080           228
3175    MHT  MDW      55180           838
3176    SAV  MDW      45820           758
3177    ABQ  MDW      55740          1121
3178    BDL  MDW      79740           777
3179    BUR  MDW      27990          1740
3180    SAT  MDW      77560          1036
3181    TPA  MEM       9650           655
3182    MIA  MKE       6900          1258
3183    BNA  MYR      61880           471
3184    HOU  OAK      81520          1642
3185    MCI  OAK      37410          1489
3186    DCA  OMA      45780          1012
3187    BNA  OMA       2470           612
3188    OKC  PHX     129280           833
3189    ICT  PHX      20330           870
3190    IND  PHX     191700          1488
3191    TPA  PIT     100860           873
3192    OAK  PSP      64420           418
3193    MDW  PVD      65490           842
3194    FLL  PVD      60210          1188
3195    STL  RDU      41630           667
3196    OAK  RNO      46360           181
3197    SNA  RNO       2650           415
3198    BWI  ROC     118480           277
3199    PIT  RSW      73530           966
3200    RNO  SAN      77450           488
3201    DAL  SAN     151870          1182
3202    COS  SAT       3420           732
3203    STL  SAT      42150           786
3204    HOU  SAV      34210           853
3205    LAS  SDF      57630          1624
3206    AUS  SMF      62160          1481
3207    RSW  STL     105280           979
3208    TUL  STL      49310           351
3209    RDU  STL      41960           667
3210    SJC  STL      14100          1715
3211    ISP  TPA      79540          1034
3212    PIT  TPA      98920           873
3213    IND  TPA     124730           837
3214    LAS  TUL      46910          1076
3215    STL  TUL      41690           351
3216    IAH  SAV      30230           851
3217    IAH  CLT     249570           912
3218    ELP  DFW     319900           551
3219    TLH  DFW      50650           767
3220    PHX  YUM      64030           160
3221    MRY  PHX      59750           598
3222    SBA  PHX      72420           455
3223    IAH  RIC      22060          1157
3224    DCA  BDL     103720           313
3225    MCI  BOS      60100          1256
3226    BGR  DCA      57130           590
3227    CHS  DCA     103150           444
3228    PIT  EWR      98750           319
3229    STL  EWR      45280           872
3230    JFK  IAD      21570           228
3231    CVG  IAD      37990           388
3232    IAD  CMH      43720           299
3233    CLE  LGA     122710           419
3234    JAX  LGA     134220           833
3235    ROA  LGA      16830           405
3236    AVL  ORD      40470           536
3237    DLH  ORD      31130           397
3238    SAV  ORD      58190           773
3239    CMH  PHL      58580           406
3240    ORD  CAK      40040           343
3241    DCA  SRQ      46910           851
3242    ORD  AVL      39290           536
3243    IAD  PDX      36370          2327
3244    ORD  FAT      13270          1730
3245    ORD  CAE      26100           666
3246    ORD  CWA      34820           213
3247    IAD  IAH     140220          1190
3248    ORD  ERI      24450           398
3249    TYS  IAD      24230           420
3250    IAD  MKE       5360           611
3251    CHO  ORD      13980           566
3252    ORD  SCE      31190           528
3253    IAD  AVP       7540           189
3254    MSP  CVG      98810           596
3255    GPT  MSP       1570          1024
3256    MSP  MIA     150700          1501
3257    ROC  BOS      41770           343
3258    CHA  CLT      85180           241
3259    PHL  GRR      22020           573
3260    AVL  PHL       9120           504
3261    ROA  PHL      13240           311
3262    BOS  ROC      40670           343
3263    IAH  GSP      21200           837
3264    IAD  MSY      49660           955
3265    ECP  IAH      30550           572
3266    DEN  SAF      29520           303
3267    DFW  BDL      73050          1471
3268    SJU  CLT     122820          1475
3269    CLE  DFW     177190          1021
3270    STT  DFW       7440          2225
3271    DFW  MGM      43870           622
3272    LAX  PHL     345870          2402
3273    DFW  KOA      17460          3724
3274    OGG  LAX     452880          2486
3275    PHL  SBY      14440           107
3276    DFW  SJT      52550           229
3277    ORD  MQT      17430           303
3278    CVG  PHX      36910          1569
3279    DFW  BPT      22850           270
3280    KOA  ANC       9250          2874
3281    OGG  ANC      11000          2797
3282    OME  ANC      34340           539
3283    ANC  SEA     906400          1448
3284    ANC  OME      34740           539
3285    SEA  PSG       7320           787
3286    PBI  HPN     163480          1056
3287    RSW  HPN      63760          1102
3288    RSW  PVD      36490          1200
3289    JFK  SAT      42760          1587
3290    ATW  ATL      30320           765
3291    CID  ATL      39320           694
3292    SMF  ATL     140470          2092
3293    STT  ATL     106840          1599
3294    STX  ATL      14090          1638
3295    SAV  ATL     338790           214
3296    ATL  GNV     122480           300
3297    ATL  ANC      31280          3417
3298    ATL  SHV      53160           551
3299    MSP  BZN     110670           874
3300    EWR  STL      46400           872
3301    EYW  DCA      21030          1023
3302    DAY  DFW      63590           861
3303    TXK  DFW      30720           181
3304    DFW  MRY      40310          1430
3305    CAK  CLT      65430           394
3306    DAB  CLT      89690           416
3307    HPN  DCA      50560           234
3308    TLH  DCA      18470           716
3309    CLT  SBY      37160           371
3310    CLE  PHL      56330           363
3311    SYR  DEN      46120          1492
3312    PHX  LBB      20200           588
3313    FCA  ORD      34560          1352
3314    SFO  SAT      25560          1482
3315    JAC  SFO      18090           737
3316    HNL  EWR      63760          4962
3317    SNA  EWR      96990          2434
3318    EGE  IAH       7710           934
3319    IAH  HNL      81320          3904
3320    IAD  SAN     116080          2253
3321    DEN  MOT      29190           604
3322    BNA  SFO      39590          1969
3323    SAN  BWI      69610          2295
3324    ABQ  DCA       4990          1650
3325    SAN  EUG        920           850
3326    SNA  GEG        810           962
3327    ONT  MDW      51650          1706
3328    MCO  OMA      28640          1211
3329    MDW  BUR      33310          1740
3330    BWI  SAN      64060          2295
3331    MSY  SAN      17120          1599
3332    MDW  SNA      39220          1731
3333    OAK  STL      10270          1725
3334    SJU  TPA     169040          1237
3335    IAH  CHS      32850           925
3336    PIA  DFW      38880           672
3337    PNS  DFW     154750           604
3338    RAP  DFW      51000           835
3339    BZN  IAH       8560          1385
3340    CHS  IAH      33430           925
3341    ORF  IAH      25030          1201
3342    DFW  RAP      48770           835
3343    HHH  CLT      53030           207
3344    ATW  CLT      10410           742
3345    OMA  LGA      47060          1148
3346    EWR  ORF      60430           284
3347    PBI  PHL     162820           951
3348    SJU  MSP      23390          2404
3349    BGR  PHL      53180           473
3350    GRR  PHL      21070           573
3351    HLN  DEN      21410           594
3352    SHV  DEN      13570           792
3353    DEN  SHV      13760           792
3354    SLC  PHL      65000          1927
3355    OGG  ORD      63470          4184
3356    FWA  ATL      40190           508
3357    PHX  DCA     178800          1979
3358    RIC  DFW     114390          1158
3359    TPA  DFW     386270           929
3360    DFW  PIA      40790           672
3361    PHX  SBP      51860           509
3362    DFW  CLL      49080           164
3363    ORD  PBI      79750          1143
3364    STT  PHL      15670          1605
3365    DFW  CMI      27300           692
3366    EYW  ATL     160200           646
3367    TLH  ATL     163310           223
3368    SLC  BWI      77620          1865
3369    PBI  DTW      31660          1086
3370    FSD  ORD      75970           463
3371    DFW  BFL      43260          1271
3372    MSO  DFW      44030          1320
3373    PNS  MIA      42260           530
3374    BHM  DCA      45610           653
3375    SAV  DCA      39740           519
3376    IDA  DEN      64000           458
3377    MSP  XWA      26870           553
3378    BOI  ORD      75990          1437
3379    MSP  PSC      26110          1254
3380    ASE  SFO      13530           848
3381    IAH  RNO      23720          1530
3382    HNL  DEN     102800          3365
3383    BZN  EWR      24670          1882
3384    EGE  EWR      11390          1725
3385    AUS  IAH     161580           140
3386    SFO  IND      39910          1943
3387    RSW  SFO      12320          2481
3388    SFO  RSW      12730          2481
3389    MCO  LAS     198120          2039
3390    DFW  AMA     113140           312
3391    ECP  DFW      51020           685
3392    ILM  DFW      38310          1106
3393    GUC  IAH       6170           886
3394    BOS  MCI      58340          1256
3395    OGG  SLC      25350          2935
3396    MSP  SDF      39750           604
3397    DCA  IAH     162530          1208
3398    HNL  CLT      18490          4678
3399    HNL  ATL      81670          4502
3400    KOA  DFW      16650          3724
3401    MTJ  LGA        760          1810
3402    LFT  ATL      47400           503
3403    ATL  BMI      46310           533
3404    ATL  CID      39820           694
3405    CWA  DTW      17060           363
3406    DSM  LGA      17390          1031
3407    LGA  MEM      63150           963
3408    ATL  MLI      40910           633
3409    MSP  HNL      60550          3972
3410    ATL  SBN      41260           566
3411    SJU  AUS      48470          2146
3412    DCA  GSP      48240           396
3413    PHX  DRO      29470           351
3414    PBI  CLT     249100           590
3415    BDL  CLT     236050           644
3416    ROC  CLT     102280           573
3417    SAN  CLT     198110          2077
3418    SEA  CLT     152770          2279
3419    STT  CLT      58460          1520
3420    STX  CLT       8180          1562
3421    RNO  DFW     150380          1345
3422    EGE  DFW      71240           721
3423    FAT  DFW     156100          1313
3424    ORF  DFW     107340          1212
3425    RDU  DFW     215960          1061
3426    DFW  JAC      40840          1047
3427    DFW  SGF     122050           364
3428    DFW  ABI      67510           158
3429    DFW  SJU      66470          2165
3430    IND  MIA      62060          1020
3431    PHX  BIS       5460          1094
3432    DFW  GRR      69440           931
3433    DFW  SBA      63460          1316
3434    SEA  BLI      81410            93
3435    CLE  PHX     113430          1737
3436    PHL  BTV      43370           335
3437    ORD  SAT     132650          1041
3438    DFW  SPS      24040           113
3439    JFK  SNA      28170          2454
3440    SEA  PIT      59200          2125
3441    SEA  BUR     161450           937
3442    SFO  DAL      37370          1476
3443    ANC  PHX      38930          2552
3444    PDX  ONT      53440           838
3445    AUS  PDX      45370          1715
3446    SNA  PDX     132380           859
3447    MCO  PDX      55660          2534
3448    OGG  PDX      47780          2562
3449    SEA  SBP      29050           847
3450    KOA  SAN      48640          2556
3451    ABQ  SEA      57040          1180
3452    CHS  SEA      45640          2415
3453    JNU  SEA     174200           909
3454    KTN  SEA      84610           680
3455    MSY  SEA      60050          2086
3456    SEA  SIT      44620           861
3457    ANC  SIT      15020           592
3458    KOA  SJC      73800          2384
3459    PDX  SNA     131180           859
3460    SJU  BDL      90830          1666
3461    MSY  BOS      75940          1368
3462    PDX  BOS      59440          2537
3463    ONT  JFK      49850          2429
3464    JAX  LAX      25690          2153
3465    PBI  LAX      10590          2330
3466    MVY  LGA      14970           175
3467    BDL  SJU      84430          1666
3468    DAB  ATL     170740           366
3469    ICT  ATL      89780           782
3470    MSP  GFK      56950           284
3471    SJC  ATL      86530          2116
3472    ATL  ICT      90330           782
3473    STT  BOS      17280          1693
3474    ATL  BZN      60840          1640
3475    ATL  BOI      58740          1838
3476    ATL  TLH     161630           223
3477    ATL  CAE     177510           192
3478    MSP  MOT      70340           449
3479    SLC  LWS      29780           461
3480    SLC  MFR      43590           575
3481    MEM  LAX      23890          1619
3482    DTW  MCI     103800           629
3483    LAX  MEM      25100          1619
3484    MSP  MSO      50220          1013
3485    ATL  ASE       4800          1304
3486    BIL  MSP      44430           748
3487    DTW  PDX      52630          1953
3488    SLC  TUL      41460           926
3489    ATL  MOB      85150           302
3490    ORD  TVC     108900           224
3491    DFW  DAY      66230           861
3492    BIL  DFW      31440          1081
3493    BTR  DFW      85050           383
3494    JAN  DFW      97220           408
3495    SRQ  DFW      42710           945
3496    MIA  GNV      17910           294
3497    BHM  MIA      22640           661
3498    MCO  CRW      16700           686
3499    CSG  CLT      27560           295
3500    BTV  DCA      56770           437
3501    CLT  MSN      64800           708
3502    PHL  ORF      57250           212
3503    DAB  PHL       3920           808
3504    DEN  BIS      43450           516
3505    MSP  BRD      21930           114
3506    BIS  DEN      41600           516
3507    GJT  DEN      85850           212
3508    SBP  DEN      33410           931
3509    TYS  DEN      63840          1162
3510    ASE  DFW      43890           701
3511    DRO  DFW      53610           674
3512    GJT  DFW      55990           773
3513    MSP  IAD      72110           908
3514    MSP  ATW      49840           236
3515    DTW  MQT      25650           349
3516    CLE  MSP      81540           622
3517    FCA  MSP      46190          1026
3518    SLC  OMA      59040           840
3519    MDT  ORD      95660           594
3520    SUN  ORD       3870          1341
3521    PSP  PDX      51610           873
3522    STS  PDX      23240           489
3523    EGE  PHX       1520           513
3524    STS  PHX      26620           699
3525    ORD  GEG      24390          1498
3526    DFW  IAD     137240          1172
3527    JAC  SAN       3650           828
3528    SAN  SBP      13970           263
3529    BIL  SLC      76140           387
3530    EUG  SLC      49940           618
3531    MSO  SLC      72290           436
3532    OKC  SLC      43640           866
3533    OMA  SLC      59980           840
3534    PHX  PAE      54040          1133
3535    BOI  PUW      12470           224
3536    SAN  SBA       9170           192
3537    ELP  SEA      37400          1368
3538    SBA  SEA      39270           908
3539    RIC  DEN      83570          1482
3540    SAT  IAD      58990          1362
3541    STT  IAD      32580          1606
3542    SJU  IAH     134430          2007
3543    IAH  TYS      39370           771
3544    DEN  GUC      33080           152
3545    DEN  SYR      49180          1492
3546    BTV  ORD      81760           763
3547    IAH  JAN      38060           351
3548    SFO  RNO      72080           192
3549    KOA  SFO     164490          2367
3550    LIH  SFO      91490          2447
3551    HNL  SNA      34780          2584
3552    ORD  CRW      24210           416
3553    DEN  GJT      84750           212
3554    SEA  DAL      56590          1670
3555    SRQ  DEN      23570          1531
3556    CMH  FLL      99850           973
3557    MCO  GRR      41670          1024
3558    SAN  HOU      85850          1313
3559    ELP  LAS     106140           583
3560    OGG  PHX     127030          2845
3561    AUS  PIT       3390          1210
3562    OGG  SMF      43550          2404
3563    PHL  STL     116990           814
3564    SAN  STL      55690          1557
3565    IAD  SMF      37380          2358
3566    MCI  IAD      23070           926
3567    IND  IAH      60050           844
3568    MAF  IAH     117810           429
3569    PHX  SBA      71820           455
3570    IND  CLT     169470           427
3571    CLT  GRR      82370           583
3572    MCI  PHL      42920          1038
3573    ABE  ORD      48360           654
3574    PHL  DAY      20710           477
3575    BUF  PHL      46570           279
3576    DRO  DEN      88670           251
3577    IAH  BOI      17060          1482
3578    SGF  IAH      23000           513
3579    BUR  EUG      36940           732
3580    BMI  ATL      46690           533
3581    EVV  ATL      43340           350
3582    DTW  DSM      47720           534
3583    SYR  DTW      70750           374
3584    CHO  LGA      55830           305
3585    MSN  LGA      39700           812
3586    MSN  MSP      90970           228
3587    XNA  MSP      11620           596
3588    DTW  TYS      36000           443
3589    ATL  SGF      66460           563
3590    DFW  BZN      73510          1163
3591    DFW  SBP      40720          1360
3592    RIC  CLT     258090           257
3593    DFW  MSO      42520          1320
3594    DFW  ECP      49360           685
3595    AUS  DFW     435680           190
3596    BZN  DFW      76250          1163
3597    OMA  DFW     130640           583
3598    PHX  DSM      83080          1149
3599    DFW  EUG      39650          1606
3600    DFW  BUF      53150          1212
3601    DFW  EGE      64010           721
3602    KOA  PHX      80530          2860
3603    ORD  BMI      27940           116
3604    DFW  EYW      56830          1089
3605    CLT  STT      56490          1520
3606    PHX  ANC      37420          2552
3607    AUS  BOI      15240          1375
3608    PDX  DFW     276680          1616
3609    PDX  HNL      55380          2603
3610    ANC  ORD     107390          2846
3611    TUS  PDX      21160          1119
3612    KOA  PDX      30000          2607
3613    ONT  PDX      51430           838
3614    GEG  SAN      40990          1027
3615    SIT  SEA      46240           861
3616    PDX  TUS      21020          1119
3617    BZN  BOS       4440          1991
3618    SMF  JFK      40560          2521
3619    SYR  ATL     124790           794
3620    XNA  ATL      90250           589
3621    DTW  SBN      23520           157
3622    BOI  MSP      95370          1142
3623    ATL  GTR      37420           241
3624    MIA  SLC      68820          2088
3625    CHA  DFW      56260           695
3626    CLL  DFW      48310           164
3627    EVV  DFW      44430           642
3628    MOB  DFW      57500           539
3629    MIA  SAT      35930          1143
3630    DCA  LIT      19780           888
3631    SDF  MIA      26280           910
3632    DFW  MYR      28380          1048
3633    FLL  BQN      53250           982
3634    DCA  CAE      43750           408
3635    OMA  CLT      75030           913
3636    PNS  DCA      45780           816
3637    CLT  FSD       4850          1021
3638    CLT  MHT      70460           737
3639    TYS  PHL      26400           554
3640    SFO  ABQ      35340           896
3641    SLC  BIL      73120           387
3642    SBN  DFW      39390           846
3643    GRR  DFW      67450           931
3644    MEM  DTW      51560           610
3645    ORF  DTW      60270           529
3646    SAN  GEG      41660          1027
3647    RAP  MSP      61380           489
3648    ASE  ORD      37960          1013
3649    DEN  EGE      54930           120
3650    MTJ  SFO       2030           791
3651    PSP  SJC      16220           390
3652    MFR  SLC      42470           575
3653    RDM  SLC      47040           525
3654    TUL  SLC      41670           926
3655    PAE  LAS      39480           894
3656    SBA  SAN       8900           192
3657    STS  SEA      49910           618
3658    JAC  DEN      94940           406
3659    EWR  HHH      10040           687
3660    PDX  ORD     252910          1739
3661    IAH  PNS      69880           489
3662    DEN  HLN      21060           594
3663    EWR  EYW      44390          1196
3664    IAD  SAT      54310          1362
3665    IAH  GPT      25900           376
3666    RNO  BUR      32930           374
3667    AUS  DCA      52080          1315
3668    HOU  ISP        180          1465
3669    MKE  MCO     194060          1066
3670    SJC  MDW      67930          1838
3671    OGG  OAK      85460          2349
3672    ABQ  OAK      40800           889
3673    LIH  OAK      47700          2457
3674    PIT  PHX      86560          1814
3675    LAS  ICT      13570           986
3676    MDW  CLT      79010           584
3677    KOA  SMF      10610          2435
3678    SAT  STL      39080           786
3679    HSV  DFW      91000           603
3680    PHX  FAR       7350          1225
3681    PHX  FSD      25520          1081
3682    GRR  IAH      17490          1042
3683    GSP  IAH      22060           837
3684    DFW  MLI      40380           691
3685    IAH  RDU      62470          1042
3686    CLE  DCA      58640           310
3687    SAV  IAD      34730           515
3688    SBN  LGA        890           651
3689    EWR  MEM      26850           946
3690    BDL  PHL      64210           196
3691    DAY  ORD      96850           240
3692    MOB  CLT      57850           526
3693    TYS  CLT     117030           177
3694    DAY  PHL      22010           477
3695    PHF  PHL       8410           201
3696    TYS  IAH      39620           771
3697    IAH  MOB      39430           427
3698    CAE  ATL     174550           192
3699    JFK  DTW      88030           509
3700    DFW  ANC      40800          3043
3701    DFW  BGR       2930          1717
3702    DSM  CLT      66120           815
3703    SAN  MIA      45070          2267
3704    DFW  LBB     128320           282
3705    CHS  DFW     112340           987
3706    EYW  DFW      62840          1089
3707    GSP  DFW      71530           862
3708    GUC  DFW      10900           678
3709    HNL  DFW     170950          3784
3710    IND  DFW     189330           761
3711    OKC  DFW     249540           175
3712    SAT  DFW     447170           247
3713    SBA  DFW      61670          1316
3714    DFW  MKE     121580           853
3715    JAC  JFK       5180          1894
3716    SNA  JFK      26810          2454
3717    ORD  BUF     163000           473
3718    ORD  HDN      15060          1009
3719    BDL  MIA     122890          1194
3720    MIA  ORF      45730           802
3721    DFW  SAV      85130           925
3722    AUS  SJU      50340          2146
3723    CLT  SGF      54160           708
3724    PHL  SLC      62220          1927
3725    CDV  ANC      13400           160
3726    JNU  PSG       9060           123
3727    ANC  BET      73000           399
3728    ROC  JFK      83330           264
3729    FLL  LAS     113380          2173
3730    DCA  SJU      49220          1554
3731    HPN  TPA      36360          1032
3732    MSN  ATL      87550           707
3733    DTW  MEM      49070           610
3734    PVD  EWR      44890           160
3735    SYR  DFW      34130          1336
3736    LFT  DFW      64950           351
3737    TLH  MIA      52550           402
3738    MIA  OKC      11580          1222
3739    MCO  MKE     194420          1066
3740    CLT  CID      45000           742
3741    CID  CLT      44280           742
3742    MEM  CLT     178450           511
3743    BUF  DCA      54220           296
3744    GRR  DCA      28120           524
3745    DCA  MEM      60270           762
3746    DCA  ALB      67910           318
3747    MHK  DFW      45410           431
3748    TUS  IAH      51240           936
3749    MTJ  LAX       1940           666
3750    DEN  LWS      12320           768
3751    AVP  ORD      53220           632
3752    SYR  ORD     128140           607
3753    JAC  ORD      46750          1162
3754    ROW  PHX      14880           433
3755    DEN  SBP      33970           931
3756    BZN  SFO      32660           807
3757    GJT  SLC      12770           216
3758    ANC  ADQ      71340           253
3759    ORD  HSV      27300           510
3760    IAH  BRO      36340           308
3761    SMF  IAD      39980          2358
3762    ABQ  IAH      62360           744
3763    HNL  ORD      98660          4243
3764    RDU  SFO      47820          2400
3765    BWI  ABQ      12990          1670
3766    SAN  BNA      68070          1751
3767    SJC  BNA      27780          1947
3768    ABQ  BWI      11030          1670
3769    SRQ  BWI     130920           880
3770    ALB  DEN      21430          1610
3771    DEN  JAX      75880          1447
3772    TPA  HDN         50          1647
3773    SLC  HOU      43800          1214
3774    BHM  LAS      20600          1618
3775    CMH  LAS     138470          1771
3776    SDF  LAS      63040          1624
3777    BUF  LAS      17560          1986
3778    SAT  LAS     194520          1069
3779    PHX  LIT       2470          1136
3780    CMH  MCO     224870           802
3781    PDX  MDW      65430          1751
3782    MCO  MHT     106430          1142
3783    TPA  MHT      18360          1204
3784    TPA  MKE      83580          1075
3785    DAL  PDX       6060          1626
3786    MDW  PDX      65310          1751
3787    BUF  PHX      10480          1912
3788    SDF  PHX      20320          1506
3789    FLL  SAT       7190          1145
3790    DAL  SDF      15030           725
3791    HOU  SMF      42540          1624
3792    STL  SMF      30150          1679
3793    SMF  STL      32390          1679
3794    CID  DFW      57810           685
3795    FAR  DFW      38280           968
3796    IAD  DTW     115090           383
3797    IAH  HSV      30850           595
3798    CID  PHX      20870          1252
3799    FAR  PHX       7620          1225
3800    GRR  CLT      80400           583
3801    DAY  LGA      14310           549
3802    PIT  RDU      29840           328
3803    ROA  ORD      30670           530
3804    HSV  IAD      13850           596
3805    DCA  OKC      45780          1158
3806    PHL  ORH       1040           241
3807    ORD  BIL       3920          1061
3808    CLT  HHH      52990           207
3809    JFK  BWI      54580           184
3810    MCO  MIA     301180           192
3811    JFK  CHS     128670           636
3812    ORH  FLL      27140          1211
3813    ORH  JFK      27660           150
3814    FLL  ORH      28570          1211
3815    JFK  ORH      30720           150
3816    STT  SJU      39990            68
3817    SJU  STT      34100            68
3818    ATL  MSN      91700           707
3819    MCO  BMI       6510           936
3820    RSW  BUF      26120          1144
3821    FSD  DEN     104880           483
3822    HRL  DEN      10430          1023
3823    ONT  DEN     292380           819
3824    LAS  DSM      41350          1216
3825    LAS  DRO       3680           418
3826    LAS  FSD       7580          1104
3827    MCO  HRL       3950          1016
3828    MCO  ILG       7570           841
3829    MYR  ISP      12250           586
3830    RSW  ISP      31110          1101
3831    STL  LAS     281200          1371
3832    CLE  MCO     321840           895
3833    ONT  MCO      40100          2171
3834    TTN  ORD       2770           692
3835    ISP  PBI      96520          1052
3836    MCO  PWM      20320          1214
3837    RSW  PWM       9580          1343
3838    BDL  RDU       8660           532
3839    TTN  RDU      18120           373
3840    ISP  RSW      30560          1101
3841    MCO  SWF      24640           989
3842    TPA  SWF      17180          1047
3843    TPA  SYR      14110          1104
3844    GRR  TPA      12130          1041
3845    ATL  TTN      47880           701
3846    ORD  TTN       2530           692
3847    PBI  TTN      50200           985
3848    TPA  TTN      41670           955
3849    MIA  CHS      39240           489
3850    PBI  ACY      24570           936
3851    TPA  ACY      42940           913
3852    RSW  CAK       6990           991
3853    LAX  CMH      36190          1995
3854    ACY  PBI      25670           936
3855    SDF  FLL      21430           895
3856    PNS  IND       1430           639
3857    CLE  LAS     140090          1824
3858    PIT  LAX      41350          2136
3859    MYR  LBE      28500           455
3860    MYR  LGA     111270           563
3861    ACY  MCO     106780           852
3862    MHT  MCO     102340          1142
3863    STT  MCO      56440          1246
3864    EWR  MYR     108440           550
3865    LBE  MYR      29660           455
3866    LGA  MYR     110790           563
3867    MCO  STT      53410          1246
3868    MYR  ORD      64760           753
3869    MYR  PHL      72550           473
3870    ACY  RSW      60890           982
3871    LBE  RSW       7960           956
3872    FLL  SDF      21100           895
3873    DCA  TYS      42880           437
3874    MRY  LAX      27740           266
3875    BFL  SFO      14860           238
3876    BIL  DEN      94900           455
3877    IAD  ABE       6120           159
3878    MCI  ORD     189870           403
3879    HOU  DTW      13470          1092
3880    MDW  SAV      42550           758
3881    HNL  ITO     140910           216
3882    OKC  IAH     104690           395
3883    LGA  ORH       7960           146
3884    DCA  CLE      57380           310
3885    MSP  AVL      18870           861
3886    AVL  MSP      18350           861
3887    IND  MSP     128600           503
3888    PBI  MSP      11140          1451
3889    MSP  PBI      11470          1451
3890    MSP  PGD      12270          1386
3891    LBB  IAH      27560           458
3892    GUM  HNL      75820          3801
3893    EGE  JFK       9840          1746
3894    PDX  ANC      59640          1542
3895    SLC  ANC      28340          2125
3896    RIC  IAH      22010          1157
3897    KOA  ORD      15060          4213
3898    STL  SJC      17420          1715
3899    RST  ATL       1860           831
3900    GRB  DTW      51390           287
3901    MCI  CLT     138040           808
3902    OKC  CLT      71050           940
3903    SRQ  CLT     130470           547
3904    XNA  DFW     150720           280
3905    DSM  PHX      80010          1149
3906    OTZ  ANC      31610           548
3907    ANC  AKN      20490           288
3908    DCA  SEA     106470          2329
3909    HPN  PBI     158320          1056
3910    JFK  STT      76560          1623
3911    CVG  ATL     290370           373
3912    ELP  ATL      98170          1282
3913    ROC  ATL     118460           749
3914    CVG  LAS     112040          1678
3915    SLC  CPR      14850           320
3916    MSP  ABR      25970           257
3917    ORF  EWR      52450           284
3918    DFW  GSO      60230           999
3919    DFW  BIL      31010          1081
3920    CLT  BTR      47800           675
3921    DCA  CRW      13080           249
3922    ORF  DCA      68180           142
3923    PHL  GSP      34220           515
3924    GSP  PHL      36420           515
3925    MSN  PHL      16170           764
3926    ORF  PHL      58560           212
3927    DEN  GCC      21540           313
3928    ASE  DEN     115630           125
3929    FCA  DEN     104790           752
3930    MFR  DEN      74010           964
3931    MOT  DEN      28710           604
3932    IDA  DFW      34510          1095
3933    SAF  DFW      65000           551
3934    MFR  PHX      33220           854
3935    SFO  SUN       8280           587
3936    LAX  EUG      35090           748
3937    DEN  TWF       1740           542
3938    IAH  ABQ      61920           744
3939    IND  SFO      41170          1943
3940    BUR  ATL       1390          1941
3941    LAS  BUF      17840          1986
3942    PHX  BUF       9240          1912
3943    JAX  BWI     136110           663
3944    HOU  CMH      33650          1001
3945    DAL  CMH      44500           919
3946    HDN  DAL       4230           779
3947    RDU  DAL      46530          1052
3948    RSW  GRR      21730          1147
3949    TUL  PHX      67430           935
3950    HOU  ECP      59940           571
3951    PHX  SDF      16690          1506
3952    PHX  CID      24430          1252
3953    BMI  DFW      38350           690
3954    PBI  IAH      17750           956
3955    HHH  ATL      32170           238
3956    LGA  DAY      16060           549
3957    EYW  IAD      14440          1023
3958    IAD  BTV      51390           441
3959    MKE  PHL      43520           690
3960    IAD  JFK      22290           228
3961    ATL  MGM      57130           147
3962    DFW  DRO      52960           674
3963    CLT  FLO      31200            99
3964    CLT  HSV      61590           333
3965    PHL  FLL     343130           992
3966    DCA  CHS     108920           444
3967    DFW  LRD      59750           396
3968    AUS  CVG      50970           958
3969    JFK  PHL       8930            94
3970    MIA  GSO      10910           710
3971    TUL  DFW     230060           237
3972    DFW  BMI      40300           690
3973    ORD  LSE      36190           215
3974    PHX  BFL      58910           425
3975    CLT  SBN      41450           534
3976    PHL  ROC      39300           257
3977    PHL  JFK       8060            94
3978    CLT  ONT      30040          2078
3979    CLT  TRI      57600           119
3980    DCA  BTV      58140           437
3981    ORD  RST      30990           268
3982    CMH  MIA      36100           990
3983    DFW  DRT      22630           335
3984    CLT  CRW      59290           221
3985    CLT  EVV      30200           414
3986    SEA  GTF      23060           512
3987    PDX  PSP      49350           873
3988    PDX  RNO      39370           444
3989    BUF  JFK     137250           301
3990    JFK  PWM      55460           273
3991    FLL  CHS      24590           470
3992    JFK  ACK      23860           199
3993    SDF  ATL     277260           321
3994    DTW  ATW      37450           296
3995    DTW  ALB      65770           489
3996    MSP  ICT      25350           545
3997    ATL  RST       2340           831
3998    CVG  FLL      36050           932
3999    DTW  CWA      16910           363
4000    DTW  CHA      13900           505
4001    SJU  JAX      20920          1288
4002    SYR  JFK      58300           209
4003    TUL  CLT      69010           842
4004    SAN  MSY      15600          1599
4005    SNA  HOU      20510          1357
4006    RSW  MCO      43090           133
4007    SMF  SFO      39330            86
4008    MLI  MSP      22050           274
4009    BHM  ATL     316340           134
4010    TYS  ATL     194120           152
4011    TUS  PHX     146690           110
4012    PDX  GEG      74320           279
4013    IND  DTW      85940           231
4014    SAN  LIH      51380          2676
4015    AGS  CLT      87360           140
4016    BDL  IAD     114230           326
4017    RDU  CLT     370480           130
4018    MYR  FLL      54910           529
4019    EYW  MIA      73140           126
4020    IND  ORD     153760           177
4021    ANC  PDX      67120          1542
4022    XNA  ORD      88300           522
4023    CHS  CLT     221320           168
4024    DCA  PHL      39710           119
4025    ALB  PHL      44870           212
4026    ROA  IAD      14510           177
4027    IAH  MLU       4030           262
4028    MIA  IAD      49850           921
4029    HOU  SLC      46330          1214
4030    SJC  HNL     148740          2417
4031    BNA  SJC      29100          1947
4032    DAL  RSW      23290          1005
4033    KOA  HNL     156650           163
4034    PIT  HOU       3310          1131
4035    SHV  IAH      32190           192
4036    MSP  ESC       8790           304
4037    EWR  IAD      97830           212
4038    FLL  STT      51530          1107
4039    FLG  PHX      49980           119
4040    BZN  SLC     113410           347
4041    DEN  ATY       1450           519
4042    CLT  MDW      78800           584
4043    PIT  STL      44020           554
4044    CHS  DAL      40360           977
4045    SJC  OGG     119930          2355
4046    MCO  BUR       1390          2215
4047    PSE  MCO      65760          1179
4048    JAN  BWI      26420           888
4049    GRR  ORD     151160           137
4050    SAT  IAH     217290           191
4051    PDX  KOA      31200          2607
4052    ANC  SLC      33260          2125
4053    JNU  ANC      76270           571
4054    GSP  ATL     305850           153
4055    SLC  OGG      26760          2935
4056    ILM  CLT     187290           185
4057    SJU  MDW      11150          2057
4058    STL  ORD     160470           258
4059    JAX  CLT     246090           328
4060    SAV  CLT     186750           213
4061    RNO  AUS      23610          1405
4062    STL  SNA      16580          1569
4063    MYR  PIT      28580           475
4064    COS  MDW      56850           917
4065    SJC  DFW     122530          1438
4066    MIA  PIT      54710          1013
4067    SIT  ANC      15400           592
4068    BOS  PDX      57670          2537
4069    DCA  PDX      41570          2350
4070    LAX  RSW      17700          2238
4071    BWI  SEA      68570          2335
4072    HPN  MCO      89110           972
4073    BOS  MSY      76640          1368
4074    HDN  ATL      14170          1340
4075    HPN  ATL     117390           780
4076    ATL  RNO       3320          1993
4077    MEM  SLC      47680          1262
4078    MYR  EWR     107660           550
4079    SGF  CLT      56110           708
4080    MIA  RIC      27180           825
4081    BHM  CLT     111220           350
4082    BTV  CLT      54340           761
4083    CLT  ITH      16390           557
4084    PWM  PHL      71090           364
4085    DFW  ASE      43080           701
4086    CSG  DFW      15670           705
4087    TUL  LAX      21300          1283
4088    IAH  STT      24230          2070
4089    IND  AUS      75290           919
4090    PIT  SRQ      20570           912
4091    PHX  SGU      30260           262
4092    PWM  ORD      87070           900
4093    AUS  PHL      65060          1430
4094    SRQ  PHL      34320           957
4095    ICT  IAH      36600           542
4096    MSP  ANC     101830          2519
4097    BMI  DEN      10120           834
4098    MCO  GRB       8110          1169
4099    ATL  ISP      34490           795
4100    MEM  LAS      38090          1416
4101    HSV  MCO       8100           535
4102    MSN  MCO       8630          1109
4103    PNS  MCO      32970           381
4104    SWF  MCO      26810           989
4105    PVD  MIA       1970          1209
4106    MCO  MSN       8970          1109
4107    RSW  SYR      12630          1186
4108    DTW  PLN      27890           243
4109    SAT  CLT     167650          1095
4110    IAD  DFW     137710          1172
4111    MIA  GSP      12780           637
4112    KTN  SIT       4730           183
4113    ANC  YAK       3520           373
4114    PSP  BOS        670          2517
4115    BOS  SJC       5560          2689
4116    LAX  CVG      45410          1900
4117    SLC  TWF      18500           175
4118    ATL  DHN      39250           170
4119    SLC  GTF      35030           463
4120    SLC  BTM      16330           358
4121    ATL  CRW      35630           363
4122    CVG  SLC      78260          1450
4123    SGF  DFW     120220           364
4124    JAN  CLT      60740           562
4125    PNS  CLT     104970           488
4126    PVD  CLT     143100           683
4127    IND  PHL      69820           588
4128    DCA  TLH      17470           716
4129    COU  DFW      41880           489
4130    MQT  DTW      27500           349
4131    MSP  MQT       4690           300
4132    JAC  LAX      17390           784
4133    DFW  STS      20020          1495
4134    DEN  XWA      37120           582
4135    GRR  MSP     117100           408
4136    MSP  OKC      24570           694
4137    DEN  SGU      18790           517
4138    IAH  HRL      42570           295
4139    OGG  EWR      13670          4904
4140    ITO  LAX      35420          2449
4141    COS  ORD      57390           911
4142    MDW  ABQ      50030          1121
4143    MDW  SJU       8160          2057
4144    SMF  AUS      59700          1481
4145    BUR  DAL      26290          1243
4146    BHM  HOU      49060           570
4147    JAX  HOU      33920           816
4148    BNA  SNA      40030          1772
4149    PVD  TPA      71340          1136
4150    FSD  DFW      46880           737
4151    LEX  CLT      66640           281
4152    IAH  BZN       8060          1385
4153    IAH  XNA      27500           438
4154    JAC  EWR      11740          1874
4155    HNL  MSP      61040          3972
4156    ORF  BOS      10280           468
4157    BGR  LGA      51210           378
4158    BTV  LGA      38910           258
4159    ROC  LGA      46390           254
4160    SYR  LGA      47750           198
4161    BOS  ORF      11290           468
4162    CLT  JAC       1920          1685
4163    AMA  DFW     115160           312
4164    ORD  ELP      53020          1236
4165    DFW  GSP      72290           862
4166    CLT  MGM      30540           372
4167    AUS  JAX      21740           954
4168    MIA  MCI      31990          1251
4169    MCI  MIA      35330          1251
4170    MEM  MIA      38090           859
4171    STL  MIA      99120          1068
4172    CLT  GPT      46980           577
4173    DFW  CSG      14890           705
4174    ELP  ORD      53980          1236
4175    DFW  PWM       9760          1622
4176    PHL  ART      22400           287
4177    ORD  TOL      21510           213
4178    DFW  AEX      36340           285
4179    PHL  BUF      48860           279
4180    CLT  EYW     107010           736
4181    PHL  SAV      43830           629
4182    PHL  SYR      42100           228
4183    DFW  GNV      28140           900
4184    PDX  AUS      45210          1715
4185    SEA  CVG      85570          1965
4186    SYR  BOS      21790           265
4187    ALB  FLL      48700          1204
4188    CHS  FLL      23600           470
4189    PDX  FLL      10810          2694
4190    FLL  HPN      87980          1097
4191    CHS  LAX      18780          2206
4192    LAS  BDL      21300          2297
4193    RIC  LAX       1150          2305
4194    FLL  PDX      11000          2694
4195    LAS  RIC       3450          2086
4196    BOS  SAV      55950           901
4197    DTW  BTV      29410           537
4198    MSP  SJC      37820          1575
4199    MSP  LNK       6940           331
4200    DTW  ABE      27570           425
4201    FAI  SEA     229850          1533
4202    DTW  BHM      13610           625
4203    ATL  EVV      44140           350
4204    ISP  ATL      32730           795
4205    RDU  BDL       8840           532
4206    GRR  MCO      42180          1024
4207    PHL  MSY      98440          1089
4208    MIA  PVD       2580          1209
4209    MCO  FSD       3710          1351
4210    SYR  EWR      32170           195
4211    IAD  ALB      39350           325
4212    ORD  ALO      15370           234
4213    AUS  RNO      22570          1405
4214    GPT  DFW      47050           500
4215    MAF  DFW     118260           309
4216    DFW  IDA      33710          1095
4217    DFW  EVV      44380           642
4218    LEX  ORD      67450           323
4219    GJT  PHX      40870           438
4220    MIA  TYS      13540           724
4221    SJU  ACY      12670          1536
4222    STX  FLL      42200          1140
4223    TPA  LBE       6260           866
4224    SJU  LGA       3510          1608
4225    LGA  SJU       3360          1608
4226    ACY  TPA      46780           913
4227    CLT  BZN       2770          1736
4228    DCA  TUL      13520          1049
4229    LAN  DCA      12870           479
4230    PIT  DCA      69870           204
4231    CLT  HTS      27620           235
4232    DCA  ILM      37090           319
4233    DCA  LAN      14320           479
4234    IAH  CLL       5460            74
4235    PHX  GRR      14070          1574
4236    IAH  AMA      24060           517
4237    SFO  CLE      47900          2161
4238    DEN  FLG      22540           503
4239    CRP  IAH      73980           201
4240    EUG  LAX      33740           748
4241    RDM  LAX      36680           726
4242    IAH  MAF     112640           429
4243    ORD  MYR      64950           753
4244    FNT  ORD      64150           223
4245    HSV  ORD      28210           510
4246    PVD  ORD      71630           849
4247    SBP  PHX      51640           509
4248    PHX  ROW      14720           433
4249    RDM  SFO      79290           462
4250    RNO  SFO      73840           192
4251    IAH  TUL      83810           429
4252    SEA  RSW      23770          2623
4253    SEA  RDD      19650           479
4254    SNA  STS      24180           433
4255    EWR  ALB      33800           143
4256    IAD  RIC      39880           100
4257    EWR  GRR      26890           605
4258    ORD  EAU      15130           269
4259    CLE  FLL     140740          1062
4260    DEN  GSP      24360          1278
4261    DEN  LBF      10030           228
4262    ORD  CHO      14160           566
4263    IAD  MDT       6170            94
4264    IAD  DAY      22410           368
4265    SFO  TUS      35500           751
4266    DEN  AMA      25990           359
4267    IAD  ERI       5030           259
4268    IAH  MEM      69020           468
4269    SFO  TPA      70010          2393
4270    SFO  MRY      20240            77
4271    DEN  RST        770           686
4272    IAD  ILM       6380           323
4273    MDW  SAT      73370          1036
4274    PHX  ICT      19830           870
4275    MDW  RNO       4630          1680
4276    DAL  BOI        890          1282
4277    CLT  DAL      38600           926
4278    FLL  ISP      34620          1092
4279    STL  ECP      36430           634
4280    DTW  HOU       9620          1092
4281    STL  PDX       8320          1708
4282    COS  BUF        170          1384
4283    SAN  ORF       2990          2330
4284    MDW  GSP        200           562
4285    DAL  HDN       3730           779
4286    HOU  SNA      24740          1357
4287    SNA  OMA        640          1312
4288    DEN  ALB      20050          1610
4289    BWI  OAK       6130          2447
4290    LGB  MDW      38550          1741
4291    DAL  MIA      79540          1109
4292    BUR  BNA      28520          1791
4293    LGB  OKC        200          1174
4294    SNA  BNA      46200          1772
4295    PHX  MHT        150          2280
4296    LGB  GEG       1190           953
4297    AUS  LBB      32210           341
4298    IAD  SCE       9500           133
4299    HOU  DFW     119360           247
4300    MYR  IAD      13840           372
4301    JAN  IAH      37410           351
4302    SRQ  IAH       9810           796
4303    IAD  MYR      13700           372
4304    IAH  LBB      27970           458
4305    BZN  PHX        240           853
4306    IAH  SRQ       9130           796
4307    VPS  AUS       5030           666
4308    IAD  CHS      68180           441
4309    RIC  JFK      65060           288
4310    ILM  LGA      65700           500
4311    PHL  SCE      33450           153
4312    RDU  PIT      30750           328
4313    IAD  PBI      25350           859
4314    AVL  IAD      10040           370
4315    DAY  IAD      20440           368
4316    ERI  IAD       6630           259
4317    GRR  IAD       5670           501
4318    RSW  DLH       5680          1512
4319    RSW  GRB       5460          1287
4320    AZA  MSP      11750          1267
4321    MYR  MSP      28270          1085
4322    PGD  MSP      12320          1386
4323    PIE  MSP      10330          1307
4324    LAS  XWA       1810          1022
4325    PHL  AUS      60670          1430
4326    BOS  MDT      10320           335
4327    HSV  IAH      31090           595
4328    XNA  IAH      26470           438
4329    HVN  TPA      26470          1067
4330    BTV  ATL      35470           961
4331    DFW  ILM      39520          1106
4332    RNO  JFK      30190          2411
4333    HNL  JFK       1310          4983
4334    LGA  CHO      57610           305
4335    BUF  LGA      69400           292
4336    DTW  IMT       8780           344
4337    DFW  SWO      23930           225
4338    DCA  JAN      16240           860
4339    DFW  FAY      22150          1051
4340    ORD  DBQ      20500           147
4341    DFW  MHK      43850           431
4342    BUF  ORD     163810           473
4343    CLT  XNA      66400           754
4344    DFW  MTJ      51790           722
4345    JNU  SIT      20540            95
4346    RIC  MCO      93010           667
4347    ATL  ATW      31770           765
4348    SLC  CNY       6160           183
4349    SLC  MKE      27300          1247
4350    ATL  MTJ       6950          1352
4351    TTN  ATL      49590           701
4352    MDT  MCO      12010           851
4353    TYS  MCO       6060           532
4354    CAK  ORD      38900           343
4355    IAD  CAE      20530           401
4356    CID  ORD     100890           196
4357    LAN  ORD      32440           179
4358    DCA  CAK      14780           274
4359    TPA  CAK       9500           894
4360    BQN  FLL      53280           982
4361    CMH  LAX      35770          1995
4362    FLL  LBE      29370           980
4363    TPA  MCI      90210          1048
4364    BOS  MYR      64940           738
4365    CAK  RSW       7620           991
4366    CMH  RSW      98950           930
4367    DCA  ROC      55740           296
4368    GSO  CLT     132090            83
4369    GSO  DCA      36070           248
4370    GSP  DCA      49160           396
4371    MLB  DCA       2160           769
4372    PHL  PHF       8680           201
4373    PVD  DCA     152220           356
4374    ROC  DCA      49990           296
4375    SYR  DCA      56910           298
4376    PHL  CAK       4980           335
4377    PVD  PHL      59160           237
4378    IAH  LIT      47250           374
4379    MSP  MEM      53880           700
4380    MEM  IAH      68270           468
4381    PNS  IAH      70920           489
4382    ORD  EAR       7940           583
4383    BRD  MSP      22200           114
4384    BIS  PHX       5360          1094
4385    RAP  PHX       7470           876
4386    DEN  JLN       8290           582
4387    ORD  MHK      24850           501
4388    LAX  PSP       5670           110
4389    MSP  RHI      22540           190
4390    JAC  SEA      10200           621
4391    PDX  EWR     109160          2434
4392    PWM  IAD      40090           493
4393    SFO  FAT      48030           158
4394    IAD  ROA      15620           177
4395    IAH  PIB       8780           372
4396    DAL  CLT      36230           926
4397    DAL  CRP      19670           352
4398    BWI  MEM       2650           787
4399    MCI  PDX      12250          1482
4400    AUS  HRL      46090           273
4401    HOU  PIT       4500          1131
4402    PHX  MAF      17940           581
4403    PHL  MKE      41150           690
4404    CHS  IAD      69330           441
4405    CMH  IAD      41090           299
4406    ROC  IAD      39630           288
4407    GSO  PHL      31490           365
4408    DCA  CHA      16200           523
4409    ILM  IAD       6650           323
4410    MHT  IAD       5130           418
4411    SDF  IAD      23610           451
4412    SYR  IAD      55740           296
4413    ATW  ORD      94930           161
4414    PNS  TPA       4700           330
4415    DFW  FAI        410          3056
4416    DFW  SGU      12250           976
4417    PHX  IDA      19060           695
4418    DFW  SAF      67110           551
4419    CLT  FWA      32800           460
4420    RNO  PDX      38320           444
4421    ATL  MLU      34070           448
4422    SLC  EKO      12680           200
4423    BTV  DEN      20220          1639
4424    DEN  HRL       7380          1023
4425    ORF  MIA      43350           802
4426    LAS  MSN       8410          1454
4427    RSW  OMA       6810          1299
4428    FLL  ACY      69430           977
4429    MYR  BDL      55240           664
4430    LBE  FLL      30700           980
4431    BDL  MYR      55890           664
4432    FNT  CLT      38420           555
4433    HSV  CLT      57440           333
4434    PHL  CHO       1440           210
4435    DCA  MYR      16220           372
4436    PHX  RAP       7550           876
4437    ORD  MKG      11620           119
4438    ORD  MCW       5130           289
4439    PAE  PSP      13300          1017
4440    SBP  SEA      28290           847
4441    SEA  EAT      38800            99
4442    ORD  DEC       7380           156
4443    SFO  ACV      47040           250
4444    DEN  RKS      13350           260
4445    DEN  COD      35520           391
4446    IAH  LRD      22850           301
4447    HOU  PHL       4770          1336
4448    CRP  DAL      20060           352
4449    MCI  PNS      13050           743
4450    SAT  SJC       2850          1454
4451    OGG  KOA      37890            84
4452    BNA  ABQ       1100          1123
4453    OAK  BLI      55920           764
4454    BZN  SAN       3990           956
4455    BNA  RIC        140           527
4456    RNO  SNA       4070           415
4457    MEM  TPA       7320           655
4458    IAD  JST       3100           120
4459    IAD  SHD       4790            91
4460    PVD  IAD      31780           371
4461    BUR  ACV      22900           564
4462    LAS  ACV       5220           591
4463    ACV  BUR      23730           564
4464    EUG  BUR      33570           732
4465    MFR  BUR      13920           615
4466    PSC  BUR      20690           833
4467    RDM  BUR      19590           709
4468    STS  BUR      54390           387
4469    HVN  FLL      35190          1127
4470    BUR  FNL       6730           851
4471    MCO  HVN      62630          1005
4472    RSW  HVN      30790          1134
4473    BUR  MFR      13120           615
4474    BUR  OGD      13360           594
4475    HVN  PBI      28660          1086
4476    BUR  STS      53250           387
4477    TPA  PDX       2270          2497
4478    RDM  DEN      61930           898
4479    LAX  TUL      23860          1283
4480    BDL  DEN      91670          1671
4481    KOA  DEN      51060          3329
4482    FSD  PHX      23870          1081
4483    LIH  PHX      74150          2979
4484    SAN  OGG      74480          2541
4485    ATL  EGE      15620          1312
4486    SJC  MSP      37310          1575
4487    ASE  AUS       3420           812
4488    RNO  ORD      19980          1671
4489    IAH  JAC      10350          1265
4490    MTJ  IAH      11200           927
4491    EGE  MIA      11150          1810
4492    HDN  ORD      15230          1009
4493    SEA  FLL      86740          2717
4494    TUS  DFW     317270           813
4495    EWR  STT      45690          1634
4496    SHV  DFW      89010           190
4497    VPS  DCA      28720           789
4498    MEM  PHL      18840           875
4499    FWA  DFW      39850           859
4500    EGE  ORD      16300          1007
4501    SMF  ORD     139220          1781
4502    DEN  HSV      37670          1048
4503    DEN  SGF      46810           637
4504    OAK  MCI      39410          1489
4505    SDF  PHL      31980           576
4506    ATW  DTW      37530           296
4507    PHX  FLG      50700           119
4508    PHL  BGR      52660           473
4509    DCA  LAS      64410          2089
4510    RIC  MIA      26740           825
4511    JFK  BQN      74060          1576
4512    BOS  BGR      10760           201
4513    DTW  BMI       3970           313
4514    MCO  BTV       8490          1194
4515    COS  MCO       4840          1520
4516    MCO  MDT      12010           851
4517    JAX  SJU      19620          1288
4518    MCO  TYS       6220           532
4519    FLL  STX      42050          1140
4520    MCI  FLL      49940          1242
4521    FLL  MHT      30560          1262
4522    MCI  TPA      87420          1048
4523    LAX  RDD      13350           501
4524    PAE  SNA      26560          1008
4525    DEN  SUN      17130           557
4526    MDW  PWM      28100           895
4527    OKC  BNA       4940           616
4528    ONT  DAL      40410          1200
4529    ITO  HNL     141440           216
4530    HOU  BOI        150          1501
4531    JAN  MCO       7260           588
4532    BUR  ORD        760          1734
4533    SRQ  PVD       2500          1171
4534    TPA  RIC       4410           723
4535    MCI  SAT       2340           706
4536    SNA  DCA        450          2288
4537    RIC  TPA       4670           723
4538    CLE  IAD      85550           288
4539    PHX  GRB       5390          1487
4540    CLT  AEX       7920           722
4541    ORH  LGA       7690           146
4542    DFW  BIS      27800           977
4543    PDX  RDM       1000           116
4544    SIT  JNU      20090            95
4545    JFK  EYW      13580          1201
4546    HPN  FLL      86040          1097
4547    BZN  JFK      11490          1902
4548    JFK  PSE      28170          1617
4549    SLC  WYS       6840           273
4550    DTW  BGM      11310           378
4551    DTW  MYR      85120           636
4552    EWR  XNA       3000          1131
4553    HRL  DFW      72450           461
4554    DFW  TYR      40310           102
4555    MYR  BOS      65730           738
4556    CAK  DCA      14960           274
4557    CHA  DCA      15090           523
4558    ILM  DCA      34790           319
4559    COS  LAX      14100           833
4560    BOI  AUS      15000          1375
4561    DEN  HOB       4750           501
4562    DEN  DDC       5100           292
4563    DEN  SUX       7180           466
4564    SAT  BNA      88940           822
4565    BWI  PDX        530          2358
4566    SDF  DAL      16280           725
4567    CHS  HOU      29560           928
4568    MCI  HOU      65160           666
4569    MKE  HOU       9430          1004
4570    AUS  ECP      14860           710
4571    DSM  LAS      39910          1216
4572    OAK  LIH      43930          2457
4573    BUR  MCI       1200          1354
4574    HOU  RNO       5630          1546
4575    PWM  MDW      30190           895
4576    AUS  LGA       2970          1520
4577    ABQ  SAN      40660           628
4578    SJC  COS       1040           943
4579    AUS  GRR        190          1103
4580    SAV  STL        110           689
4581    OKC  TPA       3290          1023
4582    SAT  TPA      41930           972
4583    MKE  IAD       5330           611
4584    PHX  DLH       5220          1392
4585    RSW  MSN      12030          1222
4586    DLH  PHX       4420          1392
4587    MSN  RSW      13000          1222
4588    TPA  TLH       1540           200
4589    PBI  HVN      29040          1086
4590    BUR  RDM      19650           709
4591    MSY  PHX      72400          1300
4592    ORD  SUN       3890          1341
4593    BZN  ORD      86520          1186
4594    SJU  STX       3340            94
4595    RIC  DTW      57120           456
4596    PSP  MDW       1840          1657
4597    PHX  EUG      38860           952
4598    PHX  BIL       7790           873
4599    SJC  ORD      32030          1829
4600    SEA  YKM      37620           103
4601    DTW  APN      13730           198
4602    ATL  PSP      16000          1840
4603    BMI  MCO       7740           936
4604    TTN  PBI      51090           985
4605    ACY  FLL      72180           977
4606    STT  FLL      53160          1107
4607    CLE  MYR      34670           557
4608    PHL  MEM      20300           875
4609    MHT  CLT      68400           737
4610    DEN  CYS      13940            90
4611    DSM  DFW      93370           624
4612    ORD  ATY        570           507
4613    DEN  VEL       9010           259
4614    DEN  LAR      14770           113
4615    DEN  CNY      10690           283
4616    ORD  CMX      18030           360
4617    IAD  OGS       5620           409
4618    DEN  ACV      19090          1026
4619    IAD  SRQ      15360           849
4620    DEN  BFF       9720           150
4621    DEN  EAR      12440           305
4622    DEN  HYS       7410           298
4623    LAX  ALB        120          2468
4624    OAK  BWI       3430          2447
4625    BWI  JAN      21070           888
4626    OKC  DCA      44920          1158
4627    HOU  MTJ        400           945
4628    MKE  FLL      27110          1243
4629    BUF  FLL      63070          1166
4630    OMA  HOU      35500           804
4631    CVG  HOU      13670           886
4632    DAL  PHL       4380          1295
4633    LBB  LAS      44740           775
4634    MAF  LAS      37160           795
4635    ICT  LAS      12980           986
4636    PNS  MCI      12450           743
4637    MDW  VPS       2340           782
4638    ALB  MDW      89180           717
4639    MEM  PHX      55620          1264
4640    DAL  HRL      20460           458
4641    LIT  PHX       4520          1136
4642    GRR  RSW      22100          1147
4643    MCI  SAN      44390          1334
4644    SAN  SAT      39540          1129
4645    TPA  SAT      36890           972
4646    MCI  SRQ       3520          1078
4647    MKE  SRQ       1410          1113
4648    DCA  SAT       6450          1380
4649    LGB  DFW       9530          1221
4650    IAD  CKB       5530           151
4651    ORD  TBN       5830           369
4652    ORF  IAD      72080           157
4653    MSP  SRQ      33020          1342
4654    TPA  EYW       8050           240
4655    EYW  TPA       8170           240
4656    HDN  DFW      18800           769
4657    SEA  JAC      10140           621
4658    MTJ  ATL       7080          1352
4659    TUL  ORD      66630           585
4660    LAX  SUN      10290           696
4661    SNA  HNL      30510          2584
4662    HNL  IAD      27970          4817
4663    STT  IAH      22380          2070
4664    BDL  IAH      27630          1507
4665    PIT  SEA      57640          2125
4666    ATL  STX      14400          1638
4667    DTW  SCE      13740           301
4668    ATL  VLD      36320           208
4669    ATL  AEX      30920           500
4670    MRY  DFW      40050          1430
4671    GTF  SLC      35640           463
4672    IND  HOU      37720           861
4673    SCE  ORD      31120           528
4674    LNK  DEN      42530           423
4675    AGS  ATL     123840           143
4676    TRI  ATL      66060           227
4677    MDT  DTW      33040           371
4678    ALB  CLT     112920           646
4679    GEG  DFW      47020          1477
4680    HPN  RSW      59820          1102
4681    MSN  DFW      83940           821
4682    GRI  DFW      25770           561
4683    SGF  ORD      57800           438
4684    CAE  DCA      43050           408
4685    MLI  DEN      29770           752
4686    ASE  IAH      22650           913
4687    HDN  EWR       3070          1728
4688    LGA  LAS       1740          2242
4689    MLI  DFW      39960           691
4690    MHT  DCA      55440           406
4691    ORD  EYW      39580          1251
4692    AVL  EWR      14570           583
4693    ANC  KOA       9980          2874
4694    SEA  CMH      46090          2016
4695    PSG  JNU       7310           123
4696    PDX  MCO      57470          2534
4697    LAX  BUF      27690          2218
4698    BOS  PVC        860            45
4699    JFK  MVY      25060           173
4700    SLC  DRO       1320           339
4701    SLC  CDC      14820           221
4702    JAX  AUS      22700           954
4703    PIT  MYR      29200           475
4704    BDL  RSW      47200          1180
4705    BTR  CLT      47820           675
4706    ITH  CLT      15960           557
4707    BDL  DCA      96420           313
4708    ECP  DCA      21470           769
4709    MRY  DEN      21580           959
4710    OMA  IAH      42680           781
4711    SAF  PHX      27990           370
4712    DEN  DVL       4440           638
4713    ORD  KOA      15060          4213
4714    ORD  JST       2430           487
4715    DEN  JMS       8690           573
4716    DEN  ALS       4960           179
4717    TPA  ALB      20360          1130
4718    HOU  BUF       1580          1297
4719    MDW  PSP       1640          1657
4720    CMH  HOU      36270          1001
4721    COS  HOU       2100           829
4722    BNA  DSM        570           530
4723    OMA  MCO      30290          1211
4724    ROC  MCO      43050          1033
4725    ATL  OAK       2810          2130
4726    MCO  OKC      14960          1069
4727    PDX  STL       8150          1708
4728    ALB  TPA      19160          1130
4729    ROC  TPA      14360          1079
4730    SDF  DFW     117900           733
4731    IAD  EYW      13950          1023
4732    DCA  LEX       7880           414
4733    RIC  PHL      43330           198
4734    AMA  DEN      24630           359
4735    BRO  IAH      47820           308
4736    HRL  IAH      49010           295
4737    MCO  EYW       6770           268
4738    EYW  MCO       7850           268
4739    BQK  ATL      34950           238
4740    SCE  DTW      13250           301
4741    XNA  CLT      66700           754
4742    BDL  DFW      68380          1471
4743    ADQ  ANC      70770           253
4744    PDX  DCA      44410          2350
4745    ANC  JNU      83170           571
4746    KTN  JNU      14720           234
4747    BOS  RKD        660           152
4748    PSE  JFK      29240          1617
4749    AUS  RSW       1980          1001
4750    MIA  XNA       5270          1099
4751    MHT  TPA      18190          1204
4752    BHM  PHL      25170           772
4753    CLT  PIA      34890           607
4754    DEN  SHR      18790           359
4755    BFL  DEN      20800           845
4756    RAP  DEN      92610           300
4757    FLG  DFW      26800           853
4758    MSN  DTW      79770           311
4759    SDF  DTW      49360           306
4760    AMA  IAH      23380           517
4761    MSP  CWA      28190           175
4762    LNK  MSP       7130           331
4763    RHI  MSP      22840           190
4764    DEN  DIK      21280           488
4765    IDA  PHX      17500           695
4766    MSP  TUS      12970          1298
4767    PSC  SEA     157690           172
4768    ORD  SHD       3700           541
4769    IAD  PBG       8790           444
4770    DEN  RIW      12220           296
4771    MCO  ELP      14000          1516
4772    SRQ  HOU      32350           789
4773    TUS  HOU      36710           945
4774    SMF  HOU      43340          1624
4775    OGG  LAS      76200          2695
4776    PIT  MCI        860           773
4777    SMF  OGG      53860          2404
4778    BWI  SJC       2060          2439
4779    VPS  STL       5360           610
4780    MCO  TUL       1760          1005
4781    BHM  IAH      46710           562
4782    MTJ  PHX       4860           419
4783    JFK  JAC       4900          1894
4784    PNS  LGA      16700          1030
4785    LNK  ORD      37580           466
4786    GPT  IAH      26250           376
4787    LRD  IAH      24740           301
4788    PDX  CLT      40490          2282
4789    BDL  DTW     115540           549
4790    FAR  ORD      63520           557
4791    BUF  DFW      52550          1212
4792    STX  MIA      92070          1139
4793    RSW  LAX      16980          2238
4794    MDT  ATL      79810           620
4795    XNA  DCA      15700           963
4796    SBP  DFW      41060          1360
4797    DCA  XNA      17190           963
4798    BOI  IAH      16460          1482
4799    PDX  MCI      12330          1482
4800    FAR  MSP     128820           223
4801    SGU  SLC      59020           272
4802    LAX  XNA      17190          1371
4803    TUS  PAE       6750          1241
4804    PAE  TUS       7030          1241
4805    EWR  BZN      23010          1882
4806    PIT  DAL      19650          1060
4807    DEN  ECP       7190          1250
4808    OKC  MCO      14560          1069
4809    PIT  SAT       1240          1276
4810    BNA  SMF      11250          1917
4811    SAN  TUL        540          1237
4812    CHA  ORD      29000           500
4813    EVV  CLT      30060           414
4814    CHO  ATL      50210           457
4815    MLI  ATL      40270           633
4816    SHV  ATL      54560           551
4817    BHM  DTW      11990           625
4818    LEX  DTW      46520           296
4819    TYS  LGA      34730           648
4820    BOS  MKE      58010           860
4821    CID  MSP      28580           220
4822    MSP  XNA      11020           596
4823    PHL  STT      14930          1605
4824    PHX  ACV      14010           845
4825    PHX  MTJ       3970           419
4826    MIA  LIT       5320           941
4827    CLT  ATW       9820           742
4828    SEA  ICT      18620          1430
4829    BZN  FLL       1740          2183
4830    SJC  JFK      38950          2569
4831    LAX  PBI      11790          2330
4832    PVD  RSW      39030          1200
4833    GEG  ATL      57120          1969
4834    GEG  MSP     104940          1175
4835    SLC  DSM       6480           955
4836    SLC  CLE       1610          1565
4837    LIT  DCA      18330           888
4838    LEX  DFW      57090           785
4839    CWA  ORD      34980           213
4840    AVP  CLT     107440           509
4841    DCA  MGM      12720           693
4842    LAX  ACV      13010           577
4843    DEN  MRY      20170           959
4844    HSV  DEN      38280          1048
4845    PIT  DTW      76770           201
4846    FSD  MSP      96140           196
4847    GFK  MSP      56940           284
4848    MOT  MSP      69310           449
4849    SBN  MSP      19570           411
4850    BIL  PHX       6880           873
4851    ACV  SFO      48890           250
4852    FAT  SFO      45570           158
4853    DEN  PIR       2300           385
4854    GEG  ORD      24240          1498
4855    EWR  MSN      16840           799
4856    LAS  LIT      19970          1294
4857    ORD  BUR       1200          1734
4858    MDW  PBI       4350          1128
4859    DAL  PSP       2080          1137
4860    AUS  GSP        340           957
4861    DAL  MTJ       3560           733
4862    LIH  LAS      36120          2818
4863    OMA  LAX      19050          1330
4864    BNA  OKC       4150           616
4865    DEN  PVD       7710          1737
4866    HOU  CLT       1220           920
4867    HOU  COS       2550           829
4868    DCA  SAN       8280          2276
4869    HOU  CVG       9330           886
4870    OAK  TUS       8620           747
4871    GNV  DFW      27550           900
4872    LEX  DCA       7810           414
4873    CRW  ORD      24500           416
4874    ERI  ORD      23470           398
4875    MSP  HRL      17240          1310
4876    MDT  BOS       9180           335
4877    PHF  CLT      73040           282
4878    PHL  FWA       9670           530
4879    BTV  PHL      42040           335
4880    FWA  PHL      11400           530
4881    LEX  PHL      10860           520
4882    BTR  IAH      62210           253
4883    AEX  ATL      31890           500
4884    MLU  ATL      34350           448
4885    DTW  CHS      43730           667
4886    ABE  DTW      27880           425
4887    CHA  DTW      12320           505
4888    CID  DTW      21360           430
4889    GSO  DTW      15120           460
4890    ITH  DTW      13190           353
4891    TVC  DTW      70600           207
4892    GRB  MSP      49240           252
4893    TYS  MSP       3190           792
4894    MSP  TYS       3360           792
4895    ORD  STT      11160          2115
4896    PHL  ROA      11330           311
4897    DFW  TXK      30180           181
4898    SJC  KOA      81490          2384
4899    ACK  BOS      12030            91
4900    ACK  JFK      26880           199
4901    MVY  EWR        340           192
4902    MVY  JFK      25540           173
4903    ACK  LGA      20380           202
4904    SYR  MCO      70870          1053
4905    FAY  ATL      49420           331
4906    FSD  ATL      32120           954
4907    GRB  ATL      35640           774
4908    JAC  MSP       5560           872
4909    DTW  ITH      13400           353
4910    DTW  DAY      24710           166
4911    MSP  BJI      30480           199
4912    DTW  SRQ      15500          1022
4913    ACK  EWR      14440           218
4914    DFW  GGG      23470           140
4915    BPT  DFW      23190           270
4916    FWA  ORD      65680           157
4917    MHK  ORD      22320           501
4918    GUC  DEN      33770           152
4919    ELM  DTW      38070           332
4920    LAX  EGE       5240           748
4921    COS  IAH      36180           809
4922    ORD  EGE      16290          1007
4923    ACV  LAX      12920           577
4924    RDD  LAX      12660           501
4925    SFO  OTH      14790           412
4926    MQT  MSP       3070           300
4927    SBA  PDX      20190           784
4928    SBP  SAN      14230           263
4929    IDA  SLC      84250           188
4930    ANC  OGG      11070          2797
4931    IAH  SGF      23380           513
4932    SFO  BZN      33950           807
4933    PHL  IAD      21410           135
4934    LAX  ITO      33870          2449
4935    IAH  LCH      22770           127
4936    ORD  RAP      37550           780
4937    SMF  DAL      64680          1442
4938    ONT  ELP        730           670
4939    LGB  HNL      52340          2569
4940    SJU  HOU       8890          1997
4941    MCI  VPS       1900           764
4942    BUR  ELP        760           715
4943    ONT  TUS        130           409
4944    RNO  OAK      45370           181
4945    BNA  TUL       1610           515
4946    BNA  SJU       7370          1753
4947    BWI  LIT        640           912
4948    LGA  CAE      14630           617
4949    DCA  EYW      22900          1023
4950    CAE  IAD      19440           401
4951    MSP  SJU      23820          2404
4952    PQI  EWR      13780           515
4953    BUR  PSC      20350           833
4954    LAS  STS      23660           454
4955    MVY  DCA      11650           383
4956    RSW  MHT      12180          1271
4957    SMF  CLT      37240          2244
4958    ATL  JAC      30960          1572
4959    PSC  DEN      30340           852
4960    MKE  SLC      25420          1247
4961    CLE  SFO      48520          2161
4962    SNA  STL      19910          1569
4963    LBB  DEN      30640           456
4964    KTN  ANC      13470           775
4965    ANC  CDV      12810           160
4966    KTN  PSG       1730           111
4967    PWM  MCO      20800          1214
4968    TPA  PWM      10030          1277
4969    MHT  EWR      25210           209
4970    GSO  MIA      10430           710
4971    HOB  IAH      13740           501
4972    ICT  SEA      19200          1430
4973    SAN  ELP      14470           636
4974    DAL  CLE        780          1015
4975    MTJ  DAL       3980           733
4976    PHL  CRW        630           356
4977    MSP  FWA      14400           488
4978    ERI  CLT      32710           476
4979    SEA  WRG       4240           756
4980    OGG  LIH      16460           201
4981    DAL  RNO       5610          1356
4982    RNO  HOU       4350          1546
4983    AUS  ONT      24140          1196
4984    SJC  MSY       2610          1884
4985    GSP  BOS         90           795
4986    ELP  CLT      10180          1482
4987    ORD  CMI      29940           135
4988    FAR  MCO       5710          1526
4989    AEX  CLT       7770           722
4990    SBN  CLT      41550           534
4991    CLT  FCA        270          1923
4992    HOB  DEN       4120           501
4993    BTM  SLC      16110           358
4994    ANC  DLG      21630           329
4995    PAE  PHX      51510          1133
4996    MTJ  ORD      19180          1081
4997    OMA  BNA       4060           612
4998    PBI  MDW       4590          1128
4999    VPS  MDW       2050           782
5000    ORF  SAN       3300          2330
5001    BGR  IAD       6290           601
5002    PNS  IAD       4140           804
5003    VPS  IAH      10390           528
5004    IAD  PNS       4490           804
5005    RNO  ATL       3360          1993
5006    DFW  FLG      28620           853
5007    BOS  EYW      13560          1373
5008    PDX  DTW      53570          1953
5009    CRW  ATL      34770           363
5010    CLE  DTW      78850            95
5011    CVG  DTW      71080           229
5012    ANC  MSP     102540          2519
5013    AGS  DFW      23100           874
5014    ROC  PHL      38770           257
5015    SYR  PHL      42780           228
5016    DTW  HPN      30780           505
5017    FCA  SLC      87060           531
5018    SAN  DCA       7200          2276
5019    PIT  PHL      67780           268
5020    CAE  PHL      17660           523
5021    SGU  DFW      12610           976
5022    SHV  CLT      37930           764
5023    AKN  ANC      20580           288
5024    DLG  ANC      21180           329
5025    ASE  ATL       4700          1304
5026    DAY  CLT      78750           370
5027    FAY  CLT      90840           118
5028    SUN  LAX       9750           696
5029    MHT  ORD      17830           843
5030    RDM  PHX      35880           893
5031    OTH  SFO      14220           412
5032    COS  SLC      44610           411
5033    SCC  ANC      25690           626
5034    ANC  SCC      25400           626
5035    HDN  MSP       3710           774
5036    DSM  DTW      49410           534
5037    CLT  STX       8480          1562
5038    SJC  BOS       4930          2689
5039    ACK  DCA      16790           405
5040    COD  DEN      34880           391
5041    GTF  DEN      47990           623
5042    ASE  SNA       3030           722
5043    TVC  ORD     110980           224
5044    SMF  HNL      55560          2462
5045    ABQ  MCO       1330          1553
5046    ELP  MSY       1850           965
5047    PNS  PHL      12410           935
5048    PHL  PNS      13200           935
5049    PSG  ANC       3310           678
5050    ANC  PSG       3270           678
5051    PSP  ATL      15920          1840
5052    MIA  ALB       2280          1225
5053    MCO  CID       3600          1097
5054    TTN  CLT      20150           484
5055    GRB  DEN      12860           905
5056    MCO  DSM       8800          1141
5057    MCO  FAR       4710          1526
5058    DEN  GRB      13410           905
5059    LAS  HRL       9860          1236
5060    FSD  LAS       6860          1104
5061    LIT  LAS      19490          1294
5062    MCO  LIT       3150           776
5063    BTV  MCO       7940          1194
5064    DSM  MCO       9000          1141
5065    ELP  MCO      16220          1516
5066    ILG  MCO       7530           841
5067    XNA  MCO       2600           932
5068    MIA  PWM       1710          1353
5069    MIA  ROC       3140          1203
5070    MIA  SYR       4310          1217
5071    RDU  TTN      17650           373
5072    LAS  XNA      13600          1163
5073    MCO  XNA       2650           932
5074    MHT  FLL      29910          1262
5075    MHT  RSW      13070          1271
5076    FNL  BUR       7020           851
5077    OGD  BUR      13300           594
5078    BUR  RDD      13230           486
5079    LAX  JAC      19950           784
5080    TPA  BMI        660           935
5081    MLB  CLT      59660           490
5082    GPT  CLT      50590           577
5083    TUL  DCA      13540          1049
5084    SNA  ASE       2550           722
5085    BIH  DEN       3630           760
5086    YUM  DFW      22010          1022
5087    SGU  PHX      30160           262
5088    SAT  SFO      28790          1482
5089    HLN  SEA      21500           491
5090    ONT  IAH      30290          1334
5091    IAH  EYW       9250           915
5092    SRQ  AUS       2490           936
5093    HRL  DAL      24390           458
5094    SAT  DCA       7010          1380
5095    OAK  KOA      44910          2378
5096    RDU  HOU       2980          1050
5097    HOU  RDU       2600          1050
5098    OKC  RDU        400          1058
5099    GSP  SAT        270          1020
5100    MKE  SAT        290          1095
5101    CLT  TOL        270           466
5102    DFW  STT       7920          2225
5103    EUG  DFW      36840          1606
5104    XNA  MIA       6060          1099
5105    MQT  ORD      17380           303
5106    LAX  HDN       4220           763
5107    SFO  MSO       6390           769
5108    IAD  LWB       1230           176
5109    PSP  BZN         20           872
5110    SAT  COS       3090           732
5111    SRQ  CVG        710           812
5112    ORF  DAL       4810          1203
5113    SMF  MCO       1080          2408
5114    ILM  ORD       7540           760
5115    STS  DFW      20360          1495
5116    IAH  GRR      19290          1042
5117    XWA  MSP      25470           553
5118    BGR  BOS      12780           201
5119    ORD  UIN       1000           222
5120    GSP  DEN      24090          1278
5121    SFO  JAC      19320           737
5122    SAN  LAX      54280           109
5123    BIH  SFO       5230           221
5124    RDD  SFO      38080           199
5125    ORD  ILM       7370           760
5126    MCI  MAF        320           659
5127    ECP  MDW       9210           795
5128    MSP  STC        800            61
5129    TUS  MSP      12250          1298
5130    GRB  PHX       5400          1487
5131    IAD  PQI        410           716
5132    RSW  AUS       1290          1001
5133    ASE  PHX       5200           491
5134    SNA  BOI       1940           688
5135    BET  ANC      70100           399
5136    JFK  HYA       8350           196
5137    FLL  PSP        340          2233
5138    MSP  HDN       3710           774
5139    ORD  VPS       3410           796
5140    BIH  LAX       2260           237
5141    LWS  SLC      30060           461
5142    LGA  AUS       3090          1520
5143    HOU  PSP        160          1280
5144    ORD  HOU       1070           945
5145    JAX  JAN        140           511
5146    MCO  JAN       7140           588
5147    DAL  MYR       3430          1038
5148    HOU  ORD       1580           945
5149    HOU  SEA       2260          1894
5150    PHX  RSW       1050          1868
5151    STL  PNS      17470           598
5152    CHO  CLT      99690           245
5153    MSP  PIE       8970          1307
5154    SBN  ATL      39750           566
5155    HDN  FLL       2350          1843
5156    BGR  CLT      29710           921
5157    PSC  MSP      26460          1254
5158    ANC  WRG       2690           708
5159    BWI  BUR        600          2320
5160    MTJ  EWR       5330          1795
5161    ANC  DFW      44900          3043
5162    GRR  PHX      14670          1574
5163    MVY  BOS       7150            70
5164    GNV  MIA      18890           294
5165    FWA  CLT      32210           460
5166    SFO  MTJ       1900           791
5167    IAH  HDN       8270           985
5168    BZN  DAL       3920          1172
5169    OMA  LAS     115250          1099
5170    EUG  ONT        270           757
5171    MGM  CLT      30760           372
5172    MCO  MYR      26330           388
5173    MKE  ORD     127450            67
5174    BLI  LAS      37400           954
5175    GRR  DTW     124240           120
5176    HRL  LAS       9390          1236
5177    CHS  STL       4780           706
5178    CAE  CLT     109380            88
5179    RIC  IAD      38790           100
5180    MYR  CLT     185200           157
5181    GSP  CLT     144940            75
5182    CMX  ORD      18140           360
5183    PDX  LIH      26080          2631
5184    LBE  MCO      52960           823
5185    FWA  DTW      16730           128
5186    LGB  OGG      39020          2498
5187    BIL  SEA      45600           664
5188    CMH  MYR       6710           488
5189    PDX  OGG      47830          2562
5190    ATL  HDN      13630          1340
5191    SBA  LAX      20380            89
5192    HOU  LIT       2000           393
5193    GTR  ATL      37770           241
5194    DTW  ESC      11280           306
5195    PIT  AUS       2960          1210
5196    PHL  EYW      36510          1121
5197    DSM  ATL      85310           743
5198    MSN  ORD     152530           109
5199    GSO  IAD       6740           239
5200    CHA  ATL     174590           106
5201    MSY  CLE       6160           917
5202    CRW  CLT      58450           221
5203    SJU  STL       5260          2024
5204    SBP  SFO      39310           190
5205    ANC  DEN      73470          2405
5206    SBP  PDX      17530           722
5207    AVL  CLT     134810            91
5208    JAC  SLC      85840           205
5209    JFK  BZN      13460          1902
5210    RST  MSP      43570            76
5211    EGE  DEN      53250           120
5212    LSE  DTW       4230           416
5213    PDX  DAL       4530          1626
5214    JFK  HNL       1390          4983
5215    MDT  PHL      48510            84
5216    MYR  MCO      24050           388
5217    IMT  DTW      10180           344
5218    PSP  DAL       3610          1137
5219    ECP  MCI       5950           797
5220    BUR  STL        230          1583
5221    OKC  MSY       2110           567
5222    STL  SJU       4570          2024
5223    EAT  SEA      38740            99
5224    PDX  HOU       1100          1843
5225    SGF  DEN      46980           637
5226    SNA  BZN       1460           908
5227    MSY  MKE        430           903
5228    MLI  ORD      60590           139
5229    ICT  MSP      26250           545
5230    TRI  CLT      55360           119
5231    BDL  LAS      19620          2297
5232    LSE  MSP      30220           119
5233    DTW  PBI      33240          1086
5234    KOA  LAS      34590          2717
5235    BHM  BTR         30           332
5236    BOI  BUR      14960           656
5237    HTS  CLT      26930           235
5238    ABE  IAD       6010           159
5239    SRQ  CLE       7660           967
5240    SBY  PHL      17160           107
5241    ANC  LAS      15920          2304
5242    EWR  MTJ       5750          1795
5243    SAN  BZN       3450           956
5244    ORD  MTJ      18270          1081
5245    YUM  PHX      69670           160
5246    BOS  ACK      12290            91
5247    ALB  EWR      31780           143
5248    SJU  BNA       7740          1753
5249    LFT  IAH      58820           201
5250    BOI  PSP       4040           672
5251    SFO  EGE       4000           847
5252    JST  ORD       2260           487
5253    MRY  SFO      18730            77
5254    CLE  MCI        730           694
5255    BMI  ORD      28280           116
5256    CHO  IAD      26020            77
5257    ROW  DFW      38540           435
5258    CLT  HOU       2460           920
5259    SJT  DFW      54150           229
5260    MCO  SMF       1540          2408
5261    EAR  DEN      12880           305
5262    STX  SJU       4120            94
5263    OGG  ITO       2840           121
5264    PSG  WRG        410            31
5265    LIT  HOU       2010           393
5266    SPS  DFW      29690           113
5267    DAL  JAX       4850           907
5268    AUS  PSP       7970          1132
5269    CAK  MYR       1600           518
5270    STS  SFO      11470            66
5271    LBB  OKC         90           269
5272    AUS  CMH      24630          1073
5273    MYR  DAL       3950          1038
5274    PHL  DAL       3970          1295
5275    DSM  MIA       7190          1327
5276    IAH  HOU         20            24
5277    PIT  ONT         10          2090
5278    EAR  ORD       6930           583
5279    JAC  CLT       2120          1685
5280    BUR  LGA       1310          2460
5281    EWR  OGG      14010          4904
5282    ISP  STL         20           929
5283    KTN  WRG       2710            82
5284    ABQ  SAT       2660           609
5285    GRB  ORD      99850           174
5286    PHX  EGE       2040           513
5287    SUN  SLC      44170           222
5288    SBN  ORD      66410            84
5289    ECP  AUS      15250           710
5290    EGE  LAX       3950           748
5291    AVP  IAD       7390           189
5292    MLU  IAH       4410           262
5293    PQI  IAD        340           716
5294    LWB  IAD       1600           176
5295    SUN  DEN      17250           557
5296    STL  SBA        270          1658
5297    CIU  MSP      11980           435
5298    ROA  CLT      91100           155
5299    PNS  MDW       4780           781
5300    DFW  GUC      10180           678
5301    ORD  CKB       4850           444
5302    IAH  GUC       5930           886
5303    OAK  CMH        900          2110
5304    DTW  HSV      10760           554
5305    ANC  ADK       2500          1192
5306    DTW  SAV      17210           705
5307    DFW  BTV       3510          1510
5308    MIA  CAE       3200           563
5309    AUS  ASE       2530           812
5310    PHL  EGE        180          1678
5311    CLT  TVC        990           702
5312    PHX  ASE       5530           491
5313    PHX  BZN        670           853
5314    PHX  JAC       4140           705
5315    JNU  YAK       3130           198
5316    PDX  BIL       1090           679
5317    SEA  SUN      14030           475
5318    SAN  HDN       2410           769
5319    MSP  INL      12510           255
5320    LGA  EYW      14640          1207
5321    DTW  CIU      11510           284
5322    SLC  RAP       8050           508
5323    DCA  HHH      11920           501
5324    CLT  RAP      15100          1322
5325    MSP  IMT      11100           257
5326    ORD  FCA      34170          1352
5327    PDX  TPA       2350          2497
5328    EWR  JAC      13090          1874
5329    IAD  HDN       2190          1582
5330    DEN  BTV      18600          1639
5331    SFO  FCA       7330           844
5332    DEN  BIH       3610           760
5333    DEN  PUB       8050           109
5334    IAD  GRB         70           670
5335    SFO  ASE      13350           848
5336    DAL  ALB        870          1428
5337    DEN  SJU       1330          2733
5338    HOU  SJU       8530          1997
5339    PHX  BLI        150          1191
5340    MDW  PNS       4810           781
5341    BWI  ONT       1380          2283
5342    DAL  DTW       1230           981
5343    MSY  ELP       1500           965
5344    DAL  ORF       5200          1203
5345    DAL  TUS        300           824
5346    STL  CHS       6110           706
5347    STL  MYR       5570           728
5348    HOU  HDN        440          1006
5349    MCO  SNA        310          2187
5350    BNA  ONT       2200          1751
5351    BWI  DSM        480           910
5352    STL  RNO       4040          1574
5353    MCI  ECP       5620           797
5354    MDW  GEG        260          1511
5355    BWI  ECP       3220           798
5356    STL  AMA        680           672
5357    HOU  BOS       1190          1609
5358    MDW  BOI        430          1448
5359    SAT  SJU        600          2181
5360    BNA  RNO       2480          1815
5361    LAS  ECP        240          1739
5362    ATL  MHT        520           952
5363    STL  VPS       4650           610
5364    MCO  ABQ       1620          1553
5365    ABQ  MSP       8900           981
5366    MSY  ISP        340          1218
5367    HOU  PVD       1070          1571
5368    AUS  CLE       2040          1174
5369    DAL  CVG        480           805
5370    ATL  HRL        270           942
5371    BWI  OKC       1780          1180
5372    BWI  RNO        690          2286
5373    MCI  ABQ        820           718
5374    DAL  BOS       3070          1554
5375    BUR  RIC        110          2297
5376    STL  RIC        700           716
5377    SJC  PVD        190          2675
5378    LAS  RSW        820          2070
5379    OAK  CLT         80          2287
5380    SJC  TUL       1470          1442
5381    SMF  ABQ        920           866
5382    SMF  FLL        530          2549
5383    DAL  PVD        870          1521
5384    ONT  BOI        820           660
5385    BUR  BHM        690          1810
5386    TPA  TUL        120           965
5387    BNA  GSP        290           265
5388    AUS  BZN        950          1299
5389    BUR  RSW        180          2236
5390    BUR  SRQ        190          2169
5391    LGB  RDU        400          2226
5392    IND  ONT         90          1768
5393    AUS  RIC       1540          1271
5394    LAS  JAX       3850          1965
5395    DCA  MLB       1600           769
5396    MCO  TPA         20            81
5397    IAH  JLN        790           496
5398    LAS  MYR        190          2053
5399    DEN  PNS      32630          1179
5400    EWR  ABE        210            67
5401    MDW  SBA        310          1809
5402    AUS  PVD        430          1662
5403    EWR  AVL      15330           583
5404    TPA  LBB        170          1210
5405    AUS  EUG        110          1694
5406    OAK  CHS         90          2387
5407    MCI  PVD        170          1234
5408    DFW  DAB       6850           981
5409    LGA  ROA      18970           405
5410    EWR  ACK      15020           218
5411    SLC  CMH       1270          1528
5412    MSY  ABQ        320          1014
5413    MYR  CAK       1490           518
5414    OAK  ELP       1060           988
5415    BOS  MVY       6510            70
5416    MDW  ECP      10070           795
5417    MCO  MAF       1110          1271
5418    BOS  LEB        610           109
5419    AUS  SYR        140          1485
5420    LAX  ORF        260          2371
5421    MCI  HRL        790           917
5422    MGM  ATL      57850           147
5423    DEN  MCK        230           218
5424    SAN  IND       2370          1782
5425    MDW  HRL        310          1212
5426    IAH  EGE       7660           934
5427    LAN  DTW      35050            74
5428    SFO  CMH      14310          2120
5429    STL  IRK        770           149
5430    JNU  CDV        890           411
5431    PBI  MSY        140           660
5432    CWA  MSP      27840           175
5433    AVL  ATL     137190           164
5434    DAY  DTW      25650           166
5435    SAF  DEN      29700           303
5436    LSE  ORD      38040           215
5437    GRK  DFW      96920           134
5438    JLN  IAH        760           496
5439    SEA  CDV       2300          1293
5440    DCA  MSN      13360           707
5441    SIT  KTN       3000           183
5442    PHL  DAB       4150           808
5443    BUR  MKE        750          1745
5444    GNV  CLT      70800           388
5445    DEN  CEZ        380           277
5446    SLN  DEN       6640           383
5447    BIL  PDX       1220           679
5448    MCO  HSV       7520           535
5449    ORD  EUG       8080          1780
5450    ORD  FOD        690           325
5451    DRO  SLC       1250           339
5452    VLD  ATL      35820           208
5453    EWN  CLT      70330           221
5454    MKG  ORD      11180           119
5455    LAR  DEN      14700           113
5456    IMT  MSP      10040           257
5457    ANC  ATL      30080          3417
5458    ATY  ORD        600           507
5459    PGV  CLT      30850           203
5460    CSG  ATL      32370            83
5461    MBS  ORD      30820           222
5462    CMI  ORD      28710           135
5463    OAJ  ATL      56960           399
5464    PNS  SAT        890           679
5465    BGM  DTW      11250           378
5466    MBS  DTW      39260            98
5467    MDT  IAD       6240            94
5468    YKM  SEA      38040           103
5469    OAJ  CLT      88630           191
5470    FAY  DFW      22650          1051
5471    SPN  GUM      27200           129
5472    AZO  ORD      35690           122
5473    SPI  ORD      15760           174
5474    LWS  DEN      12180           768
5475    ACV  DEN      17380          1026
5476    SCE  PHL      33940           153
5477    DHN  ATL      39490           170
5478    LCH  IAH      22140           127
5479    PSG  SEA       9080           787
5480    LBL  DEN       6010           280
5481    PLN  DTW      28650           243
5482    WRG  PSG        500            31
5483    FLO  CLT      30930            99
5484    ART  PHL      21400           287
5485    BJI  MSP      30010           199
5486    ABR  MSP      25640           257
5487    AZO  DTW      36990           113
5488    GRK  IAH       5750           166
5489    GCC  DEN      21870           313
5490    VCT  IAH       6130           123
5491    PIH  SLC      12930           150
5492    VEL  DEN       8740           259
5493    DLH  MSP      77650           144
5494    HYS  DEN       7560           298
5495    LYH  CLT      73200           175
5496    APN  DTW      13580           198
5497    RIW  DEN      11950           296
5498    MEI  IAH      10110           422
5499    ACV  PHX      13480           845
5500    RKS  DEN      13520           260
5501    FSM  DFW      52740           227
5502    PSC  SFO      13400           620
5503    SBP  LAX      19720           156
5504    PDT  PDX        260           182
5505    CLL  IAH       5780            74
5506    BLI  SEA      80470            93
5507    SUX  ORD       9290           436
5508    ABI  DFW      67620           158
5509    DBQ  ORD      19940           147
5510    TOL  ORD      21770           213
5511    AEX  IAH      14300           190
5512    DVL  DEN       4810           638
5513    CKB  IAD       4500           151
5514    RST  DEN        770           686
5515    PRC  DEN       7500           557
5516    YAK  ANC       3920           373
5517    ESC  DTW      11620           306
5518    TYR  DFW      41490           102
5519    TWF  SLC      18230           175
5520    PBG  IAD       7870           444
5521    SHR  DEN      20190           359
5522    ABY  ATL      33770           145
5523    LIH  OGG      12430           201
5524    ESC  MSP       9300           304
5525    GGG  DFW      23880           140
5526    HSV  DTW      10130           554
5527    SGU  DEN      18600           517
5528    BMI  DTW       3360           313
5529    CDV  SEA       1930          1293
5530    MLU  DFW      44100           293
5531    PIR  DEN       3030           385
5532    CNY  SLC       6880           183
5533    OME  OTZ        860           183
5534    INL  MSP      12900           255
5535    BNA  GEG        100          1763
5536    FLL  CRP         40          1076
5537    MSP  LEX         80           650
5538    TUL  AUS      31730           426
5539    SAT  MIA      43820          1143
5540    RSW  SEA      22860          2623
5541    JAX  MSP      21960          1174
5542    DEN  FOD        220           576
5543    SFO  MSY      28780          1911
5544    DCA  ABQ       6100          1650
5545    STL  ABQ       1110           934
5546    TUS  ALB        170          2150
5547    SAN  ALB        540          2445
5548    AUS  AMA      16920           418
5549    SJC  BDL         50          2609
5550    MSY  BOI        170          1706
5551    ONT  BUF        210          2173
5552    BNA  BUF       1090           633
5553    PSP  BUF         60          2125
5554    SNA  BWI       1630          2307
5555    LGB  BWI        610          2318
5556    SMF  CMH        930          2058
5557    TPA  ELP        420          1452
5558    MDW  ELP       1120          1237
5559    ATL  FAT        170          1997
5560    DAL  IAD        400          1163
5561    MHT  IND         50           803
5562    MDW  ISP        310           765
5563    MDW  LBB        310           951
5564    BNA  LBB       1170           876
5565    SAN  LBB        160           892
5566    BWI  SNA        560          2307
5567    BNA  LGB       1160          1785
5568    BWI  LGB        720          2318
5569    TPA  LIT         80           737
5570    FLL  LIT         90           934
5571    COS  MAF         80           494
5572    AUS  MAF      13290           294
5573    MSY  MAF        660           721
5574    SAT  MCI       5300           706
5575    ONT  MEM        140          1572
5576    AUS  MEM       1030           559
5577    DEN  MHT        420          1729
5578    LGB  MIA        830          2327
5579    SMF  MSY       2030          1878
5580    MIA  OAK        600          2577
5581    TPA  OKC       3620          1023
5582    MSY  OKC        900           567
5583    BUR  OMA        400          1319
5584    SMF  OMA        240          1370
5585    MSY  ORF        330           940
5586    PHX  PNS        790          1469
5587    DAL  RIC        190          1149
5588    RDU  MAF         50          1369
5589    SAT  PDX        320          1714
5590    SNA  DSM        110          1428
5591    LAX  LGA       7770          2469
5592    BUR  CHS         90          2200
5593    MIA  BTV        840          1348
5594    SAN  CLE       1970          2026
5595    SFO  PIT      26100          2254
5596    BNA  PDX       1000          1973
5597    MSY  LBB        620           725
5598    BUR  MCO        380          2215
5599    BUR  MSP        130          1523
5600    BNA  OWB        550           115
5601    MCI  LIT         60           344
5602    LGB  RSW         30          2223
5603    ONT  MAF         90           905
5604    CMH  GSP        120           354
5605    MYR  CLE      35650           557
5606    MIA  MYR       6320           549
5607    ORD  MSO       7240          1332
5608    HOU  SFO       1000          1649
5609    PHX  BDL        360          2213
5610    BNA  TUS        610          1414
5611    LGB  BOI       1260           680
5612    STL  PVD        690          1020
5613    HOU  GRR        350          1061
5614    SNA  HRL        320          1313
5615    RSW  CRP         20           973
5616    SNA  TUS        270           417
5617    MCI  LBB         80           554
5618    IND  BZN        250          1326
5619    SAT  ABQ       3330           609
5620    JAX  HRL         70          1015
5621    SMF  TPA        600          2357
5622    MCO  OAK       1290          2438
5623    BNA  ELP       1890          1167
5624    LGA  PNS      15800          1030
5625    PHL  SRQ      34140           957
5626    OKC  CRP        430           525
5627    LGA  PVD      36120           143
5628    PDX  PDT        260           182
5629    DEN  FNL        550            44
5630    MCI  ELP       1720           834
5631    LAS  ANC      15300          2304
5632    STL  SFO        680          1735
5633    DAL  SJU       2040          2154
5634    SEA  YAK       4680          1092
5635    SJC  BWI        760          2439
5636    LGA  ALB      33570           136
5637    CMH  DSM        260           575
5638    MCI  BUR       1000          1354
5639    MIA  ECP         10           460
5640    SAN  GRR        440          1855
5641    RDU  ROC        420           503
5642    PHX  CHS       1610          1846
5643    FAT  ORD      14050          1730
5644    DAL  BDL        590          1463
5645    BWI  ELP        600          1741
5646    DFW  TVC       9350          1022
5647    RSW  LIT         40           840
5648    BNA  PBI        190           757
5649    CLT  CMI        110           522
5650    DCA  AVL       9750           384
5651    SAT  TUL        730           483
5652    CMH  OKC        570           865
5653    OAK  SAT       4200          1476
5654    STL  OWB        330           188
5655    MIA  TUL       1770          1168
5656    LAX  BIH       2290           237
5657    FLL  ABQ       1200          1688
5658    SJU  MAZ        230            76
5659    CRW  DCA      14220           249
5660    SYR  MIA       5250          1217
5661    ONT  CLT      28810          2078
5662    YAK  SEA       4180          1092
5663    ADK  ANC       2570          1192
5664    WRG  KTN       2790            82
5665    CDC  SLC      14630           221
5666    BGR  ORD      20690           978
5667    WRG  SEA       4530           756
5668    LWB  ORD       5080           489
5669    ATY  DEN       1380           519
5670    CNY  DEN       9940           283
5671    MYR  SLC        140          1875
5672    EUG  LGB        110           761
5673    AEX  DFW      42250           285
5674    OGS  IAD       5080           409
5675    SHD  IAD       4890            91
5676    ALO  ORD      14880           234
5677    EKO  SLC      11530           200
5678    MAF  PHX      18920           581
5679    CAK  IAD       6120           251
5680    HRL  BNA       1280           941
5681    SUX  DEN       7420           466
5682    TBN  ORD       5840           369
5683    ORF  LAS        570          2154
5684    JLN  DEN       6950           582
5685    PSP  LAX       6960           110
5686    PUB  DEN       8200           109
5687    LAW  DFW      40950           140
5688    JLN  ORD       7380           484
5689    CVG  DAL        760           805
5690    CHO  PHL       1600           210
5691    MYR  DCA      16450           372
5692    BIS  DFW      27500           977
5693    PIA  ORD      54490           130
5694    DRT  DFW      25350           335
5695    ALS  DEN       4970           179
5696    SLN  ORD       6180           559
5697    DDC  DEN       5260           292
5698    EAU  ORD      14720           269
5699    CYS  DEN      13350            90
5700    FWA  MSP      15400           488
5701    ELP  STL        750          1022
5702    CIU  DTW      12870           284
5703    SHD  ORD       3500           541
5704    RNO  MKE        250          1667
5705    SCE  IAD       9760           133
5706    HIB  MSP      13720           174
5707    BOI  STL        150          1383
5708    CPR  SLC      14860           320
5709    ITO  OGG        790           121
5710    MWA  STL       1060           101
5711    BFF  DEN       9510           150
5712    LIH  KOA        560           263
5713    MWA  BNA        420           171
5714    UIN  STL        400            93
5715    PRC  LAX       2380           346
5716    VQS  SJU        950            39
5717    IRK  STL        690           149
5718    PAH  ORD      11350           342
5719    LEX  MSP        120           650
5720    FOD  ORD       1580           325
5721    ACT  DFW      50040            89
5722    GSP  AUS        810           957
5723    ONT  BHM        430          1768
5724    MSY  OAK       2640          1903
5725    MHT  SLC         30          2077
5726    GEG  PHL         40          2155
5727    BZN  MCI        910           948
5728    OMA  OAK        160          1423
5729    SFO  SBN        200          1929
5730    HDN  LAX       3950           763
5731    BUR  CMH       1510          1986
5732    SJU  DEN       1130          2733
5733    SAT  LGA       2000          1586
5734    TPA  OMA       4620          1190
5735    TPA  SAN       3210          2087
5736    RSW  SAT         80          1041
5737    SMF  SAT       3860          1463
5738    MCI  SMF       1840          1442
5739    DAB  DFW       6100           981
5740    TVC  DFW       8510          1022
5741    LNK  FNT         10           686
5742    SRQ  MCI       3930          1078
5743    JAX  MCI       1390           955
5744    FLL  OMA        780          1383
5745    IAD  SJC        210          2400
5746    ELP  SJC       2170           964
5747    BUR  BOI      15530           656
5748    LIT  MSY        160           346
5749    SRQ  MYR        110           484
5750    AUS  BDL       1160          1607
5751    GEG  BNA        320          1763
5752    TPA  JAN         20           541
5753    ABQ  MCI       1370           718
5754    FAT  MCI        150          1371
5755    TUS  OAK       9310           747
5756    LGA  ABQ         90          1821
5757    ELP  BNA        550          1167
5758    TUL  BWI        520          1071
5759    RSW  MEM        160           763
5760    ELP  OAK        850           988
5761    MSY  OMA        610           841
5762    MSY  SMF        710          1878
5763    PNS  AUS        270           626
5764    SAT  BOI        120          1377
5765    ICT  COS        240           403
5766    ELP  SLC        400           693
5767    ABQ  SNA       1630           650
5768    SRQ  BUF       1070          1093
5769    AUS  COS       1890           716
5770    SJU  DAL       1540          2154
5771    SJU  MCI       1030          2239
5772    RIC  MSY       1830           906
5773    TUS  PHL         40          2056
5774    TUS  SAT        240           762
5775    ABQ  SJC       3060           870
5776    OAK  ATL       1090          2130
5777    MCI  BHM        240           594
5778    BUR  BWI        480          2320
5779    SJU  DTW        660          1930
5780    ELP  OKC        930           563
5781    OMA  PVD        520          1265
5782    RNO  SAT       1000          1391
5783    HDN  SEA       2120           891
5784    PVD  HOU       1240          1571
5785    ICT  LGB         40          1192
5786    OKC  LGB        410          1174
5787    PSP  MCI        500          1266
5788    DEN  PWM      11090          1782
5789    SBA  RNO        690           350
5790    ALB  SEA         70          2356
5791    RSW  TUL        440          1066
5792    BZN  CLT       2550          1736
5793    SUN  SEA      13910           475
5794    CHS  BDL        310           743
5795    BUR  BZN        610           885
5796    BOI  LGB        790           680
5797    SEA  LGB       2680           965
5798    PDX  LGB       2510           846
5799    LGB  PDX        860           846
5800    CKB  ORD       5530           444
5801    LAS  CHS        290          2005
5802    HDN  IAD       1450          1582
5803    MSY  BUF        820          1097
5804    DCA  COS        140          1487
5805    CMH  LIT        110           629
5806    SAT  SMF       2420          1463
5807    RNO  DAL       4460          1356
5808    IAH  GEG        120          1695
5809    BWI  PNS       2220           846
5810    SBN  LAX        230          1823
5811    OAK  JAX        250          2358
5812    BHM  ROC         60           822
5813    BZN  SNA       1710           908
5814    ABQ  STL       1280           934
5815    BUR  IND        640          1805
5816    RSW  PHX       2210          1868
5817    EUG  BWI         30          2401
5818    PVD  DAL       2630          1521
5819    GSP  LAS         70          1850
5820    DSM  LGB         30          1438
5821    BHM  PVD         10          1009
5822    XNA  EWR       3370          1131
5823    OMA  BWI        450          1025
5824    COS  DTW        130          1145
5825    FLL  EYW       4550           145
5826    SJU  CLE        350          1839
5827    IND  JAX        280           687
5828    PVD  MKE        300           846
5829    COS  MSY        430          1022
5830    SAT  OMA       1470           824
5831    TUS  RDU        180          1856
5832    AMA  LGA         80          1560
5833    MIA  SJC        900          2559
5834    HDN  SFO        660           838
5835    SNA  COS        630           815
5836    TPA  SMF       1470          2357
5837    LBB  PHX      20390           588
5838    BUF  AUS        760          1366
5839    CMH  AUS      25410          1073
5840    ELP  BWI        550          1741
5841    SJU  CMH        220          1794
5842    CLE  DAL        790          1015
5843    OAK  DCA       4170          2432
5844    SJC  IND        510          1925
5845    SAN  MEM        230          1567
5846    SMF  MEM         30          1761
5847    ECP  OMA        310           942
5848    RIC  PHX        180          1965
5849    SAN  PVD        140          2567
5850    OMA  SAN       2480          1313
5851    GSP  MIA      12700           637
5852    FLL  OKC       1740          1218
5853    MEM  SAN        390          1567
5854    BOS  HNL       1190          5095
5855    BDL  SAN        580          2502
5856    HOU  BDL        260          1519
5857    TUL  BUR       1510          1276
5858    LBB  BWI        390          1447
5859    ALB  DAL        390          1428
5860    SYR  DAL        270          1330
5861    SLC  ELP        190           693
5862    OMA  FLL        350          1383
5863    BUF  HOU        570          1297
5864    OKC  LGA      22830          1341
5865    HRL  LGB        210          1332
5866    SFO  MCI       2480          1499
5867    SJC  MCI       1170          1479
5868    SMF  MCI       2070          1442
5869    SBA  MCI        250          1427
5870    ALB  MSY       1340          1267
5871    OAK  OKC        130          1375
5872    MSP  ONT         80          1494
5873    MSY  ONT        350          1624
5874    LGA  SAN        750          2441
5875    ORF  SAT         60          1382
5876    CMH  SAT        620          1139
5877    TUL  SJC        450          1442
5878    MCI  SJC       2580          1479
5879    LAS  SRQ        320          2000
5880    SAN  TPA       2260          2087
5881    SNA  TUL        140          1257
5882    BOS  TUL        130          1394
5883    STL  TUS         30          1244
5884    AMA  MSY         80           758
5885    SAT  ONT        680          1166
5886    LGA  HRL        110          1691
5887    MIA  JAN        780           742
5888    CMH  MEM         60           518
5889    SRQ  MKE       1240          1113
5890    SAN  MKE        440          1739
5891    RNO  OKC        380          1248
5892    GEG  OMA        270          1151
5893    PSP  FLL        510          2233
5894    DCA  OAK       4980          2432
5895    OAK  RSW         30          2473
5896    RNO  ONT       1990           394
5897    LGB  ABQ        650           664
5898    PSP  EUG        100           796
5899    PWM  MSP      19880          1136
5900    BOI  SNA       4670           688
5901    OAK  TPA        740          2385
5902    SFO  MKE        140          1845
5903    MSY  CVG        210           701
5904    SJC  ELP       1180           964
5905    ECP  MEM         70           404
5906    LBB  MSP         30           900
5907    MSY  TUL        960           538
5908    OKC  CMH        330           865
5909    SJU  MSY       2780          1720
5910    BWI  LBB        200          1447
5911    COS  SDF         40          1027
5912    LGB  ATL        400          1933
5913    SAN  CMH       2160          1964
5914    PBI  MHT        110          1222
5915    TPA  OAK        740          2385
5916    TUL  SAN        160          1237
5917    MCI  IND         40           451
5918    RSW  ORF        150           785
5919    PNS  LAS        570          1658
5920    GRR  BNA        450           470
5921    GEG  BUR       2150           927
5922    LGB  BZN         40           904
5923    BUR  GEG       4020           927
5924    SAT  LGB        280          1195
5925    SRQ  OKC        170          1044
5926    SLC  SBA        330           615
5927    MCO  SJC       1080          2421
5928    OMA  BUF         50           888
5929    SNA  IND        180          1792
5930    SMF  RDU        160          2345
5931    OMA  SFO       2020          1433
5932    CMH  TUS         60          1653
5933    OKC  BWI        380          1180
5934    PBI  SFO         10          2567
5935    JAX  ALB         50           951
5936    SAT  AMA       1410           435
5937    JAX  BDL        560           935
5938    LBB  FAT         30          1033
5939    BNA  MAF        330           935
5940    FSD  ROC         10           959
5941    BNA  BOI        350          1643
5942    SAT  CLE        240          1240
5943    SJC  CLT        730          2274
5944    RNO  CMH        100          1950
5945    SNA  ICT        120          1179
5946    ABQ  LGA        140          1821
5947    BDL  MCI        330          1169
5948    TUL  ONT        660          1236
5949    BOI  ONT        870           660
5950    TUS  SMF       2230           752
5951    RDU  MEM        320           633
5952    SAV  MSY        140           557
5953    TUL  SAT       1220           483
5954    MIA  TUS         20          1900
5955    SJC  ABQ       3340           870
5956    SAT  LBB        890           346
5957    SJC  OKC        180          1359
5958    TUS  OMA        160          1046
5959    MKE  PDX         70          1718
5960    SAN  COS        540           816
5961    COS  SMF        320           911
5962    BOS  PWM        270            95
5963    ORF  MSY        280           940
5964    HRL  ATL        250           942
5965    ONT  BNA        280          1751
5966    BOI  CMH        120          1728
5967    PNS  CMH        180           700
5968    BUR  COS       1060           823
5969    SNA  DTW       5500          1960
5970    OKC  GEG        410          1328
5971    BOS  HOU        770          1609
5972    MYR  IND       1650           583
5973    CMH  MCI       2050           632
5974    ONT  MSY        390          1624
5975    SDF  OAK        270          1980
5976    TUL  PDX        320          1532
5977    BDL  PHX       2350          2213
5978    SRQ  PHX        670          1801
5979    MSY  SJC        960          1884
5980    RIC  SLC         10          1863
5981    SAT  SNA        500          1177
5982    FAT  ICT         40          1228
5983    CLE  ABQ         30          1411
5984    BHM  PHX       2570          1455
5985    SMF  BHM        140          1968
5986    LGA  COS        110          1638
5987    ORF  SJU        210          1414
5988    DTW  DAL       1740           981
5989    LGA  SJC        110          2563
5990    BDL  STL        130           957
5991    OKC  MIA      11630          1222
5992    MCO  RNO        980          2316
5993    SFO  STL        990          1735
5994    LNK  LIT         10           490
5995    STL  ELP       1050          1022
5996    ECP  IND       2970           646
5997    ABQ  ONT        340           630
5998    ONT  RDU        630          2192
5999    SNA  LGA        510          2449
6000    EGE  SFO       3480           847
6001    SJC  IAD         40          2400
6002    LAS  GSP        350          1850
6003    BZN  PDX       1540           554
6004    ISP  ABQ         50          1861
6005    SFO  HOU       1030          1649
6006    MYR  HOU       1490          1002
6007    MCI  LGB        450          1353
6008    MIA  PDX        120          2700
6009    BHM  SLC        390          1472
6010    PVD  SMF         50          2624
6011    SDF  BUR         80          1834
6012    LBB  ORF         10          1461
6013    OMA  PNS        320           891
6014    MCI  CLE        380           694
6015    GEG  COS         40           887
6016    LIT  LAX        580          1494
6017    GRR  HOU         20          1061
6018    SAN  RDU        650          2193
6019    HRL  STL        440           961
6020    FLL  BHM        160           650
6021    OAK  GRR        200          1955
6022    MKE  TUS         90          1462
6023    ABQ  BHM        170          1138
6024    CMH  BHM         80           492
6025    BDL  CLE         80           476
6026    COS  OAK        170           954
6027    SJC  OMA       1220          1415
6028    VPS  PIT        490           775
6029    HOU  PWM        420          1679
6030    LAX  SBN        180          1823
6031    ELP  LGA       1250          1904
6032    LGA  LAX       5680          2469
6033    SLC  BLI         90           757
6034    STL  BOI        170          1383
6035    CMH  ECP        460           684
6036    CLE  JAX        260           753
6037    RDU  MSY       7190           779
6038    SAN  OMA       2010          1313
6039    JAX  PHX       2440          1786
6040    ROC  RDU         40           503
6041    GEG  SNA       3310           962
6042    RNO  STL        490          1574
6043    FLL  AMA        130          1426
6044    STL  SAV        380           689
6045    BUF  DAL       2510          1206
6046    LAS  GRR        220          1642
6047    MSY  HRL         50           521
6048    DTW  PNS        220           837
6049    BWI  PSP        270          2230
6050    JAX  SAN        220          2089
6051    EUG  SNA       2120           776
6052    FAT  DAL        220          1325
6053    AUS  FAT        130          1348
6054    BOI  LIT         10          1419
6055    AMA  AUS      16930           418
6056    PBI  BNA        380           757
6057    RNO  IAD        270          2249
6058    DRO  LAS       4100           418
6059    ABQ  BUR      24050           672
6060    VPS  CLE        630           797
6061    CHS  IND        150           585
6062    SAT  RDU       1930          1224
6063    SRQ  SDF        270           765
6064    SNA  CMH        640          1974
6065    SBA  MDW        130          1809
6066    TUL  OAK        300          1456
6067    SRQ  JAN        190           564
6068    SNA  MCI       1160          1342
6069    MYR  SAT        140          1185
6070    BZN  AUS       1140          1299
6071    GRR  FLL         80          1198
6072    MCO  LGB        740          2203
6073    AUS  MKE       1610          1032
6074    TUS  RNO       1050           710
6075    JAX  SAT        540          1007
6076    BZN  MCO        170          2017
6077    ABQ  BOI        150           781
6078    OKC  CLE        190           948
6079    SAV  ELP         70          1475
6080    LIT  MDW        200           544
6081    OKC  ONT        340          1140
6082    RDU  SAN        950          2193
6083    FAT  ABQ        110           744
6084    MSY  BUR        310          1668
6085    GRR  BOS         60           740
6086    SJU  IND       1120          1902
6087    MSY  SFO      28620          1911
6088    HOU  AMA        160           537
6089    ROC  BNA        310           680
6090    PNS  BOS       3640          1215
6091    BZN  BUR        200           885
6092    IAD  JAN         40           843
6093    CHS  OMA         80          1047
6094    BNA  ROC        160           680
6095    SMF  MHT         20          2607
6096    HDN  TPA        100          1647
6097    TPA  ABQ        820          1498
6098    SJU  BUF       2110          1845
6099    SNA  SRQ         50          2139
6100    MIA  BUF       1250          1185
6101    RDU  SNA         60          2213
6102    DTW  ABQ         30          1347
6103    SAV  MCI        220           905
6104    ONT  MKE        250          1712
6105    GEG  OKC        100          1328
6106    MIA  RNO        170          2464
6107    IND  SAN       1660          1782
6108    ORD  SBA       7270          1803
6109    GEG  TUL         20          1359
6110    ORF  BDL        460           396
6111    LGB  BNA       1360          1785
6112    VPS  ORD       4030           796
6113    DAL  SBA        200          1327
6114    MEM  SMF        180          1761
6115    CLT  TTN      19700           484
6116    GEG  ABQ         80          1035
6117    LGB  CLE        130          2043
6118    ATL  COS       2560          1184
6119    RNO  COS        780           810
6120    GEG  FAT        110           757
6121    ELP  LGB        190           699
6122    ABQ  LGB        720           664
6123    SAV  MKE        280           831
6124    MAF  MSY        530           721
6125    LGB  MSY        470          1655
6126    ALB  ORF        140           424
6127    RNO  PSP        380           431
6128    ALB  RDU       7850           544
6129    COS  RNO        170           810
6130    ISP  SAT         70          1624
6131    COS  SBA         60           893
6132    MKE  LIT         20           613
6133    ALB  BUR         30          2457
6134    PBI  CVG         60           892
6135    SLC  SDF         70          1409
6136    CMH  CRP         10          1186
6137    DEN  JAN         90           967
6138    RDU  MCI       2180           904
6139    GSP  OMA        110           865
6140    AMA  ONT         90           908
6141    OMA  SAT        280           824
6142    BUR  TPA        370          2155
6143    ALB  SLC        140          1960
6144    CHS  AUS      21330          1055
6145    BUR  BDL        120          2516
6146    ECP  COS         30          1222
6147    ICT  PHL        250          1205
6148    PHL  SAT       5330          1496
6149    OMA  TPA       3190          1190
6150    MDW  JAN       1930           666
6151    SJU  SAT        500          2181
6152    OKC  BOS        170          1505
6153    OMA  CLE        430           729
6154    ALB  LAS        140          2237
6155    MEM  MAF         40           737
6156    OKC  OAK         60          1375
6157    MEM  PNS         40           354
6158    JAX  SDF         50           578
6159    COS  SNA        720           815
6160    RNO  BNA       1060          1815
6161    BOI  BWI         40          2059
6162    MSP  ELP        290          1147
6163    BOS  GRR        110           740
6164    RNO  MSY        660          1792
6165    TPA  SNA        390          2127
6166    FLL  TUL        820          1162
6167    MEM  AUS       2650           559
6168    LAX  GRR        130          1874
6169    BDL  JAX        650           935
6170    ICT  LGA        770          1279
6171    PVD  PDX         80          2535
6172    SDF  SAT        120           942
6173    ATL  BUR       1610          1941
6174    ABQ  CMH         70          1342
6175    BUR  DTW         30          1968
6176    OAK  PHL      16410          2511
6177    LGA  PHX       2320          2149
6178    TUS  STL        550          1244
6179    ABQ  TPA        520          1498
6180    CLE  CHS         70           595
6181    PHX  GSP        860          1704
6182    MSP  LGB        540          1529
6183    STL  ORF        220           785
6184    MSY  PIT       1310           918
6185    PDX  BZN       1760           554
6186    BNA  COS        330          1006
6187    ORF  GRR         70           644
6188    MDW  MTJ        110          1087
6189    MCI  ORF        710          1021
6190    BOI  SAT         90          1377
6191    TUL  SEA        150          1558
6192    CMH  SJC        640          2102
6193    ECP  PHX        780          1551
6194    FLL  TUS        230          1902
6195    PDX  BWI       1020          2358
6196    ORF  LAX         20          2371
6197    ONT  OMA        800          1286
6198    JNU  WRG       2280           153
6199    ACY  SJU      12050          1536
6200    LGA  ELP        220          1904
6201    TUS  BOS         50          2289
6202    MIA  COS        120          1678
6203    OAK  IND        410          1933
6204    OAK  MKE         30          1835
6205    AUS  SBA       1600          1327
6206    IND  SNA        930          1792
6207    FLL  TLH       2450           393
6208    RNO  ABQ        260           787
6209    BOI  BNA        170          1643
6210    ELP  COS         70           492
6211    ONT  GEG       1360           936
6212    EUG  RNO        190           365
6213    EUG  SAN        120           850
6214    BUF  SJU       1580          1845
6215    TUL  MSY        410           538
6216    MCI  BUF        180           870
6217    SAV  BDL        110           823
6218    GRR  MCI        190           539
6219    SJC  TUS       3300           722
6220    LGA  ACK      19680           202
6221    SEA  HOU       1300          1894
6222    WRG  JNU       2060           153
6223    BHM  BDL        150           961
6224    SEA  BDL        150          2432
6225    MEM  CLE         70           622
6226    MSY  GEG         50          1892
6227    HRL  MCI        240           917
6228    CHS  MHT         30           836
6229    BNA  MHT         90           938
6230    ELP  SAN      13320           636
6231    CLT  SJC        500          2274
6232    LGB  MCI        660          1353
6233    MYR  IAH         80           997
6234    SAV  JAN         30           520
6235    RNO  SBA         10           350
6236    ONT  CMH        810          1949
6237    RSW  LAS       1380          2070
6238    LAS  PWM        100          2410
6239    SMF  KOA      11770          2435
6240    RDU  OKC        230          1058
6241    RDU  SAT        310          1224
6242    RSW  SJC         20          2454
6243    ELP  SMF       2670           981
6244    MYR  STL       4720           728
6245    EUG  DAL        200          1617
6246    TUS  SJC       2640           722
6247    LGB  BHM         80          1802
6248    MCI  GEG         70          1277
6249    MAF  BNA        820           935
6250    RSW  ROC        910          1166
6251    ONT  SDF        120          1796
6252    VPS  ORF         10           740
6253    RDU  SJC        150          2379
6254    CGI  ORD       6410           339
6255    ABQ  IND         20          1161
6256    PIT  BUR        350          2126
6257    SLC  PIT        600          1660
6258    MKE  SNA        500          1738
6259    OMA  SNA       1250          1312
6260    SRQ  PWM         80          1313
6261    SAT  BUR        650          1211
6262    ABQ  BNA       2040          1123
6263    CLE  OAK        190          2151
6264    ORF  STL        290           785
6265    MCI  RNO        480          1337
6266    SJU  ALB        290          1736
6267    BUF  LGB         10          2209
6268    BLI  FAT         20           842
6269    MKE  LGB        140          1747
6270    ELP  MDW       1090          1237
6271    HOU  MYR       1290          1002
6272    MKE  ONT        160          1712
6273    CAK  PHL       4810           335
6274    BZN  IND        130          1326
6275    PIT  OAK        140          2244
6276    OAK  SDF        140          1980
6277    FAT  TUL         80          1324
6278    HRL  IND         80          1138
6279    JAN  MYR         30           654
6280    ALB  OKC         20          1371
6281    OKC  RNO         10          1248
6282    OKC  SAN       2100          1137
6283    ONT  IND        160          1768
6284    ECP  LAS        710          1739
6285    SAT  MKE        340          1095
6286    MAF  DTW         30          1255
6287    SFO  OKC         70          1384
6288    GEG  SAT         40          1610
6289    ECP  BDL         70          1081
6290    IAD  ONT        220          2242
6291    OMA  SJC       1100          1415
6292    PVD  SRQ        720          1171
6293    IND  SMF        200          1883
6294    CLE  AUS       2580          1174
6295    PNS  DEN      34960          1179
6296    MCO  GSP       1430           449
6297    GRR  LAS        540          1642
6298    BUR  OKC         60          1181
6299    LIT  OMA         20           495
6300    ONT  AUS      27260          1196
6301    SBA  OMA         40          1387
6302    MEM  BWI       3790           787
6303    DTW  BUR        150          1968
6304    OMA  ALB        110          1138
6305    OMA  PDX        170          1369
6306    OMA  BUR        510          1319
6307    ALB  BNA       1490           825
6308    PIT  SNA        180          2115
6309    GRR  BUF         20           345
6310    SRQ  SAN        140          2098
6311    MSP  JAX      21930          1174
6312    HRL  MCO       4220          1016
6313    TUL  MCO        940          1005
6314    LGA  MVY      13750           175
6315    DCA  AMA        440          1382
6316    ECP  OKC        140           768
6317    DTW  SJC         50          2062
6318    LIT  MIA       5650           941
6319    RNO  ELP        220           920
6320    MHT  JAX         50          1028
6321    MHT  MSP         50          1092
6322    BZN  SMF       1150           724
6323    SFO  ELP        610           993
6324    SDF  HOU      12450           803
6325    CVG  LGB         70          1889
6326    MAF  SAN         90           878
6327    MTJ  SJC         50           770
6328    DSM  SJC        110          1532
6329    BDL  SRQ        290          1147
6330    PHL  BZN         40          1853
6331    SAT  CMH        720          1139
6332    JAN  DAL        390           397
6333    IND  LGB        510          1803
6334    JAN  SAT        310           534
6335    TUL  BNA       1790           515
6336    AUS  OMA       1030           772
6337    MKE  SJC        650          1829
6338    MDW  TUL      24440           583
6339    SLC  LGA        590          1983
6340    IAD  MEM        310           742
6341    CMH  ROC         20           346
6342    OKC  BHM         40           632
6343    GRR  DAL        120           927
6344    CVG  ONT        100          1854
6345    ECP  PIT         50           765
6346    BNA  PWM       1940          1010
6347    STL  MWA       1050           101
6348    MCI  MYR       1990           959
6349    BZN  SJC         70           804
6350    SLC  VPS         20          1591
6351    LIT  BZN         30          1252
6352    DSM  DAL        210           624
6353    LGA  SLC         60          1983
6354    OAK  DSM        170          1539
6355    SJU  VQS        940            39
6356    OMA  BOS        390          1282
6357    BHM  SAT        330           744
6358    MSP  ALB         20           980
6359    MHT  GSP        100           802
6360    HNL  AUS        530          3764
6361    RDU  AMA         10          1289
6362    MHT  ATL        160           952
6363    SAT  JAX         70          1007
6364    MKE  PNS        240           861
6365    TUL  SMF        320          1419
6366    MIA  ABQ        480          1689
6367    ISP  DAL       1350          1420
6368    JAN  RIC         60           807
6369    MSY  ROC        260          1142
6370    ABQ  SMF        940           866
6371    CHS  ALB        110           760
6372    LIT  COS         20           746
6373    ISP  SRQ         70          1069
6374    LGB  TPA        700          2143
6375    BUR  MSY        380          1668
6376    PDX  OKC        210          1484
6377    BOI  MEM         30          1516
6378    LIT  BWI        110           912
6379    ROC  CHS         70           717
6380    ECP  CLE        100           793
6381    SAV  IND        160           596
6382    SDF  JAX        130           578
6383    PNS  MKE         90           861
6384    BUF  MYR        190           639
6385    IND  PBI        160           967
6386    HRL  PNS         30           701
6387    RDU  PWM       5960           700
6388    PNS  RDU        320           612
6389    AUS  TUS       1690           797
6390    SNA  ABQ        330           650
6391    SMF  DTW        290          2013
6392    MKE  EUG         40          1762
6393    ONT  PIT        340          2090
6394    PSP  BNA        630          1693
6395    ICT  BOS         50          1433
6396    PIT  COS         50          1306
6397    JAX  DAL       5830           907
6398    MKE  ABQ        140          1142
6399    PWM  BNA       1600          1010
6400    TPA  HRL        420           939
6401    HOU  IAD        150          1201
6402    LGA  SAT        780          1586
6403    PBI  STL        430          1023
6404    FLL  MAF        540          1392
6405    GSP  MCI        510           753
6406    BOS  OMA        210          1282
6407    MAF  SNA         10           919
6408    SAV  SAN        240          2093
6409    BUF  CMH         20           296
6410    MCW  ORD       4660           289
6411    DEC  ORD       7190           156
6412    JMS  DEN       8120           573
6413    FSD  CLT       4900          1021
6414    BOI  MDW        280          1448
6415    RNO  MDW       3740          1680
6416    HHH  DCA      13230           501
6417    SWO  DFW      23340           225
6418    CRW  MCO      17080           686
6419    CPX  SJU        270            47
6420    PWM  MIA       1950          1353
6421    BUF  MIA       2010          1185
6422    TWF  DEN       1580           542
6423    LGA  SNA        170          2449
6424    FCA  DFW      25820          1390
6425    LBF  DEN      10160           228
6426    PBI  DAL        940          1091
6427    WYS  SLC       6890           273
6428    TVC  CLT        740           702
6429    ICT  BUR        370          1195
6430    FOD  DEN        250           576
6431    SUN  SFO       8500           587
6432    MSO  ORD       7310          1332
6433    FAI  DFW        410          3056
6434    PIB  IAH       8680           372
6435    CMI  CLT        250           522
6436    BUF  RSW      26270          1144
6437    EAU  MSP        120            85
6438    PBI  HOU        370           948
6439    AVL  DCA      10300           384
6440    MEM  SNA        140          1592
6441    BOS  DAL       1130          1554
6442    BIL  ORD       4050          1061
6443    RDM  PDX       1510           116
6444    JST  IAD       2970           120
6445    STX  STT        270            45
6446    GRB  IAD         60           670
6447    LBB  MDW        300           951
6448    MIA  SWF       3630          1139
6449    GSP  DAL       1760           852
6450    LEB  BOS        710           109
6451    CAE  MIA       3410           563
6452    GRR  MIA       5270          1214
6453    UIN  ORD        960           222
6454    MKE  MIA       7470          1258
6455    RSW  SLC        180          1985
6456    SYR  MSY         60          1196
6457    ALB  MIA       2440          1225
6458    PVD  MCI        310          1234
6459    LBB  BNA        370           876
6460    TUL  MDW      24510           583
6461    MSN  MIA        840          1300
6462    RNO  CLT        610          2141
6463    CLE  SLC       1800          1565
6464    COS  SJC        870           943
6465    ORH  PHL        680           241
6466    PDX  SAT        150          1714
6467    RIC  STL        420           716
6468    ACY  MYR      47770           466
6469    TOL  CLT        310           466
6470    CRP  BUR         40          1312
6471    ORF  MCI       1180          1021
6472    WRG  ANC       2540           708
6473    TUL  MIA       1760          1168
6474    CAK  MCO      23050           861
6475    AMA  HOU        460           537
6476    GTF  MSP        190           887
6477    SMF  MKE         80          1778
6478    CEZ  DEN        400           277
6479    BTV  MIA        860          1348
6480    MCK  DEN        240           218
6481    PAE  DEN        140          1036
6482    OWB  STL        240           188
6483    RIC  LAS       1890          2086
6484    BTV  DFW       2860          1510
6485    ACY  MIA      26210           998
6486    MYR  MIA       6450           549
6487    ATL  LGB       1480          1933
6488    BUF  BNA        750           633
6489    LGB  PHL        130          2391
6490    PDX  BDL         90          2470
6491    HDN  SAN       2550           769
6492    BOS  STT      20440          1693
6493    SEA  HDN       2090           891
6494    EWR  HDN       2930          1728
6495    BWI  OMA       1420          1025
6496    MCI  ROC         50           925
6497    SJU  PIT        130          1739
6498    TLH  FLL       2470           393
6499    HVN  RSW      30560          1134
6500    BOS  PSP        690          2517
6501    EWR  EGE      12020          1725
6502    CLE  SRQ       7260           967
6503    ISP  MYR      11420           586
6504    MSN  LAS       6270          1454
6505    SWF  MIA       3770          1139
6506    SYR  TPA      14270          1104
6507    XNA  LAS      12370          1163
6508    RDU  SBN        190           571
6509    AMA  ECP         70           983
6510    AUS  MYR        380          1125
6511    BHM  MAF        140           906
6512    BNA  AMA        120           847
6513    BUR  ABQ      27920           672
6514    DCA  HDN         40          1605
6515    ELP  RNO         90           920
6516    GSP  TPA        760           477
6517    HRL  ECP         70           776
6518    LBB  SAN         80           892
6519    LGB  MCO        700          2203
6520    MCI  JAX       1150           955
6521    MCI  PIT       1650           773
6522    OAK  PIT        140          2244
6523    PBI  ORF         30           740
6524    PHL  TUS         20          2056
6525    SAV  TUL         10           886
6526    SMF  BZN        140           724
6527    SMF  ELP        540           981
6528    SNA  MAF        270           919
6529    SNA  RSW         40          2206
6530    TUS  DAL        840           824
6531    VPS  DTW         30           828
6532    STS  LAS      23860           454
6533    BOS  SMF      13540          2636
6534    HRL  MAF        190           480
6535    OKC  LBB         80           269
6536    OMA  JAX        190          1088
6537    LGA  MTJ        920          1810
6538    GRB  MCO       8200          1169
6539    TTN  RSW      20840          1028
6540    SNA  OKC         30          1160
6541    BZN  COS         30           583
6542    FLL  BZN       1670          2183
6543    CMH  PNS        200           700
6544    MIA  BUR        210          2340
6545    PSP  GEG        250           953
6546    SJU  PVD        150          1636
6547    ROC  MIA       3700          1203
6548    DAL  ISP        330          1420
6549    IND  SJU       1730          1902
6550    LGA  SFO         90          2579
6551    MCO  VPS         40           345
6552    OAK  MCO        930          2438
6553    PBI  CLE         60          1020
6554    SJC  DTW        190          2062
6555    EGE  LGA        790          1739
6556    MKE  BHM         50           650
6557    SNA  PIT        200          2115
6558    ALB  CHS         40           760
6559    AMA  PHX         40           602
6560    AUS  BHM       1090           682
6561    BHM  AMA         20           861
6562    CMH  VPS        110           687
6563    FAT  ELP         60           836
6564    HOU  PBI         60           948
6565    JAN  DEN        610           967
6566    LGB  LBB         40           939
6567    MAF  LAX         70           951
6568    MKE  MSY        210           903
6569    MKE  RDU        830           689
6570    OMA  IAD        710           988
6571    ONT  EUG        310           757
6572    PBI  BUF        120          1123
6573    SAN  SDF        870          1804
6574    SAT  MEM        140           625
6575    SBA  ABQ         10           754
6576    SBA  TUS         10           539
6577    STL  MAF        170           815
6578    TUS  AUS        270           797
6579    OMA  RSW       7410          1299
6580    PIT  ORF         60           330
6581    MIA  MSN        610          1300
6582    BWI  BOI        810          2059
6583    COS  ORF         60          1558
6584    LIT  OAK        110          1681
6585    LGA  SBN       1010           651
6586    JFK  EGE       9400          1746
6587    IND  MSY        780           707
6588    DLH  RSW       5400          1512
6589    ALB  SNA         20          2449
6590    PHX  LGA       5430          2149
6591    MIA  EGE       9940          1810
6592    LGA  JAC       1490          1887
6593    DEN  SBN         60           969
6594    BZN  FAT         10           764
6595    CVG  OAK         80          2026
6596    PSP  LGA         80          2373
6597    RDU  PDX         90          2363
6598    SFO  CVG         20          2036
6599    OMA  ISP         10          1188
6600    RIC  SMF        220          2391
6601    SBA  IND        200          1878
6602    DSM  TPA        460          1127
6603    PDX  CHS         30          2411
6604    BHM  BUR        500          1810
6605    LAS  ALB       2570          2237
6606    LGA  OAK         90          2569
6607    MIA  ELP        710          1631
6608    MSP  BUR        290          1523
6609    MSY  PDX        110          2050
6610    PNS  ISP         30          1063
6611    RNO  LGA        130          2404
6612    SEA  PVD         90          2496
6613    SMF  ORF        150          2462
6614    SRQ  ISP        160          1069
6615    ABQ  GRR         20          1253
6616    ABQ  PIT         40          1486
6617    AMA  BHM         10           861
6618    ATL  MAF        140          1040
6619    AUS  BUF        310          1366
6620    BDL  TUS        360          2200
6621    BUF  PBI         40          1123
6622    BUR  IAH        320          1378
6623    COS  AUS         80           716
6624    COS  BUR        570           823
6625    COS  RSW         80          1575
6626    ECP  SEA         70          2264
6627    ELP  ONT        570           670
6628    FAT  RDU         40          2267
6629    ICT  FLL        100          1288
6630    LBB  RNO         90          1074
6631    MAF  DCA        170          1492
6632    MKE  SMF        180          1778
6633    MSP  BUF      14170           735
6634    OAK  TUL         80          1456
6635    OKC  MHT         20          1491
6636    OKC  PDX         60          1484
6637    OMA  COS         50           497
6638    ONT  RSW         80          2192
6639    PVD  OKC        120          1477
6640    RSW  OKC        250          1119
6641    SAN  SRQ         20          2098
6642    SAT  ECP        100           762
6643    SBA  CMH         90          2059
6644    SDF  SRQ        220           765
6645    BOS  HDN       2690          1871
6646    MSO  SFO       6510           769
6647    BOS  BZN       5760          1991
6648    SAN  ICT        220          1166
6649    ABQ  ALB        280          1834
6650    ELP  CHS         80          1538
6651    IND  PVD         40           792
6652    MSY  RNO        580          1792
6653    OMA  SMF       1100          1370
6654    PBI  LAS        340          2158
6655    PDX  MSY        570          2050
6656    PIT  TUS         50          1798
6657    SJU  SJC         20          3603
6658    TUL  SNA        320          1257
6659    COS  MSP        360           725
6660    MSY  MEM         20           348
6661    AUS  VPS       4150           666
6662    JAX  MKE        250           925
6663    STL  ONT       2040          1546
6664    DCA  MVY      12100           383
6665    TPA  GRB       3470          1180
6666    ACV  LAS       5540           591
                                       origin_name origin_cbsa
1                     Newark Liberty International       35620
2          Fort Lauderdale-Hollywood International       33100
3                       Jacksonville International       27260
4                        Los Angeles International       31080
5                        Los Angeles International       31080
6                        Los Angeles International       31080
7                                        LaGuardia       35620
8                                        LaGuardia       35620
9                            Orlando International       36740
10                             Miami International       33100
11       Louis Armstrong New Orleans International       35380
12                 Southwest Florida International       15980
13                    Seattle/Tacoma International       42660
14                    Seattle/Tacoma International       42660
15                    Seattle/Tacoma International       42660
16                    Salt Lake City International       41620
17                             Tampa International       45300
18        Hartsfield-Jackson Atlanta International       12060
19        Hartsfield-Jackson Atlanta International       12060
20        Hartsfield-Jackson Atlanta International       12060
21        Hartsfield-Jackson Atlanta International       12060
22        Hartsfield-Jackson Atlanta International       12060
23        Hartsfield-Jackson Atlanta International       12060
24        Hartsfield-Jackson Atlanta International       12060
25        Hartsfield-Jackson Atlanta International       12060
26        Hartsfield-Jackson Atlanta International       12060
27        Hartsfield-Jackson Atlanta International       12060
28        Hartsfield-Jackson Atlanta International       12060
29        Hartsfield-Jackson Atlanta International       12060
30        Hartsfield-Jackson Atlanta International       12060
31        Hartsfield-Jackson Atlanta International       12060
32        Hartsfield-Jackson Atlanta International       12060
33        Hartsfield-Jackson Atlanta International       12060
34                      Detroit Metro Wayne County       19820
35                      Detroit Metro Wayne County       19820
36               Minneapolis-St Paul International       33460
37               Minneapolis-St Paul International       33460
38               Minneapolis-St Paul International       33460
39               Minneapolis-St Paul International       33460
40                    Salt Lake City International       41620
41                    Salt Lake City International       41620
42                    Salt Lake City International       41620
43        Hartsfield-Jackson Atlanta International       12060
44        Hartsfield-Jackson Atlanta International       12060
45               Minneapolis-St Paul International       33460
46               Minneapolis-St Paul International       33460
47        Hartsfield-Jackson Atlanta International       12060
48        Hartsfield-Jackson Atlanta International       12060
49        Hartsfield-Jackson Atlanta International       12060
50        Hartsfield-Jackson Atlanta International       12060
51        Hartsfield-Jackson Atlanta International       12060
52        Hartsfield-Jackson Atlanta International       12060
53        Hartsfield-Jackson Atlanta International       12060
54                   John F. Kennedy International       35620
55                       Los Angeles International       31080
56                                       LaGuardia       35620
57               Minneapolis-St Paul International       33460
58                    Salt Lake City International       41620
59                    Salt Lake City International       41620
60               Minneapolis-St Paul International       33460
61               Minneapolis-St Paul International       33460
62               Minneapolis-St Paul International       33460
63               Minneapolis-St Paul International       33460
64                    Salt Lake City International       41620
65                    Salt Lake City International       41620
66                    Salt Lake City International       41620
67                    Salt Lake City International       41620
68                    Salt Lake City International       41620
69                    Salt Lake City International       41620
70                    Salt Lake City International       41620
71                    Salt Lake City International       41620
72                    Salt Lake City International       41620
73        Hartsfield-Jackson Atlanta International       12060
74        Hartsfield-Jackson Atlanta International       12060
75        Hartsfield-Jackson Atlanta International       12060
76                      Detroit Metro Wayne County       19820
77        Hartsfield-Jackson Atlanta International       12060
78        Hartsfield-Jackson Atlanta International       12060
79        Hartsfield-Jackson Atlanta International       12060
80        Hartsfield-Jackson Atlanta International       12060
81        Hartsfield-Jackson Atlanta International       12060
82        Hartsfield-Jackson Atlanta International       12060
83        Hartsfield-Jackson Atlanta International       12060
84        Hartsfield-Jackson Atlanta International       12060
85        Hartsfield-Jackson Atlanta International       12060
86        Hartsfield-Jackson Atlanta International       12060
87        Hartsfield-Jackson Atlanta International       12060
88                       Los Angeles International       31080
89                       Los Angeles International       31080
90                       Los Angeles International       31080
91                       Los Angeles International       31080
92                       Los Angeles International       31080
93               Minneapolis-St Paul International       33460
94               Minneapolis-St Paul International       33460
95                    Seattle/Tacoma International       42660
96                    Salt Lake City International       41620
97        Hartsfield-Jackson Atlanta International       12060
98        Hartsfield-Jackson Atlanta International       12060
99        Hartsfield-Jackson Atlanta International       12060
100       Hartsfield-Jackson Atlanta International       12060
101       Hartsfield-Jackson Atlanta International       12060
102       Hartsfield-Jackson Atlanta International       12060
103       Hartsfield-Jackson Atlanta International       12060
104                     Detroit Metro Wayne County       19820
105                      Los Angeles International       31080
106                      Los Angeles International       31080
107              Minneapolis-St Paul International       33460
108                   Salt Lake City International       41620
109       Hartsfield-Jackson Atlanta International       12060
110       Hartsfield-Jackson Atlanta International       12060
111       Hartsfield-Jackson Atlanta International       12060
112       Hartsfield-Jackson Atlanta International       12060
113       Hartsfield-Jackson Atlanta International       12060
114       Hartsfield-Jackson Atlanta International       12060
115       Hartsfield-Jackson Atlanta International       12060
116                     Detroit Metro Wayne County       19820
117                     Detroit Metro Wayne County       19820
118                         McCarran International       29820
119                      Los Angeles International       31080
120                      Los Angeles International       31080
121                          Orlando International       36740
122                          Orlando International       36740
123                            Miami International       33100
124                            Miami International       33100
125                Southwest Florida International       15980
126                   Seattle/Tacoma International       42660
127                   Seattle/Tacoma International       42660
128                   Seattle/Tacoma International       42660
129                   Seattle/Tacoma International       42660
130                   Salt Lake City International       41620
131                   Salt Lake City International       41620
132                   Salt Lake City International       41620
133                   Salt Lake City International       41620
134                            Tampa International       45300
135                        San Diego International       41740
136                      Los Angeles International       31080
137                   Seattle/Tacoma International       42660
138       Hartsfield-Jackson Atlanta International       12060
139                     Detroit Metro Wayne County       19820
140                     Detroit Metro Wayne County       19820
141                     Detroit Metro Wayne County       19820
142                     Detroit Metro Wayne County       19820
143                  John F. Kennedy International       35620
144                  John F. Kennedy International       35620
145              Minneapolis-St Paul International       33460
146              Minneapolis-St Paul International       33460
147                   Raleigh-Durham International       39580
148                   Salt Lake City International       41620
149                   Salt Lake City International       41620
150       Hartsfield-Jackson Atlanta International       12060
151       Hartsfield-Jackson Atlanta International       12060
152       Hartsfield-Jackson Atlanta International       12060
153                        Nashville International       34980
154     Cincinnati/Northern Kentucky International       17140
155     Cincinnati/Northern Kentucky International       17140
156                Dallas/Fort Worth International       19100
157                     Detroit Metro Wayne County       19820
158                     Detroit Metro Wayne County       19820
159                     Detroit Metro Wayne County       19820
160                     Detroit Metro Wayne County       19820
161                  Daniel K Inouye International       46520
162                  John F. Kennedy International       35620
163                  John F. Kennedy International       35620
164                   Raleigh-Durham International       39580
165                      San Antonio International       41700
166                   Seattle/Tacoma International       42660
167                   Salt Lake City International       41620
168                   Salt Lake City International       41620
169                   Salt Lake City International       41620
170                   Salt Lake City International       41620
171       Hartsfield-Jackson Atlanta International       12060
172                     Detroit Metro Wayne County       19820
173                     Detroit Metro Wayne County       19820
174                     Detroit Metro Wayne County       19820
175                     Detroit Metro Wayne County       19820
176                     Detroit Metro Wayne County       19820
177        Fort Lauderdale-Hollywood International       33100
178              Minneapolis-St Paul International       33460
179              Minneapolis-St Paul International       33460
180              Minneapolis-St Paul International       33460
181              Minneapolis-St Paul International       33460
182              Minneapolis-St Paul International       33460
183                   Chicago O'Hare International       16980
184               Sarasota/Bradenton International       35840
185                            Tampa International       45300
186                      Los Angeles International       31080
187       Hartsfield-Jackson Atlanta International       12060
188       Hartsfield-Jackson Atlanta International       12060
189              Minneapolis-St Paul International       33460
190       Hartsfield-Jackson Atlanta International       12060
191       Hartsfield-Jackson Atlanta International       12060
192       Hartsfield-Jackson Atlanta International       12060
193       Hartsfield-Jackson Atlanta International       12060
194                     Detroit Metro Wayne County       19820
195                     Detroit Metro Wayne County       19820
196                  John F. Kennedy International       35620
197                                      LaGuardia       35620
198              Minneapolis-St Paul International       33460
199       Hartsfield-Jackson Atlanta International       12060
200       Hartsfield-Jackson Atlanta International       12060
201       Hartsfield-Jackson Atlanta International       12060
202       Hartsfield-Jackson Atlanta International       12060
203       Hartsfield-Jackson Atlanta International       12060
204              Minneapolis-St Paul International       33460
205                   Salt Lake City International       41620
206       Hartsfield-Jackson Atlanta International       12060
207       Hartsfield-Jackson Atlanta International       12060
208       Hartsfield-Jackson Atlanta International       12060
209              Minneapolis-St Paul International       33460
210       Hartsfield-Jackson Atlanta International       12060
211       Hartsfield-Jackson Atlanta International       12060
212       Hartsfield-Jackson Atlanta International       12060
213       Hartsfield-Jackson Atlanta International       12060
214               Austin - Bergstrom International       12420
215                        Nashville International       34980
216                            Logan International       14460
217              Ronald Reagan Washington National       47900
218                           Denver International       19740
219                Dallas/Fort Worth International       19100
220                     Detroit Metro Wayne County       19820
221                     Detroit Metro Wayne County       19820
222                     Detroit Metro Wayne County       19820
223                   Newark Liberty International       35620
224                         McCarran International       29820
225                      Los Angeles International       31080
226                                      LaGuardia       35620
227                                      LaGuardia       35620
228                          Orlando International       36740
229      Louis Armstrong New Orleans International       35380
230                   Chicago O'Hare International       16980
231                         Portland International       38900
232                     Philadelphia International       37980
233                   Raleigh-Durham International       39580
234                Southwest Florida International       15980
235                   Seattle/Tacoma International       42660
236                            Tampa International       45300
237                     Detroit Metro Wayne County       19820
238                     Detroit Metro Wayne County       19820
239              Minneapolis-St Paul International       33460
240              Minneapolis-St Paul International       33460
241       Hartsfield-Jackson Atlanta International       12060
242       Hartsfield-Jackson Atlanta International       12060
243                   Salt Lake City International       41620
244                   Salt Lake City International       41620
245       Hartsfield-Jackson Atlanta International       12060
246              Minneapolis-St Paul International       33460
247                   Salt Lake City International       41620
248       Hartsfield-Jackson Atlanta International       12060
249                            Logan International       14460
250                     Detroit Metro Wayne County       19820
251                                      LaGuardia       35620
252                                      LaGuardia       35620
253              Minneapolis-St Paul International       33460
254              Minneapolis-St Paul International       33460
255                   Seattle/Tacoma International       42660
256       Hartsfield-Jackson Atlanta International       12060
257       Hartsfield-Jackson Atlanta International       12060
258              Minneapolis-St Paul International       33460
259                   Seattle/Tacoma International       42660
260                   Salt Lake City International       41620
261                   Salt Lake City International       41620
262                   Salt Lake City International       41620
263                   Salt Lake City International       41620
264       Hartsfield-Jackson Atlanta International       12060
265       Hartsfield-Jackson Atlanta International       12060
266                     Detroit Metro Wayne County       19820
267              Minneapolis-St Paul International       33460
268       Hartsfield-Jackson Atlanta International       12060
269                  John F. Kennedy International       35620
270              Minneapolis-St Paul International       33460
271       Hartsfield-Jackson Atlanta International       12060
272       Hartsfield-Jackson Atlanta International       12060
273       Hartsfield-Jackson Atlanta International       12060
274                     Detroit Metro Wayne County       19820
275        Fort Lauderdale-Hollywood International       33100
276                         McCarran International       29820
277                      Los Angeles International       31080
278                      Los Angeles International       31080
279                          Orlando International       36740
280                   Seattle/Tacoma International       42660
281       Hartsfield-Jackson Atlanta International       12060
282       Hartsfield-Jackson Atlanta International       12060
283                                      LaGuardia       35620
284                     Detroit Metro Wayne County       19820
285                   Seattle/Tacoma International       42660
286                   Salt Lake City International       41620
287                   Salt Lake City International       41620
288       Hartsfield-Jackson Atlanta International       12060
289       Hartsfield-Jackson Atlanta International       12060
290                     Detroit Metro Wayne County       19820
291                     Detroit Metro Wayne County       19820
292                         McCarran International       29820
293                      Los Angeles International       31080
294              Minneapolis-St Paul International       33460
295               Phoenix Sky Harbor International       38060
296                        San Diego International       41740
297                   Salt Lake City International       41620
298               John Wayne Airport-Orange County       31080
299                   Seattle/Tacoma International       42660
300                   Salt Lake City International       41620
301                   Salt Lake City International       41620
302              Minneapolis-St Paul International       33460
303                   Salt Lake City International       41620
304                             Boise Air Terminal       14260
305                Dallas/Fort Worth International       19100
306                     Detroit Metro Wayne County       19820
307                     Detroit Metro Wayne County       19820
308                     Detroit Metro Wayne County       19820
309                   Newark Liberty International       35620
310                          Spokane International       44060
311                  John F. Kennedy International       35620
312                         McCarran International       29820
313                      Los Angeles International       31080
314              Minneapolis-St Paul International       33460
315                          Ontario International       40140
316                        San Diego International       41740
317                    San Francisco International       41860
318        Norman Y. Mineta San Jose International       41940
319               John Wayne Airport-Orange County       31080
320              Minneapolis-St Paul International       33460
321                   Salt Lake City International       41620
322       Hartsfield-Jackson Atlanta International       12060
323              Minneapolis-St Paul International       33460
324                   Seattle/Tacoma International       42660
325                   Salt Lake City International       41620
326       Hartsfield-Jackson Atlanta International       12060
327              Minneapolis-St Paul International       33460
328       Hartsfield-Jackson Atlanta International       12060
329       Hartsfield-Jackson Atlanta International       12060
330       Hartsfield-Jackson Atlanta International       12060
331                     Detroit Metro Wayne County       19820
332                     Detroit Metro Wayne County       19820
333                  John F. Kennedy International       35620
334                                      LaGuardia       35620
335              Minneapolis-St Paul International       33460
336                         McCarran International       29820
337                          Ontario International       40140
338                         McCarran International       29820
339                          Orlando International       36740
340                          Orlando International       36740
341                           Denver International       19740
342                         McCarran International       29820
343                     Philadelphia International       37980
344                  Fresno Yosemite International       23420
345                   Chicago O'Hare International       16980
346                            Tampa International       45300
347                            Tampa International       45300
348                                 Trenton Mercer       45940
349                           Denver International       19740
350                         McCarran International       29820
351                     Philadelphia International       37980
352                         McCarran International       29820
353                         McCarran International       29820
354                          Orlando International       36740
355                            Tampa International       45300
356                        San Diego International       41740
357                 Luis Munoz Marin International       41980
358                         McCarran International       29820
359                         McCarran International       29820
360                   Newark Liberty International       35620
361                Washington Dulles International       47900
362                   Newark Liberty International       35620
363                   Chicago O'Hare International       16980
364                Washington Dulles International       47900
365                   Chicago O'Hare International       16980
366                   Chicago O'Hare International       16980
367                   Newark Liberty International       35620
368                Cleveland-Hopkins International       17460
369                Charlotte Douglas International       16740
370              Ronald Reagan Washington National       47900
371                   Piedmont Triad International       24660
372                     Indianapolis International       26900
373                Greater Rochester International       40380
374                Washington Dulles International       47900
375                   Newark Liberty International       35620
376                   Chicago O'Hare International       16980
377                            Hilton Head Airport       25940
378                     Indianapolis International       26900
379                Washington Dulles International       47900
380                   Chicago O'Hare International       16980
381                   Chicago O'Hare International       16980
382                   Chicago O'Hare International       16980
383                   Newark Liberty International       35620
384                   Newark Liberty International       35620
385                Washington Dulles International       47900
386                Washington Dulles International       47900
387                   Newark Liberty International       35620
388                   Newark Liberty International       35620
389                   Newark Liberty International       35620
390                   Chicago O'Hare International       16980
391                   Chicago O'Hare International       16980
392                   Newark Liberty International       35620
393                   Newark Liberty International       35620
394                Washington Dulles International       47900
395                   Chicago O'Hare International       16980
396                   Chicago O'Hare International       16980
397                   Chicago O'Hare International       16980
398                   Chicago O'Hare International       16980
399                Charlotte Douglas International       16740
400                            Miami International       33100
401                   Chicago O'Hare International       16980
402                        Nashville International       34980
403     Cincinnati/Northern Kentucky International       17140
404                              Will Rogers World       36420
405                   Chicago O'Hare International       16980
406               Austin - Bergstrom International       12420
407                   Chicago O'Hare International       16980
408                   Chicago O'Hare International       16980
409                   Chicago O'Hare International       16980
410                   Chicago O'Hare International       16980
411                Dallas/Fort Worth International       19100
412                   Chicago O'Hare International       16980
413                Dallas/Fort Worth International       19100
414                Dallas/Fort Worth International       19100
415                Dallas/Fort Worth International       19100
416                   Chicago O'Hare International       16980
417              Ronald Reagan Washington National       47900
418              Ronald Reagan Washington National       47900
419                            Miami International       33100
420                            Miami International       33100
421                            Miami International       33100
422                   Chicago O'Hare International       16980
423                Dallas/Fort Worth International       19100
424                     Detroit Metro Wayne County       19820
425                          Memphis International       32820
426                          Lake Charles Regional       29340
427                              Montrose Regional       33940
428                Dallas/Fort Worth International       19100
429                   Chicago O'Hare International       16980
430                Dallas/Fort Worth International       19100
431                   Chicago O'Hare International       16980
432                   Chicago O'Hare International       16980
433                Dallas/Fort Worth International       19100
434                   Chicago O'Hare International       16980
435                Dallas/Fort Worth International       19100
436                Dallas/Fort Worth International       19100
437                Dallas/Fort Worth International       19100
438                Dallas/Fort Worth International       19100
439                Dallas/Fort Worth International       19100
440                Charlotte Douglas International       16740
441                            Miami International       33100
442                   Chicago O'Hare International       16980
443                   Chicago O'Hare International       16980
444                   Chicago O'Hare International       16980
445                Dallas/Fort Worth International       19100
446                Dallas/Fort Worth International       19100
447                Dallas/Fort Worth International       19100
448                Dallas/Fort Worth International       19100
449                Dallas/Fort Worth International       19100
450                Charlotte Douglas International       16740
451                   Chicago O'Hare International       16980
452                Dallas/Fort Worth International       19100
453                   Chicago O'Hare International       16980
454                       Pittsburgh International       38300
455                Dallas/Fort Worth International       19100
456                   Chicago O'Hare International       16980
457                Dallas/Fort Worth International       19100
458                   Chicago O'Hare International       16980
459                   Chicago O'Hare International       16980
460                Dallas/Fort Worth International       19100
461                   Chicago O'Hare International       16980
462               Austin - Bergstrom International       12420
463     Cincinnati/Northern Kentucky International       17140
464                   Raleigh-Durham International       39580
465                   Chicago O'Hare International       16980
466                   Chicago O'Hare International       16980
467                Dallas/Fort Worth International       19100
468                   Chicago O'Hare International       16980
469                            Miami International       33100
470                            Miami International       33100
471                            Miami International       33100
472                Dallas/Fort Worth International       19100
473                Dallas/Fort Worth International       19100
474                   Chicago O'Hare International       16980
475                Dallas/Fort Worth International       19100
476                Dallas/Fort Worth International       19100
477                            Miami International       33100
478                   Chicago O'Hare International       16980
479                Dallas/Fort Worth International       19100
480                Dallas/Fort Worth International       19100
481                Dallas/Fort Worth International       19100
482                            Miami International       33100
483                     Myrtle Beach International       34820
484                Southwest Florida International       15980
485                   Newark Liberty International       35620
486        Fort Lauderdale-Hollywood International       33100
487           George Bush Intercontinental/Houston       26420
488                         McCarran International       29820
489      Louis Armstrong New Orleans International       35380
490                      Los Angeles International       31080
491                            Tampa International       45300
492        Fort Lauderdale-Hollywood International       33100
493                         McCarran International       29820
494                      Los Angeles International       31080
495                                      LaGuardia       35620
496             Baltimore/Washington International       12580
497        Fort Lauderdale-Hollywood International       33100
498                         McCarran International       29820
499                 Luis Munoz Marin International       41980
500                            Tampa International       45300
501                         McCarran International       29820
502        Fort Lauderdale-Hollywood International       33100
503        Fort Lauderdale-Hollywood International       33100
504                         McCarran International       29820
505      Louis Armstrong New Orleans International       35380
506                            Tampa International       45300
507                            Logan International       14460
508                         McCarran International       29820
509                         McCarran International       29820
510                Southwest Florida International       15980
511                            Tampa International       45300
512                          Orlando International       36740
513                          Orlando International       36740
514                          Orlando International       36740
515           George Bush Intercontinental/Houston       26420
516        Fort Lauderdale-Hollywood International       33100
517                         McCarran International       29820
518      Louis Armstrong New Orleans International       35380
519                   Chicago O'Hare International       16980
520                            Tampa International       45300
521                         McCarran International       29820
522                        Nashville International       34980
523        Fort Lauderdale-Hollywood International       33100
524           George Bush Intercontinental/Houston       26420
525                          Orlando International       36740
526               Austin - Bergstrom International       12420
527                        Nashville International       34980
528                            Logan International       14460
529             Baltimore/Washington International       12580
530                           Denver International       19740
531                   Newark Liberty International       35620
532                     Indianapolis International       26900
533                         McCarran International       29820
534                                      LaGuardia       35620
535                   Newark Liberty International       35620
536                         McCarran International       29820
537        Fort Lauderdale-Hollywood International       33100
538                         McCarran International       29820
539                            Tampa International       45300
540                        Nashville International       34980
541                            Logan International       14460
542                     Detroit Metro Wayne County       19820
543                          Orlando International       36740
544      Louis Armstrong New Orleans International       35380
545                       Pittsburgh International       38300
546                   Seattle/Tacoma International       42660
547        Fort Lauderdale-Hollywood International       33100
548                      Kansas City International       28140
549      Louis Armstrong New Orleans International       35380
550                     Philadelphia International       37980
551          Louisville Muhammad Ali International       31140
552                          Orlando International       36740
553                Southwest Florida International       15980
554                         McCarran International       29820
555                      Los Angeles International       31080
556                        Nashville International       34980
557                               Rafael Hernandez       10380
558                Charlotte Douglas International       16740
559                         McCarran International       29820
560                       Pittsburgh International       38300
561                 Luis Munoz Marin International       41980
562                         McCarran International       29820
563        Fort Lauderdale-Hollywood International       33100
564                         McCarran International       29820
565                         McCarran International       29820
566                         McCarran International       29820
567                          Orlando International       36740
568      Louis Armstrong New Orleans International       35380
569                Southwest Florida International       15980
570                         McCarran International       29820
571                      Los Angeles International       31080
572                          Orlando International       36740
573                   Chicago O'Hare International       16980
574                            Logan International       14460
575                            Tampa International       45300
576        Fort Lauderdale-Hollywood International       33100
577                            Logan International       14460
578             Baltimore/Washington International       12580
579              John Glenn Columbus International       18140
580                         McCarran International       29820
581                Charlotte Douglas International       16740
582                Charlotte Douglas International       16740
583              Ronald Reagan Washington National       47900
584                     Philadelphia International       37980
585              Ronald Reagan Washington National       47900
586                Charlotte Douglas International       16740
587                Charlotte Douglas International       16740
588                Charlotte Douglas International       16740
589                Charlotte Douglas International       16740
590                Charlotte Douglas International       16740
591                Charlotte Douglas International       16740
592              Ronald Reagan Washington National       47900
593              Ronald Reagan Washington National       47900
594              Ronald Reagan Washington National       47900
595                Charlotte Douglas International       16740
596                Charlotte Douglas International       16740
597                Charlotte Douglas International       16740
598                Charlotte Douglas International       16740
599                     Philadelphia International       37980
600                Charlotte Douglas International       16740
601                    Lehigh Valley International       10900
602                        Nashville International       34980
603                             Westchester County       35620
604                Washington Dulles International       47900
605         General Downing - Peoria International       37900
606                Charlotte Douglas International       16740
607                Charlotte Douglas International       16740
608                     Philadelphia International       37980
609                Charlotte Douglas International       16740
610                Charlotte Douglas International       16740
611                Charlotte Douglas International       16740
612                Charlotte Douglas International       16740
613                Charlotte Douglas International       16740
614              Ronald Reagan Washington National       47900
615                Charlotte Douglas International       16740
616       Jackson Medgar Wiley Evers International       27140
617                     Jacksonville International       27260
618      Louis Armstrong New Orleans International       35380
619                     Philadelphia International       37980
620                            Montgomery Regional       33860
621                Charlotte Douglas International       16740
622              Ronald Reagan Washington National       47900
623              Ronald Reagan Washington National       47900
624                Charlotte Douglas International       16740
625                     Philadelphia International       37980
626                     Philadelphia International       37980
627                Charlotte Douglas International       16740
628                Charlotte Douglas International       16740
629                Charlotte Douglas International       16740
630                Charlotte Douglas International       16740
631                Charlotte Douglas International       16740
632                Charlotte Douglas International       16740
633                Charlotte Douglas International       16740
634                Charlotte Douglas International       16740
635                Charlotte Douglas International       16740
636              Ronald Reagan Washington National       47900
637              Ronald Reagan Washington National       47900
638                Charlotte Douglas International       16740
639                Charlotte Douglas International       16740
640                Charlotte Douglas International       16740
641              Ronald Reagan Washington National       47900
642              Ronald Reagan Washington National       47900
643                Charlotte Douglas International       16740
644                Charlotte Douglas International       16740
645                Charlotte Douglas International       16740
646                Charlotte Douglas International       16740
647                Charlotte Douglas International       16740
648                Charlotte Douglas International       16740
649                Charlotte Douglas International       16740
650              Ronald Reagan Washington National       47900
651              Ronald Reagan Washington National       47900
652                     Philadelphia International       37980
653                     Philadelphia International       37980
654                Charlotte Douglas International       16740
655                Charlotte Douglas International       16740
656                Charlotte Douglas International       16740
657                Charlotte Douglas International       16740
658                Charlotte Douglas International       16740
659                Charlotte Douglas International       16740
660                Charlotte Douglas International       16740
661                Charlotte Douglas International       16740
662                Charlotte Douglas International       16740
663                Charlotte Douglas International       16740
664              Ronald Reagan Washington National       47900
665                Charlotte Douglas International       16740
666                Charlotte Douglas International       16740
667              Ronald Reagan Washington National       47900
668                     Philadelphia International       37980
669                        Nashville International       34980
670                   Charleston AFB/International       16700
671              Ronald Reagan Washington National       47900
672                       Wilmington International       48900
673                     Jacksonville International       27260
674              Minneapolis-St Paul International       33460
675                   Raleigh-Durham International       39580
676                Charlotte Douglas International       16740
677                Charlotte Douglas International       16740
678                     Philadelphia International       37980
679                     Philadelphia International       37980
680                     Philadelphia International       37980
681                     Philadelphia International       37980
682                     Philadelphia International       37980
683                Charlotte Douglas International       16740
684                Charlotte Douglas International       16740
685              Ronald Reagan Washington National       47900
686              Ronald Reagan Washington National       47900
687              Ronald Reagan Washington National       47900
688              Ronald Reagan Washington National       47900
689                      Los Angeles International       31080
690                           Denver International       19740
691                   Chicago O'Hare International       16980
692                   Chicago O'Hare International       16980
693                   Chicago O'Hare International       16980
694                      Los Angeles International       31080
695                        San Diego International       41740
696                           Denver International       19740
697                   Chicago O'Hare International       16980
698                   Chicago O'Hare International       16980
699                           Denver International       19740
700                    San Francisco International       41860
701                           Denver International       19740
702                   Chicago O'Hare International       16980
703                           Denver International       19740
704           George Bush Intercontinental/Houston       26420
705                          Spokane International       44060
706                      Los Angeles International       31080
707                         Portland International       38900
708                   Seattle/Tacoma International       42660
709                    San Francisco International       41860
710        Norman Y. Mineta San Jose International       41940
711                   Seattle/Tacoma International       42660
712                   Salt Lake City International       41620
713                           Denver International       19740
714               Phoenix Sky Harbor International       38060
715               Phoenix Sky Harbor International       38060
716                         Portland International       38900
717                    San Francisco International       41860
718                      Los Angeles International       31080
719                   Chicago O'Hare International       16980
720                           Denver International       19740
721                   Chicago O'Hare International       16980
722                Dallas/Fort Worth International       19100
723                           Denver International       19740
724                           Denver International       19740
725                      Los Angeles International       31080
726                           Denver International       19740
727                      Los Angeles International       31080
728               Austin - Bergstrom International       12420
729                             Boise Air Terminal       14260
730              Bozeman Yellowstone International       14580
731                       Des Moines International       19780
732                          Memphis International       32820
733                                Eppley Airfield       36540
734                           Denver International       19740
735                           Denver International       19740
736              Minneapolis-St Paul International       33460
737                           Denver International       19740
738                           Denver International       19740
739                   Chicago O'Hare International       16980
740                    San Francisco International       41860
741                    San Francisco International       41860
742               Phoenix Sky Harbor International       38060
743                         Portland International       38900
744                        San Diego International       41740
745                   Seattle/Tacoma International       42660
746                    San Francisco International       41860
747                    San Francisco International       41860
748              Minneapolis-St Paul International       33460
749                   Salt Lake City International       41620
750                   Chicago O'Hare International       16980
751                   Chicago O'Hare International       16980
752                     Detroit Metro Wayne County       19820
753                             Boise Air Terminal       14260
754                             Boise Air Terminal       14260
755                      Los Angeles International       31080
756                   Seattle/Tacoma International       42660
757                    San Francisco International       41860
758           George Bush Intercontinental/Houston       26420
759           George Bush Intercontinental/Houston       26420
760           George Bush Intercontinental/Houston       26420
761                   Chicago O'Hare International       16980
762                           Denver International       19740
763                     Detroit Metro Wayne County       19820
764              Minneapolis-St Paul International       33460
765                     Detroit Metro Wayne County       19820
766                          El Paso International       21340
767                   Salt Lake City International       41620
768                           Denver International       19740
769                           Denver International       19740
770                   Chicago O'Hare International       16980
771                Washington Dulles International       47900
772                      Los Angeles International       31080
773               Phoenix Sky Harbor International       38060
774                           Tucson International       46060
775                             Boise Air Terminal       14260
776              Bozeman Yellowstone International       14580
777                          Spokane International       44060
778              Charles M. Schulz - Sonoma County       42220
779        Norman Y. Mineta San Jose International       41940
780                Aspen Pitkin County Sardy Field       24060
781           George Bush Intercontinental/Houston       26420
782           George Bush Intercontinental/Houston       26420
783                   Chicago O'Hare International       16980
784                   Chicago O'Hare International       16980
785                Dallas/Fort Worth International       19100
786                   Chicago O'Hare International       16980
787               Phoenix Sky Harbor International       38060
788                    San Francisco International       41860
789                           Denver International       19740
790                           Denver International       19740
791                           Denver International       19740
792                        San Diego International       41740
793              Minneapolis-St Paul International       33460
794                         Appleton International       11540
795                Washington Dulles International       47900
796                           Denver International       19740
797                   Chicago O'Hare International       16980
798                         Portland International       38900
799                Dallas/Fort Worth International       19100
800                      Los Angeles International       31080
801                   Chicago O'Hare International       16980
802                           Denver International       19740
803           George Bush Intercontinental/Houston       26420
804                      Los Angeles International       31080
805                     Detroit Metro Wayne County       19820
806              Minneapolis-St Paul International       33460
807               Phoenix Sky Harbor International       38060
808               Phoenix Sky Harbor International       38060
809                    San Francisco International       41860
810                Cleveland-Hopkins International       17460
811                              Columbia Regional       17860
812                          Wichita Mid-Continent       48620
813           Greenville-Spartanburg International       43900
814                                   McGhee Tyson       28940
815                     Detroit Metro Wayne County       19820
816                                       Bob Hope       31080
817                  Fresno Yosemite International       23420
818           Rogue Valley International - Medford       32780
819             Metropolitan Oakland International       41860
820                        San Diego International       41740
821                    San Francisco International       41860
822                       Sacramento International       40900
823                      Los Angeles International       31080
824                   Seattle/Tacoma International       42660
825                    San Francisco International       41860
826                  Fresno Yosemite International       23420
827                           Denver International       19740
828                     Detroit Metro Wayne County       19820
829                   Chicago O'Hare International       16980
830           George Bush Intercontinental/Houston       26420
831               Phoenix Sky Harbor International       38060
832        Norman Y. Mineta San Jose International       41940
833                   Salt Lake City International       41620
834                     Detroit Metro Wayne County       19820
835                           Denver International       19740
836               Phoenix Sky Harbor International       38060
837                   Seattle/Tacoma International       42660
838                   Salt Lake City International       41620
839                           Denver International       19740
840                           Denver International       19740
841                           Denver International       19740
842                   Seattle/Tacoma International       42660
843               Phoenix Sky Harbor International       38060
844                       Sacramento International       40900
845               Austin - Bergstrom International       12420
846                  Fresno Yosemite International       23420
847                             Monterey Peninsula       41500
848                         Portland International       38900
849        Norman Y. Mineta San Jose International       41940
850              Charles M. Schulz - Sonoma County       42220
851                      Los Angeles International       31080
852                      Los Angeles International       31080
853                      Los Angeles International       31080
854               Phoenix Sky Harbor International       38060
855                    San Francisco International       41860
856                     Detroit Metro Wayne County       19820
857                         Portland International       38900
858              Minneapolis-St Paul International       33460
859                      Los Angeles International       31080
860                             Boise Air Terminal       14260
861                  Fresno Yosemite International       23420
862                          Spokane International       44060
863        Norman Y. Mineta San Jose International       41940
864                     Palm Springs International       40140
865                              Dallas Love Field       19100
866                         Portland International       38900
867               Phoenix Sky Harbor International       38060
868               John Wayne Airport-Orange County       31080
869                             Boise Air Terminal       14260
870                Dallas/Fort Worth International       19100
871                          Spokane International       44060
872               Austin - Bergstrom International       12420
873                          Spokane International       44060
874                      Los Angeles International       31080
875                         Portland International       38900
876                        San Diego International       41740
877                           Denver International       19740
878                Dallas/Fort Worth International       19100
879                        San Diego International       41740
880                             Long Beach Airport       31080
881                           Denver International       19740
882                           Denver International       19740
883                    San Francisco International       41860
884                    San Francisco International       41860
885                    San Francisco International       41860
886                             Boise Air Terminal       14260
887                         Portland International       38900
888                        San Diego International       41740
889                   Seattle/Tacoma International       42660
890                   Seattle/Tacoma International       42660
891                    San Francisco International       41860
892                    San Francisco International       41860
893                   Chicago O'Hare International       16980
894                   Chicago O'Hare International       16980
895               Phoenix Sky Harbor International       38060
896                      Los Angeles International       31080
897                         Portland International       38900
898                        San Diego International       41740
899                   Chicago O'Hare International       16980
900                     Detroit Metro Wayne County       19820
901                      Los Angeles International       31080
902                   Seattle/Tacoma International       42660
903           George Bush Intercontinental/Houston       26420
904                    San Francisco International       41860
905                         Portland International       38900
906                   Seattle/Tacoma International       42660
907                   Seattle/Tacoma International       42660
908                               Snohomish County       42660
909                        Pullman Moscow Regional       39420
910                       Sacramento International       40900
911                   Seattle/Tacoma International       42660
912                   Seattle/Tacoma International       42660
913                   Seattle/Tacoma International       42660
914                   Seattle/Tacoma International       42660
915                   Seattle/Tacoma International       42660
916                   Seattle/Tacoma International       42660
917                   Seattle/Tacoma International       42660
918                               Snohomish County       42660
919                         Portland International       38900
920                         Portland International       38900
921                   Seattle/Tacoma International       42660
922                    San Francisco International       41860
923                   Seattle/Tacoma International       42660
924                   Seattle/Tacoma International       42660
925                   Seattle/Tacoma International       42660
926                    San Francisco International       41860
927                      Los Angeles International       31080
928                         Portland International       38900
929                   Seattle/Tacoma International       42660
930                             Boise Air Terminal       14260
931                          Spokane International       44060
932                         McCarran International       29820
933               John Wayne Airport-Orange County       31080
934                          Spokane International       44060
935        Norman Y. Mineta San Jose International       41940
936                    San Francisco International       41860
937                   Seattle/Tacoma International       42660
938                   Seattle/Tacoma International       42660
939                      Los Angeles International       31080
940                               Snohomish County       42660
941                   Seattle/Tacoma International       42660
942              Bozeman Yellowstone International       14580
943                             Mahlon Sweet Field       21660
944                     Glacier Park International       28060
945                      Great Falls International       24500
946                           Idaho Falls Regional       26820
947           Rogue Valley International - Medford       32780
948                             Monterey Peninsula       41500
949                         Missoula International       33540
950             Metropolitan Oakland International       41860
951                         Portland International       38900
952                        Pullman Moscow Regional       39420
953                              Redding Municipal       39820
954                                  Roberts Field       13460
955                       Reno/Tahoe International       39900
956                       Sacramento International       40900
957                         McCarran International       29820
958                             Boise Air Terminal       14260
959              Charles M. Schulz - Sonoma County       42220
960                   Seattle/Tacoma International       42660
961                   Seattle/Tacoma International       42660
962           George Bush Intercontinental/Houston       26420
963                   Chicago O'Hare International       16980
964                   Chicago O'Hare International       16980
965                           Denver International       19740
966                           Denver International       19740
967                Washington Dulles International       47900
968                   Chicago O'Hare International       16980
969                   Chicago O'Hare International       16980
970                            Logan International       14460
971                           Denver International       19740
972                           Denver International       19740
973                   Newark Liberty International       35620
974           George Bush Intercontinental/Houston       26420
975           George Bush Intercontinental/Houston       26420
976           George Bush Intercontinental/Houston       26420
977           George Bush Intercontinental/Houston       26420
978                           Denver International       19740
979                Washington Dulles International       47900
980                Washington Dulles International       47900
981                Washington Dulles International       47900
982                Washington Dulles International       47900
983                Washington Dulles International       47900
984                Washington Dulles International       47900
985                               Easterwood Field       17780
986                           Denver International       19740
987                           Denver International       19740
988                   Chicago O'Hare International       16980
989                           Denver International       19740
990                           Denver International       19740
991                   Newark Liberty International       35620
992                   Newark Liberty International       35620
993                   Newark Liberty International       35620
994                   Newark Liberty International       35620
995                   Newark Liberty International       35620
996                Washington Dulles International       47900
997           George Bush Intercontinental/Houston       26420
998                      Los Angeles International       31080
999                   Chicago O'Hare International       16980
1000                   San Francisco International       41860
1001                  Newark Liberty International       35620
1002               Washington Dulles International       47900
1003                          Denver International       19740
1004                  Chicago O'Hare International       16980
1005                  Chicago O'Hare International       16980
1006                   San Francisco International       41860
1007                          Denver International       19740
1008                          Denver International       19740
1009                  Chicago O'Hare International       16980
1010                  Chicago O'Hare International       16980
1011                          Denver International       19740
1012                  Newark Liberty International       35620
1013       Fort Lauderdale-Hollywood International       33100
1014               Washington Dulles International       47900
1015                          Denver International       19740
1016                  Chicago O'Hare International       16980
1017                  Chicago O'Hare International       16980
1018                           Logan International       14460
1019                  Newark Liberty International       35620
1020               Washington Dulles International       47900
1021          George Bush Intercontinental/Houston       26420
1022          George Bush Intercontinental/Houston       26420
1023                     Los Angeles International       31080
1024                     Los Angeles International       31080
1025                     Kansas City International       28140
1026                  Chicago O'Hare International       16980
1027                  Chicago O'Hare International       16980
1028                  Chicago O'Hare International       16980
1029                        Portland International       38900
1030              Phoenix Sky Harbor International       38060
1031                     San Antonio International       41700
1032                      Sacramento International       40900
1033                  Newark Liberty International       35620
1034                  Chicago O'Hare International       16980
1035                   San Francisco International       41860
1036               Cleveland-Hopkins International       17460
1037               Cleveland-Hopkins International       17460
1038               Cleveland-Hopkins International       17460
1039                          Denver International       19740
1040                          Denver International       19740
1041               Washington Dulles International       47900
1042          George Bush Intercontinental/Houston       26420
1043          George Bush Intercontinental/Houston       26420
1044                    Jacksonville International       27260
1045                         Orlando International       36740
1046                           Miami International       33100
1047                  Chicago O'Hare International       16980
1048                  Chicago O'Hare International       16980
1049                      Palm Beach International       33100
1050              Phoenix Sky Harbor International       38060
1051                  Raleigh-Durham International       39580
1052               Southwest Florida International       15980
1053                       San Diego International       41740
1054            Savannah/Hilton Head International       42340
1055                   San Francisco International       41860
1056                Luis Munoz Marin International       41980
1057                  Salt Lake City International       41620
1058              Sarasota/Bradenton International       35840
1059                           Tampa International       45300
1060                          Denver International       19740
1061                          Denver International       19740
1062                  Newark Liberty International       35620
1063               Washington Dulles International       47900
1064          George Bush Intercontinental/Houston       26420
1065                   San Francisco International       41860
1066                          Denver International       19740
1067                          Denver International       19740
1068                  Chicago O'Hare International       16980
1069                  Newark Liberty International       35620
1070                  Newark Liberty International       35620
1071                  Newark Liberty International       35620
1072          George Bush Intercontinental/Houston       26420
1073          George Bush Intercontinental/Houston       26420
1074          George Bush Intercontinental/Houston       26420
1075                   San Francisco International       41860
1076                   San Francisco International       41860
1077                   San Francisco International       41860
1078                       Nashville International       34980
1079                           Logan International       14460
1080       Fort Lauderdale-Hollywood International       33100
1081                    Jacksonville International       27260
1082                     Los Angeles International       31080
1083                         Orlando International       36740
1084                      Palm Beach International       33100
1085                  Raleigh-Durham International       39580
1086                   San Francisco International       41860
1087                           Tampa International       45300
1088                          Denver International       19740
1089                    Jacksonville International       27260
1090                     Los Angeles International       31080
1091                                     LaGuardia       35620
1092     Louis Armstrong New Orleans International       35380
1093                  Chicago O'Hare International       16980
1094              Phoenix Sky Harbor International       38060
1095               Southwest Florida International       15980
1096                           Tampa International       45300
1097                          Denver International       19740
1098                          Denver International       19740
1099                          Denver International       19740
1100                  Newark Liberty International       35620
1101               Washington Dulles International       47900
1102               Washington Dulles International       47900
1103          George Bush Intercontinental/Houston       26420
1104                   San Francisco International       41860
1105                          Denver International       19740
1106                          Denver International       19740
1107                  Newark Liberty International       35620
1108                  Newark Liberty International       35620
1109               Washington Dulles International       47900
1110               Washington Dulles International       47900
1111          George Bush Intercontinental/Houston       26420
1112          George Bush Intercontinental/Houston       26420
1113          George Bush Intercontinental/Houston       26420
1114          George Bush Intercontinental/Houston       26420
1115          George Bush Intercontinental/Houston       26420
1116          George Bush Intercontinental/Houston       26420
1117                  Chicago O'Hare International       16980
1118                  Chicago O'Hare International       16980
1119                          Denver International       19740
1120                  Newark Liberty International       35620
1121          George Bush Intercontinental/Houston       26420
1122          George Bush Intercontinental/Houston       26420
1123          George Bush Intercontinental/Houston       26420
1124                        McCarran International       29820
1125                         Orlando International       36740
1126                  Chicago O'Hare International       16980
1127                          Denver International       19740
1128                          Denver International       19740
1129               Washington Dulles International       47900
1130                  Chicago O'Hare International       16980
1131                          Denver International       19740
1132                     Los Angeles International       31080
1133                          Denver International       19740
1134                  Newark Liberty International       35620
1135               Washington Dulles International       47900
1136          George Bush Intercontinental/Houston       26420
1137          George Bush Intercontinental/Houston       26420
1138                  Chicago O'Hare International       16980
1139          George Bush Intercontinental/Houston       26420
1140          George Bush Intercontinental/Houston       26420
1141                          Denver International       19740
1142                          Denver International       19740
1143                          Denver International       19740
1144                          Denver International       19740
1145               Washington Dulles International       47900
1146          George Bush Intercontinental/Houston       26420
1147                          Denver International       19740
1148                          Denver International       19740
1149                          Denver International       19740
1150                          Denver International       19740
1151            Baltimore/Washington International       12580
1152               Cleveland-Hopkins International       17460
1153             Ronald Reagan Washington National       47900
1154                          Denver International       19740
1155                  Newark Liberty International       35620
1156       Fort Lauderdale-Hollywood International       33100
1157                  Gerald R. Ford International       24340
1158               Washington Dulles International       47900
1159          George Bush Intercontinental/Houston       26420
1160                      Pittsburgh International       38300
1161                        Richmond International       40060
1162               Greater Rochester International       40380
1163                       San Diego International       41740
1164                          Denver International       19740
1165                  Chicago O'Hare International       16980
1166                  Newark Liberty International       35620
1167                          Denver International       19740
1168                  Newark Liberty International       35620
1169                   San Francisco International       41860
1170                   San Francisco International       41860
1171               Washington Dulles International       47900
1172                  Chicago O'Hare International       16980
1173                  Chicago O'Hare International       16980
1174                          Denver International       19740
1175                          Denver International       19740
1176                  Chicago O'Hare International       16980
1177                   San Francisco International       41860
1178                  Newark Liberty International       35620
1179          George Bush Intercontinental/Houston       26420
1180          George Bush Intercontinental/Houston       26420
1181                          Denver International       19740
1182                          Denver International       19740
1183               Washington Dulles International       47900
1184                  Chicago O'Hare International       16980
1185                  Chicago O'Hare International       16980
1186                  Chicago O'Hare International       16980
1187              Austin - Bergstrom International       12420
1188             Ronald Reagan Washington National       47900
1189                  Newark Liberty International       35620
1190       Fort Lauderdale-Hollywood International       33100
1191               Washington Dulles International       47900
1192               Washington Dulles International       47900
1193          George Bush Intercontinental/Houston       26420
1194                               Kahului Airport       27980
1195                  Chicago O'Hare International       16980
1196                  Chicago O'Hare International       16980
1197                  Chicago O'Hare International       16980
1198                  Newark Liberty International       35620
1199          George Bush Intercontinental/Houston       26420
1200               Washington Dulles International       47900
1201               Cleveland-Hopkins International       17460
1202               Washington Dulles International       47900
1203          George Bush Intercontinental/Houston       26420
1204          George Bush Intercontinental/Houston       26420
1205                             Dallas Love Field       19100
1206                             Dallas Love Field       19100
1207                        McCarran International       29820
1208              Austin - Bergstrom International       12420
1209                        McCarran International       29820
1210              Phoenix Sky Harbor International       38060
1211            Baltimore/Washington International       12580
1212            Baltimore/Washington International       12580
1213            Baltimore/Washington International       12580
1214            Baltimore/Washington International       12580
1215                         Orlando International       36740
1216                  Chicago Midway International       16980
1217                  Chicago Midway International       16980
1218            Baltimore/Washington International       12580
1219                         Orlando International       36740
1220                        McCarran International       29820
1221                             Dallas Love Field       19100
1222            Baltimore/Washington International       12580
1223                             Dallas Love Field       19100
1224                             Dallas Love Field       19100
1225                             Dallas Love Field       19100
1226                             Dallas Love Field       19100
1227                             Dallas Love Field       19100
1228                               William P Hobby       26420
1229                                     LaGuardia       35620
1230                         Orlando International       36740
1231                  Chicago Midway International       16980
1232                General Mitchell International       33340
1233              Phoenix Sky Harbor International       38060
1234              Phoenix Sky Harbor International       38060
1235              Phoenix Sky Harbor International       38060
1236                St Louis Lambert International       41180
1237              Austin - Bergstrom International       12420
1238                       Nashville International       34980
1239               Cleveland-Hopkins International       17460
1240       Northwest Florida Beaches International       37460
1241       Fort Lauderdale-Hollywood International       33100
1242                               William P Hobby       26420
1243                    Indianapolis International       26900
1244      Jackson Medgar Wiley Evers International       27140
1245                        McCarran International       29820
1246                                   Adams Field       30780
1247                     Kansas City International       28140
1248                         Memphis International       32820
1249                    Myrtle Beach International       34820
1250                    Philadelphia International       37980
1251              Phoenix Sky Harbor International       38060
1252                      Pittsburgh International       38300
1253                        Richmond International       40060
1254               Southwest Florida International       15980
1255                           Tampa International       45300
1256                       Nashville International       34980
1257                             Dallas Love Field       19100
1258                             Dallas Love Field       19100
1259                             Dallas Love Field       19100
1260                         El Paso International       21340
1261                               William P Hobby       26420
1262                               William P Hobby       26420
1263                            Long Beach Airport       31080
1264                  Chicago Midway International       16980
1265              Phoenix Sky Harbor International       38060
1266              Phoenix Sky Harbor International       38060
1267              Phoenix Sky Harbor International       38060
1268                       San Diego International       41740
1269                                      Bob Hope       31080
1270            Baltimore/Washington International       12580
1271                             Dallas Love Field       19100
1272             Ronald Reagan Washington National       47900
1273                               William P Hobby       26420
1274                          Valley International       15180
1275                     Los Angeles International       31080
1276                            Long Beach Airport       31080
1277                     Kansas City International       28140
1278                  Chicago Midway International       16980
1279             Minneapolis-St Paul International       33460
1280     Louis Armstrong New Orleans International       35380
1281            Metropolitan Oakland International       41860
1282                  Raleigh-Durham International       39580
1283              John Wayne Airport-Orange County       31080
1284                St Louis Lambert International       41180
1285                           Tampa International       45300
1286                  Chicago Midway International       16980
1287                  Chicago Midway International       16980
1288            Baltimore/Washington International       12580
1289                         Orlando International       36740
1290            Baltimore/Washington International       12580
1291                             Dallas Love Field       19100
1292                               William P Hobby       26420
1293                         Orlando International       36740
1294                  Chicago Midway International       16980
1295                           Tampa International       45300
1296                        McCarran International       29820
1297              Austin - Bergstrom International       12420
1298                         Bradley International       25540
1299                             Dallas Love Field       19100
1300                          Denver International       19740
1301                               William P Hobby       26420
1302                         Long Island MacArthur       35620
1303                     Kansas City International       28140
1304                         Orlando International       36740
1305                         Norfolk International       47260
1306              Phoenix Sky Harbor International       38060
1307               Southwest Florida International       15980
1308       Norman Y. Mineta San Jose International       41940
1309              Sarasota/Bradenton International       35840
1310                           Tampa International       45300
1311                           Logan International       14460
1312            Baltimore/Washington International       12580
1313                  Charleston AFB/International       16700
1314               Cleveland-Hopkins International       17460
1315               Charlotte Douglas International       16740
1316             John Glenn Columbus International       18140
1317                    Detroit Metro Wayne County       19820
1318       Northwest Florida Beaches International       37460
1319                    Jacksonville International       27260
1320                  Chicago Midway International       16980
1321                           Miami International       33100
1322                General Mitchell International       33340
1323     Louis Armstrong New Orleans International       35380
1324                    Myrtle Beach International       34820
1325            Metropolitan Oakland International       41860
1326            Metropolitan Oakland International       41860
1327                    Philadelphia International       37980
1328                      Pittsburgh International       38300
1329                 Pensacola Gulf Coast Regional       37860
1330                  Raleigh-Durham International       39580
1331            Savannah/Hilton Head International       42340
1332            Eglin AFB Destin Fort Walton Beach       18880
1333                          Denver International       19740
1334                          Denver International       19740
1335                        McCarran International       29820
1336            Metropolitan Oakland International       41860
1337              Phoenix Sky Harbor International       38060
1338                       San Diego International       41740
1339                        McCarran International       29820
1340                       Nashville International       34980
1341                       Nashville International       34980
1342            Baltimore/Washington International       12580
1343            Baltimore/Washington International       12580
1344            Baltimore/Washington International       12580
1345            Baltimore/Washington International       12580
1346            Baltimore/Washington International       12580
1347            Baltimore/Washington International       12580
1348                  Chicago Midway International       16980
1349                  Chicago Midway International       16980
1350                  Chicago Midway International       16980
1351                  Chicago Midway International       16980
1352                  Chicago Midway International       16980
1353                  Chicago Midway International       16980
1354            Baltimore/Washington International       12580
1355       Fort Lauderdale-Hollywood International       33100
1356                         Orlando International       36740
1357                  Chicago Midway International       16980
1358                             Dallas Love Field       19100
1359                             Dallas Love Field       19100
1360                             Dallas Love Field       19100
1361                             Dallas Love Field       19100
1362                        McCarran International       29820
1363                      Sacramento International       40900
1364              Austin - Bergstrom International       12420
1365                          Denver International       19740
1366                               William P Hobby       26420
1367            Metropolitan Oakland International       41860
1368       Norman Y. Mineta San Jose International       41940
1369        Birmingham-Shuttlesworth International       13820
1370                       Nashville International       34980
1371                       Nashville International       34980
1372    Cincinnati/Northern Kentucky International       17140
1373                  Gerald R. Ford International       24340
1374                    Indianapolis International       26900
1375                  Chicago Midway International       16980
1376            Savannah/Hilton Head International       42340
1377            Eglin AFB Destin Fort Walton Beach       18880
1378                         Bradley International       25540
1379                 Buffalo Niagara International       15380
1380                  Charleston AFB/International       16700
1381               Cleveland-Hopkins International       17460
1382       Fort Lauderdale-Hollywood International       33100
1383          Greenville-Spartanburg International       43900
1384                               William P Hobby       26420
1385                         Long Island MacArthur       35620
1386                        McCarran International       29820
1387                                     LaGuardia       35620
1388                  Chicago Midway International       16980
1389                           Miami International       33100
1390                    Myrtle Beach International       34820
1391                         Norfolk International       47260
1392              Phoenix Sky Harbor International       38060
1393                      Pittsburgh International       38300
1394                  Theodore Francis Green State       39300
1395                Portland International Jetport       38860
1396                  Raleigh-Durham International       39580
1397               Greater Rochester International       40380
1398               Southwest Florida International       15980
1399         Louisville Muhammad Ali International       31140
1400                          Denver International       19740
1401                        McCarran International       29820
1402                       Nashville International       34980
1403                       Nashville International       34980
1404                       Nashville International       34980
1405                             Dallas Love Field       19100
1406                  Chicago Midway International       16980
1407                St Louis Lambert International       41180
1408                       Nashville International       34980
1409                       Nashville International       34980
1410            Baltimore/Washington International       12580
1411                        McCarran International       29820
1412                  Chicago Midway International       16980
1413                St Louis Lambert International       41180
1414                       Nashville International       34980
1415                  Chicago Midway International       16980
1416                  Chicago Midway International       16980
1417              Sarasota/Bradenton International       35840
1418                St Louis Lambert International       41180
1419                       Nashville International       34980
1420            Baltimore/Washington International       12580
1421             Ronald Reagan Washington National       47900
1422                        McCarran International       29820
1423              Phoenix Sky Harbor International       38060
1424                St Louis Lambert International       41180
1425                           Tampa International       45300
1426                        McCarran International       29820
1427                        McCarran International       29820
1428              Phoenix Sky Harbor International       38060
1429                               William P Hobby       26420
1430                               William P Hobby       26420
1431                          Denver International       19740
1432                  Chicago Midway International       16980
1433            Baltimore/Washington International       12580
1434                         Orlando International       36740
1435                  Chicago Midway International       16980
1436                  Chicago Midway International       16980
1437                           Tampa International       45300
1438             Albuquerque International Sunport       10740
1439              Austin - Bergstrom International       12420
1440        Birmingham-Shuttlesworth International       13820
1441                          Denver International       19740
1442                          Denver International       19740
1443                         El Paso International       21340
1444                               William P Hobby       26420
1445                                     LaGuardia       35620
1446                            Long Beach Airport       31080
1447                         Orlando International       36740
1448            Metropolitan Oakland International       41860
1449                               Eppley Airfield       36540
1450       Norman Y. Mineta San Jose International       41940
1451                  Salt Lake City International       41620
1452              John Wayne Airport-Orange County       31080
1453                St Louis Lambert International       41180
1454                           Tampa International       45300
1455           Rick Husband Amarillo International       11100
1456              Austin - Bergstrom International       12420
1457             John Glenn Columbus International       18140
1458            City of Colorado Springs Municipal       17820
1459             Ronald Reagan Washington National       47900
1460       Northwest Florida Beaches International       37460
1461       Fort Lauderdale-Hollywood International       33100
1462          George Bush Intercontinental/Houston       26420
1463           Lubbock Preston Smith International       31180
1464                                   Adams Field       30780
1465      Midland International Air and Space Port       33260
1466                     Kansas City International       28140
1467                  Chicago Midway International       16980
1468             Minneapolis-St Paul International       33460
1469     Louis Armstrong New Orleans International       35380
1470                  Chicago O'Hare International       16980
1471              Phoenix Sky Harbor International       38060
1472                 Pensacola Gulf Coast Regional       37860
1473                     San Antonio International       41700
1474                           Tulsa International       46140
1475            Eglin AFB Destin Fort Walton Beach       18880
1476                       Nashville International       34980
1477                       Nashville International       34980
1478                       Nashville International       34980
1479       Fort Lauderdale-Hollywood International       33100
1480                  Chicago Midway International       16980
1481                St Louis Lambert International       41180
1482                St Louis Lambert International       41180
1483             John Glenn Columbus International       18140
1484                             Dallas Love Field       19100
1485                         Orlando International       36740
1486                General Mitchell International       33340
1487                               Eppley Airfield       36540
1488               Southwest Florida International       15980
1489                St Louis Lambert International       41180
1490                           Tampa International       45300
1491        Birmingham-Shuttlesworth International       13820
1492                       Nashville International       34980
1493                                      Bob Hope       31080
1494            Baltimore/Washington International       12580
1495    Cincinnati/Northern Kentucky International       17140
1496                             Dallas Love Field       19100
1497                             Dallas Love Field       19100
1498                         El Paso International       21340
1499                         Spokane International       44060
1500                               William P Hobby       26420
1501                    Indianapolis International       26900
1502                        McCarran International       29820
1503                                     LaGuardia       35620
1504                  Chicago Midway International       16980
1505                  Chicago Midway International       16980
1506                General Mitchell International       33340
1507                       Santa Barbara Municipal       42200
1508              John Wayne Airport-Orange County       31080
1509                St Louis Lambert International       41180
1510                           Tulsa International       46140
1511                          Tucson International       46060
1512             Albuquerque International Sunport       10740
1513                 Buffalo Niagara International       15380
1514                  Charleston AFB/International       16700
1515                                  Yampa Valley       44460
1516                               William P Hobby       26420
1517                         Wichita Mid-Continent       48620
1518                        McCarran International       29820
1519                            Long Beach Airport       31080
1520                                   Adams Field       30780
1521                           Miami International       33100
1522     Louis Armstrong New Orleans International       35380
1523            Metropolitan Oakland International       41860
1524                             Will Rogers World       36420
1525                      Reno/Tahoe International       39900
1526                       San Diego International       41740
1527                           Tampa International       45300
1528                St Louis Lambert International       41180
1529                       Nashville International       34980
1530                  Chicago Midway International       16980
1531                  Chicago Midway International       16980
1532                       Nashville International       34980
1533            Baltimore/Washington International       12580
1534                St Louis Lambert International       41180
1535                               William P Hobby       26420
1536                St Louis Lambert International       41180
1537              Austin - Bergstrom International       12420
1538                          Denver International       19740
1539                               William P Hobby       26420
1540                        McCarran International       29820
1541                     Los Angeles International       31080
1542              Phoenix Sky Harbor International       38060
1543              Austin - Bergstrom International       12420
1544                               William P Hobby       26420
1545                               William P Hobby       26420
1546              Phoenix Sky Harbor International       38060
1547                     San Antonio International       41700
1548            Metropolitan Oakland International       41860
1549                        McCarran International       29820
1550            Metropolitan Oakland International       41860
1551                        McCarran International       29820
1552            Baltimore/Washington International       12580
1553                               William P Hobby       26420
1554                               William P Hobby       26420
1555                               William P Hobby       26420
1556                         Orlando International       36740
1557     Louis Armstrong New Orleans International       35380
1558                  Raleigh-Durham International       39580
1559            Baltimore/Washington International       12580
1560                             Dallas Love Field       19100
1561             Ronald Reagan Washington National       47900
1562                  Chicago Midway International       16980
1563              Phoenix Sky Harbor International       38060
1564              Phoenix Sky Harbor International       38060
1565                      Pittsburgh International       38300
1566                     San Antonio International       41700
1567                           Tampa International       45300
1568                          Denver International       19740
1569                          Denver International       19740
1570                        McCarran International       29820
1571                  Chicago Midway International       16980
1572              Phoenix Sky Harbor International       38060
1573                      Sacramento International       40900
1574                        McCarran International       29820
1575            Metropolitan Oakland International       41860
1576            Baltimore/Washington International       12580
1577                               William P Hobby       26420
1578                                 Lihue Airport       28180
1579            Metropolitan Oakland International       41860
1580            Metropolitan Oakland International       41860
1581              Phoenix Sky Harbor International       38060
1582      Hartsfield-Jackson Atlanta International       12060
1583                       Nashville International       34980
1584            Baltimore/Washington International       12580
1585                             Dallas Love Field       19100
1586                          Denver International       19740
1587                         El Paso International       21340
1588          Greenville-Spartanburg International       43900
1589                           Miami International       33100
1590             Minneapolis-St Paul International       33460
1591     Louis Armstrong New Orleans International       35380
1592              Phoenix Sky Harbor International       38060
1593                St Louis Lambert International       41180
1594                St Louis Lambert International       41180
1595              Austin - Bergstrom International       12420
1596                                      Bob Hope       31080
1597       Northwest Florida Beaches International       37460
1598       Fort Lauderdale-Hollywood International       33100
1599                          Valley International       15180
1600                        McCarran International       29820
1601                     Los Angeles International       31080
1602           Lubbock Preston Smith International       31180
1603                                     LaGuardia       35620
1604                            Long Beach Airport       31080
1605      Midland International Air and Space Port       33260
1606                         Orlando International       36740
1607                         Memphis International       32820
1608            Metropolitan Oakland International       41860
1609                             Will Rogers World       36420
1610                         Ontario International       40140
1611                    Philadelphia International       37980
1612                 Pensacola Gulf Coast Regional       37860
1613               Southwest Florida International       15980
1614                     San Antonio International       41700
1615                     San Antonio International       41700
1616            Savannah/Hilton Head International       42340
1617       Norman Y. Mineta San Jose International       41940
1618                           Tampa International       45300
1619                           Tulsa International       46140
1620                               William P Hobby       26420
1621                               William P Hobby       26420
1622                  Chicago Midway International       16980
1623                  Chicago Midway International       16980
1624                             Dallas Love Field       19100
1625                             Dallas Love Field       19100
1626                  Chicago Midway International       16980
1627                             Dallas Love Field       19100
1628                             Dallas Love Field       19100
1629                  Chicago Midway International       16980
1630                          Denver International       19740
1631                St Louis Lambert International       41180
1632            Baltimore/Washington International       12580
1633                             Dallas Love Field       19100
1634                               William P Hobby       26420
1635                         Orlando International       36740
1636               Southwest Florida International       15980
1637              Sarasota/Bradenton International       35840
1638                       Nashville International       34980
1639            Baltimore/Washington International       12580
1640            Baltimore/Washington International       12580
1641            Baltimore/Washington International       12580
1642                St Louis Lambert International       41180
1643                       Nashville International       34980
1644                  Chicago Midway International       16980
1645              Phoenix Sky Harbor International       38060
1646              Phoenix Sky Harbor International       38060
1647              Phoenix Sky Harbor International       38060
1648             Albuquerque International Sunport       10740
1649           Rick Husband Amarillo International       11100
1650              Austin - Bergstrom International       12420
1651              Austin - Bergstrom International       12420
1652                             Dallas Love Field       19100
1653                         Spokane International       44060
1654                  Chicago Midway International       16980
1655                General Mitchell International       33340
1656            Metropolitan Oakland International       41860
1657                        Portland International       38900
1658                     San Antonio International       41700
1659                  Salt Lake City International       41620
1660                      Sacramento International       40900
1661              John Wayne Airport-Orange County       31080
1662                St Louis Lambert International       41180
1663                            Boise Air Terminal       14260
1664                                      Bob Hope       31080
1665            Baltimore/Washington International       12580
1666             Bozeman Yellowstone International       14580
1667            City of Colorado Springs Municipal       17820
1668                            Mahlon Sweet Field       21660
1669                            Long Beach Airport       31080
1670                General Mitchell International       33340
1671                         Ontario International       40140
1672                    Palm Springs International       40140
1673                      Reno/Tahoe International       39900
1674                       San Diego International       41740
1675                       Santa Barbara Municipal       42200
1676       Norman Y. Mineta San Jose International       41940
1677                           Tulsa International       46140
1678                          Tucson International       46060
1679             Albuquerque International Sunport       10740
1680                         El Paso International       21340
1681                 Daniel K Inouye International       46520
1682                  Chicago Midway International       16980
1683     Louis Armstrong New Orleans International       35380
1684     Louis Armstrong New Orleans International       35380
1685              Phoenix Sky Harbor International       38060
1686              Phoenix Sky Harbor International       38060
1687              Austin - Bergstrom International       12420
1688              Austin - Bergstrom International       12420
1689                               William P Hobby       26420
1690                      Reno/Tahoe International       39900
1691                      Sacramento International       40900
1692                      Sacramento International       40900
1693              Austin - Bergstrom International       12420
1694                             Dallas Love Field       19100
1695            Baltimore/Washington International       12580
1696            Baltimore/Washington International       12580
1697                               William P Hobby       26420
1698                St Louis Lambert International       41180
1699                St Louis Lambert International       41180
1700                  Chicago Midway International       16980
1701     Louis Armstrong New Orleans International       35380
1702                          Denver International       19740
1703                        McCarran International       29820
1704            Metropolitan Oakland International       41860
1705                      Sacramento International       40900
1706                St Louis Lambert International       41180
1707                 Daniel K Inouye International       46520
1708                               William P Hobby       26420
1709                               William P Hobby       26420
1710                        McCarran International       29820
1711                  Chicago Midway International       16980
1712                               Kahului Airport       27980
1713                      Reno/Tahoe International       39900
1714                      Sacramento International       40900
1715                             Dallas Love Field       19100
1716                             Dallas Love Field       19100
1717                               William P Hobby       26420
1718              Austin - Bergstrom International       12420
1719                             Dallas Love Field       19100
1720                  Chicago Midway International       16980
1721                  Chicago Midway International       16980
1722            Baltimore/Washington International       12580
1723       Fort Lauderdale-Hollywood International       33100
1724                                     LaGuardia       35620
1725                         Orlando International       36740
1726     Louis Armstrong New Orleans International       35380
1727               Southwest Florida International       15980
1728            Baltimore/Washington International       12580
1729                             Dallas Love Field       19100
1730                             Dallas Love Field       19100
1731                             Dallas Love Field       19100
1732                          Denver International       19740
1733                               William P Hobby       26420
1734                     Kansas City International       28140
1735                St Louis Lambert International       41180
1736                St Louis Lambert International       41180
1737                St Louis Lambert International       41180
1738                          Albany International       10580
1739                         Bradley International       25540
1740        Birmingham-Shuttlesworth International       13820
1741                 Buffalo Niagara International       15380
1742    Cincinnati/Northern Kentucky International       17140
1743       Fort Lauderdale-Hollywood International       33100
1744                    Indianapolis International       26900
1745                         Memphis International       32820
1746     Louis Armstrong New Orleans International       35380
1747                         Norfolk International       47260
1748              Phoenix Sky Harbor International       38060
1749         Louisville Muhammad Ali International       31140
1750                St Louis Lambert International       41180
1751              Austin - Bergstrom International       12420
1752        Birmingham-Shuttlesworth International       13820
1753                       Nashville International       34980
1754            Baltimore/Washington International       12580
1755                  Charleston AFB/International       16700
1756             John Glenn Columbus International       18140
1757                             Dallas Love Field       19100
1758             Ronald Reagan Washington National       47900
1759                          Denver International       19740
1760       Fort Lauderdale-Hollywood International       33100
1761                  Gerald R. Ford International       24340
1762               Washington Dulles International       47900
1763                    Jacksonville International       27260
1764                                     LaGuardia       35620
1765                     Kansas City International       28140
1766                         Orlando International       36740
1767             Minneapolis-St Paul International       33460
1768     Louis Armstrong New Orleans International       35380
1769                               Eppley Airfield       36540
1770                         Norfolk International       47260
1771              Phoenix Sky Harbor International       38060
1772                  Theodore Francis Green State       39300
1773                        Richmond International       40060
1774                       San Diego International       41740
1775         Louisville Muhammad Ali International       31140
1776                  Seattle/Tacoma International       42660
1777                   San Francisco International       41860
1778                           Tampa International       45300
1779                           Logan International       14460
1780                 Buffalo Niagara International       15380
1781               Cleveland-Hopkins International       17460
1782               Cleveland-Hopkins International       17460
1783    Cincinnati/Northern Kentucky International       17140
1784                               William P Hobby       26420
1785          George Bush Intercontinental/Houston       26420
1786                     Los Angeles International       31080
1787                         Memphis International       32820
1788                           Miami International       33100
1789                    Myrtle Beach International       34820
1790            Metropolitan Oakland International       41860
1791                             Will Rogers World       36420
1792                    Philadelphia International       37980
1793                      Pittsburgh International       38300
1794                  Raleigh-Durham International       39580
1795               Southwest Florida International       15980
1796                      Sacramento International       40900
1797              John Wayne Airport-Orange County       31080
1798              Sarasota/Bradenton International       35840
1799                St Louis Lambert International       41180
1800                          Tucson International       46060
1801                         Orlando International       36740
1802                  Chicago Midway International       16980
1803                             Dallas Love Field       19100
1804                          Denver International       19740
1805                               William P Hobby       26420
1806            Baltimore/Washington International       12580
1807                St Louis Lambert International       41180
1808                  Chicago Midway International       16980
1809     Louis Armstrong New Orleans International       35380
1810                St Louis Lambert International       41180
1811            Baltimore/Washington International       12580
1812             Ronald Reagan Washington National       47900
1813              Phoenix Sky Harbor International       38060
1814               Southwest Florida International       15980
1815                St Louis Lambert International       41180
1816                               William P Hobby       26420
1817                St Louis Lambert International       41180
1818                               William P Hobby       26420
1819                               William P Hobby       26420
1820                     Kansas City International       28140
1821                       Nashville International       34980
1822            Baltimore/Washington International       12580
1823       Fort Lauderdale-Hollywood International       33100
1824                     Los Angeles International       31080
1825                                     LaGuardia       35620
1826                         Orlando International       36740
1827                         Orlando International       36740
1828                           Miami International       33100
1829                     San Antonio International       41700
1830                           Tampa International       45300
1831                             Dallas Love Field       19100
1832            Baltimore/Washington International       12580
1833                  Chicago Midway International       16980
1834              Austin - Bergstrom International       12420
1835                      Bellingham International       13380
1836                                      Bob Hope       31080
1837                 Daniel K Inouye International       46520
1838                                 Lihue Airport       28180
1839                         Ontario International       40140
1840              Phoenix Sky Harbor International       38060
1841                    Palm Springs International       40140
1842                       San Diego International       41740
1843                            Boise Air Terminal       14260
1844                                      Bob Hope       31080
1845                            Mahlon Sweet Field       21660
1846                         Spokane International       44060
1847         Kona International Airport at Keahole       25900
1848                       Santa Barbara Municipal       42200
1849              John Wayne Airport-Orange County       31080
1850                 Daniel K Inouye International       46520
1851              Austin - Bergstrom International       12420
1852                               William P Hobby       26420
1853                  Chicago Midway International       16980
1854              Phoenix Sky Harbor International       38060
1855                St Louis Lambert International       41180
1856                        McCarran International       29820
1857                  Chicago Midway International       16980
1858                St Louis Lambert International       41180
1859                               William P Hobby       26420
1860            Metropolitan Oakland International       41860
1861       Norman Y. Mineta San Jose International       41940
1862                       Nashville International       34980
1863              Phoenix Sky Harbor International       38060
1864                       Nashville International       34980
1865                             Dallas Love Field       19100
1866                       Nashville International       34980
1867                  Chicago Midway International       16980
1868            Baltimore/Washington International       12580
1869                         Orlando International       36740
1870                  Chicago Midway International       16980
1871              Phoenix Sky Harbor International       38060
1872              Phoenix Sky Harbor International       38060
1873              Phoenix Sky Harbor International       38060
1874       Norman Y. Mineta San Jose International       41940
1875                  Chicago Midway International       16980
1876                          Denver International       19740
1877              Austin - Bergstrom International       12420
1878                         Spokane International       44060
1879                               William P Hobby       26420
1880            Metropolitan Oakland International       41860
1881                             Will Rogers World       36420
1882                        Portland International       38900
1883                      Reno/Tahoe International       39900
1884                     San Antonio International       41700
1885       Norman Y. Mineta San Jose International       41940
1886                  Salt Lake City International       41620
1887                      Sacramento International       40900
1888             Albuquerque International Sunport       10740
1889              Austin - Bergstrom International       12420
1890                                      Bob Hope       31080
1891             John Glenn Columbus International       18140
1892            City of Colorado Springs Municipal       17820
1893                         El Paso International       21340
1894       Fort Lauderdale-Hollywood International       33100
1895                            Long Beach Airport       31080
1896                                 Lihue Airport       28180
1897                General Mitchell International       33340
1898                               Eppley Airfield       36540
1899                         Ontario International       40140
1900                    Palm Springs International       40140
1901              John Wayne Airport-Orange County       31080
1902                           Tampa International       45300
1903              Phoenix Sky Harbor International       38060
1904               Southwest Florida International       15980
1905              Sarasota/Bradenton International       35840
1906                       Nashville International       34980
1907            Baltimore/Washington International       12580
1908       Fort Lauderdale-Hollywood International       33100
1909                       Nashville International       34980
1910                             Dallas Love Field       19100
1911                               William P Hobby       26420
1912                      Sacramento International       40900
1913                        McCarran International       29820
1914                  Chicago Midway International       16980
1915                St Louis Lambert International       41180
1916            Baltimore/Washington International       12580
1917            Baltimore/Washington International       12580
1918                         Orlando International       36740
1919                           Tampa International       45300
1920                  Chicago Midway International       16980
1921                                      Bob Hope       31080
1922                            Long Beach Airport       31080
1923                       San Diego International       41740
1924       Norman Y. Mineta San Jose International       41940
1925                         Orlando International       36740
1926                           Tampa International       45300
1927                  Chicago Midway International       16980
1928                General Mitchell International       33340
1929             Ronald Reagan Washington National       47900
1930                     Kansas City International       28140
1931                  Chicago Midway International       16980
1932         Louisville Muhammad Ali International       31140
1933                            Boise Air Terminal       14260
1934                             Dallas Love Field       19100
1935                               William P Hobby       26420
1936       Norman Y. Mineta San Jose International       41940
1937                 Daniel K Inouye International       46520
1938                               Kahului Airport       27980
1939                          Tucson International       46060
1940                             Dallas Love Field       19100
1941                               William P Hobby       26420
1942                       Nashville International       34980
1943                             Dallas Love Field       19100
1944                         El Paso International       21340
1945                     Los Angeles International       31080
1946                        McCarran International       29820
1947            Metropolitan Oakland International       41860
1948                         Orlando International       36740
1949                  Chicago Midway International       16980
1950            Baltimore/Washington International       12580
1951               Southwest Florida International       15980
1952                           Tampa International       45300
1953            Metropolitan Oakland International       41860
1954       Norman Y. Mineta San Jose International       41940
1955              Phoenix Sky Harbor International       38060
1956                                      Bob Hope       31080
1957                       San Diego International       41740
1958                             Dallas Love Field       19100
1959                        McCarran International       29820
1960                               Kahului Airport       27980
1961                               Kahului Airport       27980
1962                 Daniel K Inouye International       46520
1963         Kona International Airport at Keahole       25900
1964                            Long Beach Airport       31080
1965                         Ontario International       40140
1966                      Reno/Tahoe International       39900
1967              John Wayne Airport-Orange County       31080
1968                         Orlando International       36740
1969                             Dallas Love Field       19100
1970                                      Bob Hope       31080
1971                         Orlando International       36740
1972                      Sacramento International       40900
1973                         Spokane International       44060
1974                       San Diego International       41740
1975                  Seattle/Tacoma International       42660
1976                                      Bob Hope       31080
1977                 Daniel K Inouye International       46520
1978                            Long Beach Airport       31080
1979                         Ontario International       40140
1980                    Palm Springs International       40140
1981              John Wayne Airport-Orange County       31080
1982                             Dallas Love Field       19100
1983              Phoenix Sky Harbor International       38060
1984              Austin - Bergstrom International       12420
1985             John Glenn Columbus International       18140
1986              Austin - Bergstrom International       12420
1987                    Indianapolis International       26900
1988                                     LaGuardia       35620
1989            Baltimore/Washington International       12580
1990                             Dallas Love Field       19100
1991       Fort Lauderdale-Hollywood International       33100
1992                               William P Hobby       26420
1993                    Jacksonville International       27260
1994                                     LaGuardia       35620
1995                            Long Beach Airport       31080
1996                  Chicago Midway International       16980
1997     Louis Armstrong New Orleans International       35380
1998                  Seattle/Tacoma International       42660
1999              Austin - Bergstrom International       12420
2000                       Nashville International       34980
2001                       Nashville International       34980
2002             John Glenn Columbus International       18140
2003                      Des Moines International       19780
2004       Northwest Florida Beaches International       37460
2005                         Wichita Mid-Continent       48620
2006                     Los Angeles International       31080
2007                                   Adams Field       30780
2008                     Kansas City International       28140
2009                         Orlando International       36740
2010                           Miami International       33100
2011                General Mitchell International       33340
2012                             Will Rogers World       36420
2013                               Eppley Airfield       36540
2014              Phoenix Sky Harbor International       38060
2015                 Pensacola Gulf Coast Regional       37860
2016              Sarasota/Bradenton International       35840
2017                       Nashville International       34980
2018            Baltimore/Washington International       12580
2019             John Glenn Columbus International       18140
2020             Ronald Reagan Washington National       47900
2021                  Chicago O'Hare International       16980
2022                  Raleigh-Durham International       39580
2023         Louisville Muhammad Ali International       31140
2024                         Bradley International       25540
2025        Birmingham-Shuttlesworth International       13820
2026                 Buffalo Niagara International       15380
2027    Cincinnati/Northern Kentucky International       17140
2028       Fort Lauderdale-Hollywood International       33100
2029                       San Diego International       41740
2030                        McCarran International       29820
2031                       Nashville International       34980
2032                             Dallas Love Field       19100
2033          George Bush Intercontinental/Houston       26420
2034              Phoenix Sky Harbor International       38060
2035               Washington Dulles International       47900
2036                St Louis Lambert International       41180
2037               Dallas/Fort Worth International       19100
2038              Phoenix Sky Harbor International       38060
2039               Dallas/Fort Worth International       19100
2040               Dallas/Fort Worth International       19100
2041               Dallas/Fort Worth International       19100
2042                                     LaGuardia       35620
2043                      Pittsburgh International       38300
2044            Savannah/Hilton Head International       42340
2045                           Tulsa International       46140
2046               Dallas/Fort Worth International       19100
2047              Phoenix Sky Harbor International       38060
2048                                 Meadows Field       12540
2049                            Mahlon Sweet Field       21660
2050               Dallas/Fort Worth International       19100
2051               Dallas/Fort Worth International       19100
2052          George Bush Intercontinental/Houston       26420
2053          George Bush Intercontinental/Houston       26420
2054          George Bush Intercontinental/Houston       26420
2055             Ronald Reagan Washington National       47900
2056             Ronald Reagan Washington National       47900
2057                    Philadelphia International       37980
2058                 John F. Kennedy International       35620
2059                    Indianapolis International       26900
2060                                     LaGuardia       35620
2061             John Glenn Columbus International       18140
2062                 John F. Kennedy International       35620
2063                 John F. Kennedy International       35620
2064                                     LaGuardia       35620
2065                                     LaGuardia       35620
2066                                     LaGuardia       35620
2067                                     LaGuardia       35620
2068                                     LaGuardia       35620
2069                      Pittsburgh International       38300
2070                  Raleigh-Durham International       39580
2071                 John F. Kennedy International       35620
2072                  Newark Liberty International       35620
2073                  Newark Liberty International       35620
2074               Charlotte Douglas International       16740
2075                                     LaGuardia       35620
2076                 John F. Kennedy International       35620
2077                 John F. Kennedy International       35620
2078                                     LaGuardia       35620
2079                                     LaGuardia       35620
2080                                     LaGuardia       35620
2081                           Logan International       14460
2082                    Philadelphia International       37980
2083                 John F. Kennedy International       35620
2084               Charlotte Douglas International       16740
2085                 John F. Kennedy International       35620
2086                  Raleigh-Durham International       39580
2087         Louisville Muhammad Ali International       31140
2088                           Logan International       14460
2089                                     LaGuardia       35620
2090                  Charleston AFB/International       16700
2091                    Detroit Metro Wayne County       19820
2092                        Key West International       28580
2093                General Mitchell International       33340
2094     Louis Armstrong New Orleans International       35380
2095                Portland International Jetport       38860
2096               Charlotte Douglas International       16740
2097                                     LaGuardia       35620
2098     Louis Armstrong New Orleans International       35380
2099              Sarasota/Bradenton International       35840
2100                                     LaGuardia       35620
2101                           Logan International       14460
2102               Charlotte Douglas International       16740
2103               Washington Dulles International       47900
2104                  Newark Liberty International       35620
2105                       Nashville International       34980
2106            Baltimore/Washington International       12580
2107            Baltimore/Washington International       12580
2108             Ronald Reagan Washington National       47900
2109                         Norfolk International       47260
2110                    Philadelphia International       37980
2111                    Philadelphia International       37980
2112                      Pittsburgh International       38300
2113               Cleveland-Hopkins International       17460
2114             John Glenn Columbus International       18140
2115                    Indianapolis International       26900
2116                    Indianapolis International       26900
2117                        Richmond International       40060
2118    Cincinnati/Northern Kentucky International       17140
2119               Charlotte Douglas International       16740
2120                    Jacksonville International       27260
2121                           Logan International       14460
2122                  Raleigh-Durham International       39580
2123             John Glenn Columbus International       18140
2124               Washington Dulles International       47900
2125             Ronald Reagan Washington National       47900
2126                                     LaGuardia       35620
2127                 John F. Kennedy International       35620
2128                           Logan International       14460
2129                 John F. Kennedy International       35620
2130                                     LaGuardia       35620
2131                  Chicago O'Hare International       16980
2132                           Logan International       14460
2133             Ronald Reagan Washington National       47900
2134                  Newark Liberty International       35620
2135               Washington Dulles International       47900
2136                    Philadelphia International       37980
2137                  Newark Liberty International       35620
2138               Washington Dulles International       47900
2139               Charlotte Douglas International       16740
2140                                     LaGuardia       35620
2141               Charlotte Douglas International       16740
2142             Ronald Reagan Washington National       47900
2143                  Chicago O'Hare International       16980
2144               Washington Dulles International       47900
2145               Washington Dulles International       47900
2146               Washington Dulles International       47900
2147                 Buffalo Niagara International       15380
2148               Washington Dulles International       47900
2149                  Chicago O'Hare International       16980
2150                  Piedmont Triad International       24660
2151                            Westchester County       35620
2152               Washington Dulles International       47900
2153             Minneapolis-St Paul International       33460
2154             Minneapolis-St Paul International       33460
2155             Bozeman Yellowstone International       14580
2156                   San Francisco International       41860
2157             Minneapolis-St Paul International       33460
2158                    Philadelphia International       37980
2159                    Philadelphia International       37980
2160                    Philadelphia International       37980
2161                    Philadelphia International       37980
2162                    Philadelphia International       37980
2163                    Philadelphia International       37980
2164                    Philadelphia International       37980
2165                    Philadelphia International       37980
2166                    Philadelphia International       37980
2167                           Logan International       14460
2168                    Philadelphia International       37980
2169                             Flagstaff Pulliam       22380
2170                          Denver International       19740
2171               Washington Dulles International       47900
2172                                   Adams Field       30780
2173                  Newark Liberty International       35620
2174                        Key West International       28580
2175                         Orlando International       36740
2176                         Orlando International       36740
2177                           Tampa International       45300
2178       Fort Lauderdale-Hollywood International       33100
2179                           Tampa International       45300
2180                               Tweed New Haven       35300
2181                           Logan International       14460
2182          George Bush Intercontinental/Houston       26420
2183                                     LaGuardia       35620
2184                General Mitchell International       33340
2185                                     LaGuardia       35620
2186                        McCarran International       29820
2187                           Miami International       33100
2188                           Logan International       14460
2189                    Palm Springs International       40140
2190                               Kahului Airport       27980
2191               Dallas/Fort Worth International       19100
2192              Phoenix Sky Harbor International       38060
2193               Dallas/Fort Worth International       19100
2194                                  Cyril E King        <NA>
2195                       San Diego International       41740
2196                   San Francisco International       41860
2197                     Kansas City International       28140
2198                  Raleigh-Durham International       39580
2199                           Miami International       33100
2200                  Seattle/Tacoma International       42660
2201                 Daniel K Inouye International       46520
2202               Southwest Florida International       15980
2203                   San Francisco International       41860
2204               Southwest Florida International       15980
2205                 John F. Kennedy International       35620
2206                         Bradley International       25540
2207             Albuquerque International Sunport       10740
2208                           Logan International       14460
2209                                  Jackson Hole       27220
2210                       Melbourne International       37340
2211                      Palm Beach International       33100
2212                        Portland International       38900
2213                         Orlando International       36740
2214                     Los Angeles International       31080
2215                     Kansas City International       28140
2216              Phoenix Sky Harbor International       38060
2217               Dallas/Fort Worth International       19100
2218              Austin - Bergstrom International       12420
2219                          Denver International       19740
2220       Fort Lauderdale-Hollywood International       33100
2221                Luis Munoz Marin International       41980
2222    Cincinnati/Northern Kentucky International       17140
2223                 John F. Kennedy International       35620
2224                  Raleigh-Durham International       39580
2225                           Miami International       33100
2226                       San Diego International       41740
2227      Hartsfield-Jackson Atlanta International       12060
2228              Austin - Bergstrom International       12420
2229                     Kansas City International       28140
2230             Minneapolis-St Paul International       33460
2231                     Los Angeles International       31080
2232                  Seattle/Tacoma International       42660
2233               Charlotte Douglas International       16740
2234                            Westchester County       35620
2235                    Palm Springs International       40140
2236               Southwest Florida International       15980
2237                     Los Angeles International       31080
2238                           Logan International       14460
2239                                  Yampa Valley       44460
2240                      Reno/Tahoe International       39900
2241                  Salt Lake City International       41620
2242                   San Francisco International       41860
2243                           Tampa International       45300
2244                  Raleigh-Durham International       39580
2245             John Glenn Columbus International       18140
2246                     Kansas City International       28140
2247             Albuquerque International Sunport       10740
2248                                     LaGuardia       35620
2249                  Seattle/Tacoma International       42660
2250             Minneapolis-St Paul International       33460
2251                  Salt Lake City International       41620
2252                           Tampa International       45300
2253                Luis Munoz Marin International       41980
2254       Fort Lauderdale-Hollywood International       33100
2255           Ted Stevens Anchorage International       11260
2256                 Daniel K Inouye International       46520
2257                                   Agana Field        <NA>
2258                 Daniel K Inouye International       46520
2259         Kona International Airport at Keahole       25900
2260                 Daniel K Inouye International       46520
2261                               Kahului Airport       27980
2262                        McCarran International       29820
2263      Hartsfield-Jackson Atlanta International       12060
2264           Baton Rouge Metropolitan/Ryan Field       12940
2265                          Gainesville Regional       23540
2266                 Gulfport-Biloxi International       25060
2267                                    Blue Grass       30460
2268                               Mobile Regional       33660
2269                Roanoke Regional/Woodrum Field       40220
2270                  Springfield-Branson National       44180
2271                           Tulsa International       46140
2272                                     LaGuardia       35620
2273                General Mitchell International       33340
2274                        Richmond International       40060
2275      Hartsfield-Jackson Atlanta International       12060
2276                                     LaGuardia       35620
2277                           Logan International       14460
2278                    Detroit Metro Wayne County       19820
2279                      Burlington International       15540
2280                  Charleston AFB/International       16700
2281          Greenville-Spartanburg International       43900
2282                Portland International Jetport       38860
2283                  Raleigh-Durham International       39580
2284               Greater Rochester International       40380
2285                                  McGhee Tyson       28940
2286    Cincinnati/Northern Kentucky International       17140
2287      Hartsfield-Jackson Atlanta International       12060
2288                 John F. Kennedy International       35620
2289                          Bangor International       12620
2290                       Nashville International       34980
2291                  Charleston AFB/International       16700
2292                  Charleston AFB/International       16700
2293                      Pittsburgh International       38300
2294            Savannah/Hilton Head International       42340
2295        Birmingham-Shuttlesworth International       13820
2296                  Piedmont Triad International       24660
2297          Greenville-Spartanburg International       43900
2298                         Memphis International       32820
2299                Portland International Jetport       38860
2300            Savannah/Hilton Head International       42340
2301      Hartsfield-Jackson Atlanta International       12060
2302    Cincinnati/Northern Kentucky International       17140
2303                      Des Moines International       19780
2304                 John F. Kennedy International       35620
2305                                     LaGuardia       35620
2306      Hartsfield-Jackson Atlanta International       12060
2307                    Detroit Metro Wayne County       19820
2308                                     LaGuardia       35620
2309                           Tampa International       45300
2310                           Logan International       14460
2311               Dallas/Fort Worth International       19100
2312                 John F. Kennedy International       35620
2313                           Miami International       33100
2314              Austin - Bergstrom International       12420
2315               Dallas/Fort Worth International       19100
2316               Dallas/Fort Worth International       19100
2317              Phoenix Sky Harbor International       38060
2318               Charlotte Douglas International       16740
2319             John Glenn Columbus International       18140
2320                        McCarran International       29820
2321             Minneapolis-St Paul International       33460
2322     Louis Armstrong New Orleans International       35380
2323                         Norfolk International       47260
2324              Phoenix Sky Harbor International       38060
2325                      Pittsburgh International       38300
2326                Portland International Jetport       38860
2327                           Tampa International       45300
2328               Charlotte Douglas International       16740
2329                                     LaGuardia       35620
2330                    Jacksonville International       27260
2331                         Memphis International       32820
2332             Albuquerque International Sunport       10740
2333                          Bangor International       12620
2334             John Glenn Columbus International       18140
2335                  Piedmont Triad International       24660
2336                         Wichita Mid-Continent       48620
2337                     Los Angeles International       31080
2338                      Harrisburg International       25420
2339                  McAllen Miller International       32580
2340                General Mitchell International       33340
2341                         Ontario International       40140
2342                      Palm Beach International       33100
2343                Portland International Jetport       38860
2344               Southwest Florida International       15980
2345                   San Francisco International       41860
2346                  Chicago O'Hare International       16980
2347                  Chicago O'Hare International       16980
2348               Charlotte Douglas International       16740
2349                           Miami International       33100
2350               Dallas/Fort Worth International       19100
2351               Dallas/Fort Worth International       19100
2352                           Miami International       33100
2353               Dallas/Fort Worth International       19100
2354               Charlotte Douglas International       16740
2355               Dallas/Fort Worth International       19100
2356               Charlotte Douglas International       16740
2357                  Chicago O'Hare International       16980
2358              Austin - Bergstrom International       12420
2359               Dallas/Fort Worth International       19100
2360               Charlotte Douglas International       16740
2361               Dallas/Fort Worth International       19100
2362               Dallas/Fort Worth International       19100
2363                           Tampa International       45300
2364                        McCarran International       29820
2365              Phoenix Sky Harbor International       38060
2366                   San Francisco International       41860
2367                Luis Munoz Marin International       41980
2368                                  Cyril E King        <NA>
2369               Charlotte Douglas International       16740
2370               Dallas/Fort Worth International       19100
2371               Dallas/Fort Worth International       19100
2372                        Key West International       28580
2373                         Ontario International       40140
2374                Luis Munoz Marin International       41980
2375              John Wayne Airport-Orange County       31080
2376              Sarasota/Bradenton International       35840
2377               Charlotte Douglas International       16740
2378               Dallas/Fort Worth International       19100
2379               Southwest Florida International       15980
2380                           Logan International       14460
2381                  Newark Liberty International       35620
2382                 John F. Kennedy International       35620
2383                           Miami International       33100
2384               Charlotte Douglas International       16740
2385               Dallas/Fort Worth International       19100
2386                           Miami International       33100
2387               Dallas/Fort Worth International       19100
2388               Dallas/Fort Worth International       19100
2389                    Philadelphia International       37980
2390               Charlotte Douglas International       16740
2391               Charlotte Douglas International       16740
2392               Charlotte Douglas International       16740
2393                           Miami International       33100
2394                           Miami International       33100
2395                    Philadelphia International       37980
2396               Dallas/Fort Worth International       19100
2397               Dallas/Fort Worth International       19100
2398                 Daniel K Inouye International       46520
2399               Wiley Post/Will Rogers Memorial        <NA>
2400           Ted Stevens Anchorage International       11260
2401                  Seattle/Tacoma International       42660
2402                  Seattle/Tacoma International       42660
2403           Ted Stevens Anchorage International       11260
2404           Ted Stevens Anchorage International       11260
2405                                 Lihue Airport       28180
2406                        Portland International       38900
2407                  Seattle/Tacoma International       42660
2408           Ted Stevens Anchorage International       11260
2409                                 Lihue Airport       28180
2410                  Seattle/Tacoma International       42660
2411                    Palm Springs International       40140
2412       Fort Lauderdale-Hollywood International       33100
2413                                 Lihue Airport       28180
2414                         Orlando International       36740
2415             Ronald Reagan Washington National       47900
2416                 John F. Kennedy International       35620
2417                           Logan International       14460
2418       Fort Lauderdale-Hollywood International       33100
2419       Fort Lauderdale-Hollywood International       33100
2420                   San Francisco International       41860
2421                 Buffalo Niagara International       15380
2422                      Palm Beach International       33100
2423                       San Diego International       41740
2424              Sarasota/Bradenton International       35840
2425                 John F. Kennedy International       35620
2426                      Palm Beach International       33100
2427                        Richmond International       40060
2428             Albuquerque International Sunport       10740
2429                           Logan International       14460
2430                                      Bob Hope       31080
2431                      Palm Beach International       33100
2432                    Palm Springs International       40140
2433                         Bradley International       25540
2434                 Buffalo Niagara International       15380
2435                 John F. Kennedy International       35620
2436                         Orlando International       36740
2437                      Palm Beach International       33100
2438                 John F. Kennedy International       35620
2439                 John F. Kennedy International       35620
2440                           Tampa International       45300
2441                 John F. Kennedy International       35620
2442                           Logan International       14460
2443                         Orlando International       36740
2444                          Albany International       10580
2445                         Bradley International       25540
2446                            Boise Air Terminal       14260
2447             Bozeman Yellowstone International       14580
2448             John Glenn Columbus International       18140
2449              James M Cox/Dayton International       19430
2450                         Eagle County Regional       20780
2451                  Piedmont Triad International       24660
2452   Huntsville International-Carl T Jones Field       26620
2453                      Wilmington International       48900
2454                    Jacksonville International       27260
2455                               Eppley Airfield       36540
2456                         Norfolk International       47260
2457                 Pensacola Gulf Coast Regional       37860
2458                Portland International Jetport       38860
2459                  Raleigh-Durham International       39580
2460                       San Diego International       41740
2461                   San Francisco International       41860
2462                Luis Munoz Marin International       41980
2463              John Wayne Airport-Orange County       31080
2464                          Tucson International       46060
2465            Eglin AFB Destin Fort Walton Beach       18880
2466                    Detroit Metro Wayne County       19820
2467                  Seattle/Tacoma International       42660
2468                  Salt Lake City International       41620
2469                           Miami International       33100
2470             Minneapolis-St Paul International       33460
2471                  Salt Lake City International       41620
2472       Fort Lauderdale-Hollywood International       33100
2473                        McCarran International       29820
2474               Southwest Florida International       15980
2475                    Detroit Metro Wayne County       19820
2476                 John F. Kennedy International       35620
2477              Austin - Bergstrom International       12420
2478                           Logan International       14460
2479                 Buffalo Niagara International       15380
2480                General Mitchell International       33340
2481                    Myrtle Beach International       34820
2482                       San Diego International       41740
2483                     San Antonio International       41700
2484                   San Francisco International       41860
2485              Sarasota/Bradenton International       35840
2486      Hartsfield-Jackson Atlanta International       12060
2487      Hartsfield-Jackson Atlanta International       12060
2488                  Seattle/Tacoma International       42660
2489                  Salt Lake City International       41620
2490     Louis Armstrong New Orleans International       35380
2491                      Palm Beach International       33100
2492                    Indianapolis International       26900
2493                           Tampa International       45300
2494                           Logan International       14460
2495                  Salt Lake City International       41620
2496                           Logan International       14460
2497                 John F. Kennedy International       35620
2498                         Bradley International       25540
2499            Baltimore/Washington International       12580
2500                    Detroit Metro Wayne County       19820
2501       Fort Lauderdale-Hollywood International       33100
2502                     Kansas City International       28140
2503                General Mitchell International       33340
2504                        Missoula International       33540
2505                    Palm Springs International       40140
2506                     San Antonio International       41700
2507                      Sacramento International       40900
2508              John Wayne Airport-Orange County       31080
2509              Sarasota/Bradenton International       35840
2510                           Logan International       14460
2511                    Detroit Metro Wayne County       19820
2512    Cincinnati/Northern Kentucky International       17140
2513                    Detroit Metro Wayne County       19820
2514              Austin - Bergstrom International       12420
2515                 John F. Kennedy International       35620
2516             Minneapolis-St Paul International       33460
2517                           Tampa International       45300
2518                           Logan International       14460
2519      Hartsfield-Jackson Atlanta International       12060
2520                       Nashville International       34980
2521                           Logan International       14460
2522            Baltimore/Washington International       12580
2523             Ronald Reagan Washington National       47900
2524       Fort Lauderdale-Hollywood International       33100
2525                    Indianapolis International       26900
2526     Louis Armstrong New Orleans International       35380
2527                        Portland International       38900
2528                  Raleigh-Durham International       39580
2529                      Reno/Tahoe International       39900
2530                     San Antonio International       41700
2531                St Louis Lambert International       41180
2532                           Tampa International       45300
2533      Hartsfield-Jackson Atlanta International       12060
2534                  Newark Liberty International       35620
2535                      Burlington International       15540
2536                 Buffalo Niagara International       15380
2537                  Gerald R. Ford International       24340
2538          Greenville-Spartanburg International       43900
2539                           Hilton Head Airport       25940
2540                        Richmond International       40060
2541                      Burlington International       15540
2542                St Louis Lambert International       41180
2543         Kona International Airport at Keahole       25900
2544               Dallas/Fort Worth International       19100
2545               Dallas/Fort Worth International       19100
2546  Brownsville South Padre Island International       15180
2547                         Columbia Metropolitan       17900
2548                University of Illinois/Willard       16580
2549                  Corpus Christi International       18580
2550                       Abraham Lincoln Capital       44100
2551                                  McGhee Tyson       28940
2552                           Miami International       33100
2553                           Miami International       33100
2554               Dallas/Fort Worth International       19100
2555               Dallas/Fort Worth International       19100
2556               Dallas/Fort Worth International       19100
2557               Dallas/Fort Worth International       19100
2558               Dallas/Fort Worth International       19100
2559                               Eppley Airfield       36540
2560                           Miami International       33100
2561                               Eppley Airfield       36540
2562                      Des Moines International       19780
2563                       Rochester International       40340
2564               Dallas/Fort Worth International       19100
2565                           Miami International       33100
2566               Charlotte Douglas International       16740
2567               Charlotte Douglas International       16740
2568              Dane County Regional-Truax Field       31540
2569               Cleveland-Hopkins International       17460
2570                    Detroit Metro Wayne County       19820
2571                            Lafayette Regional       29180
2572                                   Adams Field       30780
2573                      Harrisburg International       25420
2574              James M Cox/Dayton International       19430
2575                                  McGhee Tyson       28940
2576             Ronald Reagan Washington National       47900
2577                    Philadelphia International       37980
2578                    Manchester-Boston Regional       31700
2579             Ronald Reagan Washington National       47900
2580             Ronald Reagan Washington National       47900
2581             Minneapolis-St Paul International       33460
2582                          Denver International       19740
2583               Dallas/Fort Worth International       19100
2584                        Appleton International       11540
2585                       Nashville International       34980
2586           Casper/Natrona County International       16220
2587                            Mahlon Sweet Field       21660
2588      Midland International Air and Space Port       33260
2589                         Norfolk International       47260
2590         Louisville Muhammad Ali International       31140
2591                             Granite Point Ndb        <NA>
2592                          Albany International       10580
2593                               Eppley Airfield       36540
2594                           South Bend Regional       43780
2595               Dallas/Fort Worth International       19100
2596                  Chicago O'Hare International       16980
2597             Minneapolis-St Paul International       33460
2598                     Kansas City International       28140
2599                General Mitchell International       33340
2600                    Palm Springs International       40140
2601                   Northwest Arkansas Regional       22220
2602                          Denver International       19740
2603                          Denver International       19740
2604          George Bush Intercontinental/Houston       26420
2605                            Bismarck Municipal       13900
2606                         Memphis International       32820
2607                             Will Rogers World       36420
2608                               Eppley Airfield       36540
2609                      Pittsburgh International       38300
2610                        Richmond International       40060
2611         Louisville Muhammad Ali International       31140
2612             Minneapolis-St Paul International       33460
2613                         Bradley International       25540
2614                          Albany International       10580
2615        Birmingham-Shuttlesworth International       13820
2616                         Memphis International       32820
2617                           Rapid City Regional       39660
2618                    Detroit Metro Wayne County       19820
2619                       Durango La Plata County       20420
2620             Minneapolis-St Paul International       33460
2621                          Denver International       19740
2622                         Ontario International       40140
2623             Albuquerque International Sunport       10740
2624                          Tucson International       46060
2625             Albuquerque International Sunport       10740
2626                 Fresno Yosemite International       23420
2627                               Helena Regional       25740
2628                                    Tri Cities       28420
2629                    Palm Springs International       40140
2630                           Rapid City Regional       39660
2631                          Tucson International       46060
2632                  Salt Lake City International       41620
2633                            Boise Air Terminal       14260
2634                   San Francisco International       41860
2635                                 Lihue Airport       28180
2636              Dane County Regional-Truax Field       31540
2637                        Missoula International       33540
2638          George Bush Intercontinental/Houston       26420
2639                     San Antonio International       41700
2640                      Sacramento International       40900
2641                          Denver International       19740
2642          George Bush Intercontinental/Houston       26420
2643                        Portland International       38900
2644              Phoenix Sky Harbor International       38060
2645                       San Diego International       41740
2646                Luis Munoz Marin International       41980
2647            Baltimore/Washington International       12580
2648             John Glenn Columbus International       18140
2649    Cincinnati/Northern Kentucky International       17140
2650                 Daniel K Inouye International       46520
2651                                  Jackson Hole       27220
2652                    Philadelphia International       37980
2653                      Pittsburgh International       38300
2654                  Seattle/Tacoma International       42660
2655                  Newark Liberty International       35620
2656          George Bush Intercontinental/Houston       26420
2657          George Bush Intercontinental/Houston       26420
2658          George Bush Intercontinental/Houston       26420
2659                  Newark Liberty International       35620
2660                  Chicago O'Hare International       16980
2661            Baltimore/Washington International       12580
2662                 Daniel K Inouye International       46520
2663                         Orlando International       36740
2664                  Seattle/Tacoma International       42660
2665                  Newark Liberty International       35620
2666                          Denver International       19740
2667                  Newark Liberty International       35620
2668       Norman Y. Mineta San Jose International       41940
2669                       Nashville International       34980
2670                Luis Munoz Marin International       41980
2671               Southwest Florida International       15980
2672       Northwest Florida Beaches International       37460
2673                               William P Hobby       26420
2674                 Daniel K Inouye International       46520
2675                     Kansas City International       28140
2676                       Nashville International       34980
2677                 Daniel K Inouye International       46520
2678                    Indianapolis International       26900
2679                     San Antonio International       41700
2680       Fort Lauderdale-Hollywood International       33100
2681          George Bush Intercontinental/Houston       26420
2682               Dallas/Fort Worth International       19100
2683                      Des Moines International       19780
2684                        Key West International       28580
2685         Louisville Muhammad Ali International       31140
2686               Washington Dulles International       47900
2687                  Charleston AFB/International       16700
2688               Cleveland-Hopkins International       17460
2689                    Jacksonville International       27260
2690                           Logan International       14460
2691                 John F. Kennedy International       35620
2692              Dane County Regional-Truax Field       31540
2693             John Glenn Columbus International       18140
2694                     Kansas City International       28140
2695                         Memphis International       32820
2696              Dane County Regional-Truax Field       31540
2697         Louisville Muhammad Ali International       31140
2698                  Newark Liberty International       35620
2699                   Northwest Arkansas Regional       22220
2700                        Key West International       28580
2701         Louisville Muhammad Ali International       31140
2702                                     LaGuardia       35620
2703                 John F. Kennedy International       35620
2704                  Charleston AFB/International       16700
2705                    Jacksonville International       27260
2706         Louisville Muhammad Ali International       31140
2707                        Key West International       28580
2708     Louis Armstrong New Orleans International       35380
2709               Charlotte Douglas International       16740
2710                           Logan International       14460
2711                                     LaGuardia       35620
2712                  Chicago O'Hare International       16980
2713                      Ithaca Tompkins Regional       27060
2714                         Columbia Metropolitan       17900
2715                 Pensacola Gulf Coast Regional       37860
2716                  Chicago O'Hare International       16980
2717                          Valley International       15180
2718             Minneapolis-St Paul International       33460
2719       Green Bay Austin Straubel International       24580
2720        Salisbury-Ocean City/Wicomico Regional       41540
2721         Louisville Muhammad Ali International       31140
2722                    Philadelphia International       37980
2723                         Long Island MacArthur       35620
2724            Savannah/Hilton Head International       42340
2725          George Bush Intercontinental/Houston       26420
2726       Dickinson - Theodore Roosevelt Regional       19860
2727                          Albany International       10580
2728                               Mobile Regional       33660
2729                St Louis Lambert International       41180
2730          George Bush Intercontinental/Houston       26420
2731                          Denver International       19740
2732                   Lehigh Valley International       10900
2733                 John F. Kennedy International       35620
2734                 John F. Kennedy International       35620
2735                                     LaGuardia       35620
2736             Minneapolis-St Paul International       33460
2737                                     LaGuardia       35620
2738                                     LaGuardia       35620
2739                      Burlington International       15540
2740                Portland International Jetport       38860
2741                         Columbia Metropolitan       17900
2742                  Gerald R. Ford International       24340
2743                         Norfolk International       47260
2744      Hartsfield-Jackson Atlanta International       12060
2745                 John F. Kennedy International       35620
2746                           Logan International       14460
2747                 John F. Kennedy International       35620
2748                                     LaGuardia       35620
2749                 John F. Kennedy International       35620
2750                                     LaGuardia       35620
2751               Dallas/Fort Worth International       19100
2752               Dallas/Fort Worth International       19100
2753                           Miami International       33100
2754              Phoenix Sky Harbor International       38060
2755               Charlotte Douglas International       16740
2756               Charlotte Douglas International       16740
2757               Dallas/Fort Worth International       19100
2758               Dallas/Fort Worth International       19100
2759               Dallas/Fort Worth International       19100
2760               Dallas/Fort Worth International       19100
2761               Charlotte Douglas International       16740
2762               Charlotte Douglas International       16740
2763               Dallas/Fort Worth International       19100
2764                           Miami International       33100
2765              Phoenix Sky Harbor International       38060
2766                  Chicago O'Hare International       16980
2767                           Logan International       14460
2768                 Buffalo Niagara International       15380
2769            Baltimore/Washington International       12580
2770    Cincinnati/Northern Kentucky International       17140
2771               Dallas/Fort Worth International       19100
2772                        Key West International       28580
2773       Fort Lauderdale-Hollywood International       33100
2774                     Los Angeles International       31080
2775                           Miami International       33100
2776              Phoenix Sky Harbor International       38060
2777               Southwest Florida International       15980
2778                   San Francisco International       41860
2779                St Louis Lambert International       41180
2780                Syracuse Hancock International       45060
2781               Dallas/Fort Worth International       19100
2782               Dallas/Fort Worth International       19100
2783              Sarasota/Bradenton International       35840
2784                    Philadelphia International       37980
2785                       Nashville International       34980
2786                            Boise Air Terminal       14260
2787                                      Bob Hope       31080
2788            City of Colorado Springs Municipal       17820
2789    Cincinnati/Northern Kentucky International       17140
2790             Ronald Reagan Washington National       47900
2791                                  Jackson Hole       27220
2792                                   Adams Field       30780
2793                     Kansas City International       28140
2794                         Orlando International       36740
2795                           Miami International       33100
2796                      Pittsburgh International       38300
2797                       San Diego International       41740
2798            Savannah/Hilton Head International       42340
2799                Luis Munoz Marin International       41980
2800                      Sacramento International       40900
2801              John Wayne Airport-Orange County       31080
2802               Dallas/Fort Worth International       19100
2803               Charlotte Douglas International       16740
2804               Charlotte Douglas International       16740
2805                     Los Angeles International       31080
2806               Dallas/Fort Worth International       19100
2807               Dallas/Fort Worth International       19100
2808                           Miami International       33100
2809               Dallas/Fort Worth International       19100
2810                           Miami International       33100
2811                           Miami International       33100
2812               Charlotte Douglas International       16740
2813               Dallas/Fort Worth International       19100
2814               Dallas/Fort Worth International       19100
2815              Austin - Bergstrom International       12420
2816               Charlotte Douglas International       16740
2817               Charlotte Douglas International       16740
2818             Ronald Reagan Washington National       47900
2819               Dallas/Fort Worth International       19100
2820               Dallas/Fort Worth International       19100
2821               Dallas/Fort Worth International       19100
2822                    Philadelphia International       37980
2823               Charlotte Douglas International       16740
2824               Charlotte Douglas International       16740
2825               Charlotte Douglas International       16740
2826              Phoenix Sky Harbor International       38060
2827               Dallas/Fort Worth International       19100
2828                           Miami International       33100
2829                  Raleigh-Durham International       39580
2830                       Nashville International       34980
2831                  Charleston AFB/International       16700
2832               Charlotte Douglas International       16740
2833             Ronald Reagan Washington National       47900
2834               Dallas/Fort Worth International       19100
2835                    Jacksonville International       27260
2836                  Seattle/Tacoma International       42660
2837              Phoenix Sky Harbor International       38060
2838               Charlotte Douglas International       16740
2839               Dallas/Fort Worth International       19100
2840                      Palm Beach International       33100
2841                          Tucson International       46060
2842               Dallas/Fort Worth International       19100
2843                    Philadelphia International       37980
2844               Dallas/Fort Worth International       19100
2845               Charlotte Douglas International       16740
2846               Charlotte Douglas International       16740
2847                         Orlando International       36740
2848              Dane County Regional-Truax Field       31540
2849               Dallas/Fort Worth International       19100
2850               Dallas/Fort Worth International       19100
2851              Phoenix Sky Harbor International       38060
2852               Charlotte Douglas International       16740
2853               Dallas/Fort Worth International       19100
2854                           Miami International       33100
2855               Dallas/Fort Worth International       19100
2856               Dallas/Fort Worth International       19100
2857                           Miami International       33100
2858                  Chicago O'Hare International       16980
2859                    Philadelphia International       37980
2860                           Miami International       33100
2861               Dallas/Fort Worth International       19100
2862               Dallas/Fort Worth International       19100
2863                    Philadelphia International       37980
2864                    Philadelphia International       37980
2865               Dallas/Fort Worth International       19100
2866               Dallas/Fort Worth International       19100
2867                           Logan International       14460
2868               Charlotte Douglas International       16740
2869                    Philadelphia International       37980
2870                  Chicago O'Hare International       16980
2871                  Seattle/Tacoma International       42660
2872                  Seattle/Tacoma International       42660
2873                  Seattle/Tacoma International       42660
2874                  Seattle/Tacoma International       42660
2875                  Seattle/Tacoma International       42660
2876                  Seattle/Tacoma International       42660
2877                    Petersburg James A Johnson        <NA>
2878                          Juneau International       27940
2879                       San Diego International       41740
2880                  Seattle/Tacoma International       42660
2881             Albuquerque International Sunport       10740
2882                         Orlando International       36740
2883                  Seattle/Tacoma International       42660
2884                                      Bob Hope       31080
2885             John Glenn Columbus International       18140
2886    Cincinnati/Northern Kentucky International       17140
2887                    Indianapolis International       26900
2888                General Mitchell International       33340
2889                               Kahului Airport       27980
2890                             Will Rogers World       36420
2891                               Eppley Airfield       36540
2892                  Raleigh-Durham International       39580
2893                     San Antonio International       41700
2894                St Louis Lambert International       41180
2895                          Tucson International       46060
2896                 Daniel K Inouye International       46520
2897                     Los Angeles International       31080
2898                      Palm Beach International       33100
2899               Southwest Florida International       15980
2900                        Key West International       28580
2901                     San Antonio International       41700
2902            Savannah/Hilton Head International       42340
2903                         Orlando International       36740
2904                           Logan International       14460
2905                     Los Angeles International       31080
2906                           Logan International       14460
2907                           Logan International       14460
2908                Luis Munoz Marin International       41980
2909                                  Cyril E King        <NA>
2910                                  Cyril E King        <NA>
2911                    Jacksonville International       27260
2912                  Theodore Francis Green State       39300
2913                       San Diego International       41740
2914                Luis Munoz Marin International       41980
2915                  Salt Lake City International       41620
2916                         Orlando International       36740
2917                           Tampa International       45300
2918                 John F. Kennedy International       35620
2919                           Logan International       14460
2920       Fort Lauderdale-Hollywood International       33100
2921                     Los Angeles International       31080
2922                                     LaGuardia       35620
2923                              Rafael Hernandez       10380
2924                        Key West International       28580
2925          George Bush Intercontinental/Houston       26420
2926                     San Antonio International       41700
2927              Sarasota/Bradenton International       35840
2928                  Theodore Francis Green State       39300
2929                         Bradley International       25540
2930                         Bradley International       25540
2931                           Logan International       14460
2932                 John F. Kennedy International       35620
2933                  Theodore Francis Green State       39300
2934                         Orlando International       36740
2935       Fort Lauderdale-Hollywood International       33100
2936                     Los Angeles International       31080
2937                         Orlando International       36740
2938                 John F. Kennedy International       35620
2939                 John F. Kennedy International       35620
2940       Fort Lauderdale-Hollywood International       33100
2941                           Logan International       14460
2942                 John F. Kennedy International       35620
2943                  Raleigh-Durham International       39580
2944                 John F. Kennedy International       35620
2945                 John F. Kennedy International       35620
2946                  Salt Lake City International       41620
2947                 Buffalo Niagara International       15380
2948                  Charleston AFB/International       16700
2949                  Gerald R. Ford International       24340
2950                 John F. Kennedy International       35620
2951                  Theodore Francis Green State       39300
2952              Sarasota/Bradenton International       35840
2953             Minneapolis-St Paul International       33460
2954                    Detroit Metro Wayne County       19820
2955                  Salt Lake City International       41620
2956      Hartsfield-Jackson Atlanta International       12060
2957      Hartsfield-Jackson Atlanta International       12060
2958                  Salt Lake City International       41620
2959             Ronald Reagan Washington National       47900
2960             Minneapolis-St Paul International       33460
2961             Minneapolis-St Paul International       33460
2962             Minneapolis-St Paul International       33460
2963                    Detroit Metro Wayne County       19820
2964                    Detroit Metro Wayne County       19820
2965      Hartsfield-Jackson Atlanta International       12060
2966      Hartsfield-Jackson Atlanta International       12060
2967      Hartsfield-Jackson Atlanta International       12060
2968      Hartsfield-Jackson Atlanta International       12060
2969                    Detroit Metro Wayne County       19820
2970                 John F. Kennedy International       35620
2971             Minneapolis-St Paul International       33460
2972    Cincinnati/Northern Kentucky International       17140
2973                  Salt Lake City International       41620
2974                  Salt Lake City International       41620
2975               Washington Dulles International       47900
2976      Hartsfield-Jackson Atlanta International       12060
2977                    Detroit Metro Wayne County       19820
2978                              The Eastern Iowa       16300
2979                          Hector International       22020
2980                  Raleigh-Durham International       39580
2981                   Northwest Arkansas Regional       22220
2982                      Palm Beach International       33100
2983                  Raleigh-Durham International       39580
2984                                   Adams Field       30780
2985                         Orlando International       36740
2986                Portland International Jetport       38860
2987                Syracuse Hancock International       45060
2988                        McCarran International       29820
2989                                Trenton Mercer       45940
2990                         Orlando International       36740
2991               Southwest Florida International       15980
2992                          Denver International       19740
2993                          Denver International       19740
2994               Washington Dulles International       47900
2995                  Chicago O'Hare International       16980
2996          Greenville-Spartanburg International       43900
2997                         Norfolk International       47260
2998                  Newark Liberty International       35620
2999               Washington Dulles International       47900
3000               Dallas/Fort Worth International       19100
3001                           Miami International       33100
3002               Dallas/Fort Worth International       19100
3003               Dallas/Fort Worth International       19100
3004               Dallas/Fort Worth International       19100
3005                    Indianapolis International       26900
3006                            Asheville Regional       11700
3007                                 Meadows Field       12540
3008        Birmingham-Shuttlesworth International       13820
3009                          Garden City Regional       23780
3010                          Laredo International       29700
3011                    Myrtle Beach International       34820
3012            Eglin AFB Destin Fort Walton Beach       18880
3013                           Miami International       33100
3014    Cincinnati/Northern Kentucky International       17140
3015            Savannah/Hilton Head International       42340
3016                                  McGhee Tyson       28940
3017             John Glenn Columbus International       18140
3018                           Evansville Regional       21780
3019                                   Adams Field       30780
3020                     San Antonio International       41700
3021              Austin - Bergstrom International       12420
3022                           Miami International       33100
3023               Dallas/Fort Worth International       19100
3024                         Orlando International       36740
3025                         Orlando International       36740
3026                     Los Angeles International       31080
3027                    Indianapolis International       26900
3028                General Mitchell International       33340
3029                     Los Angeles International       31080
3030                     Los Angeles International       31080
3031             Ronald Reagan Washington National       47900
3032                    Philadelphia International       37980
3033       Northwest Florida Beaches International       37460
3034                General Mitchell International       33340
3035                          Tallahassee Regional       45220
3036            Eglin AFB Destin Fort Walton Beach       18880
3037                    Philadelphia International       37980
3038                Augusta Regional at Bush Field       12260
3039                          Albany International       10580
3040                      Des Moines International       19780
3041   Huntsville International-Carl T Jones Field       26620
3042                           Montgomery Regional       33860
3043                Portland International Jetport       38860
3044             Ronald Reagan Washington National       47900
3045                    Philadelphia International       37980
3046               Charlotte Douglas International       16740
3047               Charlotte Douglas International       16740
3048             Ronald Reagan Washington National       47900
3049               Charlotte Douglas International       16740
3050             Ronald Reagan Washington National       47900
3051    Cincinnati/Northern Kentucky International       17140
3052               Dallas/Fort Worth International       19100
3053                    Palm Springs International       40140
3054                          Denver International       19740
3055                          Denver International       19740
3056                   San Francisco International       41860
3057                    Jacksonville International       27260
3058                    Palm Springs International       40140
3059            Savannah/Hilton Head International       42340
3060           Lubbock Preston Smith International       31180
3061                                    Tri Cities       28700
3062                  Theodore Francis Green State       39300
3063               Dallas/Fort Worth International       19100
3064                  Seattle/Tacoma International       42660
3065          George Bush Intercontinental/Houston       26420
3066                          Denver International       19740
3067                             Will Rogers World       36420
3068                 Fresno Yosemite International       23420
3069          Rogue Valley International - Medford       32780
3070          George Bush Intercontinental/Houston       26420
3071          George Bush Intercontinental/Houston       26420
3072             John Glenn Columbus International       18140
3073                             Will Rogers World       36420
3074                    Detroit Metro Wayne County       19820
3075              Phoenix Sky Harbor International       38060
3076                  Chicago O'Hare International       16980
3077                  Chicago O'Hare International       16980
3078                     Kansas City International       28140
3079                            Mahlon Sweet Field       21660
3080          Rogue Valley International - Medford       32780
3081                         Ontario International       40140
3082                       Santa Barbara Municipal       42200
3083                      Des Moines International       19780
3084                  Salt Lake City International       41620
3085          George Bush Intercontinental/Houston       26420
3086                  Seattle/Tacoma International       42660
3087                       Fairbanks International       21820
3088           Ted Stevens Anchorage International       11260
3089                  Seattle/Tacoma International       42660
3090                    Palm Springs International       40140
3091                          Walla Walla Regional       47460
3092                   San Francisco International       41860
3093                  Newark Liberty International       35620
3094                  Chicago O'Hare International       16980
3095                  Chicago O'Hare International       16980
3096                  Chicago O'Hare International       16980
3097          George Bush Intercontinental/Houston       26420
3098                      Pittsburgh International       38300
3099       Norman Y. Mineta San Jose International       41940
3100                              Rafael Hernandez       10380
3101                     Los Angeles International       31080
3102              Austin - Bergstrom International       12420
3103               Southwest Florida International       15980
3104                  McAllen Miller International       32580
3105                        Portland International       38900
3106                       San Diego International       41740
3107       Norman Y. Mineta San Jose International       41940
3108                      Sacramento International       40900
3109              John Wayne Airport-Orange County       31080
3110          George Bush Intercontinental/Houston       26420
3111                   San Francisco International       41860
3112            Baltimore/Washington International       12580
3113               Cleveland-Hopkins International       17460
3114               Washington Dulles International       47900
3115               Washington Dulles International       47900
3116          George Bush Intercontinental/Houston       26420
3117                          Denver International       19740
3118                          Denver International       19740
3119          George Bush Intercontinental/Houston       26420
3120                          Denver International       19740
3121            Metropolitan Oakland International       41860
3122                       San Diego International       41740
3123             Albuquerque International Sunport       10740
3124           Lubbock Preston Smith International       31180
3125                        McCarran International       29820
3126                St Louis Lambert International       41180
3127            Metropolitan Oakland International       41860
3128                      Sacramento International       40900
3129                       Nashville International       34980
3130                           Tampa International       45300
3131                          Albany International       10580
3132              Austin - Bergstrom International       12420
3133             John Glenn Columbus International       18140
3134                             Dallas Love Field       19100
3135                     Kansas City International       28140
3136                    Manchester-Boston Regional       31700
3137                Syracuse Hancock International       45060
3138                General Mitchell International       33340
3139                      Palm Beach International       33100
3140                     San Antonio International       41700
3141                             Dallas Love Field       19100
3142       Fort Lauderdale-Hollywood International       33100
3143                    Myrtle Beach International       34820
3144                    Indianapolis International       26900
3145                         Memphis International       32820
3146                           Miami International       33100
3147                General Mitchell International       33340
3148                       San Diego International       41740
3149            Savannah/Hilton Head International       42340
3150              Sarasota/Bradenton International       35840
3151               Southwest Florida International       15980
3152                               William P Hobby       26420
3153                     Kansas City International       28140
3154            City of Colorado Springs Municipal       17820
3155                             Montrose Regional       33940
3156                         Long Island MacArthur       35620
3157             Albuquerque International Sunport       10740
3158                  Corpus Christi International       18580
3159             Ronald Reagan Washington National       47900
3160      Jackson Medgar Wiley Evers International       27140
3161                         Orlando International       36740
3162                 Fresno Yosemite International       23420
3163                             Will Rogers World       36420
3164                        McCarran International       29820
3165                               William P Hobby       26420
3166                             Dallas Love Field       19100
3167                St Louis Lambert International       41180
3168                        McCarran International       29820
3169                               William P Hobby       26420
3170             Ronald Reagan Washington National       47900
3171                     San Antonio International       41700
3172                               William P Hobby       26420
3173                         Long Island MacArthur       35620
3174                    Detroit Metro Wayne County       19820
3175                    Manchester-Boston Regional       31700
3176            Savannah/Hilton Head International       42340
3177             Albuquerque International Sunport       10740
3178                         Bradley International       25540
3179                                      Bob Hope       31080
3180                     San Antonio International       41700
3181                           Tampa International       45300
3182                           Miami International       33100
3183                       Nashville International       34980
3184                               William P Hobby       26420
3185                     Kansas City International       28140
3186             Ronald Reagan Washington National       47900
3187                       Nashville International       34980
3188                             Will Rogers World       36420
3189                         Wichita Mid-Continent       48620
3190                    Indianapolis International       26900
3191                           Tampa International       45300
3192            Metropolitan Oakland International       41860
3193                  Chicago Midway International       16980
3194       Fort Lauderdale-Hollywood International       33100
3195                St Louis Lambert International       41180
3196            Metropolitan Oakland International       41860
3197              John Wayne Airport-Orange County       31080
3198            Baltimore/Washington International       12580
3199                      Pittsburgh International       38300
3200                      Reno/Tahoe International       39900
3201                             Dallas Love Field       19100
3202            City of Colorado Springs Municipal       17820
3203                St Louis Lambert International       41180
3204                               William P Hobby       26420
3205                        McCarran International       29820
3206              Austin - Bergstrom International       12420
3207               Southwest Florida International       15980
3208                           Tulsa International       46140
3209                  Raleigh-Durham International       39580
3210       Norman Y. Mineta San Jose International       41940
3211                         Long Island MacArthur       35620
3212                      Pittsburgh International       38300
3213                    Indianapolis International       26900
3214                        McCarran International       29820
3215                St Louis Lambert International       41180
3216          George Bush Intercontinental/Houston       26420
3217          George Bush Intercontinental/Houston       26420
3218                         El Paso International       21340
3219                          Tallahassee Regional       45220
3220              Phoenix Sky Harbor International       38060
3221                            Monterey Peninsula       41500
3222                       Santa Barbara Municipal       42200
3223          George Bush Intercontinental/Houston       26420
3224             Ronald Reagan Washington National       47900
3225                     Kansas City International       28140
3226                          Bangor International       12620
3227                  Charleston AFB/International       16700
3228                      Pittsburgh International       38300
3229                St Louis Lambert International       41180
3230                 John F. Kennedy International       35620
3231    Cincinnati/Northern Kentucky International       17140
3232               Washington Dulles International       47900
3233               Cleveland-Hopkins International       17460
3234                    Jacksonville International       27260
3235                Roanoke Regional/Woodrum Field       40220
3236                            Asheville Regional       11700
3237                          Duluth International       20260
3238            Savannah/Hilton Head International       42340
3239             John Glenn Columbus International       18140
3240                  Chicago O'Hare International       16980
3241             Ronald Reagan Washington National       47900
3242                  Chicago O'Hare International       16980
3243               Washington Dulles International       47900
3244                  Chicago O'Hare International       16980
3245                  Chicago O'Hare International       16980
3246                  Chicago O'Hare International       16980
3247               Washington Dulles International       47900
3248                  Chicago O'Hare International       16980
3249                                  McGhee Tyson       28940
3250               Washington Dulles International       47900
3251                     Charlottesville Albemarle       16820
3252                  Chicago O'Hare International       16980
3253               Washington Dulles International       47900
3254             Minneapolis-St Paul International       33460
3255                 Gulfport-Biloxi International       25060
3256             Minneapolis-St Paul International       33460
3257               Greater Rochester International       40380
3258                                  Lovell Field       16860
3259                    Philadelphia International       37980
3260                            Asheville Regional       11700
3261                Roanoke Regional/Woodrum Field       40220
3262                           Logan International       14460
3263          George Bush Intercontinental/Houston       26420
3264               Washington Dulles International       47900
3265       Northwest Florida Beaches International       37460
3266                          Denver International       19740
3267               Dallas/Fort Worth International       19100
3268                Luis Munoz Marin International       41980
3269               Cleveland-Hopkins International       17460
3270                                  Cyril E King        <NA>
3271               Dallas/Fort Worth International       19100
3272                     Los Angeles International       31080
3273               Dallas/Fort Worth International       19100
3274                               Kahului Airport       27980
3275                    Philadelphia International       37980
3276               Dallas/Fort Worth International       19100
3277                  Chicago O'Hare International       16980
3278    Cincinnati/Northern Kentucky International       17140
3279               Dallas/Fort Worth International       19100
3280         Kona International Airport at Keahole       25900
3281                               Kahului Airport       27980
3282                                  Nome Airport        <NA>
3283           Ted Stevens Anchorage International       11260
3284           Ted Stevens Anchorage International       11260
3285                  Seattle/Tacoma International       42660
3286                      Palm Beach International       33100
3287               Southwest Florida International       15980
3288               Southwest Florida International       15980
3289                 John F. Kennedy International       35620
3290                        Appleton International       11540
3291                              The Eastern Iowa       16300
3292                      Sacramento International       40900
3293                                  Cyril E King        <NA>
3294                              Henry E. Rohlsen        <NA>
3295            Savannah/Hilton Head International       42340
3296      Hartsfield-Jackson Atlanta International       12060
3297      Hartsfield-Jackson Atlanta International       12060
3298      Hartsfield-Jackson Atlanta International       12060
3299             Minneapolis-St Paul International       33460
3300                  Newark Liberty International       35620
3301                        Key West International       28580
3302              James M Cox/Dayton International       19430
3303                 Texarkana Regional-Webb Field       45500
3304               Dallas/Fort Worth International       19100
3305                         Akron-Canton Regional       10420
3306                   Daytona Beach International       19660
3307                            Westchester County       35620
3308                          Tallahassee Regional       45220
3309               Charlotte Douglas International       16740
3310               Cleveland-Hopkins International       17460
3311                Syracuse Hancock International       45060
3312              Phoenix Sky Harbor International       38060
3313                    Glacier Park International       28060
3314                   San Francisco International       41860
3315                                  Jackson Hole       27220
3316                 Daniel K Inouye International       46520
3317              John Wayne Airport-Orange County       31080
3318                         Eagle County Regional       20780
3319          George Bush Intercontinental/Houston       26420
3320               Washington Dulles International       47900
3321                          Denver International       19740
3322                       Nashville International       34980
3323                       San Diego International       41740
3324             Albuquerque International Sunport       10740
3325                       San Diego International       41740
3326              John Wayne Airport-Orange County       31080
3327                         Ontario International       40140
3328                         Orlando International       36740
3329                  Chicago Midway International       16980
3330            Baltimore/Washington International       12580
3331     Louis Armstrong New Orleans International       35380
3332                  Chicago Midway International       16980
3333            Metropolitan Oakland International       41860
3334                Luis Munoz Marin International       41980
3335          George Bush Intercontinental/Houston       26420
3336        General Downing - Peoria International       37900
3337                 Pensacola Gulf Coast Regional       37860
3338                           Rapid City Regional       39660
3339             Bozeman Yellowstone International       14580
3340                  Charleston AFB/International       16700
3341                         Norfolk International       47260
3342               Dallas/Fort Worth International       19100
3343                           Hilton Head Airport       25940
3344                        Appleton International       11540
3345                               Eppley Airfield       36540
3346                  Newark Liberty International       35620
3347                      Palm Beach International       33100
3348                Luis Munoz Marin International       41980
3349                          Bangor International       12620
3350                  Gerald R. Ford International       24340
3351                               Helena Regional       25740
3352                           Shreveport Regional       43340
3353                          Denver International       19740
3354                  Salt Lake City International       41620
3355                               Kahului Airport       27980
3356                      Fort Wayne International       23060
3357              Phoenix Sky Harbor International       38060
3358                        Richmond International       40060
3359                           Tampa International       45300
3360               Dallas/Fort Worth International       19100
3361              Phoenix Sky Harbor International       38060
3362               Dallas/Fort Worth International       19100
3363                  Chicago O'Hare International       16980
3364                                  Cyril E King        <NA>
3365               Dallas/Fort Worth International       19100
3366                        Key West International       28580
3367                          Tallahassee Regional       45220
3368                  Salt Lake City International       41620
3369                      Palm Beach International       33100
3370                                Joe Foss Field       43620
3371               Dallas/Fort Worth International       19100
3372                        Missoula International       33540
3373                 Pensacola Gulf Coast Regional       37860
3374        Birmingham-Shuttlesworth International       13820
3375            Savannah/Hilton Head International       42340
3376                          Idaho Falls Regional       26820
3377             Minneapolis-St Paul International       33460
3378                            Boise Air Terminal       14260
3379             Minneapolis-St Paul International       33460
3380               Aspen Pitkin County Sardy Field       24060
3381          George Bush Intercontinental/Houston       26420
3382                 Daniel K Inouye International       46520
3383             Bozeman Yellowstone International       14580
3384                         Eagle County Regional       20780
3385              Austin - Bergstrom International       12420
3386                   San Francisco International       41860
3387               Southwest Florida International       15980
3388                   San Francisco International       41860
3389                         Orlando International       36740
3390               Dallas/Fort Worth International       19100
3391       Northwest Florida Beaches International       37460
3392                      Wilmington International       48900
3393               Gunnison-Crested Butte Regional        <NA>
3394                           Logan International       14460
3395                               Kahului Airport       27980
3396             Minneapolis-St Paul International       33460
3397             Ronald Reagan Washington National       47900
3398                 Daniel K Inouye International       46520
3399                 Daniel K Inouye International       46520
3400         Kona International Airport at Keahole       25900
3401                             Montrose Regional       33940
3402                            Lafayette Regional       29180
3403      Hartsfield-Jackson Atlanta International       12060
3404      Hartsfield-Jackson Atlanta International       12060
3405                             Central Wisconsin       48140
3406                      Des Moines International       19780
3407                                     LaGuardia       35620
3408      Hartsfield-Jackson Atlanta International       12060
3409             Minneapolis-St Paul International       33460
3410      Hartsfield-Jackson Atlanta International       12060
3411                Luis Munoz Marin International       41980
3412             Ronald Reagan Washington National       47900
3413              Phoenix Sky Harbor International       38060
3414                      Palm Beach International       33100
3415                         Bradley International       25540
3416               Greater Rochester International       40380
3417                       San Diego International       41740
3418                  Seattle/Tacoma International       42660
3419                                  Cyril E King        <NA>
3420                              Henry E. Rohlsen        <NA>
3421                      Reno/Tahoe International       39900
3422                         Eagle County Regional       20780
3423                 Fresno Yosemite International       23420
3424                         Norfolk International       47260
3425                  Raleigh-Durham International       39580
3426               Dallas/Fort Worth International       19100
3427               Dallas/Fort Worth International       19100
3428               Dallas/Fort Worth International       19100
3429               Dallas/Fort Worth International       19100
3430                    Indianapolis International       26900
3431              Phoenix Sky Harbor International       38060
3432               Dallas/Fort Worth International       19100
3433               Dallas/Fort Worth International       19100
3434                  Seattle/Tacoma International       42660
3435               Cleveland-Hopkins International       17460
3436                    Philadelphia International       37980
3437                  Chicago O'Hare International       16980
3438               Dallas/Fort Worth International       19100
3439                 John F. Kennedy International       35620
3440                  Seattle/Tacoma International       42660
3441                  Seattle/Tacoma International       42660
3442                   San Francisco International       41860
3443           Ted Stevens Anchorage International       11260
3444                        Portland International       38900
3445              Austin - Bergstrom International       12420
3446              John Wayne Airport-Orange County       31080
3447                         Orlando International       36740
3448                               Kahului Airport       27980
3449                  Seattle/Tacoma International       42660
3450         Kona International Airport at Keahole       25900
3451             Albuquerque International Sunport       10740
3452                  Charleston AFB/International       16700
3453                          Juneau International       27940
3454                       Ketchikan International       28540
3455     Louis Armstrong New Orleans International       35380
3456                  Seattle/Tacoma International       42660
3457           Ted Stevens Anchorage International       11260
3458         Kona International Airport at Keahole       25900
3459                        Portland International       38900
3460                Luis Munoz Marin International       41980
3461     Louis Armstrong New Orleans International       35380
3462                        Portland International       38900
3463                         Ontario International       40140
3464                    Jacksonville International       27260
3465                      Palm Beach International       33100
3466                     Martha's Vineyard Airport       47240
3467                         Bradley International       25540
3468                   Daytona Beach International       19660
3469                         Wichita Mid-Continent       48620
3470             Minneapolis-St Paul International       33460
3471       Norman Y. Mineta San Jose International       41940
3472      Hartsfield-Jackson Atlanta International       12060
3473                                  Cyril E King        <NA>
3474      Hartsfield-Jackson Atlanta International       12060
3475      Hartsfield-Jackson Atlanta International       12060
3476      Hartsfield-Jackson Atlanta International       12060
3477      Hartsfield-Jackson Atlanta International       12060
3478             Minneapolis-St Paul International       33460
3479                  Salt Lake City International       41620
3480                  Salt Lake City International       41620
3481                         Memphis International       32820
3482                    Detroit Metro Wayne County       19820
3483                     Los Angeles International       31080
3484             Minneapolis-St Paul International       33460
3485      Hartsfield-Jackson Atlanta International       12060
3486                  Billings Logan International       13740
3487                    Detroit Metro Wayne County       19820
3488                  Salt Lake City International       41620
3489      Hartsfield-Jackson Atlanta International       12060
3490                  Chicago O'Hare International       16980
3491               Dallas/Fort Worth International       19100
3492                  Billings Logan International       13740
3493           Baton Rouge Metropolitan/Ryan Field       12940
3494      Jackson Medgar Wiley Evers International       27140
3495              Sarasota/Bradenton International       35840
3496                           Miami International       33100
3497        Birmingham-Shuttlesworth International       13820
3498                         Orlando International       36740
3499                         Columbus Metropolitan       17980
3500                      Burlington International       15540
3501               Charlotte Douglas International       16740
3502                    Philadelphia International       37980
3503                   Daytona Beach International       19660
3504                          Denver International       19740
3505             Minneapolis-St Paul International       33460
3506                            Bismarck Municipal       13900
3507                       Grand Junction Regional       24300
3508                      San Luis County Regional       42020
3509                                  McGhee Tyson       28940
3510               Aspen Pitkin County Sardy Field       24060
3511                       Durango La Plata County       20420
3512                       Grand Junction Regional       24300
3513             Minneapolis-St Paul International       33460
3514             Minneapolis-St Paul International       33460
3515                    Detroit Metro Wayne County       19820
3516               Cleveland-Hopkins International       17460
3517                    Glacier Park International       28060
3518                  Salt Lake City International       41620
3519                      Harrisburg International       25420
3520                             Friedman Memorial       25200
3521                    Palm Springs International       40140
3522             Charles M. Schulz - Sonoma County       42220
3523                         Eagle County Regional       20780
3524             Charles M. Schulz - Sonoma County       42220
3525                  Chicago O'Hare International       16980
3526               Dallas/Fort Worth International       19100
3527                                  Jackson Hole       27220
3528                       San Diego International       41740
3529                  Billings Logan International       13740
3530                            Mahlon Sweet Field       21660
3531                        Missoula International       33540
3532                             Will Rogers World       36420
3533                               Eppley Airfield       36540
3534              Phoenix Sky Harbor International       38060
3535                            Boise Air Terminal       14260
3536                       San Diego International       41740
3537                         El Paso International       21340
3538                       Santa Barbara Municipal       42200
3539                        Richmond International       40060
3540                     San Antonio International       41700
3541                                  Cyril E King        <NA>
3542                Luis Munoz Marin International       41980
3543          George Bush Intercontinental/Houston       26420
3544                          Denver International       19740
3545                          Denver International       19740
3546                      Burlington International       15540
3547          George Bush Intercontinental/Houston       26420
3548                   San Francisco International       41860
3549         Kona International Airport at Keahole       25900
3550                                 Lihue Airport       28180
3551                 Daniel K Inouye International       46520
3552                  Chicago O'Hare International       16980
3553                          Denver International       19740
3554                  Seattle/Tacoma International       42660
3555              Sarasota/Bradenton International       35840
3556             John Glenn Columbus International       18140
3557                         Orlando International       36740
3558                       San Diego International       41740
3559                         El Paso International       21340
3560                               Kahului Airport       27980
3561              Austin - Bergstrom International       12420
3562                               Kahului Airport       27980
3563                    Philadelphia International       37980
3564                       San Diego International       41740
3565               Washington Dulles International       47900
3566                     Kansas City International       28140
3567                    Indianapolis International       26900
3568      Midland International Air and Space Port       33260
3569              Phoenix Sky Harbor International       38060
3570                    Indianapolis International       26900
3571               Charlotte Douglas International       16740
3572                     Kansas City International       28140
3573                   Lehigh Valley International       10900
3574                    Philadelphia International       37980
3575                 Buffalo Niagara International       15380
3576                       Durango La Plata County       20420
3577          George Bush Intercontinental/Houston       26420
3578                  Springfield-Branson National       44180
3579                                      Bob Hope       31080
3580    Central Il Regional Airport at Bloomington       14010
3581                           Evansville Regional       21780
3582                    Detroit Metro Wayne County       19820
3583                Syracuse Hancock International       45060
3584                     Charlottesville Albemarle       16820
3585              Dane County Regional-Truax Field       31540
3586              Dane County Regional-Truax Field       31540
3587                   Northwest Arkansas Regional       22220
3588                    Detroit Metro Wayne County       19820
3589      Hartsfield-Jackson Atlanta International       12060
3590               Dallas/Fort Worth International       19100
3591               Dallas/Fort Worth International       19100
3592                        Richmond International       40060
3593               Dallas/Fort Worth International       19100
3594               Dallas/Fort Worth International       19100
3595              Austin - Bergstrom International       12420
3596             Bozeman Yellowstone International       14580
3597                               Eppley Airfield       36540
3598              Phoenix Sky Harbor International       38060
3599               Dallas/Fort Worth International       19100
3600               Dallas/Fort Worth International       19100
3601               Dallas/Fort Worth International       19100
3602         Kona International Airport at Keahole       25900
3603                  Chicago O'Hare International       16980
3604               Dallas/Fort Worth International       19100
3605               Charlotte Douglas International       16740
3606              Phoenix Sky Harbor International       38060
3607              Austin - Bergstrom International       12420
3608                        Portland International       38900
3609                        Portland International       38900
3610           Ted Stevens Anchorage International       11260
3611                          Tucson International       46060
3612         Kona International Airport at Keahole       25900
3613                         Ontario International       40140
3614                         Spokane International       44060
3615                         Sitka Rocky Gutierrez        <NA>
3616                        Portland International       38900
3617             Bozeman Yellowstone International       14580
3618                      Sacramento International       40900
3619                Syracuse Hancock International       45060
3620                   Northwest Arkansas Regional       22220
3621                    Detroit Metro Wayne County       19820
3622                            Boise Air Terminal       14260
3623      Hartsfield-Jackson Atlanta International       12060
3624                           Miami International       33100
3625                                  Lovell Field       16860
3626                              Easterwood Field       17780
3627                           Evansville Regional       21780
3628                               Mobile Regional       33660
3629                           Miami International       33100
3630             Ronald Reagan Washington National       47900
3631         Louisville Muhammad Ali International       31140
3632               Dallas/Fort Worth International       19100
3633       Fort Lauderdale-Hollywood International       33100
3634             Ronald Reagan Washington National       47900
3635                               Eppley Airfield       36540
3636                 Pensacola Gulf Coast Regional       37860
3637               Charlotte Douglas International       16740
3638               Charlotte Douglas International       16740
3639                                  McGhee Tyson       28940
3640                   San Francisco International       41860
3641                  Salt Lake City International       41620
3642                           South Bend Regional       43780
3643                  Gerald R. Ford International       24340
3644                         Memphis International       32820
3645                         Norfolk International       47260
3646                       San Diego International       41740
3647                           Rapid City Regional       39660
3648               Aspen Pitkin County Sardy Field       24060
3649                          Denver International       19740
3650                             Montrose Regional       33940
3651                    Palm Springs International       40140
3652          Rogue Valley International - Medford       32780
3653                                 Roberts Field       13460
3654                           Tulsa International       46140
3655                              Snohomish County       42660
3656                       Santa Barbara Municipal       42200
3657             Charles M. Schulz - Sonoma County       42220
3658                                  Jackson Hole       27220
3659                  Newark Liberty International       35620
3660                        Portland International       38900
3661          George Bush Intercontinental/Houston       26420
3662                          Denver International       19740
3663                  Newark Liberty International       35620
3664               Washington Dulles International       47900
3665          George Bush Intercontinental/Houston       26420
3666                      Reno/Tahoe International       39900
3667              Austin - Bergstrom International       12420
3668                               William P Hobby       26420
3669                General Mitchell International       33340
3670       Norman Y. Mineta San Jose International       41940
3671                               Kahului Airport       27980
3672             Albuquerque International Sunport       10740
3673                                 Lihue Airport       28180
3674                      Pittsburgh International       38300
3675                        McCarran International       29820
3676                  Chicago Midway International       16980
3677         Kona International Airport at Keahole       25900
3678                     San Antonio International       41700
3679   Huntsville International-Carl T Jones Field       26620
3680              Phoenix Sky Harbor International       38060
3681              Phoenix Sky Harbor International       38060
3682                  Gerald R. Ford International       24340
3683          Greenville-Spartanburg International       43900
3684               Dallas/Fort Worth International       19100
3685          George Bush Intercontinental/Houston       26420
3686               Cleveland-Hopkins International       17460
3687            Savannah/Hilton Head International       42340
3688                           South Bend Regional       43780
3689                  Newark Liberty International       35620
3690                         Bradley International       25540
3691              James M Cox/Dayton International       19430
3692                               Mobile Regional       33660
3693                                  McGhee Tyson       28940
3694              James M Cox/Dayton International       19430
3695       Newport News/Williamsburg International       47260
3696                                  McGhee Tyson       28940
3697          George Bush Intercontinental/Houston       26420
3698                         Columbia Metropolitan       17900
3699                 John F. Kennedy International       35620
3700               Dallas/Fort Worth International       19100
3701               Dallas/Fort Worth International       19100
3702                      Des Moines International       19780
3703                       San Diego International       41740
3704               Dallas/Fort Worth International       19100
3705                  Charleston AFB/International       16700
3706                        Key West International       28580
3707          Greenville-Spartanburg International       43900
3708               Gunnison-Crested Butte Regional        <NA>
3709                 Daniel K Inouye International       46520
3710                    Indianapolis International       26900
3711                             Will Rogers World       36420
3712                     San Antonio International       41700
3713                       Santa Barbara Municipal       42200
3714               Dallas/Fort Worth International       19100
3715                                  Jackson Hole       27220
3716              John Wayne Airport-Orange County       31080
3717                  Chicago O'Hare International       16980
3718                  Chicago O'Hare International       16980
3719                         Bradley International       25540
3720                           Miami International       33100
3721               Dallas/Fort Worth International       19100
3722              Austin - Bergstrom International       12420
3723               Charlotte Douglas International       16740
3724                    Philadelphia International       37980
3725                                 Mile 13 Field        <NA>
3726                          Juneau International       27940
3727           Ted Stevens Anchorage International       11260
3728               Greater Rochester International       40380
3729       Fort Lauderdale-Hollywood International       33100
3730             Ronald Reagan Washington National       47900
3731                            Westchester County       35620
3732              Dane County Regional-Truax Field       31540
3733                    Detroit Metro Wayne County       19820
3734                  Theodore Francis Green State       39300
3735                Syracuse Hancock International       45060
3736                            Lafayette Regional       29180
3737                          Tallahassee Regional       45220
3738                           Miami International       33100
3739                         Orlando International       36740
3740               Charlotte Douglas International       16740
3741                              The Eastern Iowa       16300
3742                         Memphis International       32820
3743                 Buffalo Niagara International       15380
3744                  Gerald R. Ford International       24340
3745             Ronald Reagan Washington National       47900
3746             Ronald Reagan Washington National       47900
3747                            Manhattan Regional       31740
3748                          Tucson International       46060
3749                             Montrose Regional       33940
3750                          Denver International       19740
3751           Wilkes Barre Scranton International       42540
3752                Syracuse Hancock International       45060
3753                                  Jackson Hole       27220
3754              Roswell International Air Center       40740
3755                          Denver International       19740
3756             Bozeman Yellowstone International       14580
3757                       Grand Junction Regional       24300
3758           Ted Stevens Anchorage International       11260
3759                  Chicago O'Hare International       16980
3760          George Bush Intercontinental/Houston       26420
3761                      Sacramento International       40900
3762             Albuquerque International Sunport       10740
3763                 Daniel K Inouye International       46520
3764                  Raleigh-Durham International       39580
3765            Baltimore/Washington International       12580
3766                       San Diego International       41740
3767       Norman Y. Mineta San Jose International       41940
3768             Albuquerque International Sunport       10740
3769              Sarasota/Bradenton International       35840
3770                          Albany International       10580
3771                          Denver International       19740
3772                           Tampa International       45300
3773                  Salt Lake City International       41620
3774        Birmingham-Shuttlesworth International       13820
3775             John Glenn Columbus International       18140
3776         Louisville Muhammad Ali International       31140
3777                 Buffalo Niagara International       15380
3778                     San Antonio International       41700
3779              Phoenix Sky Harbor International       38060
3780             John Glenn Columbus International       18140
3781                        Portland International       38900
3782                         Orlando International       36740
3783                           Tampa International       45300
3784                           Tampa International       45300
3785                             Dallas Love Field       19100
3786                  Chicago Midway International       16980
3787                 Buffalo Niagara International       15380
3788         Louisville Muhammad Ali International       31140
3789       Fort Lauderdale-Hollywood International       33100
3790                             Dallas Love Field       19100
3791                               William P Hobby       26420
3792                St Louis Lambert International       41180
3793                      Sacramento International       40900
3794                              The Eastern Iowa       16300
3795                          Hector International       22020
3796               Washington Dulles International       47900
3797          George Bush Intercontinental/Houston       26420
3798                              The Eastern Iowa       16300
3799                          Hector International       22020
3800                  Gerald R. Ford International       24340
3801              James M Cox/Dayton International       19430
3802                      Pittsburgh International       38300
3803                Roanoke Regional/Woodrum Field       40220
3804   Huntsville International-Carl T Jones Field       26620
3805             Ronald Reagan Washington National       47900
3806                    Philadelphia International       37980
3807                  Chicago O'Hare International       16980
3808               Charlotte Douglas International       16740
3809                 John F. Kennedy International       35620
3810                         Orlando International       36740
3811                 John F. Kennedy International       35620
3812                            Worcester Regional       49340
3813                            Worcester Regional       49340
3814       Fort Lauderdale-Hollywood International       33100
3815                 John F. Kennedy International       35620
3816                                  Cyril E King        <NA>
3817                Luis Munoz Marin International       41980
3818      Hartsfield-Jackson Atlanta International       12060
3819                         Orlando International       36740
3820               Southwest Florida International       15980
3821                                Joe Foss Field       43620
3822                          Valley International       15180
3823                         Ontario International       40140
3824                        McCarran International       29820
3825                        McCarran International       29820
3826                        McCarran International       29820
3827                         Orlando International       36740
3828                         Orlando International       36740
3829                    Myrtle Beach International       34820
3830               Southwest Florida International       15980
3831                St Louis Lambert International       41180
3832               Cleveland-Hopkins International       17460
3833                         Ontario International       40140
3834                                Trenton Mercer       45940
3835                         Long Island MacArthur       35620
3836                         Orlando International       36740
3837               Southwest Florida International       15980
3838                         Bradley International       25540
3839                                Trenton Mercer       45940
3840                         Long Island MacArthur       35620
3841                         Orlando International       36740
3842                           Tampa International       45300
3843                           Tampa International       45300
3844                  Gerald R. Ford International       24340
3845      Hartsfield-Jackson Atlanta International       12060
3846                  Chicago O'Hare International       16980
3847                      Palm Beach International       33100
3848                           Tampa International       45300
3849                           Miami International       33100
3850                      Palm Beach International       33100
3851                           Tampa International       45300
3852               Southwest Florida International       15980
3853                     Los Angeles International       31080
3854                   Atlantic City International       12100
3855         Louisville Muhammad Ali International       31140
3856                 Pensacola Gulf Coast Regional       37860
3857               Cleveland-Hopkins International       17460
3858                      Pittsburgh International       38300
3859                    Myrtle Beach International       34820
3860                    Myrtle Beach International       34820
3861                   Atlantic City International       12100
3862                    Manchester-Boston Regional       31700
3863                                  Cyril E King        <NA>
3864                  Newark Liberty International       35620
3865                        Arnold Palmer Regional       38300
3866                                     LaGuardia       35620
3867                         Orlando International       36740
3868                    Myrtle Beach International       34820
3869                    Myrtle Beach International       34820
3870                   Atlantic City International       12100
3871                        Arnold Palmer Regional       38300
3872       Fort Lauderdale-Hollywood International       33100
3873             Ronald Reagan Washington National       47900
3874                            Monterey Peninsula       41500
3875                                 Meadows Field       12540
3876                  Billings Logan International       13740
3877               Washington Dulles International       47900
3878                     Kansas City International       28140
3879                               William P Hobby       26420
3880                  Chicago Midway International       16980
3881                 Daniel K Inouye International       46520
3882                             Will Rogers World       36420
3883                                     LaGuardia       35620
3884             Ronald Reagan Washington National       47900
3885             Minneapolis-St Paul International       33460
3886                            Asheville Regional       11700
3887                    Indianapolis International       26900
3888                      Palm Beach International       33100
3889             Minneapolis-St Paul International       33460
3890             Minneapolis-St Paul International       33460
3891           Lubbock Preston Smith International       31180
3892                                   Agana Field        <NA>
3893                         Eagle County Regional       20780
3894                        Portland International       38900
3895                  Salt Lake City International       41620
3896                        Richmond International       40060
3897         Kona International Airport at Keahole       25900
3898                St Louis Lambert International       41180
3899                       Rochester International       40340
3900       Green Bay Austin Straubel International       24580
3901                     Kansas City International       28140
3902                             Will Rogers World       36420
3903              Sarasota/Bradenton International       35840
3904                   Northwest Arkansas Regional       22220
3905                      Des Moines International       19780
3906                           Ralph Wien Memorial        <NA>
3907           Ted Stevens Anchorage International       11260
3908             Ronald Reagan Washington National       47900
3909                            Westchester County       35620
3910                 John F. Kennedy International       35620
3911    Cincinnati/Northern Kentucky International       17140
3912                         El Paso International       21340
3913               Greater Rochester International       40380
3914    Cincinnati/Northern Kentucky International       17140
3915                  Salt Lake City International       41620
3916             Minneapolis-St Paul International       33460
3917                         Norfolk International       47260
3918               Dallas/Fort Worth International       19100
3919               Dallas/Fort Worth International       19100
3920               Charlotte Douglas International       16740
3921             Ronald Reagan Washington National       47900
3922                         Norfolk International       47260
3923                    Philadelphia International       37980
3924          Greenville-Spartanburg International       43900
3925              Dane County Regional-Truax Field       31540
3926                         Norfolk International       47260
3927                          Denver International       19740
3928               Aspen Pitkin County Sardy Field       24060
3929                    Glacier Park International       28060
3930          Rogue Valley International - Medford       32780
3931                           Minot International       33500
3932                          Idaho Falls Regional       26820
3933                            Santa Fe Municipal       42140
3934          Rogue Valley International - Medford       32780
3935                   San Francisco International       41860
3936                     Los Angeles International       31080
3937                          Denver International       19740
3938          George Bush Intercontinental/Houston       26420
3939                    Indianapolis International       26900
3940                                      Bob Hope       31080
3941                        McCarran International       29820
3942              Phoenix Sky Harbor International       38060
3943                    Jacksonville International       27260
3944                               William P Hobby       26420
3945                             Dallas Love Field       19100
3946                                  Yampa Valley       44460
3947                  Raleigh-Durham International       39580
3948               Southwest Florida International       15980
3949                           Tulsa International       46140
3950                               William P Hobby       26420
3951              Phoenix Sky Harbor International       38060
3952              Phoenix Sky Harbor International       38060
3953    Central Il Regional Airport at Bloomington       14010
3954                      Palm Beach International       33100
3955                           Hilton Head Airport       25940
3956                                     LaGuardia       35620
3957                        Key West International       28580
3958               Washington Dulles International       47900
3959                General Mitchell International       33340
3960               Washington Dulles International       47900
3961      Hartsfield-Jackson Atlanta International       12060
3962               Dallas/Fort Worth International       19100
3963               Charlotte Douglas International       16740
3964               Charlotte Douglas International       16740
3965                    Philadelphia International       37980
3966             Ronald Reagan Washington National       47900
3967               Dallas/Fort Worth International       19100
3968              Austin - Bergstrom International       12420
3969                 John F. Kennedy International       35620
3970                           Miami International       33100
3971                           Tulsa International       46140
3972               Dallas/Fort Worth International       19100
3973                  Chicago O'Hare International       16980
3974              Phoenix Sky Harbor International       38060
3975               Charlotte Douglas International       16740
3976                    Philadelphia International       37980
3977                    Philadelphia International       37980
3978               Charlotte Douglas International       16740
3979               Charlotte Douglas International       16740
3980             Ronald Reagan Washington National       47900
3981                  Chicago O'Hare International       16980
3982             John Glenn Columbus International       18140
3983               Dallas/Fort Worth International       19100
3984               Charlotte Douglas International       16740
3985               Charlotte Douglas International       16740
3986                  Seattle/Tacoma International       42660
3987                        Portland International       38900
3988                        Portland International       38900
3989                 Buffalo Niagara International       15380
3990                 John F. Kennedy International       35620
3991       Fort Lauderdale-Hollywood International       33100
3992                 John F. Kennedy International       35620
3993         Louisville Muhammad Ali International       31140
3994                    Detroit Metro Wayne County       19820
3995                    Detroit Metro Wayne County       19820
3996             Minneapolis-St Paul International       33460
3997      Hartsfield-Jackson Atlanta International       12060
3998    Cincinnati/Northern Kentucky International       17140
3999                    Detroit Metro Wayne County       19820
4000                    Detroit Metro Wayne County       19820
4001                Luis Munoz Marin International       41980
4002                Syracuse Hancock International       45060
4003                           Tulsa International       46140
4004                       San Diego International       41740
4005              John Wayne Airport-Orange County       31080
4006               Southwest Florida International       15980
4007                      Sacramento International       40900
4008                       Quad City International       19340
4009        Birmingham-Shuttlesworth International       13820
4010                                  McGhee Tyson       28940
4011                          Tucson International       46060
4012                        Portland International       38900
4013                    Indianapolis International       26900
4014                       San Diego International       41740
4015                Augusta Regional at Bush Field       12260
4016                         Bradley International       25540
4017                  Raleigh-Durham International       39580
4018                    Myrtle Beach International       34820
4019                        Key West International       28580
4020                    Indianapolis International       26900
4021           Ted Stevens Anchorage International       11260
4022                   Northwest Arkansas Regional       22220
4023                  Charleston AFB/International       16700
4024             Ronald Reagan Washington National       47900
4025                          Albany International       10580
4026                Roanoke Regional/Woodrum Field       40220
4027          George Bush Intercontinental/Houston       26420
4028                           Miami International       33100
4029                               William P Hobby       26420
4030       Norman Y. Mineta San Jose International       41940
4031                       Nashville International       34980
4032                             Dallas Love Field       19100
4033         Kona International Airport at Keahole       25900
4034                      Pittsburgh International       38300
4035                           Shreveport Regional       43340
4036             Minneapolis-St Paul International       33460
4037                  Newark Liberty International       35620
4038       Fort Lauderdale-Hollywood International       33100
4039                             Flagstaff Pulliam       22380
4040             Bozeman Yellowstone International       14580
4041                          Denver International       19740
4042               Charlotte Douglas International       16740
4043                      Pittsburgh International       38300
4044                  Charleston AFB/International       16700
4045       Norman Y. Mineta San Jose International       41940
4046                         Orlando International       36740
4047                                     Mercedita       38660
4048      Jackson Medgar Wiley Evers International       27140
4049                  Gerald R. Ford International       24340
4050                     San Antonio International       41700
4051                        Portland International       38900
4052           Ted Stevens Anchorage International       11260
4053                          Juneau International       27940
4054          Greenville-Spartanburg International       43900
4055                  Salt Lake City International       41620
4056                      Wilmington International       48900
4057                Luis Munoz Marin International       41980
4058                St Louis Lambert International       41180
4059                    Jacksonville International       27260
4060            Savannah/Hilton Head International       42340
4061                      Reno/Tahoe International       39900
4062                St Louis Lambert International       41180
4063                    Myrtle Beach International       34820
4064            City of Colorado Springs Municipal       17820
4065       Norman Y. Mineta San Jose International       41940
4066                           Miami International       33100
4067                         Sitka Rocky Gutierrez        <NA>
4068                           Logan International       14460
4069             Ronald Reagan Washington National       47900
4070                     Los Angeles International       31080
4071            Baltimore/Washington International       12580
4072                            Westchester County       35620
4073                           Logan International       14460
4074                                  Yampa Valley       44460
4075                            Westchester County       35620
4076      Hartsfield-Jackson Atlanta International       12060
4077                         Memphis International       32820
4078                    Myrtle Beach International       34820
4079                  Springfield-Branson National       44180
4080                           Miami International       33100
4081        Birmingham-Shuttlesworth International       13820
4082                      Burlington International       15540
4083               Charlotte Douglas International       16740
4084                Portland International Jetport       38860
4085               Dallas/Fort Worth International       19100
4086                         Columbus Metropolitan       17980
4087                           Tulsa International       46140
4088          George Bush Intercontinental/Houston       26420
4089                    Indianapolis International       26900
4090                      Pittsburgh International       38300
4091              Phoenix Sky Harbor International       38060
4092                Portland International Jetport       38860
4093              Austin - Bergstrom International       12420
4094              Sarasota/Bradenton International       35840
4095                         Wichita Mid-Continent       48620
4096             Minneapolis-St Paul International       33460
4097    Central Il Regional Airport at Bloomington       14010
4098                         Orlando International       36740
4099      Hartsfield-Jackson Atlanta International       12060
4100                         Memphis International       32820
4101   Huntsville International-Carl T Jones Field       26620
4102              Dane County Regional-Truax Field       31540
4103                 Pensacola Gulf Coast Regional       37860
4104                New York Stewart International       39100
4105                  Theodore Francis Green State       39300
4106                         Orlando International       36740
4107               Southwest Florida International       15980
4108                    Detroit Metro Wayne County       19820
4109                     San Antonio International       41700
4110               Washington Dulles International       47900
4111                           Miami International       33100
4112                       Ketchikan International       28540
4113           Ted Stevens Anchorage International       11260
4114                    Palm Springs International       40140
4115                           Logan International       14460
4116                     Los Angeles International       31080
4117                  Salt Lake City International       41620
4118      Hartsfield-Jackson Atlanta International       12060
4119                  Salt Lake City International       41620
4120                  Salt Lake City International       41620
4121      Hartsfield-Jackson Atlanta International       12060
4122    Cincinnati/Northern Kentucky International       17140
4123                  Springfield-Branson National       44180
4124      Jackson Medgar Wiley Evers International       27140
4125                 Pensacola Gulf Coast Regional       37860
4126                  Theodore Francis Green State       39300
4127                    Indianapolis International       26900
4128             Ronald Reagan Washington National       47900
4129                             Columbia Regional       17860
4130                          Sawyer International       32100
4131             Minneapolis-St Paul International       33460
4132                                  Jackson Hole       27220
4133               Dallas/Fort Worth International       19100
4134                          Denver International       19740
4135                  Gerald R. Ford International       24340
4136             Minneapolis-St Paul International       33460
4137                          Denver International       19740
4138          George Bush Intercontinental/Houston       26420
4139                               Kahului Airport       27980
4140                            Hilo International       25900
4141            City of Colorado Springs Municipal       17820
4142                  Chicago Midway International       16980
4143                  Chicago Midway International       16980
4144                      Sacramento International       40900
4145                                      Bob Hope       31080
4146        Birmingham-Shuttlesworth International       13820
4147                    Jacksonville International       27260
4148                       Nashville International       34980
4149                  Theodore Francis Green State       39300
4150                                Joe Foss Field       43620
4151                                    Blue Grass       30460
4152          George Bush Intercontinental/Houston       26420
4153          George Bush Intercontinental/Houston       26420
4154                                  Jackson Hole       27220
4155                 Daniel K Inouye International       46520
4156                         Norfolk International       47260
4157                          Bangor International       12620
4158                      Burlington International       15540
4159               Greater Rochester International       40380
4160                Syracuse Hancock International       45060
4161                           Logan International       14460
4162               Charlotte Douglas International       16740
4163           Rick Husband Amarillo International       11100
4164                  Chicago O'Hare International       16980
4165               Dallas/Fort Worth International       19100
4166               Charlotte Douglas International       16740
4167              Austin - Bergstrom International       12420
4168                           Miami International       33100
4169                     Kansas City International       28140
4170                         Memphis International       32820
4171                St Louis Lambert International       41180
4172               Charlotte Douglas International       16740
4173               Dallas/Fort Worth International       19100
4174                         El Paso International       21340
4175               Dallas/Fort Worth International       19100
4176                    Philadelphia International       37980
4177                  Chicago O'Hare International       16980
4178               Dallas/Fort Worth International       19100
4179                    Philadelphia International       37980
4180               Charlotte Douglas International       16740
4181                    Philadelphia International       37980
4182                    Philadelphia International       37980
4183               Dallas/Fort Worth International       19100
4184                        Portland International       38900
4185                  Seattle/Tacoma International       42660
4186                Syracuse Hancock International       45060
4187                          Albany International       10580
4188                  Charleston AFB/International       16700
4189                        Portland International       38900
4190       Fort Lauderdale-Hollywood International       33100
4191                  Charleston AFB/International       16700
4192                        McCarran International       29820
4193                        Richmond International       40060
4194       Fort Lauderdale-Hollywood International       33100
4195                        McCarran International       29820
4196                           Logan International       14460
4197                    Detroit Metro Wayne County       19820
4198             Minneapolis-St Paul International       33460
4199             Minneapolis-St Paul International       33460
4200                    Detroit Metro Wayne County       19820
4201                       Fairbanks International       21820
4202                    Detroit Metro Wayne County       19820
4203      Hartsfield-Jackson Atlanta International       12060
4204                         Long Island MacArthur       35620
4205                  Raleigh-Durham International       39580
4206                  Gerald R. Ford International       24340
4207                    Philadelphia International       37980
4208                           Miami International       33100
4209                         Orlando International       36740
4210                Syracuse Hancock International       45060
4211               Washington Dulles International       47900
4212                  Chicago O'Hare International       16980
4213              Austin - Bergstrom International       12420
4214                 Gulfport-Biloxi International       25060
4215      Midland International Air and Space Port       33260
4216               Dallas/Fort Worth International       19100
4217               Dallas/Fort Worth International       19100
4218                                    Blue Grass       30460
4219                       Grand Junction Regional       24300
4220                           Miami International       33100
4221                Luis Munoz Marin International       41980
4222                              Henry E. Rohlsen        <NA>
4223                           Tampa International       45300
4224                Luis Munoz Marin International       41980
4225                                     LaGuardia       35620
4226                   Atlantic City International       12100
4227               Charlotte Douglas International       16740
4228             Ronald Reagan Washington National       47900
4229                  Capital Region International       29620
4230                      Pittsburgh International       38300
4231               Charlotte Douglas International       16740
4232             Ronald Reagan Washington National       47900
4233             Ronald Reagan Washington National       47900
4234          George Bush Intercontinental/Houston       26420
4235              Phoenix Sky Harbor International       38060
4236          George Bush Intercontinental/Houston       26420
4237                   San Francisco International       41860
4238                          Denver International       19740
4239                  Corpus Christi International       18580
4240                            Mahlon Sweet Field       21660
4241                                 Roberts Field       13460
4242          George Bush Intercontinental/Houston       26420
4243                  Chicago O'Hare International       16980
4244                          Bishop International       22420
4245   Huntsville International-Carl T Jones Field       26620
4246                  Theodore Francis Green State       39300
4247                      San Luis County Regional       42020
4248              Phoenix Sky Harbor International       38060
4249                                 Roberts Field       13460
4250                      Reno/Tahoe International       39900
4251          George Bush Intercontinental/Houston       26420
4252                  Seattle/Tacoma International       42660
4253                  Seattle/Tacoma International       42660
4254              John Wayne Airport-Orange County       31080
4255                  Newark Liberty International       35620
4256               Washington Dulles International       47900
4257                  Newark Liberty International       35620
4258                  Chicago O'Hare International       16980
4259               Cleveland-Hopkins International       17460
4260                          Denver International       19740
4261                          Denver International       19740
4262                  Chicago O'Hare International       16980
4263               Washington Dulles International       47900
4264               Washington Dulles International       47900
4265                   San Francisco International       41860
4266                          Denver International       19740
4267               Washington Dulles International       47900
4268          George Bush Intercontinental/Houston       26420
4269                   San Francisco International       41860
4270                   San Francisco International       41860
4271                          Denver International       19740
4272               Washington Dulles International       47900
4273                  Chicago Midway International       16980
4274              Phoenix Sky Harbor International       38060
4275                  Chicago Midway International       16980
4276                             Dallas Love Field       19100
4277               Charlotte Douglas International       16740
4278       Fort Lauderdale-Hollywood International       33100
4279                St Louis Lambert International       41180
4280                    Detroit Metro Wayne County       19820
4281                St Louis Lambert International       41180
4282            City of Colorado Springs Municipal       17820
4283                       San Diego International       41740
4284                  Chicago Midway International       16980
4285                             Dallas Love Field       19100
4286                               William P Hobby       26420
4287              John Wayne Airport-Orange County       31080
4288                          Denver International       19740
4289            Baltimore/Washington International       12580
4290                            Long Beach Airport       31080
4291                             Dallas Love Field       19100
4292                                      Bob Hope       31080
4293                            Long Beach Airport       31080
4294              John Wayne Airport-Orange County       31080
4295              Phoenix Sky Harbor International       38060
4296                            Long Beach Airport       31080
4297              Austin - Bergstrom International       12420
4298               Washington Dulles International       47900
4299                               William P Hobby       26420
4300                    Myrtle Beach International       34820
4301      Jackson Medgar Wiley Evers International       27140
4302              Sarasota/Bradenton International       35840
4303               Washington Dulles International       47900
4304          George Bush Intercontinental/Houston       26420
4305             Bozeman Yellowstone International       14580
4306          George Bush Intercontinental/Houston       26420
4307            Eglin AFB Destin Fort Walton Beach       18880
4308               Washington Dulles International       47900
4309                        Richmond International       40060
4310                      Wilmington International       48900
4311                    Philadelphia International       37980
4312                  Raleigh-Durham International       39580
4313               Washington Dulles International       47900
4314                            Asheville Regional       11700
4315              James M Cox/Dayton International       19430
4316            Erie International/Tom Ridge Field       21500
4317                  Gerald R. Ford International       24340
4318               Southwest Florida International       15980
4319               Southwest Florida International       15980
4320                        Phoenix - Mesa Gateway       38060
4321                    Myrtle Beach International       34820
4322                           Punta Gorda Airport       39460
4323       St. Petersburg-Clearwater International       45300
4324                        McCarran International       29820
4325                    Philadelphia International       37980
4326                           Logan International       14460
4327   Huntsville International-Carl T Jones Field       26620
4328                   Northwest Arkansas Regional       22220
4329                               Tweed New Haven       35300
4330                      Burlington International       15540
4331               Dallas/Fort Worth International       19100
4332                      Reno/Tahoe International       39900
4333                 Daniel K Inouye International       46520
4334                                     LaGuardia       35620
4335                 Buffalo Niagara International       15380
4336                    Detroit Metro Wayne County       19820
4337               Dallas/Fort Worth International       19100
4338             Ronald Reagan Washington National       47900
4339               Dallas/Fort Worth International       19100
4340                  Chicago O'Hare International       16980
4341               Dallas/Fort Worth International       19100
4342                 Buffalo Niagara International       15380
4343               Charlotte Douglas International       16740
4344               Dallas/Fort Worth International       19100
4345                          Juneau International       27940
4346                        Richmond International       40060
4347      Hartsfield-Jackson Atlanta International       12060
4348                  Salt Lake City International       41620
4349                  Salt Lake City International       41620
4350      Hartsfield-Jackson Atlanta International       12060
4351                                Trenton Mercer       45940
4352                      Harrisburg International       25420
4353                                  McGhee Tyson       28940
4354                         Akron-Canton Regional       10420
4355               Washington Dulles International       47900
4356                              The Eastern Iowa       16300
4357                  Capital Region International       29620
4358             Ronald Reagan Washington National       47900
4359                           Tampa International       45300
4360                              Rafael Hernandez       10380
4361             John Glenn Columbus International       18140
4362       Fort Lauderdale-Hollywood International       33100
4363                           Tampa International       45300
4364                           Logan International       14460
4365                         Akron-Canton Regional       10420
4366             John Glenn Columbus International       18140
4367             Ronald Reagan Washington National       47900
4368                  Piedmont Triad International       24660
4369                  Piedmont Triad International       24660
4370          Greenville-Spartanburg International       43900
4371                       Melbourne International       37340
4372                    Philadelphia International       37980
4373                  Theodore Francis Green State       39300
4374               Greater Rochester International       40380
4375                Syracuse Hancock International       45060
4376                    Philadelphia International       37980
4377                  Theodore Francis Green State       39300
4378          George Bush Intercontinental/Houston       26420
4379             Minneapolis-St Paul International       33460
4380                         Memphis International       32820
4381                 Pensacola Gulf Coast Regional       37860
4382                  Chicago O'Hare International       16980
4383                       Brainerd Lakes Regional       14660
4384                            Bismarck Municipal       13900
4385                           Rapid City Regional       39660
4386                          Denver International       19740
4387                  Chicago O'Hare International       16980
4388                     Los Angeles International       31080
4389             Minneapolis-St Paul International       33460
4390                                  Jackson Hole       27220
4391                        Portland International       38900
4392                Portland International Jetport       38860
4393                   San Francisco International       41860
4394               Washington Dulles International       47900
4395          George Bush Intercontinental/Houston       26420
4396                             Dallas Love Field       19100
4397                             Dallas Love Field       19100
4398            Baltimore/Washington International       12580
4399                     Kansas City International       28140
4400              Austin - Bergstrom International       12420
4401                               William P Hobby       26420
4402              Phoenix Sky Harbor International       38060
4403                    Philadelphia International       37980
4404                  Charleston AFB/International       16700
4405             John Glenn Columbus International       18140
4406               Greater Rochester International       40380
4407                  Piedmont Triad International       24660
4408             Ronald Reagan Washington National       47900
4409                      Wilmington International       48900
4410                    Manchester-Boston Regional       31700
4411         Louisville Muhammad Ali International       31140
4412                Syracuse Hancock International       45060
4413                        Appleton International       11540
4414                 Pensacola Gulf Coast Regional       37860
4415               Dallas/Fort Worth International       19100
4416               Dallas/Fort Worth International       19100
4417              Phoenix Sky Harbor International       38060
4418               Dallas/Fort Worth International       19100
4419               Charlotte Douglas International       16740
4420                      Reno/Tahoe International       39900
4421      Hartsfield-Jackson Atlanta International       12060
4422                  Salt Lake City International       41620
4423                      Burlington International       15540
4424                          Denver International       19740
4425                         Norfolk International       47260
4426                        McCarran International       29820
4427               Southwest Florida International       15980
4428       Fort Lauderdale-Hollywood International       33100
4429                    Myrtle Beach International       34820
4430                        Arnold Palmer Regional       38300
4431                         Bradley International       25540
4432                          Bishop International       22420
4433   Huntsville International-Carl T Jones Field       26620
4434                    Philadelphia International       37980
4435             Ronald Reagan Washington National       47900
4436              Phoenix Sky Harbor International       38060
4437                  Chicago O'Hare International       16980
4438                  Chicago O'Hare International       16980
4439                              Snohomish County       42660
4440                      San Luis County Regional       42020
4441                  Seattle/Tacoma International       42660
4442                  Chicago O'Hare International       16980
4443                   San Francisco International       41860
4444                          Denver International       19740
4445                          Denver International       19740
4446          George Bush Intercontinental/Houston       26420
4447                               William P Hobby       26420
4448                  Corpus Christi International       18580
4449                     Kansas City International       28140
4450                     San Antonio International       41700
4451                               Kahului Airport       27980
4452                       Nashville International       34980
4453            Metropolitan Oakland International       41860
4454             Bozeman Yellowstone International       14580
4455                       Nashville International       34980
4456                      Reno/Tahoe International       39900
4457                         Memphis International       32820
4458               Washington Dulles International       47900
4459               Washington Dulles International       47900
4460                  Theodore Francis Green State       39300
4461                                      Bob Hope       31080
4462                        McCarran International       29820
4463      California Redwood Coast Humboldt County       21700
4464                            Mahlon Sweet Field       21660
4465          Rogue Valley International - Medford       32780
4466                                    Tri Cities       28420
4467                                 Roberts Field       13460
4468             Charles M. Schulz - Sonoma County       42220
4469                               Tweed New Haven       35300
4470                                      Bob Hope       31080
4471                         Orlando International       36740
4472               Southwest Florida International       15980
4473                                      Bob Hope       31080
4474                                      Bob Hope       31080
4475                               Tweed New Haven       35300
4476                                      Bob Hope       31080
4477                           Tampa International       45300
4478                                 Roberts Field       13460
4479                     Los Angeles International       31080
4480                         Bradley International       25540
4481         Kona International Airport at Keahole       25900
4482                                Joe Foss Field       43620
4483                                 Lihue Airport       28180
4484                       San Diego International       41740
4485      Hartsfield-Jackson Atlanta International       12060
4486       Norman Y. Mineta San Jose International       41940
4487               Aspen Pitkin County Sardy Field       24060
4488                      Reno/Tahoe International       39900
4489          George Bush Intercontinental/Houston       26420
4490                             Montrose Regional       33940
4491                         Eagle County Regional       20780
4492                                  Yampa Valley       44460
4493                  Seattle/Tacoma International       42660
4494                          Tucson International       46060
4495                  Newark Liberty International       35620
4496                           Shreveport Regional       43340
4497            Eglin AFB Destin Fort Walton Beach       18880
4498                         Memphis International       32820
4499                      Fort Wayne International       23060
4500                         Eagle County Regional       20780
4501                      Sacramento International       40900
4502                          Denver International       19740
4503                          Denver International       19740
4504            Metropolitan Oakland International       41860
4505         Louisville Muhammad Ali International       31140
4506                        Appleton International       11540
4507              Phoenix Sky Harbor International       38060
4508                    Philadelphia International       37980
4509             Ronald Reagan Washington National       47900
4510                        Richmond International       40060
4511                 John F. Kennedy International       35620
4512                           Logan International       14460
4513                    Detroit Metro Wayne County       19820
4514                         Orlando International       36740
4515            City of Colorado Springs Municipal       17820
4516                         Orlando International       36740
4517                    Jacksonville International       27260
4518                         Orlando International       36740
4519       Fort Lauderdale-Hollywood International       33100
4520                     Kansas City International       28140
4521       Fort Lauderdale-Hollywood International       33100
4522                     Kansas City International       28140
4523                     Los Angeles International       31080
4524                              Snohomish County       42660
4525                          Denver International       19740
4526                  Chicago Midway International       16980
4527                             Will Rogers World       36420
4528                         Ontario International       40140
4529                            Hilo International       25900
4530                               William P Hobby       26420
4531      Jackson Medgar Wiley Evers International       27140
4532                                      Bob Hope       31080
4533              Sarasota/Bradenton International       35840
4534                           Tampa International       45300
4535                     Kansas City International       28140
4536              John Wayne Airport-Orange County       31080
4537                        Richmond International       40060
4538               Cleveland-Hopkins International       17460
4539              Phoenix Sky Harbor International       38060
4540               Charlotte Douglas International       16740
4541                            Worcester Regional       49340
4542               Dallas/Fort Worth International       19100
4543                        Portland International       38900
4544                         Sitka Rocky Gutierrez        <NA>
4545                 John F. Kennedy International       35620
4546                            Westchester County       35620
4547             Bozeman Yellowstone International       14580
4548                 John F. Kennedy International       35620
4549                  Salt Lake City International       41620
4550                    Detroit Metro Wayne County       19820
4551                    Detroit Metro Wayne County       19820
4552                  Newark Liberty International       35620
4553                          Valley International       15180
4554               Dallas/Fort Worth International       19100
4555                    Myrtle Beach International       34820
4556                         Akron-Canton Regional       10420
4557                                  Lovell Field       16860
4558                      Wilmington International       48900
4559            City of Colorado Springs Municipal       17820
4560                            Boise Air Terminal       14260
4561                          Denver International       19740
4562                          Denver International       19740
4563                          Denver International       19740
4564                     San Antonio International       41700
4565            Baltimore/Washington International       12580
4566         Louisville Muhammad Ali International       31140
4567                  Charleston AFB/International       16700
4568                     Kansas City International       28140
4569                General Mitchell International       33340
4570              Austin - Bergstrom International       12420
4571                      Des Moines International       19780
4572            Metropolitan Oakland International       41860
4573                                      Bob Hope       31080
4574                               William P Hobby       26420
4575                Portland International Jetport       38860
4576              Austin - Bergstrom International       12420
4577             Albuquerque International Sunport       10740
4578       Norman Y. Mineta San Jose International       41940
4579              Austin - Bergstrom International       12420
4580            Savannah/Hilton Head International       42340
4581                             Will Rogers World       36420
4582                     San Antonio International       41700
4583                General Mitchell International       33340
4584              Phoenix Sky Harbor International       38060
4585               Southwest Florida International       15980
4586                          Duluth International       20260
4587              Dane County Regional-Truax Field       31540
4588                           Tampa International       45300
4589                      Palm Beach International       33100
4590                                      Bob Hope       31080
4591     Louis Armstrong New Orleans International       35380
4592                  Chicago O'Hare International       16980
4593             Bozeman Yellowstone International       14580
4594                Luis Munoz Marin International       41980
4595                        Richmond International       40060
4596                    Palm Springs International       40140
4597              Phoenix Sky Harbor International       38060
4598              Phoenix Sky Harbor International       38060
4599       Norman Y. Mineta San Jose International       41940
4600                  Seattle/Tacoma International       42660
4601                    Detroit Metro Wayne County       19820
4602      Hartsfield-Jackson Atlanta International       12060
4603    Central Il Regional Airport at Bloomington       14010
4604                                Trenton Mercer       45940
4605                   Atlantic City International       12100
4606                                  Cyril E King        <NA>
4607               Cleveland-Hopkins International       17460
4608                    Philadelphia International       37980
4609                    Manchester-Boston Regional       31700
4610                          Denver International       19740
4611                      Des Moines International       19780
4612                  Chicago O'Hare International       16980
4613                          Denver International       19740
4614                          Denver International       19740
4615                          Denver International       19740
4616                  Chicago O'Hare International       16980
4617               Washington Dulles International       47900
4618                          Denver International       19740
4619               Washington Dulles International       47900
4620                          Denver International       19740
4621                          Denver International       19740
4622                          Denver International       19740
4623                     Los Angeles International       31080
4624            Metropolitan Oakland International       41860
4625            Baltimore/Washington International       12580
4626                             Will Rogers World       36420
4627                               William P Hobby       26420
4628                General Mitchell International       33340
4629                 Buffalo Niagara International       15380
4630                               Eppley Airfield       36540
4631    Cincinnati/Northern Kentucky International       17140
4632                             Dallas Love Field       19100
4633           Lubbock Preston Smith International       31180
4634      Midland International Air and Space Port       33260
4635                         Wichita Mid-Continent       48620
4636                 Pensacola Gulf Coast Regional       37860
4637                  Chicago Midway International       16980
4638                          Albany International       10580
4639                         Memphis International       32820
4640                             Dallas Love Field       19100
4641                                   Adams Field       30780
4642                  Gerald R. Ford International       24340
4643                     Kansas City International       28140
4644                       San Diego International       41740
4645                           Tampa International       45300
4646                     Kansas City International       28140
4647                General Mitchell International       33340
4648             Ronald Reagan Washington National       47900
4649                            Long Beach Airport       31080
4650               Washington Dulles International       47900
4651                  Chicago O'Hare International       16980
4652                         Norfolk International       47260
4653             Minneapolis-St Paul International       33460
4654                           Tampa International       45300
4655                        Key West International       28580
4656                                  Yampa Valley       44460
4657                  Seattle/Tacoma International       42660
4658                             Montrose Regional       33940
4659                           Tulsa International       46140
4660                     Los Angeles International       31080
4661              John Wayne Airport-Orange County       31080
4662                 Daniel K Inouye International       46520
4663                                  Cyril E King        <NA>
4664                         Bradley International       25540
4665                      Pittsburgh International       38300
4666      Hartsfield-Jackson Atlanta International       12060
4667                    Detroit Metro Wayne County       19820
4668      Hartsfield-Jackson Atlanta International       12060
4669      Hartsfield-Jackson Atlanta International       12060
4670                            Monterey Peninsula       41500
4671                     Great Falls International       24500
4672                    Indianapolis International       26900
4673                               University Park       44300
4674                               Lincoln Airport       30700
4675                Augusta Regional at Bush Field       12260
4676                                    Tri Cities       28700
4677                      Harrisburg International       25420
4678                          Albany International       10580
4679                         Spokane International       44060
4680                            Westchester County       35620
4681              Dane County Regional-Truax Field       31540
4682                     Central Nebraska Regional       24260
4683                  Springfield-Branson National       44180
4684                         Columbia Metropolitan       17900
4685                       Quad City International       19340
4686               Aspen Pitkin County Sardy Field       24060
4687                                  Yampa Valley       44460
4688                                     LaGuardia       35620
4689                       Quad City International       19340
4690                    Manchester-Boston Regional       31700
4691                  Chicago O'Hare International       16980
4692                            Asheville Regional       11700
4693           Ted Stevens Anchorage International       11260
4694                  Seattle/Tacoma International       42660
4695                    Petersburg James A Johnson        <NA>
4696                        Portland International       38900
4697                     Los Angeles International       31080
4698                           Logan International       14460
4699                 John F. Kennedy International       35620
4700                  Salt Lake City International       41620
4701                  Salt Lake City International       41620
4702                    Jacksonville International       27260
4703                      Pittsburgh International       38300
4704                         Bradley International       25540
4705           Baton Rouge Metropolitan/Ryan Field       12940
4706                      Ithaca Tompkins Regional       27060
4707                         Bradley International       25540
4708       Northwest Florida Beaches International       37460
4709                            Monterey Peninsula       41500
4710                               Eppley Airfield       36540
4711                            Santa Fe Municipal       42140
4712                          Denver International       19740
4713                  Chicago O'Hare International       16980
4714                  Chicago O'Hare International       16980
4715                          Denver International       19740
4716                          Denver International       19740
4717                           Tampa International       45300
4718                               William P Hobby       26420
4719                  Chicago Midway International       16980
4720             John Glenn Columbus International       18140
4721            City of Colorado Springs Municipal       17820
4722                       Nashville International       34980
4723                               Eppley Airfield       36540
4724               Greater Rochester International       40380
4725      Hartsfield-Jackson Atlanta International       12060
4726                         Orlando International       36740
4727                        Portland International       38900
4728                          Albany International       10580
4729               Greater Rochester International       40380
4730         Louisville Muhammad Ali International       31140
4731               Washington Dulles International       47900
4732             Ronald Reagan Washington National       47900
4733                        Richmond International       40060
4734           Rick Husband Amarillo International       11100
4735  Brownsville South Padre Island International       15180
4736                          Valley International       15180
4737                         Orlando International       36740
4738                        Key West International       28580
4739                        Brunswick Golden Isles       15260
4740                               University Park       44300
4741                   Northwest Arkansas Regional       22220
4742                         Bradley International       25540
4743                                Kodiak Airport        <NA>
4744                        Portland International       38900
4745           Ted Stevens Anchorage International       11260
4746                       Ketchikan International       28540
4747                           Logan International       14460
4748                                     Mercedita       38660
4749              Austin - Bergstrom International       12420
4750                           Miami International       33100
4751                    Manchester-Boston Regional       31700
4752        Birmingham-Shuttlesworth International       13820
4753               Charlotte Douglas International       16740
4754                          Denver International       19740
4755                                 Meadows Field       12540
4756                           Rapid City Regional       39660
4757                             Flagstaff Pulliam       22380
4758              Dane County Regional-Truax Field       31540
4759         Louisville Muhammad Ali International       31140
4760           Rick Husband Amarillo International       11100
4761             Minneapolis-St Paul International       33460
4762                               Lincoln Airport       30700
4763                     Rhinelander/Oneida County        <NA>
4764                          Denver International       19740
4765                          Idaho Falls Regional       26820
4766             Minneapolis-St Paul International       33460
4767                                    Tri Cities       28420
4768                  Chicago O'Hare International       16980
4769               Washington Dulles International       47900
4770                          Denver International       19740
4771                         Orlando International       36740
4772              Sarasota/Bradenton International       35840
4773                          Tucson International       46060
4774                      Sacramento International       40900
4775                               Kahului Airport       27980
4776                      Pittsburgh International       38300
4777                      Sacramento International       40900
4778            Baltimore/Washington International       12580
4779            Eglin AFB Destin Fort Walton Beach       18880
4780                         Orlando International       36740
4781        Birmingham-Shuttlesworth International       13820
4782                             Montrose Regional       33940
4783                 John F. Kennedy International       35620
4784                 Pensacola Gulf Coast Regional       37860
4785                               Lincoln Airport       30700
4786                 Gulfport-Biloxi International       25060
4787                          Laredo International       29700
4788                        Portland International       38900
4789                         Bradley International       25540
4790                          Hector International       22020
4791                 Buffalo Niagara International       15380
4792                              Henry E. Rohlsen        <NA>
4793               Southwest Florida International       15980
4794                      Harrisburg International       25420
4795                   Northwest Arkansas Regional       22220
4796                      San Luis County Regional       42020
4797             Ronald Reagan Washington National       47900
4798                            Boise Air Terminal       14260
4799                        Portland International       38900
4800                          Hector International       22020
4801                            St George Regional       41100
4802                     Los Angeles International       31080
4803                          Tucson International       46060
4804                              Snohomish County       42660
4805                  Newark Liberty International       35620
4806                      Pittsburgh International       38300
4807                          Denver International       19740
4808                             Will Rogers World       36420
4809                      Pittsburgh International       38300
4810                       Nashville International       34980
4811                       San Diego International       41740
4812                                  Lovell Field       16860
4813                           Evansville Regional       21780
4814                     Charlottesville Albemarle       16820
4815                       Quad City International       19340
4816                           Shreveport Regional       43340
4817        Birmingham-Shuttlesworth International       13820
4818                                    Blue Grass       30460
4819                                  McGhee Tyson       28940
4820                           Logan International       14460
4821                              The Eastern Iowa       16300
4822             Minneapolis-St Paul International       33460
4823                    Philadelphia International       37980
4824              Phoenix Sky Harbor International       38060
4825              Phoenix Sky Harbor International       38060
4826                           Miami International       33100
4827               Charlotte Douglas International       16740
4828                  Seattle/Tacoma International       42660
4829             Bozeman Yellowstone International       14580
4830       Norman Y. Mineta San Jose International       41940
4831                     Los Angeles International       31080
4832                  Theodore Francis Green State       39300
4833                         Spokane International       44060
4834                         Spokane International       44060
4835                  Salt Lake City International       41620
4836                  Salt Lake City International       41620
4837                                   Adams Field       30780
4838                                    Blue Grass       30460
4839                             Central Wisconsin       48140
4840           Wilkes Barre Scranton International       42540
4841             Ronald Reagan Washington National       47900
4842                     Los Angeles International       31080
4843                          Denver International       19740
4844   Huntsville International-Carl T Jones Field       26620
4845                      Pittsburgh International       38300
4846                                Joe Foss Field       43620
4847                     Grand Forks International       24220
4848                           Minot International       33500
4849                           South Bend Regional       43780
4850                  Billings Logan International       13740
4851      California Redwood Coast Humboldt County       21700
4852                 Fresno Yosemite International       23420
4853                          Denver International       19740
4854                         Spokane International       44060
4855                  Newark Liberty International       35620
4856                        McCarran International       29820
4857                  Chicago O'Hare International       16980
4858                  Chicago Midway International       16980
4859                             Dallas Love Field       19100
4860              Austin - Bergstrom International       12420
4861                             Dallas Love Field       19100
4862                                 Lihue Airport       28180
4863                               Eppley Airfield       36540
4864                       Nashville International       34980
4865                          Denver International       19740
4866                               William P Hobby       26420
4867                               William P Hobby       26420
4868             Ronald Reagan Washington National       47900
4869                               William P Hobby       26420
4870            Metropolitan Oakland International       41860
4871                          Gainesville Regional       23540
4872                                    Blue Grass       30460
4873                                        Yeager       16620
4874            Erie International/Tom Ridge Field       21500
4875             Minneapolis-St Paul International       33460
4876                      Harrisburg International       25420
4877       Newport News/Williamsburg International       47260
4878                    Philadelphia International       37980
4879                      Burlington International       15540
4880                      Fort Wayne International       23060
4881                                    Blue Grass       30460
4882           Baton Rouge Metropolitan/Ryan Field       12940
4883                      Alexandria International       10780
4884                               Monroe Regional       33740
4885                    Detroit Metro Wayne County       19820
4886                   Lehigh Valley International       10900
4887                                  Lovell Field       16860
4888                              The Eastern Iowa       16300
4889                  Piedmont Triad International       24660
4890                      Ithaca Tompkins Regional       27060
4891                                Cherry Capital       45900
4892       Green Bay Austin Straubel International       24580
4893                                  McGhee Tyson       28940
4894             Minneapolis-St Paul International       33460
4895                  Chicago O'Hare International       16980
4896                    Philadelphia International       37980
4897               Dallas/Fort Worth International       19100
4898       Norman Y. Mineta San Jose International       41940
4899                            Nantucket Memorial        <NA>
4900                            Nantucket Memorial        <NA>
4901                     Martha's Vineyard Airport       47240
4902                     Martha's Vineyard Airport       47240
4903                            Nantucket Memorial        <NA>
4904                Syracuse Hancock International       45060
4905           Fayetteville Regional/Grannis Field       22180
4906                                Joe Foss Field       43620
4907       Green Bay Austin Straubel International       24580
4908                                  Jackson Hole       27220
4909                    Detroit Metro Wayne County       19820
4910                    Detroit Metro Wayne County       19820
4911             Minneapolis-St Paul International       33460
4912                    Detroit Metro Wayne County       19820
4913                            Nantucket Memorial        <NA>
4914               Dallas/Fort Worth International       19100
4915                          Jack Brooks Regional       13140
4916                      Fort Wayne International       23060
4917                            Manhattan Regional       31740
4918               Gunnison-Crested Butte Regional        <NA>
4919                       Elmira/Corning Regional       21300
4920                     Los Angeles International       31080
4921            City of Colorado Springs Municipal       17820
4922                  Chicago O'Hare International       16980
4923      California Redwood Coast Humboldt County       21700
4924                             Redding Municipal       39820
4925                   San Francisco International       41860
4926                          Sawyer International       32100
4927                       Santa Barbara Municipal       42200
4928                      San Luis County Regional       42020
4929                          Idaho Falls Regional       26820
4930           Ted Stevens Anchorage International       11260
4931          George Bush Intercontinental/Houston       26420
4932                   San Francisco International       41860
4933                    Philadelphia International       37980
4934                     Los Angeles International       31080
4935          George Bush Intercontinental/Houston       26420
4936                  Chicago O'Hare International       16980
4937                      Sacramento International       40900
4938                         Ontario International       40140
4939                            Long Beach Airport       31080
4940                Luis Munoz Marin International       41980
4941                     Kansas City International       28140
4942                                      Bob Hope       31080
4943                         Ontario International       40140
4944                      Reno/Tahoe International       39900
4945                       Nashville International       34980
4946                       Nashville International       34980
4947            Baltimore/Washington International       12580
4948                                     LaGuardia       35620
4949             Ronald Reagan Washington National       47900
4950                         Columbia Metropolitan       17900
4951             Minneapolis-St Paul International       33460
4952                    Presque Isle International        <NA>
4953                                      Bob Hope       31080
4954                        McCarran International       29820
4955                     Martha's Vineyard Airport       47240
4956               Southwest Florida International       15980
4957                      Sacramento International       40900
4958      Hartsfield-Jackson Atlanta International       12060
4959                                    Tri Cities       28420
4960                General Mitchell International       33340
4961               Cleveland-Hopkins International       17460
4962              John Wayne Airport-Orange County       31080
4963           Lubbock Preston Smith International       31180
4964                       Ketchikan International       28540
4965           Ted Stevens Anchorage International       11260
4966                       Ketchikan International       28540
4967                Portland International Jetport       38860
4968                           Tampa International       45300
4969                    Manchester-Boston Regional       31700
4970                  Piedmont Triad International       24660
4971                           Lea County Regional       26020
4972                         Wichita Mid-Continent       48620
4973                       San Diego International       41740
4974                             Dallas Love Field       19100
4975                             Montrose Regional       33940
4976                    Philadelphia International       37980
4977             Minneapolis-St Paul International       33460
4978            Erie International/Tom Ridge Field       21500
4979                  Seattle/Tacoma International       42660
4980                               Kahului Airport       27980
4981                             Dallas Love Field       19100
4982                      Reno/Tahoe International       39900
4983              Austin - Bergstrom International       12420
4984       Norman Y. Mineta San Jose International       41940
4985          Greenville-Spartanburg International       43900
4986                         El Paso International       21340
4987                  Chicago O'Hare International       16980
4988                          Hector International       22020
4989                      Alexandria International       10780
4990                           South Bend Regional       43780
4991               Charlotte Douglas International       16740
4992                           Lea County Regional       26020
4993                                   Bert Mooney       15580
4994           Ted Stevens Anchorage International       11260
4995                              Snohomish County       42660
4996                             Montrose Regional       33940
4997                               Eppley Airfield       36540
4998                      Palm Beach International       33100
4999            Eglin AFB Destin Fort Walton Beach       18880
5000                         Norfolk International       47260
5001                          Bangor International       12620
5002                 Pensacola Gulf Coast Regional       37860
5003            Eglin AFB Destin Fort Walton Beach       18880
5004               Washington Dulles International       47900
5005                      Reno/Tahoe International       39900
5006               Dallas/Fort Worth International       19100
5007                           Logan International       14460
5008                        Portland International       38900
5009                                        Yeager       16620
5010               Cleveland-Hopkins International       17460
5011    Cincinnati/Northern Kentucky International       17140
5012           Ted Stevens Anchorage International       11260
5013                Augusta Regional at Bush Field       12260
5014               Greater Rochester International       40380
5015                Syracuse Hancock International       45060
5016                    Detroit Metro Wayne County       19820
5017                    Glacier Park International       28060
5018                       San Diego International       41740
5019                      Pittsburgh International       38300
5020                         Columbia Metropolitan       17900
5021                            St George Regional       41100
5022                           Shreveport Regional       43340
5023                           King Salmon Airport        <NA>
5024                            Dillingham Airport        <NA>
5025               Aspen Pitkin County Sardy Field       24060
5026              James M Cox/Dayton International       19430
5027           Fayetteville Regional/Grannis Field       22180
5028                             Friedman Memorial       25200
5029                    Manchester-Boston Regional       31700
5030                                 Roberts Field       13460
5031                     Southwest Oregon Regional       18300
5032            City of Colorado Springs Municipal       17820
5033                             Deadhorse Airport        <NA>
5034           Ted Stevens Anchorage International       11260
5035                                  Yampa Valley       44460
5036                      Des Moines International       19780
5037               Charlotte Douglas International       16740
5038       Norman Y. Mineta San Jose International       41940
5039                            Nantucket Memorial        <NA>
5040                          Yellowstone Regional        <NA>
5041                     Great Falls International       24500
5042               Aspen Pitkin County Sardy Field       24060
5043                                Cherry Capital       45900
5044                      Sacramento International       40900
5045             Albuquerque International Sunport       10740
5046                         El Paso International       21340
5047                 Pensacola Gulf Coast Regional       37860
5048                    Philadelphia International       37980
5049                    Petersburg James A Johnson        <NA>
5050           Ted Stevens Anchorage International       11260
5051                    Palm Springs International       40140
5052                           Miami International       33100
5053                         Orlando International       36740
5054                                Trenton Mercer       45940
5055       Green Bay Austin Straubel International       24580
5056                         Orlando International       36740
5057                         Orlando International       36740
5058                          Denver International       19740
5059                        McCarran International       29820
5060                                Joe Foss Field       43620
5061                                   Adams Field       30780
5062                         Orlando International       36740
5063                      Burlington International       15540
5064                      Des Moines International       19780
5065                         El Paso International       21340
5066                                    New Castle       37980
5067                   Northwest Arkansas Regional       22220
5068                           Miami International       33100
5069                           Miami International       33100
5070                           Miami International       33100
5071                  Raleigh-Durham International       39580
5072                        McCarran International       29820
5073                         Orlando International       36740
5074                    Manchester-Boston Regional       31700
5075                    Manchester-Boston Regional       31700
5076               Fort Collins-Loveland Municipal       22660
5077                                Ogden-Hinckley       36260
5078                                      Bob Hope       31080
5079                     Los Angeles International       31080
5080                           Tampa International       45300
5081                       Melbourne International       37340
5082                 Gulfport-Biloxi International       25060
5083                           Tulsa International       46140
5084              John Wayne Airport-Orange County       31080
5085                       Eastern Sierra Regional        <NA>
5086                  Yuma MCAS/Yuma International       49740
5087                            St George Regional       41100
5088                     San Antonio International       41700
5089                               Helena Regional       25740
5090                         Ontario International       40140
5091          George Bush Intercontinental/Houston       26420
5092              Sarasota/Bradenton International       35840
5093                          Valley International       15180
5094                     San Antonio International       41700
5095            Metropolitan Oakland International       41860
5096                  Raleigh-Durham International       39580
5097                               William P Hobby       26420
5098                             Will Rogers World       36420
5099          Greenville-Spartanburg International       43900
5100                General Mitchell International       33340
5101               Charlotte Douglas International       16740
5102               Dallas/Fort Worth International       19100
5103                            Mahlon Sweet Field       21660
5104                   Northwest Arkansas Regional       22220
5105                          Sawyer International       32100
5106                     Los Angeles International       31080
5107                   San Francisco International       41860
5108               Washington Dulles International       47900
5109                    Palm Springs International       40140
5110                     San Antonio International       41700
5111              Sarasota/Bradenton International       35840
5112                         Norfolk International       47260
5113                      Sacramento International       40900
5114                      Wilmington International       48900
5115             Charles M. Schulz - Sonoma County       42220
5116          George Bush Intercontinental/Houston       26420
5117                             Granite Point Ndb        <NA>
5118                          Bangor International       12620
5119                  Chicago O'Hare International       16980
5120          Greenville-Spartanburg International       43900
5121                   San Francisco International       41860
5122                       San Diego International       41740
5123                       Eastern Sierra Regional        <NA>
5124                             Redding Municipal       39820
5125                  Chicago O'Hare International       16980
5126                     Kansas City International       28140
5127       Northwest Florida Beaches International       37460
5128             Minneapolis-St Paul International       33460
5129                          Tucson International       46060
5130       Green Bay Austin Straubel International       24580
5131               Washington Dulles International       47900
5132               Southwest Florida International       15980
5133               Aspen Pitkin County Sardy Field       24060
5134              John Wayne Airport-Orange County       31080
5135                                Bethel Airport        <NA>
5136                 John F. Kennedy International       35620
5137       Fort Lauderdale-Hollywood International       33100
5138             Minneapolis-St Paul International       33460
5139                  Chicago O'Hare International       16980
5140                       Eastern Sierra Regional        <NA>
5141                     Lewiston Nez Perce County       30300
5142                                     LaGuardia       35620
5143                               William P Hobby       26420
5144                  Chicago O'Hare International       16980
5145                    Jacksonville International       27260
5146                         Orlando International       36740
5147                             Dallas Love Field       19100
5148                               William P Hobby       26420
5149                               William P Hobby       26420
5150              Phoenix Sky Harbor International       38060
5151                St Louis Lambert International       41180
5152                     Charlottesville Albemarle       16820
5153             Minneapolis-St Paul International       33460
5154                           South Bend Regional       43780
5155                                  Yampa Valley       44460
5156                          Bangor International       12620
5157                                    Tri Cities       28420
5158           Ted Stevens Anchorage International       11260
5159            Baltimore/Washington International       12580
5160                             Montrose Regional       33940
5161           Ted Stevens Anchorage International       11260
5162                  Gerald R. Ford International       24340
5163                     Martha's Vineyard Airport       47240
5164                          Gainesville Regional       23540
5165                      Fort Wayne International       23060
5166                   San Francisco International       41860
5167          George Bush Intercontinental/Houston       26420
5168             Bozeman Yellowstone International       14580
5169                               Eppley Airfield       36540
5170                            Mahlon Sweet Field       21660
5171                           Montgomery Regional       33860
5172                         Orlando International       36740
5173                General Mitchell International       33340
5174                      Bellingham International       13380
5175                  Gerald R. Ford International       24340
5176                          Valley International       15180
5177                  Charleston AFB/International       16700
5178                         Columbia Metropolitan       17900
5179                        Richmond International       40060
5180                    Myrtle Beach International       34820
5181          Greenville-Spartanburg International       43900
5182                      Houghton County Memorial       26340
5183                        Portland International       38900
5184                        Arnold Palmer Regional       38300
5185                      Fort Wayne International       23060
5186                            Long Beach Airport       31080
5187                  Billings Logan International       13740
5188             John Glenn Columbus International       18140
5189                        Portland International       38900
5190      Hartsfield-Jackson Atlanta International       12060
5191                       Santa Barbara Municipal       42200
5192                               William P Hobby       26420
5193                      Golden Triangle Regional       18060
5194                    Detroit Metro Wayne County       19820
5195                      Pittsburgh International       38300
5196                    Philadelphia International       37980
5197                      Des Moines International       19780
5198              Dane County Regional-Truax Field       31540
5199                  Piedmont Triad International       24660
5200                                  Lovell Field       16860
5201     Louis Armstrong New Orleans International       35380
5202                                        Yeager       16620
5203                Luis Munoz Marin International       41980
5204                      San Luis County Regional       42020
5205           Ted Stevens Anchorage International       11260
5206                      San Luis County Regional       42020
5207                            Asheville Regional       11700
5208                                  Jackson Hole       27220
5209                 John F. Kennedy International       35620
5210                       Rochester International       40340
5211                         Eagle County Regional       20780
5212                           La Crosse Municipal       29100
5213                        Portland International       38900
5214                 John F. Kennedy International       35620
5215                      Harrisburg International       25420
5216                    Myrtle Beach International       34820
5217                                          Ford       27020
5218                    Palm Springs International       40140
5219       Northwest Florida Beaches International       37460
5220                                      Bob Hope       31080
5221                             Will Rogers World       36420
5222                St Louis Lambert International       41180
5223                             Pangborn Memorial       48300
5224                        Portland International       38900
5225                  Springfield-Branson National       44180
5226              John Wayne Airport-Orange County       31080
5227     Louis Armstrong New Orleans International       35380
5228                       Quad City International       19340
5229                         Wichita Mid-Continent       48620
5230                                    Tri Cities       28700
5231                         Bradley International       25540
5232                           La Crosse Municipal       29100
5233                    Detroit Metro Wayne County       19820
5234         Kona International Airport at Keahole       25900
5235        Birmingham-Shuttlesworth International       13820
5236                            Boise Air Terminal       14260
5237            Tri-State/Milton J. Ferguson Field       26580
5238                   Lehigh Valley International       10900
5239              Sarasota/Bradenton International       35840
5240        Salisbury-Ocean City/Wicomico Regional       41540
5241           Ted Stevens Anchorage International       11260
5242                  Newark Liberty International       35620
5243                       San Diego International       41740
5244                  Chicago O'Hare International       16980
5245                  Yuma MCAS/Yuma International       49740
5246                           Logan International       14460
5247                          Albany International       10580
5248                Luis Munoz Marin International       41980
5249                            Lafayette Regional       29180
5250                            Boise Air Terminal       14260
5251                   San Francisco International       41860
5252          John Murtha Johnstown-Cambria County       27780
5253                            Monterey Peninsula       41500
5254               Cleveland-Hopkins International       17460
5255    Central Il Regional Airport at Bloomington       14010
5256                     Charlottesville Albemarle       16820
5257              Roswell International Air Center       40740
5258               Charlotte Douglas International       16740
5259              San Angelo Regional/Mathis Field       41660
5260                         Orlando International       36740
5261                              Kearney Regional       28260
5262                              Henry E. Rohlsen        <NA>
5263                               Kahului Airport       27980
5264                    Petersburg James A Johnson        <NA>
5265                                   Adams Field       30780
5266          Sheppard AFB/Wichita Falls Municipal       48660
5267                             Dallas Love Field       19100
5268              Austin - Bergstrom International       12420
5269                         Akron-Canton Regional       10420
5270             Charles M. Schulz - Sonoma County       42220
5271           Lubbock Preston Smith International       31180
5272              Austin - Bergstrom International       12420
5273                    Myrtle Beach International       34820
5274                    Philadelphia International       37980
5275                      Des Moines International       19780
5276          George Bush Intercontinental/Houston       26420
5277                      Pittsburgh International       38300
5278                              Kearney Regional       28260
5279                                  Jackson Hole       27220
5280                                      Bob Hope       31080
5281                  Newark Liberty International       35620
5282                         Long Island MacArthur       35620
5283                       Ketchikan International       28540
5284             Albuquerque International Sunport       10740
5285       Green Bay Austin Straubel International       24580
5286              Phoenix Sky Harbor International       38060
5287                             Friedman Memorial       25200
5288                           South Bend Regional       43780
5289       Northwest Florida Beaches International       37460
5290                         Eagle County Regional       20780
5291           Wilkes Barre Scranton International       42540
5292                               Monroe Regional       33740
5293                    Presque Isle International        <NA>
5294                             Greenbrier Valley        <NA>
5295                             Friedman Memorial       25200
5296                St Louis Lambert International       41180
5297                 Chippewa County International       42300
5298                Roanoke Regional/Woodrum Field       40220
5299                 Pensacola Gulf Coast Regional       37860
5300               Dallas/Fort Worth International       19100
5301                  Chicago O'Hare International       16980
5302          George Bush Intercontinental/Houston       26420
5303            Metropolitan Oakland International       41860
5304                    Detroit Metro Wayne County       19820
5305           Ted Stevens Anchorage International       11260
5306                    Detroit Metro Wayne County       19820
5307               Dallas/Fort Worth International       19100
5308                           Miami International       33100
5309              Austin - Bergstrom International       12420
5310                    Philadelphia International       37980
5311               Charlotte Douglas International       16740
5312              Phoenix Sky Harbor International       38060
5313              Phoenix Sky Harbor International       38060
5314              Phoenix Sky Harbor International       38060
5315                          Juneau International       27940
5316                        Portland International       38900
5317                  Seattle/Tacoma International       42660
5318                       San Diego International       41740
5319             Minneapolis-St Paul International       33460
5320                                     LaGuardia       35620
5321                    Detroit Metro Wayne County       19820
5322                  Salt Lake City International       41620
5323             Ronald Reagan Washington National       47900
5324               Charlotte Douglas International       16740
5325             Minneapolis-St Paul International       33460
5326                  Chicago O'Hare International       16980
5327                        Portland International       38900
5328                  Newark Liberty International       35620
5329               Washington Dulles International       47900
5330                          Denver International       19740
5331                   San Francisco International       41860
5332                          Denver International       19740
5333                          Denver International       19740
5334               Washington Dulles International       47900
5335                   San Francisco International       41860
5336                             Dallas Love Field       19100
5337                          Denver International       19740
5338                               William P Hobby       26420
5339              Phoenix Sky Harbor International       38060
5340                  Chicago Midway International       16980
5341            Baltimore/Washington International       12580
5342                             Dallas Love Field       19100
5343     Louis Armstrong New Orleans International       35380
5344                             Dallas Love Field       19100
5345                             Dallas Love Field       19100
5346                St Louis Lambert International       41180
5347                St Louis Lambert International       41180
5348                               William P Hobby       26420
5349                         Orlando International       36740
5350                       Nashville International       34980
5351            Baltimore/Washington International       12580
5352                St Louis Lambert International       41180
5353                     Kansas City International       28140
5354                  Chicago Midway International       16980
5355            Baltimore/Washington International       12580
5356                St Louis Lambert International       41180
5357                               William P Hobby       26420
5358                  Chicago Midway International       16980
5359                     San Antonio International       41700
5360                       Nashville International       34980
5361                        McCarran International       29820
5362      Hartsfield-Jackson Atlanta International       12060
5363                St Louis Lambert International       41180
5364                         Orlando International       36740
5365             Albuquerque International Sunport       10740
5366     Louis Armstrong New Orleans International       35380
5367                               William P Hobby       26420
5368              Austin - Bergstrom International       12420
5369                             Dallas Love Field       19100
5370      Hartsfield-Jackson Atlanta International       12060
5371            Baltimore/Washington International       12580
5372            Baltimore/Washington International       12580
5373                     Kansas City International       28140
5374                             Dallas Love Field       19100
5375                                      Bob Hope       31080
5376                St Louis Lambert International       41180
5377       Norman Y. Mineta San Jose International       41940
5378                        McCarran International       29820
5379            Metropolitan Oakland International       41860
5380       Norman Y. Mineta San Jose International       41940
5381                      Sacramento International       40900
5382                      Sacramento International       40900
5383                             Dallas Love Field       19100
5384                         Ontario International       40140
5385                                      Bob Hope       31080
5386                           Tampa International       45300
5387                       Nashville International       34980
5388              Austin - Bergstrom International       12420
5389                                      Bob Hope       31080
5390                                      Bob Hope       31080
5391                            Long Beach Airport       31080
5392                    Indianapolis International       26900
5393              Austin - Bergstrom International       12420
5394                        McCarran International       29820
5395             Ronald Reagan Washington National       47900
5396                         Orlando International       36740
5397          George Bush Intercontinental/Houston       26420
5398                        McCarran International       29820
5399                          Denver International       19740
5400                  Newark Liberty International       35620
5401                  Chicago Midway International       16980
5402              Austin - Bergstrom International       12420
5403                  Newark Liberty International       35620
5404                           Tampa International       45300
5405              Austin - Bergstrom International       12420
5406            Metropolitan Oakland International       41860
5407                     Kansas City International       28140
5408               Dallas/Fort Worth International       19100
5409                                     LaGuardia       35620
5410                  Newark Liberty International       35620
5411                  Salt Lake City International       41620
5412     Louis Armstrong New Orleans International       35380
5413                    Myrtle Beach International       34820
5414            Metropolitan Oakland International       41860
5415                           Logan International       14460
5416                  Chicago Midway International       16980
5417                         Orlando International       36740
5418                           Logan International       14460
5419              Austin - Bergstrom International       12420
5420                     Los Angeles International       31080
5421                     Kansas City International       28140
5422                           Montgomery Regional       33860
5423                          Denver International       19740
5424                       San Diego International       41740
5425                  Chicago Midway International       16980
5426          George Bush Intercontinental/Houston       26420
5427                  Capital Region International       29620
5428                   San Francisco International       41860
5429                St Louis Lambert International       41180
5430                          Juneau International       27940
5431                      Palm Beach International       33100
5432                             Central Wisconsin       48140
5433                            Asheville Regional       11700
5434              James M Cox/Dayton International       19430
5435                            Santa Fe Municipal       42140
5436                           La Crosse Municipal       29100
5437                               Robert Gray AAF       28660
5438                               Joplin Regional       27900
5439                  Seattle/Tacoma International       42660
5440             Ronald Reagan Washington National       47900
5441                         Sitka Rocky Gutierrez        <NA>
5442                    Philadelphia International       37980
5443                                      Bob Hope       31080
5444                          Gainesville Regional       23540
5445                          Denver International       19740
5446                              Salina Municipal       41460
5447                  Billings Logan International       13740
5448                         Orlando International       36740
5449                  Chicago O'Hare International       16980
5450                  Chicago O'Hare International       16980
5451                       Durango La Plata County       20420
5452                             Valdosta Regional       46660
5453                     Coastal Carolina Regional       35100
5454                               Muskegon County       34740
5455                              Laramie Regional       29660
5456                                          Ford       27020
5457           Ted Stevens Anchorage International       11260
5458                            Watertown Regional       47980
5459                               Pitt Greenville       24780
5460                         Columbus Metropolitan       17980
5461                             MBS International       40980
5462                University of Illinois/Willard       16580
5463                                Albert J Ellis       27340
5464                 Pensacola Gulf Coast Regional       37860
5465        Greater Binghamton/Edwin A. Link Field       13780
5466                             MBS International       40980
5467                      Harrisburg International       25420
5468          Yakima Air Terminal/McAllister Field       49420
5469                                Albert J Ellis       27340
5470           Fayetteville Regional/Grannis Field       22180
5471         Francisco C. Ada Saipan International        <NA>
5472          Kalamazoo/Battle Creek International       28020
5473                       Abraham Lincoln Capital       44100
5474                     Lewiston Nez Perce County       30300
5475      California Redwood Coast Humboldt County       21700
5476                               University Park       44300
5477                               Dothan Regional       37120
5478                         Lake Charles Regional       29340
5479                    Petersburg James A Johnson        <NA>
5480                  Liberal Mid-America Regional       30580
5481     Pellston Regional Airport of Emmet County        <NA>
5482                              Wrangell Airport        <NA>
5483                             Florence Regional       22500
5484                       Watertown International       48060
5485                              Bemidji Regional       13420
5486                             Aberdeen Regional       10100
5487          Kalamazoo/Battle Creek International       28020
5488                               Robert Gray AAF       28660
5489                      Gillette Campbell County       23940
5490                             Victoria Regional       47020
5491                            Pocatello Regional       38540
5492                               Vernal Regional       46860
5493                          Duluth International       20260
5494                                 Hays Regional       25700
5495        Lynchburg Regional/Preston Glenn Field       31340
5496                        Alpena County Regional       10980
5497                             Riverton Regional       40180
5498                                     Key Field       32940
5499      California Redwood Coast Humboldt County       21700
5500                Rock Springs Sweetwater County       40540
5501                           Fort Smith Regional       22900
5502                                    Tri Cities       28420
5503                      San Luis County Regional       42020
5504          Eastern Oregon Regional at Pendleton       25840
5505                              Easterwood Field       17780
5506                      Bellingham International       13380
5507          Sioux Gateway Brig Gen Bud Day Field       43580
5508                              Abilene Regional       10180
5509                              Dubuque Regional       20220
5510                                Toledo Express       45780
5511                      Alexandria International       10780
5512                          Devils Lake Regional        <NA>
5513                   North Central West Virginia       17220
5514                       Rochester International       40340
5515         Prescott Regional Ernest A Love Field       39150
5516                               Yakutat Airport        <NA>
5517                                  Delta County       21540
5518                         Tyler Pounds Regional       46340
5519          Joslin Field - Magic Valley Regional       46300
5520                     Plattsburgh International       38460
5521                               Sheridan County       43260
5522                    Southwest Georgia Regional       10500
5523                                 Lihue Airport       28180
5524                                  Delta County       21540
5525                           East Texas Regional       30980
5526   Huntsville International-Carl T Jones Field       26620
5527                            St George Regional       41100
5528    Central Il Regional Airport at Bloomington       14010
5529                                 Mile 13 Field        <NA>
5530                               Monroe Regional       33740
5531                               Pierre Regional       38180
5532                             Canyonlands Field        <NA>
5533                                  Nome Airport        <NA>
5534                           Falls International        <NA>
5535                       Nashville International       34980
5536       Fort Lauderdale-Hollywood International       33100
5537             Minneapolis-St Paul International       33460
5538                           Tulsa International       46140
5539                     San Antonio International       41700
5540               Southwest Florida International       15980
5541                    Jacksonville International       27260
5542                          Denver International       19740
5543                   San Francisco International       41860
5544             Ronald Reagan Washington National       47900
5545                St Louis Lambert International       41180
5546                          Tucson International       46060
5547                       San Diego International       41740
5548              Austin - Bergstrom International       12420
5549       Norman Y. Mineta San Jose International       41940
5550     Louis Armstrong New Orleans International       35380
5551                         Ontario International       40140
5552                       Nashville International       34980
5553                    Palm Springs International       40140
5554              John Wayne Airport-Orange County       31080
5555                            Long Beach Airport       31080
5556                      Sacramento International       40900
5557                           Tampa International       45300
5558                  Chicago Midway International       16980
5559      Hartsfield-Jackson Atlanta International       12060
5560                             Dallas Love Field       19100
5561                    Manchester-Boston Regional       31700
5562                  Chicago Midway International       16980
5563                  Chicago Midway International       16980
5564                       Nashville International       34980
5565                       San Diego International       41740
5566            Baltimore/Washington International       12580
5567                       Nashville International       34980
5568            Baltimore/Washington International       12580
5569                           Tampa International       45300
5570       Fort Lauderdale-Hollywood International       33100
5571            City of Colorado Springs Municipal       17820
5572              Austin - Bergstrom International       12420
5573     Louis Armstrong New Orleans International       35380
5574                     San Antonio International       41700
5575                         Ontario International       40140
5576              Austin - Bergstrom International       12420
5577                          Denver International       19740
5578                            Long Beach Airport       31080
5579                      Sacramento International       40900
5580                           Miami International       33100
5581                           Tampa International       45300
5582     Louis Armstrong New Orleans International       35380
5583                                      Bob Hope       31080
5584                      Sacramento International       40900
5585     Louis Armstrong New Orleans International       35380
5586              Phoenix Sky Harbor International       38060
5587                             Dallas Love Field       19100
5588                  Raleigh-Durham International       39580
5589                     San Antonio International       41700
5590              John Wayne Airport-Orange County       31080
5591                     Los Angeles International       31080
5592                                      Bob Hope       31080
5593                           Miami International       33100
5594                       San Diego International       41740
5595                   San Francisco International       41860
5596                       Nashville International       34980
5597     Louis Armstrong New Orleans International       35380
5598                                      Bob Hope       31080
5599                                      Bob Hope       31080
5600                       Nashville International       34980
5601                     Kansas City International       28140
5602                            Long Beach Airport       31080
5603                         Ontario International       40140
5604             John Glenn Columbus International       18140
5605                    Myrtle Beach International       34820
5606                           Miami International       33100
5607                  Chicago O'Hare International       16980
5608                               William P Hobby       26420
5609              Phoenix Sky Harbor International       38060
5610                       Nashville International       34980
5611                            Long Beach Airport       31080
5612                St Louis Lambert International       41180
5613                               William P Hobby       26420
5614              John Wayne Airport-Orange County       31080
5615               Southwest Florida International       15980
5616              John Wayne Airport-Orange County       31080
5617                     Kansas City International       28140
5618                    Indianapolis International       26900
5619                     San Antonio International       41700
5620                    Jacksonville International       27260
5621                      Sacramento International       40900
5622                         Orlando International       36740
5623                       Nashville International       34980
5624                                     LaGuardia       35620
5625                    Philadelphia International       37980
5626                             Will Rogers World       36420
5627                                     LaGuardia       35620
5628                        Portland International       38900
5629                          Denver International       19740
5630                     Kansas City International       28140
5631                        McCarran International       29820
5632                St Louis Lambert International       41180
5633                             Dallas Love Field       19100
5634                  Seattle/Tacoma International       42660
5635       Norman Y. Mineta San Jose International       41940
5636                                     LaGuardia       35620
5637             John Glenn Columbus International       18140
5638                     Kansas City International       28140
5639                           Miami International       33100
5640                       San Diego International       41740
5641                  Raleigh-Durham International       39580
5642              Phoenix Sky Harbor International       38060
5643                 Fresno Yosemite International       23420
5644                             Dallas Love Field       19100
5645            Baltimore/Washington International       12580
5646               Dallas/Fort Worth International       19100
5647               Southwest Florida International       15980
5648                       Nashville International       34980
5649               Charlotte Douglas International       16740
5650             Ronald Reagan Washington National       47900
5651                     San Antonio International       41700
5652             John Glenn Columbus International       18140
5653            Metropolitan Oakland International       41860
5654                St Louis Lambert International       41180
5655                           Miami International       33100
5656                     Los Angeles International       31080
5657       Fort Lauderdale-Hollywood International       33100
5658                Luis Munoz Marin International       41980
5659                                        Yeager       16620
5660                Syracuse Hancock International       45060
5661                         Ontario International       40140
5662                               Yakutat Airport        <NA>
5663                                          Adak        <NA>
5664                              Wrangell Airport        <NA>
5665                           Cedar City Regional       16260
5666                          Bangor International       12620
5667                              Wrangell Airport        <NA>
5668                             Greenbrier Valley        <NA>
5669                            Watertown Regional       47980
5670                             Canyonlands Field        <NA>
5671                    Myrtle Beach International       34820
5672                            Mahlon Sweet Field       21660
5673                      Alexandria International       10780
5674                      Ogdensburg International       36300
5675                    Shenandoah Valley Regional       44420
5676                             Waterloo Regional       47940
5677                                 Elko Regional       21220
5678      Midland International Air and Space Port       33260
5679                         Akron-Canton Regional       10420
5680                          Valley International       15180
5681          Sioux Gateway Brig Gen Bud Day Field       43580
5682  Waynesville-St. Robert Regional Forney Field       22780
5683                         Norfolk International       47260
5684                               Joplin Regional       27900
5685                    Palm Springs International       40140
5686                               Pueblo Memorial       39380
5687                     Lawton-Fort Sill Regional       30020
5688                               Joplin Regional       27900
5689    Cincinnati/Northern Kentucky International       17140
5690                     Charlottesville Albemarle       16820
5691                    Myrtle Beach International       34820
5692                            Bismarck Municipal       13900
5693        General Downing - Peoria International       37900
5694                         Del Rio International       19620
5695        San Luis Valley Regional/Bergman Field        <NA>
5696                              Salina Municipal       41460
5697                           Dodge City Regional       19980
5698                      Chippewa Valley Regional       20740
5699           Cheyenne Regional/Jerry Olson Field       16940
5700                      Fort Wayne International       23060
5701                         El Paso International       21340
5702                 Chippewa County International       42300
5703                    Shenandoah Valley Regional       44420
5704                      Reno/Tahoe International       39900
5705                               University Park       44300
5706                                Range Regional       20260
5707                            Boise Air Terminal       14260
5708           Casper/Natrona County International       16220
5709                            Hilo International       25900
5710         Veterans Airport of Southern Illinois       16060
5711 Western Neb. Regional/William B. Heilig Field       42420
5712                                 Lihue Airport       28180
5713         Veterans Airport of Southern Illinois       16060
5714                 Quincy Regional-Baldwin Field       39500
5715         Prescott Regional Ernest A Love Field       39150
5716                      Antonio Rivera Rodriguez        <NA>
5717                           Kirksville Regional       28860
5718                              Barkley Regional       37140
5719                                    Blue Grass       30460
5720                           Fort Dodge Regional       22700
5721                                 Waco Regional       47380
5722          Greenville-Spartanburg International       43900
5723                         Ontario International       40140
5724     Louis Armstrong New Orleans International       35380
5725                    Manchester-Boston Regional       31700
5726                         Spokane International       44060
5727             Bozeman Yellowstone International       14580
5728                               Eppley Airfield       36540
5729                   San Francisco International       41860
5730                                  Yampa Valley       44460
5731                                      Bob Hope       31080
5732                Luis Munoz Marin International       41980
5733                     San Antonio International       41700
5734                           Tampa International       45300
5735                           Tampa International       45300
5736               Southwest Florida International       15980
5737                      Sacramento International       40900
5738                     Kansas City International       28140
5739                   Daytona Beach International       19660
5740                                Cherry Capital       45900
5741                               Lincoln Airport       30700
5742              Sarasota/Bradenton International       35840
5743                    Jacksonville International       27260
5744       Fort Lauderdale-Hollywood International       33100
5745               Washington Dulles International       47900
5746                         El Paso International       21340
5747                                      Bob Hope       31080
5748                                   Adams Field       30780
5749              Sarasota/Bradenton International       35840
5750              Austin - Bergstrom International       12420
5751                         Spokane International       44060
5752                           Tampa International       45300
5753             Albuquerque International Sunport       10740
5754                 Fresno Yosemite International       23420
5755                          Tucson International       46060
5756                                     LaGuardia       35620
5757                         El Paso International       21340
5758                           Tulsa International       46140
5759               Southwest Florida International       15980
5760                         El Paso International       21340
5761     Louis Armstrong New Orleans International       35380
5762     Louis Armstrong New Orleans International       35380
5763                 Pensacola Gulf Coast Regional       37860
5764                     San Antonio International       41700
5765                         Wichita Mid-Continent       48620
5766                         El Paso International       21340
5767             Albuquerque International Sunport       10740
5768              Sarasota/Bradenton International       35840
5769              Austin - Bergstrom International       12420
5770                Luis Munoz Marin International       41980
5771                Luis Munoz Marin International       41980
5772                        Richmond International       40060
5773                          Tucson International       46060
5774                          Tucson International       46060
5775             Albuquerque International Sunport       10740
5776            Metropolitan Oakland International       41860
5777                     Kansas City International       28140
5778                                      Bob Hope       31080
5779                Luis Munoz Marin International       41980
5780                         El Paso International       21340
5781                               Eppley Airfield       36540
5782                      Reno/Tahoe International       39900
5783                                  Yampa Valley       44460
5784                  Theodore Francis Green State       39300
5785                         Wichita Mid-Continent       48620
5786                             Will Rogers World       36420
5787                    Palm Springs International       40140
5788                          Denver International       19740
5789                       Santa Barbara Municipal       42200
5790                          Albany International       10580
5791               Southwest Florida International       15980
5792             Bozeman Yellowstone International       14580
5793                             Friedman Memorial       25200
5794                  Charleston AFB/International       16700
5795                                      Bob Hope       31080
5796                            Boise Air Terminal       14260
5797                  Seattle/Tacoma International       42660
5798                        Portland International       38900
5799                            Long Beach Airport       31080
5800                   North Central West Virginia       17220
5801                        McCarran International       29820
5802                                  Yampa Valley       44460
5803     Louis Armstrong New Orleans International       35380
5804             Ronald Reagan Washington National       47900
5805             John Glenn Columbus International       18140
5806                     San Antonio International       41700
5807                      Reno/Tahoe International       39900
5808          George Bush Intercontinental/Houston       26420
5809            Baltimore/Washington International       12580
5810                           South Bend Regional       43780
5811            Metropolitan Oakland International       41860
5812        Birmingham-Shuttlesworth International       13820
5813             Bozeman Yellowstone International       14580
5814             Albuquerque International Sunport       10740
5815                                      Bob Hope       31080
5816               Southwest Florida International       15980
5817                            Mahlon Sweet Field       21660
5818                  Theodore Francis Green State       39300
5819          Greenville-Spartanburg International       43900
5820                      Des Moines International       19780
5821        Birmingham-Shuttlesworth International       13820
5822                   Northwest Arkansas Regional       22220
5823                               Eppley Airfield       36540
5824            City of Colorado Springs Municipal       17820
5825       Fort Lauderdale-Hollywood International       33100
5826                Luis Munoz Marin International       41980
5827                    Indianapolis International       26900
5828                  Theodore Francis Green State       39300
5829            City of Colorado Springs Municipal       17820
5830                     San Antonio International       41700
5831                          Tucson International       46060
5832           Rick Husband Amarillo International       11100
5833                           Miami International       33100
5834                                  Yampa Valley       44460
5835              John Wayne Airport-Orange County       31080
5836                           Tampa International       45300
5837           Lubbock Preston Smith International       31180
5838                 Buffalo Niagara International       15380
5839             John Glenn Columbus International       18140
5840                         El Paso International       21340
5841                Luis Munoz Marin International       41980
5842               Cleveland-Hopkins International       17460
5843            Metropolitan Oakland International       41860
5844       Norman Y. Mineta San Jose International       41940
5845                       San Diego International       41740
5846                      Sacramento International       40900
5847       Northwest Florida Beaches International       37460
5848                        Richmond International       40060
5849                       San Diego International       41740
5850                               Eppley Airfield       36540
5851          Greenville-Spartanburg International       43900
5852       Fort Lauderdale-Hollywood International       33100
5853                         Memphis International       32820
5854                           Logan International       14460
5855                         Bradley International       25540
5856                               William P Hobby       26420
5857                           Tulsa International       46140
5858           Lubbock Preston Smith International       31180
5859                          Albany International       10580
5860                Syracuse Hancock International       45060
5861                  Salt Lake City International       41620
5862                               Eppley Airfield       36540
5863                 Buffalo Niagara International       15380
5864                             Will Rogers World       36420
5865                          Valley International       15180
5866                   San Francisco International       41860
5867       Norman Y. Mineta San Jose International       41940
5868                      Sacramento International       40900
5869                       Santa Barbara Municipal       42200
5870                          Albany International       10580
5871            Metropolitan Oakland International       41860
5872             Minneapolis-St Paul International       33460
5873     Louis Armstrong New Orleans International       35380
5874                                     LaGuardia       35620
5875                         Norfolk International       47260
5876             John Glenn Columbus International       18140
5877                           Tulsa International       46140
5878                     Kansas City International       28140
5879                        McCarran International       29820
5880                       San Diego International       41740
5881              John Wayne Airport-Orange County       31080
5882                           Logan International       14460
5883                St Louis Lambert International       41180
5884           Rick Husband Amarillo International       11100
5885                     San Antonio International       41700
5886                                     LaGuardia       35620
5887                           Miami International       33100
5888             John Glenn Columbus International       18140
5889              Sarasota/Bradenton International       35840
5890                       San Diego International       41740
5891                      Reno/Tahoe International       39900
5892                         Spokane International       44060
5893                    Palm Springs International       40140
5894             Ronald Reagan Washington National       47900
5895            Metropolitan Oakland International       41860
5896                      Reno/Tahoe International       39900
5897                            Long Beach Airport       31080
5898                    Palm Springs International       40140
5899                Portland International Jetport       38860
5900                            Boise Air Terminal       14260
5901            Metropolitan Oakland International       41860
5902                   San Francisco International       41860
5903     Louis Armstrong New Orleans International       35380
5904       Norman Y. Mineta San Jose International       41940
5905       Northwest Florida Beaches International       37460
5906           Lubbock Preston Smith International       31180
5907     Louis Armstrong New Orleans International       35380
5908                             Will Rogers World       36420
5909                Luis Munoz Marin International       41980
5910            Baltimore/Washington International       12580
5911            City of Colorado Springs Municipal       17820
5912                            Long Beach Airport       31080
5913                       San Diego International       41740
5914                      Palm Beach International       33100
5915                           Tampa International       45300
5916                           Tulsa International       46140
5917                     Kansas City International       28140
5918               Southwest Florida International       15980
5919                 Pensacola Gulf Coast Regional       37860
5920                  Gerald R. Ford International       24340
5921                         Spokane International       44060
5922                            Long Beach Airport       31080
5923                                      Bob Hope       31080
5924                     San Antonio International       41700
5925              Sarasota/Bradenton International       35840
5926                  Salt Lake City International       41620
5927                         Orlando International       36740
5928                               Eppley Airfield       36540
5929              John Wayne Airport-Orange County       31080
5930                      Sacramento International       40900
5931                               Eppley Airfield       36540
5932             John Glenn Columbus International       18140
5933                             Will Rogers World       36420
5934                      Palm Beach International       33100
5935                    Jacksonville International       27260
5936                     San Antonio International       41700
5937                    Jacksonville International       27260
5938           Lubbock Preston Smith International       31180
5939                       Nashville International       34980
5940                                Joe Foss Field       43620
5941                       Nashville International       34980
5942                     San Antonio International       41700
5943       Norman Y. Mineta San Jose International       41940
5944                      Reno/Tahoe International       39900
5945              John Wayne Airport-Orange County       31080
5946             Albuquerque International Sunport       10740
5947                         Bradley International       25540
5948                           Tulsa International       46140
5949                            Boise Air Terminal       14260
5950                          Tucson International       46060
5951                  Raleigh-Durham International       39580
5952            Savannah/Hilton Head International       42340
5953                           Tulsa International       46140
5954                           Miami International       33100
5955       Norman Y. Mineta San Jose International       41940
5956                     San Antonio International       41700
5957       Norman Y. Mineta San Jose International       41940
5958                          Tucson International       46060
5959                General Mitchell International       33340
5960                       San Diego International       41740
5961            City of Colorado Springs Municipal       17820
5962                           Logan International       14460
5963                         Norfolk International       47260
5964                          Valley International       15180
5965                         Ontario International       40140
5966                            Boise Air Terminal       14260
5967                 Pensacola Gulf Coast Regional       37860
5968                                      Bob Hope       31080
5969              John Wayne Airport-Orange County       31080
5970                             Will Rogers World       36420
5971                           Logan International       14460
5972                    Myrtle Beach International       34820
5973             John Glenn Columbus International       18140
5974                         Ontario International       40140
5975         Louisville Muhammad Ali International       31140
5976                           Tulsa International       46140
5977                         Bradley International       25540
5978              Sarasota/Bradenton International       35840
5979     Louis Armstrong New Orleans International       35380
5980                        Richmond International       40060
5981                     San Antonio International       41700
5982                 Fresno Yosemite International       23420
5983               Cleveland-Hopkins International       17460
5984        Birmingham-Shuttlesworth International       13820
5985                      Sacramento International       40900
5986                                     LaGuardia       35620
5987                         Norfolk International       47260
5988                    Detroit Metro Wayne County       19820
5989                                     LaGuardia       35620
5990                         Bradley International       25540
5991                             Will Rogers World       36420
5992                         Orlando International       36740
5993                   San Francisco International       41860
5994                               Lincoln Airport       30700
5995                St Louis Lambert International       41180
5996       Northwest Florida Beaches International       37460
5997             Albuquerque International Sunport       10740
5998                         Ontario International       40140
5999              John Wayne Airport-Orange County       31080
6000                         Eagle County Regional       20780
6001       Norman Y. Mineta San Jose International       41940
6002                        McCarran International       29820
6003             Bozeman Yellowstone International       14580
6004                         Long Island MacArthur       35620
6005                   San Francisco International       41860
6006                    Myrtle Beach International       34820
6007                     Kansas City International       28140
6008                           Miami International       33100
6009        Birmingham-Shuttlesworth International       13820
6010                  Theodore Francis Green State       39300
6011         Louisville Muhammad Ali International       31140
6012           Lubbock Preston Smith International       31180
6013                               Eppley Airfield       36540
6014                     Kansas City International       28140
6015                         Spokane International       44060
6016                                   Adams Field       30780
6017                  Gerald R. Ford International       24340
6018                       San Diego International       41740
6019                          Valley International       15180
6020       Fort Lauderdale-Hollywood International       33100
6021            Metropolitan Oakland International       41860
6022                General Mitchell International       33340
6023             Albuquerque International Sunport       10740
6024             John Glenn Columbus International       18140
6025                         Bradley International       25540
6026            City of Colorado Springs Municipal       17820
6027       Norman Y. Mineta San Jose International       41940
6028            Eglin AFB Destin Fort Walton Beach       18880
6029                               William P Hobby       26420
6030                     Los Angeles International       31080
6031                         El Paso International       21340
6032                                     LaGuardia       35620
6033                  Salt Lake City International       41620
6034                St Louis Lambert International       41180
6035             John Glenn Columbus International       18140
6036               Cleveland-Hopkins International       17460
6037                  Raleigh-Durham International       39580
6038                       San Diego International       41740
6039                    Jacksonville International       27260
6040               Greater Rochester International       40380
6041                         Spokane International       44060
6042                      Reno/Tahoe International       39900
6043       Fort Lauderdale-Hollywood International       33100
6044                St Louis Lambert International       41180
6045                 Buffalo Niagara International       15380
6046                        McCarran International       29820
6047     Louis Armstrong New Orleans International       35380
6048                    Detroit Metro Wayne County       19820
6049            Baltimore/Washington International       12580
6050                    Jacksonville International       27260
6051                            Mahlon Sweet Field       21660
6052                 Fresno Yosemite International       23420
6053              Austin - Bergstrom International       12420
6054                            Boise Air Terminal       14260
6055           Rick Husband Amarillo International       11100
6056                      Palm Beach International       33100
6057                      Reno/Tahoe International       39900
6058                       Durango La Plata County       20420
6059             Albuquerque International Sunport       10740
6060            Eglin AFB Destin Fort Walton Beach       18880
6061                  Charleston AFB/International       16700
6062                     San Antonio International       41700
6063              Sarasota/Bradenton International       35840
6064              John Wayne Airport-Orange County       31080
6065                       Santa Barbara Municipal       42200
6066                           Tulsa International       46140
6067              Sarasota/Bradenton International       35840
6068              John Wayne Airport-Orange County       31080
6069                    Myrtle Beach International       34820
6070             Bozeman Yellowstone International       14580
6071                  Gerald R. Ford International       24340
6072                         Orlando International       36740
6073              Austin - Bergstrom International       12420
6074                          Tucson International       46060
6075                    Jacksonville International       27260
6076             Bozeman Yellowstone International       14580
6077             Albuquerque International Sunport       10740
6078                             Will Rogers World       36420
6079            Savannah/Hilton Head International       42340
6080                                   Adams Field       30780
6081                             Will Rogers World       36420
6082                  Raleigh-Durham International       39580
6083                 Fresno Yosemite International       23420
6084     Louis Armstrong New Orleans International       35380
6085                  Gerald R. Ford International       24340
6086                Luis Munoz Marin International       41980
6087     Louis Armstrong New Orleans International       35380
6088                               William P Hobby       26420
6089               Greater Rochester International       40380
6090                 Pensacola Gulf Coast Regional       37860
6091             Bozeman Yellowstone International       14580
6092               Washington Dulles International       47900
6093                  Charleston AFB/International       16700
6094                       Nashville International       34980
6095                      Sacramento International       40900
6096                                  Yampa Valley       44460
6097                           Tampa International       45300
6098                Luis Munoz Marin International       41980
6099              John Wayne Airport-Orange County       31080
6100                           Miami International       33100
6101                  Raleigh-Durham International       39580
6102                    Detroit Metro Wayne County       19820
6103            Savannah/Hilton Head International       42340
6104                         Ontario International       40140
6105                         Spokane International       44060
6106                           Miami International       33100
6107                    Indianapolis International       26900
6108                  Chicago O'Hare International       16980
6109                         Spokane International       44060
6110                         Norfolk International       47260
6111                            Long Beach Airport       31080
6112            Eglin AFB Destin Fort Walton Beach       18880
6113                             Dallas Love Field       19100
6114                         Memphis International       32820
6115               Charlotte Douglas International       16740
6116                         Spokane International       44060
6117                            Long Beach Airport       31080
6118      Hartsfield-Jackson Atlanta International       12060
6119                      Reno/Tahoe International       39900
6120                         Spokane International       44060
6121                         El Paso International       21340
6122             Albuquerque International Sunport       10740
6123            Savannah/Hilton Head International       42340
6124      Midland International Air and Space Port       33260
6125                            Long Beach Airport       31080
6126                          Albany International       10580
6127                      Reno/Tahoe International       39900
6128                          Albany International       10580
6129            City of Colorado Springs Municipal       17820
6130                         Long Island MacArthur       35620
6131            City of Colorado Springs Municipal       17820
6132                General Mitchell International       33340
6133                          Albany International       10580
6134                      Palm Beach International       33100
6135                  Salt Lake City International       41620
6136             John Glenn Columbus International       18140
6137                          Denver International       19740
6138                  Raleigh-Durham International       39580
6139          Greenville-Spartanburg International       43900
6140           Rick Husband Amarillo International       11100
6141                               Eppley Airfield       36540
6142                                      Bob Hope       31080
6143                          Albany International       10580
6144                  Charleston AFB/International       16700
6145                                      Bob Hope       31080
6146       Northwest Florida Beaches International       37460
6147                         Wichita Mid-Continent       48620
6148                    Philadelphia International       37980
6149                               Eppley Airfield       36540
6150                  Chicago Midway International       16980
6151                Luis Munoz Marin International       41980
6152                             Will Rogers World       36420
6153                               Eppley Airfield       36540
6154                          Albany International       10580
6155                         Memphis International       32820
6156                             Will Rogers World       36420
6157                         Memphis International       32820
6158                    Jacksonville International       27260
6159            City of Colorado Springs Municipal       17820
6160                      Reno/Tahoe International       39900
6161                            Boise Air Terminal       14260
6162             Minneapolis-St Paul International       33460
6163                           Logan International       14460
6164                      Reno/Tahoe International       39900
6165                           Tampa International       45300
6166       Fort Lauderdale-Hollywood International       33100
6167                         Memphis International       32820
6168                     Los Angeles International       31080
6169                         Bradley International       25540
6170                         Wichita Mid-Continent       48620
6171                  Theodore Francis Green State       39300
6172         Louisville Muhammad Ali International       31140
6173      Hartsfield-Jackson Atlanta International       12060
6174             Albuquerque International Sunport       10740
6175                                      Bob Hope       31080
6176            Metropolitan Oakland International       41860
6177                                     LaGuardia       35620
6178                          Tucson International       46060
6179             Albuquerque International Sunport       10740
6180               Cleveland-Hopkins International       17460
6181              Phoenix Sky Harbor International       38060
6182             Minneapolis-St Paul International       33460
6183                St Louis Lambert International       41180
6184     Louis Armstrong New Orleans International       35380
6185                        Portland International       38900
6186                       Nashville International       34980
6187                         Norfolk International       47260
6188                  Chicago Midway International       16980
6189                     Kansas City International       28140
6190                            Boise Air Terminal       14260
6191                           Tulsa International       46140
6192             John Glenn Columbus International       18140
6193       Northwest Florida Beaches International       37460
6194       Fort Lauderdale-Hollywood International       33100
6195                        Portland International       38900
6196                         Norfolk International       47260
6197                         Ontario International       40140
6198                          Juneau International       27940
6199                   Atlantic City International       12100
6200                                     LaGuardia       35620
6201                          Tucson International       46060
6202                           Miami International       33100
6203            Metropolitan Oakland International       41860
6204            Metropolitan Oakland International       41860
6205              Austin - Bergstrom International       12420
6206                    Indianapolis International       26900
6207       Fort Lauderdale-Hollywood International       33100
6208                      Reno/Tahoe International       39900
6209                            Boise Air Terminal       14260
6210                         El Paso International       21340
6211                         Ontario International       40140
6212                            Mahlon Sweet Field       21660
6213                            Mahlon Sweet Field       21660
6214                 Buffalo Niagara International       15380
6215                           Tulsa International       46140
6216                     Kansas City International       28140
6217            Savannah/Hilton Head International       42340
6218                  Gerald R. Ford International       24340
6219       Norman Y. Mineta San Jose International       41940
6220                                     LaGuardia       35620
6221                  Seattle/Tacoma International       42660
6222                              Wrangell Airport        <NA>
6223        Birmingham-Shuttlesworth International       13820
6224                  Seattle/Tacoma International       42660
6225                         Memphis International       32820
6226     Louis Armstrong New Orleans International       35380
6227                          Valley International       15180
6228                  Charleston AFB/International       16700
6229                       Nashville International       34980
6230                         El Paso International       21340
6231               Charlotte Douglas International       16740
6232                            Long Beach Airport       31080
6233                    Myrtle Beach International       34820
6234            Savannah/Hilton Head International       42340
6235                      Reno/Tahoe International       39900
6236                         Ontario International       40140
6237               Southwest Florida International       15980
6238                        McCarran International       29820
6239                      Sacramento International       40900
6240                  Raleigh-Durham International       39580
6241                  Raleigh-Durham International       39580
6242               Southwest Florida International       15980
6243                         El Paso International       21340
6244                    Myrtle Beach International       34820
6245                            Mahlon Sweet Field       21660
6246                          Tucson International       46060
6247                            Long Beach Airport       31080
6248                     Kansas City International       28140
6249      Midland International Air and Space Port       33260
6250               Southwest Florida International       15980
6251                         Ontario International       40140
6252            Eglin AFB Destin Fort Walton Beach       18880
6253                  Raleigh-Durham International       39580
6254                       Cape Girardeau Regional       43460
6255             Albuquerque International Sunport       10740
6256                      Pittsburgh International       38300
6257                  Salt Lake City International       41620
6258                General Mitchell International       33340
6259                               Eppley Airfield       36540
6260              Sarasota/Bradenton International       35840
6261                     San Antonio International       41700
6262             Albuquerque International Sunport       10740
6263               Cleveland-Hopkins International       17460
6264                         Norfolk International       47260
6265                     Kansas City International       28140
6266                Luis Munoz Marin International       41980
6267                 Buffalo Niagara International       15380
6268                      Bellingham International       13380
6269                General Mitchell International       33340
6270                         El Paso International       21340
6271                               William P Hobby       26420
6272                General Mitchell International       33340
6273                         Akron-Canton Regional       10420
6274             Bozeman Yellowstone International       14580
6275                      Pittsburgh International       38300
6276            Metropolitan Oakland International       41860
6277                 Fresno Yosemite International       23420
6278                          Valley International       15180
6279      Jackson Medgar Wiley Evers International       27140
6280                          Albany International       10580
6281                             Will Rogers World       36420
6282                             Will Rogers World       36420
6283                         Ontario International       40140
6284       Northwest Florida Beaches International       37460
6285                     San Antonio International       41700
6286      Midland International Air and Space Port       33260
6287                   San Francisco International       41860
6288                         Spokane International       44060
6289       Northwest Florida Beaches International       37460
6290               Washington Dulles International       47900
6291                               Eppley Airfield       36540
6292                  Theodore Francis Green State       39300
6293                    Indianapolis International       26900
6294               Cleveland-Hopkins International       17460
6295                 Pensacola Gulf Coast Regional       37860
6296                         Orlando International       36740
6297                  Gerald R. Ford International       24340
6298                                      Bob Hope       31080
6299                                   Adams Field       30780
6300                         Ontario International       40140
6301                       Santa Barbara Municipal       42200
6302                         Memphis International       32820
6303                    Detroit Metro Wayne County       19820
6304                               Eppley Airfield       36540
6305                               Eppley Airfield       36540
6306                               Eppley Airfield       36540
6307                          Albany International       10580
6308                      Pittsburgh International       38300
6309                  Gerald R. Ford International       24340
6310              Sarasota/Bradenton International       35840
6311             Minneapolis-St Paul International       33460
6312                          Valley International       15180
6313                           Tulsa International       46140
6314                                     LaGuardia       35620
6315             Ronald Reagan Washington National       47900
6316       Northwest Florida Beaches International       37460
6317                    Detroit Metro Wayne County       19820
6318                                   Adams Field       30780
6319                      Reno/Tahoe International       39900
6320                    Manchester-Boston Regional       31700
6321                    Manchester-Boston Regional       31700
6322             Bozeman Yellowstone International       14580
6323                   San Francisco International       41860
6324         Louisville Muhammad Ali International       31140
6325    Cincinnati/Northern Kentucky International       17140
6326      Midland International Air and Space Port       33260
6327                             Montrose Regional       33940
6328                      Des Moines International       19780
6329                         Bradley International       25540
6330                    Philadelphia International       37980
6331                     San Antonio International       41700
6332      Jackson Medgar Wiley Evers International       27140
6333                    Indianapolis International       26900
6334      Jackson Medgar Wiley Evers International       27140
6335                           Tulsa International       46140
6336              Austin - Bergstrom International       12420
6337                General Mitchell International       33340
6338                  Chicago Midway International       16980
6339                  Salt Lake City International       41620
6340               Washington Dulles International       47900
6341             John Glenn Columbus International       18140
6342                             Will Rogers World       36420
6343                  Gerald R. Ford International       24340
6344    Cincinnati/Northern Kentucky International       17140
6345       Northwest Florida Beaches International       37460
6346                       Nashville International       34980
6347                St Louis Lambert International       41180
6348                     Kansas City International       28140
6349             Bozeman Yellowstone International       14580
6350                  Salt Lake City International       41620
6351                                   Adams Field       30780
6352                      Des Moines International       19780
6353                                     LaGuardia       35620
6354            Metropolitan Oakland International       41860
6355                Luis Munoz Marin International       41980
6356                               Eppley Airfield       36540
6357        Birmingham-Shuttlesworth International       13820
6358             Minneapolis-St Paul International       33460
6359                    Manchester-Boston Regional       31700
6360                 Daniel K Inouye International       46520
6361                  Raleigh-Durham International       39580
6362                    Manchester-Boston Regional       31700
6363                     San Antonio International       41700
6364                General Mitchell International       33340
6365                           Tulsa International       46140
6366                           Miami International       33100
6367                         Long Island MacArthur       35620
6368      Jackson Medgar Wiley Evers International       27140
6369     Louis Armstrong New Orleans International       35380
6370             Albuquerque International Sunport       10740
6371                  Charleston AFB/International       16700
6372                                   Adams Field       30780
6373                         Long Island MacArthur       35620
6374                            Long Beach Airport       31080
6375                                      Bob Hope       31080
6376                        Portland International       38900
6377                            Boise Air Terminal       14260
6378                                   Adams Field       30780
6379               Greater Rochester International       40380
6380       Northwest Florida Beaches International       37460
6381            Savannah/Hilton Head International       42340
6382         Louisville Muhammad Ali International       31140
6383                 Pensacola Gulf Coast Regional       37860
6384                 Buffalo Niagara International       15380
6385                    Indianapolis International       26900
6386                          Valley International       15180
6387                  Raleigh-Durham International       39580
6388                 Pensacola Gulf Coast Regional       37860
6389              Austin - Bergstrom International       12420
6390              John Wayne Airport-Orange County       31080
6391                      Sacramento International       40900
6392                General Mitchell International       33340
6393                         Ontario International       40140
6394                    Palm Springs International       40140
6395                         Wichita Mid-Continent       48620
6396                      Pittsburgh International       38300
6397                    Jacksonville International       27260
6398                General Mitchell International       33340
6399                Portland International Jetport       38860
6400                           Tampa International       45300
6401                               William P Hobby       26420
6402                                     LaGuardia       35620
6403                      Palm Beach International       33100
6404       Fort Lauderdale-Hollywood International       33100
6405          Greenville-Spartanburg International       43900
6406                           Logan International       14460
6407      Midland International Air and Space Port       33260
6408            Savannah/Hilton Head International       42340
6409                 Buffalo Niagara International       15380
6410                          Mason City Municipal       32380
6411                               Decatur Airport       19500
6412                            Jamestown Regional       27420
6413                                Joe Foss Field       43620
6414                            Boise Air Terminal       14260
6415                      Reno/Tahoe International       39900
6416                           Hilton Head Airport       25940
6417                           Stillwater Regional       44660
6418                                        Yeager       16620
6419                       Benjamin Rivera Noriega        <NA>
6420                Portland International Jetport       38860
6421                 Buffalo Niagara International       15380
6422          Joslin Field - Magic Valley Regional       46300
6423                                     LaGuardia       35620
6424                    Glacier Park International       28060
6425  North Platte Regional Airport Lee Bird Field       35820
6426                      Palm Beach International       33100
6427                                   Yellowstone       14580
6428                                Cherry Capital       45900
6429                         Wichita Mid-Continent       48620
6430                           Fort Dodge Regional       22700
6431                             Friedman Memorial       25200
6432                        Missoula International       33540
6433                       Fairbanks International       21820
6434                   Hattiesburg-Laurel Regional       29860
6435                University of Illinois/Willard       16580
6436                 Buffalo Niagara International       15380
6437                      Chippewa Valley Regional       20740
6438                      Palm Beach International       33100
6439                            Asheville Regional       11700
6440                         Memphis International       32820
6441                           Logan International       14460
6442                  Billings Logan International       13740
6443                                 Roberts Field       13460
6444          John Murtha Johnstown-Cambria County       27780
6445                              Henry E. Rohlsen        <NA>
6446       Green Bay Austin Straubel International       24580
6447           Lubbock Preston Smith International       31180
6448                           Miami International       33100
6449          Greenville-Spartanburg International       43900
6450                             Lebanon Municipal       30100
6451                         Columbia Metropolitan       17900
6452                  Gerald R. Ford International       24340
6453                 Quincy Regional-Baldwin Field       39500
6454                General Mitchell International       33340
6455               Southwest Florida International       15980
6456                Syracuse Hancock International       45060
6457                          Albany International       10580
6458                  Theodore Francis Green State       39300
6459           Lubbock Preston Smith International       31180
6460                           Tulsa International       46140
6461              Dane County Regional-Truax Field       31540
6462                      Reno/Tahoe International       39900
6463               Cleveland-Hopkins International       17460
6464            City of Colorado Springs Municipal       17820
6465                            Worcester Regional       49340
6466                        Portland International       38900
6467                        Richmond International       40060
6468                   Atlantic City International       12100
6469                                Toledo Express       45780
6470                  Corpus Christi International       18580
6471                         Norfolk International       47260
6472                              Wrangell Airport        <NA>
6473                           Tulsa International       46140
6474                         Akron-Canton Regional       10420
6475           Rick Husband Amarillo International       11100
6476                     Great Falls International       24500
6477                      Sacramento International       40900
6478                              Cortez Municipal        <NA>
6479                      Burlington International       15540
6480                    McCook Ben Nelson Regional        <NA>
6481                              Snohomish County       42660
6482                      Owensboro Daviess County       36980
6483                        Richmond International       40060
6484                      Burlington International       15540
6485                   Atlantic City International       12100
6486                    Myrtle Beach International       34820
6487      Hartsfield-Jackson Atlanta International       12060
6488                 Buffalo Niagara International       15380
6489                            Long Beach Airport       31080
6490                        Portland International       38900
6491                                  Yampa Valley       44460
6492                           Logan International       14460
6493                  Seattle/Tacoma International       42660
6494                  Newark Liberty International       35620
6495            Baltimore/Washington International       12580
6496                     Kansas City International       28140
6497                Luis Munoz Marin International       41980
6498                          Tallahassee Regional       45220
6499                               Tweed New Haven       35300
6500                           Logan International       14460
6501                  Newark Liberty International       35620
6502               Cleveland-Hopkins International       17460
6503                         Long Island MacArthur       35620
6504              Dane County Regional-Truax Field       31540
6505                New York Stewart International       39100
6506                Syracuse Hancock International       45060
6507                   Northwest Arkansas Regional       22220
6508                  Raleigh-Durham International       39580
6509           Rick Husband Amarillo International       11100
6510              Austin - Bergstrom International       12420
6511        Birmingham-Shuttlesworth International       13820
6512                       Nashville International       34980
6513                                      Bob Hope       31080
6514             Ronald Reagan Washington National       47900
6515                         El Paso International       21340
6516          Greenville-Spartanburg International       43900
6517                          Valley International       15180
6518           Lubbock Preston Smith International       31180
6519                            Long Beach Airport       31080
6520                     Kansas City International       28140
6521                     Kansas City International       28140
6522            Metropolitan Oakland International       41860
6523                      Palm Beach International       33100
6524                    Philadelphia International       37980
6525            Savannah/Hilton Head International       42340
6526                      Sacramento International       40900
6527                      Sacramento International       40900
6528              John Wayne Airport-Orange County       31080
6529              John Wayne Airport-Orange County       31080
6530                          Tucson International       46060
6531            Eglin AFB Destin Fort Walton Beach       18880
6532             Charles M. Schulz - Sonoma County       42220
6533                           Logan International       14460
6534                          Valley International       15180
6535                             Will Rogers World       36420
6536                               Eppley Airfield       36540
6537                                     LaGuardia       35620
6538       Green Bay Austin Straubel International       24580
6539                                Trenton Mercer       45940
6540              John Wayne Airport-Orange County       31080
6541             Bozeman Yellowstone International       14580
6542       Fort Lauderdale-Hollywood International       33100
6543             John Glenn Columbus International       18140
6544                           Miami International       33100
6545                    Palm Springs International       40140
6546                Luis Munoz Marin International       41980
6547               Greater Rochester International       40380
6548                             Dallas Love Field       19100
6549                    Indianapolis International       26900
6550                                     LaGuardia       35620
6551                         Orlando International       36740
6552            Metropolitan Oakland International       41860
6553                      Palm Beach International       33100
6554       Norman Y. Mineta San Jose International       41940
6555                         Eagle County Regional       20780
6556                General Mitchell International       33340
6557              John Wayne Airport-Orange County       31080
6558                          Albany International       10580
6559           Rick Husband Amarillo International       11100
6560              Austin - Bergstrom International       12420
6561        Birmingham-Shuttlesworth International       13820
6562             John Glenn Columbus International       18140
6563                 Fresno Yosemite International       23420
6564                               William P Hobby       26420
6565      Jackson Medgar Wiley Evers International       27140
6566                            Long Beach Airport       31080
6567      Midland International Air and Space Port       33260
6568                General Mitchell International       33340
6569                General Mitchell International       33340
6570                               Eppley Airfield       36540
6571                         Ontario International       40140
6572                      Palm Beach International       33100
6573                       San Diego International       41740
6574                     San Antonio International       41700
6575                       Santa Barbara Municipal       42200
6576                       Santa Barbara Municipal       42200
6577                St Louis Lambert International       41180
6578                          Tucson International       46060
6579                               Eppley Airfield       36540
6580                      Pittsburgh International       38300
6581                           Miami International       33100
6582            Baltimore/Washington International       12580
6583            City of Colorado Springs Municipal       17820
6584                                   Adams Field       30780
6585                                     LaGuardia       35620
6586                 John F. Kennedy International       35620
6587                    Indianapolis International       26900
6588                          Duluth International       20260
6589                          Albany International       10580
6590              Phoenix Sky Harbor International       38060
6591                           Miami International       33100
6592                                     LaGuardia       35620
6593                          Denver International       19740
6594             Bozeman Yellowstone International       14580
6595    Cincinnati/Northern Kentucky International       17140
6596                    Palm Springs International       40140
6597                  Raleigh-Durham International       39580
6598                   San Francisco International       41860
6599                               Eppley Airfield       36540
6600                        Richmond International       40060
6601                       Santa Barbara Municipal       42200
6602                      Des Moines International       19780
6603                        Portland International       38900
6604        Birmingham-Shuttlesworth International       13820
6605                        McCarran International       29820
6606                                     LaGuardia       35620
6607                           Miami International       33100
6608             Minneapolis-St Paul International       33460
6609     Louis Armstrong New Orleans International       35380
6610                 Pensacola Gulf Coast Regional       37860
6611                      Reno/Tahoe International       39900
6612                  Seattle/Tacoma International       42660
6613                      Sacramento International       40900
6614              Sarasota/Bradenton International       35840
6615             Albuquerque International Sunport       10740
6616             Albuquerque International Sunport       10740
6617           Rick Husband Amarillo International       11100
6618      Hartsfield-Jackson Atlanta International       12060
6619              Austin - Bergstrom International       12420
6620                         Bradley International       25540
6621                 Buffalo Niagara International       15380
6622                                      Bob Hope       31080
6623            City of Colorado Springs Municipal       17820
6624            City of Colorado Springs Municipal       17820
6625            City of Colorado Springs Municipal       17820
6626       Northwest Florida Beaches International       37460
6627                         El Paso International       21340
6628                 Fresno Yosemite International       23420
6629                         Wichita Mid-Continent       48620
6630           Lubbock Preston Smith International       31180
6631      Midland International Air and Space Port       33260
6632                General Mitchell International       33340
6633             Minneapolis-St Paul International       33460
6634            Metropolitan Oakland International       41860
6635                             Will Rogers World       36420
6636                             Will Rogers World       36420
6637                               Eppley Airfield       36540
6638                         Ontario International       40140
6639                  Theodore Francis Green State       39300
6640               Southwest Florida International       15980
6641                       San Diego International       41740
6642                     San Antonio International       41700
6643                       Santa Barbara Municipal       42200
6644         Louisville Muhammad Ali International       31140
6645                           Logan International       14460
6646                        Missoula International       33540
6647                           Logan International       14460
6648                       San Diego International       41740
6649             Albuquerque International Sunport       10740
6650                         El Paso International       21340
6651                    Indianapolis International       26900
6652     Louis Armstrong New Orleans International       35380
6653                               Eppley Airfield       36540
6654                      Palm Beach International       33100
6655                        Portland International       38900
6656                      Pittsburgh International       38300
6657                Luis Munoz Marin International       41980
6658                           Tulsa International       46140
6659            City of Colorado Springs Municipal       17820
6660     Louis Armstrong New Orleans International       35380
6661              Austin - Bergstrom International       12420
6662                    Jacksonville International       27260
6663                St Louis Lambert International       41180
6664             Ronald Reagan Washington National       47900
6665                           Tampa International       45300
6666      California Redwood Coast Humboldt County       21700
                                   origin_cbsa_name
1             New York-Newark-Jersey City, NY-NJ-PA
2           Miami-Fort Lauderdale-Pompano Beach, FL
3                                  Jacksonville, FL
4                Los Angeles-Long Beach-Anaheim, CA
5                Los Angeles-Long Beach-Anaheim, CA
6                Los Angeles-Long Beach-Anaheim, CA
7             New York-Newark-Jersey City, NY-NJ-PA
8             New York-Newark-Jersey City, NY-NJ-PA
9                     Orlando-Kissimmee-Sanford, FL
10          Miami-Fort Lauderdale-Pompano Beach, FL
11                         New Orleans-Metairie, LA
12                        Cape Coral-Fort Myers, FL
13                      Seattle-Tacoma-Bellevue, WA
14                      Seattle-Tacoma-Bellevue, WA
15                      Seattle-Tacoma-Bellevue, WA
16                               Salt Lake City, UT
17              Tampa-St. Petersburg-Clearwater, FL
18             Atlanta-Sandy Springs-Alpharetta, GA
19             Atlanta-Sandy Springs-Alpharetta, GA
20             Atlanta-Sandy Springs-Alpharetta, GA
21             Atlanta-Sandy Springs-Alpharetta, GA
22             Atlanta-Sandy Springs-Alpharetta, GA
23             Atlanta-Sandy Springs-Alpharetta, GA
24             Atlanta-Sandy Springs-Alpharetta, GA
25             Atlanta-Sandy Springs-Alpharetta, GA
26             Atlanta-Sandy Springs-Alpharetta, GA
27             Atlanta-Sandy Springs-Alpharetta, GA
28             Atlanta-Sandy Springs-Alpharetta, GA
29             Atlanta-Sandy Springs-Alpharetta, GA
30             Atlanta-Sandy Springs-Alpharetta, GA
31             Atlanta-Sandy Springs-Alpharetta, GA
32             Atlanta-Sandy Springs-Alpharetta, GA
33             Atlanta-Sandy Springs-Alpharetta, GA
34                      Detroit-Warren-Dearborn, MI
35                      Detroit-Warren-Dearborn, MI
36          Minneapolis-St. Paul-Bloomington, MN-WI
37          Minneapolis-St. Paul-Bloomington, MN-WI
38          Minneapolis-St. Paul-Bloomington, MN-WI
39          Minneapolis-St. Paul-Bloomington, MN-WI
40                               Salt Lake City, UT
41                               Salt Lake City, UT
42                               Salt Lake City, UT
43             Atlanta-Sandy Springs-Alpharetta, GA
44             Atlanta-Sandy Springs-Alpharetta, GA
45          Minneapolis-St. Paul-Bloomington, MN-WI
46          Minneapolis-St. Paul-Bloomington, MN-WI
47             Atlanta-Sandy Springs-Alpharetta, GA
48             Atlanta-Sandy Springs-Alpharetta, GA
49             Atlanta-Sandy Springs-Alpharetta, GA
50             Atlanta-Sandy Springs-Alpharetta, GA
51             Atlanta-Sandy Springs-Alpharetta, GA
52             Atlanta-Sandy Springs-Alpharetta, GA
53             Atlanta-Sandy Springs-Alpharetta, GA
54            New York-Newark-Jersey City, NY-NJ-PA
55               Los Angeles-Long Beach-Anaheim, CA
56            New York-Newark-Jersey City, NY-NJ-PA
57          Minneapolis-St. Paul-Bloomington, MN-WI
58                               Salt Lake City, UT
59                               Salt Lake City, UT
60          Minneapolis-St. Paul-Bloomington, MN-WI
61          Minneapolis-St. Paul-Bloomington, MN-WI
62          Minneapolis-St. Paul-Bloomington, MN-WI
63          Minneapolis-St. Paul-Bloomington, MN-WI
64                               Salt Lake City, UT
65                               Salt Lake City, UT
66                               Salt Lake City, UT
67                               Salt Lake City, UT
68                               Salt Lake City, UT
69                               Salt Lake City, UT
70                               Salt Lake City, UT
71                               Salt Lake City, UT
72                               Salt Lake City, UT
73             Atlanta-Sandy Springs-Alpharetta, GA
74             Atlanta-Sandy Springs-Alpharetta, GA
75             Atlanta-Sandy Springs-Alpharetta, GA
76                      Detroit-Warren-Dearborn, MI
77             Atlanta-Sandy Springs-Alpharetta, GA
78             Atlanta-Sandy Springs-Alpharetta, GA
79             Atlanta-Sandy Springs-Alpharetta, GA
80             Atlanta-Sandy Springs-Alpharetta, GA
81             Atlanta-Sandy Springs-Alpharetta, GA
82             Atlanta-Sandy Springs-Alpharetta, GA
83             Atlanta-Sandy Springs-Alpharetta, GA
84             Atlanta-Sandy Springs-Alpharetta, GA
85             Atlanta-Sandy Springs-Alpharetta, GA
86             Atlanta-Sandy Springs-Alpharetta, GA
87             Atlanta-Sandy Springs-Alpharetta, GA
88               Los Angeles-Long Beach-Anaheim, CA
89               Los Angeles-Long Beach-Anaheim, CA
90               Los Angeles-Long Beach-Anaheim, CA
91               Los Angeles-Long Beach-Anaheim, CA
92               Los Angeles-Long Beach-Anaheim, CA
93          Minneapolis-St. Paul-Bloomington, MN-WI
94          Minneapolis-St. Paul-Bloomington, MN-WI
95                      Seattle-Tacoma-Bellevue, WA
96                               Salt Lake City, UT
97             Atlanta-Sandy Springs-Alpharetta, GA
98             Atlanta-Sandy Springs-Alpharetta, GA
99             Atlanta-Sandy Springs-Alpharetta, GA
100            Atlanta-Sandy Springs-Alpharetta, GA
101            Atlanta-Sandy Springs-Alpharetta, GA
102            Atlanta-Sandy Springs-Alpharetta, GA
103            Atlanta-Sandy Springs-Alpharetta, GA
104                     Detroit-Warren-Dearborn, MI
105              Los Angeles-Long Beach-Anaheim, CA
106              Los Angeles-Long Beach-Anaheim, CA
107         Minneapolis-St. Paul-Bloomington, MN-WI
108                              Salt Lake City, UT
109            Atlanta-Sandy Springs-Alpharetta, GA
110            Atlanta-Sandy Springs-Alpharetta, GA
111            Atlanta-Sandy Springs-Alpharetta, GA
112            Atlanta-Sandy Springs-Alpharetta, GA
113            Atlanta-Sandy Springs-Alpharetta, GA
114            Atlanta-Sandy Springs-Alpharetta, GA
115            Atlanta-Sandy Springs-Alpharetta, GA
116                     Detroit-Warren-Dearborn, MI
117                     Detroit-Warren-Dearborn, MI
118                Las Vegas-Henderson-Paradise, NV
119              Los Angeles-Long Beach-Anaheim, CA
120              Los Angeles-Long Beach-Anaheim, CA
121                   Orlando-Kissimmee-Sanford, FL
122                   Orlando-Kissimmee-Sanford, FL
123         Miami-Fort Lauderdale-Pompano Beach, FL
124         Miami-Fort Lauderdale-Pompano Beach, FL
125                       Cape Coral-Fort Myers, FL
126                     Seattle-Tacoma-Bellevue, WA
127                     Seattle-Tacoma-Bellevue, WA
128                     Seattle-Tacoma-Bellevue, WA
129                     Seattle-Tacoma-Bellevue, WA
130                              Salt Lake City, UT
131                              Salt Lake City, UT
132                              Salt Lake City, UT
133                              Salt Lake City, UT
134             Tampa-St. Petersburg-Clearwater, FL
135              San Diego-Chula Vista-Carlsbad, CA
136              Los Angeles-Long Beach-Anaheim, CA
137                     Seattle-Tacoma-Bellevue, WA
138            Atlanta-Sandy Springs-Alpharetta, GA
139                     Detroit-Warren-Dearborn, MI
140                     Detroit-Warren-Dearborn, MI
141                     Detroit-Warren-Dearborn, MI
142                     Detroit-Warren-Dearborn, MI
143           New York-Newark-Jersey City, NY-NJ-PA
144           New York-Newark-Jersey City, NY-NJ-PA
145         Minneapolis-St. Paul-Bloomington, MN-WI
146         Minneapolis-St. Paul-Bloomington, MN-WI
147                                Raleigh-Cary, NC
148                              Salt Lake City, UT
149                              Salt Lake City, UT
150            Atlanta-Sandy Springs-Alpharetta, GA
151            Atlanta-Sandy Springs-Alpharetta, GA
152            Atlanta-Sandy Springs-Alpharetta, GA
153  Nashville-Davidson--Murfreesboro--Franklin, TN
154                            Cincinnati, OH-KY-IN
155                            Cincinnati, OH-KY-IN
156                 Dallas-Fort Worth-Arlington, TX
157                     Detroit-Warren-Dearborn, MI
158                     Detroit-Warren-Dearborn, MI
159                     Detroit-Warren-Dearborn, MI
160                     Detroit-Warren-Dearborn, MI
161                              Urban Honolulu, HI
162           New York-Newark-Jersey City, NY-NJ-PA
163           New York-Newark-Jersey City, NY-NJ-PA
164                                Raleigh-Cary, NC
165                   San Antonio-New Braunfels, TX
166                     Seattle-Tacoma-Bellevue, WA
167                              Salt Lake City, UT
168                              Salt Lake City, UT
169                              Salt Lake City, UT
170                              Salt Lake City, UT
171            Atlanta-Sandy Springs-Alpharetta, GA
172                     Detroit-Warren-Dearborn, MI
173                     Detroit-Warren-Dearborn, MI
174                     Detroit-Warren-Dearborn, MI
175                     Detroit-Warren-Dearborn, MI
176                     Detroit-Warren-Dearborn, MI
177         Miami-Fort Lauderdale-Pompano Beach, FL
178         Minneapolis-St. Paul-Bloomington, MN-WI
179         Minneapolis-St. Paul-Bloomington, MN-WI
180         Minneapolis-St. Paul-Bloomington, MN-WI
181         Minneapolis-St. Paul-Bloomington, MN-WI
182         Minneapolis-St. Paul-Bloomington, MN-WI
183              Chicago-Naperville-Elgin, IL-IN-WI
184               North Port-Sarasota-Bradenton, FL
185             Tampa-St. Petersburg-Clearwater, FL
186              Los Angeles-Long Beach-Anaheim, CA
187            Atlanta-Sandy Springs-Alpharetta, GA
188            Atlanta-Sandy Springs-Alpharetta, GA
189         Minneapolis-St. Paul-Bloomington, MN-WI
190            Atlanta-Sandy Springs-Alpharetta, GA
191            Atlanta-Sandy Springs-Alpharetta, GA
192            Atlanta-Sandy Springs-Alpharetta, GA
193            Atlanta-Sandy Springs-Alpharetta, GA
194                     Detroit-Warren-Dearborn, MI
195                     Detroit-Warren-Dearborn, MI
196           New York-Newark-Jersey City, NY-NJ-PA
197           New York-Newark-Jersey City, NY-NJ-PA
198         Minneapolis-St. Paul-Bloomington, MN-WI
199            Atlanta-Sandy Springs-Alpharetta, GA
200            Atlanta-Sandy Springs-Alpharetta, GA
201            Atlanta-Sandy Springs-Alpharetta, GA
202            Atlanta-Sandy Springs-Alpharetta, GA
203            Atlanta-Sandy Springs-Alpharetta, GA
204         Minneapolis-St. Paul-Bloomington, MN-WI
205                              Salt Lake City, UT
206            Atlanta-Sandy Springs-Alpharetta, GA
207            Atlanta-Sandy Springs-Alpharetta, GA
208            Atlanta-Sandy Springs-Alpharetta, GA
209         Minneapolis-St. Paul-Bloomington, MN-WI
210            Atlanta-Sandy Springs-Alpharetta, GA
211            Atlanta-Sandy Springs-Alpharetta, GA
212            Atlanta-Sandy Springs-Alpharetta, GA
213            Atlanta-Sandy Springs-Alpharetta, GA
214                Austin-Round Rock-Georgetown, TX
215  Nashville-Davidson--Murfreesboro--Franklin, TN
216                  Boston-Cambridge-Newton, MA-NH
217    Washington-Arlington-Alexandria, DC-VA-MD-WV
218                      Denver-Aurora-Lakewood, CO
219                 Dallas-Fort Worth-Arlington, TX
220                     Detroit-Warren-Dearborn, MI
221                     Detroit-Warren-Dearborn, MI
222                     Detroit-Warren-Dearborn, MI
223           New York-Newark-Jersey City, NY-NJ-PA
224                Las Vegas-Henderson-Paradise, NV
225              Los Angeles-Long Beach-Anaheim, CA
226           New York-Newark-Jersey City, NY-NJ-PA
227           New York-Newark-Jersey City, NY-NJ-PA
228                   Orlando-Kissimmee-Sanford, FL
229                        New Orleans-Metairie, LA
230              Chicago-Naperville-Elgin, IL-IN-WI
231             Portland-Vancouver-Hillsboro, OR-WA
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
233                                Raleigh-Cary, NC
234                       Cape Coral-Fort Myers, FL
235                     Seattle-Tacoma-Bellevue, WA
236             Tampa-St. Petersburg-Clearwater, FL
237                     Detroit-Warren-Dearborn, MI
238                     Detroit-Warren-Dearborn, MI
239         Minneapolis-St. Paul-Bloomington, MN-WI
240         Minneapolis-St. Paul-Bloomington, MN-WI
241            Atlanta-Sandy Springs-Alpharetta, GA
242            Atlanta-Sandy Springs-Alpharetta, GA
243                              Salt Lake City, UT
244                              Salt Lake City, UT
245            Atlanta-Sandy Springs-Alpharetta, GA
246         Minneapolis-St. Paul-Bloomington, MN-WI
247                              Salt Lake City, UT
248            Atlanta-Sandy Springs-Alpharetta, GA
249                  Boston-Cambridge-Newton, MA-NH
250                     Detroit-Warren-Dearborn, MI
251           New York-Newark-Jersey City, NY-NJ-PA
252           New York-Newark-Jersey City, NY-NJ-PA
253         Minneapolis-St. Paul-Bloomington, MN-WI
254         Minneapolis-St. Paul-Bloomington, MN-WI
255                     Seattle-Tacoma-Bellevue, WA
256            Atlanta-Sandy Springs-Alpharetta, GA
257            Atlanta-Sandy Springs-Alpharetta, GA
258         Minneapolis-St. Paul-Bloomington, MN-WI
259                     Seattle-Tacoma-Bellevue, WA
260                              Salt Lake City, UT
261                              Salt Lake City, UT
262                              Salt Lake City, UT
263                              Salt Lake City, UT
264            Atlanta-Sandy Springs-Alpharetta, GA
265            Atlanta-Sandy Springs-Alpharetta, GA
266                     Detroit-Warren-Dearborn, MI
267         Minneapolis-St. Paul-Bloomington, MN-WI
268            Atlanta-Sandy Springs-Alpharetta, GA
269           New York-Newark-Jersey City, NY-NJ-PA
270         Minneapolis-St. Paul-Bloomington, MN-WI
271            Atlanta-Sandy Springs-Alpharetta, GA
272            Atlanta-Sandy Springs-Alpharetta, GA
273            Atlanta-Sandy Springs-Alpharetta, GA
274                     Detroit-Warren-Dearborn, MI
275         Miami-Fort Lauderdale-Pompano Beach, FL
276                Las Vegas-Henderson-Paradise, NV
277              Los Angeles-Long Beach-Anaheim, CA
278              Los Angeles-Long Beach-Anaheim, CA
279                   Orlando-Kissimmee-Sanford, FL
280                     Seattle-Tacoma-Bellevue, WA
281            Atlanta-Sandy Springs-Alpharetta, GA
282            Atlanta-Sandy Springs-Alpharetta, GA
283           New York-Newark-Jersey City, NY-NJ-PA
284                     Detroit-Warren-Dearborn, MI
285                     Seattle-Tacoma-Bellevue, WA
286                              Salt Lake City, UT
287                              Salt Lake City, UT
288            Atlanta-Sandy Springs-Alpharetta, GA
289            Atlanta-Sandy Springs-Alpharetta, GA
290                     Detroit-Warren-Dearborn, MI
291                     Detroit-Warren-Dearborn, MI
292                Las Vegas-Henderson-Paradise, NV
293              Los Angeles-Long Beach-Anaheim, CA
294         Minneapolis-St. Paul-Bloomington, MN-WI
295                       Phoenix-Mesa-Chandler, AZ
296              San Diego-Chula Vista-Carlsbad, CA
297                              Salt Lake City, UT
298              Los Angeles-Long Beach-Anaheim, CA
299                     Seattle-Tacoma-Bellevue, WA
300                              Salt Lake City, UT
301                              Salt Lake City, UT
302         Minneapolis-St. Paul-Bloomington, MN-WI
303                              Salt Lake City, UT
304                                  Boise City, ID
305                 Dallas-Fort Worth-Arlington, TX
306                     Detroit-Warren-Dearborn, MI
307                     Detroit-Warren-Dearborn, MI
308                     Detroit-Warren-Dearborn, MI
309           New York-Newark-Jersey City, NY-NJ-PA
310                      Spokane-Spokane Valley, WA
311           New York-Newark-Jersey City, NY-NJ-PA
312                Las Vegas-Henderson-Paradise, NV
313              Los Angeles-Long Beach-Anaheim, CA
314         Minneapolis-St. Paul-Bloomington, MN-WI
315            Riverside-San Bernardino-Ontario, CA
316              San Diego-Chula Vista-Carlsbad, CA
317              San Francisco-Oakland-Berkeley, CA
318              San Jose-Sunnyvale-Santa Clara, CA
319              Los Angeles-Long Beach-Anaheim, CA
320         Minneapolis-St. Paul-Bloomington, MN-WI
321                              Salt Lake City, UT
322            Atlanta-Sandy Springs-Alpharetta, GA
323         Minneapolis-St. Paul-Bloomington, MN-WI
324                     Seattle-Tacoma-Bellevue, WA
325                              Salt Lake City, UT
326            Atlanta-Sandy Springs-Alpharetta, GA
327         Minneapolis-St. Paul-Bloomington, MN-WI
328            Atlanta-Sandy Springs-Alpharetta, GA
329            Atlanta-Sandy Springs-Alpharetta, GA
330            Atlanta-Sandy Springs-Alpharetta, GA
331                     Detroit-Warren-Dearborn, MI
332                     Detroit-Warren-Dearborn, MI
333           New York-Newark-Jersey City, NY-NJ-PA
334           New York-Newark-Jersey City, NY-NJ-PA
335         Minneapolis-St. Paul-Bloomington, MN-WI
336                Las Vegas-Henderson-Paradise, NV
337            Riverside-San Bernardino-Ontario, CA
338                Las Vegas-Henderson-Paradise, NV
339                   Orlando-Kissimmee-Sanford, FL
340                   Orlando-Kissimmee-Sanford, FL
341                      Denver-Aurora-Lakewood, CO
342                Las Vegas-Henderson-Paradise, NV
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
344                                      Fresno, CA
345              Chicago-Naperville-Elgin, IL-IN-WI
346             Tampa-St. Petersburg-Clearwater, FL
347             Tampa-St. Petersburg-Clearwater, FL
348                           Trenton-Princeton, NJ
349                      Denver-Aurora-Lakewood, CO
350                Las Vegas-Henderson-Paradise, NV
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
352                Las Vegas-Henderson-Paradise, NV
353                Las Vegas-Henderson-Paradise, NV
354                   Orlando-Kissimmee-Sanford, FL
355             Tampa-St. Petersburg-Clearwater, FL
356              San Diego-Chula Vista-Carlsbad, CA
357                     San Juan-Bayamón-Caguas, PR
358                Las Vegas-Henderson-Paradise, NV
359                Las Vegas-Henderson-Paradise, NV
360           New York-Newark-Jersey City, NY-NJ-PA
361    Washington-Arlington-Alexandria, DC-VA-MD-WV
362           New York-Newark-Jersey City, NY-NJ-PA
363              Chicago-Naperville-Elgin, IL-IN-WI
364    Washington-Arlington-Alexandria, DC-VA-MD-WV
365              Chicago-Naperville-Elgin, IL-IN-WI
366              Chicago-Naperville-Elgin, IL-IN-WI
367           New York-Newark-Jersey City, NY-NJ-PA
368                            Cleveland-Elyria, OH
369               Charlotte-Concord-Gastonia, NC-SC
370    Washington-Arlington-Alexandria, DC-VA-MD-WV
371                       Greensboro-High Point, NC
372                Indianapolis-Carmel-Anderson, IN
373                                   Rochester, NY
374    Washington-Arlington-Alexandria, DC-VA-MD-WV
375           New York-Newark-Jersey City, NY-NJ-PA
376              Chicago-Naperville-Elgin, IL-IN-WI
377                 Hilton Head Island-Bluffton, SC
378                Indianapolis-Carmel-Anderson, IN
379    Washington-Arlington-Alexandria, DC-VA-MD-WV
380              Chicago-Naperville-Elgin, IL-IN-WI
381              Chicago-Naperville-Elgin, IL-IN-WI
382              Chicago-Naperville-Elgin, IL-IN-WI
383           New York-Newark-Jersey City, NY-NJ-PA
384           New York-Newark-Jersey City, NY-NJ-PA
385    Washington-Arlington-Alexandria, DC-VA-MD-WV
386    Washington-Arlington-Alexandria, DC-VA-MD-WV
387           New York-Newark-Jersey City, NY-NJ-PA
388           New York-Newark-Jersey City, NY-NJ-PA
389           New York-Newark-Jersey City, NY-NJ-PA
390              Chicago-Naperville-Elgin, IL-IN-WI
391              Chicago-Naperville-Elgin, IL-IN-WI
392           New York-Newark-Jersey City, NY-NJ-PA
393           New York-Newark-Jersey City, NY-NJ-PA
394    Washington-Arlington-Alexandria, DC-VA-MD-WV
395              Chicago-Naperville-Elgin, IL-IN-WI
396              Chicago-Naperville-Elgin, IL-IN-WI
397              Chicago-Naperville-Elgin, IL-IN-WI
398              Chicago-Naperville-Elgin, IL-IN-WI
399               Charlotte-Concord-Gastonia, NC-SC
400         Miami-Fort Lauderdale-Pompano Beach, FL
401              Chicago-Naperville-Elgin, IL-IN-WI
402  Nashville-Davidson--Murfreesboro--Franklin, TN
403                            Cincinnati, OH-KY-IN
404                               Oklahoma City, OK
405              Chicago-Naperville-Elgin, IL-IN-WI
406                Austin-Round Rock-Georgetown, TX
407              Chicago-Naperville-Elgin, IL-IN-WI
408              Chicago-Naperville-Elgin, IL-IN-WI
409              Chicago-Naperville-Elgin, IL-IN-WI
410              Chicago-Naperville-Elgin, IL-IN-WI
411                 Dallas-Fort Worth-Arlington, TX
412              Chicago-Naperville-Elgin, IL-IN-WI
413                 Dallas-Fort Worth-Arlington, TX
414                 Dallas-Fort Worth-Arlington, TX
415                 Dallas-Fort Worth-Arlington, TX
416              Chicago-Naperville-Elgin, IL-IN-WI
417    Washington-Arlington-Alexandria, DC-VA-MD-WV
418    Washington-Arlington-Alexandria, DC-VA-MD-WV
419         Miami-Fort Lauderdale-Pompano Beach, FL
420         Miami-Fort Lauderdale-Pompano Beach, FL
421         Miami-Fort Lauderdale-Pompano Beach, FL
422              Chicago-Naperville-Elgin, IL-IN-WI
423                 Dallas-Fort Worth-Arlington, TX
424                     Detroit-Warren-Dearborn, MI
425                               Memphis, TN-MS-AR
426                                Lake Charles, LA
427                                    Montrose, CO
428                 Dallas-Fort Worth-Arlington, TX
429              Chicago-Naperville-Elgin, IL-IN-WI
430                 Dallas-Fort Worth-Arlington, TX
431              Chicago-Naperville-Elgin, IL-IN-WI
432              Chicago-Naperville-Elgin, IL-IN-WI
433                 Dallas-Fort Worth-Arlington, TX
434              Chicago-Naperville-Elgin, IL-IN-WI
435                 Dallas-Fort Worth-Arlington, TX
436                 Dallas-Fort Worth-Arlington, TX
437                 Dallas-Fort Worth-Arlington, TX
438                 Dallas-Fort Worth-Arlington, TX
439                 Dallas-Fort Worth-Arlington, TX
440               Charlotte-Concord-Gastonia, NC-SC
441         Miami-Fort Lauderdale-Pompano Beach, FL
442              Chicago-Naperville-Elgin, IL-IN-WI
443              Chicago-Naperville-Elgin, IL-IN-WI
444              Chicago-Naperville-Elgin, IL-IN-WI
445                 Dallas-Fort Worth-Arlington, TX
446                 Dallas-Fort Worth-Arlington, TX
447                 Dallas-Fort Worth-Arlington, TX
448                 Dallas-Fort Worth-Arlington, TX
449                 Dallas-Fort Worth-Arlington, TX
450               Charlotte-Concord-Gastonia, NC-SC
451              Chicago-Naperville-Elgin, IL-IN-WI
452                 Dallas-Fort Worth-Arlington, TX
453              Chicago-Naperville-Elgin, IL-IN-WI
454                                  Pittsburgh, PA
455                 Dallas-Fort Worth-Arlington, TX
456              Chicago-Naperville-Elgin, IL-IN-WI
457                 Dallas-Fort Worth-Arlington, TX
458              Chicago-Naperville-Elgin, IL-IN-WI
459              Chicago-Naperville-Elgin, IL-IN-WI
460                 Dallas-Fort Worth-Arlington, TX
461              Chicago-Naperville-Elgin, IL-IN-WI
462                Austin-Round Rock-Georgetown, TX
463                            Cincinnati, OH-KY-IN
464                                Raleigh-Cary, NC
465              Chicago-Naperville-Elgin, IL-IN-WI
466              Chicago-Naperville-Elgin, IL-IN-WI
467                 Dallas-Fort Worth-Arlington, TX
468              Chicago-Naperville-Elgin, IL-IN-WI
469         Miami-Fort Lauderdale-Pompano Beach, FL
470         Miami-Fort Lauderdale-Pompano Beach, FL
471         Miami-Fort Lauderdale-Pompano Beach, FL
472                 Dallas-Fort Worth-Arlington, TX
473                 Dallas-Fort Worth-Arlington, TX
474              Chicago-Naperville-Elgin, IL-IN-WI
475                 Dallas-Fort Worth-Arlington, TX
476                 Dallas-Fort Worth-Arlington, TX
477         Miami-Fort Lauderdale-Pompano Beach, FL
478              Chicago-Naperville-Elgin, IL-IN-WI
479                 Dallas-Fort Worth-Arlington, TX
480                 Dallas-Fort Worth-Arlington, TX
481                 Dallas-Fort Worth-Arlington, TX
482         Miami-Fort Lauderdale-Pompano Beach, FL
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
484                       Cape Coral-Fort Myers, FL
485           New York-Newark-Jersey City, NY-NJ-PA
486         Miami-Fort Lauderdale-Pompano Beach, FL
487            Houston-The Woodlands-Sugar Land, TX
488                Las Vegas-Henderson-Paradise, NV
489                        New Orleans-Metairie, LA
490              Los Angeles-Long Beach-Anaheim, CA
491             Tampa-St. Petersburg-Clearwater, FL
492         Miami-Fort Lauderdale-Pompano Beach, FL
493                Las Vegas-Henderson-Paradise, NV
494              Los Angeles-Long Beach-Anaheim, CA
495           New York-Newark-Jersey City, NY-NJ-PA
496                   Baltimore-Columbia-Towson, MD
497         Miami-Fort Lauderdale-Pompano Beach, FL
498                Las Vegas-Henderson-Paradise, NV
499                     San Juan-Bayamón-Caguas, PR
500             Tampa-St. Petersburg-Clearwater, FL
501                Las Vegas-Henderson-Paradise, NV
502         Miami-Fort Lauderdale-Pompano Beach, FL
503         Miami-Fort Lauderdale-Pompano Beach, FL
504                Las Vegas-Henderson-Paradise, NV
505                        New Orleans-Metairie, LA
506             Tampa-St. Petersburg-Clearwater, FL
507                  Boston-Cambridge-Newton, MA-NH
508                Las Vegas-Henderson-Paradise, NV
509                Las Vegas-Henderson-Paradise, NV
510                       Cape Coral-Fort Myers, FL
511             Tampa-St. Petersburg-Clearwater, FL
512                   Orlando-Kissimmee-Sanford, FL
513                   Orlando-Kissimmee-Sanford, FL
514                   Orlando-Kissimmee-Sanford, FL
515            Houston-The Woodlands-Sugar Land, TX
516         Miami-Fort Lauderdale-Pompano Beach, FL
517                Las Vegas-Henderson-Paradise, NV
518                        New Orleans-Metairie, LA
519              Chicago-Naperville-Elgin, IL-IN-WI
520             Tampa-St. Petersburg-Clearwater, FL
521                Las Vegas-Henderson-Paradise, NV
522  Nashville-Davidson--Murfreesboro--Franklin, TN
523         Miami-Fort Lauderdale-Pompano Beach, FL
524            Houston-The Woodlands-Sugar Land, TX
525                   Orlando-Kissimmee-Sanford, FL
526                Austin-Round Rock-Georgetown, TX
527  Nashville-Davidson--Murfreesboro--Franklin, TN
528                  Boston-Cambridge-Newton, MA-NH
529                   Baltimore-Columbia-Towson, MD
530                      Denver-Aurora-Lakewood, CO
531           New York-Newark-Jersey City, NY-NJ-PA
532                Indianapolis-Carmel-Anderson, IN
533                Las Vegas-Henderson-Paradise, NV
534           New York-Newark-Jersey City, NY-NJ-PA
535           New York-Newark-Jersey City, NY-NJ-PA
536                Las Vegas-Henderson-Paradise, NV
537         Miami-Fort Lauderdale-Pompano Beach, FL
538                Las Vegas-Henderson-Paradise, NV
539             Tampa-St. Petersburg-Clearwater, FL
540  Nashville-Davidson--Murfreesboro--Franklin, TN
541                  Boston-Cambridge-Newton, MA-NH
542                     Detroit-Warren-Dearborn, MI
543                   Orlando-Kissimmee-Sanford, FL
544                        New Orleans-Metairie, LA
545                                  Pittsburgh, PA
546                     Seattle-Tacoma-Bellevue, WA
547         Miami-Fort Lauderdale-Pompano Beach, FL
548                              Kansas City, MO-KS
549                        New Orleans-Metairie, LA
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
551              Louisville/Jefferson County, KY-IN
552                   Orlando-Kissimmee-Sanford, FL
553                       Cape Coral-Fort Myers, FL
554                Las Vegas-Henderson-Paradise, NV
555              Los Angeles-Long Beach-Anaheim, CA
556  Nashville-Davidson--Murfreesboro--Franklin, TN
557                           Aguadilla-Isabela, PR
558               Charlotte-Concord-Gastonia, NC-SC
559                Las Vegas-Henderson-Paradise, NV
560                                  Pittsburgh, PA
561                     San Juan-Bayamón-Caguas, PR
562                Las Vegas-Henderson-Paradise, NV
563         Miami-Fort Lauderdale-Pompano Beach, FL
564                Las Vegas-Henderson-Paradise, NV
565                Las Vegas-Henderson-Paradise, NV
566                Las Vegas-Henderson-Paradise, NV
567                   Orlando-Kissimmee-Sanford, FL
568                        New Orleans-Metairie, LA
569                       Cape Coral-Fort Myers, FL
570                Las Vegas-Henderson-Paradise, NV
571              Los Angeles-Long Beach-Anaheim, CA
572                   Orlando-Kissimmee-Sanford, FL
573              Chicago-Naperville-Elgin, IL-IN-WI
574                  Boston-Cambridge-Newton, MA-NH
575             Tampa-St. Petersburg-Clearwater, FL
576         Miami-Fort Lauderdale-Pompano Beach, FL
577                  Boston-Cambridge-Newton, MA-NH
578                   Baltimore-Columbia-Towson, MD
579                                    Columbus, OH
580                Las Vegas-Henderson-Paradise, NV
581               Charlotte-Concord-Gastonia, NC-SC
582               Charlotte-Concord-Gastonia, NC-SC
583    Washington-Arlington-Alexandria, DC-VA-MD-WV
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
585    Washington-Arlington-Alexandria, DC-VA-MD-WV
586               Charlotte-Concord-Gastonia, NC-SC
587               Charlotte-Concord-Gastonia, NC-SC
588               Charlotte-Concord-Gastonia, NC-SC
589               Charlotte-Concord-Gastonia, NC-SC
590               Charlotte-Concord-Gastonia, NC-SC
591               Charlotte-Concord-Gastonia, NC-SC
592    Washington-Arlington-Alexandria, DC-VA-MD-WV
593    Washington-Arlington-Alexandria, DC-VA-MD-WV
594    Washington-Arlington-Alexandria, DC-VA-MD-WV
595               Charlotte-Concord-Gastonia, NC-SC
596               Charlotte-Concord-Gastonia, NC-SC
597               Charlotte-Concord-Gastonia, NC-SC
598               Charlotte-Concord-Gastonia, NC-SC
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
600               Charlotte-Concord-Gastonia, NC-SC
601               Allentown-Bethlehem-Easton, PA-NJ
602  Nashville-Davidson--Murfreesboro--Franklin, TN
603           New York-Newark-Jersey City, NY-NJ-PA
604    Washington-Arlington-Alexandria, DC-VA-MD-WV
605                                      Peoria, IL
606               Charlotte-Concord-Gastonia, NC-SC
607               Charlotte-Concord-Gastonia, NC-SC
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
609               Charlotte-Concord-Gastonia, NC-SC
610               Charlotte-Concord-Gastonia, NC-SC
611               Charlotte-Concord-Gastonia, NC-SC
612               Charlotte-Concord-Gastonia, NC-SC
613               Charlotte-Concord-Gastonia, NC-SC
614    Washington-Arlington-Alexandria, DC-VA-MD-WV
615               Charlotte-Concord-Gastonia, NC-SC
616                                     Jackson, MS
617                                Jacksonville, FL
618                        New Orleans-Metairie, LA
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
620                                  Montgomery, AL
621               Charlotte-Concord-Gastonia, NC-SC
622    Washington-Arlington-Alexandria, DC-VA-MD-WV
623    Washington-Arlington-Alexandria, DC-VA-MD-WV
624               Charlotte-Concord-Gastonia, NC-SC
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
627               Charlotte-Concord-Gastonia, NC-SC
628               Charlotte-Concord-Gastonia, NC-SC
629               Charlotte-Concord-Gastonia, NC-SC
630               Charlotte-Concord-Gastonia, NC-SC
631               Charlotte-Concord-Gastonia, NC-SC
632               Charlotte-Concord-Gastonia, NC-SC
633               Charlotte-Concord-Gastonia, NC-SC
634               Charlotte-Concord-Gastonia, NC-SC
635               Charlotte-Concord-Gastonia, NC-SC
636    Washington-Arlington-Alexandria, DC-VA-MD-WV
637    Washington-Arlington-Alexandria, DC-VA-MD-WV
638               Charlotte-Concord-Gastonia, NC-SC
639               Charlotte-Concord-Gastonia, NC-SC
640               Charlotte-Concord-Gastonia, NC-SC
641    Washington-Arlington-Alexandria, DC-VA-MD-WV
642    Washington-Arlington-Alexandria, DC-VA-MD-WV
643               Charlotte-Concord-Gastonia, NC-SC
644               Charlotte-Concord-Gastonia, NC-SC
645               Charlotte-Concord-Gastonia, NC-SC
646               Charlotte-Concord-Gastonia, NC-SC
647               Charlotte-Concord-Gastonia, NC-SC
648               Charlotte-Concord-Gastonia, NC-SC
649               Charlotte-Concord-Gastonia, NC-SC
650    Washington-Arlington-Alexandria, DC-VA-MD-WV
651    Washington-Arlington-Alexandria, DC-VA-MD-WV
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
654               Charlotte-Concord-Gastonia, NC-SC
655               Charlotte-Concord-Gastonia, NC-SC
656               Charlotte-Concord-Gastonia, NC-SC
657               Charlotte-Concord-Gastonia, NC-SC
658               Charlotte-Concord-Gastonia, NC-SC
659               Charlotte-Concord-Gastonia, NC-SC
660               Charlotte-Concord-Gastonia, NC-SC
661               Charlotte-Concord-Gastonia, NC-SC
662               Charlotte-Concord-Gastonia, NC-SC
663               Charlotte-Concord-Gastonia, NC-SC
664    Washington-Arlington-Alexandria, DC-VA-MD-WV
665               Charlotte-Concord-Gastonia, NC-SC
666               Charlotte-Concord-Gastonia, NC-SC
667    Washington-Arlington-Alexandria, DC-VA-MD-WV
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
669  Nashville-Davidson--Murfreesboro--Franklin, TN
670                 Charleston-North Charleston, SC
671    Washington-Arlington-Alexandria, DC-VA-MD-WV
672                                  Wilmington, NC
673                                Jacksonville, FL
674         Minneapolis-St. Paul-Bloomington, MN-WI
675                                Raleigh-Cary, NC
676               Charlotte-Concord-Gastonia, NC-SC
677               Charlotte-Concord-Gastonia, NC-SC
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
683               Charlotte-Concord-Gastonia, NC-SC
684               Charlotte-Concord-Gastonia, NC-SC
685    Washington-Arlington-Alexandria, DC-VA-MD-WV
686    Washington-Arlington-Alexandria, DC-VA-MD-WV
687    Washington-Arlington-Alexandria, DC-VA-MD-WV
688    Washington-Arlington-Alexandria, DC-VA-MD-WV
689              Los Angeles-Long Beach-Anaheim, CA
690                      Denver-Aurora-Lakewood, CO
691              Chicago-Naperville-Elgin, IL-IN-WI
692              Chicago-Naperville-Elgin, IL-IN-WI
693              Chicago-Naperville-Elgin, IL-IN-WI
694              Los Angeles-Long Beach-Anaheim, CA
695              San Diego-Chula Vista-Carlsbad, CA
696                      Denver-Aurora-Lakewood, CO
697              Chicago-Naperville-Elgin, IL-IN-WI
698              Chicago-Naperville-Elgin, IL-IN-WI
699                      Denver-Aurora-Lakewood, CO
700              San Francisco-Oakland-Berkeley, CA
701                      Denver-Aurora-Lakewood, CO
702              Chicago-Naperville-Elgin, IL-IN-WI
703                      Denver-Aurora-Lakewood, CO
704            Houston-The Woodlands-Sugar Land, TX
705                      Spokane-Spokane Valley, WA
706              Los Angeles-Long Beach-Anaheim, CA
707             Portland-Vancouver-Hillsboro, OR-WA
708                     Seattle-Tacoma-Bellevue, WA
709              San Francisco-Oakland-Berkeley, CA
710              San Jose-Sunnyvale-Santa Clara, CA
711                     Seattle-Tacoma-Bellevue, WA
712                              Salt Lake City, UT
713                      Denver-Aurora-Lakewood, CO
714                       Phoenix-Mesa-Chandler, AZ
715                       Phoenix-Mesa-Chandler, AZ
716             Portland-Vancouver-Hillsboro, OR-WA
717              San Francisco-Oakland-Berkeley, CA
718              Los Angeles-Long Beach-Anaheim, CA
719              Chicago-Naperville-Elgin, IL-IN-WI
720                      Denver-Aurora-Lakewood, CO
721              Chicago-Naperville-Elgin, IL-IN-WI
722                 Dallas-Fort Worth-Arlington, TX
723                      Denver-Aurora-Lakewood, CO
724                      Denver-Aurora-Lakewood, CO
725              Los Angeles-Long Beach-Anaheim, CA
726                      Denver-Aurora-Lakewood, CO
727              Los Angeles-Long Beach-Anaheim, CA
728                Austin-Round Rock-Georgetown, TX
729                                  Boise City, ID
730                                     Bozeman, MT
731                  Des Moines-West Des Moines, IA
732                               Memphis, TN-MS-AR
733                     Omaha-Council Bluffs, NE-IA
734                      Denver-Aurora-Lakewood, CO
735                      Denver-Aurora-Lakewood, CO
736         Minneapolis-St. Paul-Bloomington, MN-WI
737                      Denver-Aurora-Lakewood, CO
738                      Denver-Aurora-Lakewood, CO
739              Chicago-Naperville-Elgin, IL-IN-WI
740              San Francisco-Oakland-Berkeley, CA
741              San Francisco-Oakland-Berkeley, CA
742                       Phoenix-Mesa-Chandler, AZ
743             Portland-Vancouver-Hillsboro, OR-WA
744              San Diego-Chula Vista-Carlsbad, CA
745                     Seattle-Tacoma-Bellevue, WA
746              San Francisco-Oakland-Berkeley, CA
747              San Francisco-Oakland-Berkeley, CA
748         Minneapolis-St. Paul-Bloomington, MN-WI
749                              Salt Lake City, UT
750              Chicago-Naperville-Elgin, IL-IN-WI
751              Chicago-Naperville-Elgin, IL-IN-WI
752                     Detroit-Warren-Dearborn, MI
753                                  Boise City, ID
754                                  Boise City, ID
755              Los Angeles-Long Beach-Anaheim, CA
756                     Seattle-Tacoma-Bellevue, WA
757              San Francisco-Oakland-Berkeley, CA
758            Houston-The Woodlands-Sugar Land, TX
759            Houston-The Woodlands-Sugar Land, TX
760            Houston-The Woodlands-Sugar Land, TX
761              Chicago-Naperville-Elgin, IL-IN-WI
762                      Denver-Aurora-Lakewood, CO
763                     Detroit-Warren-Dearborn, MI
764         Minneapolis-St. Paul-Bloomington, MN-WI
765                     Detroit-Warren-Dearborn, MI
766                                     El Paso, TX
767                              Salt Lake City, UT
768                      Denver-Aurora-Lakewood, CO
769                      Denver-Aurora-Lakewood, CO
770              Chicago-Naperville-Elgin, IL-IN-WI
771    Washington-Arlington-Alexandria, DC-VA-MD-WV
772              Los Angeles-Long Beach-Anaheim, CA
773                       Phoenix-Mesa-Chandler, AZ
774                                      Tucson, AZ
775                                  Boise City, ID
776                                     Bozeman, MT
777                      Spokane-Spokane Valley, WA
778                         Santa Rosa-Petaluma, CA
779              San Jose-Sunnyvale-Santa Clara, CA
780                            Glenwood Springs, CO
781            Houston-The Woodlands-Sugar Land, TX
782            Houston-The Woodlands-Sugar Land, TX
783              Chicago-Naperville-Elgin, IL-IN-WI
784              Chicago-Naperville-Elgin, IL-IN-WI
785                 Dallas-Fort Worth-Arlington, TX
786              Chicago-Naperville-Elgin, IL-IN-WI
787                       Phoenix-Mesa-Chandler, AZ
788              San Francisco-Oakland-Berkeley, CA
789                      Denver-Aurora-Lakewood, CO
790                      Denver-Aurora-Lakewood, CO
791                      Denver-Aurora-Lakewood, CO
792              San Diego-Chula Vista-Carlsbad, CA
793         Minneapolis-St. Paul-Bloomington, MN-WI
794                                    Appleton, WI
795    Washington-Arlington-Alexandria, DC-VA-MD-WV
796                      Denver-Aurora-Lakewood, CO
797              Chicago-Naperville-Elgin, IL-IN-WI
798             Portland-Vancouver-Hillsboro, OR-WA
799                 Dallas-Fort Worth-Arlington, TX
800              Los Angeles-Long Beach-Anaheim, CA
801              Chicago-Naperville-Elgin, IL-IN-WI
802                      Denver-Aurora-Lakewood, CO
803            Houston-The Woodlands-Sugar Land, TX
804              Los Angeles-Long Beach-Anaheim, CA
805                     Detroit-Warren-Dearborn, MI
806         Minneapolis-St. Paul-Bloomington, MN-WI
807                       Phoenix-Mesa-Chandler, AZ
808                       Phoenix-Mesa-Chandler, AZ
809              San Francisco-Oakland-Berkeley, CA
810                            Cleveland-Elyria, OH
811                                    Columbia, MO
812                                     Wichita, KS
813                                 Spartanburg, SC
814                                   Knoxville, TN
815                     Detroit-Warren-Dearborn, MI
816              Los Angeles-Long Beach-Anaheim, CA
817                                      Fresno, CA
818                                     Medford, OR
819              San Francisco-Oakland-Berkeley, CA
820              San Diego-Chula Vista-Carlsbad, CA
821              San Francisco-Oakland-Berkeley, CA
822                 Sacramento-Roseville-Folsom, CA
823              Los Angeles-Long Beach-Anaheim, CA
824                     Seattle-Tacoma-Bellevue, WA
825              San Francisco-Oakland-Berkeley, CA
826                                      Fresno, CA
827                      Denver-Aurora-Lakewood, CO
828                     Detroit-Warren-Dearborn, MI
829              Chicago-Naperville-Elgin, IL-IN-WI
830            Houston-The Woodlands-Sugar Land, TX
831                       Phoenix-Mesa-Chandler, AZ
832              San Jose-Sunnyvale-Santa Clara, CA
833                              Salt Lake City, UT
834                     Detroit-Warren-Dearborn, MI
835                      Denver-Aurora-Lakewood, CO
836                       Phoenix-Mesa-Chandler, AZ
837                     Seattle-Tacoma-Bellevue, WA
838                              Salt Lake City, UT
839                      Denver-Aurora-Lakewood, CO
840                      Denver-Aurora-Lakewood, CO
841                      Denver-Aurora-Lakewood, CO
842                     Seattle-Tacoma-Bellevue, WA
843                       Phoenix-Mesa-Chandler, AZ
844                 Sacramento-Roseville-Folsom, CA
845                Austin-Round Rock-Georgetown, TX
846                                      Fresno, CA
847                                     Salinas, CA
848             Portland-Vancouver-Hillsboro, OR-WA
849              San Jose-Sunnyvale-Santa Clara, CA
850                         Santa Rosa-Petaluma, CA
851              Los Angeles-Long Beach-Anaheim, CA
852              Los Angeles-Long Beach-Anaheim, CA
853              Los Angeles-Long Beach-Anaheim, CA
854                       Phoenix-Mesa-Chandler, AZ
855              San Francisco-Oakland-Berkeley, CA
856                     Detroit-Warren-Dearborn, MI
857             Portland-Vancouver-Hillsboro, OR-WA
858         Minneapolis-St. Paul-Bloomington, MN-WI
859              Los Angeles-Long Beach-Anaheim, CA
860                                  Boise City, ID
861                                      Fresno, CA
862                      Spokane-Spokane Valley, WA
863              San Jose-Sunnyvale-Santa Clara, CA
864            Riverside-San Bernardino-Ontario, CA
865                 Dallas-Fort Worth-Arlington, TX
866             Portland-Vancouver-Hillsboro, OR-WA
867                       Phoenix-Mesa-Chandler, AZ
868              Los Angeles-Long Beach-Anaheim, CA
869                                  Boise City, ID
870                 Dallas-Fort Worth-Arlington, TX
871                      Spokane-Spokane Valley, WA
872                Austin-Round Rock-Georgetown, TX
873                      Spokane-Spokane Valley, WA
874              Los Angeles-Long Beach-Anaheim, CA
875             Portland-Vancouver-Hillsboro, OR-WA
876              San Diego-Chula Vista-Carlsbad, CA
877                      Denver-Aurora-Lakewood, CO
878                 Dallas-Fort Worth-Arlington, TX
879              San Diego-Chula Vista-Carlsbad, CA
880              Los Angeles-Long Beach-Anaheim, CA
881                      Denver-Aurora-Lakewood, CO
882                      Denver-Aurora-Lakewood, CO
883              San Francisco-Oakland-Berkeley, CA
884              San Francisco-Oakland-Berkeley, CA
885              San Francisco-Oakland-Berkeley, CA
886                                  Boise City, ID
887             Portland-Vancouver-Hillsboro, OR-WA
888              San Diego-Chula Vista-Carlsbad, CA
889                     Seattle-Tacoma-Bellevue, WA
890                     Seattle-Tacoma-Bellevue, WA
891              San Francisco-Oakland-Berkeley, CA
892              San Francisco-Oakland-Berkeley, CA
893              Chicago-Naperville-Elgin, IL-IN-WI
894              Chicago-Naperville-Elgin, IL-IN-WI
895                       Phoenix-Mesa-Chandler, AZ
896              Los Angeles-Long Beach-Anaheim, CA
897             Portland-Vancouver-Hillsboro, OR-WA
898              San Diego-Chula Vista-Carlsbad, CA
899              Chicago-Naperville-Elgin, IL-IN-WI
900                     Detroit-Warren-Dearborn, MI
901              Los Angeles-Long Beach-Anaheim, CA
902                     Seattle-Tacoma-Bellevue, WA
903            Houston-The Woodlands-Sugar Land, TX
904              San Francisco-Oakland-Berkeley, CA
905             Portland-Vancouver-Hillsboro, OR-WA
906                     Seattle-Tacoma-Bellevue, WA
907                     Seattle-Tacoma-Bellevue, WA
908                     Seattle-Tacoma-Bellevue, WA
909                                     Pullman, WA
910                 Sacramento-Roseville-Folsom, CA
911                     Seattle-Tacoma-Bellevue, WA
912                     Seattle-Tacoma-Bellevue, WA
913                     Seattle-Tacoma-Bellevue, WA
914                     Seattle-Tacoma-Bellevue, WA
915                     Seattle-Tacoma-Bellevue, WA
916                     Seattle-Tacoma-Bellevue, WA
917                     Seattle-Tacoma-Bellevue, WA
918                     Seattle-Tacoma-Bellevue, WA
919             Portland-Vancouver-Hillsboro, OR-WA
920             Portland-Vancouver-Hillsboro, OR-WA
921                     Seattle-Tacoma-Bellevue, WA
922              San Francisco-Oakland-Berkeley, CA
923                     Seattle-Tacoma-Bellevue, WA
924                     Seattle-Tacoma-Bellevue, WA
925                     Seattle-Tacoma-Bellevue, WA
926              San Francisco-Oakland-Berkeley, CA
927              Los Angeles-Long Beach-Anaheim, CA
928             Portland-Vancouver-Hillsboro, OR-WA
929                     Seattle-Tacoma-Bellevue, WA
930                                  Boise City, ID
931                      Spokane-Spokane Valley, WA
932                Las Vegas-Henderson-Paradise, NV
933              Los Angeles-Long Beach-Anaheim, CA
934                      Spokane-Spokane Valley, WA
935              San Jose-Sunnyvale-Santa Clara, CA
936              San Francisco-Oakland-Berkeley, CA
937                     Seattle-Tacoma-Bellevue, WA
938                     Seattle-Tacoma-Bellevue, WA
939              Los Angeles-Long Beach-Anaheim, CA
940                     Seattle-Tacoma-Bellevue, WA
941                     Seattle-Tacoma-Bellevue, WA
942                                     Bozeman, MT
943                          Eugene-Springfield, OR
944                                   Kalispell, MT
945                                 Great Falls, MT
946                                 Idaho Falls, ID
947                                     Medford, OR
948                                     Salinas, CA
949                                    Missoula, MT
950              San Francisco-Oakland-Berkeley, CA
951             Portland-Vancouver-Hillsboro, OR-WA
952                                     Pullman, WA
953                                     Redding, CA
954                                        Bend, OR
955                                        Reno, NV
956                 Sacramento-Roseville-Folsom, CA
957                Las Vegas-Henderson-Paradise, NV
958                                  Boise City, ID
959                         Santa Rosa-Petaluma, CA
960                     Seattle-Tacoma-Bellevue, WA
961                     Seattle-Tacoma-Bellevue, WA
962            Houston-The Woodlands-Sugar Land, TX
963              Chicago-Naperville-Elgin, IL-IN-WI
964              Chicago-Naperville-Elgin, IL-IN-WI
965                      Denver-Aurora-Lakewood, CO
966                      Denver-Aurora-Lakewood, CO
967    Washington-Arlington-Alexandria, DC-VA-MD-WV
968              Chicago-Naperville-Elgin, IL-IN-WI
969              Chicago-Naperville-Elgin, IL-IN-WI
970                  Boston-Cambridge-Newton, MA-NH
971                      Denver-Aurora-Lakewood, CO
972                      Denver-Aurora-Lakewood, CO
973           New York-Newark-Jersey City, NY-NJ-PA
974            Houston-The Woodlands-Sugar Land, TX
975            Houston-The Woodlands-Sugar Land, TX
976            Houston-The Woodlands-Sugar Land, TX
977            Houston-The Woodlands-Sugar Land, TX
978                      Denver-Aurora-Lakewood, CO
979    Washington-Arlington-Alexandria, DC-VA-MD-WV
980    Washington-Arlington-Alexandria, DC-VA-MD-WV
981    Washington-Arlington-Alexandria, DC-VA-MD-WV
982    Washington-Arlington-Alexandria, DC-VA-MD-WV
983    Washington-Arlington-Alexandria, DC-VA-MD-WV
984    Washington-Arlington-Alexandria, DC-VA-MD-WV
985                       College Station-Bryan, TX
986                      Denver-Aurora-Lakewood, CO
987                      Denver-Aurora-Lakewood, CO
988              Chicago-Naperville-Elgin, IL-IN-WI
989                      Denver-Aurora-Lakewood, CO
990                      Denver-Aurora-Lakewood, CO
991           New York-Newark-Jersey City, NY-NJ-PA
992           New York-Newark-Jersey City, NY-NJ-PA
993           New York-Newark-Jersey City, NY-NJ-PA
994           New York-Newark-Jersey City, NY-NJ-PA
995           New York-Newark-Jersey City, NY-NJ-PA
996    Washington-Arlington-Alexandria, DC-VA-MD-WV
997            Houston-The Woodlands-Sugar Land, TX
998              Los Angeles-Long Beach-Anaheim, CA
999              Chicago-Naperville-Elgin, IL-IN-WI
1000             San Francisco-Oakland-Berkeley, CA
1001          New York-Newark-Jersey City, NY-NJ-PA
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV
1003                     Denver-Aurora-Lakewood, CO
1004             Chicago-Naperville-Elgin, IL-IN-WI
1005             Chicago-Naperville-Elgin, IL-IN-WI
1006             San Francisco-Oakland-Berkeley, CA
1007                     Denver-Aurora-Lakewood, CO
1008                     Denver-Aurora-Lakewood, CO
1009             Chicago-Naperville-Elgin, IL-IN-WI
1010             Chicago-Naperville-Elgin, IL-IN-WI
1011                     Denver-Aurora-Lakewood, CO
1012          New York-Newark-Jersey City, NY-NJ-PA
1013        Miami-Fort Lauderdale-Pompano Beach, FL
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV
1015                     Denver-Aurora-Lakewood, CO
1016             Chicago-Naperville-Elgin, IL-IN-WI
1017             Chicago-Naperville-Elgin, IL-IN-WI
1018                 Boston-Cambridge-Newton, MA-NH
1019          New York-Newark-Jersey City, NY-NJ-PA
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV
1021           Houston-The Woodlands-Sugar Land, TX
1022           Houston-The Woodlands-Sugar Land, TX
1023             Los Angeles-Long Beach-Anaheim, CA
1024             Los Angeles-Long Beach-Anaheim, CA
1025                             Kansas City, MO-KS
1026             Chicago-Naperville-Elgin, IL-IN-WI
1027             Chicago-Naperville-Elgin, IL-IN-WI
1028             Chicago-Naperville-Elgin, IL-IN-WI
1029            Portland-Vancouver-Hillsboro, OR-WA
1030                      Phoenix-Mesa-Chandler, AZ
1031                  San Antonio-New Braunfels, TX
1032                Sacramento-Roseville-Folsom, CA
1033          New York-Newark-Jersey City, NY-NJ-PA
1034             Chicago-Naperville-Elgin, IL-IN-WI
1035             San Francisco-Oakland-Berkeley, CA
1036                           Cleveland-Elyria, OH
1037                           Cleveland-Elyria, OH
1038                           Cleveland-Elyria, OH
1039                     Denver-Aurora-Lakewood, CO
1040                     Denver-Aurora-Lakewood, CO
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV
1042           Houston-The Woodlands-Sugar Land, TX
1043           Houston-The Woodlands-Sugar Land, TX
1044                               Jacksonville, FL
1045                  Orlando-Kissimmee-Sanford, FL
1046        Miami-Fort Lauderdale-Pompano Beach, FL
1047             Chicago-Naperville-Elgin, IL-IN-WI
1048             Chicago-Naperville-Elgin, IL-IN-WI
1049        Miami-Fort Lauderdale-Pompano Beach, FL
1050                      Phoenix-Mesa-Chandler, AZ
1051                               Raleigh-Cary, NC
1052                      Cape Coral-Fort Myers, FL
1053             San Diego-Chula Vista-Carlsbad, CA
1054                                   Savannah, GA
1055             San Francisco-Oakland-Berkeley, CA
1056                    San Juan-Bayamón-Caguas, PR
1057                             Salt Lake City, UT
1058              North Port-Sarasota-Bradenton, FL
1059            Tampa-St. Petersburg-Clearwater, FL
1060                     Denver-Aurora-Lakewood, CO
1061                     Denver-Aurora-Lakewood, CO
1062          New York-Newark-Jersey City, NY-NJ-PA
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV
1064           Houston-The Woodlands-Sugar Land, TX
1065             San Francisco-Oakland-Berkeley, CA
1066                     Denver-Aurora-Lakewood, CO
1067                     Denver-Aurora-Lakewood, CO
1068             Chicago-Naperville-Elgin, IL-IN-WI
1069          New York-Newark-Jersey City, NY-NJ-PA
1070          New York-Newark-Jersey City, NY-NJ-PA
1071          New York-Newark-Jersey City, NY-NJ-PA
1072           Houston-The Woodlands-Sugar Land, TX
1073           Houston-The Woodlands-Sugar Land, TX
1074           Houston-The Woodlands-Sugar Land, TX
1075             San Francisco-Oakland-Berkeley, CA
1076             San Francisco-Oakland-Berkeley, CA
1077             San Francisco-Oakland-Berkeley, CA
1078 Nashville-Davidson--Murfreesboro--Franklin, TN
1079                 Boston-Cambridge-Newton, MA-NH
1080        Miami-Fort Lauderdale-Pompano Beach, FL
1081                               Jacksonville, FL
1082             Los Angeles-Long Beach-Anaheim, CA
1083                  Orlando-Kissimmee-Sanford, FL
1084        Miami-Fort Lauderdale-Pompano Beach, FL
1085                               Raleigh-Cary, NC
1086             San Francisco-Oakland-Berkeley, CA
1087            Tampa-St. Petersburg-Clearwater, FL
1088                     Denver-Aurora-Lakewood, CO
1089                               Jacksonville, FL
1090             Los Angeles-Long Beach-Anaheim, CA
1091          New York-Newark-Jersey City, NY-NJ-PA
1092                       New Orleans-Metairie, LA
1093             Chicago-Naperville-Elgin, IL-IN-WI
1094                      Phoenix-Mesa-Chandler, AZ
1095                      Cape Coral-Fort Myers, FL
1096            Tampa-St. Petersburg-Clearwater, FL
1097                     Denver-Aurora-Lakewood, CO
1098                     Denver-Aurora-Lakewood, CO
1099                     Denver-Aurora-Lakewood, CO
1100          New York-Newark-Jersey City, NY-NJ-PA
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV
1103           Houston-The Woodlands-Sugar Land, TX
1104             San Francisco-Oakland-Berkeley, CA
1105                     Denver-Aurora-Lakewood, CO
1106                     Denver-Aurora-Lakewood, CO
1107          New York-Newark-Jersey City, NY-NJ-PA
1108          New York-Newark-Jersey City, NY-NJ-PA
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV
1111           Houston-The Woodlands-Sugar Land, TX
1112           Houston-The Woodlands-Sugar Land, TX
1113           Houston-The Woodlands-Sugar Land, TX
1114           Houston-The Woodlands-Sugar Land, TX
1115           Houston-The Woodlands-Sugar Land, TX
1116           Houston-The Woodlands-Sugar Land, TX
1117             Chicago-Naperville-Elgin, IL-IN-WI
1118             Chicago-Naperville-Elgin, IL-IN-WI
1119                     Denver-Aurora-Lakewood, CO
1120          New York-Newark-Jersey City, NY-NJ-PA
1121           Houston-The Woodlands-Sugar Land, TX
1122           Houston-The Woodlands-Sugar Land, TX
1123           Houston-The Woodlands-Sugar Land, TX
1124               Las Vegas-Henderson-Paradise, NV
1125                  Orlando-Kissimmee-Sanford, FL
1126             Chicago-Naperville-Elgin, IL-IN-WI
1127                     Denver-Aurora-Lakewood, CO
1128                     Denver-Aurora-Lakewood, CO
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV
1130             Chicago-Naperville-Elgin, IL-IN-WI
1131                     Denver-Aurora-Lakewood, CO
1132             Los Angeles-Long Beach-Anaheim, CA
1133                     Denver-Aurora-Lakewood, CO
1134          New York-Newark-Jersey City, NY-NJ-PA
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV
1136           Houston-The Woodlands-Sugar Land, TX
1137           Houston-The Woodlands-Sugar Land, TX
1138             Chicago-Naperville-Elgin, IL-IN-WI
1139           Houston-The Woodlands-Sugar Land, TX
1140           Houston-The Woodlands-Sugar Land, TX
1141                     Denver-Aurora-Lakewood, CO
1142                     Denver-Aurora-Lakewood, CO
1143                     Denver-Aurora-Lakewood, CO
1144                     Denver-Aurora-Lakewood, CO
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV
1146           Houston-The Woodlands-Sugar Land, TX
1147                     Denver-Aurora-Lakewood, CO
1148                     Denver-Aurora-Lakewood, CO
1149                     Denver-Aurora-Lakewood, CO
1150                     Denver-Aurora-Lakewood, CO
1151                  Baltimore-Columbia-Towson, MD
1152                           Cleveland-Elyria, OH
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV
1154                     Denver-Aurora-Lakewood, CO
1155          New York-Newark-Jersey City, NY-NJ-PA
1156        Miami-Fort Lauderdale-Pompano Beach, FL
1157                      Grand Rapids-Kentwood, MI
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV
1159           Houston-The Woodlands-Sugar Land, TX
1160                                 Pittsburgh, PA
1161                                   Richmond, VA
1162                                  Rochester, NY
1163             San Diego-Chula Vista-Carlsbad, CA
1164                     Denver-Aurora-Lakewood, CO
1165             Chicago-Naperville-Elgin, IL-IN-WI
1166          New York-Newark-Jersey City, NY-NJ-PA
1167                     Denver-Aurora-Lakewood, CO
1168          New York-Newark-Jersey City, NY-NJ-PA
1169             San Francisco-Oakland-Berkeley, CA
1170             San Francisco-Oakland-Berkeley, CA
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV
1172             Chicago-Naperville-Elgin, IL-IN-WI
1173             Chicago-Naperville-Elgin, IL-IN-WI
1174                     Denver-Aurora-Lakewood, CO
1175                     Denver-Aurora-Lakewood, CO
1176             Chicago-Naperville-Elgin, IL-IN-WI
1177             San Francisco-Oakland-Berkeley, CA
1178          New York-Newark-Jersey City, NY-NJ-PA
1179           Houston-The Woodlands-Sugar Land, TX
1180           Houston-The Woodlands-Sugar Land, TX
1181                     Denver-Aurora-Lakewood, CO
1182                     Denver-Aurora-Lakewood, CO
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV
1184             Chicago-Naperville-Elgin, IL-IN-WI
1185             Chicago-Naperville-Elgin, IL-IN-WI
1186             Chicago-Naperville-Elgin, IL-IN-WI
1187               Austin-Round Rock-Georgetown, TX
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV
1189          New York-Newark-Jersey City, NY-NJ-PA
1190        Miami-Fort Lauderdale-Pompano Beach, FL
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV
1193           Houston-The Woodlands-Sugar Land, TX
1194                    Kahului-Wailuku-Lahaina, HI
1195             Chicago-Naperville-Elgin, IL-IN-WI
1196             Chicago-Naperville-Elgin, IL-IN-WI
1197             Chicago-Naperville-Elgin, IL-IN-WI
1198          New York-Newark-Jersey City, NY-NJ-PA
1199           Houston-The Woodlands-Sugar Land, TX
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV
1201                           Cleveland-Elyria, OH
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV
1203           Houston-The Woodlands-Sugar Land, TX
1204           Houston-The Woodlands-Sugar Land, TX
1205                Dallas-Fort Worth-Arlington, TX
1206                Dallas-Fort Worth-Arlington, TX
1207               Las Vegas-Henderson-Paradise, NV
1208               Austin-Round Rock-Georgetown, TX
1209               Las Vegas-Henderson-Paradise, NV
1210                      Phoenix-Mesa-Chandler, AZ
1211                  Baltimore-Columbia-Towson, MD
1212                  Baltimore-Columbia-Towson, MD
1213                  Baltimore-Columbia-Towson, MD
1214                  Baltimore-Columbia-Towson, MD
1215                  Orlando-Kissimmee-Sanford, FL
1216             Chicago-Naperville-Elgin, IL-IN-WI
1217             Chicago-Naperville-Elgin, IL-IN-WI
1218                  Baltimore-Columbia-Towson, MD
1219                  Orlando-Kissimmee-Sanford, FL
1220               Las Vegas-Henderson-Paradise, NV
1221                Dallas-Fort Worth-Arlington, TX
1222                  Baltimore-Columbia-Towson, MD
1223                Dallas-Fort Worth-Arlington, TX
1224                Dallas-Fort Worth-Arlington, TX
1225                Dallas-Fort Worth-Arlington, TX
1226                Dallas-Fort Worth-Arlington, TX
1227                Dallas-Fort Worth-Arlington, TX
1228           Houston-The Woodlands-Sugar Land, TX
1229          New York-Newark-Jersey City, NY-NJ-PA
1230                  Orlando-Kissimmee-Sanford, FL
1231             Chicago-Naperville-Elgin, IL-IN-WI
1232                         Milwaukee-Waukesha, WI
1233                      Phoenix-Mesa-Chandler, AZ
1234                      Phoenix-Mesa-Chandler, AZ
1235                      Phoenix-Mesa-Chandler, AZ
1236                               St. Louis, MO-IL
1237               Austin-Round Rock-Georgetown, TX
1238 Nashville-Davidson--Murfreesboro--Franklin, TN
1239                           Cleveland-Elyria, OH
1240                                Panama City, FL
1241        Miami-Fort Lauderdale-Pompano Beach, FL
1242           Houston-The Woodlands-Sugar Land, TX
1243               Indianapolis-Carmel-Anderson, IN
1244                                    Jackson, MS
1245               Las Vegas-Henderson-Paradise, NV
1246       Little Rock-North Little Rock-Conway, AR
1247                             Kansas City, MO-KS
1248                              Memphis, TN-MS-AR
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1251                      Phoenix-Mesa-Chandler, AZ
1252                                 Pittsburgh, PA
1253                                   Richmond, VA
1254                      Cape Coral-Fort Myers, FL
1255            Tampa-St. Petersburg-Clearwater, FL
1256 Nashville-Davidson--Murfreesboro--Franklin, TN
1257                Dallas-Fort Worth-Arlington, TX
1258                Dallas-Fort Worth-Arlington, TX
1259                Dallas-Fort Worth-Arlington, TX
1260                                    El Paso, TX
1261           Houston-The Woodlands-Sugar Land, TX
1262           Houston-The Woodlands-Sugar Land, TX
1263             Los Angeles-Long Beach-Anaheim, CA
1264             Chicago-Naperville-Elgin, IL-IN-WI
1265                      Phoenix-Mesa-Chandler, AZ
1266                      Phoenix-Mesa-Chandler, AZ
1267                      Phoenix-Mesa-Chandler, AZ
1268             San Diego-Chula Vista-Carlsbad, CA
1269             Los Angeles-Long Beach-Anaheim, CA
1270                  Baltimore-Columbia-Towson, MD
1271                Dallas-Fort Worth-Arlington, TX
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV
1273           Houston-The Woodlands-Sugar Land, TX
1274                      Brownsville-Harlingen, TX
1275             Los Angeles-Long Beach-Anaheim, CA
1276             Los Angeles-Long Beach-Anaheim, CA
1277                             Kansas City, MO-KS
1278             Chicago-Naperville-Elgin, IL-IN-WI
1279        Minneapolis-St. Paul-Bloomington, MN-WI
1280                       New Orleans-Metairie, LA
1281             San Francisco-Oakland-Berkeley, CA
1282                               Raleigh-Cary, NC
1283             Los Angeles-Long Beach-Anaheim, CA
1284                               St. Louis, MO-IL
1285            Tampa-St. Petersburg-Clearwater, FL
1286             Chicago-Naperville-Elgin, IL-IN-WI
1287             Chicago-Naperville-Elgin, IL-IN-WI
1288                  Baltimore-Columbia-Towson, MD
1289                  Orlando-Kissimmee-Sanford, FL
1290                  Baltimore-Columbia-Towson, MD
1291                Dallas-Fort Worth-Arlington, TX
1292           Houston-The Woodlands-Sugar Land, TX
1293                  Orlando-Kissimmee-Sanford, FL
1294             Chicago-Naperville-Elgin, IL-IN-WI
1295            Tampa-St. Petersburg-Clearwater, FL
1296               Las Vegas-Henderson-Paradise, NV
1297               Austin-Round Rock-Georgetown, TX
1298          Hartford-East Hartford-Middletown, CT
1299                Dallas-Fort Worth-Arlington, TX
1300                     Denver-Aurora-Lakewood, CO
1301           Houston-The Woodlands-Sugar Land, TX
1302          New York-Newark-Jersey City, NY-NJ-PA
1303                             Kansas City, MO-KS
1304                  Orlando-Kissimmee-Sanford, FL
1305     Virginia Beach-Norfolk-Newport News, VA-NC
1306                      Phoenix-Mesa-Chandler, AZ
1307                      Cape Coral-Fort Myers, FL
1308             San Jose-Sunnyvale-Santa Clara, CA
1309              North Port-Sarasota-Bradenton, FL
1310            Tampa-St. Petersburg-Clearwater, FL
1311                 Boston-Cambridge-Newton, MA-NH
1312                  Baltimore-Columbia-Towson, MD
1313                Charleston-North Charleston, SC
1314                           Cleveland-Elyria, OH
1315              Charlotte-Concord-Gastonia, NC-SC
1316                                   Columbus, OH
1317                    Detroit-Warren-Dearborn, MI
1318                                Panama City, FL
1319                               Jacksonville, FL
1320             Chicago-Naperville-Elgin, IL-IN-WI
1321        Miami-Fort Lauderdale-Pompano Beach, FL
1322                         Milwaukee-Waukesha, WI
1323                       New Orleans-Metairie, LA
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1325             San Francisco-Oakland-Berkeley, CA
1326             San Francisco-Oakland-Berkeley, CA
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1328                                 Pittsburgh, PA
1329                 Pensacola-Ferry Pass-Brent, FL
1330                               Raleigh-Cary, NC
1331                                   Savannah, GA
1332         Crestview-Fort Walton Beach-Destin, FL
1333                     Denver-Aurora-Lakewood, CO
1334                     Denver-Aurora-Lakewood, CO
1335               Las Vegas-Henderson-Paradise, NV
1336             San Francisco-Oakland-Berkeley, CA
1337                      Phoenix-Mesa-Chandler, AZ
1338             San Diego-Chula Vista-Carlsbad, CA
1339               Las Vegas-Henderson-Paradise, NV
1340 Nashville-Davidson--Murfreesboro--Franklin, TN
1341 Nashville-Davidson--Murfreesboro--Franklin, TN
1342                  Baltimore-Columbia-Towson, MD
1343                  Baltimore-Columbia-Towson, MD
1344                  Baltimore-Columbia-Towson, MD
1345                  Baltimore-Columbia-Towson, MD
1346                  Baltimore-Columbia-Towson, MD
1347                  Baltimore-Columbia-Towson, MD
1348             Chicago-Naperville-Elgin, IL-IN-WI
1349             Chicago-Naperville-Elgin, IL-IN-WI
1350             Chicago-Naperville-Elgin, IL-IN-WI
1351             Chicago-Naperville-Elgin, IL-IN-WI
1352             Chicago-Naperville-Elgin, IL-IN-WI
1353             Chicago-Naperville-Elgin, IL-IN-WI
1354                  Baltimore-Columbia-Towson, MD
1355        Miami-Fort Lauderdale-Pompano Beach, FL
1356                  Orlando-Kissimmee-Sanford, FL
1357             Chicago-Naperville-Elgin, IL-IN-WI
1358                Dallas-Fort Worth-Arlington, TX
1359                Dallas-Fort Worth-Arlington, TX
1360                Dallas-Fort Worth-Arlington, TX
1361                Dallas-Fort Worth-Arlington, TX
1362               Las Vegas-Henderson-Paradise, NV
1363                Sacramento-Roseville-Folsom, CA
1364               Austin-Round Rock-Georgetown, TX
1365                     Denver-Aurora-Lakewood, CO
1366           Houston-The Woodlands-Sugar Land, TX
1367             San Francisco-Oakland-Berkeley, CA
1368             San Jose-Sunnyvale-Santa Clara, CA
1369                          Birmingham-Hoover, AL
1370 Nashville-Davidson--Murfreesboro--Franklin, TN
1371 Nashville-Davidson--Murfreesboro--Franklin, TN
1372                           Cincinnati, OH-KY-IN
1373                      Grand Rapids-Kentwood, MI
1374               Indianapolis-Carmel-Anderson, IN
1375             Chicago-Naperville-Elgin, IL-IN-WI
1376                                   Savannah, GA
1377         Crestview-Fort Walton Beach-Destin, FL
1378          Hartford-East Hartford-Middletown, CT
1379                        Buffalo-Cheektowaga, NY
1380                Charleston-North Charleston, SC
1381                           Cleveland-Elyria, OH
1382        Miami-Fort Lauderdale-Pompano Beach, FL
1383                                Spartanburg, SC
1384           Houston-The Woodlands-Sugar Land, TX
1385          New York-Newark-Jersey City, NY-NJ-PA
1386               Las Vegas-Henderson-Paradise, NV
1387          New York-Newark-Jersey City, NY-NJ-PA
1388             Chicago-Naperville-Elgin, IL-IN-WI
1389        Miami-Fort Lauderdale-Pompano Beach, FL
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1391     Virginia Beach-Norfolk-Newport News, VA-NC
1392                      Phoenix-Mesa-Chandler, AZ
1393                                 Pittsburgh, PA
1394                      Providence-Warwick, RI-MA
1395                    Portland-South Portland, ME
1396                               Raleigh-Cary, NC
1397                                  Rochester, NY
1398                      Cape Coral-Fort Myers, FL
1399             Louisville/Jefferson County, KY-IN
1400                     Denver-Aurora-Lakewood, CO
1401               Las Vegas-Henderson-Paradise, NV
1402 Nashville-Davidson--Murfreesboro--Franklin, TN
1403 Nashville-Davidson--Murfreesboro--Franklin, TN
1404 Nashville-Davidson--Murfreesboro--Franklin, TN
1405                Dallas-Fort Worth-Arlington, TX
1406             Chicago-Naperville-Elgin, IL-IN-WI
1407                               St. Louis, MO-IL
1408 Nashville-Davidson--Murfreesboro--Franklin, TN
1409 Nashville-Davidson--Murfreesboro--Franklin, TN
1410                  Baltimore-Columbia-Towson, MD
1411               Las Vegas-Henderson-Paradise, NV
1412             Chicago-Naperville-Elgin, IL-IN-WI
1413                               St. Louis, MO-IL
1414 Nashville-Davidson--Murfreesboro--Franklin, TN
1415             Chicago-Naperville-Elgin, IL-IN-WI
1416             Chicago-Naperville-Elgin, IL-IN-WI
1417              North Port-Sarasota-Bradenton, FL
1418                               St. Louis, MO-IL
1419 Nashville-Davidson--Murfreesboro--Franklin, TN
1420                  Baltimore-Columbia-Towson, MD
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV
1422               Las Vegas-Henderson-Paradise, NV
1423                      Phoenix-Mesa-Chandler, AZ
1424                               St. Louis, MO-IL
1425            Tampa-St. Petersburg-Clearwater, FL
1426               Las Vegas-Henderson-Paradise, NV
1427               Las Vegas-Henderson-Paradise, NV
1428                      Phoenix-Mesa-Chandler, AZ
1429           Houston-The Woodlands-Sugar Land, TX
1430           Houston-The Woodlands-Sugar Land, TX
1431                     Denver-Aurora-Lakewood, CO
1432             Chicago-Naperville-Elgin, IL-IN-WI
1433                  Baltimore-Columbia-Towson, MD
1434                  Orlando-Kissimmee-Sanford, FL
1435             Chicago-Naperville-Elgin, IL-IN-WI
1436             Chicago-Naperville-Elgin, IL-IN-WI
1437            Tampa-St. Petersburg-Clearwater, FL
1438                                Albuquerque, NM
1439               Austin-Round Rock-Georgetown, TX
1440                          Birmingham-Hoover, AL
1441                     Denver-Aurora-Lakewood, CO
1442                     Denver-Aurora-Lakewood, CO
1443                                    El Paso, TX
1444           Houston-The Woodlands-Sugar Land, TX
1445          New York-Newark-Jersey City, NY-NJ-PA
1446             Los Angeles-Long Beach-Anaheim, CA
1447                  Orlando-Kissimmee-Sanford, FL
1448             San Francisco-Oakland-Berkeley, CA
1449                    Omaha-Council Bluffs, NE-IA
1450             San Jose-Sunnyvale-Santa Clara, CA
1451                             Salt Lake City, UT
1452             Los Angeles-Long Beach-Anaheim, CA
1453                               St. Louis, MO-IL
1454            Tampa-St. Petersburg-Clearwater, FL
1455                                   Amarillo, TX
1456               Austin-Round Rock-Georgetown, TX
1457                                   Columbus, OH
1458                           Colorado Springs, CO
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV
1460                                Panama City, FL
1461        Miami-Fort Lauderdale-Pompano Beach, FL
1462           Houston-The Woodlands-Sugar Land, TX
1463                                    Lubbock, TX
1464       Little Rock-North Little Rock-Conway, AR
1465                                    Midland, TX
1466                             Kansas City, MO-KS
1467             Chicago-Naperville-Elgin, IL-IN-WI
1468        Minneapolis-St. Paul-Bloomington, MN-WI
1469                       New Orleans-Metairie, LA
1470             Chicago-Naperville-Elgin, IL-IN-WI
1471                      Phoenix-Mesa-Chandler, AZ
1472                 Pensacola-Ferry Pass-Brent, FL
1473                  San Antonio-New Braunfels, TX
1474                                      Tulsa, OK
1475         Crestview-Fort Walton Beach-Destin, FL
1476 Nashville-Davidson--Murfreesboro--Franklin, TN
1477 Nashville-Davidson--Murfreesboro--Franklin, TN
1478 Nashville-Davidson--Murfreesboro--Franklin, TN
1479        Miami-Fort Lauderdale-Pompano Beach, FL
1480             Chicago-Naperville-Elgin, IL-IN-WI
1481                               St. Louis, MO-IL
1482                               St. Louis, MO-IL
1483                                   Columbus, OH
1484                Dallas-Fort Worth-Arlington, TX
1485                  Orlando-Kissimmee-Sanford, FL
1486                         Milwaukee-Waukesha, WI
1487                    Omaha-Council Bluffs, NE-IA
1488                      Cape Coral-Fort Myers, FL
1489                               St. Louis, MO-IL
1490            Tampa-St. Petersburg-Clearwater, FL
1491                          Birmingham-Hoover, AL
1492 Nashville-Davidson--Murfreesboro--Franklin, TN
1493             Los Angeles-Long Beach-Anaheim, CA
1494                  Baltimore-Columbia-Towson, MD
1495                           Cincinnati, OH-KY-IN
1496                Dallas-Fort Worth-Arlington, TX
1497                Dallas-Fort Worth-Arlington, TX
1498                                    El Paso, TX
1499                     Spokane-Spokane Valley, WA
1500           Houston-The Woodlands-Sugar Land, TX
1501               Indianapolis-Carmel-Anderson, IN
1502               Las Vegas-Henderson-Paradise, NV
1503          New York-Newark-Jersey City, NY-NJ-PA
1504             Chicago-Naperville-Elgin, IL-IN-WI
1505             Chicago-Naperville-Elgin, IL-IN-WI
1506                         Milwaukee-Waukesha, WI
1507                  Santa Maria-Santa Barbara, CA
1508             Los Angeles-Long Beach-Anaheim, CA
1509                               St. Louis, MO-IL
1510                                      Tulsa, OK
1511                                     Tucson, AZ
1512                                Albuquerque, NM
1513                        Buffalo-Cheektowaga, NY
1514                Charleston-North Charleston, SC
1515                          Steamboat Springs, CO
1516           Houston-The Woodlands-Sugar Land, TX
1517                                    Wichita, KS
1518               Las Vegas-Henderson-Paradise, NV
1519             Los Angeles-Long Beach-Anaheim, CA
1520       Little Rock-North Little Rock-Conway, AR
1521        Miami-Fort Lauderdale-Pompano Beach, FL
1522                       New Orleans-Metairie, LA
1523             San Francisco-Oakland-Berkeley, CA
1524                              Oklahoma City, OK
1525                                       Reno, NV
1526             San Diego-Chula Vista-Carlsbad, CA
1527            Tampa-St. Petersburg-Clearwater, FL
1528                               St. Louis, MO-IL
1529 Nashville-Davidson--Murfreesboro--Franklin, TN
1530             Chicago-Naperville-Elgin, IL-IN-WI
1531             Chicago-Naperville-Elgin, IL-IN-WI
1532 Nashville-Davidson--Murfreesboro--Franklin, TN
1533                  Baltimore-Columbia-Towson, MD
1534                               St. Louis, MO-IL
1535           Houston-The Woodlands-Sugar Land, TX
1536                               St. Louis, MO-IL
1537               Austin-Round Rock-Georgetown, TX
1538                     Denver-Aurora-Lakewood, CO
1539           Houston-The Woodlands-Sugar Land, TX
1540               Las Vegas-Henderson-Paradise, NV
1541             Los Angeles-Long Beach-Anaheim, CA
1542                      Phoenix-Mesa-Chandler, AZ
1543               Austin-Round Rock-Georgetown, TX
1544           Houston-The Woodlands-Sugar Land, TX
1545           Houston-The Woodlands-Sugar Land, TX
1546                      Phoenix-Mesa-Chandler, AZ
1547                  San Antonio-New Braunfels, TX
1548             San Francisco-Oakland-Berkeley, CA
1549               Las Vegas-Henderson-Paradise, NV
1550             San Francisco-Oakland-Berkeley, CA
1551               Las Vegas-Henderson-Paradise, NV
1552                  Baltimore-Columbia-Towson, MD
1553           Houston-The Woodlands-Sugar Land, TX
1554           Houston-The Woodlands-Sugar Land, TX
1555           Houston-The Woodlands-Sugar Land, TX
1556                  Orlando-Kissimmee-Sanford, FL
1557                       New Orleans-Metairie, LA
1558                               Raleigh-Cary, NC
1559                  Baltimore-Columbia-Towson, MD
1560                Dallas-Fort Worth-Arlington, TX
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV
1562             Chicago-Naperville-Elgin, IL-IN-WI
1563                      Phoenix-Mesa-Chandler, AZ
1564                      Phoenix-Mesa-Chandler, AZ
1565                                 Pittsburgh, PA
1566                  San Antonio-New Braunfels, TX
1567            Tampa-St. Petersburg-Clearwater, FL
1568                     Denver-Aurora-Lakewood, CO
1569                     Denver-Aurora-Lakewood, CO
1570               Las Vegas-Henderson-Paradise, NV
1571             Chicago-Naperville-Elgin, IL-IN-WI
1572                      Phoenix-Mesa-Chandler, AZ
1573                Sacramento-Roseville-Folsom, CA
1574               Las Vegas-Henderson-Paradise, NV
1575             San Francisco-Oakland-Berkeley, CA
1576                  Baltimore-Columbia-Towson, MD
1577           Houston-The Woodlands-Sugar Land, TX
1578                                      Kapaa, HI
1579             San Francisco-Oakland-Berkeley, CA
1580             San Francisco-Oakland-Berkeley, CA
1581                      Phoenix-Mesa-Chandler, AZ
1582           Atlanta-Sandy Springs-Alpharetta, GA
1583 Nashville-Davidson--Murfreesboro--Franklin, TN
1584                  Baltimore-Columbia-Towson, MD
1585                Dallas-Fort Worth-Arlington, TX
1586                     Denver-Aurora-Lakewood, CO
1587                                    El Paso, TX
1588                                Spartanburg, SC
1589        Miami-Fort Lauderdale-Pompano Beach, FL
1590        Minneapolis-St. Paul-Bloomington, MN-WI
1591                       New Orleans-Metairie, LA
1592                      Phoenix-Mesa-Chandler, AZ
1593                               St. Louis, MO-IL
1594                               St. Louis, MO-IL
1595               Austin-Round Rock-Georgetown, TX
1596             Los Angeles-Long Beach-Anaheim, CA
1597                                Panama City, FL
1598        Miami-Fort Lauderdale-Pompano Beach, FL
1599                      Brownsville-Harlingen, TX
1600               Las Vegas-Henderson-Paradise, NV
1601             Los Angeles-Long Beach-Anaheim, CA
1602                                    Lubbock, TX
1603          New York-Newark-Jersey City, NY-NJ-PA
1604             Los Angeles-Long Beach-Anaheim, CA
1605                                    Midland, TX
1606                  Orlando-Kissimmee-Sanford, FL
1607                              Memphis, TN-MS-AR
1608             San Francisco-Oakland-Berkeley, CA
1609                              Oklahoma City, OK
1610           Riverside-San Bernardino-Ontario, CA
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1612                 Pensacola-Ferry Pass-Brent, FL
1613                      Cape Coral-Fort Myers, FL
1614                  San Antonio-New Braunfels, TX
1615                  San Antonio-New Braunfels, TX
1616                                   Savannah, GA
1617             San Jose-Sunnyvale-Santa Clara, CA
1618            Tampa-St. Petersburg-Clearwater, FL
1619                                      Tulsa, OK
1620           Houston-The Woodlands-Sugar Land, TX
1621           Houston-The Woodlands-Sugar Land, TX
1622             Chicago-Naperville-Elgin, IL-IN-WI
1623             Chicago-Naperville-Elgin, IL-IN-WI
1624                Dallas-Fort Worth-Arlington, TX
1625                Dallas-Fort Worth-Arlington, TX
1626             Chicago-Naperville-Elgin, IL-IN-WI
1627                Dallas-Fort Worth-Arlington, TX
1628                Dallas-Fort Worth-Arlington, TX
1629             Chicago-Naperville-Elgin, IL-IN-WI
1630                     Denver-Aurora-Lakewood, CO
1631                               St. Louis, MO-IL
1632                  Baltimore-Columbia-Towson, MD
1633                Dallas-Fort Worth-Arlington, TX
1634           Houston-The Woodlands-Sugar Land, TX
1635                  Orlando-Kissimmee-Sanford, FL
1636                      Cape Coral-Fort Myers, FL
1637              North Port-Sarasota-Bradenton, FL
1638 Nashville-Davidson--Murfreesboro--Franklin, TN
1639                  Baltimore-Columbia-Towson, MD
1640                  Baltimore-Columbia-Towson, MD
1641                  Baltimore-Columbia-Towson, MD
1642                               St. Louis, MO-IL
1643 Nashville-Davidson--Murfreesboro--Franklin, TN
1644             Chicago-Naperville-Elgin, IL-IN-WI
1645                      Phoenix-Mesa-Chandler, AZ
1646                      Phoenix-Mesa-Chandler, AZ
1647                      Phoenix-Mesa-Chandler, AZ
1648                                Albuquerque, NM
1649                                   Amarillo, TX
1650               Austin-Round Rock-Georgetown, TX
1651               Austin-Round Rock-Georgetown, TX
1652                Dallas-Fort Worth-Arlington, TX
1653                     Spokane-Spokane Valley, WA
1654             Chicago-Naperville-Elgin, IL-IN-WI
1655                         Milwaukee-Waukesha, WI
1656             San Francisco-Oakland-Berkeley, CA
1657            Portland-Vancouver-Hillsboro, OR-WA
1658                  San Antonio-New Braunfels, TX
1659                             Salt Lake City, UT
1660                Sacramento-Roseville-Folsom, CA
1661             Los Angeles-Long Beach-Anaheim, CA
1662                               St. Louis, MO-IL
1663                                 Boise City, ID
1664             Los Angeles-Long Beach-Anaheim, CA
1665                  Baltimore-Columbia-Towson, MD
1666                                    Bozeman, MT
1667                           Colorado Springs, CO
1668                         Eugene-Springfield, OR
1669             Los Angeles-Long Beach-Anaheim, CA
1670                         Milwaukee-Waukesha, WI
1671           Riverside-San Bernardino-Ontario, CA
1672           Riverside-San Bernardino-Ontario, CA
1673                                       Reno, NV
1674             San Diego-Chula Vista-Carlsbad, CA
1675                  Santa Maria-Santa Barbara, CA
1676             San Jose-Sunnyvale-Santa Clara, CA
1677                                      Tulsa, OK
1678                                     Tucson, AZ
1679                                Albuquerque, NM
1680                                    El Paso, TX
1681                             Urban Honolulu, HI
1682             Chicago-Naperville-Elgin, IL-IN-WI
1683                       New Orleans-Metairie, LA
1684                       New Orleans-Metairie, LA
1685                      Phoenix-Mesa-Chandler, AZ
1686                      Phoenix-Mesa-Chandler, AZ
1687               Austin-Round Rock-Georgetown, TX
1688               Austin-Round Rock-Georgetown, TX
1689           Houston-The Woodlands-Sugar Land, TX
1690                                       Reno, NV
1691                Sacramento-Roseville-Folsom, CA
1692                Sacramento-Roseville-Folsom, CA
1693               Austin-Round Rock-Georgetown, TX
1694                Dallas-Fort Worth-Arlington, TX
1695                  Baltimore-Columbia-Towson, MD
1696                  Baltimore-Columbia-Towson, MD
1697           Houston-The Woodlands-Sugar Land, TX
1698                               St. Louis, MO-IL
1699                               St. Louis, MO-IL
1700             Chicago-Naperville-Elgin, IL-IN-WI
1701                       New Orleans-Metairie, LA
1702                     Denver-Aurora-Lakewood, CO
1703               Las Vegas-Henderson-Paradise, NV
1704             San Francisco-Oakland-Berkeley, CA
1705                Sacramento-Roseville-Folsom, CA
1706                               St. Louis, MO-IL
1707                             Urban Honolulu, HI
1708           Houston-The Woodlands-Sugar Land, TX
1709           Houston-The Woodlands-Sugar Land, TX
1710               Las Vegas-Henderson-Paradise, NV
1711             Chicago-Naperville-Elgin, IL-IN-WI
1712                    Kahului-Wailuku-Lahaina, HI
1713                                       Reno, NV
1714                Sacramento-Roseville-Folsom, CA
1715                Dallas-Fort Worth-Arlington, TX
1716                Dallas-Fort Worth-Arlington, TX
1717           Houston-The Woodlands-Sugar Land, TX
1718               Austin-Round Rock-Georgetown, TX
1719                Dallas-Fort Worth-Arlington, TX
1720             Chicago-Naperville-Elgin, IL-IN-WI
1721             Chicago-Naperville-Elgin, IL-IN-WI
1722                  Baltimore-Columbia-Towson, MD
1723        Miami-Fort Lauderdale-Pompano Beach, FL
1724          New York-Newark-Jersey City, NY-NJ-PA
1725                  Orlando-Kissimmee-Sanford, FL
1726                       New Orleans-Metairie, LA
1727                      Cape Coral-Fort Myers, FL
1728                  Baltimore-Columbia-Towson, MD
1729                Dallas-Fort Worth-Arlington, TX
1730                Dallas-Fort Worth-Arlington, TX
1731                Dallas-Fort Worth-Arlington, TX
1732                     Denver-Aurora-Lakewood, CO
1733           Houston-The Woodlands-Sugar Land, TX
1734                             Kansas City, MO-KS
1735                               St. Louis, MO-IL
1736                               St. Louis, MO-IL
1737                               St. Louis, MO-IL
1738                    Albany-Schenectady-Troy, NY
1739          Hartford-East Hartford-Middletown, CT
1740                          Birmingham-Hoover, AL
1741                        Buffalo-Cheektowaga, NY
1742                           Cincinnati, OH-KY-IN
1743        Miami-Fort Lauderdale-Pompano Beach, FL
1744               Indianapolis-Carmel-Anderson, IN
1745                              Memphis, TN-MS-AR
1746                       New Orleans-Metairie, LA
1747     Virginia Beach-Norfolk-Newport News, VA-NC
1748                      Phoenix-Mesa-Chandler, AZ
1749             Louisville/Jefferson County, KY-IN
1750                               St. Louis, MO-IL
1751               Austin-Round Rock-Georgetown, TX
1752                          Birmingham-Hoover, AL
1753 Nashville-Davidson--Murfreesboro--Franklin, TN
1754                  Baltimore-Columbia-Towson, MD
1755                Charleston-North Charleston, SC
1756                                   Columbus, OH
1757                Dallas-Fort Worth-Arlington, TX
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV
1759                     Denver-Aurora-Lakewood, CO
1760        Miami-Fort Lauderdale-Pompano Beach, FL
1761                      Grand Rapids-Kentwood, MI
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV
1763                               Jacksonville, FL
1764          New York-Newark-Jersey City, NY-NJ-PA
1765                             Kansas City, MO-KS
1766                  Orlando-Kissimmee-Sanford, FL
1767        Minneapolis-St. Paul-Bloomington, MN-WI
1768                       New Orleans-Metairie, LA
1769                    Omaha-Council Bluffs, NE-IA
1770     Virginia Beach-Norfolk-Newport News, VA-NC
1771                      Phoenix-Mesa-Chandler, AZ
1772                      Providence-Warwick, RI-MA
1773                                   Richmond, VA
1774             San Diego-Chula Vista-Carlsbad, CA
1775             Louisville/Jefferson County, KY-IN
1776                    Seattle-Tacoma-Bellevue, WA
1777             San Francisco-Oakland-Berkeley, CA
1778            Tampa-St. Petersburg-Clearwater, FL
1779                 Boston-Cambridge-Newton, MA-NH
1780                        Buffalo-Cheektowaga, NY
1781                           Cleveland-Elyria, OH
1782                           Cleveland-Elyria, OH
1783                           Cincinnati, OH-KY-IN
1784           Houston-The Woodlands-Sugar Land, TX
1785           Houston-The Woodlands-Sugar Land, TX
1786             Los Angeles-Long Beach-Anaheim, CA
1787                              Memphis, TN-MS-AR
1788        Miami-Fort Lauderdale-Pompano Beach, FL
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1790             San Francisco-Oakland-Berkeley, CA
1791                              Oklahoma City, OK
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1793                                 Pittsburgh, PA
1794                               Raleigh-Cary, NC
1795                      Cape Coral-Fort Myers, FL
1796                Sacramento-Roseville-Folsom, CA
1797             Los Angeles-Long Beach-Anaheim, CA
1798              North Port-Sarasota-Bradenton, FL
1799                               St. Louis, MO-IL
1800                                     Tucson, AZ
1801                  Orlando-Kissimmee-Sanford, FL
1802             Chicago-Naperville-Elgin, IL-IN-WI
1803                Dallas-Fort Worth-Arlington, TX
1804                     Denver-Aurora-Lakewood, CO
1805           Houston-The Woodlands-Sugar Land, TX
1806                  Baltimore-Columbia-Towson, MD
1807                               St. Louis, MO-IL
1808             Chicago-Naperville-Elgin, IL-IN-WI
1809                       New Orleans-Metairie, LA
1810                               St. Louis, MO-IL
1811                  Baltimore-Columbia-Towson, MD
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV
1813                      Phoenix-Mesa-Chandler, AZ
1814                      Cape Coral-Fort Myers, FL
1815                               St. Louis, MO-IL
1816           Houston-The Woodlands-Sugar Land, TX
1817                               St. Louis, MO-IL
1818           Houston-The Woodlands-Sugar Land, TX
1819           Houston-The Woodlands-Sugar Land, TX
1820                             Kansas City, MO-KS
1821 Nashville-Davidson--Murfreesboro--Franklin, TN
1822                  Baltimore-Columbia-Towson, MD
1823        Miami-Fort Lauderdale-Pompano Beach, FL
1824             Los Angeles-Long Beach-Anaheim, CA
1825          New York-Newark-Jersey City, NY-NJ-PA
1826                  Orlando-Kissimmee-Sanford, FL
1827                  Orlando-Kissimmee-Sanford, FL
1828        Miami-Fort Lauderdale-Pompano Beach, FL
1829                  San Antonio-New Braunfels, TX
1830            Tampa-St. Petersburg-Clearwater, FL
1831                Dallas-Fort Worth-Arlington, TX
1832                  Baltimore-Columbia-Towson, MD
1833             Chicago-Naperville-Elgin, IL-IN-WI
1834               Austin-Round Rock-Georgetown, TX
1835                                 Bellingham, WA
1836             Los Angeles-Long Beach-Anaheim, CA
1837                             Urban Honolulu, HI
1838                                      Kapaa, HI
1839           Riverside-San Bernardino-Ontario, CA
1840                      Phoenix-Mesa-Chandler, AZ
1841           Riverside-San Bernardino-Ontario, CA
1842             San Diego-Chula Vista-Carlsbad, CA
1843                                 Boise City, ID
1844             Los Angeles-Long Beach-Anaheim, CA
1845                         Eugene-Springfield, OR
1846                     Spokane-Spokane Valley, WA
1847                                       Hilo, HI
1848                  Santa Maria-Santa Barbara, CA
1849             Los Angeles-Long Beach-Anaheim, CA
1850                             Urban Honolulu, HI
1851               Austin-Round Rock-Georgetown, TX
1852           Houston-The Woodlands-Sugar Land, TX
1853             Chicago-Naperville-Elgin, IL-IN-WI
1854                      Phoenix-Mesa-Chandler, AZ
1855                               St. Louis, MO-IL
1856               Las Vegas-Henderson-Paradise, NV
1857             Chicago-Naperville-Elgin, IL-IN-WI
1858                               St. Louis, MO-IL
1859           Houston-The Woodlands-Sugar Land, TX
1860             San Francisco-Oakland-Berkeley, CA
1861             San Jose-Sunnyvale-Santa Clara, CA
1862 Nashville-Davidson--Murfreesboro--Franklin, TN
1863                      Phoenix-Mesa-Chandler, AZ
1864 Nashville-Davidson--Murfreesboro--Franklin, TN
1865                Dallas-Fort Worth-Arlington, TX
1866 Nashville-Davidson--Murfreesboro--Franklin, TN
1867             Chicago-Naperville-Elgin, IL-IN-WI
1868                  Baltimore-Columbia-Towson, MD
1869                  Orlando-Kissimmee-Sanford, FL
1870             Chicago-Naperville-Elgin, IL-IN-WI
1871                      Phoenix-Mesa-Chandler, AZ
1872                      Phoenix-Mesa-Chandler, AZ
1873                      Phoenix-Mesa-Chandler, AZ
1874             San Jose-Sunnyvale-Santa Clara, CA
1875             Chicago-Naperville-Elgin, IL-IN-WI
1876                     Denver-Aurora-Lakewood, CO
1877               Austin-Round Rock-Georgetown, TX
1878                     Spokane-Spokane Valley, WA
1879           Houston-The Woodlands-Sugar Land, TX
1880             San Francisco-Oakland-Berkeley, CA
1881                              Oklahoma City, OK
1882            Portland-Vancouver-Hillsboro, OR-WA
1883                                       Reno, NV
1884                  San Antonio-New Braunfels, TX
1885             San Jose-Sunnyvale-Santa Clara, CA
1886                             Salt Lake City, UT
1887                Sacramento-Roseville-Folsom, CA
1888                                Albuquerque, NM
1889               Austin-Round Rock-Georgetown, TX
1890             Los Angeles-Long Beach-Anaheim, CA
1891                                   Columbus, OH
1892                           Colorado Springs, CO
1893                                    El Paso, TX
1894        Miami-Fort Lauderdale-Pompano Beach, FL
1895             Los Angeles-Long Beach-Anaheim, CA
1896                                      Kapaa, HI
1897                         Milwaukee-Waukesha, WI
1898                    Omaha-Council Bluffs, NE-IA
1899           Riverside-San Bernardino-Ontario, CA
1900           Riverside-San Bernardino-Ontario, CA
1901             Los Angeles-Long Beach-Anaheim, CA
1902            Tampa-St. Petersburg-Clearwater, FL
1903                      Phoenix-Mesa-Chandler, AZ
1904                      Cape Coral-Fort Myers, FL
1905              North Port-Sarasota-Bradenton, FL
1906 Nashville-Davidson--Murfreesboro--Franklin, TN
1907                  Baltimore-Columbia-Towson, MD
1908        Miami-Fort Lauderdale-Pompano Beach, FL
1909 Nashville-Davidson--Murfreesboro--Franklin, TN
1910                Dallas-Fort Worth-Arlington, TX
1911           Houston-The Woodlands-Sugar Land, TX
1912                Sacramento-Roseville-Folsom, CA
1913               Las Vegas-Henderson-Paradise, NV
1914             Chicago-Naperville-Elgin, IL-IN-WI
1915                               St. Louis, MO-IL
1916                  Baltimore-Columbia-Towson, MD
1917                  Baltimore-Columbia-Towson, MD
1918                  Orlando-Kissimmee-Sanford, FL
1919            Tampa-St. Petersburg-Clearwater, FL
1920             Chicago-Naperville-Elgin, IL-IN-WI
1921             Los Angeles-Long Beach-Anaheim, CA
1922             Los Angeles-Long Beach-Anaheim, CA
1923             San Diego-Chula Vista-Carlsbad, CA
1924             San Jose-Sunnyvale-Santa Clara, CA
1925                  Orlando-Kissimmee-Sanford, FL
1926            Tampa-St. Petersburg-Clearwater, FL
1927             Chicago-Naperville-Elgin, IL-IN-WI
1928                         Milwaukee-Waukesha, WI
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV
1930                             Kansas City, MO-KS
1931             Chicago-Naperville-Elgin, IL-IN-WI
1932             Louisville/Jefferson County, KY-IN
1933                                 Boise City, ID
1934                Dallas-Fort Worth-Arlington, TX
1935           Houston-The Woodlands-Sugar Land, TX
1936             San Jose-Sunnyvale-Santa Clara, CA
1937                             Urban Honolulu, HI
1938                    Kahului-Wailuku-Lahaina, HI
1939                                     Tucson, AZ
1940                Dallas-Fort Worth-Arlington, TX
1941           Houston-The Woodlands-Sugar Land, TX
1942 Nashville-Davidson--Murfreesboro--Franklin, TN
1943                Dallas-Fort Worth-Arlington, TX
1944                                    El Paso, TX
1945             Los Angeles-Long Beach-Anaheim, CA
1946               Las Vegas-Henderson-Paradise, NV
1947             San Francisco-Oakland-Berkeley, CA
1948                  Orlando-Kissimmee-Sanford, FL
1949             Chicago-Naperville-Elgin, IL-IN-WI
1950                  Baltimore-Columbia-Towson, MD
1951                      Cape Coral-Fort Myers, FL
1952            Tampa-St. Petersburg-Clearwater, FL
1953             San Francisco-Oakland-Berkeley, CA
1954             San Jose-Sunnyvale-Santa Clara, CA
1955                      Phoenix-Mesa-Chandler, AZ
1956             Los Angeles-Long Beach-Anaheim, CA
1957             San Diego-Chula Vista-Carlsbad, CA
1958                Dallas-Fort Worth-Arlington, TX
1959               Las Vegas-Henderson-Paradise, NV
1960                    Kahului-Wailuku-Lahaina, HI
1961                    Kahului-Wailuku-Lahaina, HI
1962                             Urban Honolulu, HI
1963                                       Hilo, HI
1964             Los Angeles-Long Beach-Anaheim, CA
1965           Riverside-San Bernardino-Ontario, CA
1966                                       Reno, NV
1967             Los Angeles-Long Beach-Anaheim, CA
1968                  Orlando-Kissimmee-Sanford, FL
1969                Dallas-Fort Worth-Arlington, TX
1970             Los Angeles-Long Beach-Anaheim, CA
1971                  Orlando-Kissimmee-Sanford, FL
1972                Sacramento-Roseville-Folsom, CA
1973                     Spokane-Spokane Valley, WA
1974             San Diego-Chula Vista-Carlsbad, CA
1975                    Seattle-Tacoma-Bellevue, WA
1976             Los Angeles-Long Beach-Anaheim, CA
1977                             Urban Honolulu, HI
1978             Los Angeles-Long Beach-Anaheim, CA
1979           Riverside-San Bernardino-Ontario, CA
1980           Riverside-San Bernardino-Ontario, CA
1981             Los Angeles-Long Beach-Anaheim, CA
1982                Dallas-Fort Worth-Arlington, TX
1983                      Phoenix-Mesa-Chandler, AZ
1984               Austin-Round Rock-Georgetown, TX
1985                                   Columbus, OH
1986               Austin-Round Rock-Georgetown, TX
1987               Indianapolis-Carmel-Anderson, IN
1988          New York-Newark-Jersey City, NY-NJ-PA
1989                  Baltimore-Columbia-Towson, MD
1990                Dallas-Fort Worth-Arlington, TX
1991        Miami-Fort Lauderdale-Pompano Beach, FL
1992           Houston-The Woodlands-Sugar Land, TX
1993                               Jacksonville, FL
1994          New York-Newark-Jersey City, NY-NJ-PA
1995             Los Angeles-Long Beach-Anaheim, CA
1996             Chicago-Naperville-Elgin, IL-IN-WI
1997                       New Orleans-Metairie, LA
1998                    Seattle-Tacoma-Bellevue, WA
1999               Austin-Round Rock-Georgetown, TX
2000 Nashville-Davidson--Murfreesboro--Franklin, TN
2001 Nashville-Davidson--Murfreesboro--Franklin, TN
2002                                   Columbus, OH
2003                 Des Moines-West Des Moines, IA
2004                                Panama City, FL
2005                                    Wichita, KS
2006             Los Angeles-Long Beach-Anaheim, CA
2007       Little Rock-North Little Rock-Conway, AR
2008                             Kansas City, MO-KS
2009                  Orlando-Kissimmee-Sanford, FL
2010        Miami-Fort Lauderdale-Pompano Beach, FL
2011                         Milwaukee-Waukesha, WI
2012                              Oklahoma City, OK
2013                    Omaha-Council Bluffs, NE-IA
2014                      Phoenix-Mesa-Chandler, AZ
2015                 Pensacola-Ferry Pass-Brent, FL
2016              North Port-Sarasota-Bradenton, FL
2017 Nashville-Davidson--Murfreesboro--Franklin, TN
2018                  Baltimore-Columbia-Towson, MD
2019                                   Columbus, OH
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV
2021             Chicago-Naperville-Elgin, IL-IN-WI
2022                               Raleigh-Cary, NC
2023             Louisville/Jefferson County, KY-IN
2024          Hartford-East Hartford-Middletown, CT
2025                          Birmingham-Hoover, AL
2026                        Buffalo-Cheektowaga, NY
2027                           Cincinnati, OH-KY-IN
2028        Miami-Fort Lauderdale-Pompano Beach, FL
2029             San Diego-Chula Vista-Carlsbad, CA
2030               Las Vegas-Henderson-Paradise, NV
2031 Nashville-Davidson--Murfreesboro--Franklin, TN
2032                Dallas-Fort Worth-Arlington, TX
2033           Houston-The Woodlands-Sugar Land, TX
2034                      Phoenix-Mesa-Chandler, AZ
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV
2036                               St. Louis, MO-IL
2037                Dallas-Fort Worth-Arlington, TX
2038                      Phoenix-Mesa-Chandler, AZ
2039                Dallas-Fort Worth-Arlington, TX
2040                Dallas-Fort Worth-Arlington, TX
2041                Dallas-Fort Worth-Arlington, TX
2042          New York-Newark-Jersey City, NY-NJ-PA
2043                                 Pittsburgh, PA
2044                                   Savannah, GA
2045                                      Tulsa, OK
2046                Dallas-Fort Worth-Arlington, TX
2047                      Phoenix-Mesa-Chandler, AZ
2048                                Bakersfield, CA
2049                         Eugene-Springfield, OR
2050                Dallas-Fort Worth-Arlington, TX
2051                Dallas-Fort Worth-Arlington, TX
2052           Houston-The Woodlands-Sugar Land, TX
2053           Houston-The Woodlands-Sugar Land, TX
2054           Houston-The Woodlands-Sugar Land, TX
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2058          New York-Newark-Jersey City, NY-NJ-PA
2059               Indianapolis-Carmel-Anderson, IN
2060          New York-Newark-Jersey City, NY-NJ-PA
2061                                   Columbus, OH
2062          New York-Newark-Jersey City, NY-NJ-PA
2063          New York-Newark-Jersey City, NY-NJ-PA
2064          New York-Newark-Jersey City, NY-NJ-PA
2065          New York-Newark-Jersey City, NY-NJ-PA
2066          New York-Newark-Jersey City, NY-NJ-PA
2067          New York-Newark-Jersey City, NY-NJ-PA
2068          New York-Newark-Jersey City, NY-NJ-PA
2069                                 Pittsburgh, PA
2070                               Raleigh-Cary, NC
2071          New York-Newark-Jersey City, NY-NJ-PA
2072          New York-Newark-Jersey City, NY-NJ-PA
2073          New York-Newark-Jersey City, NY-NJ-PA
2074              Charlotte-Concord-Gastonia, NC-SC
2075          New York-Newark-Jersey City, NY-NJ-PA
2076          New York-Newark-Jersey City, NY-NJ-PA
2077          New York-Newark-Jersey City, NY-NJ-PA
2078          New York-Newark-Jersey City, NY-NJ-PA
2079          New York-Newark-Jersey City, NY-NJ-PA
2080          New York-Newark-Jersey City, NY-NJ-PA
2081                 Boston-Cambridge-Newton, MA-NH
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2083          New York-Newark-Jersey City, NY-NJ-PA
2084              Charlotte-Concord-Gastonia, NC-SC
2085          New York-Newark-Jersey City, NY-NJ-PA
2086                               Raleigh-Cary, NC
2087             Louisville/Jefferson County, KY-IN
2088                 Boston-Cambridge-Newton, MA-NH
2089          New York-Newark-Jersey City, NY-NJ-PA
2090                Charleston-North Charleston, SC
2091                    Detroit-Warren-Dearborn, MI
2092                                   Key West, FL
2093                         Milwaukee-Waukesha, WI
2094                       New Orleans-Metairie, LA
2095                    Portland-South Portland, ME
2096              Charlotte-Concord-Gastonia, NC-SC
2097          New York-Newark-Jersey City, NY-NJ-PA
2098                       New Orleans-Metairie, LA
2099              North Port-Sarasota-Bradenton, FL
2100          New York-Newark-Jersey City, NY-NJ-PA
2101                 Boston-Cambridge-Newton, MA-NH
2102              Charlotte-Concord-Gastonia, NC-SC
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV
2104          New York-Newark-Jersey City, NY-NJ-PA
2105 Nashville-Davidson--Murfreesboro--Franklin, TN
2106                  Baltimore-Columbia-Towson, MD
2107                  Baltimore-Columbia-Towson, MD
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV
2109     Virginia Beach-Norfolk-Newport News, VA-NC
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2112                                 Pittsburgh, PA
2113                           Cleveland-Elyria, OH
2114                                   Columbus, OH
2115               Indianapolis-Carmel-Anderson, IN
2116               Indianapolis-Carmel-Anderson, IN
2117                                   Richmond, VA
2118                           Cincinnati, OH-KY-IN
2119              Charlotte-Concord-Gastonia, NC-SC
2120                               Jacksonville, FL
2121                 Boston-Cambridge-Newton, MA-NH
2122                               Raleigh-Cary, NC
2123                                   Columbus, OH
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV
2126          New York-Newark-Jersey City, NY-NJ-PA
2127          New York-Newark-Jersey City, NY-NJ-PA
2128                 Boston-Cambridge-Newton, MA-NH
2129          New York-Newark-Jersey City, NY-NJ-PA
2130          New York-Newark-Jersey City, NY-NJ-PA
2131             Chicago-Naperville-Elgin, IL-IN-WI
2132                 Boston-Cambridge-Newton, MA-NH
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV
2134          New York-Newark-Jersey City, NY-NJ-PA
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2137          New York-Newark-Jersey City, NY-NJ-PA
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV
2139              Charlotte-Concord-Gastonia, NC-SC
2140          New York-Newark-Jersey City, NY-NJ-PA
2141              Charlotte-Concord-Gastonia, NC-SC
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV
2143             Chicago-Naperville-Elgin, IL-IN-WI
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV
2147                        Buffalo-Cheektowaga, NY
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV
2149             Chicago-Naperville-Elgin, IL-IN-WI
2150                      Greensboro-High Point, NC
2151          New York-Newark-Jersey City, NY-NJ-PA
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV
2153        Minneapolis-St. Paul-Bloomington, MN-WI
2154        Minneapolis-St. Paul-Bloomington, MN-WI
2155                                    Bozeman, MT
2156             San Francisco-Oakland-Berkeley, CA
2157        Minneapolis-St. Paul-Bloomington, MN-WI
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2167                 Boston-Cambridge-Newton, MA-NH
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2169                                  Flagstaff, AZ
2170                     Denver-Aurora-Lakewood, CO
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV
2172       Little Rock-North Little Rock-Conway, AR
2173          New York-Newark-Jersey City, NY-NJ-PA
2174                                   Key West, FL
2175                  Orlando-Kissimmee-Sanford, FL
2176                  Orlando-Kissimmee-Sanford, FL
2177            Tampa-St. Petersburg-Clearwater, FL
2178        Miami-Fort Lauderdale-Pompano Beach, FL
2179            Tampa-St. Petersburg-Clearwater, FL
2180                          New Haven-Milford, CT
2181                 Boston-Cambridge-Newton, MA-NH
2182           Houston-The Woodlands-Sugar Land, TX
2183          New York-Newark-Jersey City, NY-NJ-PA
2184                         Milwaukee-Waukesha, WI
2185          New York-Newark-Jersey City, NY-NJ-PA
2186               Las Vegas-Henderson-Paradise, NV
2187        Miami-Fort Lauderdale-Pompano Beach, FL
2188                 Boston-Cambridge-Newton, MA-NH
2189           Riverside-San Bernardino-Ontario, CA
2190                    Kahului-Wailuku-Lahaina, HI
2191                Dallas-Fort Worth-Arlington, TX
2192                      Phoenix-Mesa-Chandler, AZ
2193                Dallas-Fort Worth-Arlington, TX
2194                                           <NA>
2195             San Diego-Chula Vista-Carlsbad, CA
2196             San Francisco-Oakland-Berkeley, CA
2197                             Kansas City, MO-KS
2198                               Raleigh-Cary, NC
2199        Miami-Fort Lauderdale-Pompano Beach, FL
2200                    Seattle-Tacoma-Bellevue, WA
2201                             Urban Honolulu, HI
2202                      Cape Coral-Fort Myers, FL
2203             San Francisco-Oakland-Berkeley, CA
2204                      Cape Coral-Fort Myers, FL
2205          New York-Newark-Jersey City, NY-NJ-PA
2206          Hartford-East Hartford-Middletown, CT
2207                                Albuquerque, NM
2208                 Boston-Cambridge-Newton, MA-NH
2209                                 Jackson, WY-ID
2210              Palm Bay-Melbourne-Titusville, FL
2211        Miami-Fort Lauderdale-Pompano Beach, FL
2212            Portland-Vancouver-Hillsboro, OR-WA
2213                  Orlando-Kissimmee-Sanford, FL
2214             Los Angeles-Long Beach-Anaheim, CA
2215                             Kansas City, MO-KS
2216                      Phoenix-Mesa-Chandler, AZ
2217                Dallas-Fort Worth-Arlington, TX
2218               Austin-Round Rock-Georgetown, TX
2219                     Denver-Aurora-Lakewood, CO
2220        Miami-Fort Lauderdale-Pompano Beach, FL
2221                    San Juan-Bayamón-Caguas, PR
2222                           Cincinnati, OH-KY-IN
2223          New York-Newark-Jersey City, NY-NJ-PA
2224                               Raleigh-Cary, NC
2225        Miami-Fort Lauderdale-Pompano Beach, FL
2226             San Diego-Chula Vista-Carlsbad, CA
2227           Atlanta-Sandy Springs-Alpharetta, GA
2228               Austin-Round Rock-Georgetown, TX
2229                             Kansas City, MO-KS
2230        Minneapolis-St. Paul-Bloomington, MN-WI
2231             Los Angeles-Long Beach-Anaheim, CA
2232                    Seattle-Tacoma-Bellevue, WA
2233              Charlotte-Concord-Gastonia, NC-SC
2234          New York-Newark-Jersey City, NY-NJ-PA
2235           Riverside-San Bernardino-Ontario, CA
2236                      Cape Coral-Fort Myers, FL
2237             Los Angeles-Long Beach-Anaheim, CA
2238                 Boston-Cambridge-Newton, MA-NH
2239                          Steamboat Springs, CO
2240                                       Reno, NV
2241                             Salt Lake City, UT
2242             San Francisco-Oakland-Berkeley, CA
2243            Tampa-St. Petersburg-Clearwater, FL
2244                               Raleigh-Cary, NC
2245                                   Columbus, OH
2246                             Kansas City, MO-KS
2247                                Albuquerque, NM
2248          New York-Newark-Jersey City, NY-NJ-PA
2249                    Seattle-Tacoma-Bellevue, WA
2250        Minneapolis-St. Paul-Bloomington, MN-WI
2251                             Salt Lake City, UT
2252            Tampa-St. Petersburg-Clearwater, FL
2253                    San Juan-Bayamón-Caguas, PR
2254        Miami-Fort Lauderdale-Pompano Beach, FL
2255                                  Anchorage, AK
2256                             Urban Honolulu, HI
2257                                           <NA>
2258                             Urban Honolulu, HI
2259                                       Hilo, HI
2260                             Urban Honolulu, HI
2261                    Kahului-Wailuku-Lahaina, HI
2262               Las Vegas-Henderson-Paradise, NV
2263           Atlanta-Sandy Springs-Alpharetta, GA
2264                                Baton Rouge, LA
2265                                Gainesville, FL
2266                            Gulfport-Biloxi, MS
2267                          Lexington-Fayette, KY
2268                                     Mobile, AL
2269                                    Roanoke, VA
2270                                Springfield, MO
2271                                      Tulsa, OK
2272          New York-Newark-Jersey City, NY-NJ-PA
2273                         Milwaukee-Waukesha, WI
2274                                   Richmond, VA
2275           Atlanta-Sandy Springs-Alpharetta, GA
2276          New York-Newark-Jersey City, NY-NJ-PA
2277                 Boston-Cambridge-Newton, MA-NH
2278                    Detroit-Warren-Dearborn, MI
2279                Burlington-South Burlington, VT
2280                Charleston-North Charleston, SC
2281                                Spartanburg, SC
2282                    Portland-South Portland, ME
2283                               Raleigh-Cary, NC
2284                                  Rochester, NY
2285                                  Knoxville, TN
2286                           Cincinnati, OH-KY-IN
2287           Atlanta-Sandy Springs-Alpharetta, GA
2288          New York-Newark-Jersey City, NY-NJ-PA
2289                                     Bangor, ME
2290 Nashville-Davidson--Murfreesboro--Franklin, TN
2291                Charleston-North Charleston, SC
2292                Charleston-North Charleston, SC
2293                                 Pittsburgh, PA
2294                                   Savannah, GA
2295                          Birmingham-Hoover, AL
2296                      Greensboro-High Point, NC
2297                                Spartanburg, SC
2298                              Memphis, TN-MS-AR
2299                    Portland-South Portland, ME
2300                                   Savannah, GA
2301           Atlanta-Sandy Springs-Alpharetta, GA
2302                           Cincinnati, OH-KY-IN
2303                 Des Moines-West Des Moines, IA
2304          New York-Newark-Jersey City, NY-NJ-PA
2305          New York-Newark-Jersey City, NY-NJ-PA
2306           Atlanta-Sandy Springs-Alpharetta, GA
2307                    Detroit-Warren-Dearborn, MI
2308          New York-Newark-Jersey City, NY-NJ-PA
2309            Tampa-St. Petersburg-Clearwater, FL
2310                 Boston-Cambridge-Newton, MA-NH
2311                Dallas-Fort Worth-Arlington, TX
2312          New York-Newark-Jersey City, NY-NJ-PA
2313        Miami-Fort Lauderdale-Pompano Beach, FL
2314               Austin-Round Rock-Georgetown, TX
2315                Dallas-Fort Worth-Arlington, TX
2316                Dallas-Fort Worth-Arlington, TX
2317                      Phoenix-Mesa-Chandler, AZ
2318              Charlotte-Concord-Gastonia, NC-SC
2319                                   Columbus, OH
2320               Las Vegas-Henderson-Paradise, NV
2321        Minneapolis-St. Paul-Bloomington, MN-WI
2322                       New Orleans-Metairie, LA
2323     Virginia Beach-Norfolk-Newport News, VA-NC
2324                      Phoenix-Mesa-Chandler, AZ
2325                                 Pittsburgh, PA
2326                    Portland-South Portland, ME
2327            Tampa-St. Petersburg-Clearwater, FL
2328              Charlotte-Concord-Gastonia, NC-SC
2329          New York-Newark-Jersey City, NY-NJ-PA
2330                               Jacksonville, FL
2331                              Memphis, TN-MS-AR
2332                                Albuquerque, NM
2333                                     Bangor, ME
2334                                   Columbus, OH
2335                      Greensboro-High Point, NC
2336                                    Wichita, KS
2337             Los Angeles-Long Beach-Anaheim, CA
2338                        Harrisburg-Carlisle, PA
2339                   McAllen-Edinburg-Mission, TX
2340                         Milwaukee-Waukesha, WI
2341           Riverside-San Bernardino-Ontario, CA
2342        Miami-Fort Lauderdale-Pompano Beach, FL
2343                    Portland-South Portland, ME
2344                      Cape Coral-Fort Myers, FL
2345             San Francisco-Oakland-Berkeley, CA
2346             Chicago-Naperville-Elgin, IL-IN-WI
2347             Chicago-Naperville-Elgin, IL-IN-WI
2348              Charlotte-Concord-Gastonia, NC-SC
2349        Miami-Fort Lauderdale-Pompano Beach, FL
2350                Dallas-Fort Worth-Arlington, TX
2351                Dallas-Fort Worth-Arlington, TX
2352        Miami-Fort Lauderdale-Pompano Beach, FL
2353                Dallas-Fort Worth-Arlington, TX
2354              Charlotte-Concord-Gastonia, NC-SC
2355                Dallas-Fort Worth-Arlington, TX
2356              Charlotte-Concord-Gastonia, NC-SC
2357             Chicago-Naperville-Elgin, IL-IN-WI
2358               Austin-Round Rock-Georgetown, TX
2359                Dallas-Fort Worth-Arlington, TX
2360              Charlotte-Concord-Gastonia, NC-SC
2361                Dallas-Fort Worth-Arlington, TX
2362                Dallas-Fort Worth-Arlington, TX
2363            Tampa-St. Petersburg-Clearwater, FL
2364               Las Vegas-Henderson-Paradise, NV
2365                      Phoenix-Mesa-Chandler, AZ
2366             San Francisco-Oakland-Berkeley, CA
2367                    San Juan-Bayamón-Caguas, PR
2368                                           <NA>
2369              Charlotte-Concord-Gastonia, NC-SC
2370                Dallas-Fort Worth-Arlington, TX
2371                Dallas-Fort Worth-Arlington, TX
2372                                   Key West, FL
2373           Riverside-San Bernardino-Ontario, CA
2374                    San Juan-Bayamón-Caguas, PR
2375             Los Angeles-Long Beach-Anaheim, CA
2376              North Port-Sarasota-Bradenton, FL
2377              Charlotte-Concord-Gastonia, NC-SC
2378                Dallas-Fort Worth-Arlington, TX
2379                      Cape Coral-Fort Myers, FL
2380                 Boston-Cambridge-Newton, MA-NH
2381          New York-Newark-Jersey City, NY-NJ-PA
2382          New York-Newark-Jersey City, NY-NJ-PA
2383        Miami-Fort Lauderdale-Pompano Beach, FL
2384              Charlotte-Concord-Gastonia, NC-SC
2385                Dallas-Fort Worth-Arlington, TX
2386        Miami-Fort Lauderdale-Pompano Beach, FL
2387                Dallas-Fort Worth-Arlington, TX
2388                Dallas-Fort Worth-Arlington, TX
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2390              Charlotte-Concord-Gastonia, NC-SC
2391              Charlotte-Concord-Gastonia, NC-SC
2392              Charlotte-Concord-Gastonia, NC-SC
2393        Miami-Fort Lauderdale-Pompano Beach, FL
2394        Miami-Fort Lauderdale-Pompano Beach, FL
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2396                Dallas-Fort Worth-Arlington, TX
2397                Dallas-Fort Worth-Arlington, TX
2398                             Urban Honolulu, HI
2399                                           <NA>
2400                                  Anchorage, AK
2401                    Seattle-Tacoma-Bellevue, WA
2402                    Seattle-Tacoma-Bellevue, WA
2403                                  Anchorage, AK
2404                                  Anchorage, AK
2405                                      Kapaa, HI
2406            Portland-Vancouver-Hillsboro, OR-WA
2407                    Seattle-Tacoma-Bellevue, WA
2408                                  Anchorage, AK
2409                                      Kapaa, HI
2410                    Seattle-Tacoma-Bellevue, WA
2411           Riverside-San Bernardino-Ontario, CA
2412        Miami-Fort Lauderdale-Pompano Beach, FL
2413                                      Kapaa, HI
2414                  Orlando-Kissimmee-Sanford, FL
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV
2416          New York-Newark-Jersey City, NY-NJ-PA
2417                 Boston-Cambridge-Newton, MA-NH
2418        Miami-Fort Lauderdale-Pompano Beach, FL
2419        Miami-Fort Lauderdale-Pompano Beach, FL
2420             San Francisco-Oakland-Berkeley, CA
2421                        Buffalo-Cheektowaga, NY
2422        Miami-Fort Lauderdale-Pompano Beach, FL
2423             San Diego-Chula Vista-Carlsbad, CA
2424              North Port-Sarasota-Bradenton, FL
2425          New York-Newark-Jersey City, NY-NJ-PA
2426        Miami-Fort Lauderdale-Pompano Beach, FL
2427                                   Richmond, VA
2428                                Albuquerque, NM
2429                 Boston-Cambridge-Newton, MA-NH
2430             Los Angeles-Long Beach-Anaheim, CA
2431        Miami-Fort Lauderdale-Pompano Beach, FL
2432           Riverside-San Bernardino-Ontario, CA
2433          Hartford-East Hartford-Middletown, CT
2434                        Buffalo-Cheektowaga, NY
2435          New York-Newark-Jersey City, NY-NJ-PA
2436                  Orlando-Kissimmee-Sanford, FL
2437        Miami-Fort Lauderdale-Pompano Beach, FL
2438          New York-Newark-Jersey City, NY-NJ-PA
2439          New York-Newark-Jersey City, NY-NJ-PA
2440            Tampa-St. Petersburg-Clearwater, FL
2441          New York-Newark-Jersey City, NY-NJ-PA
2442                 Boston-Cambridge-Newton, MA-NH
2443                  Orlando-Kissimmee-Sanford, FL
2444                    Albany-Schenectady-Troy, NY
2445          Hartford-East Hartford-Middletown, CT
2446                                 Boise City, ID
2447                                    Bozeman, MT
2448                                   Columbus, OH
2449                           Dayton-Kettering, OH
2450                                    Edwards, CO
2451                      Greensboro-High Point, NC
2452                                 Huntsville, AL
2453                                 Wilmington, NC
2454                               Jacksonville, FL
2455                    Omaha-Council Bluffs, NE-IA
2456     Virginia Beach-Norfolk-Newport News, VA-NC
2457                 Pensacola-Ferry Pass-Brent, FL
2458                    Portland-South Portland, ME
2459                               Raleigh-Cary, NC
2460             San Diego-Chula Vista-Carlsbad, CA
2461             San Francisco-Oakland-Berkeley, CA
2462                    San Juan-Bayamón-Caguas, PR
2463             Los Angeles-Long Beach-Anaheim, CA
2464                                     Tucson, AZ
2465         Crestview-Fort Walton Beach-Destin, FL
2466                    Detroit-Warren-Dearborn, MI
2467                    Seattle-Tacoma-Bellevue, WA
2468                             Salt Lake City, UT
2469        Miami-Fort Lauderdale-Pompano Beach, FL
2470        Minneapolis-St. Paul-Bloomington, MN-WI
2471                             Salt Lake City, UT
2472        Miami-Fort Lauderdale-Pompano Beach, FL
2473               Las Vegas-Henderson-Paradise, NV
2474                      Cape Coral-Fort Myers, FL
2475                    Detroit-Warren-Dearborn, MI
2476          New York-Newark-Jersey City, NY-NJ-PA
2477               Austin-Round Rock-Georgetown, TX
2478                 Boston-Cambridge-Newton, MA-NH
2479                        Buffalo-Cheektowaga, NY
2480                         Milwaukee-Waukesha, WI
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2482             San Diego-Chula Vista-Carlsbad, CA
2483                  San Antonio-New Braunfels, TX
2484             San Francisco-Oakland-Berkeley, CA
2485              North Port-Sarasota-Bradenton, FL
2486           Atlanta-Sandy Springs-Alpharetta, GA
2487           Atlanta-Sandy Springs-Alpharetta, GA
2488                    Seattle-Tacoma-Bellevue, WA
2489                             Salt Lake City, UT
2490                       New Orleans-Metairie, LA
2491        Miami-Fort Lauderdale-Pompano Beach, FL
2492               Indianapolis-Carmel-Anderson, IN
2493            Tampa-St. Petersburg-Clearwater, FL
2494                 Boston-Cambridge-Newton, MA-NH
2495                             Salt Lake City, UT
2496                 Boston-Cambridge-Newton, MA-NH
2497          New York-Newark-Jersey City, NY-NJ-PA
2498          Hartford-East Hartford-Middletown, CT
2499                  Baltimore-Columbia-Towson, MD
2500                    Detroit-Warren-Dearborn, MI
2501        Miami-Fort Lauderdale-Pompano Beach, FL
2502                             Kansas City, MO-KS
2503                         Milwaukee-Waukesha, WI
2504                                   Missoula, MT
2505           Riverside-San Bernardino-Ontario, CA
2506                  San Antonio-New Braunfels, TX
2507                Sacramento-Roseville-Folsom, CA
2508             Los Angeles-Long Beach-Anaheim, CA
2509              North Port-Sarasota-Bradenton, FL
2510                 Boston-Cambridge-Newton, MA-NH
2511                    Detroit-Warren-Dearborn, MI
2512                           Cincinnati, OH-KY-IN
2513                    Detroit-Warren-Dearborn, MI
2514               Austin-Round Rock-Georgetown, TX
2515          New York-Newark-Jersey City, NY-NJ-PA
2516        Minneapolis-St. Paul-Bloomington, MN-WI
2517            Tampa-St. Petersburg-Clearwater, FL
2518                 Boston-Cambridge-Newton, MA-NH
2519           Atlanta-Sandy Springs-Alpharetta, GA
2520 Nashville-Davidson--Murfreesboro--Franklin, TN
2521                 Boston-Cambridge-Newton, MA-NH
2522                  Baltimore-Columbia-Towson, MD
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV
2524        Miami-Fort Lauderdale-Pompano Beach, FL
2525               Indianapolis-Carmel-Anderson, IN
2526                       New Orleans-Metairie, LA
2527            Portland-Vancouver-Hillsboro, OR-WA
2528                               Raleigh-Cary, NC
2529                                       Reno, NV
2530                  San Antonio-New Braunfels, TX
2531                               St. Louis, MO-IL
2532            Tampa-St. Petersburg-Clearwater, FL
2533           Atlanta-Sandy Springs-Alpharetta, GA
2534          New York-Newark-Jersey City, NY-NJ-PA
2535                Burlington-South Burlington, VT
2536                        Buffalo-Cheektowaga, NY
2537                      Grand Rapids-Kentwood, MI
2538                                Spartanburg, SC
2539                Hilton Head Island-Bluffton, SC
2540                                   Richmond, VA
2541                Burlington-South Burlington, VT
2542                               St. Louis, MO-IL
2543                                       Hilo, HI
2544                Dallas-Fort Worth-Arlington, TX
2545                Dallas-Fort Worth-Arlington, TX
2546                      Brownsville-Harlingen, TX
2547                                   Columbia, SC
2548                           Champaign-Urbana, IL
2549                             Corpus Christi, TX
2550                                Springfield, IL
2551                                  Knoxville, TN
2552        Miami-Fort Lauderdale-Pompano Beach, FL
2553        Miami-Fort Lauderdale-Pompano Beach, FL
2554                Dallas-Fort Worth-Arlington, TX
2555                Dallas-Fort Worth-Arlington, TX
2556                Dallas-Fort Worth-Arlington, TX
2557                Dallas-Fort Worth-Arlington, TX
2558                Dallas-Fort Worth-Arlington, TX
2559                    Omaha-Council Bluffs, NE-IA
2560        Miami-Fort Lauderdale-Pompano Beach, FL
2561                    Omaha-Council Bluffs, NE-IA
2562                 Des Moines-West Des Moines, IA
2563                                  Rochester, MN
2564                Dallas-Fort Worth-Arlington, TX
2565        Miami-Fort Lauderdale-Pompano Beach, FL
2566              Charlotte-Concord-Gastonia, NC-SC
2567              Charlotte-Concord-Gastonia, NC-SC
2568                                    Madison, WI
2569                           Cleveland-Elyria, OH
2570                    Detroit-Warren-Dearborn, MI
2571                                  Lafayette, LA
2572       Little Rock-North Little Rock-Conway, AR
2573                        Harrisburg-Carlisle, PA
2574                           Dayton-Kettering, OH
2575                                  Knoxville, TN
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2578                          Manchester-Nashua, NH
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV
2581        Minneapolis-St. Paul-Bloomington, MN-WI
2582                     Denver-Aurora-Lakewood, CO
2583                Dallas-Fort Worth-Arlington, TX
2584                                   Appleton, WI
2585 Nashville-Davidson--Murfreesboro--Franklin, TN
2586                                     Casper, WY
2587                         Eugene-Springfield, OR
2588                                    Midland, TX
2589     Virginia Beach-Norfolk-Newport News, VA-NC
2590             Louisville/Jefferson County, KY-IN
2591                                           <NA>
2592                    Albany-Schenectady-Troy, NY
2593                    Omaha-Council Bluffs, NE-IA
2594                    South Bend-Mishawaka, IN-MI
2595                Dallas-Fort Worth-Arlington, TX
2596             Chicago-Naperville-Elgin, IL-IN-WI
2597        Minneapolis-St. Paul-Bloomington, MN-WI
2598                             Kansas City, MO-KS
2599                         Milwaukee-Waukesha, WI
2600           Riverside-San Bernardino-Ontario, CA
2601             Fayetteville-Springdale-Rogers, AR
2602                     Denver-Aurora-Lakewood, CO
2603                     Denver-Aurora-Lakewood, CO
2604           Houston-The Woodlands-Sugar Land, TX
2605                                   Bismarck, ND
2606                              Memphis, TN-MS-AR
2607                              Oklahoma City, OK
2608                    Omaha-Council Bluffs, NE-IA
2609                                 Pittsburgh, PA
2610                                   Richmond, VA
2611             Louisville/Jefferson County, KY-IN
2612        Minneapolis-St. Paul-Bloomington, MN-WI
2613          Hartford-East Hartford-Middletown, CT
2614                    Albany-Schenectady-Troy, NY
2615                          Birmingham-Hoover, AL
2616                              Memphis, TN-MS-AR
2617                                 Rapid City, SD
2618                    Detroit-Warren-Dearborn, MI
2619                                    Durango, CO
2620        Minneapolis-St. Paul-Bloomington, MN-WI
2621                     Denver-Aurora-Lakewood, CO
2622           Riverside-San Bernardino-Ontario, CA
2623                                Albuquerque, NM
2624                                     Tucson, AZ
2625                                Albuquerque, NM
2626                                     Fresno, CA
2627                                     Helena, MT
2628                         Kennewick-Richland, WA
2629           Riverside-San Bernardino-Ontario, CA
2630                                 Rapid City, SD
2631                                     Tucson, AZ
2632                             Salt Lake City, UT
2633                                 Boise City, ID
2634             San Francisco-Oakland-Berkeley, CA
2635                                      Kapaa, HI
2636                                    Madison, WI
2637                                   Missoula, MT
2638           Houston-The Woodlands-Sugar Land, TX
2639                  San Antonio-New Braunfels, TX
2640                Sacramento-Roseville-Folsom, CA
2641                     Denver-Aurora-Lakewood, CO
2642           Houston-The Woodlands-Sugar Land, TX
2643            Portland-Vancouver-Hillsboro, OR-WA
2644                      Phoenix-Mesa-Chandler, AZ
2645             San Diego-Chula Vista-Carlsbad, CA
2646                    San Juan-Bayamón-Caguas, PR
2647                  Baltimore-Columbia-Towson, MD
2648                                   Columbus, OH
2649                           Cincinnati, OH-KY-IN
2650                             Urban Honolulu, HI
2651                                 Jackson, WY-ID
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2653                                 Pittsburgh, PA
2654                    Seattle-Tacoma-Bellevue, WA
2655          New York-Newark-Jersey City, NY-NJ-PA
2656           Houston-The Woodlands-Sugar Land, TX
2657           Houston-The Woodlands-Sugar Land, TX
2658           Houston-The Woodlands-Sugar Land, TX
2659          New York-Newark-Jersey City, NY-NJ-PA
2660             Chicago-Naperville-Elgin, IL-IN-WI
2661                  Baltimore-Columbia-Towson, MD
2662                             Urban Honolulu, HI
2663                  Orlando-Kissimmee-Sanford, FL
2664                    Seattle-Tacoma-Bellevue, WA
2665          New York-Newark-Jersey City, NY-NJ-PA
2666                     Denver-Aurora-Lakewood, CO
2667          New York-Newark-Jersey City, NY-NJ-PA
2668             San Jose-Sunnyvale-Santa Clara, CA
2669 Nashville-Davidson--Murfreesboro--Franklin, TN
2670                    San Juan-Bayamón-Caguas, PR
2671                      Cape Coral-Fort Myers, FL
2672                                Panama City, FL
2673           Houston-The Woodlands-Sugar Land, TX
2674                             Urban Honolulu, HI
2675                             Kansas City, MO-KS
2676 Nashville-Davidson--Murfreesboro--Franklin, TN
2677                             Urban Honolulu, HI
2678               Indianapolis-Carmel-Anderson, IN
2679                  San Antonio-New Braunfels, TX
2680        Miami-Fort Lauderdale-Pompano Beach, FL
2681           Houston-The Woodlands-Sugar Land, TX
2682                Dallas-Fort Worth-Arlington, TX
2683                 Des Moines-West Des Moines, IA
2684                                   Key West, FL
2685             Louisville/Jefferson County, KY-IN
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV
2687                Charleston-North Charleston, SC
2688                           Cleveland-Elyria, OH
2689                               Jacksonville, FL
2690                 Boston-Cambridge-Newton, MA-NH
2691          New York-Newark-Jersey City, NY-NJ-PA
2692                                    Madison, WI
2693                                   Columbus, OH
2694                             Kansas City, MO-KS
2695                              Memphis, TN-MS-AR
2696                                    Madison, WI
2697             Louisville/Jefferson County, KY-IN
2698          New York-Newark-Jersey City, NY-NJ-PA
2699             Fayetteville-Springdale-Rogers, AR
2700                                   Key West, FL
2701             Louisville/Jefferson County, KY-IN
2702          New York-Newark-Jersey City, NY-NJ-PA
2703          New York-Newark-Jersey City, NY-NJ-PA
2704                Charleston-North Charleston, SC
2705                               Jacksonville, FL
2706             Louisville/Jefferson County, KY-IN
2707                                   Key West, FL
2708                       New Orleans-Metairie, LA
2709              Charlotte-Concord-Gastonia, NC-SC
2710                 Boston-Cambridge-Newton, MA-NH
2711          New York-Newark-Jersey City, NY-NJ-PA
2712             Chicago-Naperville-Elgin, IL-IN-WI
2713                                     Ithaca, NY
2714                                   Columbia, SC
2715                 Pensacola-Ferry Pass-Brent, FL
2716             Chicago-Naperville-Elgin, IL-IN-WI
2717                      Brownsville-Harlingen, TX
2718        Minneapolis-St. Paul-Bloomington, MN-WI
2719                                  Green Bay, WI
2720                               Salisbury, MD-DE
2721             Louisville/Jefferson County, KY-IN
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2723          New York-Newark-Jersey City, NY-NJ-PA
2724                                   Savannah, GA
2725           Houston-The Woodlands-Sugar Land, TX
2726                                  Dickinson, ND
2727                    Albany-Schenectady-Troy, NY
2728                                     Mobile, AL
2729                               St. Louis, MO-IL
2730           Houston-The Woodlands-Sugar Land, TX
2731                     Denver-Aurora-Lakewood, CO
2732              Allentown-Bethlehem-Easton, PA-NJ
2733          New York-Newark-Jersey City, NY-NJ-PA
2734          New York-Newark-Jersey City, NY-NJ-PA
2735          New York-Newark-Jersey City, NY-NJ-PA
2736        Minneapolis-St. Paul-Bloomington, MN-WI
2737          New York-Newark-Jersey City, NY-NJ-PA
2738          New York-Newark-Jersey City, NY-NJ-PA
2739                Burlington-South Burlington, VT
2740                    Portland-South Portland, ME
2741                                   Columbia, SC
2742                      Grand Rapids-Kentwood, MI
2743     Virginia Beach-Norfolk-Newport News, VA-NC
2744           Atlanta-Sandy Springs-Alpharetta, GA
2745          New York-Newark-Jersey City, NY-NJ-PA
2746                 Boston-Cambridge-Newton, MA-NH
2747          New York-Newark-Jersey City, NY-NJ-PA
2748          New York-Newark-Jersey City, NY-NJ-PA
2749          New York-Newark-Jersey City, NY-NJ-PA
2750          New York-Newark-Jersey City, NY-NJ-PA
2751                Dallas-Fort Worth-Arlington, TX
2752                Dallas-Fort Worth-Arlington, TX
2753        Miami-Fort Lauderdale-Pompano Beach, FL
2754                      Phoenix-Mesa-Chandler, AZ
2755              Charlotte-Concord-Gastonia, NC-SC
2756              Charlotte-Concord-Gastonia, NC-SC
2757                Dallas-Fort Worth-Arlington, TX
2758                Dallas-Fort Worth-Arlington, TX
2759                Dallas-Fort Worth-Arlington, TX
2760                Dallas-Fort Worth-Arlington, TX
2761              Charlotte-Concord-Gastonia, NC-SC
2762              Charlotte-Concord-Gastonia, NC-SC
2763                Dallas-Fort Worth-Arlington, TX
2764        Miami-Fort Lauderdale-Pompano Beach, FL
2765                      Phoenix-Mesa-Chandler, AZ
2766             Chicago-Naperville-Elgin, IL-IN-WI
2767                 Boston-Cambridge-Newton, MA-NH
2768                        Buffalo-Cheektowaga, NY
2769                  Baltimore-Columbia-Towson, MD
2770                           Cincinnati, OH-KY-IN
2771                Dallas-Fort Worth-Arlington, TX
2772                                   Key West, FL
2773        Miami-Fort Lauderdale-Pompano Beach, FL
2774             Los Angeles-Long Beach-Anaheim, CA
2775        Miami-Fort Lauderdale-Pompano Beach, FL
2776                      Phoenix-Mesa-Chandler, AZ
2777                      Cape Coral-Fort Myers, FL
2778             San Francisco-Oakland-Berkeley, CA
2779                               St. Louis, MO-IL
2780                                   Syracuse, NY
2781                Dallas-Fort Worth-Arlington, TX
2782                Dallas-Fort Worth-Arlington, TX
2783              North Port-Sarasota-Bradenton, FL
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2785 Nashville-Davidson--Murfreesboro--Franklin, TN
2786                                 Boise City, ID
2787             Los Angeles-Long Beach-Anaheim, CA
2788                           Colorado Springs, CO
2789                           Cincinnati, OH-KY-IN
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV
2791                                 Jackson, WY-ID
2792       Little Rock-North Little Rock-Conway, AR
2793                             Kansas City, MO-KS
2794                  Orlando-Kissimmee-Sanford, FL
2795        Miami-Fort Lauderdale-Pompano Beach, FL
2796                                 Pittsburgh, PA
2797             San Diego-Chula Vista-Carlsbad, CA
2798                                   Savannah, GA
2799                    San Juan-Bayamón-Caguas, PR
2800                Sacramento-Roseville-Folsom, CA
2801             Los Angeles-Long Beach-Anaheim, CA
2802                Dallas-Fort Worth-Arlington, TX
2803              Charlotte-Concord-Gastonia, NC-SC
2804              Charlotte-Concord-Gastonia, NC-SC
2805             Los Angeles-Long Beach-Anaheim, CA
2806                Dallas-Fort Worth-Arlington, TX
2807                Dallas-Fort Worth-Arlington, TX
2808        Miami-Fort Lauderdale-Pompano Beach, FL
2809                Dallas-Fort Worth-Arlington, TX
2810        Miami-Fort Lauderdale-Pompano Beach, FL
2811        Miami-Fort Lauderdale-Pompano Beach, FL
2812              Charlotte-Concord-Gastonia, NC-SC
2813                Dallas-Fort Worth-Arlington, TX
2814                Dallas-Fort Worth-Arlington, TX
2815               Austin-Round Rock-Georgetown, TX
2816              Charlotte-Concord-Gastonia, NC-SC
2817              Charlotte-Concord-Gastonia, NC-SC
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV
2819                Dallas-Fort Worth-Arlington, TX
2820                Dallas-Fort Worth-Arlington, TX
2821                Dallas-Fort Worth-Arlington, TX
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2823              Charlotte-Concord-Gastonia, NC-SC
2824              Charlotte-Concord-Gastonia, NC-SC
2825              Charlotte-Concord-Gastonia, NC-SC
2826                      Phoenix-Mesa-Chandler, AZ
2827                Dallas-Fort Worth-Arlington, TX
2828        Miami-Fort Lauderdale-Pompano Beach, FL
2829                               Raleigh-Cary, NC
2830 Nashville-Davidson--Murfreesboro--Franklin, TN
2831                Charleston-North Charleston, SC
2832              Charlotte-Concord-Gastonia, NC-SC
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV
2834                Dallas-Fort Worth-Arlington, TX
2835                               Jacksonville, FL
2836                    Seattle-Tacoma-Bellevue, WA
2837                      Phoenix-Mesa-Chandler, AZ
2838              Charlotte-Concord-Gastonia, NC-SC
2839                Dallas-Fort Worth-Arlington, TX
2840        Miami-Fort Lauderdale-Pompano Beach, FL
2841                                     Tucson, AZ
2842                Dallas-Fort Worth-Arlington, TX
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2844                Dallas-Fort Worth-Arlington, TX
2845              Charlotte-Concord-Gastonia, NC-SC
2846              Charlotte-Concord-Gastonia, NC-SC
2847                  Orlando-Kissimmee-Sanford, FL
2848                                    Madison, WI
2849                Dallas-Fort Worth-Arlington, TX
2850                Dallas-Fort Worth-Arlington, TX
2851                      Phoenix-Mesa-Chandler, AZ
2852              Charlotte-Concord-Gastonia, NC-SC
2853                Dallas-Fort Worth-Arlington, TX
2854        Miami-Fort Lauderdale-Pompano Beach, FL
2855                Dallas-Fort Worth-Arlington, TX
2856                Dallas-Fort Worth-Arlington, TX
2857        Miami-Fort Lauderdale-Pompano Beach, FL
2858             Chicago-Naperville-Elgin, IL-IN-WI
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2860        Miami-Fort Lauderdale-Pompano Beach, FL
2861                Dallas-Fort Worth-Arlington, TX
2862                Dallas-Fort Worth-Arlington, TX
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2865                Dallas-Fort Worth-Arlington, TX
2866                Dallas-Fort Worth-Arlington, TX
2867                 Boston-Cambridge-Newton, MA-NH
2868              Charlotte-Concord-Gastonia, NC-SC
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2870             Chicago-Naperville-Elgin, IL-IN-WI
2871                    Seattle-Tacoma-Bellevue, WA
2872                    Seattle-Tacoma-Bellevue, WA
2873                    Seattle-Tacoma-Bellevue, WA
2874                    Seattle-Tacoma-Bellevue, WA
2875                    Seattle-Tacoma-Bellevue, WA
2876                    Seattle-Tacoma-Bellevue, WA
2877                                           <NA>
2878                                     Juneau, AK
2879             San Diego-Chula Vista-Carlsbad, CA
2880                    Seattle-Tacoma-Bellevue, WA
2881                                Albuquerque, NM
2882                  Orlando-Kissimmee-Sanford, FL
2883                    Seattle-Tacoma-Bellevue, WA
2884             Los Angeles-Long Beach-Anaheim, CA
2885                                   Columbus, OH
2886                           Cincinnati, OH-KY-IN
2887               Indianapolis-Carmel-Anderson, IN
2888                         Milwaukee-Waukesha, WI
2889                    Kahului-Wailuku-Lahaina, HI
2890                              Oklahoma City, OK
2891                    Omaha-Council Bluffs, NE-IA
2892                               Raleigh-Cary, NC
2893                  San Antonio-New Braunfels, TX
2894                               St. Louis, MO-IL
2895                                     Tucson, AZ
2896                             Urban Honolulu, HI
2897             Los Angeles-Long Beach-Anaheim, CA
2898        Miami-Fort Lauderdale-Pompano Beach, FL
2899                      Cape Coral-Fort Myers, FL
2900                                   Key West, FL
2901                  San Antonio-New Braunfels, TX
2902                                   Savannah, GA
2903                  Orlando-Kissimmee-Sanford, FL
2904                 Boston-Cambridge-Newton, MA-NH
2905             Los Angeles-Long Beach-Anaheim, CA
2906                 Boston-Cambridge-Newton, MA-NH
2907                 Boston-Cambridge-Newton, MA-NH
2908                    San Juan-Bayamón-Caguas, PR
2909                                           <NA>
2910                                           <NA>
2911                               Jacksonville, FL
2912                      Providence-Warwick, RI-MA
2913             San Diego-Chula Vista-Carlsbad, CA
2914                    San Juan-Bayamón-Caguas, PR
2915                             Salt Lake City, UT
2916                  Orlando-Kissimmee-Sanford, FL
2917            Tampa-St. Petersburg-Clearwater, FL
2918          New York-Newark-Jersey City, NY-NJ-PA
2919                 Boston-Cambridge-Newton, MA-NH
2920        Miami-Fort Lauderdale-Pompano Beach, FL
2921             Los Angeles-Long Beach-Anaheim, CA
2922          New York-Newark-Jersey City, NY-NJ-PA
2923                          Aguadilla-Isabela, PR
2924                                   Key West, FL
2925           Houston-The Woodlands-Sugar Land, TX
2926                  San Antonio-New Braunfels, TX
2927              North Port-Sarasota-Bradenton, FL
2928                      Providence-Warwick, RI-MA
2929          Hartford-East Hartford-Middletown, CT
2930          Hartford-East Hartford-Middletown, CT
2931                 Boston-Cambridge-Newton, MA-NH
2932          New York-Newark-Jersey City, NY-NJ-PA
2933                      Providence-Warwick, RI-MA
2934                  Orlando-Kissimmee-Sanford, FL
2935        Miami-Fort Lauderdale-Pompano Beach, FL
2936             Los Angeles-Long Beach-Anaheim, CA
2937                  Orlando-Kissimmee-Sanford, FL
2938          New York-Newark-Jersey City, NY-NJ-PA
2939          New York-Newark-Jersey City, NY-NJ-PA
2940        Miami-Fort Lauderdale-Pompano Beach, FL
2941                 Boston-Cambridge-Newton, MA-NH
2942          New York-Newark-Jersey City, NY-NJ-PA
2943                               Raleigh-Cary, NC
2944          New York-Newark-Jersey City, NY-NJ-PA
2945          New York-Newark-Jersey City, NY-NJ-PA
2946                             Salt Lake City, UT
2947                        Buffalo-Cheektowaga, NY
2948                Charleston-North Charleston, SC
2949                      Grand Rapids-Kentwood, MI
2950          New York-Newark-Jersey City, NY-NJ-PA
2951                      Providence-Warwick, RI-MA
2952              North Port-Sarasota-Bradenton, FL
2953        Minneapolis-St. Paul-Bloomington, MN-WI
2954                    Detroit-Warren-Dearborn, MI
2955                             Salt Lake City, UT
2956           Atlanta-Sandy Springs-Alpharetta, GA
2957           Atlanta-Sandy Springs-Alpharetta, GA
2958                             Salt Lake City, UT
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV
2960        Minneapolis-St. Paul-Bloomington, MN-WI
2961        Minneapolis-St. Paul-Bloomington, MN-WI
2962        Minneapolis-St. Paul-Bloomington, MN-WI
2963                    Detroit-Warren-Dearborn, MI
2964                    Detroit-Warren-Dearborn, MI
2965           Atlanta-Sandy Springs-Alpharetta, GA
2966           Atlanta-Sandy Springs-Alpharetta, GA
2967           Atlanta-Sandy Springs-Alpharetta, GA
2968           Atlanta-Sandy Springs-Alpharetta, GA
2969                    Detroit-Warren-Dearborn, MI
2970          New York-Newark-Jersey City, NY-NJ-PA
2971        Minneapolis-St. Paul-Bloomington, MN-WI
2972                           Cincinnati, OH-KY-IN
2973                             Salt Lake City, UT
2974                             Salt Lake City, UT
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV
2976           Atlanta-Sandy Springs-Alpharetta, GA
2977                    Detroit-Warren-Dearborn, MI
2978                               Cedar Rapids, IA
2979                                   Fargo, ND-MN
2980                               Raleigh-Cary, NC
2981             Fayetteville-Springdale-Rogers, AR
2982        Miami-Fort Lauderdale-Pompano Beach, FL
2983                               Raleigh-Cary, NC
2984       Little Rock-North Little Rock-Conway, AR
2985                  Orlando-Kissimmee-Sanford, FL
2986                    Portland-South Portland, ME
2987                                   Syracuse, NY
2988               Las Vegas-Henderson-Paradise, NV
2989                          Trenton-Princeton, NJ
2990                  Orlando-Kissimmee-Sanford, FL
2991                      Cape Coral-Fort Myers, FL
2992                     Denver-Aurora-Lakewood, CO
2993                     Denver-Aurora-Lakewood, CO
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV
2995             Chicago-Naperville-Elgin, IL-IN-WI
2996                                Spartanburg, SC
2997     Virginia Beach-Norfolk-Newport News, VA-NC
2998          New York-Newark-Jersey City, NY-NJ-PA
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV
3000                Dallas-Fort Worth-Arlington, TX
3001        Miami-Fort Lauderdale-Pompano Beach, FL
3002                Dallas-Fort Worth-Arlington, TX
3003                Dallas-Fort Worth-Arlington, TX
3004                Dallas-Fort Worth-Arlington, TX
3005               Indianapolis-Carmel-Anderson, IN
3006                                  Asheville, NC
3007                                Bakersfield, CA
3008                          Birmingham-Hoover, AL
3009                                Garden City, KS
3010                                     Laredo, TX
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3012         Crestview-Fort Walton Beach-Destin, FL
3013        Miami-Fort Lauderdale-Pompano Beach, FL
3014                           Cincinnati, OH-KY-IN
3015                                   Savannah, GA
3016                                  Knoxville, TN
3017                                   Columbus, OH
3018                              Evansville, IN-KY
3019       Little Rock-North Little Rock-Conway, AR
3020                  San Antonio-New Braunfels, TX
3021               Austin-Round Rock-Georgetown, TX
3022        Miami-Fort Lauderdale-Pompano Beach, FL
3023                Dallas-Fort Worth-Arlington, TX
3024                  Orlando-Kissimmee-Sanford, FL
3025                  Orlando-Kissimmee-Sanford, FL
3026             Los Angeles-Long Beach-Anaheim, CA
3027               Indianapolis-Carmel-Anderson, IN
3028                         Milwaukee-Waukesha, WI
3029             Los Angeles-Long Beach-Anaheim, CA
3030             Los Angeles-Long Beach-Anaheim, CA
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3033                                Panama City, FL
3034                         Milwaukee-Waukesha, WI
3035                                Tallahassee, FL
3036         Crestview-Fort Walton Beach-Destin, FL
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3038                 Augusta-Richmond County, GA-SC
3039                    Albany-Schenectady-Troy, NY
3040                 Des Moines-West Des Moines, IA
3041                                 Huntsville, AL
3042                                 Montgomery, AL
3043                    Portland-South Portland, ME
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3046              Charlotte-Concord-Gastonia, NC-SC
3047              Charlotte-Concord-Gastonia, NC-SC
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV
3049              Charlotte-Concord-Gastonia, NC-SC
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV
3051                           Cincinnati, OH-KY-IN
3052                Dallas-Fort Worth-Arlington, TX
3053           Riverside-San Bernardino-Ontario, CA
3054                     Denver-Aurora-Lakewood, CO
3055                     Denver-Aurora-Lakewood, CO
3056             San Francisco-Oakland-Berkeley, CA
3057                               Jacksonville, FL
3058           Riverside-San Bernardino-Ontario, CA
3059                                   Savannah, GA
3060                                    Lubbock, TX
3061                       Kingsport-Bristol, TN-VA
3062                      Providence-Warwick, RI-MA
3063                Dallas-Fort Worth-Arlington, TX
3064                    Seattle-Tacoma-Bellevue, WA
3065           Houston-The Woodlands-Sugar Land, TX
3066                     Denver-Aurora-Lakewood, CO
3067                              Oklahoma City, OK
3068                                     Fresno, CA
3069                                    Medford, OR
3070           Houston-The Woodlands-Sugar Land, TX
3071           Houston-The Woodlands-Sugar Land, TX
3072                                   Columbus, OH
3073                              Oklahoma City, OK
3074                    Detroit-Warren-Dearborn, MI
3075                      Phoenix-Mesa-Chandler, AZ
3076             Chicago-Naperville-Elgin, IL-IN-WI
3077             Chicago-Naperville-Elgin, IL-IN-WI
3078                             Kansas City, MO-KS
3079                         Eugene-Springfield, OR
3080                                    Medford, OR
3081           Riverside-San Bernardino-Ontario, CA
3082                  Santa Maria-Santa Barbara, CA
3083                 Des Moines-West Des Moines, IA
3084                             Salt Lake City, UT
3085           Houston-The Woodlands-Sugar Land, TX
3086                    Seattle-Tacoma-Bellevue, WA
3087                                  Fairbanks, AK
3088                                  Anchorage, AK
3089                    Seattle-Tacoma-Bellevue, WA
3090           Riverside-San Bernardino-Ontario, CA
3091                                Walla Walla, WA
3092             San Francisco-Oakland-Berkeley, CA
3093          New York-Newark-Jersey City, NY-NJ-PA
3094             Chicago-Naperville-Elgin, IL-IN-WI
3095             Chicago-Naperville-Elgin, IL-IN-WI
3096             Chicago-Naperville-Elgin, IL-IN-WI
3097           Houston-The Woodlands-Sugar Land, TX
3098                                 Pittsburgh, PA
3099             San Jose-Sunnyvale-Santa Clara, CA
3100                          Aguadilla-Isabela, PR
3101             Los Angeles-Long Beach-Anaheim, CA
3102               Austin-Round Rock-Georgetown, TX
3103                      Cape Coral-Fort Myers, FL
3104                   McAllen-Edinburg-Mission, TX
3105            Portland-Vancouver-Hillsboro, OR-WA
3106             San Diego-Chula Vista-Carlsbad, CA
3107             San Jose-Sunnyvale-Santa Clara, CA
3108                Sacramento-Roseville-Folsom, CA
3109             Los Angeles-Long Beach-Anaheim, CA
3110           Houston-The Woodlands-Sugar Land, TX
3111             San Francisco-Oakland-Berkeley, CA
3112                  Baltimore-Columbia-Towson, MD
3113                           Cleveland-Elyria, OH
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV
3116           Houston-The Woodlands-Sugar Land, TX
3117                     Denver-Aurora-Lakewood, CO
3118                     Denver-Aurora-Lakewood, CO
3119           Houston-The Woodlands-Sugar Land, TX
3120                     Denver-Aurora-Lakewood, CO
3121             San Francisco-Oakland-Berkeley, CA
3122             San Diego-Chula Vista-Carlsbad, CA
3123                                Albuquerque, NM
3124                                    Lubbock, TX
3125               Las Vegas-Henderson-Paradise, NV
3126                               St. Louis, MO-IL
3127             San Francisco-Oakland-Berkeley, CA
3128                Sacramento-Roseville-Folsom, CA
3129 Nashville-Davidson--Murfreesboro--Franklin, TN
3130            Tampa-St. Petersburg-Clearwater, FL
3131                    Albany-Schenectady-Troy, NY
3132               Austin-Round Rock-Georgetown, TX
3133                                   Columbus, OH
3134                Dallas-Fort Worth-Arlington, TX
3135                             Kansas City, MO-KS
3136                          Manchester-Nashua, NH
3137                                   Syracuse, NY
3138                         Milwaukee-Waukesha, WI
3139        Miami-Fort Lauderdale-Pompano Beach, FL
3140                  San Antonio-New Braunfels, TX
3141                Dallas-Fort Worth-Arlington, TX
3142        Miami-Fort Lauderdale-Pompano Beach, FL
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3144               Indianapolis-Carmel-Anderson, IN
3145                              Memphis, TN-MS-AR
3146        Miami-Fort Lauderdale-Pompano Beach, FL
3147                         Milwaukee-Waukesha, WI
3148             San Diego-Chula Vista-Carlsbad, CA
3149                                   Savannah, GA
3150              North Port-Sarasota-Bradenton, FL
3151                      Cape Coral-Fort Myers, FL
3152           Houston-The Woodlands-Sugar Land, TX
3153                             Kansas City, MO-KS
3154                           Colorado Springs, CO
3155                                   Montrose, CO
3156          New York-Newark-Jersey City, NY-NJ-PA
3157                                Albuquerque, NM
3158                             Corpus Christi, TX
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV
3160                                    Jackson, MS
3161                  Orlando-Kissimmee-Sanford, FL
3162                                     Fresno, CA
3163                              Oklahoma City, OK
3164               Las Vegas-Henderson-Paradise, NV
3165           Houston-The Woodlands-Sugar Land, TX
3166                Dallas-Fort Worth-Arlington, TX
3167                               St. Louis, MO-IL
3168               Las Vegas-Henderson-Paradise, NV
3169           Houston-The Woodlands-Sugar Land, TX
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV
3171                  San Antonio-New Braunfels, TX
3172           Houston-The Woodlands-Sugar Land, TX
3173          New York-Newark-Jersey City, NY-NJ-PA
3174                    Detroit-Warren-Dearborn, MI
3175                          Manchester-Nashua, NH
3176                                   Savannah, GA
3177                                Albuquerque, NM
3178          Hartford-East Hartford-Middletown, CT
3179             Los Angeles-Long Beach-Anaheim, CA
3180                  San Antonio-New Braunfels, TX
3181            Tampa-St. Petersburg-Clearwater, FL
3182        Miami-Fort Lauderdale-Pompano Beach, FL
3183 Nashville-Davidson--Murfreesboro--Franklin, TN
3184           Houston-The Woodlands-Sugar Land, TX
3185                             Kansas City, MO-KS
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV
3187 Nashville-Davidson--Murfreesboro--Franklin, TN
3188                              Oklahoma City, OK
3189                                    Wichita, KS
3190               Indianapolis-Carmel-Anderson, IN
3191            Tampa-St. Petersburg-Clearwater, FL
3192             San Francisco-Oakland-Berkeley, CA
3193             Chicago-Naperville-Elgin, IL-IN-WI
3194        Miami-Fort Lauderdale-Pompano Beach, FL
3195                               St. Louis, MO-IL
3196             San Francisco-Oakland-Berkeley, CA
3197             Los Angeles-Long Beach-Anaheim, CA
3198                  Baltimore-Columbia-Towson, MD
3199                                 Pittsburgh, PA
3200                                       Reno, NV
3201                Dallas-Fort Worth-Arlington, TX
3202                           Colorado Springs, CO
3203                               St. Louis, MO-IL
3204           Houston-The Woodlands-Sugar Land, TX
3205               Las Vegas-Henderson-Paradise, NV
3206               Austin-Round Rock-Georgetown, TX
3207                      Cape Coral-Fort Myers, FL
3208                                      Tulsa, OK
3209                               Raleigh-Cary, NC
3210             San Jose-Sunnyvale-Santa Clara, CA
3211          New York-Newark-Jersey City, NY-NJ-PA
3212                                 Pittsburgh, PA
3213               Indianapolis-Carmel-Anderson, IN
3214               Las Vegas-Henderson-Paradise, NV
3215                               St. Louis, MO-IL
3216           Houston-The Woodlands-Sugar Land, TX
3217           Houston-The Woodlands-Sugar Land, TX
3218                                    El Paso, TX
3219                                Tallahassee, FL
3220                      Phoenix-Mesa-Chandler, AZ
3221                                    Salinas, CA
3222                  Santa Maria-Santa Barbara, CA
3223           Houston-The Woodlands-Sugar Land, TX
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV
3225                             Kansas City, MO-KS
3226                                     Bangor, ME
3227                Charleston-North Charleston, SC
3228                                 Pittsburgh, PA
3229                               St. Louis, MO-IL
3230          New York-Newark-Jersey City, NY-NJ-PA
3231                           Cincinnati, OH-KY-IN
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV
3233                           Cleveland-Elyria, OH
3234                               Jacksonville, FL
3235                                    Roanoke, VA
3236                                  Asheville, NC
3237                                  Duluth, MN-WI
3238                                   Savannah, GA
3239                                   Columbus, OH
3240             Chicago-Naperville-Elgin, IL-IN-WI
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV
3242             Chicago-Naperville-Elgin, IL-IN-WI
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV
3244             Chicago-Naperville-Elgin, IL-IN-WI
3245             Chicago-Naperville-Elgin, IL-IN-WI
3246             Chicago-Naperville-Elgin, IL-IN-WI
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV
3248             Chicago-Naperville-Elgin, IL-IN-WI
3249                                  Knoxville, TN
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV
3251                            Charlottesville, VA
3252             Chicago-Naperville-Elgin, IL-IN-WI
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV
3254        Minneapolis-St. Paul-Bloomington, MN-WI
3255                            Gulfport-Biloxi, MS
3256        Minneapolis-St. Paul-Bloomington, MN-WI
3257                                  Rochester, NY
3258                             Chattanooga, TN-GA
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3260                                  Asheville, NC
3261                                    Roanoke, VA
3262                 Boston-Cambridge-Newton, MA-NH
3263           Houston-The Woodlands-Sugar Land, TX
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV
3265                                Panama City, FL
3266                     Denver-Aurora-Lakewood, CO
3267                Dallas-Fort Worth-Arlington, TX
3268                    San Juan-Bayamón-Caguas, PR
3269                           Cleveland-Elyria, OH
3270                                           <NA>
3271                Dallas-Fort Worth-Arlington, TX
3272             Los Angeles-Long Beach-Anaheim, CA
3273                Dallas-Fort Worth-Arlington, TX
3274                    Kahului-Wailuku-Lahaina, HI
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3276                Dallas-Fort Worth-Arlington, TX
3277             Chicago-Naperville-Elgin, IL-IN-WI
3278                           Cincinnati, OH-KY-IN
3279                Dallas-Fort Worth-Arlington, TX
3280                                       Hilo, HI
3281                    Kahului-Wailuku-Lahaina, HI
3282                                           <NA>
3283                                  Anchorage, AK
3284                                  Anchorage, AK
3285                    Seattle-Tacoma-Bellevue, WA
3286        Miami-Fort Lauderdale-Pompano Beach, FL
3287                      Cape Coral-Fort Myers, FL
3288                      Cape Coral-Fort Myers, FL
3289          New York-Newark-Jersey City, NY-NJ-PA
3290                                   Appleton, WI
3291                               Cedar Rapids, IA
3292                Sacramento-Roseville-Folsom, CA
3293                                           <NA>
3294                                           <NA>
3295                                   Savannah, GA
3296           Atlanta-Sandy Springs-Alpharetta, GA
3297           Atlanta-Sandy Springs-Alpharetta, GA
3298           Atlanta-Sandy Springs-Alpharetta, GA
3299        Minneapolis-St. Paul-Bloomington, MN-WI
3300          New York-Newark-Jersey City, NY-NJ-PA
3301                                   Key West, FL
3302                           Dayton-Kettering, OH
3303                               Texarkana, TX-AR
3304                Dallas-Fort Worth-Arlington, TX
3305                                      Akron, OH
3306         Deltona-Daytona Beach-Ormond Beach, FL
3307          New York-Newark-Jersey City, NY-NJ-PA
3308                                Tallahassee, FL
3309              Charlotte-Concord-Gastonia, NC-SC
3310                           Cleveland-Elyria, OH
3311                                   Syracuse, NY
3312                      Phoenix-Mesa-Chandler, AZ
3313                                  Kalispell, MT
3314             San Francisco-Oakland-Berkeley, CA
3315                                 Jackson, WY-ID
3316                             Urban Honolulu, HI
3317             Los Angeles-Long Beach-Anaheim, CA
3318                                    Edwards, CO
3319           Houston-The Woodlands-Sugar Land, TX
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV
3321                     Denver-Aurora-Lakewood, CO
3322 Nashville-Davidson--Murfreesboro--Franklin, TN
3323             San Diego-Chula Vista-Carlsbad, CA
3324                                Albuquerque, NM
3325             San Diego-Chula Vista-Carlsbad, CA
3326             Los Angeles-Long Beach-Anaheim, CA
3327           Riverside-San Bernardino-Ontario, CA
3328                  Orlando-Kissimmee-Sanford, FL
3329             Chicago-Naperville-Elgin, IL-IN-WI
3330                  Baltimore-Columbia-Towson, MD
3331                       New Orleans-Metairie, LA
3332             Chicago-Naperville-Elgin, IL-IN-WI
3333             San Francisco-Oakland-Berkeley, CA
3334                    San Juan-Bayamón-Caguas, PR
3335           Houston-The Woodlands-Sugar Land, TX
3336                                     Peoria, IL
3337                 Pensacola-Ferry Pass-Brent, FL
3338                                 Rapid City, SD
3339                                    Bozeman, MT
3340                Charleston-North Charleston, SC
3341     Virginia Beach-Norfolk-Newport News, VA-NC
3342                Dallas-Fort Worth-Arlington, TX
3343                Hilton Head Island-Bluffton, SC
3344                                   Appleton, WI
3345                    Omaha-Council Bluffs, NE-IA
3346          New York-Newark-Jersey City, NY-NJ-PA
3347        Miami-Fort Lauderdale-Pompano Beach, FL
3348                    San Juan-Bayamón-Caguas, PR
3349                                     Bangor, ME
3350                      Grand Rapids-Kentwood, MI
3351                                     Helena, MT
3352                    Shreveport-Bossier City, LA
3353                     Denver-Aurora-Lakewood, CO
3354                             Salt Lake City, UT
3355                    Kahului-Wailuku-Lahaina, HI
3356                                 Fort Wayne, IN
3357                      Phoenix-Mesa-Chandler, AZ
3358                                   Richmond, VA
3359            Tampa-St. Petersburg-Clearwater, FL
3360                Dallas-Fort Worth-Arlington, TX
3361                      Phoenix-Mesa-Chandler, AZ
3362                Dallas-Fort Worth-Arlington, TX
3363             Chicago-Naperville-Elgin, IL-IN-WI
3364                                           <NA>
3365                Dallas-Fort Worth-Arlington, TX
3366                                   Key West, FL
3367                                Tallahassee, FL
3368                             Salt Lake City, UT
3369        Miami-Fort Lauderdale-Pompano Beach, FL
3370                                Sioux Falls, SD
3371                Dallas-Fort Worth-Arlington, TX
3372                                   Missoula, MT
3373                 Pensacola-Ferry Pass-Brent, FL
3374                          Birmingham-Hoover, AL
3375                                   Savannah, GA
3376                                Idaho Falls, ID
3377        Minneapolis-St. Paul-Bloomington, MN-WI
3378                                 Boise City, ID
3379        Minneapolis-St. Paul-Bloomington, MN-WI
3380                           Glenwood Springs, CO
3381           Houston-The Woodlands-Sugar Land, TX
3382                             Urban Honolulu, HI
3383                                    Bozeman, MT
3384                                    Edwards, CO
3385               Austin-Round Rock-Georgetown, TX
3386             San Francisco-Oakland-Berkeley, CA
3387                      Cape Coral-Fort Myers, FL
3388             San Francisco-Oakland-Berkeley, CA
3389                  Orlando-Kissimmee-Sanford, FL
3390                Dallas-Fort Worth-Arlington, TX
3391                                Panama City, FL
3392                                 Wilmington, NC
3393                                           <NA>
3394                 Boston-Cambridge-Newton, MA-NH
3395                    Kahului-Wailuku-Lahaina, HI
3396        Minneapolis-St. Paul-Bloomington, MN-WI
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV
3398                             Urban Honolulu, HI
3399                             Urban Honolulu, HI
3400                                       Hilo, HI
3401                                   Montrose, CO
3402                                  Lafayette, LA
3403           Atlanta-Sandy Springs-Alpharetta, GA
3404           Atlanta-Sandy Springs-Alpharetta, GA
3405                              Wausau-Weston, WI
3406                 Des Moines-West Des Moines, IA
3407          New York-Newark-Jersey City, NY-NJ-PA
3408           Atlanta-Sandy Springs-Alpharetta, GA
3409        Minneapolis-St. Paul-Bloomington, MN-WI
3410           Atlanta-Sandy Springs-Alpharetta, GA
3411                    San Juan-Bayamón-Caguas, PR
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV
3413                      Phoenix-Mesa-Chandler, AZ
3414        Miami-Fort Lauderdale-Pompano Beach, FL
3415          Hartford-East Hartford-Middletown, CT
3416                                  Rochester, NY
3417             San Diego-Chula Vista-Carlsbad, CA
3418                    Seattle-Tacoma-Bellevue, WA
3419                                           <NA>
3420                                           <NA>
3421                                       Reno, NV
3422                                    Edwards, CO
3423                                     Fresno, CA
3424     Virginia Beach-Norfolk-Newport News, VA-NC
3425                               Raleigh-Cary, NC
3426                Dallas-Fort Worth-Arlington, TX
3427                Dallas-Fort Worth-Arlington, TX
3428                Dallas-Fort Worth-Arlington, TX
3429                Dallas-Fort Worth-Arlington, TX
3430               Indianapolis-Carmel-Anderson, IN
3431                      Phoenix-Mesa-Chandler, AZ
3432                Dallas-Fort Worth-Arlington, TX
3433                Dallas-Fort Worth-Arlington, TX
3434                    Seattle-Tacoma-Bellevue, WA
3435                           Cleveland-Elyria, OH
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3437             Chicago-Naperville-Elgin, IL-IN-WI
3438                Dallas-Fort Worth-Arlington, TX
3439          New York-Newark-Jersey City, NY-NJ-PA
3440                    Seattle-Tacoma-Bellevue, WA
3441                    Seattle-Tacoma-Bellevue, WA
3442             San Francisco-Oakland-Berkeley, CA
3443                                  Anchorage, AK
3444            Portland-Vancouver-Hillsboro, OR-WA
3445               Austin-Round Rock-Georgetown, TX
3446             Los Angeles-Long Beach-Anaheim, CA
3447                  Orlando-Kissimmee-Sanford, FL
3448                    Kahului-Wailuku-Lahaina, HI
3449                    Seattle-Tacoma-Bellevue, WA
3450                                       Hilo, HI
3451                                Albuquerque, NM
3452                Charleston-North Charleston, SC
3453                                     Juneau, AK
3454                                  Ketchikan, AK
3455                       New Orleans-Metairie, LA
3456                    Seattle-Tacoma-Bellevue, WA
3457                                  Anchorage, AK
3458                                       Hilo, HI
3459            Portland-Vancouver-Hillsboro, OR-WA
3460                    San Juan-Bayamón-Caguas, PR
3461                       New Orleans-Metairie, LA
3462            Portland-Vancouver-Hillsboro, OR-WA
3463           Riverside-San Bernardino-Ontario, CA
3464                               Jacksonville, FL
3465        Miami-Fort Lauderdale-Pompano Beach, FL
3466                             Vineyard Haven, MA
3467          Hartford-East Hartford-Middletown, CT
3468         Deltona-Daytona Beach-Ormond Beach, FL
3469                                    Wichita, KS
3470        Minneapolis-St. Paul-Bloomington, MN-WI
3471             San Jose-Sunnyvale-Santa Clara, CA
3472           Atlanta-Sandy Springs-Alpharetta, GA
3473                                           <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA
3475           Atlanta-Sandy Springs-Alpharetta, GA
3476           Atlanta-Sandy Springs-Alpharetta, GA
3477           Atlanta-Sandy Springs-Alpharetta, GA
3478        Minneapolis-St. Paul-Bloomington, MN-WI
3479                             Salt Lake City, UT
3480                             Salt Lake City, UT
3481                              Memphis, TN-MS-AR
3482                    Detroit-Warren-Dearborn, MI
3483             Los Angeles-Long Beach-Anaheim, CA
3484        Minneapolis-St. Paul-Bloomington, MN-WI
3485           Atlanta-Sandy Springs-Alpharetta, GA
3486                                   Billings, MT
3487                    Detroit-Warren-Dearborn, MI
3488                             Salt Lake City, UT
3489           Atlanta-Sandy Springs-Alpharetta, GA
3490             Chicago-Naperville-Elgin, IL-IN-WI
3491                Dallas-Fort Worth-Arlington, TX
3492                                   Billings, MT
3493                                Baton Rouge, LA
3494                                    Jackson, MS
3495              North Port-Sarasota-Bradenton, FL
3496        Miami-Fort Lauderdale-Pompano Beach, FL
3497                          Birmingham-Hoover, AL
3498                  Orlando-Kissimmee-Sanford, FL
3499                                Columbus, GA-AL
3500                Burlington-South Burlington, VT
3501              Charlotte-Concord-Gastonia, NC-SC
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3503         Deltona-Daytona Beach-Ormond Beach, FL
3504                     Denver-Aurora-Lakewood, CO
3505        Minneapolis-St. Paul-Bloomington, MN-WI
3506                                   Bismarck, ND
3507                             Grand Junction, CO
3508                San Luis Obispo-Paso Robles, CA
3509                                  Knoxville, TN
3510                           Glenwood Springs, CO
3511                                    Durango, CO
3512                             Grand Junction, CO
3513        Minneapolis-St. Paul-Bloomington, MN-WI
3514        Minneapolis-St. Paul-Bloomington, MN-WI
3515                    Detroit-Warren-Dearborn, MI
3516                           Cleveland-Elyria, OH
3517                                  Kalispell, MT
3518                             Salt Lake City, UT
3519                        Harrisburg-Carlisle, PA
3520                                     Hailey, ID
3521           Riverside-San Bernardino-Ontario, CA
3522                        Santa Rosa-Petaluma, CA
3523                                    Edwards, CO
3524                        Santa Rosa-Petaluma, CA
3525             Chicago-Naperville-Elgin, IL-IN-WI
3526                Dallas-Fort Worth-Arlington, TX
3527                                 Jackson, WY-ID
3528             San Diego-Chula Vista-Carlsbad, CA
3529                                   Billings, MT
3530                         Eugene-Springfield, OR
3531                                   Missoula, MT
3532                              Oklahoma City, OK
3533                    Omaha-Council Bluffs, NE-IA
3534                      Phoenix-Mesa-Chandler, AZ
3535                                 Boise City, ID
3536             San Diego-Chula Vista-Carlsbad, CA
3537                                    El Paso, TX
3538                  Santa Maria-Santa Barbara, CA
3539                                   Richmond, VA
3540                  San Antonio-New Braunfels, TX
3541                                           <NA>
3542                    San Juan-Bayamón-Caguas, PR
3543           Houston-The Woodlands-Sugar Land, TX
3544                     Denver-Aurora-Lakewood, CO
3545                     Denver-Aurora-Lakewood, CO
3546                Burlington-South Burlington, VT
3547           Houston-The Woodlands-Sugar Land, TX
3548             San Francisco-Oakland-Berkeley, CA
3549                                       Hilo, HI
3550                                      Kapaa, HI
3551                             Urban Honolulu, HI
3552             Chicago-Naperville-Elgin, IL-IN-WI
3553                     Denver-Aurora-Lakewood, CO
3554                    Seattle-Tacoma-Bellevue, WA
3555              North Port-Sarasota-Bradenton, FL
3556                                   Columbus, OH
3557                  Orlando-Kissimmee-Sanford, FL
3558             San Diego-Chula Vista-Carlsbad, CA
3559                                    El Paso, TX
3560                    Kahului-Wailuku-Lahaina, HI
3561               Austin-Round Rock-Georgetown, TX
3562                    Kahului-Wailuku-Lahaina, HI
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3564             San Diego-Chula Vista-Carlsbad, CA
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV
3566                             Kansas City, MO-KS
3567               Indianapolis-Carmel-Anderson, IN
3568                                    Midland, TX
3569                      Phoenix-Mesa-Chandler, AZ
3570               Indianapolis-Carmel-Anderson, IN
3571              Charlotte-Concord-Gastonia, NC-SC
3572                             Kansas City, MO-KS
3573              Allentown-Bethlehem-Easton, PA-NJ
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3575                        Buffalo-Cheektowaga, NY
3576                                    Durango, CO
3577           Houston-The Woodlands-Sugar Land, TX
3578                                Springfield, MO
3579             Los Angeles-Long Beach-Anaheim, CA
3580                                Bloomington, IL
3581                              Evansville, IN-KY
3582                    Detroit-Warren-Dearborn, MI
3583                                   Syracuse, NY
3584                            Charlottesville, VA
3585                                    Madison, WI
3586                                    Madison, WI
3587             Fayetteville-Springdale-Rogers, AR
3588                    Detroit-Warren-Dearborn, MI
3589           Atlanta-Sandy Springs-Alpharetta, GA
3590                Dallas-Fort Worth-Arlington, TX
3591                Dallas-Fort Worth-Arlington, TX
3592                                   Richmond, VA
3593                Dallas-Fort Worth-Arlington, TX
3594                Dallas-Fort Worth-Arlington, TX
3595               Austin-Round Rock-Georgetown, TX
3596                                    Bozeman, MT
3597                    Omaha-Council Bluffs, NE-IA
3598                      Phoenix-Mesa-Chandler, AZ
3599                Dallas-Fort Worth-Arlington, TX
3600                Dallas-Fort Worth-Arlington, TX
3601                Dallas-Fort Worth-Arlington, TX
3602                                       Hilo, HI
3603             Chicago-Naperville-Elgin, IL-IN-WI
3604                Dallas-Fort Worth-Arlington, TX
3605              Charlotte-Concord-Gastonia, NC-SC
3606                      Phoenix-Mesa-Chandler, AZ
3607               Austin-Round Rock-Georgetown, TX
3608            Portland-Vancouver-Hillsboro, OR-WA
3609            Portland-Vancouver-Hillsboro, OR-WA
3610                                  Anchorage, AK
3611                                     Tucson, AZ
3612                                       Hilo, HI
3613           Riverside-San Bernardino-Ontario, CA
3614                     Spokane-Spokane Valley, WA
3615                                           <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA
3617                                    Bozeman, MT
3618                Sacramento-Roseville-Folsom, CA
3619                                   Syracuse, NY
3620             Fayetteville-Springdale-Rogers, AR
3621                    Detroit-Warren-Dearborn, MI
3622                                 Boise City, ID
3623           Atlanta-Sandy Springs-Alpharetta, GA
3624        Miami-Fort Lauderdale-Pompano Beach, FL
3625                             Chattanooga, TN-GA
3626                      College Station-Bryan, TX
3627                              Evansville, IN-KY
3628                                     Mobile, AL
3629        Miami-Fort Lauderdale-Pompano Beach, FL
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV
3631             Louisville/Jefferson County, KY-IN
3632                Dallas-Fort Worth-Arlington, TX
3633        Miami-Fort Lauderdale-Pompano Beach, FL
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV
3635                    Omaha-Council Bluffs, NE-IA
3636                 Pensacola-Ferry Pass-Brent, FL
3637              Charlotte-Concord-Gastonia, NC-SC
3638              Charlotte-Concord-Gastonia, NC-SC
3639                                  Knoxville, TN
3640             San Francisco-Oakland-Berkeley, CA
3641                             Salt Lake City, UT
3642                    South Bend-Mishawaka, IN-MI
3643                      Grand Rapids-Kentwood, MI
3644                              Memphis, TN-MS-AR
3645     Virginia Beach-Norfolk-Newport News, VA-NC
3646             San Diego-Chula Vista-Carlsbad, CA
3647                                 Rapid City, SD
3648                           Glenwood Springs, CO
3649                     Denver-Aurora-Lakewood, CO
3650                                   Montrose, CO
3651           Riverside-San Bernardino-Ontario, CA
3652                                    Medford, OR
3653                                       Bend, OR
3654                                      Tulsa, OK
3655                    Seattle-Tacoma-Bellevue, WA
3656                  Santa Maria-Santa Barbara, CA
3657                        Santa Rosa-Petaluma, CA
3658                                 Jackson, WY-ID
3659          New York-Newark-Jersey City, NY-NJ-PA
3660            Portland-Vancouver-Hillsboro, OR-WA
3661           Houston-The Woodlands-Sugar Land, TX
3662                     Denver-Aurora-Lakewood, CO
3663          New York-Newark-Jersey City, NY-NJ-PA
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV
3665           Houston-The Woodlands-Sugar Land, TX
3666                                       Reno, NV
3667               Austin-Round Rock-Georgetown, TX
3668           Houston-The Woodlands-Sugar Land, TX
3669                         Milwaukee-Waukesha, WI
3670             San Jose-Sunnyvale-Santa Clara, CA
3671                    Kahului-Wailuku-Lahaina, HI
3672                                Albuquerque, NM
3673                                      Kapaa, HI
3674                                 Pittsburgh, PA
3675               Las Vegas-Henderson-Paradise, NV
3676             Chicago-Naperville-Elgin, IL-IN-WI
3677                                       Hilo, HI
3678                  San Antonio-New Braunfels, TX
3679                                 Huntsville, AL
3680                      Phoenix-Mesa-Chandler, AZ
3681                      Phoenix-Mesa-Chandler, AZ
3682                      Grand Rapids-Kentwood, MI
3683                                Spartanburg, SC
3684                Dallas-Fort Worth-Arlington, TX
3685           Houston-The Woodlands-Sugar Land, TX
3686                           Cleveland-Elyria, OH
3687                                   Savannah, GA
3688                    South Bend-Mishawaka, IN-MI
3689          New York-Newark-Jersey City, NY-NJ-PA
3690          Hartford-East Hartford-Middletown, CT
3691                           Dayton-Kettering, OH
3692                                     Mobile, AL
3693                                  Knoxville, TN
3694                           Dayton-Kettering, OH
3695     Virginia Beach-Norfolk-Newport News, VA-NC
3696                                  Knoxville, TN
3697           Houston-The Woodlands-Sugar Land, TX
3698                                   Columbia, SC
3699          New York-Newark-Jersey City, NY-NJ-PA
3700                Dallas-Fort Worth-Arlington, TX
3701                Dallas-Fort Worth-Arlington, TX
3702                 Des Moines-West Des Moines, IA
3703             San Diego-Chula Vista-Carlsbad, CA
3704                Dallas-Fort Worth-Arlington, TX
3705                Charleston-North Charleston, SC
3706                                   Key West, FL
3707                                Spartanburg, SC
3708                                           <NA>
3709                             Urban Honolulu, HI
3710               Indianapolis-Carmel-Anderson, IN
3711                              Oklahoma City, OK
3712                  San Antonio-New Braunfels, TX
3713                  Santa Maria-Santa Barbara, CA
3714                Dallas-Fort Worth-Arlington, TX
3715                                 Jackson, WY-ID
3716             Los Angeles-Long Beach-Anaheim, CA
3717             Chicago-Naperville-Elgin, IL-IN-WI
3718             Chicago-Naperville-Elgin, IL-IN-WI
3719          Hartford-East Hartford-Middletown, CT
3720        Miami-Fort Lauderdale-Pompano Beach, FL
3721                Dallas-Fort Worth-Arlington, TX
3722               Austin-Round Rock-Georgetown, TX
3723              Charlotte-Concord-Gastonia, NC-SC
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3725                                           <NA>
3726                                     Juneau, AK
3727                                  Anchorage, AK
3728                                  Rochester, NY
3729        Miami-Fort Lauderdale-Pompano Beach, FL
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV
3731          New York-Newark-Jersey City, NY-NJ-PA
3732                                    Madison, WI
3733                    Detroit-Warren-Dearborn, MI
3734                      Providence-Warwick, RI-MA
3735                                   Syracuse, NY
3736                                  Lafayette, LA
3737                                Tallahassee, FL
3738        Miami-Fort Lauderdale-Pompano Beach, FL
3739                  Orlando-Kissimmee-Sanford, FL
3740              Charlotte-Concord-Gastonia, NC-SC
3741                               Cedar Rapids, IA
3742                              Memphis, TN-MS-AR
3743                        Buffalo-Cheektowaga, NY
3744                      Grand Rapids-Kentwood, MI
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV
3747                                  Manhattan, KS
3748                                     Tucson, AZ
3749                                   Montrose, CO
3750                     Denver-Aurora-Lakewood, CO
3751                     Scranton--Wilkes-Barre, PA
3752                                   Syracuse, NY
3753                                 Jackson, WY-ID
3754                                    Roswell, NM
3755                     Denver-Aurora-Lakewood, CO
3756                                    Bozeman, MT
3757                             Grand Junction, CO
3758                                  Anchorage, AK
3759             Chicago-Naperville-Elgin, IL-IN-WI
3760           Houston-The Woodlands-Sugar Land, TX
3761                Sacramento-Roseville-Folsom, CA
3762                                Albuquerque, NM
3763                             Urban Honolulu, HI
3764                               Raleigh-Cary, NC
3765                  Baltimore-Columbia-Towson, MD
3766             San Diego-Chula Vista-Carlsbad, CA
3767             San Jose-Sunnyvale-Santa Clara, CA
3768                                Albuquerque, NM
3769              North Port-Sarasota-Bradenton, FL
3770                    Albany-Schenectady-Troy, NY
3771                     Denver-Aurora-Lakewood, CO
3772            Tampa-St. Petersburg-Clearwater, FL
3773                             Salt Lake City, UT
3774                          Birmingham-Hoover, AL
3775                                   Columbus, OH
3776             Louisville/Jefferson County, KY-IN
3777                        Buffalo-Cheektowaga, NY
3778                  San Antonio-New Braunfels, TX
3779                      Phoenix-Mesa-Chandler, AZ
3780                                   Columbus, OH
3781            Portland-Vancouver-Hillsboro, OR-WA
3782                  Orlando-Kissimmee-Sanford, FL
3783            Tampa-St. Petersburg-Clearwater, FL
3784            Tampa-St. Petersburg-Clearwater, FL
3785                Dallas-Fort Worth-Arlington, TX
3786             Chicago-Naperville-Elgin, IL-IN-WI
3787                        Buffalo-Cheektowaga, NY
3788             Louisville/Jefferson County, KY-IN
3789        Miami-Fort Lauderdale-Pompano Beach, FL
3790                Dallas-Fort Worth-Arlington, TX
3791           Houston-The Woodlands-Sugar Land, TX
3792                               St. Louis, MO-IL
3793                Sacramento-Roseville-Folsom, CA
3794                               Cedar Rapids, IA
3795                                   Fargo, ND-MN
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV
3797           Houston-The Woodlands-Sugar Land, TX
3798                               Cedar Rapids, IA
3799                                   Fargo, ND-MN
3800                      Grand Rapids-Kentwood, MI
3801                           Dayton-Kettering, OH
3802                                 Pittsburgh, PA
3803                                    Roanoke, VA
3804                                 Huntsville, AL
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3807             Chicago-Naperville-Elgin, IL-IN-WI
3808              Charlotte-Concord-Gastonia, NC-SC
3809          New York-Newark-Jersey City, NY-NJ-PA
3810                  Orlando-Kissimmee-Sanford, FL
3811          New York-Newark-Jersey City, NY-NJ-PA
3812                               Worcester, MA-CT
3813                               Worcester, MA-CT
3814        Miami-Fort Lauderdale-Pompano Beach, FL
3815          New York-Newark-Jersey City, NY-NJ-PA
3816                                           <NA>
3817                    San Juan-Bayamón-Caguas, PR
3818           Atlanta-Sandy Springs-Alpharetta, GA
3819                  Orlando-Kissimmee-Sanford, FL
3820                      Cape Coral-Fort Myers, FL
3821                                Sioux Falls, SD
3822                      Brownsville-Harlingen, TX
3823           Riverside-San Bernardino-Ontario, CA
3824               Las Vegas-Henderson-Paradise, NV
3825               Las Vegas-Henderson-Paradise, NV
3826               Las Vegas-Henderson-Paradise, NV
3827                  Orlando-Kissimmee-Sanford, FL
3828                  Orlando-Kissimmee-Sanford, FL
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3830                      Cape Coral-Fort Myers, FL
3831                               St. Louis, MO-IL
3832                           Cleveland-Elyria, OH
3833           Riverside-San Bernardino-Ontario, CA
3834                          Trenton-Princeton, NJ
3835          New York-Newark-Jersey City, NY-NJ-PA
3836                  Orlando-Kissimmee-Sanford, FL
3837                      Cape Coral-Fort Myers, FL
3838          Hartford-East Hartford-Middletown, CT
3839                          Trenton-Princeton, NJ
3840          New York-Newark-Jersey City, NY-NJ-PA
3841                  Orlando-Kissimmee-Sanford, FL
3842            Tampa-St. Petersburg-Clearwater, FL
3843            Tampa-St. Petersburg-Clearwater, FL
3844                      Grand Rapids-Kentwood, MI
3845           Atlanta-Sandy Springs-Alpharetta, GA
3846             Chicago-Naperville-Elgin, IL-IN-WI
3847        Miami-Fort Lauderdale-Pompano Beach, FL
3848            Tampa-St. Petersburg-Clearwater, FL
3849        Miami-Fort Lauderdale-Pompano Beach, FL
3850        Miami-Fort Lauderdale-Pompano Beach, FL
3851            Tampa-St. Petersburg-Clearwater, FL
3852                      Cape Coral-Fort Myers, FL
3853             Los Angeles-Long Beach-Anaheim, CA
3854                    Atlantic City-Hammonton, NJ
3855             Louisville/Jefferson County, KY-IN
3856                 Pensacola-Ferry Pass-Brent, FL
3857                           Cleveland-Elyria, OH
3858                                 Pittsburgh, PA
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3861                    Atlantic City-Hammonton, NJ
3862                          Manchester-Nashua, NH
3863                                           <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA
3865                                 Pittsburgh, PA
3866          New York-Newark-Jersey City, NY-NJ-PA
3867                  Orlando-Kissimmee-Sanford, FL
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3870                    Atlantic City-Hammonton, NJ
3871                                 Pittsburgh, PA
3872        Miami-Fort Lauderdale-Pompano Beach, FL
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV
3874                                    Salinas, CA
3875                                Bakersfield, CA
3876                                   Billings, MT
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV
3878                             Kansas City, MO-KS
3879           Houston-The Woodlands-Sugar Land, TX
3880             Chicago-Naperville-Elgin, IL-IN-WI
3881                             Urban Honolulu, HI
3882                              Oklahoma City, OK
3883          New York-Newark-Jersey City, NY-NJ-PA
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV
3885        Minneapolis-St. Paul-Bloomington, MN-WI
3886                                  Asheville, NC
3887               Indianapolis-Carmel-Anderson, IN
3888        Miami-Fort Lauderdale-Pompano Beach, FL
3889        Minneapolis-St. Paul-Bloomington, MN-WI
3890        Minneapolis-St. Paul-Bloomington, MN-WI
3891                                    Lubbock, TX
3892                                           <NA>
3893                                    Edwards, CO
3894            Portland-Vancouver-Hillsboro, OR-WA
3895                             Salt Lake City, UT
3896                                   Richmond, VA
3897                                       Hilo, HI
3898                               St. Louis, MO-IL
3899                                  Rochester, MN
3900                                  Green Bay, WI
3901                             Kansas City, MO-KS
3902                              Oklahoma City, OK
3903              North Port-Sarasota-Bradenton, FL
3904             Fayetteville-Springdale-Rogers, AR
3905                 Des Moines-West Des Moines, IA
3906                                           <NA>
3907                                  Anchorage, AK
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV
3909          New York-Newark-Jersey City, NY-NJ-PA
3910          New York-Newark-Jersey City, NY-NJ-PA
3911                           Cincinnati, OH-KY-IN
3912                                    El Paso, TX
3913                                  Rochester, NY
3914                           Cincinnati, OH-KY-IN
3915                             Salt Lake City, UT
3916        Minneapolis-St. Paul-Bloomington, MN-WI
3917     Virginia Beach-Norfolk-Newport News, VA-NC
3918                Dallas-Fort Worth-Arlington, TX
3919                Dallas-Fort Worth-Arlington, TX
3920              Charlotte-Concord-Gastonia, NC-SC
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV
3922     Virginia Beach-Norfolk-Newport News, VA-NC
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3924                                Spartanburg, SC
3925                                    Madison, WI
3926     Virginia Beach-Norfolk-Newport News, VA-NC
3927                     Denver-Aurora-Lakewood, CO
3928                           Glenwood Springs, CO
3929                                  Kalispell, MT
3930                                    Medford, OR
3931                                      Minot, ND
3932                                Idaho Falls, ID
3933                                   Santa Fe, NM
3934                                    Medford, OR
3935             San Francisco-Oakland-Berkeley, CA
3936             Los Angeles-Long Beach-Anaheim, CA
3937                     Denver-Aurora-Lakewood, CO
3938           Houston-The Woodlands-Sugar Land, TX
3939               Indianapolis-Carmel-Anderson, IN
3940             Los Angeles-Long Beach-Anaheim, CA
3941               Las Vegas-Henderson-Paradise, NV
3942                      Phoenix-Mesa-Chandler, AZ
3943                               Jacksonville, FL
3944           Houston-The Woodlands-Sugar Land, TX
3945                Dallas-Fort Worth-Arlington, TX
3946                          Steamboat Springs, CO
3947                               Raleigh-Cary, NC
3948                      Cape Coral-Fort Myers, FL
3949                                      Tulsa, OK
3950           Houston-The Woodlands-Sugar Land, TX
3951                      Phoenix-Mesa-Chandler, AZ
3952                      Phoenix-Mesa-Chandler, AZ
3953                                Bloomington, IL
3954        Miami-Fort Lauderdale-Pompano Beach, FL
3955                Hilton Head Island-Bluffton, SC
3956          New York-Newark-Jersey City, NY-NJ-PA
3957                                   Key West, FL
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV
3959                         Milwaukee-Waukesha, WI
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV
3961           Atlanta-Sandy Springs-Alpharetta, GA
3962                Dallas-Fort Worth-Arlington, TX
3963              Charlotte-Concord-Gastonia, NC-SC
3964              Charlotte-Concord-Gastonia, NC-SC
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV
3967                Dallas-Fort Worth-Arlington, TX
3968               Austin-Round Rock-Georgetown, TX
3969          New York-Newark-Jersey City, NY-NJ-PA
3970        Miami-Fort Lauderdale-Pompano Beach, FL
3971                                      Tulsa, OK
3972                Dallas-Fort Worth-Arlington, TX
3973             Chicago-Naperville-Elgin, IL-IN-WI
3974                      Phoenix-Mesa-Chandler, AZ
3975              Charlotte-Concord-Gastonia, NC-SC
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3978              Charlotte-Concord-Gastonia, NC-SC
3979              Charlotte-Concord-Gastonia, NC-SC
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV
3981             Chicago-Naperville-Elgin, IL-IN-WI
3982                                   Columbus, OH
3983                Dallas-Fort Worth-Arlington, TX
3984              Charlotte-Concord-Gastonia, NC-SC
3985              Charlotte-Concord-Gastonia, NC-SC
3986                    Seattle-Tacoma-Bellevue, WA
3987            Portland-Vancouver-Hillsboro, OR-WA
3988            Portland-Vancouver-Hillsboro, OR-WA
3989                        Buffalo-Cheektowaga, NY
3990          New York-Newark-Jersey City, NY-NJ-PA
3991        Miami-Fort Lauderdale-Pompano Beach, FL
3992          New York-Newark-Jersey City, NY-NJ-PA
3993             Louisville/Jefferson County, KY-IN
3994                    Detroit-Warren-Dearborn, MI
3995                    Detroit-Warren-Dearborn, MI
3996        Minneapolis-St. Paul-Bloomington, MN-WI
3997           Atlanta-Sandy Springs-Alpharetta, GA
3998                           Cincinnati, OH-KY-IN
3999                    Detroit-Warren-Dearborn, MI
4000                    Detroit-Warren-Dearborn, MI
4001                    San Juan-Bayamón-Caguas, PR
4002                                   Syracuse, NY
4003                                      Tulsa, OK
4004             San Diego-Chula Vista-Carlsbad, CA
4005             Los Angeles-Long Beach-Anaheim, CA
4006                      Cape Coral-Fort Myers, FL
4007                Sacramento-Roseville-Folsom, CA
4008            Davenport-Moline-Rock Island, IA-IL
4009                          Birmingham-Hoover, AL
4010                                  Knoxville, TN
4011                                     Tucson, AZ
4012            Portland-Vancouver-Hillsboro, OR-WA
4013               Indianapolis-Carmel-Anderson, IN
4014             San Diego-Chula Vista-Carlsbad, CA
4015                 Augusta-Richmond County, GA-SC
4016          Hartford-East Hartford-Middletown, CT
4017                               Raleigh-Cary, NC
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4019                                   Key West, FL
4020               Indianapolis-Carmel-Anderson, IN
4021                                  Anchorage, AK
4022             Fayetteville-Springdale-Rogers, AR
4023                Charleston-North Charleston, SC
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV
4025                    Albany-Schenectady-Troy, NY
4026                                    Roanoke, VA
4027           Houston-The Woodlands-Sugar Land, TX
4028        Miami-Fort Lauderdale-Pompano Beach, FL
4029           Houston-The Woodlands-Sugar Land, TX
4030             San Jose-Sunnyvale-Santa Clara, CA
4031 Nashville-Davidson--Murfreesboro--Franklin, TN
4032                Dallas-Fort Worth-Arlington, TX
4033                                       Hilo, HI
4034                                 Pittsburgh, PA
4035                    Shreveport-Bossier City, LA
4036        Minneapolis-St. Paul-Bloomington, MN-WI
4037          New York-Newark-Jersey City, NY-NJ-PA
4038        Miami-Fort Lauderdale-Pompano Beach, FL
4039                                  Flagstaff, AZ
4040                                    Bozeman, MT
4041                     Denver-Aurora-Lakewood, CO
4042              Charlotte-Concord-Gastonia, NC-SC
4043                                 Pittsburgh, PA
4044                Charleston-North Charleston, SC
4045             San Jose-Sunnyvale-Santa Clara, CA
4046                  Orlando-Kissimmee-Sanford, FL
4047                                      Ponce, PR
4048                                    Jackson, MS
4049                      Grand Rapids-Kentwood, MI
4050                  San Antonio-New Braunfels, TX
4051            Portland-Vancouver-Hillsboro, OR-WA
4052                                  Anchorage, AK
4053                                     Juneau, AK
4054                                Spartanburg, SC
4055                             Salt Lake City, UT
4056                                 Wilmington, NC
4057                    San Juan-Bayamón-Caguas, PR
4058                               St. Louis, MO-IL
4059                               Jacksonville, FL
4060                                   Savannah, GA
4061                                       Reno, NV
4062                               St. Louis, MO-IL
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4064                           Colorado Springs, CO
4065             San Jose-Sunnyvale-Santa Clara, CA
4066        Miami-Fort Lauderdale-Pompano Beach, FL
4067                                           <NA>
4068                 Boston-Cambridge-Newton, MA-NH
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV
4070             Los Angeles-Long Beach-Anaheim, CA
4071                  Baltimore-Columbia-Towson, MD
4072          New York-Newark-Jersey City, NY-NJ-PA
4073                 Boston-Cambridge-Newton, MA-NH
4074                          Steamboat Springs, CO
4075          New York-Newark-Jersey City, NY-NJ-PA
4076           Atlanta-Sandy Springs-Alpharetta, GA
4077                              Memphis, TN-MS-AR
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4079                                Springfield, MO
4080        Miami-Fort Lauderdale-Pompano Beach, FL
4081                          Birmingham-Hoover, AL
4082                Burlington-South Burlington, VT
4083              Charlotte-Concord-Gastonia, NC-SC
4084                    Portland-South Portland, ME
4085                Dallas-Fort Worth-Arlington, TX
4086                                Columbus, GA-AL
4087                                      Tulsa, OK
4088           Houston-The Woodlands-Sugar Land, TX
4089               Indianapolis-Carmel-Anderson, IN
4090                                 Pittsburgh, PA
4091                      Phoenix-Mesa-Chandler, AZ
4092                    Portland-South Portland, ME
4093               Austin-Round Rock-Georgetown, TX
4094              North Port-Sarasota-Bradenton, FL
4095                                    Wichita, KS
4096        Minneapolis-St. Paul-Bloomington, MN-WI
4097                                Bloomington, IL
4098                  Orlando-Kissimmee-Sanford, FL
4099           Atlanta-Sandy Springs-Alpharetta, GA
4100                              Memphis, TN-MS-AR
4101                                 Huntsville, AL
4102                                    Madison, WI
4103                 Pensacola-Ferry Pass-Brent, FL
4104           Poughkeepsie-Newburgh-Middletown, NY
4105                      Providence-Warwick, RI-MA
4106                  Orlando-Kissimmee-Sanford, FL
4107                      Cape Coral-Fort Myers, FL
4108                    Detroit-Warren-Dearborn, MI
4109                  San Antonio-New Braunfels, TX
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV
4111        Miami-Fort Lauderdale-Pompano Beach, FL
4112                                  Ketchikan, AK
4113                                  Anchorage, AK
4114           Riverside-San Bernardino-Ontario, CA
4115                 Boston-Cambridge-Newton, MA-NH
4116             Los Angeles-Long Beach-Anaheim, CA
4117                             Salt Lake City, UT
4118           Atlanta-Sandy Springs-Alpharetta, GA
4119                             Salt Lake City, UT
4120                             Salt Lake City, UT
4121           Atlanta-Sandy Springs-Alpharetta, GA
4122                           Cincinnati, OH-KY-IN
4123                                Springfield, MO
4124                                    Jackson, MS
4125                 Pensacola-Ferry Pass-Brent, FL
4126                      Providence-Warwick, RI-MA
4127               Indianapolis-Carmel-Anderson, IN
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV
4129                                   Columbia, MO
4130                                  Marquette, MI
4131        Minneapolis-St. Paul-Bloomington, MN-WI
4132                                 Jackson, WY-ID
4133                Dallas-Fort Worth-Arlington, TX
4134                     Denver-Aurora-Lakewood, CO
4135                      Grand Rapids-Kentwood, MI
4136        Minneapolis-St. Paul-Bloomington, MN-WI
4137                     Denver-Aurora-Lakewood, CO
4138           Houston-The Woodlands-Sugar Land, TX
4139                    Kahului-Wailuku-Lahaina, HI
4140                                       Hilo, HI
4141                           Colorado Springs, CO
4142             Chicago-Naperville-Elgin, IL-IN-WI
4143             Chicago-Naperville-Elgin, IL-IN-WI
4144                Sacramento-Roseville-Folsom, CA
4145             Los Angeles-Long Beach-Anaheim, CA
4146                          Birmingham-Hoover, AL
4147                               Jacksonville, FL
4148 Nashville-Davidson--Murfreesboro--Franklin, TN
4149                      Providence-Warwick, RI-MA
4150                                Sioux Falls, SD
4151                          Lexington-Fayette, KY
4152           Houston-The Woodlands-Sugar Land, TX
4153           Houston-The Woodlands-Sugar Land, TX
4154                                 Jackson, WY-ID
4155                             Urban Honolulu, HI
4156     Virginia Beach-Norfolk-Newport News, VA-NC
4157                                     Bangor, ME
4158                Burlington-South Burlington, VT
4159                                  Rochester, NY
4160                                   Syracuse, NY
4161                 Boston-Cambridge-Newton, MA-NH
4162              Charlotte-Concord-Gastonia, NC-SC
4163                                   Amarillo, TX
4164             Chicago-Naperville-Elgin, IL-IN-WI
4165                Dallas-Fort Worth-Arlington, TX
4166              Charlotte-Concord-Gastonia, NC-SC
4167               Austin-Round Rock-Georgetown, TX
4168        Miami-Fort Lauderdale-Pompano Beach, FL
4169                             Kansas City, MO-KS
4170                              Memphis, TN-MS-AR
4171                               St. Louis, MO-IL
4172              Charlotte-Concord-Gastonia, NC-SC
4173                Dallas-Fort Worth-Arlington, TX
4174                                    El Paso, TX
4175                Dallas-Fort Worth-Arlington, TX
4176    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4177             Chicago-Naperville-Elgin, IL-IN-WI
4178                Dallas-Fort Worth-Arlington, TX
4179    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4180              Charlotte-Concord-Gastonia, NC-SC
4181    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4182    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4183                Dallas-Fort Worth-Arlington, TX
4184            Portland-Vancouver-Hillsboro, OR-WA
4185                    Seattle-Tacoma-Bellevue, WA
4186                                   Syracuse, NY
4187                    Albany-Schenectady-Troy, NY
4188                Charleston-North Charleston, SC
4189            Portland-Vancouver-Hillsboro, OR-WA
4190        Miami-Fort Lauderdale-Pompano Beach, FL
4191                Charleston-North Charleston, SC
4192               Las Vegas-Henderson-Paradise, NV
4193                                   Richmond, VA
4194        Miami-Fort Lauderdale-Pompano Beach, FL
4195               Las Vegas-Henderson-Paradise, NV
4196                 Boston-Cambridge-Newton, MA-NH
4197                    Detroit-Warren-Dearborn, MI
4198        Minneapolis-St. Paul-Bloomington, MN-WI
4199        Minneapolis-St. Paul-Bloomington, MN-WI
4200                    Detroit-Warren-Dearborn, MI
4201                                  Fairbanks, AK
4202                    Detroit-Warren-Dearborn, MI
4203           Atlanta-Sandy Springs-Alpharetta, GA
4204          New York-Newark-Jersey City, NY-NJ-PA
4205                               Raleigh-Cary, NC
4206                      Grand Rapids-Kentwood, MI
4207    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4208        Miami-Fort Lauderdale-Pompano Beach, FL
4209                  Orlando-Kissimmee-Sanford, FL
4210                                   Syracuse, NY
4211   Washington-Arlington-Alexandria, DC-VA-MD-WV
4212             Chicago-Naperville-Elgin, IL-IN-WI
4213               Austin-Round Rock-Georgetown, TX
4214                            Gulfport-Biloxi, MS
4215                                    Midland, TX
4216                Dallas-Fort Worth-Arlington, TX
4217                Dallas-Fort Worth-Arlington, TX
4218                          Lexington-Fayette, KY
4219                             Grand Junction, CO
4220        Miami-Fort Lauderdale-Pompano Beach, FL
4221                    San Juan-Bayamón-Caguas, PR
4222                                           <NA>
4223            Tampa-St. Petersburg-Clearwater, FL
4224                    San Juan-Bayamón-Caguas, PR
4225          New York-Newark-Jersey City, NY-NJ-PA
4226                    Atlantic City-Hammonton, NJ
4227              Charlotte-Concord-Gastonia, NC-SC
4228   Washington-Arlington-Alexandria, DC-VA-MD-WV
4229                       Lansing-East Lansing, MI
4230                                 Pittsburgh, PA
4231              Charlotte-Concord-Gastonia, NC-SC
4232   Washington-Arlington-Alexandria, DC-VA-MD-WV
4233   Washington-Arlington-Alexandria, DC-VA-MD-WV
4234           Houston-The Woodlands-Sugar Land, TX
4235                      Phoenix-Mesa-Chandler, AZ
4236           Houston-The Woodlands-Sugar Land, TX
4237             San Francisco-Oakland-Berkeley, CA
4238                     Denver-Aurora-Lakewood, CO
4239                             Corpus Christi, TX
4240                         Eugene-Springfield, OR
4241                                       Bend, OR
4242           Houston-The Woodlands-Sugar Land, TX
4243             Chicago-Naperville-Elgin, IL-IN-WI
4244                                      Flint, MI
4245                                 Huntsville, AL
4246                      Providence-Warwick, RI-MA
4247                San Luis Obispo-Paso Robles, CA
4248                      Phoenix-Mesa-Chandler, AZ
4249                                       Bend, OR
4250                                       Reno, NV
4251           Houston-The Woodlands-Sugar Land, TX
4252                    Seattle-Tacoma-Bellevue, WA
4253                    Seattle-Tacoma-Bellevue, WA
4254             Los Angeles-Long Beach-Anaheim, CA
4255          New York-Newark-Jersey City, NY-NJ-PA
4256   Washington-Arlington-Alexandria, DC-VA-MD-WV
4257          New York-Newark-Jersey City, NY-NJ-PA
4258             Chicago-Naperville-Elgin, IL-IN-WI
4259                           Cleveland-Elyria, OH
4260                     Denver-Aurora-Lakewood, CO
4261                     Denver-Aurora-Lakewood, CO
4262             Chicago-Naperville-Elgin, IL-IN-WI
4263   Washington-Arlington-Alexandria, DC-VA-MD-WV
4264   Washington-Arlington-Alexandria, DC-VA-MD-WV
4265             San Francisco-Oakland-Berkeley, CA
4266                     Denver-Aurora-Lakewood, CO
4267   Washington-Arlington-Alexandria, DC-VA-MD-WV
4268           Houston-The Woodlands-Sugar Land, TX
4269             San Francisco-Oakland-Berkeley, CA
4270             San Francisco-Oakland-Berkeley, CA
4271                     Denver-Aurora-Lakewood, CO
4272   Washington-Arlington-Alexandria, DC-VA-MD-WV
4273             Chicago-Naperville-Elgin, IL-IN-WI
4274                      Phoenix-Mesa-Chandler, AZ
4275             Chicago-Naperville-Elgin, IL-IN-WI
4276                Dallas-Fort Worth-Arlington, TX
4277              Charlotte-Concord-Gastonia, NC-SC
4278        Miami-Fort Lauderdale-Pompano Beach, FL
4279                               St. Louis, MO-IL
4280                    Detroit-Warren-Dearborn, MI
4281                               St. Louis, MO-IL
4282                           Colorado Springs, CO
4283             San Diego-Chula Vista-Carlsbad, CA
4284             Chicago-Naperville-Elgin, IL-IN-WI
4285                Dallas-Fort Worth-Arlington, TX
4286           Houston-The Woodlands-Sugar Land, TX
4287             Los Angeles-Long Beach-Anaheim, CA
4288                     Denver-Aurora-Lakewood, CO
4289                  Baltimore-Columbia-Towson, MD
4290             Los Angeles-Long Beach-Anaheim, CA
4291                Dallas-Fort Worth-Arlington, TX
4292             Los Angeles-Long Beach-Anaheim, CA
4293             Los Angeles-Long Beach-Anaheim, CA
4294             Los Angeles-Long Beach-Anaheim, CA
4295                      Phoenix-Mesa-Chandler, AZ
4296             Los Angeles-Long Beach-Anaheim, CA
4297               Austin-Round Rock-Georgetown, TX
4298   Washington-Arlington-Alexandria, DC-VA-MD-WV
4299           Houston-The Woodlands-Sugar Land, TX
4300  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4301                                    Jackson, MS
4302              North Port-Sarasota-Bradenton, FL
4303   Washington-Arlington-Alexandria, DC-VA-MD-WV
4304           Houston-The Woodlands-Sugar Land, TX
4305                                    Bozeman, MT
4306           Houston-The Woodlands-Sugar Land, TX
4307         Crestview-Fort Walton Beach-Destin, FL
4308   Washington-Arlington-Alexandria, DC-VA-MD-WV
4309                                   Richmond, VA
4310                                 Wilmington, NC
4311    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4312                               Raleigh-Cary, NC
4313   Washington-Arlington-Alexandria, DC-VA-MD-WV
4314                                  Asheville, NC
4315                           Dayton-Kettering, OH
4316                                       Erie, PA
4317                      Grand Rapids-Kentwood, MI
4318                      Cape Coral-Fort Myers, FL
4319                      Cape Coral-Fort Myers, FL
4320                      Phoenix-Mesa-Chandler, AZ
4321  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4322                                Punta Gorda, FL
4323            Tampa-St. Petersburg-Clearwater, FL
4324               Las Vegas-Henderson-Paradise, NV
4325    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4326                 Boston-Cambridge-Newton, MA-NH
4327                                 Huntsville, AL
4328             Fayetteville-Springdale-Rogers, AR
4329                          New Haven-Milford, CT
4330                Burlington-South Burlington, VT
4331                Dallas-Fort Worth-Arlington, TX
4332                                       Reno, NV
4333                             Urban Honolulu, HI
4334          New York-Newark-Jersey City, NY-NJ-PA
4335                        Buffalo-Cheektowaga, NY
4336                    Detroit-Warren-Dearborn, MI
4337                Dallas-Fort Worth-Arlington, TX
4338   Washington-Arlington-Alexandria, DC-VA-MD-WV
4339                Dallas-Fort Worth-Arlington, TX
4340             Chicago-Naperville-Elgin, IL-IN-WI
4341                Dallas-Fort Worth-Arlington, TX
4342                        Buffalo-Cheektowaga, NY
4343              Charlotte-Concord-Gastonia, NC-SC
4344                Dallas-Fort Worth-Arlington, TX
4345                                     Juneau, AK
4346                                   Richmond, VA
4347           Atlanta-Sandy Springs-Alpharetta, GA
4348                             Salt Lake City, UT
4349                             Salt Lake City, UT
4350           Atlanta-Sandy Springs-Alpharetta, GA
4351                          Trenton-Princeton, NJ
4352                        Harrisburg-Carlisle, PA
4353                                  Knoxville, TN
4354                                      Akron, OH
4355   Washington-Arlington-Alexandria, DC-VA-MD-WV
4356                               Cedar Rapids, IA
4357                       Lansing-East Lansing, MI
4358   Washington-Arlington-Alexandria, DC-VA-MD-WV
4359            Tampa-St. Petersburg-Clearwater, FL
4360                          Aguadilla-Isabela, PR
4361                                   Columbus, OH
4362        Miami-Fort Lauderdale-Pompano Beach, FL
4363            Tampa-St. Petersburg-Clearwater, FL
4364                 Boston-Cambridge-Newton, MA-NH
4365                                      Akron, OH
4366                                   Columbus, OH
4367   Washington-Arlington-Alexandria, DC-VA-MD-WV
4368                      Greensboro-High Point, NC
4369                      Greensboro-High Point, NC
4370                                Spartanburg, SC
4371              Palm Bay-Melbourne-Titusville, FL
4372    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4373                      Providence-Warwick, RI-MA
4374                                  Rochester, NY
4375                                   Syracuse, NY
4376    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4377                      Providence-Warwick, RI-MA
4378           Houston-The Woodlands-Sugar Land, TX
4379        Minneapolis-St. Paul-Bloomington, MN-WI
4380                              Memphis, TN-MS-AR
4381                 Pensacola-Ferry Pass-Brent, FL
4382             Chicago-Naperville-Elgin, IL-IN-WI
4383                                   Brainerd, MN
4384                                   Bismarck, ND
4385                                 Rapid City, SD
4386                     Denver-Aurora-Lakewood, CO
4387             Chicago-Naperville-Elgin, IL-IN-WI
4388             Los Angeles-Long Beach-Anaheim, CA
4389        Minneapolis-St. Paul-Bloomington, MN-WI
4390                                 Jackson, WY-ID
4391            Portland-Vancouver-Hillsboro, OR-WA
4392                    Portland-South Portland, ME
4393             San Francisco-Oakland-Berkeley, CA
4394   Washington-Arlington-Alexandria, DC-VA-MD-WV
4395           Houston-The Woodlands-Sugar Land, TX
4396                Dallas-Fort Worth-Arlington, TX
4397                Dallas-Fort Worth-Arlington, TX
4398                  Baltimore-Columbia-Towson, MD
4399                             Kansas City, MO-KS
4400               Austin-Round Rock-Georgetown, TX
4401           Houston-The Woodlands-Sugar Land, TX
4402                      Phoenix-Mesa-Chandler, AZ
4403    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4404                Charleston-North Charleston, SC
4405                                   Columbus, OH
4406                                  Rochester, NY
4407                      Greensboro-High Point, NC
4408   Washington-Arlington-Alexandria, DC-VA-MD-WV
4409                                 Wilmington, NC
4410                          Manchester-Nashua, NH
4411             Louisville/Jefferson County, KY-IN
4412                                   Syracuse, NY
4413                                   Appleton, WI
4414                 Pensacola-Ferry Pass-Brent, FL
4415                Dallas-Fort Worth-Arlington, TX
4416                Dallas-Fort Worth-Arlington, TX
4417                      Phoenix-Mesa-Chandler, AZ
4418                Dallas-Fort Worth-Arlington, TX
4419              Charlotte-Concord-Gastonia, NC-SC
4420                                       Reno, NV
4421           Atlanta-Sandy Springs-Alpharetta, GA
4422                             Salt Lake City, UT
4423                Burlington-South Burlington, VT
4424                     Denver-Aurora-Lakewood, CO
4425     Virginia Beach-Norfolk-Newport News, VA-NC
4426               Las Vegas-Henderson-Paradise, NV
4427                      Cape Coral-Fort Myers, FL
4428        Miami-Fort Lauderdale-Pompano Beach, FL
4429  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4430                                 Pittsburgh, PA
4431          Hartford-East Hartford-Middletown, CT
4432                                      Flint, MI
4433                                 Huntsville, AL
4434    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4435   Washington-Arlington-Alexandria, DC-VA-MD-WV
4436                      Phoenix-Mesa-Chandler, AZ
4437             Chicago-Naperville-Elgin, IL-IN-WI
4438             Chicago-Naperville-Elgin, IL-IN-WI
4439                    Seattle-Tacoma-Bellevue, WA
4440                San Luis Obispo-Paso Robles, CA
4441                    Seattle-Tacoma-Bellevue, WA
4442             Chicago-Naperville-Elgin, IL-IN-WI
4443             San Francisco-Oakland-Berkeley, CA
4444                     Denver-Aurora-Lakewood, CO
4445                     Denver-Aurora-Lakewood, CO
4446           Houston-The Woodlands-Sugar Land, TX
4447           Houston-The Woodlands-Sugar Land, TX
4448                             Corpus Christi, TX
4449                             Kansas City, MO-KS
4450                  San Antonio-New Braunfels, TX
4451                    Kahului-Wailuku-Lahaina, HI
4452 Nashville-Davidson--Murfreesboro--Franklin, TN
4453             San Francisco-Oakland-Berkeley, CA
4454                                    Bozeman, MT
4455 Nashville-Davidson--Murfreesboro--Franklin, TN
4456                                       Reno, NV
4457                              Memphis, TN-MS-AR
4458   Washington-Arlington-Alexandria, DC-VA-MD-WV
4459   Washington-Arlington-Alexandria, DC-VA-MD-WV
4460                      Providence-Warwick, RI-MA
4461             Los Angeles-Long Beach-Anaheim, CA
4462               Las Vegas-Henderson-Paradise, NV
4463                              Eureka-Arcata, CA
4464                         Eugene-Springfield, OR
4465                                    Medford, OR
4466                         Kennewick-Richland, WA
4467                                       Bend, OR
4468                        Santa Rosa-Petaluma, CA
4469                          New Haven-Milford, CT
4470             Los Angeles-Long Beach-Anaheim, CA
4471                  Orlando-Kissimmee-Sanford, FL
4472                      Cape Coral-Fort Myers, FL
4473             Los Angeles-Long Beach-Anaheim, CA
4474             Los Angeles-Long Beach-Anaheim, CA
4475                          New Haven-Milford, CT
4476             Los Angeles-Long Beach-Anaheim, CA
4477            Tampa-St. Petersburg-Clearwater, FL
4478                                       Bend, OR
4479             Los Angeles-Long Beach-Anaheim, CA
4480          Hartford-East Hartford-Middletown, CT
4481                                       Hilo, HI
4482                                Sioux Falls, SD
4483                                      Kapaa, HI
4484             San Diego-Chula Vista-Carlsbad, CA
4485           Atlanta-Sandy Springs-Alpharetta, GA
4486             San Jose-Sunnyvale-Santa Clara, CA
4487                           Glenwood Springs, CO
4488                                       Reno, NV
4489           Houston-The Woodlands-Sugar Land, TX
4490                                   Montrose, CO
4491                                    Edwards, CO
4492                          Steamboat Springs, CO
4493                    Seattle-Tacoma-Bellevue, WA
4494                                     Tucson, AZ
4495          New York-Newark-Jersey City, NY-NJ-PA
4496                    Shreveport-Bossier City, LA
4497         Crestview-Fort Walton Beach-Destin, FL
4498                              Memphis, TN-MS-AR
4499                                 Fort Wayne, IN
4500                                    Edwards, CO
4501                Sacramento-Roseville-Folsom, CA
4502                     Denver-Aurora-Lakewood, CO
4503                     Denver-Aurora-Lakewood, CO
4504             San Francisco-Oakland-Berkeley, CA
4505             Louisville/Jefferson County, KY-IN
4506                                   Appleton, WI
4507                      Phoenix-Mesa-Chandler, AZ
4508    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4509   Washington-Arlington-Alexandria, DC-VA-MD-WV
4510                                   Richmond, VA
4511          New York-Newark-Jersey City, NY-NJ-PA
4512                 Boston-Cambridge-Newton, MA-NH
4513                    Detroit-Warren-Dearborn, MI
4514                  Orlando-Kissimmee-Sanford, FL
4515                           Colorado Springs, CO
4516                  Orlando-Kissimmee-Sanford, FL
4517                               Jacksonville, FL
4518                  Orlando-Kissimmee-Sanford, FL
4519        Miami-Fort Lauderdale-Pompano Beach, FL
4520                             Kansas City, MO-KS
4521        Miami-Fort Lauderdale-Pompano Beach, FL
4522                             Kansas City, MO-KS
4523             Los Angeles-Long Beach-Anaheim, CA
4524                    Seattle-Tacoma-Bellevue, WA
4525                     Denver-Aurora-Lakewood, CO
4526             Chicago-Naperville-Elgin, IL-IN-WI
4527                              Oklahoma City, OK
4528           Riverside-San Bernardino-Ontario, CA
4529                                       Hilo, HI
4530           Houston-The Woodlands-Sugar Land, TX
4531                                    Jackson, MS
4532             Los Angeles-Long Beach-Anaheim, CA
4533              North Port-Sarasota-Bradenton, FL
4534            Tampa-St. Petersburg-Clearwater, FL
4535                             Kansas City, MO-KS
4536             Los Angeles-Long Beach-Anaheim, CA
4537                                   Richmond, VA
4538                           Cleveland-Elyria, OH
4539                      Phoenix-Mesa-Chandler, AZ
4540              Charlotte-Concord-Gastonia, NC-SC
4541                               Worcester, MA-CT
4542                Dallas-Fort Worth-Arlington, TX
4543            Portland-Vancouver-Hillsboro, OR-WA
4544                                           <NA>
4545          New York-Newark-Jersey City, NY-NJ-PA
4546          New York-Newark-Jersey City, NY-NJ-PA
4547                                    Bozeman, MT
4548          New York-Newark-Jersey City, NY-NJ-PA
4549                             Salt Lake City, UT
4550                    Detroit-Warren-Dearborn, MI
4551                    Detroit-Warren-Dearborn, MI
4552          New York-Newark-Jersey City, NY-NJ-PA
4553                      Brownsville-Harlingen, TX
4554                Dallas-Fort Worth-Arlington, TX
4555  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4556                                      Akron, OH
4557                             Chattanooga, TN-GA
4558                                 Wilmington, NC
4559                           Colorado Springs, CO
4560                                 Boise City, ID
4561                     Denver-Aurora-Lakewood, CO
4562                     Denver-Aurora-Lakewood, CO
4563                     Denver-Aurora-Lakewood, CO
4564                  San Antonio-New Braunfels, TX
4565                  Baltimore-Columbia-Towson, MD
4566             Louisville/Jefferson County, KY-IN
4567                Charleston-North Charleston, SC
4568                             Kansas City, MO-KS
4569                         Milwaukee-Waukesha, WI
4570               Austin-Round Rock-Georgetown, TX
4571                 Des Moines-West Des Moines, IA
4572             San Francisco-Oakland-Berkeley, CA
4573             Los Angeles-Long Beach-Anaheim, CA
4574           Houston-The Woodlands-Sugar Land, TX
4575                    Portland-South Portland, ME
4576               Austin-Round Rock-Georgetown, TX
4577                                Albuquerque, NM
4578             San Jose-Sunnyvale-Santa Clara, CA
4579               Austin-Round Rock-Georgetown, TX
4580                                   Savannah, GA
4581                              Oklahoma City, OK
4582                  San Antonio-New Braunfels, TX
4583                         Milwaukee-Waukesha, WI
4584                      Phoenix-Mesa-Chandler, AZ
4585                      Cape Coral-Fort Myers, FL
4586                                  Duluth, MN-WI
4587                                    Madison, WI
4588            Tampa-St. Petersburg-Clearwater, FL
4589        Miami-Fort Lauderdale-Pompano Beach, FL
4590             Los Angeles-Long Beach-Anaheim, CA
4591                       New Orleans-Metairie, LA
4592             Chicago-Naperville-Elgin, IL-IN-WI
4593                                    Bozeman, MT
4594                    San Juan-Bayamón-Caguas, PR
4595                                   Richmond, VA
4596           Riverside-San Bernardino-Ontario, CA
4597                      Phoenix-Mesa-Chandler, AZ
4598                      Phoenix-Mesa-Chandler, AZ
4599             San Jose-Sunnyvale-Santa Clara, CA
4600                    Seattle-Tacoma-Bellevue, WA
4601                    Detroit-Warren-Dearborn, MI
4602           Atlanta-Sandy Springs-Alpharetta, GA
4603                                Bloomington, IL
4604                          Trenton-Princeton, NJ
4605                    Atlantic City-Hammonton, NJ
4606                                           <NA>
4607                           Cleveland-Elyria, OH
4608    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4609                          Manchester-Nashua, NH
4610                     Denver-Aurora-Lakewood, CO
4611                 Des Moines-West Des Moines, IA
4612             Chicago-Naperville-Elgin, IL-IN-WI
4613                     Denver-Aurora-Lakewood, CO
4614                     Denver-Aurora-Lakewood, CO
4615                     Denver-Aurora-Lakewood, CO
4616             Chicago-Naperville-Elgin, IL-IN-WI
4617   Washington-Arlington-Alexandria, DC-VA-MD-WV
4618                     Denver-Aurora-Lakewood, CO
4619   Washington-Arlington-Alexandria, DC-VA-MD-WV
4620                     Denver-Aurora-Lakewood, CO
4621                     Denver-Aurora-Lakewood, CO
4622                     Denver-Aurora-Lakewood, CO
4623             Los Angeles-Long Beach-Anaheim, CA
4624             San Francisco-Oakland-Berkeley, CA
4625                  Baltimore-Columbia-Towson, MD
4626                              Oklahoma City, OK
4627           Houston-The Woodlands-Sugar Land, TX
4628                         Milwaukee-Waukesha, WI
4629                        Buffalo-Cheektowaga, NY
4630                    Omaha-Council Bluffs, NE-IA
4631                           Cincinnati, OH-KY-IN
4632                Dallas-Fort Worth-Arlington, TX
4633                                    Lubbock, TX
4634                                    Midland, TX
4635                                    Wichita, KS
4636                 Pensacola-Ferry Pass-Brent, FL
4637             Chicago-Naperville-Elgin, IL-IN-WI
4638                    Albany-Schenectady-Troy, NY
4639                              Memphis, TN-MS-AR
4640                Dallas-Fort Worth-Arlington, TX
4641       Little Rock-North Little Rock-Conway, AR
4642                      Grand Rapids-Kentwood, MI
4643                             Kansas City, MO-KS
4644             San Diego-Chula Vista-Carlsbad, CA
4645            Tampa-St. Petersburg-Clearwater, FL
4646                             Kansas City, MO-KS
4647                         Milwaukee-Waukesha, WI
4648   Washington-Arlington-Alexandria, DC-VA-MD-WV
4649             Los Angeles-Long Beach-Anaheim, CA
4650   Washington-Arlington-Alexandria, DC-VA-MD-WV
4651             Chicago-Naperville-Elgin, IL-IN-WI
4652     Virginia Beach-Norfolk-Newport News, VA-NC
4653        Minneapolis-St. Paul-Bloomington, MN-WI
4654            Tampa-St. Petersburg-Clearwater, FL
4655                                   Key West, FL
4656                          Steamboat Springs, CO
4657                    Seattle-Tacoma-Bellevue, WA
4658                                   Montrose, CO
4659                                      Tulsa, OK
4660             Los Angeles-Long Beach-Anaheim, CA
4661             Los Angeles-Long Beach-Anaheim, CA
4662                             Urban Honolulu, HI
4663                                           <NA>
4664          Hartford-East Hartford-Middletown, CT
4665                                 Pittsburgh, PA
4666           Atlanta-Sandy Springs-Alpharetta, GA
4667                    Detroit-Warren-Dearborn, MI
4668           Atlanta-Sandy Springs-Alpharetta, GA
4669           Atlanta-Sandy Springs-Alpharetta, GA
4670                                    Salinas, CA
4671                                Great Falls, MT
4672               Indianapolis-Carmel-Anderson, IN
4673                              State College, PA
4674                                    Lincoln, NE
4675                 Augusta-Richmond County, GA-SC
4676                       Kingsport-Bristol, TN-VA
4677                        Harrisburg-Carlisle, PA
4678                    Albany-Schenectady-Troy, NY
4679                     Spokane-Spokane Valley, WA
4680          New York-Newark-Jersey City, NY-NJ-PA
4681                                    Madison, WI
4682                               Grand Island, NE
4683                                Springfield, MO
4684                                   Columbia, SC
4685            Davenport-Moline-Rock Island, IA-IL
4686                           Glenwood Springs, CO
4687                          Steamboat Springs, CO
4688          New York-Newark-Jersey City, NY-NJ-PA
4689            Davenport-Moline-Rock Island, IA-IL
4690                          Manchester-Nashua, NH
4691             Chicago-Naperville-Elgin, IL-IN-WI
4692                                  Asheville, NC
4693                                  Anchorage, AK
4694                    Seattle-Tacoma-Bellevue, WA
4695                                           <NA>
4696            Portland-Vancouver-Hillsboro, OR-WA
4697             Los Angeles-Long Beach-Anaheim, CA
4698                 Boston-Cambridge-Newton, MA-NH
4699          New York-Newark-Jersey City, NY-NJ-PA
4700                             Salt Lake City, UT
4701                             Salt Lake City, UT
4702                               Jacksonville, FL
4703                                 Pittsburgh, PA
4704          Hartford-East Hartford-Middletown, CT
4705                                Baton Rouge, LA
4706                                     Ithaca, NY
4707          Hartford-East Hartford-Middletown, CT
4708                                Panama City, FL
4709                                    Salinas, CA
4710                    Omaha-Council Bluffs, NE-IA
4711                                   Santa Fe, NM
4712                     Denver-Aurora-Lakewood, CO
4713             Chicago-Naperville-Elgin, IL-IN-WI
4714             Chicago-Naperville-Elgin, IL-IN-WI
4715                     Denver-Aurora-Lakewood, CO
4716                     Denver-Aurora-Lakewood, CO
4717            Tampa-St. Petersburg-Clearwater, FL
4718           Houston-The Woodlands-Sugar Land, TX
4719             Chicago-Naperville-Elgin, IL-IN-WI
4720                                   Columbus, OH
4721                           Colorado Springs, CO
4722 Nashville-Davidson--Murfreesboro--Franklin, TN
4723                    Omaha-Council Bluffs, NE-IA
4724                                  Rochester, NY
4725           Atlanta-Sandy Springs-Alpharetta, GA
4726                  Orlando-Kissimmee-Sanford, FL
4727            Portland-Vancouver-Hillsboro, OR-WA
4728                    Albany-Schenectady-Troy, NY
4729                                  Rochester, NY
4730             Louisville/Jefferson County, KY-IN
4731   Washington-Arlington-Alexandria, DC-VA-MD-WV
4732   Washington-Arlington-Alexandria, DC-VA-MD-WV
4733                                   Richmond, VA
4734                                   Amarillo, TX
4735                      Brownsville-Harlingen, TX
4736                      Brownsville-Harlingen, TX
4737                  Orlando-Kissimmee-Sanford, FL
4738                                   Key West, FL
4739                                  Brunswick, GA
4740                              State College, PA
4741             Fayetteville-Springdale-Rogers, AR
4742          Hartford-East Hartford-Middletown, CT
4743                                           <NA>
4744            Portland-Vancouver-Hillsboro, OR-WA
4745                                  Anchorage, AK
4746                                  Ketchikan, AK
4747                 Boston-Cambridge-Newton, MA-NH
4748                                      Ponce, PR
4749               Austin-Round Rock-Georgetown, TX
4750        Miami-Fort Lauderdale-Pompano Beach, FL
4751                          Manchester-Nashua, NH
4752                          Birmingham-Hoover, AL
4753              Charlotte-Concord-Gastonia, NC-SC
4754                     Denver-Aurora-Lakewood, CO
4755                                Bakersfield, CA
4756                                 Rapid City, SD
4757                                  Flagstaff, AZ
4758                                    Madison, WI
4759             Louisville/Jefferson County, KY-IN
4760                                   Amarillo, TX
4761        Minneapolis-St. Paul-Bloomington, MN-WI
4762                                    Lincoln, NE
4763                                           <NA>
4764                     Denver-Aurora-Lakewood, CO
4765                                Idaho Falls, ID
4766        Minneapolis-St. Paul-Bloomington, MN-WI
4767                         Kennewick-Richland, WA
4768             Chicago-Naperville-Elgin, IL-IN-WI
4769   Washington-Arlington-Alexandria, DC-VA-MD-WV
4770                     Denver-Aurora-Lakewood, CO
4771                  Orlando-Kissimmee-Sanford, FL
4772              North Port-Sarasota-Bradenton, FL
4773                                     Tucson, AZ
4774                Sacramento-Roseville-Folsom, CA
4775                    Kahului-Wailuku-Lahaina, HI
4776                                 Pittsburgh, PA
4777                Sacramento-Roseville-Folsom, CA
4778                  Baltimore-Columbia-Towson, MD
4779         Crestview-Fort Walton Beach-Destin, FL
4780                  Orlando-Kissimmee-Sanford, FL
4781                          Birmingham-Hoover, AL
4782                                   Montrose, CO
4783          New York-Newark-Jersey City, NY-NJ-PA
4784                 Pensacola-Ferry Pass-Brent, FL
4785                                    Lincoln, NE
4786                            Gulfport-Biloxi, MS
4787                                     Laredo, TX
4788            Portland-Vancouver-Hillsboro, OR-WA
4789          Hartford-East Hartford-Middletown, CT
4790                                   Fargo, ND-MN
4791                        Buffalo-Cheektowaga, NY
4792                                           <NA>
4793                      Cape Coral-Fort Myers, FL
4794                        Harrisburg-Carlisle, PA
4795             Fayetteville-Springdale-Rogers, AR
4796                San Luis Obispo-Paso Robles, CA
4797   Washington-Arlington-Alexandria, DC-VA-MD-WV
4798                                 Boise City, ID
4799            Portland-Vancouver-Hillsboro, OR-WA
4800                                   Fargo, ND-MN
4801                                 St. George, UT
4802             Los Angeles-Long Beach-Anaheim, CA
4803                                     Tucson, AZ
4804                    Seattle-Tacoma-Bellevue, WA
4805          New York-Newark-Jersey City, NY-NJ-PA
4806                                 Pittsburgh, PA
4807                     Denver-Aurora-Lakewood, CO
4808                              Oklahoma City, OK
4809                                 Pittsburgh, PA
4810 Nashville-Davidson--Murfreesboro--Franklin, TN
4811             San Diego-Chula Vista-Carlsbad, CA
4812                             Chattanooga, TN-GA
4813                              Evansville, IN-KY
4814                            Charlottesville, VA
4815            Davenport-Moline-Rock Island, IA-IL
4816                    Shreveport-Bossier City, LA
4817                          Birmingham-Hoover, AL
4818                          Lexington-Fayette, KY
4819                                  Knoxville, TN
4820                 Boston-Cambridge-Newton, MA-NH
4821                               Cedar Rapids, IA
4822        Minneapolis-St. Paul-Bloomington, MN-WI
4823    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4824                      Phoenix-Mesa-Chandler, AZ
4825                      Phoenix-Mesa-Chandler, AZ
4826        Miami-Fort Lauderdale-Pompano Beach, FL
4827              Charlotte-Concord-Gastonia, NC-SC
4828                    Seattle-Tacoma-Bellevue, WA
4829                                    Bozeman, MT
4830             San Jose-Sunnyvale-Santa Clara, CA
4831             Los Angeles-Long Beach-Anaheim, CA
4832                      Providence-Warwick, RI-MA
4833                     Spokane-Spokane Valley, WA
4834                     Spokane-Spokane Valley, WA
4835                             Salt Lake City, UT
4836                             Salt Lake City, UT
4837       Little Rock-North Little Rock-Conway, AR
4838                          Lexington-Fayette, KY
4839                              Wausau-Weston, WI
4840                     Scranton--Wilkes-Barre, PA
4841   Washington-Arlington-Alexandria, DC-VA-MD-WV
4842             Los Angeles-Long Beach-Anaheim, CA
4843                     Denver-Aurora-Lakewood, CO
4844                                 Huntsville, AL
4845                                 Pittsburgh, PA
4846                                Sioux Falls, SD
4847                             Grand Forks, ND-MN
4848                                      Minot, ND
4849                    South Bend-Mishawaka, IN-MI
4850                                   Billings, MT
4851                              Eureka-Arcata, CA
4852                                     Fresno, CA
4853                     Denver-Aurora-Lakewood, CO
4854                     Spokane-Spokane Valley, WA
4855          New York-Newark-Jersey City, NY-NJ-PA
4856               Las Vegas-Henderson-Paradise, NV
4857             Chicago-Naperville-Elgin, IL-IN-WI
4858             Chicago-Naperville-Elgin, IL-IN-WI
4859                Dallas-Fort Worth-Arlington, TX
4860               Austin-Round Rock-Georgetown, TX
4861                Dallas-Fort Worth-Arlington, TX
4862                                      Kapaa, HI
4863                    Omaha-Council Bluffs, NE-IA
4864 Nashville-Davidson--Murfreesboro--Franklin, TN
4865                     Denver-Aurora-Lakewood, CO
4866           Houston-The Woodlands-Sugar Land, TX
4867           Houston-The Woodlands-Sugar Land, TX
4868   Washington-Arlington-Alexandria, DC-VA-MD-WV
4869           Houston-The Woodlands-Sugar Land, TX
4870             San Francisco-Oakland-Berkeley, CA
4871                                Gainesville, FL
4872                          Lexington-Fayette, KY
4873                                 Charleston, WV
4874                                       Erie, PA
4875        Minneapolis-St. Paul-Bloomington, MN-WI
4876                        Harrisburg-Carlisle, PA
4877     Virginia Beach-Norfolk-Newport News, VA-NC
4878    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4879                Burlington-South Burlington, VT
4880                                 Fort Wayne, IN
4881                          Lexington-Fayette, KY
4882                                Baton Rouge, LA
4883                                 Alexandria, LA
4884                                     Monroe, LA
4885                    Detroit-Warren-Dearborn, MI
4886              Allentown-Bethlehem-Easton, PA-NJ
4887                             Chattanooga, TN-GA
4888                               Cedar Rapids, IA
4889                      Greensboro-High Point, NC
4890                                     Ithaca, NY
4891                              Traverse City, MI
4892                                  Green Bay, WI
4893                                  Knoxville, TN
4894        Minneapolis-St. Paul-Bloomington, MN-WI
4895             Chicago-Naperville-Elgin, IL-IN-WI
4896    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4897                Dallas-Fort Worth-Arlington, TX
4898             San Jose-Sunnyvale-Santa Clara, CA
4899                                           <NA>
4900                                           <NA>
4901                             Vineyard Haven, MA
4902                             Vineyard Haven, MA
4903                                           <NA>
4904                                   Syracuse, NY
4905                               Fayetteville, NC
4906                                Sioux Falls, SD
4907                                  Green Bay, WI
4908                                 Jackson, WY-ID
4909                    Detroit-Warren-Dearborn, MI
4910                    Detroit-Warren-Dearborn, MI
4911        Minneapolis-St. Paul-Bloomington, MN-WI
4912                    Detroit-Warren-Dearborn, MI
4913                                           <NA>
4914                Dallas-Fort Worth-Arlington, TX
4915                       Beaumont-Port Arthur, TX
4916                                 Fort Wayne, IN
4917                                  Manhattan, KS
4918                                           <NA>
4919                                     Elmira, NY
4920             Los Angeles-Long Beach-Anaheim, CA
4921                           Colorado Springs, CO
4922             Chicago-Naperville-Elgin, IL-IN-WI
4923                              Eureka-Arcata, CA
4924                                    Redding, CA
4925             San Francisco-Oakland-Berkeley, CA
4926                                  Marquette, MI
4927                  Santa Maria-Santa Barbara, CA
4928                San Luis Obispo-Paso Robles, CA
4929                                Idaho Falls, ID
4930                                  Anchorage, AK
4931           Houston-The Woodlands-Sugar Land, TX
4932             San Francisco-Oakland-Berkeley, CA
4933    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4934             Los Angeles-Long Beach-Anaheim, CA
4935           Houston-The Woodlands-Sugar Land, TX
4936             Chicago-Naperville-Elgin, IL-IN-WI
4937                Sacramento-Roseville-Folsom, CA
4938           Riverside-San Bernardino-Ontario, CA
4939             Los Angeles-Long Beach-Anaheim, CA
4940                    San Juan-Bayamón-Caguas, PR
4941                             Kansas City, MO-KS
4942             Los Angeles-Long Beach-Anaheim, CA
4943           Riverside-San Bernardino-Ontario, CA
4944                                       Reno, NV
4945 Nashville-Davidson--Murfreesboro--Franklin, TN
4946 Nashville-Davidson--Murfreesboro--Franklin, TN
4947                  Baltimore-Columbia-Towson, MD
4948          New York-Newark-Jersey City, NY-NJ-PA
4949   Washington-Arlington-Alexandria, DC-VA-MD-WV
4950                                   Columbia, SC
4951        Minneapolis-St. Paul-Bloomington, MN-WI
4952                                           <NA>
4953             Los Angeles-Long Beach-Anaheim, CA
4954               Las Vegas-Henderson-Paradise, NV
4955                             Vineyard Haven, MA
4956                      Cape Coral-Fort Myers, FL
4957                Sacramento-Roseville-Folsom, CA
4958           Atlanta-Sandy Springs-Alpharetta, GA
4959                         Kennewick-Richland, WA
4960                         Milwaukee-Waukesha, WI
4961                           Cleveland-Elyria, OH
4962             Los Angeles-Long Beach-Anaheim, CA
4963                                    Lubbock, TX
4964                                  Ketchikan, AK
4965                                  Anchorage, AK
4966                                  Ketchikan, AK
4967                    Portland-South Portland, ME
4968            Tampa-St. Petersburg-Clearwater, FL
4969                          Manchester-Nashua, NH
4970                      Greensboro-High Point, NC
4971                                      Hobbs, NM
4972                                    Wichita, KS
4973             San Diego-Chula Vista-Carlsbad, CA
4974                Dallas-Fort Worth-Arlington, TX
4975                                   Montrose, CO
4976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4977        Minneapolis-St. Paul-Bloomington, MN-WI
4978                                       Erie, PA
4979                    Seattle-Tacoma-Bellevue, WA
4980                    Kahului-Wailuku-Lahaina, HI
4981                Dallas-Fort Worth-Arlington, TX
4982                                       Reno, NV
4983               Austin-Round Rock-Georgetown, TX
4984             San Jose-Sunnyvale-Santa Clara, CA
4985                                Spartanburg, SC
4986                                    El Paso, TX
4987             Chicago-Naperville-Elgin, IL-IN-WI
4988                                   Fargo, ND-MN
4989                                 Alexandria, LA
4990                    South Bend-Mishawaka, IN-MI
4991              Charlotte-Concord-Gastonia, NC-SC
4992                                      Hobbs, NM
4993                           Butte-Silver Bow, MT
4994                                  Anchorage, AK
4995                    Seattle-Tacoma-Bellevue, WA
4996                                   Montrose, CO
4997                    Omaha-Council Bluffs, NE-IA
4998        Miami-Fort Lauderdale-Pompano Beach, FL
4999         Crestview-Fort Walton Beach-Destin, FL
5000     Virginia Beach-Norfolk-Newport News, VA-NC
5001                                     Bangor, ME
5002                 Pensacola-Ferry Pass-Brent, FL
5003         Crestview-Fort Walton Beach-Destin, FL
5004   Washington-Arlington-Alexandria, DC-VA-MD-WV
5005                                       Reno, NV
5006                Dallas-Fort Worth-Arlington, TX
5007                 Boston-Cambridge-Newton, MA-NH
5008            Portland-Vancouver-Hillsboro, OR-WA
5009                                 Charleston, WV
5010                           Cleveland-Elyria, OH
5011                           Cincinnati, OH-KY-IN
5012                                  Anchorage, AK
5013                 Augusta-Richmond County, GA-SC
5014                                  Rochester, NY
5015                                   Syracuse, NY
5016                    Detroit-Warren-Dearborn, MI
5017                                  Kalispell, MT
5018             San Diego-Chula Vista-Carlsbad, CA
5019                                 Pittsburgh, PA
5020                                   Columbia, SC
5021                                 St. George, UT
5022                    Shreveport-Bossier City, LA
5023                                           <NA>
5024                                           <NA>
5025                           Glenwood Springs, CO
5026                           Dayton-Kettering, OH
5027                               Fayetteville, NC
5028                                     Hailey, ID
5029                          Manchester-Nashua, NH
5030                                       Bend, OR
5031                                   Coos Bay, OR
5032                           Colorado Springs, CO
5033                                           <NA>
5034                                  Anchorage, AK
5035                          Steamboat Springs, CO
5036                 Des Moines-West Des Moines, IA
5037              Charlotte-Concord-Gastonia, NC-SC
5038             San Jose-Sunnyvale-Santa Clara, CA
5039                                           <NA>
5040                                           <NA>
5041                                Great Falls, MT
5042                           Glenwood Springs, CO
5043                              Traverse City, MI
5044                Sacramento-Roseville-Folsom, CA
5045                                Albuquerque, NM
5046                                    El Paso, TX
5047                 Pensacola-Ferry Pass-Brent, FL
5048    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5049                                           <NA>
5050                                  Anchorage, AK
5051           Riverside-San Bernardino-Ontario, CA
5052        Miami-Fort Lauderdale-Pompano Beach, FL
5053                  Orlando-Kissimmee-Sanford, FL
5054                          Trenton-Princeton, NJ
5055                                  Green Bay, WI
5056                  Orlando-Kissimmee-Sanford, FL
5057                  Orlando-Kissimmee-Sanford, FL
5058                     Denver-Aurora-Lakewood, CO
5059               Las Vegas-Henderson-Paradise, NV
5060                                Sioux Falls, SD
5061       Little Rock-North Little Rock-Conway, AR
5062                  Orlando-Kissimmee-Sanford, FL
5063                Burlington-South Burlington, VT
5064                 Des Moines-West Des Moines, IA
5065                                    El Paso, TX
5066    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5067             Fayetteville-Springdale-Rogers, AR
5068        Miami-Fort Lauderdale-Pompano Beach, FL
5069        Miami-Fort Lauderdale-Pompano Beach, FL
5070        Miami-Fort Lauderdale-Pompano Beach, FL
5071                               Raleigh-Cary, NC
5072               Las Vegas-Henderson-Paradise, NV
5073                  Orlando-Kissimmee-Sanford, FL
5074                          Manchester-Nashua, NH
5075                          Manchester-Nashua, NH
5076                               Fort Collins, CO
5077                           Ogden-Clearfield, UT
5078             Los Angeles-Long Beach-Anaheim, CA
5079             Los Angeles-Long Beach-Anaheim, CA
5080            Tampa-St. Petersburg-Clearwater, FL
5081              Palm Bay-Melbourne-Titusville, FL
5082                            Gulfport-Biloxi, MS
5083                                      Tulsa, OK
5084             Los Angeles-Long Beach-Anaheim, CA
5085                                           <NA>
5086                                       Yuma, AZ
5087                                 St. George, UT
5088                  San Antonio-New Braunfels, TX
5089                                     Helena, MT
5090           Riverside-San Bernardino-Ontario, CA
5091           Houston-The Woodlands-Sugar Land, TX
5092              North Port-Sarasota-Bradenton, FL
5093                      Brownsville-Harlingen, TX
5094                  San Antonio-New Braunfels, TX
5095             San Francisco-Oakland-Berkeley, CA
5096                               Raleigh-Cary, NC
5097           Houston-The Woodlands-Sugar Land, TX
5098                              Oklahoma City, OK
5099                                Spartanburg, SC
5100                         Milwaukee-Waukesha, WI
5101              Charlotte-Concord-Gastonia, NC-SC
5102                Dallas-Fort Worth-Arlington, TX
5103                         Eugene-Springfield, OR
5104             Fayetteville-Springdale-Rogers, AR
5105                                  Marquette, MI
5106             Los Angeles-Long Beach-Anaheim, CA
5107             San Francisco-Oakland-Berkeley, CA
5108   Washington-Arlington-Alexandria, DC-VA-MD-WV
5109           Riverside-San Bernardino-Ontario, CA
5110                  San Antonio-New Braunfels, TX
5111              North Port-Sarasota-Bradenton, FL
5112     Virginia Beach-Norfolk-Newport News, VA-NC
5113                Sacramento-Roseville-Folsom, CA
5114                                 Wilmington, NC
5115                        Santa Rosa-Petaluma, CA
5116           Houston-The Woodlands-Sugar Land, TX
5117                                           <NA>
5118                                     Bangor, ME
5119             Chicago-Naperville-Elgin, IL-IN-WI
5120                                Spartanburg, SC
5121             San Francisco-Oakland-Berkeley, CA
5122             San Diego-Chula Vista-Carlsbad, CA
5123                                           <NA>
5124                                    Redding, CA
5125             Chicago-Naperville-Elgin, IL-IN-WI
5126                             Kansas City, MO-KS
5127                                Panama City, FL
5128        Minneapolis-St. Paul-Bloomington, MN-WI
5129                                     Tucson, AZ
5130                                  Green Bay, WI
5131   Washington-Arlington-Alexandria, DC-VA-MD-WV
5132                      Cape Coral-Fort Myers, FL
5133                           Glenwood Springs, CO
5134             Los Angeles-Long Beach-Anaheim, CA
5135                                           <NA>
5136          New York-Newark-Jersey City, NY-NJ-PA
5137        Miami-Fort Lauderdale-Pompano Beach, FL
5138        Minneapolis-St. Paul-Bloomington, MN-WI
5139             Chicago-Naperville-Elgin, IL-IN-WI
5140                                           <NA>
5141                                Lewiston, ID-WA
5142          New York-Newark-Jersey City, NY-NJ-PA
5143           Houston-The Woodlands-Sugar Land, TX
5144             Chicago-Naperville-Elgin, IL-IN-WI
5145                               Jacksonville, FL
5146                  Orlando-Kissimmee-Sanford, FL
5147                Dallas-Fort Worth-Arlington, TX
5148           Houston-The Woodlands-Sugar Land, TX
5149           Houston-The Woodlands-Sugar Land, TX
5150                      Phoenix-Mesa-Chandler, AZ
5151                               St. Louis, MO-IL
5152                            Charlottesville, VA
5153        Minneapolis-St. Paul-Bloomington, MN-WI
5154                    South Bend-Mishawaka, IN-MI
5155                          Steamboat Springs, CO
5156                                     Bangor, ME
5157                         Kennewick-Richland, WA
5158                                  Anchorage, AK
5159                  Baltimore-Columbia-Towson, MD
5160                                   Montrose, CO
5161                                  Anchorage, AK
5162                      Grand Rapids-Kentwood, MI
5163                             Vineyard Haven, MA
5164                                Gainesville, FL
5165                                 Fort Wayne, IN
5166             San Francisco-Oakland-Berkeley, CA
5167           Houston-The Woodlands-Sugar Land, TX
5168                                    Bozeman, MT
5169                    Omaha-Council Bluffs, NE-IA
5170                         Eugene-Springfield, OR
5171                                 Montgomery, AL
5172                  Orlando-Kissimmee-Sanford, FL
5173                         Milwaukee-Waukesha, WI
5174                                 Bellingham, WA
5175                      Grand Rapids-Kentwood, MI
5176                      Brownsville-Harlingen, TX
5177                Charleston-North Charleston, SC
5178                                   Columbia, SC
5179                                   Richmond, VA
5180  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5181                                Spartanburg, SC
5182                                   Houghton, MI
5183            Portland-Vancouver-Hillsboro, OR-WA
5184                                 Pittsburgh, PA
5185                                 Fort Wayne, IN
5186             Los Angeles-Long Beach-Anaheim, CA
5187                                   Billings, MT
5188                                   Columbus, OH
5189            Portland-Vancouver-Hillsboro, OR-WA
5190           Atlanta-Sandy Springs-Alpharetta, GA
5191                  Santa Maria-Santa Barbara, CA
5192           Houston-The Woodlands-Sugar Land, TX
5193                                   Columbus, MS
5194                    Detroit-Warren-Dearborn, MI
5195                                 Pittsburgh, PA
5196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5197                 Des Moines-West Des Moines, IA
5198                                    Madison, WI
5199                      Greensboro-High Point, NC
5200                             Chattanooga, TN-GA
5201                       New Orleans-Metairie, LA
5202                                 Charleston, WV
5203                    San Juan-Bayamón-Caguas, PR
5204                San Luis Obispo-Paso Robles, CA
5205                                  Anchorage, AK
5206                San Luis Obispo-Paso Robles, CA
5207                                  Asheville, NC
5208                                 Jackson, WY-ID
5209          New York-Newark-Jersey City, NY-NJ-PA
5210                                  Rochester, MN
5211                                    Edwards, CO
5212                      La Crosse-Onalaska, WI-MN
5213            Portland-Vancouver-Hillsboro, OR-WA
5214          New York-Newark-Jersey City, NY-NJ-PA
5215                        Harrisburg-Carlisle, PA
5216  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5217                           Iron Mountain, MI-WI
5218           Riverside-San Bernardino-Ontario, CA
5219                                Panama City, FL
5220             Los Angeles-Long Beach-Anaheim, CA
5221                              Oklahoma City, OK
5222                               St. Louis, MO-IL
5223                                  Wenatchee, WA
5224            Portland-Vancouver-Hillsboro, OR-WA
5225                                Springfield, MO
5226             Los Angeles-Long Beach-Anaheim, CA
5227                       New Orleans-Metairie, LA
5228            Davenport-Moline-Rock Island, IA-IL
5229                                    Wichita, KS
5230                       Kingsport-Bristol, TN-VA
5231          Hartford-East Hartford-Middletown, CT
5232                      La Crosse-Onalaska, WI-MN
5233                    Detroit-Warren-Dearborn, MI
5234                                       Hilo, HI
5235                          Birmingham-Hoover, AL
5236                                 Boise City, ID
5237                   Huntington-Ashland, WV-KY-OH
5238              Allentown-Bethlehem-Easton, PA-NJ
5239              North Port-Sarasota-Bradenton, FL
5240                               Salisbury, MD-DE
5241                                  Anchorage, AK
5242          New York-Newark-Jersey City, NY-NJ-PA
5243             San Diego-Chula Vista-Carlsbad, CA
5244             Chicago-Naperville-Elgin, IL-IN-WI
5245                                       Yuma, AZ
5246                 Boston-Cambridge-Newton, MA-NH
5247                    Albany-Schenectady-Troy, NY
5248                    San Juan-Bayamón-Caguas, PR
5249                                  Lafayette, LA
5250                                 Boise City, ID
5251             San Francisco-Oakland-Berkeley, CA
5252                                  Johnstown, PA
5253                                    Salinas, CA
5254                           Cleveland-Elyria, OH
5255                                Bloomington, IL
5256                            Charlottesville, VA
5257                                    Roswell, NM
5258              Charlotte-Concord-Gastonia, NC-SC
5259                                 San Angelo, TX
5260                  Orlando-Kissimmee-Sanford, FL
5261                                    Kearney, NE
5262                                           <NA>
5263                    Kahului-Wailuku-Lahaina, HI
5264                                           <NA>
5265       Little Rock-North Little Rock-Conway, AR
5266                              Wichita Falls, TX
5267                Dallas-Fort Worth-Arlington, TX
5268               Austin-Round Rock-Georgetown, TX
5269                                      Akron, OH
5270                        Santa Rosa-Petaluma, CA
5271                                    Lubbock, TX
5272               Austin-Round Rock-Georgetown, TX
5273  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5274    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5275                 Des Moines-West Des Moines, IA
5276           Houston-The Woodlands-Sugar Land, TX
5277                                 Pittsburgh, PA
5278                                    Kearney, NE
5279                                 Jackson, WY-ID
5280             Los Angeles-Long Beach-Anaheim, CA
5281          New York-Newark-Jersey City, NY-NJ-PA
5282          New York-Newark-Jersey City, NY-NJ-PA
5283                                  Ketchikan, AK
5284                                Albuquerque, NM
5285                                  Green Bay, WI
5286                      Phoenix-Mesa-Chandler, AZ
5287                                     Hailey, ID
5288                    South Bend-Mishawaka, IN-MI
5289                                Panama City, FL
5290                                    Edwards, CO
5291                     Scranton--Wilkes-Barre, PA
5292                                     Monroe, LA
5293                                           <NA>
5294                                           <NA>
5295                                     Hailey, ID
5296                               St. Louis, MO-IL
5297                           Sault Ste. Marie, MI
5298                                    Roanoke, VA
5299                 Pensacola-Ferry Pass-Brent, FL
5300                Dallas-Fort Worth-Arlington, TX
5301             Chicago-Naperville-Elgin, IL-IN-WI
5302           Houston-The Woodlands-Sugar Land, TX
5303             San Francisco-Oakland-Berkeley, CA
5304                    Detroit-Warren-Dearborn, MI
5305                                  Anchorage, AK
5306                    Detroit-Warren-Dearborn, MI
5307                Dallas-Fort Worth-Arlington, TX
5308        Miami-Fort Lauderdale-Pompano Beach, FL
5309               Austin-Round Rock-Georgetown, TX
5310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5311              Charlotte-Concord-Gastonia, NC-SC
5312                      Phoenix-Mesa-Chandler, AZ
5313                      Phoenix-Mesa-Chandler, AZ
5314                      Phoenix-Mesa-Chandler, AZ
5315                                     Juneau, AK
5316            Portland-Vancouver-Hillsboro, OR-WA
5317                    Seattle-Tacoma-Bellevue, WA
5318             San Diego-Chula Vista-Carlsbad, CA
5319        Minneapolis-St. Paul-Bloomington, MN-WI
5320          New York-Newark-Jersey City, NY-NJ-PA
5321                    Detroit-Warren-Dearborn, MI
5322                             Salt Lake City, UT
5323   Washington-Arlington-Alexandria, DC-VA-MD-WV
5324              Charlotte-Concord-Gastonia, NC-SC
5325        Minneapolis-St. Paul-Bloomington, MN-WI
5326             Chicago-Naperville-Elgin, IL-IN-WI
5327            Portland-Vancouver-Hillsboro, OR-WA
5328          New York-Newark-Jersey City, NY-NJ-PA
5329   Washington-Arlington-Alexandria, DC-VA-MD-WV
5330                     Denver-Aurora-Lakewood, CO
5331             San Francisco-Oakland-Berkeley, CA
5332                     Denver-Aurora-Lakewood, CO
5333                     Denver-Aurora-Lakewood, CO
5334   Washington-Arlington-Alexandria, DC-VA-MD-WV
5335             San Francisco-Oakland-Berkeley, CA
5336                Dallas-Fort Worth-Arlington, TX
5337                     Denver-Aurora-Lakewood, CO
5338           Houston-The Woodlands-Sugar Land, TX
5339                      Phoenix-Mesa-Chandler, AZ
5340             Chicago-Naperville-Elgin, IL-IN-WI
5341                  Baltimore-Columbia-Towson, MD
5342                Dallas-Fort Worth-Arlington, TX
5343                       New Orleans-Metairie, LA
5344                Dallas-Fort Worth-Arlington, TX
5345                Dallas-Fort Worth-Arlington, TX
5346                               St. Louis, MO-IL
5347                               St. Louis, MO-IL
5348           Houston-The Woodlands-Sugar Land, TX
5349                  Orlando-Kissimmee-Sanford, FL
5350 Nashville-Davidson--Murfreesboro--Franklin, TN
5351                  Baltimore-Columbia-Towson, MD
5352                               St. Louis, MO-IL
5353                             Kansas City, MO-KS
5354             Chicago-Naperville-Elgin, IL-IN-WI
5355                  Baltimore-Columbia-Towson, MD
5356                               St. Louis, MO-IL
5357           Houston-The Woodlands-Sugar Land, TX
5358             Chicago-Naperville-Elgin, IL-IN-WI
5359                  San Antonio-New Braunfels, TX
5360 Nashville-Davidson--Murfreesboro--Franklin, TN
5361               Las Vegas-Henderson-Paradise, NV
5362           Atlanta-Sandy Springs-Alpharetta, GA
5363                               St. Louis, MO-IL
5364                  Orlando-Kissimmee-Sanford, FL
5365                                Albuquerque, NM
5366                       New Orleans-Metairie, LA
5367           Houston-The Woodlands-Sugar Land, TX
5368               Austin-Round Rock-Georgetown, TX
5369                Dallas-Fort Worth-Arlington, TX
5370           Atlanta-Sandy Springs-Alpharetta, GA
5371                  Baltimore-Columbia-Towson, MD
5372                  Baltimore-Columbia-Towson, MD
5373                             Kansas City, MO-KS
5374                Dallas-Fort Worth-Arlington, TX
5375             Los Angeles-Long Beach-Anaheim, CA
5376                               St. Louis, MO-IL
5377             San Jose-Sunnyvale-Santa Clara, CA
5378               Las Vegas-Henderson-Paradise, NV
5379             San Francisco-Oakland-Berkeley, CA
5380             San Jose-Sunnyvale-Santa Clara, CA
5381                Sacramento-Roseville-Folsom, CA
5382                Sacramento-Roseville-Folsom, CA
5383                Dallas-Fort Worth-Arlington, TX
5384           Riverside-San Bernardino-Ontario, CA
5385             Los Angeles-Long Beach-Anaheim, CA
5386            Tampa-St. Petersburg-Clearwater, FL
5387 Nashville-Davidson--Murfreesboro--Franklin, TN
5388               Austin-Round Rock-Georgetown, TX
5389             Los Angeles-Long Beach-Anaheim, CA
5390             Los Angeles-Long Beach-Anaheim, CA
5391             Los Angeles-Long Beach-Anaheim, CA
5392               Indianapolis-Carmel-Anderson, IN
5393               Austin-Round Rock-Georgetown, TX
5394               Las Vegas-Henderson-Paradise, NV
5395   Washington-Arlington-Alexandria, DC-VA-MD-WV
5396                  Orlando-Kissimmee-Sanford, FL
5397           Houston-The Woodlands-Sugar Land, TX
5398               Las Vegas-Henderson-Paradise, NV
5399                     Denver-Aurora-Lakewood, CO
5400          New York-Newark-Jersey City, NY-NJ-PA
5401             Chicago-Naperville-Elgin, IL-IN-WI
5402               Austin-Round Rock-Georgetown, TX
5403          New York-Newark-Jersey City, NY-NJ-PA
5404            Tampa-St. Petersburg-Clearwater, FL
5405               Austin-Round Rock-Georgetown, TX
5406             San Francisco-Oakland-Berkeley, CA
5407                             Kansas City, MO-KS
5408                Dallas-Fort Worth-Arlington, TX
5409          New York-Newark-Jersey City, NY-NJ-PA
5410          New York-Newark-Jersey City, NY-NJ-PA
5411                             Salt Lake City, UT
5412                       New Orleans-Metairie, LA
5413  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5414             San Francisco-Oakland-Berkeley, CA
5415                 Boston-Cambridge-Newton, MA-NH
5416             Chicago-Naperville-Elgin, IL-IN-WI
5417                  Orlando-Kissimmee-Sanford, FL
5418                 Boston-Cambridge-Newton, MA-NH
5419               Austin-Round Rock-Georgetown, TX
5420             Los Angeles-Long Beach-Anaheim, CA
5421                             Kansas City, MO-KS
5422                                 Montgomery, AL
5423                     Denver-Aurora-Lakewood, CO
5424             San Diego-Chula Vista-Carlsbad, CA
5425             Chicago-Naperville-Elgin, IL-IN-WI
5426           Houston-The Woodlands-Sugar Land, TX
5427                       Lansing-East Lansing, MI
5428             San Francisco-Oakland-Berkeley, CA
5429                               St. Louis, MO-IL
5430                                     Juneau, AK
5431        Miami-Fort Lauderdale-Pompano Beach, FL
5432                              Wausau-Weston, WI
5433                                  Asheville, NC
5434                           Dayton-Kettering, OH
5435                                   Santa Fe, NM
5436                      La Crosse-Onalaska, WI-MN
5437                             Killeen-Temple, TX
5438                                     Joplin, MO
5439                    Seattle-Tacoma-Bellevue, WA
5440   Washington-Arlington-Alexandria, DC-VA-MD-WV
5441                                           <NA>
5442    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5443             Los Angeles-Long Beach-Anaheim, CA
5444                                Gainesville, FL
5445                     Denver-Aurora-Lakewood, CO
5446                                     Salina, KS
5447                                   Billings, MT
5448                  Orlando-Kissimmee-Sanford, FL
5449             Chicago-Naperville-Elgin, IL-IN-WI
5450             Chicago-Naperville-Elgin, IL-IN-WI
5451                                    Durango, CO
5452                                   Valdosta, GA
5453                                   New Bern, NC
5454                                   Muskegon, MI
5455                                    Laramie, WY
5456                           Iron Mountain, MI-WI
5457                                  Anchorage, AK
5458                                  Watertown, SD
5459                                 Greenville, NC
5460                                Columbus, GA-AL
5461                                    Saginaw, MI
5462                           Champaign-Urbana, IL
5463                               Jacksonville, NC
5464                 Pensacola-Ferry Pass-Brent, FL
5465                                 Binghamton, NY
5466                                    Saginaw, MI
5467                        Harrisburg-Carlisle, PA
5468                                     Yakima, WA
5469                               Jacksonville, NC
5470                               Fayetteville, NC
5471                                           <NA>
5472                          Kalamazoo-Portage, MI
5473                                Springfield, IL
5474                                Lewiston, ID-WA
5475                              Eureka-Arcata, CA
5476                              State College, PA
5477                                      Ozark, AL
5478                               Lake Charles, LA
5479                                           <NA>
5480                                    Liberal, KS
5481                                           <NA>
5482                                           <NA>
5483                                   Florence, SC
5484                        Watertown-Fort Drum, NY
5485                                    Bemidji, MN
5486                                   Aberdeen, SD
5487                          Kalamazoo-Portage, MI
5488                             Killeen-Temple, TX
5489                                   Gillette, WY
5490                                   Victoria, TX
5491                                  Pocatello, ID
5492                                     Vernal, UT
5493                                  Duluth, MN-WI
5494                                       Hays, KS
5495                                  Lynchburg, VA
5496                                     Alpena, MI
5497                                   Riverton, WY
5498                                   Meridian, MS
5499                              Eureka-Arcata, CA
5500                               Rock Springs, WY
5501                              Fort Smith, AR-OK
5502                         Kennewick-Richland, WA
5503                San Luis Obispo-Paso Robles, CA
5504                        Hermiston-Pendleton, OR
5505                      College Station-Bryan, TX
5506                                 Bellingham, WA
5507                           Sioux City, IA-NE-SD
5508                                    Abilene, TX
5509                                    Dubuque, IA
5510                                     Toledo, OH
5511                                 Alexandria, LA
5512                                           <NA>
5513                                 Clarksburg, WV
5514                                  Rochester, MN
5515                   Prescott Valley-Prescott, AZ
5516                                           <NA>
5517                                   Escanaba, MI
5518                                      Tyler, TX
5519                                 Twin Falls, ID
5520                                Plattsburgh, NY
5521                                   Sheridan, WY
5522                                     Albany, GA
5523                                      Kapaa, HI
5524                                   Escanaba, MI
5525                                   Longview, TX
5526                                 Huntsville, AL
5527                                 St. George, UT
5528                                Bloomington, IL
5529                                           <NA>
5530                                     Monroe, LA
5531                                     Pierre, SD
5532                                           <NA>
5533                                           <NA>
5534                                           <NA>
5535 Nashville-Davidson--Murfreesboro--Franklin, TN
5536        Miami-Fort Lauderdale-Pompano Beach, FL
5537        Minneapolis-St. Paul-Bloomington, MN-WI
5538                                      Tulsa, OK
5539                  San Antonio-New Braunfels, TX
5540                      Cape Coral-Fort Myers, FL
5541                               Jacksonville, FL
5542                     Denver-Aurora-Lakewood, CO
5543             San Francisco-Oakland-Berkeley, CA
5544   Washington-Arlington-Alexandria, DC-VA-MD-WV
5545                               St. Louis, MO-IL
5546                                     Tucson, AZ
5547             San Diego-Chula Vista-Carlsbad, CA
5548               Austin-Round Rock-Georgetown, TX
5549             San Jose-Sunnyvale-Santa Clara, CA
5550                       New Orleans-Metairie, LA
5551           Riverside-San Bernardino-Ontario, CA
5552 Nashville-Davidson--Murfreesboro--Franklin, TN
5553           Riverside-San Bernardino-Ontario, CA
5554             Los Angeles-Long Beach-Anaheim, CA
5555             Los Angeles-Long Beach-Anaheim, CA
5556                Sacramento-Roseville-Folsom, CA
5557            Tampa-St. Petersburg-Clearwater, FL
5558             Chicago-Naperville-Elgin, IL-IN-WI
5559           Atlanta-Sandy Springs-Alpharetta, GA
5560                Dallas-Fort Worth-Arlington, TX
5561                          Manchester-Nashua, NH
5562             Chicago-Naperville-Elgin, IL-IN-WI
5563             Chicago-Naperville-Elgin, IL-IN-WI
5564 Nashville-Davidson--Murfreesboro--Franklin, TN
5565             San Diego-Chula Vista-Carlsbad, CA
5566                  Baltimore-Columbia-Towson, MD
5567 Nashville-Davidson--Murfreesboro--Franklin, TN
5568                  Baltimore-Columbia-Towson, MD
5569            Tampa-St. Petersburg-Clearwater, FL
5570        Miami-Fort Lauderdale-Pompano Beach, FL
5571                           Colorado Springs, CO
5572               Austin-Round Rock-Georgetown, TX
5573                       New Orleans-Metairie, LA
5574                  San Antonio-New Braunfels, TX
5575           Riverside-San Bernardino-Ontario, CA
5576               Austin-Round Rock-Georgetown, TX
5577                     Denver-Aurora-Lakewood, CO
5578             Los Angeles-Long Beach-Anaheim, CA
5579                Sacramento-Roseville-Folsom, CA
5580        Miami-Fort Lauderdale-Pompano Beach, FL
5581            Tampa-St. Petersburg-Clearwater, FL
5582                       New Orleans-Metairie, LA
5583             Los Angeles-Long Beach-Anaheim, CA
5584                Sacramento-Roseville-Folsom, CA
5585                       New Orleans-Metairie, LA
5586                      Phoenix-Mesa-Chandler, AZ
5587                Dallas-Fort Worth-Arlington, TX
5588                               Raleigh-Cary, NC
5589                  San Antonio-New Braunfels, TX
5590             Los Angeles-Long Beach-Anaheim, CA
5591             Los Angeles-Long Beach-Anaheim, CA
5592             Los Angeles-Long Beach-Anaheim, CA
5593        Miami-Fort Lauderdale-Pompano Beach, FL
5594             San Diego-Chula Vista-Carlsbad, CA
5595             San Francisco-Oakland-Berkeley, CA
5596 Nashville-Davidson--Murfreesboro--Franklin, TN
5597                       New Orleans-Metairie, LA
5598             Los Angeles-Long Beach-Anaheim, CA
5599             Los Angeles-Long Beach-Anaheim, CA
5600 Nashville-Davidson--Murfreesboro--Franklin, TN
5601                             Kansas City, MO-KS
5602             Los Angeles-Long Beach-Anaheim, CA
5603           Riverside-San Bernardino-Ontario, CA
5604                                   Columbus, OH
5605  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5606        Miami-Fort Lauderdale-Pompano Beach, FL
5607             Chicago-Naperville-Elgin, IL-IN-WI
5608           Houston-The Woodlands-Sugar Land, TX
5609                      Phoenix-Mesa-Chandler, AZ
5610 Nashville-Davidson--Murfreesboro--Franklin, TN
5611             Los Angeles-Long Beach-Anaheim, CA
5612                               St. Louis, MO-IL
5613           Houston-The Woodlands-Sugar Land, TX
5614             Los Angeles-Long Beach-Anaheim, CA
5615                      Cape Coral-Fort Myers, FL
5616             Los Angeles-Long Beach-Anaheim, CA
5617                             Kansas City, MO-KS
5618               Indianapolis-Carmel-Anderson, IN
5619                  San Antonio-New Braunfels, TX
5620                               Jacksonville, FL
5621                Sacramento-Roseville-Folsom, CA
5622                  Orlando-Kissimmee-Sanford, FL
5623 Nashville-Davidson--Murfreesboro--Franklin, TN
5624          New York-Newark-Jersey City, NY-NJ-PA
5625    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5626                              Oklahoma City, OK
5627          New York-Newark-Jersey City, NY-NJ-PA
5628            Portland-Vancouver-Hillsboro, OR-WA
5629                     Denver-Aurora-Lakewood, CO
5630                             Kansas City, MO-KS
5631               Las Vegas-Henderson-Paradise, NV
5632                               St. Louis, MO-IL
5633                Dallas-Fort Worth-Arlington, TX
5634                    Seattle-Tacoma-Bellevue, WA
5635             San Jose-Sunnyvale-Santa Clara, CA
5636          New York-Newark-Jersey City, NY-NJ-PA
5637                                   Columbus, OH
5638                             Kansas City, MO-KS
5639        Miami-Fort Lauderdale-Pompano Beach, FL
5640             San Diego-Chula Vista-Carlsbad, CA
5641                               Raleigh-Cary, NC
5642                      Phoenix-Mesa-Chandler, AZ
5643                                     Fresno, CA
5644                Dallas-Fort Worth-Arlington, TX
5645                  Baltimore-Columbia-Towson, MD
5646                Dallas-Fort Worth-Arlington, TX
5647                      Cape Coral-Fort Myers, FL
5648 Nashville-Davidson--Murfreesboro--Franklin, TN
5649              Charlotte-Concord-Gastonia, NC-SC
5650   Washington-Arlington-Alexandria, DC-VA-MD-WV
5651                  San Antonio-New Braunfels, TX
5652                                   Columbus, OH
5653             San Francisco-Oakland-Berkeley, CA
5654                               St. Louis, MO-IL
5655        Miami-Fort Lauderdale-Pompano Beach, FL
5656             Los Angeles-Long Beach-Anaheim, CA
5657        Miami-Fort Lauderdale-Pompano Beach, FL
5658                    San Juan-Bayamón-Caguas, PR
5659                                 Charleston, WV
5660                                   Syracuse, NY
5661           Riverside-San Bernardino-Ontario, CA
5662                                           <NA>
5663                                           <NA>
5664                                           <NA>
5665                                 Cedar City, UT
5666                                     Bangor, ME
5667                                           <NA>
5668                                           <NA>
5669                                  Watertown, SD
5670                                           <NA>
5671  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5672                         Eugene-Springfield, OR
5673                                 Alexandria, LA
5674                         Ogdensburg-Massena, NY
5675                                   Staunton, VA
5676                       Waterloo-Cedar Falls, IA
5677                                       Elko, NV
5678                                    Midland, TX
5679                                      Akron, OH
5680                      Brownsville-Harlingen, TX
5681                           Sioux City, IA-NE-SD
5682                          Fort Leonard Wood, MO
5683     Virginia Beach-Norfolk-Newport News, VA-NC
5684                                     Joplin, MO
5685           Riverside-San Bernardino-Ontario, CA
5686                                     Pueblo, CO
5687                                     Lawton, OK
5688                                     Joplin, MO
5689                           Cincinnati, OH-KY-IN
5690                            Charlottesville, VA
5691  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5692                                   Bismarck, ND
5693                                     Peoria, IL
5694                                    Del Rio, TX
5695                                           <NA>
5696                                     Salina, KS
5697                                 Dodge City, KS
5698                                 Eau Claire, WI
5699                                   Cheyenne, WY
5700                                 Fort Wayne, IN
5701                                    El Paso, TX
5702                           Sault Ste. Marie, MI
5703                                   Staunton, VA
5704                                       Reno, NV
5705                              State College, PA
5706                                  Duluth, MN-WI
5707                                 Boise City, ID
5708                                     Casper, WY
5709                                       Hilo, HI
5710                          Carbondale-Marion, IL
5711                                Scottsbluff, NE
5712                                      Kapaa, HI
5713                          Carbondale-Marion, IL
5714                                  Quincy, IL-MO
5715                   Prescott Valley-Prescott, AZ
5716                                           <NA>
5717                                 Kirksville, MO
5718                                 Paducah, KY-IL
5719                          Lexington-Fayette, KY
5720                                 Fort Dodge, IA
5721                                       Waco, TX
5722                                Spartanburg, SC
5723           Riverside-San Bernardino-Ontario, CA
5724                       New Orleans-Metairie, LA
5725                          Manchester-Nashua, NH
5726                     Spokane-Spokane Valley, WA
5727                                    Bozeman, MT
5728                    Omaha-Council Bluffs, NE-IA
5729             San Francisco-Oakland-Berkeley, CA
5730                          Steamboat Springs, CO
5731             Los Angeles-Long Beach-Anaheim, CA
5732                    San Juan-Bayamón-Caguas, PR
5733                  San Antonio-New Braunfels, TX
5734            Tampa-St. Petersburg-Clearwater, FL
5735            Tampa-St. Petersburg-Clearwater, FL
5736                      Cape Coral-Fort Myers, FL
5737                Sacramento-Roseville-Folsom, CA
5738                             Kansas City, MO-KS
5739         Deltona-Daytona Beach-Ormond Beach, FL
5740                              Traverse City, MI
5741                                    Lincoln, NE
5742              North Port-Sarasota-Bradenton, FL
5743                               Jacksonville, FL
5744        Miami-Fort Lauderdale-Pompano Beach, FL
5745   Washington-Arlington-Alexandria, DC-VA-MD-WV
5746                                    El Paso, TX
5747             Los Angeles-Long Beach-Anaheim, CA
5748       Little Rock-North Little Rock-Conway, AR
5749              North Port-Sarasota-Bradenton, FL
5750               Austin-Round Rock-Georgetown, TX
5751                     Spokane-Spokane Valley, WA
5752            Tampa-St. Petersburg-Clearwater, FL
5753                                Albuquerque, NM
5754                                     Fresno, CA
5755                                     Tucson, AZ
5756          New York-Newark-Jersey City, NY-NJ-PA
5757                                    El Paso, TX
5758                                      Tulsa, OK
5759                      Cape Coral-Fort Myers, FL
5760                                    El Paso, TX
5761                       New Orleans-Metairie, LA
5762                       New Orleans-Metairie, LA
5763                 Pensacola-Ferry Pass-Brent, FL
5764                  San Antonio-New Braunfels, TX
5765                                    Wichita, KS
5766                                    El Paso, TX
5767                                Albuquerque, NM
5768              North Port-Sarasota-Bradenton, FL
5769               Austin-Round Rock-Georgetown, TX
5770                    San Juan-Bayamón-Caguas, PR
5771                    San Juan-Bayamón-Caguas, PR
5772                                   Richmond, VA
5773                                     Tucson, AZ
5774                                     Tucson, AZ
5775                                Albuquerque, NM
5776             San Francisco-Oakland-Berkeley, CA
5777                             Kansas City, MO-KS
5778             Los Angeles-Long Beach-Anaheim, CA
5779                    San Juan-Bayamón-Caguas, PR
5780                                    El Paso, TX
5781                    Omaha-Council Bluffs, NE-IA
5782                                       Reno, NV
5783                          Steamboat Springs, CO
5784                      Providence-Warwick, RI-MA
5785                                    Wichita, KS
5786                              Oklahoma City, OK
5787           Riverside-San Bernardino-Ontario, CA
5788                     Denver-Aurora-Lakewood, CO
5789                  Santa Maria-Santa Barbara, CA
5790                    Albany-Schenectady-Troy, NY
5791                      Cape Coral-Fort Myers, FL
5792                                    Bozeman, MT
5793                                     Hailey, ID
5794                Charleston-North Charleston, SC
5795             Los Angeles-Long Beach-Anaheim, CA
5796                                 Boise City, ID
5797                    Seattle-Tacoma-Bellevue, WA
5798            Portland-Vancouver-Hillsboro, OR-WA
5799             Los Angeles-Long Beach-Anaheim, CA
5800                                 Clarksburg, WV
5801               Las Vegas-Henderson-Paradise, NV
5802                          Steamboat Springs, CO
5803                       New Orleans-Metairie, LA
5804   Washington-Arlington-Alexandria, DC-VA-MD-WV
5805                                   Columbus, OH
5806                  San Antonio-New Braunfels, TX
5807                                       Reno, NV
5808           Houston-The Woodlands-Sugar Land, TX
5809                  Baltimore-Columbia-Towson, MD
5810                    South Bend-Mishawaka, IN-MI
5811             San Francisco-Oakland-Berkeley, CA
5812                          Birmingham-Hoover, AL
5813                                    Bozeman, MT
5814                                Albuquerque, NM
5815             Los Angeles-Long Beach-Anaheim, CA
5816                      Cape Coral-Fort Myers, FL
5817                         Eugene-Springfield, OR
5818                      Providence-Warwick, RI-MA
5819                                Spartanburg, SC
5820                 Des Moines-West Des Moines, IA
5821                          Birmingham-Hoover, AL
5822             Fayetteville-Springdale-Rogers, AR
5823                    Omaha-Council Bluffs, NE-IA
5824                           Colorado Springs, CO
5825        Miami-Fort Lauderdale-Pompano Beach, FL
5826                    San Juan-Bayamón-Caguas, PR
5827               Indianapolis-Carmel-Anderson, IN
5828                      Providence-Warwick, RI-MA
5829                           Colorado Springs, CO
5830                  San Antonio-New Braunfels, TX
5831                                     Tucson, AZ
5832                                   Amarillo, TX
5833        Miami-Fort Lauderdale-Pompano Beach, FL
5834                          Steamboat Springs, CO
5835             Los Angeles-Long Beach-Anaheim, CA
5836            Tampa-St. Petersburg-Clearwater, FL
5837                                    Lubbock, TX
5838                        Buffalo-Cheektowaga, NY
5839                                   Columbus, OH
5840                                    El Paso, TX
5841                    San Juan-Bayamón-Caguas, PR
5842                           Cleveland-Elyria, OH
5843             San Francisco-Oakland-Berkeley, CA
5844             San Jose-Sunnyvale-Santa Clara, CA
5845             San Diego-Chula Vista-Carlsbad, CA
5846                Sacramento-Roseville-Folsom, CA
5847                                Panama City, FL
5848                                   Richmond, VA
5849             San Diego-Chula Vista-Carlsbad, CA
5850                    Omaha-Council Bluffs, NE-IA
5851                                Spartanburg, SC
5852        Miami-Fort Lauderdale-Pompano Beach, FL
5853                              Memphis, TN-MS-AR
5854                 Boston-Cambridge-Newton, MA-NH
5855          Hartford-East Hartford-Middletown, CT
5856           Houston-The Woodlands-Sugar Land, TX
5857                                      Tulsa, OK
5858                                    Lubbock, TX
5859                    Albany-Schenectady-Troy, NY
5860                                   Syracuse, NY
5861                             Salt Lake City, UT
5862                    Omaha-Council Bluffs, NE-IA
5863                        Buffalo-Cheektowaga, NY
5864                              Oklahoma City, OK
5865                      Brownsville-Harlingen, TX
5866             San Francisco-Oakland-Berkeley, CA
5867             San Jose-Sunnyvale-Santa Clara, CA
5868                Sacramento-Roseville-Folsom, CA
5869                  Santa Maria-Santa Barbara, CA
5870                    Albany-Schenectady-Troy, NY
5871             San Francisco-Oakland-Berkeley, CA
5872        Minneapolis-St. Paul-Bloomington, MN-WI
5873                       New Orleans-Metairie, LA
5874          New York-Newark-Jersey City, NY-NJ-PA
5875     Virginia Beach-Norfolk-Newport News, VA-NC
5876                                   Columbus, OH
5877                                      Tulsa, OK
5878                             Kansas City, MO-KS
5879               Las Vegas-Henderson-Paradise, NV
5880             San Diego-Chula Vista-Carlsbad, CA
5881             Los Angeles-Long Beach-Anaheim, CA
5882                 Boston-Cambridge-Newton, MA-NH
5883                               St. Louis, MO-IL
5884                                   Amarillo, TX
5885                  San Antonio-New Braunfels, TX
5886          New York-Newark-Jersey City, NY-NJ-PA
5887        Miami-Fort Lauderdale-Pompano Beach, FL
5888                                   Columbus, OH
5889              North Port-Sarasota-Bradenton, FL
5890             San Diego-Chula Vista-Carlsbad, CA
5891                                       Reno, NV
5892                     Spokane-Spokane Valley, WA
5893           Riverside-San Bernardino-Ontario, CA
5894   Washington-Arlington-Alexandria, DC-VA-MD-WV
5895             San Francisco-Oakland-Berkeley, CA
5896                                       Reno, NV
5897             Los Angeles-Long Beach-Anaheim, CA
5898           Riverside-San Bernardino-Ontario, CA
5899                    Portland-South Portland, ME
5900                                 Boise City, ID
5901             San Francisco-Oakland-Berkeley, CA
5902             San Francisco-Oakland-Berkeley, CA
5903                       New Orleans-Metairie, LA
5904             San Jose-Sunnyvale-Santa Clara, CA
5905                                Panama City, FL
5906                                    Lubbock, TX
5907                       New Orleans-Metairie, LA
5908                              Oklahoma City, OK
5909                    San Juan-Bayamón-Caguas, PR
5910                  Baltimore-Columbia-Towson, MD
5911                           Colorado Springs, CO
5912             Los Angeles-Long Beach-Anaheim, CA
5913             San Diego-Chula Vista-Carlsbad, CA
5914        Miami-Fort Lauderdale-Pompano Beach, FL
5915            Tampa-St. Petersburg-Clearwater, FL
5916                                      Tulsa, OK
5917                             Kansas City, MO-KS
5918                      Cape Coral-Fort Myers, FL
5919                 Pensacola-Ferry Pass-Brent, FL
5920                      Grand Rapids-Kentwood, MI
5921                     Spokane-Spokane Valley, WA
5922             Los Angeles-Long Beach-Anaheim, CA
5923             Los Angeles-Long Beach-Anaheim, CA
5924                  San Antonio-New Braunfels, TX
5925              North Port-Sarasota-Bradenton, FL
5926                             Salt Lake City, UT
5927                  Orlando-Kissimmee-Sanford, FL
5928                    Omaha-Council Bluffs, NE-IA
5929             Los Angeles-Long Beach-Anaheim, CA
5930                Sacramento-Roseville-Folsom, CA
5931                    Omaha-Council Bluffs, NE-IA
5932                                   Columbus, OH
5933                              Oklahoma City, OK
5934        Miami-Fort Lauderdale-Pompano Beach, FL
5935                               Jacksonville, FL
5936                  San Antonio-New Braunfels, TX
5937                               Jacksonville, FL
5938                                    Lubbock, TX
5939 Nashville-Davidson--Murfreesboro--Franklin, TN
5940                                Sioux Falls, SD
5941 Nashville-Davidson--Murfreesboro--Franklin, TN
5942                  San Antonio-New Braunfels, TX
5943             San Jose-Sunnyvale-Santa Clara, CA
5944                                       Reno, NV
5945             Los Angeles-Long Beach-Anaheim, CA
5946                                Albuquerque, NM
5947          Hartford-East Hartford-Middletown, CT
5948                                      Tulsa, OK
5949                                 Boise City, ID
5950                                     Tucson, AZ
5951                               Raleigh-Cary, NC
5952                                   Savannah, GA
5953                                      Tulsa, OK
5954        Miami-Fort Lauderdale-Pompano Beach, FL
5955             San Jose-Sunnyvale-Santa Clara, CA
5956                  San Antonio-New Braunfels, TX
5957             San Jose-Sunnyvale-Santa Clara, CA
5958                                     Tucson, AZ
5959                         Milwaukee-Waukesha, WI
5960             San Diego-Chula Vista-Carlsbad, CA
5961                           Colorado Springs, CO
5962                 Boston-Cambridge-Newton, MA-NH
5963     Virginia Beach-Norfolk-Newport News, VA-NC
5964                      Brownsville-Harlingen, TX
5965           Riverside-San Bernardino-Ontario, CA
5966                                 Boise City, ID
5967                 Pensacola-Ferry Pass-Brent, FL
5968             Los Angeles-Long Beach-Anaheim, CA
5969             Los Angeles-Long Beach-Anaheim, CA
5970                              Oklahoma City, OK
5971                 Boston-Cambridge-Newton, MA-NH
5972  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5973                                   Columbus, OH
5974           Riverside-San Bernardino-Ontario, CA
5975             Louisville/Jefferson County, KY-IN
5976                                      Tulsa, OK
5977          Hartford-East Hartford-Middletown, CT
5978              North Port-Sarasota-Bradenton, FL
5979                       New Orleans-Metairie, LA
5980                                   Richmond, VA
5981                  San Antonio-New Braunfels, TX
5982                                     Fresno, CA
5983                           Cleveland-Elyria, OH
5984                          Birmingham-Hoover, AL
5985                Sacramento-Roseville-Folsom, CA
5986          New York-Newark-Jersey City, NY-NJ-PA
5987     Virginia Beach-Norfolk-Newport News, VA-NC
5988                    Detroit-Warren-Dearborn, MI
5989          New York-Newark-Jersey City, NY-NJ-PA
5990          Hartford-East Hartford-Middletown, CT
5991                              Oklahoma City, OK
5992                  Orlando-Kissimmee-Sanford, FL
5993             San Francisco-Oakland-Berkeley, CA
5994                                    Lincoln, NE
5995                               St. Louis, MO-IL
5996                                Panama City, FL
5997                                Albuquerque, NM
5998           Riverside-San Bernardino-Ontario, CA
5999             Los Angeles-Long Beach-Anaheim, CA
6000                                    Edwards, CO
6001             San Jose-Sunnyvale-Santa Clara, CA
6002               Las Vegas-Henderson-Paradise, NV
6003                                    Bozeman, MT
6004          New York-Newark-Jersey City, NY-NJ-PA
6005             San Francisco-Oakland-Berkeley, CA
6006  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6007                             Kansas City, MO-KS
6008        Miami-Fort Lauderdale-Pompano Beach, FL
6009                          Birmingham-Hoover, AL
6010                      Providence-Warwick, RI-MA
6011             Louisville/Jefferson County, KY-IN
6012                                    Lubbock, TX
6013                    Omaha-Council Bluffs, NE-IA
6014                             Kansas City, MO-KS
6015                     Spokane-Spokane Valley, WA
6016       Little Rock-North Little Rock-Conway, AR
6017                      Grand Rapids-Kentwood, MI
6018             San Diego-Chula Vista-Carlsbad, CA
6019                      Brownsville-Harlingen, TX
6020        Miami-Fort Lauderdale-Pompano Beach, FL
6021             San Francisco-Oakland-Berkeley, CA
6022                         Milwaukee-Waukesha, WI
6023                                Albuquerque, NM
6024                                   Columbus, OH
6025          Hartford-East Hartford-Middletown, CT
6026                           Colorado Springs, CO
6027             San Jose-Sunnyvale-Santa Clara, CA
6028         Crestview-Fort Walton Beach-Destin, FL
6029           Houston-The Woodlands-Sugar Land, TX
6030             Los Angeles-Long Beach-Anaheim, CA
6031                                    El Paso, TX
6032          New York-Newark-Jersey City, NY-NJ-PA
6033                             Salt Lake City, UT
6034                               St. Louis, MO-IL
6035                                   Columbus, OH
6036                           Cleveland-Elyria, OH
6037                               Raleigh-Cary, NC
6038             San Diego-Chula Vista-Carlsbad, CA
6039                               Jacksonville, FL
6040                                  Rochester, NY
6041                     Spokane-Spokane Valley, WA
6042                                       Reno, NV
6043        Miami-Fort Lauderdale-Pompano Beach, FL
6044                               St. Louis, MO-IL
6045                        Buffalo-Cheektowaga, NY
6046               Las Vegas-Henderson-Paradise, NV
6047                       New Orleans-Metairie, LA
6048                    Detroit-Warren-Dearborn, MI
6049                  Baltimore-Columbia-Towson, MD
6050                               Jacksonville, FL
6051                         Eugene-Springfield, OR
6052                                     Fresno, CA
6053               Austin-Round Rock-Georgetown, TX
6054                                 Boise City, ID
6055                                   Amarillo, TX
6056        Miami-Fort Lauderdale-Pompano Beach, FL
6057                                       Reno, NV
6058                                    Durango, CO
6059                                Albuquerque, NM
6060         Crestview-Fort Walton Beach-Destin, FL
6061                Charleston-North Charleston, SC
6062                  San Antonio-New Braunfels, TX
6063              North Port-Sarasota-Bradenton, FL
6064             Los Angeles-Long Beach-Anaheim, CA
6065                  Santa Maria-Santa Barbara, CA
6066                                      Tulsa, OK
6067              North Port-Sarasota-Bradenton, FL
6068             Los Angeles-Long Beach-Anaheim, CA
6069  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6070                                    Bozeman, MT
6071                      Grand Rapids-Kentwood, MI
6072                  Orlando-Kissimmee-Sanford, FL
6073               Austin-Round Rock-Georgetown, TX
6074                                     Tucson, AZ
6075                               Jacksonville, FL
6076                                    Bozeman, MT
6077                                Albuquerque, NM
6078                              Oklahoma City, OK
6079                                   Savannah, GA
6080       Little Rock-North Little Rock-Conway, AR
6081                              Oklahoma City, OK
6082                               Raleigh-Cary, NC
6083                                     Fresno, CA
6084                       New Orleans-Metairie, LA
6085                      Grand Rapids-Kentwood, MI
6086                    San Juan-Bayamón-Caguas, PR
6087                       New Orleans-Metairie, LA
6088           Houston-The Woodlands-Sugar Land, TX
6089                                  Rochester, NY
6090                 Pensacola-Ferry Pass-Brent, FL
6091                                    Bozeman, MT
6092   Washington-Arlington-Alexandria, DC-VA-MD-WV
6093                Charleston-North Charleston, SC
6094 Nashville-Davidson--Murfreesboro--Franklin, TN
6095                Sacramento-Roseville-Folsom, CA
6096                          Steamboat Springs, CO
6097            Tampa-St. Petersburg-Clearwater, FL
6098                    San Juan-Bayamón-Caguas, PR
6099             Los Angeles-Long Beach-Anaheim, CA
6100        Miami-Fort Lauderdale-Pompano Beach, FL
6101                               Raleigh-Cary, NC
6102                    Detroit-Warren-Dearborn, MI
6103                                   Savannah, GA
6104           Riverside-San Bernardino-Ontario, CA
6105                     Spokane-Spokane Valley, WA
6106        Miami-Fort Lauderdale-Pompano Beach, FL
6107               Indianapolis-Carmel-Anderson, IN
6108             Chicago-Naperville-Elgin, IL-IN-WI
6109                     Spokane-Spokane Valley, WA
6110     Virginia Beach-Norfolk-Newport News, VA-NC
6111             Los Angeles-Long Beach-Anaheim, CA
6112         Crestview-Fort Walton Beach-Destin, FL
6113                Dallas-Fort Worth-Arlington, TX
6114                              Memphis, TN-MS-AR
6115              Charlotte-Concord-Gastonia, NC-SC
6116                     Spokane-Spokane Valley, WA
6117             Los Angeles-Long Beach-Anaheim, CA
6118           Atlanta-Sandy Springs-Alpharetta, GA
6119                                       Reno, NV
6120                     Spokane-Spokane Valley, WA
6121                                    El Paso, TX
6122                                Albuquerque, NM
6123                                   Savannah, GA
6124                                    Midland, TX
6125             Los Angeles-Long Beach-Anaheim, CA
6126                    Albany-Schenectady-Troy, NY
6127                                       Reno, NV
6128                    Albany-Schenectady-Troy, NY
6129                           Colorado Springs, CO
6130          New York-Newark-Jersey City, NY-NJ-PA
6131                           Colorado Springs, CO
6132                         Milwaukee-Waukesha, WI
6133                    Albany-Schenectady-Troy, NY
6134        Miami-Fort Lauderdale-Pompano Beach, FL
6135                             Salt Lake City, UT
6136                                   Columbus, OH
6137                     Denver-Aurora-Lakewood, CO
6138                               Raleigh-Cary, NC
6139                                Spartanburg, SC
6140                                   Amarillo, TX
6141                    Omaha-Council Bluffs, NE-IA
6142             Los Angeles-Long Beach-Anaheim, CA
6143                    Albany-Schenectady-Troy, NY
6144                Charleston-North Charleston, SC
6145             Los Angeles-Long Beach-Anaheim, CA
6146                                Panama City, FL
6147                                    Wichita, KS
6148    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6149                    Omaha-Council Bluffs, NE-IA
6150             Chicago-Naperville-Elgin, IL-IN-WI
6151                    San Juan-Bayamón-Caguas, PR
6152                              Oklahoma City, OK
6153                    Omaha-Council Bluffs, NE-IA
6154                    Albany-Schenectady-Troy, NY
6155                              Memphis, TN-MS-AR
6156                              Oklahoma City, OK
6157                              Memphis, TN-MS-AR
6158                               Jacksonville, FL
6159                           Colorado Springs, CO
6160                                       Reno, NV
6161                                 Boise City, ID
6162        Minneapolis-St. Paul-Bloomington, MN-WI
6163                 Boston-Cambridge-Newton, MA-NH
6164                                       Reno, NV
6165            Tampa-St. Petersburg-Clearwater, FL
6166        Miami-Fort Lauderdale-Pompano Beach, FL
6167                              Memphis, TN-MS-AR
6168             Los Angeles-Long Beach-Anaheim, CA
6169          Hartford-East Hartford-Middletown, CT
6170                                    Wichita, KS
6171                      Providence-Warwick, RI-MA
6172             Louisville/Jefferson County, KY-IN
6173           Atlanta-Sandy Springs-Alpharetta, GA
6174                                Albuquerque, NM
6175             Los Angeles-Long Beach-Anaheim, CA
6176             San Francisco-Oakland-Berkeley, CA
6177          New York-Newark-Jersey City, NY-NJ-PA
6178                                     Tucson, AZ
6179                                Albuquerque, NM
6180                           Cleveland-Elyria, OH
6181                      Phoenix-Mesa-Chandler, AZ
6182        Minneapolis-St. Paul-Bloomington, MN-WI
6183                               St. Louis, MO-IL
6184                       New Orleans-Metairie, LA
6185            Portland-Vancouver-Hillsboro, OR-WA
6186 Nashville-Davidson--Murfreesboro--Franklin, TN
6187     Virginia Beach-Norfolk-Newport News, VA-NC
6188             Chicago-Naperville-Elgin, IL-IN-WI
6189                             Kansas City, MO-KS
6190                                 Boise City, ID
6191                                      Tulsa, OK
6192                                   Columbus, OH
6193                                Panama City, FL
6194        Miami-Fort Lauderdale-Pompano Beach, FL
6195            Portland-Vancouver-Hillsboro, OR-WA
6196     Virginia Beach-Norfolk-Newport News, VA-NC
6197           Riverside-San Bernardino-Ontario, CA
6198                                     Juneau, AK
6199                    Atlantic City-Hammonton, NJ
6200          New York-Newark-Jersey City, NY-NJ-PA
6201                                     Tucson, AZ
6202        Miami-Fort Lauderdale-Pompano Beach, FL
6203             San Francisco-Oakland-Berkeley, CA
6204             San Francisco-Oakland-Berkeley, CA
6205               Austin-Round Rock-Georgetown, TX
6206               Indianapolis-Carmel-Anderson, IN
6207        Miami-Fort Lauderdale-Pompano Beach, FL
6208                                       Reno, NV
6209                                 Boise City, ID
6210                                    El Paso, TX
6211           Riverside-San Bernardino-Ontario, CA
6212                         Eugene-Springfield, OR
6213                         Eugene-Springfield, OR
6214                        Buffalo-Cheektowaga, NY
6215                                      Tulsa, OK
6216                             Kansas City, MO-KS
6217                                   Savannah, GA
6218                      Grand Rapids-Kentwood, MI
6219             San Jose-Sunnyvale-Santa Clara, CA
6220          New York-Newark-Jersey City, NY-NJ-PA
6221                    Seattle-Tacoma-Bellevue, WA
6222                                           <NA>
6223                          Birmingham-Hoover, AL
6224                    Seattle-Tacoma-Bellevue, WA
6225                              Memphis, TN-MS-AR
6226                       New Orleans-Metairie, LA
6227                      Brownsville-Harlingen, TX
6228                Charleston-North Charleston, SC
6229 Nashville-Davidson--Murfreesboro--Franklin, TN
6230                                    El Paso, TX
6231              Charlotte-Concord-Gastonia, NC-SC
6232             Los Angeles-Long Beach-Anaheim, CA
6233  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6234                                   Savannah, GA
6235                                       Reno, NV
6236           Riverside-San Bernardino-Ontario, CA
6237                      Cape Coral-Fort Myers, FL
6238               Las Vegas-Henderson-Paradise, NV
6239                Sacramento-Roseville-Folsom, CA
6240                               Raleigh-Cary, NC
6241                               Raleigh-Cary, NC
6242                      Cape Coral-Fort Myers, FL
6243                                    El Paso, TX
6244  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6245                         Eugene-Springfield, OR
6246                                     Tucson, AZ
6247             Los Angeles-Long Beach-Anaheim, CA
6248                             Kansas City, MO-KS
6249                                    Midland, TX
6250                      Cape Coral-Fort Myers, FL
6251           Riverside-San Bernardino-Ontario, CA
6252         Crestview-Fort Walton Beach-Destin, FL
6253                               Raleigh-Cary, NC
6254                                   Sikeston, MO
6255                                Albuquerque, NM
6256                                 Pittsburgh, PA
6257                             Salt Lake City, UT
6258                         Milwaukee-Waukesha, WI
6259                    Omaha-Council Bluffs, NE-IA
6260              North Port-Sarasota-Bradenton, FL
6261                  San Antonio-New Braunfels, TX
6262                                Albuquerque, NM
6263                           Cleveland-Elyria, OH
6264     Virginia Beach-Norfolk-Newport News, VA-NC
6265                             Kansas City, MO-KS
6266                    San Juan-Bayamón-Caguas, PR
6267                        Buffalo-Cheektowaga, NY
6268                                 Bellingham, WA
6269                         Milwaukee-Waukesha, WI
6270                                    El Paso, TX
6271           Houston-The Woodlands-Sugar Land, TX
6272                         Milwaukee-Waukesha, WI
6273                                      Akron, OH
6274                                    Bozeman, MT
6275                                 Pittsburgh, PA
6276             San Francisco-Oakland-Berkeley, CA
6277                                     Fresno, CA
6278                      Brownsville-Harlingen, TX
6279                                    Jackson, MS
6280                    Albany-Schenectady-Troy, NY
6281                              Oklahoma City, OK
6282                              Oklahoma City, OK
6283           Riverside-San Bernardino-Ontario, CA
6284                                Panama City, FL
6285                  San Antonio-New Braunfels, TX
6286                                    Midland, TX
6287             San Francisco-Oakland-Berkeley, CA
6288                     Spokane-Spokane Valley, WA
6289                                Panama City, FL
6290   Washington-Arlington-Alexandria, DC-VA-MD-WV
6291                    Omaha-Council Bluffs, NE-IA
6292                      Providence-Warwick, RI-MA
6293               Indianapolis-Carmel-Anderson, IN
6294                           Cleveland-Elyria, OH
6295                 Pensacola-Ferry Pass-Brent, FL
6296                  Orlando-Kissimmee-Sanford, FL
6297                      Grand Rapids-Kentwood, MI
6298             Los Angeles-Long Beach-Anaheim, CA
6299       Little Rock-North Little Rock-Conway, AR
6300           Riverside-San Bernardino-Ontario, CA
6301                  Santa Maria-Santa Barbara, CA
6302                              Memphis, TN-MS-AR
6303                    Detroit-Warren-Dearborn, MI
6304                    Omaha-Council Bluffs, NE-IA
6305                    Omaha-Council Bluffs, NE-IA
6306                    Omaha-Council Bluffs, NE-IA
6307                    Albany-Schenectady-Troy, NY
6308                                 Pittsburgh, PA
6309                      Grand Rapids-Kentwood, MI
6310              North Port-Sarasota-Bradenton, FL
6311        Minneapolis-St. Paul-Bloomington, MN-WI
6312                      Brownsville-Harlingen, TX
6313                                      Tulsa, OK
6314          New York-Newark-Jersey City, NY-NJ-PA
6315   Washington-Arlington-Alexandria, DC-VA-MD-WV
6316                                Panama City, FL
6317                    Detroit-Warren-Dearborn, MI
6318       Little Rock-North Little Rock-Conway, AR
6319                                       Reno, NV
6320                          Manchester-Nashua, NH
6321                          Manchester-Nashua, NH
6322                                    Bozeman, MT
6323             San Francisco-Oakland-Berkeley, CA
6324             Louisville/Jefferson County, KY-IN
6325                           Cincinnati, OH-KY-IN
6326                                    Midland, TX
6327                                   Montrose, CO
6328                 Des Moines-West Des Moines, IA
6329          Hartford-East Hartford-Middletown, CT
6330    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6331                  San Antonio-New Braunfels, TX
6332                                    Jackson, MS
6333               Indianapolis-Carmel-Anderson, IN
6334                                    Jackson, MS
6335                                      Tulsa, OK
6336               Austin-Round Rock-Georgetown, TX
6337                         Milwaukee-Waukesha, WI
6338             Chicago-Naperville-Elgin, IL-IN-WI
6339                             Salt Lake City, UT
6340   Washington-Arlington-Alexandria, DC-VA-MD-WV
6341                                   Columbus, OH
6342                              Oklahoma City, OK
6343                      Grand Rapids-Kentwood, MI
6344                           Cincinnati, OH-KY-IN
6345                                Panama City, FL
6346 Nashville-Davidson--Murfreesboro--Franklin, TN
6347                               St. Louis, MO-IL
6348                             Kansas City, MO-KS
6349                                    Bozeman, MT
6350                             Salt Lake City, UT
6351       Little Rock-North Little Rock-Conway, AR
6352                 Des Moines-West Des Moines, IA
6353          New York-Newark-Jersey City, NY-NJ-PA
6354             San Francisco-Oakland-Berkeley, CA
6355                    San Juan-Bayamón-Caguas, PR
6356                    Omaha-Council Bluffs, NE-IA
6357                          Birmingham-Hoover, AL
6358        Minneapolis-St. Paul-Bloomington, MN-WI
6359                          Manchester-Nashua, NH
6360                             Urban Honolulu, HI
6361                               Raleigh-Cary, NC
6362                          Manchester-Nashua, NH
6363                  San Antonio-New Braunfels, TX
6364                         Milwaukee-Waukesha, WI
6365                                      Tulsa, OK
6366        Miami-Fort Lauderdale-Pompano Beach, FL
6367          New York-Newark-Jersey City, NY-NJ-PA
6368                                    Jackson, MS
6369                       New Orleans-Metairie, LA
6370                                Albuquerque, NM
6371                Charleston-North Charleston, SC
6372       Little Rock-North Little Rock-Conway, AR
6373          New York-Newark-Jersey City, NY-NJ-PA
6374             Los Angeles-Long Beach-Anaheim, CA
6375             Los Angeles-Long Beach-Anaheim, CA
6376            Portland-Vancouver-Hillsboro, OR-WA
6377                                 Boise City, ID
6378       Little Rock-North Little Rock-Conway, AR
6379                                  Rochester, NY
6380                                Panama City, FL
6381                                   Savannah, GA
6382             Louisville/Jefferson County, KY-IN
6383                 Pensacola-Ferry Pass-Brent, FL
6384                        Buffalo-Cheektowaga, NY
6385               Indianapolis-Carmel-Anderson, IN
6386                      Brownsville-Harlingen, TX
6387                               Raleigh-Cary, NC
6388                 Pensacola-Ferry Pass-Brent, FL
6389               Austin-Round Rock-Georgetown, TX
6390             Los Angeles-Long Beach-Anaheim, CA
6391                Sacramento-Roseville-Folsom, CA
6392                         Milwaukee-Waukesha, WI
6393           Riverside-San Bernardino-Ontario, CA
6394           Riverside-San Bernardino-Ontario, CA
6395                                    Wichita, KS
6396                                 Pittsburgh, PA
6397                               Jacksonville, FL
6398                         Milwaukee-Waukesha, WI
6399                    Portland-South Portland, ME
6400            Tampa-St. Petersburg-Clearwater, FL
6401           Houston-The Woodlands-Sugar Land, TX
6402          New York-Newark-Jersey City, NY-NJ-PA
6403        Miami-Fort Lauderdale-Pompano Beach, FL
6404        Miami-Fort Lauderdale-Pompano Beach, FL
6405                                Spartanburg, SC
6406                 Boston-Cambridge-Newton, MA-NH
6407                                    Midland, TX
6408                                   Savannah, GA
6409                        Buffalo-Cheektowaga, NY
6410                                 Mason City, IA
6411                                    Decatur, IL
6412                                  Jamestown, ND
6413                                Sioux Falls, SD
6414                                 Boise City, ID
6415                                       Reno, NV
6416                Hilton Head Island-Bluffton, SC
6417                                 Stillwater, OK
6418                                 Charleston, WV
6419                                           <NA>
6420                    Portland-South Portland, ME
6421                        Buffalo-Cheektowaga, NY
6422                                 Twin Falls, ID
6423          New York-Newark-Jersey City, NY-NJ-PA
6424                                  Kalispell, MT
6425                               North Platte, NE
6426        Miami-Fort Lauderdale-Pompano Beach, FL
6427                                    Bozeman, MT
6428                              Traverse City, MI
6429                                    Wichita, KS
6430                                 Fort Dodge, IA
6431                                     Hailey, ID
6432                                   Missoula, MT
6433                                  Fairbanks, AK
6434                                     Laurel, MS
6435                           Champaign-Urbana, IL
6436                        Buffalo-Cheektowaga, NY
6437                                 Eau Claire, WI
6438        Miami-Fort Lauderdale-Pompano Beach, FL
6439                                  Asheville, NC
6440                              Memphis, TN-MS-AR
6441                 Boston-Cambridge-Newton, MA-NH
6442                                   Billings, MT
6443                                       Bend, OR
6444                                  Johnstown, PA
6445                                           <NA>
6446                                  Green Bay, WI
6447                                    Lubbock, TX
6448        Miami-Fort Lauderdale-Pompano Beach, FL
6449                                Spartanburg, SC
6450                                 Lebanon, NH-VT
6451                                   Columbia, SC
6452                      Grand Rapids-Kentwood, MI
6453                                  Quincy, IL-MO
6454                         Milwaukee-Waukesha, WI
6455                      Cape Coral-Fort Myers, FL
6456                                   Syracuse, NY
6457                    Albany-Schenectady-Troy, NY
6458                      Providence-Warwick, RI-MA
6459                                    Lubbock, TX
6460                                      Tulsa, OK
6461                                    Madison, WI
6462                                       Reno, NV
6463                           Cleveland-Elyria, OH
6464                           Colorado Springs, CO
6465                               Worcester, MA-CT
6466            Portland-Vancouver-Hillsboro, OR-WA
6467                                   Richmond, VA
6468                    Atlantic City-Hammonton, NJ
6469                                     Toledo, OH
6470                             Corpus Christi, TX
6471     Virginia Beach-Norfolk-Newport News, VA-NC
6472                                           <NA>
6473                                      Tulsa, OK
6474                                      Akron, OH
6475                                   Amarillo, TX
6476                                Great Falls, MT
6477                Sacramento-Roseville-Folsom, CA
6478                                           <NA>
6479                Burlington-South Burlington, VT
6480                                           <NA>
6481                    Seattle-Tacoma-Bellevue, WA
6482                                  Owensboro, KY
6483                                   Richmond, VA
6484                Burlington-South Burlington, VT
6485                    Atlantic City-Hammonton, NJ
6486  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6487           Atlanta-Sandy Springs-Alpharetta, GA
6488                        Buffalo-Cheektowaga, NY
6489             Los Angeles-Long Beach-Anaheim, CA
6490            Portland-Vancouver-Hillsboro, OR-WA
6491                          Steamboat Springs, CO
6492                 Boston-Cambridge-Newton, MA-NH
6493                    Seattle-Tacoma-Bellevue, WA
6494          New York-Newark-Jersey City, NY-NJ-PA
6495                  Baltimore-Columbia-Towson, MD
6496                             Kansas City, MO-KS
6497                    San Juan-Bayamón-Caguas, PR
6498                                Tallahassee, FL
6499                          New Haven-Milford, CT
6500                 Boston-Cambridge-Newton, MA-NH
6501          New York-Newark-Jersey City, NY-NJ-PA
6502                           Cleveland-Elyria, OH
6503          New York-Newark-Jersey City, NY-NJ-PA
6504                                    Madison, WI
6505           Poughkeepsie-Newburgh-Middletown, NY
6506                                   Syracuse, NY
6507             Fayetteville-Springdale-Rogers, AR
6508                               Raleigh-Cary, NC
6509                                   Amarillo, TX
6510               Austin-Round Rock-Georgetown, TX
6511                          Birmingham-Hoover, AL
6512 Nashville-Davidson--Murfreesboro--Franklin, TN
6513             Los Angeles-Long Beach-Anaheim, CA
6514   Washington-Arlington-Alexandria, DC-VA-MD-WV
6515                                    El Paso, TX
6516                                Spartanburg, SC
6517                      Brownsville-Harlingen, TX
6518                                    Lubbock, TX
6519             Los Angeles-Long Beach-Anaheim, CA
6520                             Kansas City, MO-KS
6521                             Kansas City, MO-KS
6522             San Francisco-Oakland-Berkeley, CA
6523        Miami-Fort Lauderdale-Pompano Beach, FL
6524    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6525                                   Savannah, GA
6526                Sacramento-Roseville-Folsom, CA
6527                Sacramento-Roseville-Folsom, CA
6528             Los Angeles-Long Beach-Anaheim, CA
6529             Los Angeles-Long Beach-Anaheim, CA
6530                                     Tucson, AZ
6531         Crestview-Fort Walton Beach-Destin, FL
6532                        Santa Rosa-Petaluma, CA
6533                 Boston-Cambridge-Newton, MA-NH
6534                      Brownsville-Harlingen, TX
6535                              Oklahoma City, OK
6536                    Omaha-Council Bluffs, NE-IA
6537          New York-Newark-Jersey City, NY-NJ-PA
6538                                  Green Bay, WI
6539                          Trenton-Princeton, NJ
6540             Los Angeles-Long Beach-Anaheim, CA
6541                                    Bozeman, MT
6542        Miami-Fort Lauderdale-Pompano Beach, FL
6543                                   Columbus, OH
6544        Miami-Fort Lauderdale-Pompano Beach, FL
6545           Riverside-San Bernardino-Ontario, CA
6546                    San Juan-Bayamón-Caguas, PR
6547                                  Rochester, NY
6548                Dallas-Fort Worth-Arlington, TX
6549               Indianapolis-Carmel-Anderson, IN
6550          New York-Newark-Jersey City, NY-NJ-PA
6551                  Orlando-Kissimmee-Sanford, FL
6552             San Francisco-Oakland-Berkeley, CA
6553        Miami-Fort Lauderdale-Pompano Beach, FL
6554             San Jose-Sunnyvale-Santa Clara, CA
6555                                    Edwards, CO
6556                         Milwaukee-Waukesha, WI
6557             Los Angeles-Long Beach-Anaheim, CA
6558                    Albany-Schenectady-Troy, NY
6559                                   Amarillo, TX
6560               Austin-Round Rock-Georgetown, TX
6561                          Birmingham-Hoover, AL
6562                                   Columbus, OH
6563                                     Fresno, CA
6564           Houston-The Woodlands-Sugar Land, TX
6565                                    Jackson, MS
6566             Los Angeles-Long Beach-Anaheim, CA
6567                                    Midland, TX
6568                         Milwaukee-Waukesha, WI
6569                         Milwaukee-Waukesha, WI
6570                    Omaha-Council Bluffs, NE-IA
6571           Riverside-San Bernardino-Ontario, CA
6572        Miami-Fort Lauderdale-Pompano Beach, FL
6573             San Diego-Chula Vista-Carlsbad, CA
6574                  San Antonio-New Braunfels, TX
6575                  Santa Maria-Santa Barbara, CA
6576                  Santa Maria-Santa Barbara, CA
6577                               St. Louis, MO-IL
6578                                     Tucson, AZ
6579                    Omaha-Council Bluffs, NE-IA
6580                                 Pittsburgh, PA
6581        Miami-Fort Lauderdale-Pompano Beach, FL
6582                  Baltimore-Columbia-Towson, MD
6583                           Colorado Springs, CO
6584       Little Rock-North Little Rock-Conway, AR
6585          New York-Newark-Jersey City, NY-NJ-PA
6586          New York-Newark-Jersey City, NY-NJ-PA
6587               Indianapolis-Carmel-Anderson, IN
6588                                  Duluth, MN-WI
6589                    Albany-Schenectady-Troy, NY
6590                      Phoenix-Mesa-Chandler, AZ
6591        Miami-Fort Lauderdale-Pompano Beach, FL
6592          New York-Newark-Jersey City, NY-NJ-PA
6593                     Denver-Aurora-Lakewood, CO
6594                                    Bozeman, MT
6595                           Cincinnati, OH-KY-IN
6596           Riverside-San Bernardino-Ontario, CA
6597                               Raleigh-Cary, NC
6598             San Francisco-Oakland-Berkeley, CA
6599                    Omaha-Council Bluffs, NE-IA
6600                                   Richmond, VA
6601                  Santa Maria-Santa Barbara, CA
6602                 Des Moines-West Des Moines, IA
6603            Portland-Vancouver-Hillsboro, OR-WA
6604                          Birmingham-Hoover, AL
6605               Las Vegas-Henderson-Paradise, NV
6606          New York-Newark-Jersey City, NY-NJ-PA
6607        Miami-Fort Lauderdale-Pompano Beach, FL
6608        Minneapolis-St. Paul-Bloomington, MN-WI
6609                       New Orleans-Metairie, LA
6610                 Pensacola-Ferry Pass-Brent, FL
6611                                       Reno, NV
6612                    Seattle-Tacoma-Bellevue, WA
6613                Sacramento-Roseville-Folsom, CA
6614              North Port-Sarasota-Bradenton, FL
6615                                Albuquerque, NM
6616                                Albuquerque, NM
6617                                   Amarillo, TX
6618           Atlanta-Sandy Springs-Alpharetta, GA
6619               Austin-Round Rock-Georgetown, TX
6620          Hartford-East Hartford-Middletown, CT
6621                        Buffalo-Cheektowaga, NY
6622             Los Angeles-Long Beach-Anaheim, CA
6623                           Colorado Springs, CO
6624                           Colorado Springs, CO
6625                           Colorado Springs, CO
6626                                Panama City, FL
6627                                    El Paso, TX
6628                                     Fresno, CA
6629                                    Wichita, KS
6630                                    Lubbock, TX
6631                                    Midland, TX
6632                         Milwaukee-Waukesha, WI
6633        Minneapolis-St. Paul-Bloomington, MN-WI
6634             San Francisco-Oakland-Berkeley, CA
6635                              Oklahoma City, OK
6636                              Oklahoma City, OK
6637                    Omaha-Council Bluffs, NE-IA
6638           Riverside-San Bernardino-Ontario, CA
6639                      Providence-Warwick, RI-MA
6640                      Cape Coral-Fort Myers, FL
6641             San Diego-Chula Vista-Carlsbad, CA
6642                  San Antonio-New Braunfels, TX
6643                  Santa Maria-Santa Barbara, CA
6644             Louisville/Jefferson County, KY-IN
6645                 Boston-Cambridge-Newton, MA-NH
6646                                   Missoula, MT
6647                 Boston-Cambridge-Newton, MA-NH
6648             San Diego-Chula Vista-Carlsbad, CA
6649                                Albuquerque, NM
6650                                    El Paso, TX
6651               Indianapolis-Carmel-Anderson, IN
6652                       New Orleans-Metairie, LA
6653                    Omaha-Council Bluffs, NE-IA
6654        Miami-Fort Lauderdale-Pompano Beach, FL
6655            Portland-Vancouver-Hillsboro, OR-WA
6656                                 Pittsburgh, PA
6657                    San Juan-Bayamón-Caguas, PR
6658                                      Tulsa, OK
6659                           Colorado Springs, CO
6660                       New Orleans-Metairie, LA
6661               Austin-Round Rock-Georgetown, TX
6662                               Jacksonville, FL
6663                               St. Louis, MO-IL
6664   Washington-Arlington-Alexandria, DC-VA-MD-WV
6665            Tampa-St. Petersburg-Clearwater, FL
6666                              Eureka-Arcata, CA
                                         dest_name dest_cbsa
1                       Detroit Metro Wayne County     19820
2                       Detroit Metro Wayne County     19820
3                       Detroit Metro Wayne County     19820
4                       Detroit Metro Wayne County     19820
5               Metropolitan Oakland International     41860
6                 Phoenix Sky Harbor International     38060
7                       Detroit Metro Wayne County     19820
8                              Miami International     33100
9                       Detroit Metro Wayne County     19820
10                      Detroit Metro Wayne County     19820
11                      Detroit Metro Wayne County     19820
12                      Detroit Metro Wayne County     19820
13                          Portland International     38900
14                Phoenix Sky Harbor International     38060
15         Norman Y. Mineta San Jose International     41940
16         Norman Y. Mineta San Jose International     41940
17                      Detroit Metro Wayne County     19820
18                James M Cox/Dayton International     19430
19                   Buffalo Niagara International     15380
20         Northwest Florida Beaches International     37460
21               Minneapolis-St Paul International     33460
22                           Ontario International     40140
23                    Theodore Francis Green State     39300
24                      Jacksonville International     27260
25                        Palm Beach International     33100
26                              Asheville Regional     11700
27                    Newark Liberty International     35620
28                          Key West International     28580
29        Jackson Medgar Wiley Evers International     27140
30                       Los Angeles International     31080
31                          Portland International     38900
32                    Raleigh-Durham International     39580
33                        Sacramento International     40900
34         Fort Lauderdale-Hollywood International     33100
35                     San Francisco International     41860
36                            Denver International     19740
37                    Newark Liberty International     35620
38                         San Diego International     41740
39                    Seattle/Tacoma International     42660
40                         San Diego International     41740
41                        Sacramento International     40900
42                                      Tri Cities     28420
43                              Westchester County     35620
44                                       LaGuardia     35620
45        Hartsfield-Jackson Atlanta International     12060
46                 Dallas/Fort Worth International     19100
47                              Lafayette Regional     29180
48                Austin - Bergstrom International     12420
49      Cincinnati/Northern Kentucky International     17140
50                       Kansas City International     28140
51                    Chicago O'Hare International     16980
52                         San Diego International     41740
53                  Syracuse Hancock International     45060
54         Fort Lauderdale-Hollywood International     33100
55                   Daniel K Inouye International     46520
56                   Buffalo Niagara International     15380
57                                  Joe Foss Field     43620
58               Bozeman Yellowstone International     14580
59                    Seattle/Tacoma International     42660
60                        Des Moines International     19780
61                             Logan International     14460
62                                       LaGuardia     35620
63                            Hector International     22020
64        Hartsfield-Jackson Atlanta International     12060
65               Ronald Reagan Washington National     47900
66                   John F. Kennedy International     35620
67       Louis Armstrong New Orleans International     35380
68                       San Antonio International     41700
69                John Wayne Airport-Orange County     31080
70                   Fresno Yosemite International     23420
71                            Idaho Falls Regional     26820
72                      Palm Springs International     40140
73                   Gulfport-Biloxi International     25060
74                             Logan International     14460
75                           Orlando International     36740
76            Greenville-Spartanburg International     43900
77                            Albany International     10580
78                           Bradley International     25540
79                      Detroit Metro Wayne County     19820
80                  General Mitchell International     33340
81                               Dallas Love Field     19100
82                           Memphis International     32820
83              Baltimore/Washington International     12580
84               John Glenn Columbus International     18140
85       Louis Armstrong New Orleans International     35380
86                           Norfolk International     47260
87                        Pittsburgh International     38300
88         Fort Lauderdale-Hollywood International     33100
89                           Orlando International     36740
90                          McCarran International     29820
91                         San Diego International     41740
92                        Sacramento International     40900
93                    Raleigh-Durham International     39580
94               John Glenn Columbus International     18140
95                           Orlando International     36740
96                          Portland International     38900
97                                 Eppley Airfield     36540
98                     Daytona Beach International     19660
99                      Indianapolis International     26900
100                  John F. Kennedy International     35620
101                   Salt Lake City International     41620
102               Sarasota/Bradenton International     35840
103             Eglin AFB Destin Fort Walton Beach     18880
104                            Logan International     14460
105                     Indianapolis International     26900
106                           Tucson International     46060
107                      Los Angeles International     31080
108                      Los Angeles International     31080
109                   Chicago Midway International     16980
110                   Piedmont Triad International     24660
111                Cleveland-Hopkins International     17460
112                   Gerald R. Ford International     24340
113                     Philadelphia International     37980
114               John Wayne Airport-Orange County     31080
115           George Bush Intercontinental/Houston     26420
116           Kalamazoo/Battle Creek International     28020
117                  John F. Kennedy International     35620
118                  John F. Kennedy International     35620
119                           Denver International     19740
120          Kona International Airport at Keahole     25900
121                  John F. Kennedy International     35620
122                                      LaGuardia     35620
123                  John F. Kennedy International     35620
124                                      LaGuardia     35620
125                  John F. Kennedy International     35620
126                                  Lihue Airport     28180
127                   Salt Lake City International     41620
128               John Wayne Airport-Orange County     31080
129                          Spokane International     44060
130                          Spokane International     44060
131                                   Jackson Hole     27220
132             Metropolitan Oakland International     41860
133             City of Colorado Springs Municipal     17820
134                  John F. Kennedy International     35620
135                  John F. Kennedy International     35620
136                       Reno/Tahoe International     39900
137                             Boise Air Terminal     14260
138                                 Albert J Ellis     27340
139     Cincinnati/Northern Kentucky International     17140
140                 Syracuse Hancock International     45060
141                Cleveland-Hopkins International     17460
142                            Tampa International     45300
143                 Syracuse Hancock International     45060
144                         McCarran International     29820
145                           Duluth International     20260
146                          Bradley International     25540
147                  John F. Kennedy International     35620
148               Austin - Bergstrom International     12420
149                         McCarran International     29820
150                 Augusta Regional at Bush Field     12260
151                         Richmond International     40060
152                      San Antonio International     41700
153                      Los Angeles International     31080
154                                      LaGuardia     35620
155                            Logan International     14460
156                      Los Angeles International     31080
157                          Bradley International     25540
158                  Buffalo Niagara International     15380
159                                      LaGuardia     35620
160                         Richmond International     40060
161                      Los Angeles International     31080
162                  Buffalo Niagara International     15380
163                         Richmond International     40060
164                          Orlando International     36740
165                      Los Angeles International     31080
166            Ted Stevens Anchorage International     11260
167                     Glacier Park International     28060
168                             Long Beach Airport     31080
169                         Missoula International     33540
170                              Friedman Memorial     25200
171                              Will Rogers World     36420
172                   Gerald R. Ford International     24340
173                      Los Angeles International     31080
174               Phoenix Sky Harbor International     38060
175                        San Diego International     41740
176                   Seattle/Tacoma International     42660
177                                      LaGuardia     35620
178                             Boise Air Terminal     14260
179                          Spokane International     44060
180               Phoenix Sky Harbor International     38060
181                    San Francisco International     41860
182                       Sacramento International     40900
183                                      LaGuardia     35620
184                                      LaGuardia     35620
185                                      LaGuardia     35620
186                            Logan International     14460
187                                    Adams Field     30780
188            Baton Rouge Metropolitan/Ryan Field     12940
189                         Portland International     38900
190                                     Blue Grass     30460
191                  Daniel K Inouye International     46520
192                Washington Dulles International     47900
193                 St Louis Lambert International     41180
194                          Orlando International     36740
195                            La Crosse Municipal     29100
196                          Orlando International     36740
197                          Orlando International     36740
198        Green Bay Austin Straubel International     24580
199                            Tampa International     45300
200                           Tucson International     46060
201                           Denver International     19740
202                    San Francisco International     41860
203                                   McGhee Tyson     28940
204                               The Eastern Iowa     16300
205                           Denver International     19740
206                         Brunswick Golden Isles     15260
207                Southwest Florida International     15980
208           Greenville-Spartanburg International     43900
209              Ronald Reagan Washington National     47900
210        Fort Lauderdale-Hollywood International     33100
211                     Myrtle Beach International     34820
212             Savannah/Hilton Head International     42340
213                            Tulsa International     46140
214              Minneapolis-St Paul International     33460
215              Minneapolis-St Paul International     33460
216              Minneapolis-St Paul International     33460
217              Minneapolis-St Paul International     33460
218              Minneapolis-St Paul International     33460
219              Minneapolis-St Paul International     33460
220                Dallas/Fort Worth International     19100
221                            Miami International     33100
222                Southwest Florida International     15980
223              Minneapolis-St Paul International     33460
224              Minneapolis-St Paul International     33460
225              Minneapolis-St Paul International     33460
226                 Portland International Jetport     38860
227              Minneapolis-St Paul International     33460
228              Minneapolis-St Paul International     33460
229              Minneapolis-St Paul International     33460
230              Minneapolis-St Paul International     33460
231              Minneapolis-St Paul International     33460
232              Minneapolis-St Paul International     33460
233              Minneapolis-St Paul International     33460
234              Minneapolis-St Paul International     33460
235              Minneapolis-St Paul International     33460
236              Minneapolis-St Paul International     33460
237                   Capital Region International     29620
238      Louis Armstrong New Orleans International     35380
239      Louis Armstrong New Orleans International     35380
240               John Wayne Airport-Orange County     31080
241         Birmingham-Shuttlesworth International     13820
242                Charlotte Douglas International     16740
243                   Raleigh-Durham International     39580
244                    San Francisco International     41860
245                  Pensacola Gulf Coast Regional     37860
246                          Orlando International     36740
247                          Ontario International     40140
248                            Hilton Head Airport     25940
249                   Chicago O'Hare International     16980
250          Louisville Muhammad Ali International     31140
251                 Syracuse Hancock International     45060
252                   Chicago O'Hare International     16980
253                   Chicago O'Hare International     16980
254                                 Range Regional     20260
255                      Los Angeles International     31080
256                       Des Moines International     19780
257                   Charleston AFB/International     16700
258                     Indianapolis International     26900
259                     Palm Springs International     40140
260                            Logan International     14460
261                      Kansas City International     28140
262              Albuquerque International Sunport     10740
263                       Reno/Tahoe International     39900
264              Albuquerque International Sunport     10740
265                            Miami International     33100
266                     Philadelphia International     37980
267                        Rochester International     40340
268                 Portland International Jetport     38860
269                            Logan International     14460
270                            South Bend Regional     43780
271                        Nashville International     34980
272              Ronald Reagan Washington National     47900
273                         McCarran International     29820
274                   Raleigh-Durham International     39580
275                   Raleigh-Durham International     39580
276                   Raleigh-Durham International     39580
277                   Raleigh-Durham International     39580
278                    San Francisco International     41860
279                   Raleigh-Durham International     39580
280                   Raleigh-Durham International     39580
281                Dallas/Fort Worth International     19100
282                       Burlington International     15540
283                Southwest Florida International     15980
284        Green Bay Austin Straubel International     24580
285                        San Diego International     41740
286                          Orlando International     36740
287                            Tampa International     45300
288            Fayetteville Regional/Grannis Field     22180
289                   Seattle/Tacoma International     42660
290             Baltimore/Washington International     12580
291                Washington Dulles International     47900
292                   Seattle/Tacoma International     42660
293                   Seattle/Tacoma International     42660
294                 General Mitchell International     33340
295                   Seattle/Tacoma International     42660
296                   Seattle/Tacoma International     42660
297                             St George Regional     41100
298                   Seattle/Tacoma International     42660
299                        Nashville International     34980
300     Cincinnati/Northern Kentucky International     17140
301                            Miami International     33100
302                     Detroit Metro Wayne County     19820
303                     Detroit Metro Wayne County     19820
304                   Salt Lake City International     41620
305                   Salt Lake City International     41620
306                               The Eastern Iowa     16300
307                 General Mitchell International     33340
308              John Glenn Columbus International     18140
309                   Salt Lake City International     41620
310                   Salt Lake City International     41620
311                   Salt Lake City International     41620
312                   Salt Lake City International     41620
313                   Salt Lake City International     41620
314                  John F. Kennedy International     35620
315                   Salt Lake City International     41620
316                   Salt Lake City International     41620
317                   Salt Lake City International     41620
318                   Salt Lake City International     41620
319                   Salt Lake City International     41620
320                        Nashville International     34980
321              Minneapolis-St Paul International     33460
322                                   Lovell Field     16860
323                   Gerald R. Ford International     24340
324                             Mahlon Sweet Field     21660
325                                  Roberts Field     13460
326          Louisville Muhammad Ali International     31140
327                 St Louis Lambert International     41180
328                          Spokane International     44060
329        Green Bay Austin Straubel International     24580
330                                 Joe Foss Field     43620
331                              MBS International     40980
332                         McCarran International     29820
333                            Tampa International     45300
334                            Tampa International     45300
335                            Tampa International     45300
336       Hartsfield-Jackson Atlanta International     12060
337       Hartsfield-Jackson Atlanta International     12060
338               Austin - Bergstrom International     12420
339             Baltimore/Washington International     12580
340                Cleveland-Hopkins International     17460
341                        San Diego International     41740
342                          Ontario International     40140
343                Charlotte Douglas International     16740
344                           Denver International     19740
345                           Denver International     19740
346                          Long Island MacArthur     35620
347                         McCarran International     29820
348                          Orlando International     36740
349                          Ontario International     40140
350                          Memphis International     32820
351                            Miami International     33100
352                         Portland International     38900
353                     Philadelphia International     37980
354                     Philadelphia International     37980
355                     Philadelphia International     37980
356               Phoenix Sky Harbor International     38060
357                   Raleigh-Durham International     39580
358                        San Diego International     41740
359                      San Antonio International     41700
360                 Luis Munoz Marin International     41980
361                                      LaGuardia     35620
362                Charlotte Douglas International     16740
363                Charlotte Douglas International     16740
364                  Daniel K Inouye International     46520
365                         McCarran International     29820
366               Phoenix Sky Harbor International     38060
367                       Palm Beach International     33100
368           George Bush Intercontinental/Houston     26420
369                   Newark Liberty International     35620
370                           Denver International     19740
371                   Newark Liberty International     35620
372                   Newark Liberty International     35620
373                   Newark Liberty International     35620
374                             Asheville Regional     11700
375                   Piedmont Triad International     24660
376                        Abraham Lincoln Capital     44100
377                Washington Dulles International     47900
378                Washington Dulles International     47900
379                                   McGhee Tyson     28940
380                Southwest Florida International     15980
381           George Bush Intercontinental/Houston     26420
382                    San Francisco International     41860
383                        Nashville International     34980
384                    San Francisco International     41860
385                    San Francisco International     41860
386                            Tampa International     45300
387                     Jacksonville International     27260
388                   Seattle/Tacoma International     42660
389                Greater Rochester International     40380
390                   Seattle/Tacoma International     42660
391                 St Louis Lambert International     41180
392                 Syracuse Hancock International     45060
393                     Indianapolis International     26900
394               Phoenix Sky Harbor International     38060
395                                    Adams Field     30780
396                   Newark Liberty International     35620
397                                   McGhee Tyson     28940
398                       Pittsburgh International     38300
399                          Bradley International     25540
400                               Henry E. Rohlsen      <NA>
401                          Orlando International     36740
402               Austin - Bergstrom International     12420
403               Austin - Bergstrom International     12420
404               Austin - Bergstrom International     12420
405          Louisville Muhammad Ali International     31140
406                         McCarran International     29820
407       Hartsfield-Jackson Atlanta International     12060
408                 Syracuse Hancock International     45060
409                            Logan International     14460
410                           Hector International     22020
411                   Newark Liberty International     35620
412               John Wayne Airport-Orange County     31080
413                              Will Rogers World     36420
414                  Fresno Yosemite International     23420
415                    Northwest Arkansas Regional     22220
416                         Portland International     38900
417                          Orlando International     36740
418     Cincinnati/Northern Kentucky International     17140
419                          Orlando International     36740
420                            Tampa International     45300
421     Cincinnati/Northern Kentucky International     17140
422                          Wichita Mid-Continent     48620
423                                Monroe Regional     33740
424              Ronald Reagan Washington National     47900
425              Ronald Reagan Washington National     47900
426                Dallas/Fort Worth International     19100
427                Dallas/Fort Worth International     19100
428         Birmingham-Shuttlesworth International     13820
429        Norman Y. Mineta San Jose International     41940
430                          Orlando International     36740
431                            Miami International     33100
432                         Richmond International     40060
433                            Tulsa International     46140
434                      Los Angeles International     31080
435               Phoenix Sky Harbor International     38060
436                            Miami International     33100
437             City of Colorado Springs Municipal     17820
438                          Spokane International     44060
439                           Garden City Regional     23780
440         Lynchburg Regional/Preston Glenn Field     31340
441                   Chicago O'Hare International     16980
442                           Bangor International     12620
443                     Jacksonville International     27260
444                                 Joe Foss Field     43620
445          Louisville Muhammad Ali International     31140
446                 Syracuse Hancock International     45060
447               Austin - Bergstrom International     12420
448                          Ontario International     40140
449                             Lafayette Regional     29180
450                Washington Dulles International     47900
451               Austin - Bergstrom International     12420
452        Norman Y. Mineta San Jose International     41940
453                      Kansas City International     28140
454                            Miami International     33100
455                        Nashville International     34980
456                Cleveland-Hopkins International     17460
457                      Kansas City International     28140
458                       Fort Wayne International     23060
459      Louis Armstrong New Orleans International     35380
460                          Columbia Metropolitan     17900
461                                     Blue Grass     30460
462                   Chicago O'Hare International     16980
463                   Chicago O'Hare International     16980
464                   Chicago O'Hare International     16980
465                       Reno/Tahoe International     39900
466                   Gerald R. Ford International     24340
467                   Chicago O'Hare International     16980
468                    Northwest Arkansas Regional     22220
469                      Los Angeles International     31080
470                         Key West International     28580
471          Louisville Muhammad Ali International     31140
472           George Bush Intercontinental/Houston     26420
473                 Augusta Regional at Bush Field     12260
474                   Raleigh-Durham International     39580
475      Louis Armstrong New Orleans International     35380
476              Albuquerque International Sunport     10740
477       Hartsfield-Jackson Atlanta International     12060
478                   Capital Region International     29620
479                           Denver International     19740
480                         McCarran International     29820
481                   Seattle/Tacoma International     42660
482                    Atlantic City International     12100
483                    Atlantic City International     12100
484                    Atlantic City International     12100
485       Hartsfield-Jackson Atlanta International     12060
486               Austin - Bergstrom International     12420
487       Hartsfield-Jackson Atlanta International     12060
488               John Wayne Airport-Orange County     31080
489       Hartsfield-Jackson Atlanta International     12060
490       Hartsfield-Jackson Atlanta International     12060
491                          Bradley International     25540
492                        Nashville International     34980
493                        Nashville International     34980
494                        Nashville International     34980
495                        Nashville International     34980
496                            Logan International     14460
497                            Logan International     14460
498                            Logan International     14460
499                            Logan International     14460
500                            Logan International     14460
501                                       Bob Hope     31080
502             Baltimore/Washington International     12580
503                           Denver International     19740
504             Baltimore/Washington International     12580
505             Baltimore/Washington International     12580
506             Baltimore/Washington International     12580
507             Baltimore/Washington International     12580
508                Cleveland-Hopkins International     17460
509                          Orlando International     36740
510                Cleveland-Hopkins International     17460
511                Cleveland-Hopkins International     17460
512           George Bush Intercontinental/Houston     26420
513                Charlotte Douglas International     16740
514              John Glenn Columbus International     18140
515             Baltimore/Washington International     12580
516                Dallas/Fort Worth International     19100
517                Dallas/Fort Worth International     19100
518                Dallas/Fort Worth International     19100
519                Dallas/Fort Worth International     19100
520                   Chicago O'Hare International     16980
521                     Detroit Metro Wayne County     19820
522                   Newark Liberty International     35620
523                   Newark Liberty International     35620
524                   Newark Liberty International     35620
525                   Newark Liberty International     35620
526                   Newark Liberty International     35620
527        Fort Lauderdale-Hollywood International     33100
528        Fort Lauderdale-Hollywood International     33100
529        Fort Lauderdale-Hollywood International     33100
530        Fort Lauderdale-Hollywood International     33100
531        Fort Lauderdale-Hollywood International     33100
532        Fort Lauderdale-Hollywood International     33100
533        Fort Lauderdale-Hollywood International     33100
534        Fort Lauderdale-Hollywood International     33100
535           George Bush Intercontinental/Houston     26420
536           George Bush Intercontinental/Houston     26420
537                     Indianapolis International     26900
538                     Indianapolis International     26900
539                     Indianapolis International     26900
540                         McCarran International     29820
541                         McCarran International     29820
542       Hartsfield-Jackson Atlanta International     12060
543                   Piedmont Triad International     24660
544                         McCarran International     29820
545                         McCarran International     29820
546                         McCarran International     29820
547                      Los Angeles International     31080
548                      Los Angeles International     31080
549                            Tampa International     45300
550                      Los Angeles International     31080
551                      Los Angeles International     31080
552                         Arnold Palmer Regional     38300
553                         Arnold Palmer Regional     38300
554                      Kansas City International     28140
555                      Kansas City International     28140
556                          Orlando International     36740
557                          Orlando International     36740
558                          Orlando International     36740
559             Metropolitan Oakland International     41860
560                          Orlando International     36740
561                          Orlando International     36740
562                 General Mitchell International     33340
563                     Philadelphia International     37980
564      Louis Armstrong New Orleans International     35380
565                   Newark Liberty International     35620
566                   Chicago O'Hare International     16980
567                   Chicago O'Hare International     16980
568                   Chicago O'Hare International     16980
569                   Chicago O'Hare International     16980
570                       Pittsburgh International     38300
571                       Pittsburgh International     38300
572                       Pittsburgh International     38300
573                        San Diego International     41740
574                 Luis Munoz Marin International     41980
575                 St Louis Lambert International     41180
576           George Bush Intercontinental/Houston     26420
577                            Tampa International     45300
578                            Tampa International     45300
579                            Tampa International     45300
580                            Tampa International     45300
581               Sarasota/Bradenton International     35840
582          Louisville Muhammad Ali International     31140
583             Eglin AFB Destin Fort Walton Beach     18880
584                         McCarran International     29820
585               Phoenix Sky Harbor International     38060
586                           Albany International     10580
587                         McCarran International     29820
588                                      LaGuardia     35620
589              Minneapolis-St Paul International     33460
590                     Philadelphia International     37980
591                       Palm Beach International     33100
592                        Nashville International     34980
593                  John F. Kennedy International     35620
594                                      LaGuardia     35620
595                            Tampa International     45300
596             Eglin AFB Destin Fort Walton Beach     18880
597                 St Louis Lambert International     41180
598                      San Antonio International     41700
599                   Charleston AFB/International     16700
600             Baltimore/Washington International     12580
601                Charlotte Douglas International     16740
602                Charlotte Douglas International     16740
603                Charlotte Douglas International     16740
604                Charlotte Douglas International     16740
605                Charlotte Douglas International     16740
606        Fort Lauderdale-Hollywood International     33100
607                              Will Rogers World     36420
608                          Orlando International     36740
609                     Indianapolis International     26900
610                          Memphis International     32820
611               Phoenix Sky Harbor International     38060
612                          Akron-Canton Regional     10420
613                Cleveland-Hopkins International     17460
614               James M Cox/Dayton International     19430
615               Austin - Bergstrom International     12420
616              Ronald Reagan Washington National     47900
617              Ronald Reagan Washington National     47900
618              Ronald Reagan Washington National     47900
619                    San Francisco International     41860
620                Dallas/Fort Worth International     19100
621              Ronald Reagan Washington National     47900
622                             Westchester County     35620
623                   Theodore Francis Green State     39300
624       Hartsfield-Jackson Atlanta International     12060
625                     Detroit Metro Wayne County     19820
626                 Portland International Jetport     38860
627             Savannah/Hilton Head International     42340
628                                    Adams Field     30780
629                        Melbourne International     37340
630                     Detroit Metro Wayne County     19820
631                      Kansas City International     28140
632                   Chicago O'Hare International     16980
633                 General Mitchell International     33340
634                           Bishop International     22420
635               James M Cox/Dayton International     19430
636                            Logan International     14460
637                       Pittsburgh International     38300
638                Dallas/Fort Worth International     19100
639                                Eppley Airfield     36540
640                             Westchester County     35620
641                       Palm Beach International     33100
642       Hartsfield-Jackson Atlanta International     12060
643                Southwest Florida International     15980
644                  Buffalo Niagara International     15380
645                       Pittsburgh International     38300
646                    Lehigh Valley International     10900
647                          Norfolk International     47260
648        Newport News/Williamsburg International     47260
649                     Jacksonville International     27260
650                     Jacksonville International     27260
651                     Manchester-Boston Regional     31700
652                            Logan International     14460
653                     Jacksonville International     27260
654                             Asheville Regional     11700
655                   Raleigh-Durham International     39580
656            Fayetteville Regional/Grannis Field     22180
657                                 Albert J Ellis     27340
658                       Harrisburg International     25420
659                            Miami International     33100
660                   Charleston AFB/International     16700
661           George Bush Intercontinental/Houston     26420
662                       Des Moines International     19780
663           Greenville-Spartanburg International     43900
664                 Portland International Jetport     38860
665      Louis Armstrong New Orleans International     35380
666       Jackson Medgar Wiley Evers International     27140
667      Louis Armstrong New Orleans International     35380
668                                     Blue Grass     30460
669                     Philadelphia International     37980
670                     Philadelphia International     37980
671         Birmingham-Shuttlesworth International     13820
672                     Philadelphia International     37980
673                     Philadelphia International     37980
674                     Philadelphia International     37980
675                     Philadelphia International     37980
676                           Denver International     19740
677                        San Diego International     41740
678                   Seattle/Tacoma International     42660
679                     Indianapolis International     26900
680                          Long Island MacArthur     35620
681                   Chicago O'Hare International     16980
682                          Bradley International     25540
683                                   McGhee Tyson     28940
684                   Theodore Francis Green State     39300
685                   Raleigh-Durham International     39580
686                 St Louis Lambert International     41180
687                 Syracuse Hancock International     45060
688          Louisville Muhammad Ali International     31140
689              Albuquerque International Sunport     10740
690           George Bush Intercontinental/Houston     26420
691                                Lincoln Airport     30700
692                           Albany International     10580
693                          Ontario International     40140
694                Aspen Pitkin County Sardy Field     24060
695                  Daniel K Inouye International     46520
696                   Seattle/Tacoma International     42660
697              Albuquerque International Sunport     10740
698                        Nashville International     34980
699                      Kansas City International     28140
700                        Eastern Sierra Regional      <NA>
701           Rogue Valley International - Medford     32780
702                     Palm Springs International     40140
703                        Santa Barbara Municipal     42200
704                      Los Angeles International     31080
705                             Boise Air Terminal     14260
706                             Boise Air Terminal     14260
707                             Boise Air Terminal     14260
708       Hartsfield-Jackson Atlanta International     12060
709                             Boise Air Terminal     14260
710                             Boise Air Terminal     14260
711          Kona International Airport at Keahole     25900
712                                       Bob Hope     31080
713                             Boise Air Terminal     14260
714              Charles M. Schulz - Sonoma County     42220
715                                       Bob Hope     31080
716                                       Bob Hope     31080
717                                Kahului Airport     27980
718              Bozeman Yellowstone International     14580
719             Baltimore/Washington International     12580
720              Bozeman Yellowstone International     14580
721                              Will Rogers World     36420
722                                Robert Gray AAF     28660
723                            Logan International     14460
724                   Newark Liberty International     35620
725             City of Colorado Springs Municipal     17820
726                      Los Angeles International     31080
727                              Dallas Love Field     19100
728                           Denver International     19740
729                           Denver International     19740
730                           Denver International     19740
731                           Denver International     19740
732                           Denver International     19740
733                           Denver International     19740
734                           Tucson International     46060
735                   Salt Lake City International     41620
736                       Pittsburgh International     38300
737                       Des Moines International     19780
738                                     Tri Cities     28420
739                       Harrisburg International     25420
740                             Mahlon Sweet Field     21660
741                           Denver International     19740
742                  Fresno Yosemite International     23420
743                  Fresno Yosemite International     23420
744                  Fresno Yosemite International     23420
745                  Fresno Yosemite International     23420
746                                  Roberts Field     13460
747                   Chicago O'Hare International     16980
748                     Glacier Park International     28060
749                   Chicago O'Hare International     16980
750        Fort Lauderdale-Hollywood International     33100
751               Sarasota/Bradenton International     35840
752                     Jacksonville International     27260
753               Phoenix Sky Harbor International     38060
754                          Spokane International     44060
755                          Spokane International     44060
756                            Logan International     14460
757                        Nashville International     34980
758        Fort Lauderdale-Hollywood International     33100
759                            Miami International     33100
760        Norman Y. Mineta San Jose International     41940
761                    Lehigh Valley International     10900
762                                   Yampa Valley     44460
763                   Salt Lake City International     41620
764                            La Crosse Municipal     29100
765           George Bush Intercontinental/Houston     26420
766           George Bush Intercontinental/Houston     26420
767                             Pocatello Regional     38540
768                Cleveland-Hopkins International     17460
769                           Hector International     22020
770              Ronald Reagan Washington National     47900
771                       Pittsburgh International     38300
772                   Chicago O'Hare International     16980
773                      Los Angeles International     31080
774                      Los Angeles International     31080
775                      Los Angeles International     31080
776                      Los Angeles International     31080
777                      Los Angeles International     31080
778                      Los Angeles International     31080
779                      Los Angeles International     31080
780                      Los Angeles International     31080
781            Baton Rouge Metropolitan/Ryan Field     12940
782                    San Francisco International     41860
783                     Indianapolis International     26900
784           Kalamazoo/Battle Creek International     28020
785                      San Antonio International     41700
786               Dane County Regional-Truax Field     31540
787              Minneapolis-St Paul International     33460
788                        San Diego International     41740
789                 General Mitchell International     33340
790                         McCarran International     29820
791                             Mahlon Sweet Field     21660
792                             Monterey Peninsula     41500
793               Dane County Regional-Truax Field     31540
794              Minneapolis-St Paul International     33460
795              Minneapolis-St Paul International     33460
796                      Great Falls International     24500
797        Green Bay Austin Straubel International     24580
798             Metropolitan Oakland International     41860
799               Roswell International Air Center     40740
800                                Kahului Airport     27980
801            Wilkes Barre Scranton International     42540
802                                      LaGuardia     35620
803                     Jacksonville International     27260
804                                Eppley Airfield     36540
805                   Theodore Francis Green State     39300
806                  Chippewa County International     42300
807                          Ontario International     40140
808                      San Antonio International     41700
809                          Ontario International     40140
810                            Miami International     33100
811                   Chicago O'Hare International     16980
812                   Chicago O'Hare International     16980
813                   Chicago O'Hare International     16980
814                   Chicago O'Hare International     16980
815                           Denver International     19740
816                         Portland International     38900
817                         Portland International     38900
818                         Portland International     38900
819                         Portland International     38900
820                         Portland International     38900
821                         Portland International     38900
822                         Portland International     38900
823                         Portland International     38900
824                      Kansas City International     28140
825          Kona International Airport at Keahole     25900
826               Phoenix Sky Harbor International     38060
827               Phoenix Sky Harbor International     38060
828                       Pittsburgh International     38300
829                 General Mitchell International     33340
830                         McCarran International     29820
831                                  Roberts Field     13460
832                     Palm Springs International     40140
833                             Boise Air Terminal     14260
834               Dane County Regional-Truax Field     31540
835                            Rapid City Regional     39660
836                          Memphis International     32820
837                          Ontario International     40140
838                                Helena Regional     25740
839                         Appleton International     11540
840                Charlotte Douglas International     16740
841                         Richmond International     40060
842                       Reno/Tahoe International     39900
843                       Sacramento International     40900
844                        San Diego International     41740
845                        San Diego International     41740
846                        San Diego International     41740
847                        San Diego International     41740
848                        San Diego International     41740
849                        San Diego International     41740
850                        San Diego International     41740
851                             Monterey Peninsula     41500
852          Prescott Regional Ernest A Love Field     39150
853                       San Luis County Regional     42020
854                         McCarran International     29820
855                        Santa Barbara Municipal     42200
856                 St Louis Lambert International     41180
857                       San Luis County Regional     42020
858                         McCarran International     29820
859                            Miami International     33100
860                   Seattle/Tacoma International     42660
861                   Seattle/Tacoma International     42660
862                   Seattle/Tacoma International     42660
863                   Seattle/Tacoma International     42660
864                    San Francisco International     41860
865                    San Francisco International     41860
866                    San Francisco International     41860
867                    San Francisco International     41860
868                    San Francisco International     41860
869                    San Francisco International     41860
870                    San Francisco International     41860
871                    San Francisco International     41860
872        Norman Y. Mineta San Jose International     41940
873        Norman Y. Mineta San Jose International     41940
874        Norman Y. Mineta San Jose International     41940
875        Norman Y. Mineta San Jose International     41940
876        Norman Y. Mineta San Jose International     41940
877                     Detroit Metro Wayne County     19820
878                           Tucson International     46060
879          Kona International Airport at Keahole     25900
880                   Salt Lake City International     41620
881                        Durango La Plata County     20420
882                          Orlando International     36740
883                                  Meadows Field     12540
884                       San Luis County Regional     42020
885                  Daniel K Inouye International     46520
886                       Sacramento International     40900
887                       Sacramento International     40900
888                       Sacramento International     40900
889                  Daniel K Inouye International     46520
890                                  Roberts Field     13460
891                   Seattle/Tacoma International     42660
892               John Wayne Airport-Orange County     31080
893         Birmingham-Shuttlesworth International     13820
894                            South Bend Regional     43780
895                Dallas/Fort Worth International     19100
896              Charles M. Schulz - Sonoma County     42220
897              Charles M. Schulz - Sonoma County     42220
898              Charles M. Schulz - Sonoma County     42220
899                                Eppley Airfield     36540
900                                Eppley Airfield     36540
901            Ted Stevens Anchorage International     11260
902                           Tucson International     46060
903              Ronald Reagan Washington National     47900
904                                       Bob Hope     31080
905              Albuquerque International Sunport     10740
906                   Billings Logan International     13740
907                   Chicago O'Hare International     16980
908                             Boise Air Terminal     14260
909                             Boise Air Terminal     14260
910                             Boise Air Terminal     14260
911              Bozeman Yellowstone International     14580
912                                     Tri Cities     28420
913                     Detroit Metro Wayne County     19820
914                  John F. Kennedy International     35620
915      Louis Armstrong New Orleans International     35380
916                         Missoula International     33540
917                     Glacier Park International     28060
918                          Spokane International     44060
919                  John F. Kennedy International     35620
920                        Santa Barbara Municipal     42200
921                   Newark Liberty International     35620
922                          Spokane International     44060
923           Rogue Valley International - Medford     32780
924                                Helena Regional     25740
925                           Idaho Falls Regional     26820
926                      Los Angeles International     31080
927           Rogue Valley International - Medford     32780
928           Rogue Valley International - Medford     32780
929             Metropolitan Oakland International     41860
930                               Snohomish County     42660
931                               Snohomish County     42660
932                               Snohomish County     42660
933                               Snohomish County     42660
934                         Portland International     38900
935                         Portland International     38900
936                     Palm Springs International     40140
937                          El Paso International     21340
938                        Pullman Moscow Regional     39420
939                                  Roberts Field     13460
940                        San Diego International     41740
941                        Santa Barbara Municipal     42200
942                   Seattle/Tacoma International     42660
943                   Seattle/Tacoma International     42660
944                   Seattle/Tacoma International     42660
945                   Seattle/Tacoma International     42660
946                   Seattle/Tacoma International     42660
947                   Seattle/Tacoma International     42660
948                   Seattle/Tacoma International     42660
949                   Seattle/Tacoma International     42660
950                   Seattle/Tacoma International     42660
951                   Seattle/Tacoma International     42660
952                   Seattle/Tacoma International     42660
953                   Seattle/Tacoma International     42660
954                   Seattle/Tacoma International     42660
955                   Seattle/Tacoma International     42660
956                   Seattle/Tacoma International     42660
957                    San Francisco International     41860
958        Norman Y. Mineta San Jose International     41940
959               John Wayne Airport-Orange County     31080
960              Charles M. Schulz - Sonoma County     42220
961                           Denver International     19740
962               Austin - Bergstrom International     12420
963                          Bradley International     25540
964                     Philadelphia International     37980
965                     Glacier Park International     28060
966                         Missoula International     33540
967       Hartsfield-Jackson Atlanta International     12060
968                              Greenbrier Valley      <NA>
969                         Appleton International     11540
970                           Denver International     19740
971               Austin - Bergstrom International     12420
972                                Eppley Airfield     36540
973               Austin - Bergstrom International     12420
974                                      Key Field     32940
975                   Seattle/Tacoma International     42660
976               John Wayne Airport-Orange County     31080
977                                      LaGuardia     35620
978               John Wayne Airport-Orange County     31080
979               Austin - Bergstrom International     12420
980                          Bradley International     25540
981                      Los Angeles International     31080
982                   Raleigh-Durham International     39580
983             Savannah/Hilton Head International     42340
984                   Piedmont Triad International     24660
985         Birmingham-Shuttlesworth International     13820
986     Cincinnati/Northern Kentucky International     17140
987       Hartsfield-Jackson Atlanta International     12060
988                             Boise Air Terminal     14260
989                                   Jackson Hole     27220
990                                  Roberts Field     13460
991                            Logan International     14460
992                           Denver International     19740
993                          Orlando International     36740
994      Louis Armstrong New Orleans International     35380
995                            Tampa International     45300
996                            Hilton Head Airport     25940
997                            Logan International     14460
998                                  Lihue Airport     28180
999                       Des Moines International     19780
1000                                 Lihue Airport     28180
1001                 Buffalo Niagara International     15380
1002                  Newark Liberty International     35620
1003                 Daniel K Inouye International     46520
1004                 Daniel K Inouye International     46520
1005                               Kahului Airport     27980
1006                        McCarran International     29820
1007     Louis Armstrong New Orleans International     35380
1008                      Pittsburgh International     38300
1009                             MBS International     40980
1010                Portland International Jetport     38860
1011                               Lincoln Airport     30700
1012               Cleveland-Hopkins International     17460
1013               Cleveland-Hopkins International     17460
1014               Southwest Florida International     15980
1015                      Reno/Tahoe International     39900
1016            City of Colorado Springs Municipal     17820
1017                              Salina Municipal     41460
1018                  Newark Liberty International     35620
1019                           Miami International     33100
1020                           Logan International     14460
1021            Eglin AFB Destin Fort Walton Beach     18880
1022                          Denver International     19740
1023                       Santa Barbara Municipal     42200
1024                  Newark Liberty International     35620
1025                          Denver International     19740
1026               Washington Dulles International     47900
1027                         Norfolk International     47260
1028                          Duluth International     20260
1029                          Denver International     19740
1030                          Denver International     19740
1031                          Denver International     19740
1032                          Denver International     19740
1033               Dallas/Fort Worth International     19100
1034                               Joplin Regional     27900
1035          George Bush Intercontinental/Houston     26420
1036                          Denver International     19740
1037               Southwest Florida International     15980
1038                  Newark Liberty International     35620
1039            City of Colorado Springs Municipal     17820
1040                      Sacramento International     40900
1041                       Nashville International     34980
1042            City of Colorado Springs Municipal     17820
1043                             Will Rogers World     36420
1044                  Newark Liberty International     35620
1045       Fort Lauderdale-Hollywood International     33100
1046                  Newark Liberty International     35620
1047                  Salt Lake City International     41620
1048                                  Jackson Hole     27220
1049                  Newark Liberty International     35620
1050                  Newark Liberty International     35620
1051                  Newark Liberty International     35620
1052                  Newark Liberty International     35620
1053                  Newark Liberty International     35620
1054                  Newark Liberty International     35620
1055                  Newark Liberty International     35620
1056                  Newark Liberty International     35620
1057                  Newark Liberty International     35620
1058                  Newark Liberty International     35620
1059                  Newark Liberty International     35620
1060                                Joe Foss Field     43620
1061                   San Francisco International     41860
1062                    Presque Isle International      <NA>
1063       Fort Lauderdale-Hollywood International     33100
1064                               Robert Gray AAF     28660
1065       Fort Lauderdale-Hollywood International     33100
1066                           Tampa International     45300
1067                     San Antonio International     41700
1068          Greenville-Spartanburg International     43900
1069                      Pittsburgh International     38300
1070         Louisville Muhammad Ali International     31140
1071              Sarasota/Bradenton International     35840
1072       Northwest Florida Beaches International     37460
1073     Louis Armstrong New Orleans International     35380
1074         Louisville Muhammad Ali International     31140
1075                      Sacramento International     40900
1076            Baltimore/Washington International     12580
1077                         Orlando International     36740
1078               Washington Dulles International     47900
1079               Washington Dulles International     47900
1080               Washington Dulles International     47900
1081               Washington Dulles International     47900
1082               Washington Dulles International     47900
1083               Washington Dulles International     47900
1084               Washington Dulles International     47900
1085               Washington Dulles International     47900
1086                                    Tri Cities     28420
1087               Washington Dulles International     47900
1088             Albuquerque International Sunport     10740
1089          George Bush Intercontinental/Houston     26420
1090          George Bush Intercontinental/Houston     26420
1091          George Bush Intercontinental/Houston     26420
1092          George Bush Intercontinental/Houston     26420
1093                              Barkley Regional     37140
1094          George Bush Intercontinental/Houston     26420
1095          George Bush Intercontinental/Houston     26420
1096          George Bush Intercontinental/Houston     26420
1097                  Charleston AFB/International     16700
1098                             Will Rogers World     36420
1099             Ronald Reagan Washington National     47900
1100                Portland International Jetport     38860
1101               Greater Rochester International     40380
1102                    Jacksonville International     27260
1103                     San Antonio International     41700
1104                 John F. Kennedy International     35620
1105            Baltimore/Washington International     12580
1106             John Glenn Columbus International     18140
1107                        Richmond International     40060
1108                        McCarran International     29820
1109                          Bangor International     12620
1110                    Manchester-Boston Regional     31700
1111                       Nashville International     34980
1112                General Mitchell International     33340
1113               Cleveland-Hopkins International     17460
1114                    Indianapolis International     26900
1115                         Orlando International     36740
1116                           Tampa International     45300
1117             John Glenn Columbus International     18140
1118    Cincinnati/Northern Kentucky International     17140
1119              Dane County Regional-Truax Field     31540
1120    Cincinnati/Northern Kentucky International     17140
1121                    Detroit Metro Wayne County     19820
1122    Cincinnati/Northern Kentucky International     17140
1123               Southwest Florida International     15980
1124                     Los Angeles International     31080
1125                     Los Angeles International     31080
1126                    Detroit Metro Wayne County     19820
1127       Norman Y. Mineta San Jose International     41940
1128                        Portland International     38900
1129                          Denver International     19740
1130                      Sacramento International     40900
1131                  Raleigh-Durham International     39580
1132            Baltimore/Washington International     12580
1133                               Kahului Airport     27980
1134               Southwest Florida International     15980
1135                         Norfolk International     47260
1136              Phoenix Sky Harbor International     38060
1137                       San Diego International     41740
1138                          Bishop International     22420
1139                      Palm Beach International     33100
1140                            Lafayette Regional     29180
1141               Washington Dulles International     47900
1142        Birmingham-Shuttlesworth International     13820
1143                  Billings Logan International     13740
1144         Kona International Airport at Keahole     25900
1145                Syracuse Hancock International     45060
1146                  Salt Lake City International     41620
1147                St Louis Lambert International     41180
1148                         Bradley International     25540
1149                    Indianapolis International     26900
1150                  Chicago O'Hare International     16980
1151                  Chicago O'Hare International     16980
1152                  Chicago O'Hare International     16980
1153                  Chicago O'Hare International     16980
1154                    Palm Springs International     40140
1155                  Chicago O'Hare International     16980
1156                  Chicago O'Hare International     16980
1157                          Denver International     19740
1158                  Chicago O'Hare International     16980
1159                  Chicago O'Hare International     16980
1160                  Chicago O'Hare International     16980
1161                  Chicago O'Hare International     16980
1162                  Chicago O'Hare International     16980
1163                  Chicago O'Hare International     16980
1164                                 Lihue Airport     28180
1165                         Memphis International     32820
1166             John Glenn Columbus International     18140
1167                              The Eastern Iowa     16300
1168                        Portland International     38900
1169               Washington Dulles International     47900
1170              Phoenix Sky Harbor International     38060
1171                 Buffalo Niagara International     15380
1172                                  Lovell Field     16860
1173             Bozeman Yellowstone International     14580
1174         Louisville Muhammad Ali International     31140
1175                       Nashville International     34980
1176        General Downing - Peoria International     37900
1177          Rogue Valley International - Medford     32780
1178                     San Antonio International     41700
1179               Dallas/Fort Worth International     19100
1180                    Palm Springs International     40140
1181                       Quad City International     19340
1182               Dallas/Fort Worth International     19100
1183                      Ithaca Tompkins Regional     27060
1184                      Burlington International     15540
1185                              The Eastern Iowa     16300
1186              James M Cox/Dayton International     19430
1187                   San Francisco International     41860
1188                  Newark Liberty International     35620
1189                  Theodore Francis Green State     39300
1190                   San Francisco International     41860
1191                Portland International Jetport     38860
1192                    Philadelphia International     37980
1193                St Louis Lambert International     41180
1194                   San Francisco International     41860
1195                  Theodore Francis Green State     39300
1196               Greater Rochester International     40380
1197                       Quad City International     19340
1198             Ronald Reagan Washington National     47900
1199                         Bradley International     25540
1200                           Miami International     33100
1201                           Tampa International     45300
1202    Cincinnati/Northern Kentucky International     17140
1203                         Ontario International     40140
1204                          Tucson International     46060
1205       Northwest Florida Beaches International     37460
1206             Albuquerque International Sunport     10740
1207                                 Lihue Airport     28180
1208             Albuquerque International Sunport     10740
1209             Albuquerque International Sunport     10740
1210             Albuquerque International Sunport     10740
1211                          Albany International     10580
1212                         Orlando International     36740
1213                      Palm Beach International     33100
1214               Southwest Florida International     15980
1215               Southwest Florida International     15980
1216                      Sacramento International     40900
1217                          Albany International     10580
1218                      Sacramento International     40900
1219                          Albany International     10580
1220           Rick Husband Amarillo International     11100
1221           Rick Husband Amarillo International     11100
1222      Hartsfield-Jackson Atlanta International     12060
1223      Hartsfield-Jackson Atlanta International     12060
1224                         El Paso International     21340
1225                        McCarran International     29820
1226                     Los Angeles International     31080
1227              Phoenix Sky Harbor International     38060
1228      Hartsfield-Jackson Atlanta International     12060
1229      Hartsfield-Jackson Atlanta International     12060
1230      Hartsfield-Jackson Atlanta International     12060
1231      Hartsfield-Jackson Atlanta International     12060
1232      Hartsfield-Jackson Atlanta International     12060
1233                            Long Beach Airport     31080
1234            Metropolitan Oakland International     41860
1235                  Salt Lake City International     41620
1236      Hartsfield-Jackson Atlanta International     12060
1237      Hartsfield-Jackson Atlanta International     12060
1238      Hartsfield-Jackson Atlanta International     12060
1239      Hartsfield-Jackson Atlanta International     12060
1240      Hartsfield-Jackson Atlanta International     12060
1241      Hartsfield-Jackson Atlanta International     12060
1242                           Tulsa International     46140
1243      Hartsfield-Jackson Atlanta International     12060
1244      Hartsfield-Jackson Atlanta International     12060
1245                               Kahului Airport     27980
1246      Hartsfield-Jackson Atlanta International     12060
1247      Hartsfield-Jackson Atlanta International     12060
1248      Hartsfield-Jackson Atlanta International     12060
1249      Hartsfield-Jackson Atlanta International     12060
1250      Hartsfield-Jackson Atlanta International     12060
1251                 Daniel K Inouye International     46520
1252      Hartsfield-Jackson Atlanta International     12060
1253      Hartsfield-Jackson Atlanta International     12060
1254      Hartsfield-Jackson Atlanta International     12060
1255      Hartsfield-Jackson Atlanta International     12060
1256                           Logan International     14460
1257                                     LaGuardia     35620
1258                               Eppley Airfield     36540
1259            Savannah/Hilton Head International     42340
1260              Austin - Bergstrom International     12420
1261                           Miami International     33100
1262                               Eppley Airfield     36540
1263            Metropolitan Oakland International     41860
1264                  Seattle/Tacoma International     42660
1265                    Palm Springs International     40140
1266                       San Diego International     41740
1267              Austin - Bergstrom International     12420
1268              Austin - Bergstrom International     12420
1269              Austin - Bergstrom International     12420
1270              Austin - Bergstrom International     12420
1271              Austin - Bergstrom International     12420
1272              Austin - Bergstrom International     12420
1273              Austin - Bergstrom International     12420
1274              Austin - Bergstrom International     12420
1275              Austin - Bergstrom International     12420
1276              Austin - Bergstrom International     12420
1277              Austin - Bergstrom International     12420
1278              Austin - Bergstrom International     12420
1279              Austin - Bergstrom International     12420
1280              Austin - Bergstrom International     12420
1281              Austin - Bergstrom International     12420
1282              Austin - Bergstrom International     12420
1283              Austin - Bergstrom International     12420
1284              Austin - Bergstrom International     12420
1285                  Theodore Francis Green State     39300
1286                        McCarran International     29820
1287                         Ontario International     40140
1288                         Bradley International     25540
1289                         Bradley International     25540
1290        Birmingham-Shuttlesworth International     13820
1291        Birmingham-Shuttlesworth International     13820
1292        Birmingham-Shuttlesworth International     13820
1293        Birmingham-Shuttlesworth International     13820
1294        Birmingham-Shuttlesworth International     13820
1295        Birmingham-Shuttlesworth International     13820
1296                      Bellingham International     13380
1297                       Nashville International     34980
1298                       Nashville International     34980
1299                       Nashville International     34980
1300                             Montrose Regional     33940
1301                       Nashville International     34980
1302                       Nashville International     34980
1303                       Nashville International     34980
1304                       Nashville International     34980
1305                       Nashville International     34980
1306                      Reno/Tahoe International     39900
1307                       Nashville International     34980
1308                            Long Beach Airport     31080
1309                       Nashville International     34980
1310                       Nashville International     34980
1311                       Nashville International     34980
1312                       Nashville International     34980
1313                       Nashville International     34980
1314                       Nashville International     34980
1315                       Nashville International     34980
1316                       Nashville International     34980
1317                       Nashville International     34980
1318                       Nashville International     34980
1319                       Nashville International     34980
1320                       Nashville International     34980
1321                       Nashville International     34980
1322                       Nashville International     34980
1323                       Nashville International     34980
1324                       Nashville International     34980
1325                 Daniel K Inouye International     46520
1326                               Kahului Airport     27980
1327                       Nashville International     34980
1328                       Nashville International     34980
1329                       Nashville International     34980
1330                       Nashville International     34980
1331                       Nashville International     34980
1332                       Nashville International     34980
1333                 Buffalo Niagara International     15380
1334                           Miami International     33100
1335                            Boise Air Terminal     14260
1336                            Boise Air Terminal     14260
1337                            Boise Air Terminal     14260
1338                            Boise Air Terminal     14260
1339                      Reno/Tahoe International     39900
1340                             Dallas Love Field     19100
1341                               William P Hobby     26420
1342                  Charleston AFB/International     16700
1343          Greenville-Spartanburg International     43900
1344                    Indianapolis International     26900
1345                    Jacksonville International     27260
1346              Phoenix Sky Harbor International     38060
1347            Savannah/Hilton Head International     42340
1348                          Denver International     19740
1349                     Los Angeles International     31080
1350             Minneapolis-St Paul International     33460
1351              Phoenix Sky Harbor International     38060
1352       Norman Y. Mineta San Jose International     41940
1353                           Logan International     14460
1354              Sarasota/Bradenton International     35840
1355                 Buffalo Niagara International     15380
1356                 Buffalo Niagara International     15380
1357                 Buffalo Niagara International     15380
1358                                      Bob Hope     31080
1359     Louis Armstrong New Orleans International     35380
1360                  Raleigh-Durham International     39580
1361                           Tampa International     45300
1362                             Will Rogers World     36420
1363                                      Bob Hope     31080
1364                                      Bob Hope     31080
1365                                      Bob Hope     31080
1366                                      Bob Hope     31080
1367                                      Bob Hope     31080
1368                                      Bob Hope     31080
1369            Baltimore/Washington International     12580
1370            Baltimore/Washington International     12580
1371                  Seattle/Tacoma International     42660
1372            Baltimore/Washington International     12580
1373            Baltimore/Washington International     12580
1374            Baltimore/Washington International     12580
1375            Baltimore/Washington International     12580
1376            Baltimore/Washington International     12580
1377            Baltimore/Washington International     12580
1378            Baltimore/Washington International     12580
1379            Baltimore/Washington International     12580
1380            Baltimore/Washington International     12580
1381            Baltimore/Washington International     12580
1382                Luis Munoz Marin International     41980
1383            Baltimore/Washington International     12580
1384            Baltimore/Washington International     12580
1385            Baltimore/Washington International     12580
1386         Kona International Airport at Keahole     25900
1387            Baltimore/Washington International     12580
1388               Washington Dulles International     47900
1389            Baltimore/Washington International     12580
1390            Baltimore/Washington International     12580
1391            Baltimore/Washington International     12580
1392         Kona International Airport at Keahole     25900
1393            Baltimore/Washington International     12580
1394            Baltimore/Washington International     12580
1395            Baltimore/Washington International     12580
1396            Baltimore/Washington International     12580
1397            Baltimore/Washington International     12580
1398            Baltimore/Washington International     12580
1399            Baltimore/Washington International     12580
1400               Southwest Florida International     15980
1401             Bozeman Yellowstone International     14580
1402                     Kansas City International     28140
1403                General Mitchell International     33340
1404                  Charleston AFB/International     16700
1405            City of Colorado Springs Municipal     17820
1406                  Charleston AFB/International     16700
1407                     Los Angeles International     31080
1408               Southwest Florida International     15980
1409               Cleveland-Hopkins International     17460
1410               Cleveland-Hopkins International     17460
1411                 Daniel K Inouye International     46520
1412               Cleveland-Hopkins International     17460
1413               Cleveland-Hopkins International     17460
1414             John Glenn Columbus International     18140
1415             John Glenn Columbus International     18140
1416                          Tucson International     46060
1417             John Glenn Columbus International     18140
1418              Phoenix Sky Harbor International     38060
1419       Northwest Florida Beaches International     37460
1420             John Glenn Columbus International     18140
1421             John Glenn Columbus International     18140
1422             John Glenn Columbus International     18140
1423             John Glenn Columbus International     18140
1424             John Glenn Columbus International     18140
1425             John Glenn Columbus International     18140
1426                       Santa Barbara Municipal     42200
1427            City of Colorado Springs Municipal     17820
1428            City of Colorado Springs Municipal     17820
1429                  Corpus Christi International     18580
1430               Southwest Florida International     15980
1431                         Spokane International     44060
1432            Metropolitan Oakland International     41860
1433    Cincinnati/Northern Kentucky International     17140
1434    Cincinnati/Northern Kentucky International     17140
1435    Cincinnati/Northern Kentucky International     17140
1436                           Tampa International     45300
1437    Cincinnati/Northern Kentucky International     17140
1438                             Dallas Love Field     19100
1439                            Long Beach Airport     31080
1440                             Dallas Love Field     19100
1441            Metropolitan Oakland International     41860
1442                             Dallas Love Field     19100
1443                             Dallas Love Field     19100
1444                             Dallas Love Field     19100
1445                             Dallas Love Field     19100
1446                             Dallas Love Field     19100
1447                             Dallas Love Field     19100
1448                             Dallas Love Field     19100
1449                             Dallas Love Field     19100
1450                             Dallas Love Field     19100
1451                             Dallas Love Field     19100
1452                             Dallas Love Field     19100
1453                             Dallas Love Field     19100
1454                             Dallas Love Field     19100
1455                             Dallas Love Field     19100
1456                             Dallas Love Field     19100
1457                             Dallas Love Field     19100
1458                             Dallas Love Field     19100
1459                             Dallas Love Field     19100
1460                             Dallas Love Field     19100
1461                             Dallas Love Field     19100
1462                             Dallas Love Field     19100
1463                             Dallas Love Field     19100
1464                             Dallas Love Field     19100
1465                             Dallas Love Field     19100
1466                             Dallas Love Field     19100
1467                             Dallas Love Field     19100
1468                             Dallas Love Field     19100
1469                             Dallas Love Field     19100
1470                             Dallas Love Field     19100
1471                             Dallas Love Field     19100
1472                             Dallas Love Field     19100
1473                             Dallas Love Field     19100
1474                             Dallas Love Field     19100
1475                             Dallas Love Field     19100
1476            Metropolitan Oakland International     41860
1477              Sarasota/Bradenton International     35840
1478             Ronald Reagan Washington National     47900
1479             Ronald Reagan Washington National     47900
1480             Ronald Reagan Washington National     47900
1481                          Denver International     19740
1482             Ronald Reagan Washington National     47900
1483             Ronald Reagan Washington National     47900
1484             Ronald Reagan Washington National     47900
1485             Ronald Reagan Washington National     47900
1486             Ronald Reagan Washington National     47900
1487             Ronald Reagan Washington National     47900
1488             Ronald Reagan Washington National     47900
1489            Baltimore/Washington International     12580
1490             Ronald Reagan Washington National     47900
1491                          Denver International     19740
1492                                     LaGuardia     35620
1493                          Denver International     19740
1494                         Long Island MacArthur     35620
1495                          Denver International     19740
1496              Sarasota/Bradenton International     35840
1497                          Denver International     19740
1498                          Denver International     19740
1499                          Denver International     19740
1500              Sarasota/Bradenton International     35840
1501                          Denver International     19740
1502                          Denver International     19740
1503                          Denver International     19740
1504                         Orlando International     36740
1505                    Philadelphia International     37980
1506                          Denver International     19740
1507                          Denver International     19740
1508                          Denver International     19740
1509       Fort Lauderdale-Hollywood International     33100
1510                          Denver International     19740
1511                          Denver International     19740
1512                          Denver International     19740
1513                          Denver International     19740
1514                          Denver International     19740
1515                          Denver International     19740
1516                          Denver International     19740
1517                          Denver International     19740
1518                      Sacramento International     40900
1519                          Denver International     19740
1520                          Denver International     19740
1521                          Denver International     19740
1522                          Denver International     19740
1523                          Denver International     19740
1524                          Denver International     19740
1525                          Denver International     19740
1526                          Denver International     19740
1527                          Denver International     19740
1528                           Tampa International     45300
1529          George Bush Intercontinental/Houston     26420
1530                               William P Hobby     26420
1531                       San Diego International     41740
1532                    Detroit Metro Wayne County     19820
1533                    Detroit Metro Wayne County     19820
1534                    Detroit Metro Wayne County     19820
1535             Albuquerque International Sunport     10740
1536                    Philadelphia International     37980
1537                         El Paso International     21340
1538                         El Paso International     21340
1539                         El Paso International     21340
1540                         El Paso International     21340
1541                         El Paso International     21340
1542       Norman Y. Mineta San Jose International     41940
1543                           Tampa International     45300
1544                    Jacksonville International     27260
1545                           Tampa International     45300
1546                         El Paso International     21340
1547                         El Paso International     21340
1548                       San Diego International     41740
1549                            Mahlon Sweet Field     21660
1550                            Mahlon Sweet Field     21660
1551                 Fresno Yosemite International     23420
1552                          Denver International     19740
1553                        McCarran International     29820
1554       Norman Y. Mineta San Jose International     41940
1555       Fort Lauderdale-Hollywood International     33100
1556              Austin - Bergstrom International     12420
1557       Fort Lauderdale-Hollywood International     33100
1558       Fort Lauderdale-Hollywood International     33100
1559                  Theodore Francis Green State     39300
1560       Fort Lauderdale-Hollywood International     33100
1561       Fort Lauderdale-Hollywood International     33100
1562       Fort Lauderdale-Hollywood International     33100
1563       Fort Lauderdale-Hollywood International     33100
1564              John Wayne Airport-Orange County     31080
1565       Fort Lauderdale-Hollywood International     33100
1566       Fort Lauderdale-Hollywood International     33100
1567       Fort Lauderdale-Hollywood International     33100
1568                         Norfolk International     47260
1569                           Tulsa International     46140
1570                         Spokane International     44060
1571                    Manchester-Boston Regional     31700
1572                         Spokane International     44060
1573                         Spokane International     44060
1574              Phoenix Sky Harbor International     38060
1575                         Spokane International     44060
1576                  Gerald R. Ford International     24340
1577          Greenville-Spartanburg International     43900
1578       Norman Y. Mineta San Jose International     41940
1579                     Los Angeles International     31080
1580                  Salt Lake City International     41620
1581                       Nashville International     34980
1582                               William P Hobby     26420
1583                  Raleigh-Durham International     39580
1584                                     LaGuardia     35620
1585                               William P Hobby     26420
1586                               William P Hobby     26420
1587                               William P Hobby     26420
1588                               William P Hobby     26420
1589                               William P Hobby     26420
1590                               William P Hobby     26420
1591                               William P Hobby     26420
1592                               William P Hobby     26420
1593                               William P Hobby     26420
1594                                     LaGuardia     35620
1595                               William P Hobby     26420
1596                               William P Hobby     26420
1597                               William P Hobby     26420
1598                               William P Hobby     26420
1599                               William P Hobby     26420
1600                               William P Hobby     26420
1601                               William P Hobby     26420
1602                               William P Hobby     26420
1603                               William P Hobby     26420
1604                               William P Hobby     26420
1605                               William P Hobby     26420
1606                               William P Hobby     26420
1607                               William P Hobby     26420
1608                               William P Hobby     26420
1609                               William P Hobby     26420
1610                               William P Hobby     26420
1611                               William P Hobby     26420
1612                               William P Hobby     26420
1613                               William P Hobby     26420
1614                               William P Hobby     26420
1615                         Long Island MacArthur     35620
1616                               William P Hobby     26420
1617                               William P Hobby     26420
1618                               William P Hobby     26420
1619                               William P Hobby     26420
1620      Jackson Medgar Wiley Evers International     27140
1621                          Valley International     15180
1622            City of Colorado Springs Municipal     17820
1623                  Salt Lake City International     41620
1624            Metropolitan Oakland International     41860
1625                      Sacramento International     40900
1626                  Gerald R. Ford International     24340
1627          George Bush Intercontinental/Houston     26420
1628                         Orlando International     36740
1629          George Bush Intercontinental/Houston     26420
1630                         Wichita Mid-Continent     48620
1631                         Wichita Mid-Continent     48620
1632                Portland International Jetport     38860
1633                    Indianapolis International     26900
1634                    Indianapolis International     26900
1635                    Indianapolis International     26900
1636                    Indianapolis International     26900
1637                    Indianapolis International     26900
1638                         Long Island MacArthur     35620
1639                           Miami International     33100
1640            Eglin AFB Destin Fort Walton Beach     18880
1641                    Manchester-Boston Regional     31700
1642                    Jacksonville International     27260
1643                    Jacksonville International     27260
1644                    Jacksonville International     27260
1645      Hartsfield-Jackson Atlanta International     12060
1646            Baltimore/Washington International     12580
1647                             Will Rogers World     36420
1648                        McCarran International     29820
1649                        McCarran International     29820
1650                    Indianapolis International     26900
1651     Louis Armstrong New Orleans International     35380
1652                      Pittsburgh International     38300
1653                        McCarran International     29820
1654                      Pittsburgh International     38300
1655                           Tampa International     45300
1656                        McCarran International     29820
1657                        McCarran International     29820
1658      Hartsfield-Jackson Atlanta International     12060
1659                  Chicago Midway International     16980
1660                        McCarran International     29820
1661                        McCarran International     29820
1662                      Pittsburgh International     38300
1663                        McCarran International     29820
1664                        McCarran International     29820
1665                        McCarran International     29820
1666                        McCarran International     29820
1667                        McCarran International     29820
1668                        McCarran International     29820
1669                        McCarran International     29820
1670                        McCarran International     29820
1671                        McCarran International     29820
1672                        McCarran International     29820
1673                        McCarran International     29820
1674                        McCarran International     29820
1675                        McCarran International     29820
1676                        McCarran International     29820
1677                        McCarran International     29820
1678                        McCarran International     29820
1679                     Los Angeles International     31080
1680                     Los Angeles International     31080
1681                                 Lihue Airport     28180
1682     Louis Armstrong New Orleans International     35380
1683                     San Antonio International     41700
1684                     Los Angeles International     31080
1685                           Tulsa International     46140
1686                         Orlando International     36740
1687       Fort Lauderdale-Hollywood International     33100
1688                     Los Angeles International     31080
1689                     Los Angeles International     31080
1690                     Los Angeles International     31080
1691                     Los Angeles International     31080
1692                         Ontario International     40140
1693                  Raleigh-Durham International     39580
1694           Lubbock Preston Smith International     31180
1695                             Dallas Love Field     19100
1696                               William P Hobby     26420
1697                                     LaGuardia     35620
1698     Louis Armstrong New Orleans International     35380
1699                             Will Rogers World     36420
1700                                     LaGuardia     35620
1701                                     LaGuardia     35620
1702                            Long Beach Airport     31080
1703                  Chicago Midway International     16980
1704                            Long Beach Airport     31080
1705              John Wayne Airport-Orange County     31080
1706                            Long Beach Airport     31080
1707                            Long Beach Airport     31080
1708                            Long Beach Airport     31080
1709                         Ontario International     40140
1710                            Long Beach Airport     31080
1711                            Long Beach Airport     31080
1712                            Long Beach Airport     31080
1713                            Long Beach Airport     31080
1714                            Long Beach Airport     31080
1715                                   Adams Field     30780
1716      Midland International Air and Space Port     33260
1717      Midland International Air and Space Port     33260
1718                     Kansas City International     28140
1719                     Kansas City International     28140
1720              Sarasota/Bradenton International     35840
1721                     Kansas City International     28140
1722                     Kansas City International     28140
1723                     Kansas City International     28140
1724                     Kansas City International     28140
1725                     Kansas City International     28140
1726                     Kansas City International     28140
1727                     Kansas City International     28140
1728                 Buffalo Niagara International     15380
1729             Bozeman Yellowstone International     14580
1730                         Ontario International     40140
1731                  Seattle/Tacoma International     42660
1732                 Fresno Yosemite International     23420
1733              Phoenix Sky Harbor International     38060
1734                         Orlando International     36740
1735                           Logan International     14460
1736                      Des Moines International     19780
1737                       San Diego International     41740
1738                         Orlando International     36740
1739                         Orlando International     36740
1740                         Orlando International     36740
1741                         Orlando International     36740
1742                         Orlando International     36740
1743                         Orlando International     36740
1744                         Orlando International     36740
1745                         Orlando International     36740
1746                         Orlando International     36740
1747                         Orlando International     36740
1748                                 Lihue Airport     28180
1749                         Orlando International     36740
1750                         Orlando International     36740
1751                  Chicago Midway International     16980
1752                  Chicago Midway International     16980
1753                  Chicago Midway International     16980
1754                  Chicago Midway International     16980
1755                  Chicago Midway International     16980
1756                  Chicago Midway International     16980
1757                  Chicago Midway International     16980
1758                  Chicago Midway International     16980
1759                  Chicago Midway International     16980
1760                  Chicago Midway International     16980
1761                  Chicago Midway International     16980
1762                  Chicago Midway International     16980
1763                  Chicago Midway International     16980
1764                  Chicago Midway International     16980
1765                  Chicago Midway International     16980
1766                  Chicago Midway International     16980
1767                  Chicago Midway International     16980
1768                  Chicago Midway International     16980
1769                  Chicago Midway International     16980
1770                  Chicago Midway International     16980
1771                  Chicago Midway International     16980
1772                  Chicago Midway International     16980
1773                  Chicago Midway International     16980
1774                  Chicago Midway International     16980
1775                  Chicago Midway International     16980
1776                  Chicago Midway International     16980
1777                  Chicago Midway International     16980
1778                  Chicago Midway International     16980
1779                  Chicago Midway International     16980
1780                  Chicago Midway International     16980
1781                  Chicago Midway International     16980
1782                St Louis Lambert International     41180
1783                  Chicago Midway International     16980
1784                  Chicago Midway International     16980
1785                  Chicago Midway International     16980
1786                  Chicago Midway International     16980
1787                  Chicago Midway International     16980
1788                  Chicago Midway International     16980
1789                  Chicago Midway International     16980
1790                  Chicago Midway International     16980
1791                  Chicago Midway International     16980
1792                  Chicago Midway International     16980
1793                  Chicago Midway International     16980
1794                  Chicago Midway International     16980
1795                  Chicago Midway International     16980
1796                  Chicago Midway International     16980
1797                  Chicago Midway International     16980
1798                  Chicago Midway International     16980
1799                  Chicago Midway International     16980
1800                  Chicago Midway International     16980
1801                         Memphis International     32820
1802                         Memphis International     32820
1803                         Memphis International     32820
1804                         Memphis International     32820
1805                         Memphis International     32820
1806                     San Antonio International     41700
1807             Minneapolis-St Paul International     33460
1808                           Miami International     33100
1809                           Miami International     33100
1810                     Kansas City International     28140
1811                General Mitchell International     33340
1812                General Mitchell International     33340
1813                General Mitchell International     33340
1814                General Mitchell International     33340
1815                General Mitchell International     33340
1816             Minneapolis-St Paul International     33460
1817               Southwest Florida International     15980
1818                       San Diego International     41740
1819     Louis Armstrong New Orleans International     35380
1820     Louis Armstrong New Orleans International     35380
1821     Louis Armstrong New Orleans International     35380
1822     Louis Armstrong New Orleans International     35380
1823     Louis Armstrong New Orleans International     35380
1824     Louis Armstrong New Orleans International     35380
1825     Louis Armstrong New Orleans International     35380
1826     Louis Armstrong New Orleans International     35380
1827            City of Colorado Springs Municipal     17820
1828     Louis Armstrong New Orleans International     35380
1829     Louis Armstrong New Orleans International     35380
1830     Louis Armstrong New Orleans International     35380
1831                           Tulsa International     46140
1832                    Myrtle Beach International     34820
1833                    Myrtle Beach International     34820
1834            Metropolitan Oakland International     41860
1835            Metropolitan Oakland International     41860
1836            Metropolitan Oakland International     41860
1837            Metropolitan Oakland International     41860
1838                       San Diego International     41740
1839            Metropolitan Oakland International     41860
1840                    Indianapolis International     26900
1841            Metropolitan Oakland International     41860
1842            Metropolitan Oakland International     41860
1843            Metropolitan Oakland International     41860
1844       Norman Y. Mineta San Jose International     41940
1845            Metropolitan Oakland International     41860
1846            Metropolitan Oakland International     41860
1847            Metropolitan Oakland International     41860
1848            Metropolitan Oakland International     41860
1849            Metropolitan Oakland International     41860
1850                      Sacramento International     40900
1851                             Will Rogers World     36420
1852                             Will Rogers World     36420
1853                             Will Rogers World     36420
1854                               Kahului Airport     27980
1855              Sarasota/Bradenton International     35840
1856                               Eppley Airfield     36540
1857                               Eppley Airfield     36540
1858                               Eppley Airfield     36540
1859                     San Antonio International     41700
1860                         Ontario International     40140
1861                         Ontario International     40140
1862            Savannah/Hilton Head International     42340
1863                  Chicago O'Hare International     16980
1864                  Chicago O'Hare International     16980
1865                  Chicago O'Hare International     16980
1866                         Norfolk International     47260
1867                         Norfolk International     47260
1868                         Norfolk International     47260
1869                         Norfolk International     47260
1870                         Bradley International     25540
1871                               Eppley Airfield     36540
1872                        Portland International     38900
1873                           Tampa International     45300
1874                                 Lihue Airport     28180
1875                   San Francisco International     41860
1876                    Philadelphia International     37980
1877                           Miami International     33100
1878              Phoenix Sky Harbor International     38060
1879                General Mitchell International     33340
1880              Phoenix Sky Harbor International     38060
1881      Hartsfield-Jackson Atlanta International     12060
1882              Phoenix Sky Harbor International     38060
1883              Phoenix Sky Harbor International     38060
1884              Phoenix Sky Harbor International     38060
1885              Phoenix Sky Harbor International     38060
1886              Phoenix Sky Harbor International     38060
1887              Phoenix Sky Harbor International     38060
1888              Phoenix Sky Harbor International     38060
1889              Phoenix Sky Harbor International     38060
1890              Phoenix Sky Harbor International     38060
1891              Phoenix Sky Harbor International     38060
1892              Phoenix Sky Harbor International     38060
1893              Phoenix Sky Harbor International     38060
1894              Phoenix Sky Harbor International     38060
1895              Phoenix Sky Harbor International     38060
1896                 Daniel K Inouye International     46520
1897              Phoenix Sky Harbor International     38060
1898              Phoenix Sky Harbor International     38060
1899              Phoenix Sky Harbor International     38060
1900              Phoenix Sky Harbor International     38060
1901              Phoenix Sky Harbor International     38060
1902              Phoenix Sky Harbor International     38060
1903                      Pittsburgh International     38300
1904                      Pittsburgh International     38300
1905                      Pittsburgh International     38300
1906                      Pittsburgh International     38300
1907                      Pittsburgh International     38300
1908                      Pittsburgh International     38300
1909                 Pensacola Gulf Coast Regional     37860
1910                 Pensacola Gulf Coast Regional     37860
1911                 Pensacola Gulf Coast Regional     37860
1912                    Palm Springs International     40140
1913                    Palm Springs International     40140
1914                  Raleigh-Durham International     39580
1915            Metropolitan Oakland International     41860
1916                  Raleigh-Durham International     39580
1917                Luis Munoz Marin International     41980
1918                     San Antonio International     41700
1919                  Raleigh-Durham International     39580
1920                        Richmond International     40060
1921                      Reno/Tahoe International     39900
1922                      Reno/Tahoe International     39900
1923                      Reno/Tahoe International     39900
1924                      Reno/Tahoe International     39900
1925               Greater Rochester International     40380
1926               Greater Rochester International     40380
1927                    Detroit Metro Wayne County     19820
1928               Southwest Florida International     15980
1929               Southwest Florida International     15980
1930               Southwest Florida International     15980
1931               Southwest Florida International     15980
1932               Southwest Florida International     15980
1933                       San Diego International     41740
1934            Eglin AFB Destin Fort Walton Beach     18880
1935                  Charleston AFB/International     16700
1936                         Spokane International     44060
1937                       San Diego International     41740
1938                       San Diego International     41740
1939                       San Diego International     41740
1940             Minneapolis-St Paul International     33460
1941                          Tucson International     46060
1942                     San Antonio International     41700
1943                     San Antonio International     41700
1944                     San Antonio International     41700
1945                     San Antonio International     41700
1946                             Dallas Love Field     19100
1947                       Santa Barbara Municipal     42200
1948         Louisville Muhammad Ali International     31140
1949         Louisville Muhammad Ali International     31140
1950         Louisville Muhammad Ali International     31140
1951         Louisville Muhammad Ali International     31140
1952         Louisville Muhammad Ali International     31140
1953              John Wayne Airport-Orange County     31080
1954              John Wayne Airport-Orange County     31080
1955                  Raleigh-Durham International     39580
1956                   San Francisco International     41860
1957                   San Francisco International     41860
1958       Norman Y. Mineta San Jose International     41940
1959       Norman Y. Mineta San Jose International     41940
1960                 Daniel K Inouye International     46520
1961       Norman Y. Mineta San Jose International     41940
1962                               Kahului Airport     27980
1963                               Kahului Airport     27980
1964       Norman Y. Mineta San Jose International     41940
1965       Norman Y. Mineta San Jose International     41940
1966       Norman Y. Mineta San Jose International     41940
1967       Norman Y. Mineta San Jose International     41940
1968                Luis Munoz Marin International     41980
1969                  Salt Lake City International     41620
1970                  Salt Lake City International     41620
1971                  Salt Lake City International     41620
1972                  Salt Lake City International     41620
1973                      Sacramento International     40900
1974                     Kansas City International     28140
1975                      Sacramento International     40900
1976                      Sacramento International     40900
1977         Kona International Airport at Keahole     25900
1978                      Sacramento International     40900
1979                      Sacramento International     40900
1980                      Sacramento International     40900
1981                      Sacramento International     40900
1982              John Wayne Airport-Orange County     31080
1983     Louis Armstrong New Orleans International     35380
1984              John Wayne Airport-Orange County     31080
1985              Sarasota/Bradenton International     35840
1986              Sarasota/Bradenton International     35840
1987              Sarasota/Bradenton International     35840
1988              Sarasota/Bradenton International     35840
1989                St Louis Lambert International     41180
1990                St Louis Lambert International     41180
1991                St Louis Lambert International     41180
1992                St Louis Lambert International     41180
1993                St Louis Lambert International     41180
1994                St Louis Lambert International     41180
1995                St Louis Lambert International     41180
1996                St Louis Lambert International     41180
1997                St Louis Lambert International     41180
1998                St Louis Lambert International     41180
1999                St Louis Lambert International     41180
2000                         Bradley International     25540
2001                St Louis Lambert International     41180
2002                St Louis Lambert International     41180
2003                St Louis Lambert International     41180
2004                St Louis Lambert International     41180
2005                St Louis Lambert International     41180
2006                St Louis Lambert International     41180
2007                St Louis Lambert International     41180
2008                St Louis Lambert International     41180
2009                St Louis Lambert International     41180
2010                St Louis Lambert International     41180
2011                St Louis Lambert International     41180
2012                St Louis Lambert International     41180
2013                St Louis Lambert International     41180
2014                St Louis Lambert International     41180
2015                St Louis Lambert International     41180
2016                St Louis Lambert International     41180
2017                           Tampa International     45300
2018                Syracuse Hancock International     45060
2019                          Denver International     19740
2020                           Tampa International     45300
2021                           Tampa International     45300
2022                           Tampa International     45300
2023                           Tampa International     45300
2024                           Tampa International     45300
2025                           Tampa International     45300
2026                           Tampa International     45300
2027                           Tampa International     45300
2028                           Tampa International     45300
2029                          Tucson International     46060
2030                          Tucson International     46060
2031            Eglin AFB Destin Fort Walton Beach     18880
2032                General Mitchell International     33340
2033                           Shreveport Regional     43340
2034          Rogue Valley International - Medford     32780
2035                         Orlando International     36740
2036               Dallas/Fort Worth International     19100
2037                      Sacramento International     40900
2038    Cincinnati/Northern Kentucky International     17140
2039                    Jacksonville International     27260
2040                       San Diego International     41740
2041                  Raleigh-Durham International     39580
2042               Washington Dulles International     47900
2043               Washington Dulles International     47900
2044          George Bush Intercontinental/Houston     26420
2045          George Bush Intercontinental/Houston     26420
2046                                     LaGuardia     35620
2047                    Philadelphia International     37980
2048              Phoenix Sky Harbor International     38060
2049              Phoenix Sky Harbor International     38060
2050              John Wayne Airport-Orange County     31080
2051                 Pensacola Gulf Coast Regional     37860
2052             Minneapolis-St Paul International     33460
2053                Luis Munoz Marin International     41980
2054               Washington Dulles International     47900
2055                          Bangor International     12620
2056                 Buffalo Niagara International     15380
2057                      Harrisburg International     25420
2058                    Jacksonville International     27260
2059                           Logan International     14460
2060    Cincinnati/Northern Kentucky International     17140
2061                           Logan International     14460
2062                          Denver International     19740
2063     Louis Armstrong New Orleans International     35380
2064                      Des Moines International     19780
2065                         Norfolk International     47260
2066               Dallas/Fort Worth International     19100
2067                      Palm Beach International     33100
2068                           Logan International     14460
2069                           Logan International     14460
2070                           Logan International     14460
2071                   San Francisco International     41860
2072                    Manchester-Boston Regional     31700
2073                  Charleston AFB/International     16700
2074                           Tulsa International     46140
2075               Cleveland-Hopkins International     17460
2076               Cleveland-Hopkins International     17460
2077               Charlotte Douglas International     16740
2078               Charlotte Douglas International     16740
2079                    Indianapolis International     26900
2080             John Glenn Columbus International     18140
2081             John Glenn Columbus International     18140
2082             John Glenn Columbus International     18140
2083    Cincinnati/Northern Kentucky International     17140
2084                      Sacramento International     40900
2085             Ronald Reagan Washington National     47900
2086             Ronald Reagan Washington National     47900
2087             Ronald Reagan Washington National     47900
2088             Ronald Reagan Washington National     47900
2089              Dane County Regional-Truax Field     31540
2090                  Newark Liberty International     35620
2091                  Newark Liberty International     35620
2092                  Newark Liberty International     35620
2093                  Newark Liberty International     35620
2094                  Newark Liberty International     35620
2095                  Newark Liberty International     35620
2096                 Pensacola Gulf Coast Regional     37860
2097                  Piedmont Triad International     24660
2098               Washington Dulles International     47900
2099               Washington Dulles International     47900
2100                      Wilmington International     48900
2101                    Indianapolis International     26900
2102                   Daytona Beach International     19660
2103                    Indianapolis International     26900
2104                General Mitchell International     33340
2105         Veterans Airport of Southern Illinois     16060
2106               Dallas/Fort Worth International     19100
2107                 John F. Kennedy International     35620
2108       Northwest Florida Beaches International     37460
2109                 John F. Kennedy International     35620
2110              Phoenix Sky Harbor International     38060
2111                                  McGhee Tyson     28940
2112                                     LaGuardia     35620
2113                 John F. Kennedy International     35620
2114                 John F. Kennedy International     35620
2115                 John F. Kennedy International     35620
2116                                     LaGuardia     35620
2117                                     LaGuardia     35620
2118                 John F. Kennedy International     35620
2119                 John F. Kennedy International     35620
2120                 John F. Kennedy International     35620
2121                                     LaGuardia     35620
2122                                     LaGuardia     35620
2123                                     LaGuardia     35620
2124          Greenville-Spartanburg International     43900
2125                         Norfolk International     47260
2126                               Eppley Airfield     36540
2127                         Norfolk International     47260
2128                    Philadelphia International     37980
2129                      Pittsburgh International     38300
2130                      Pittsburgh International     38300
2131                       Fairbanks International     21820
2132                      Pittsburgh International     38300
2133            Savannah/Hilton Head International     42340
2134            Savannah/Hilton Head International     42340
2135         Louisville Muhammad Ali International     31140
2136                  Raleigh-Durham International     39580
2137                  Raleigh-Durham International     39580
2138                  Theodore Francis Green State     39300
2139                           Logan International     14460
2140         Louisville Muhammad Ali International     31140
2141             John Glenn Columbus International     18140
2142               Charlotte Douglas International     16740
2143                  Charleston AFB/International     16700
2144               Cleveland-Hopkins International     17460
2145                     Charlottesville Albemarle     16820
2146                         Akron-Canton Regional     10420
2147               Washington Dulles International     47900
2148                  Seattle/Tacoma International     42660
2149          Sioux Gateway Brig Gen Bud Day Field     43580
2150                  Chicago O'Hare International     16980
2151                  Chicago O'Hare International     16980
2152                        McCarran International     29820
2153                     San Antonio International     41700
2154                        Phoenix - Mesa Gateway     38060
2155             Minneapolis-St Paul International     33460
2156             Minneapolis-St Paul International     33460
2157                      Chippewa Valley Regional     20740
2158                          Albany International     10580
2159                      Wilmington International     48900
2160                          Denver International     19740
2161             Ronald Reagan Washington National     47900
2162                       San Diego International     41740
2163                    Myrtle Beach International     34820
2164               Southwest Florida International     15980
2165                        Richmond International     40060
2166                  Piedmont Triad International     24660
2167                Syracuse Hancock International     45060
2168                     Kansas City International     28140
2169                          Denver International     19740
2170                  Gerald R. Ford International     24340
2171   Huntsville International-Carl T Jones Field     26620
2172          George Bush Intercontinental/Houston     26420
2173                     Los Angeles International     31080
2174       Fort Lauderdale-Hollywood International     33100
2175                 Pensacola Gulf Coast Regional     37860
2176                          Denver International     19740
2177                 Pensacola Gulf Coast Regional     37860
2178                               Tweed New Haven     35300
2179                               Tweed New Haven     35300
2180                         Orlando International     36740
2181                     Los Angeles International     31080
2182               Aspen Pitkin County Sardy Field     24060
2183        Birmingham-Shuttlesworth International     13820
2184                                     LaGuardia     35620
2185                General Mitchell International     33340
2186             Ronald Reagan Washington National     47900
2187             Ronald Reagan Washington National     47900
2188               Dallas/Fort Worth International     19100
2189               Dallas/Fort Worth International     19100
2190               Dallas/Fort Worth International     19100
2191                 Daniel K Inouye International     46520
2192                 John F. Kennedy International     35620
2193      Hartsfield-Jackson Atlanta International     12060
2194                  Chicago O'Hare International     16980
2195                    Philadelphia International     37980
2196                    Philadelphia International     37980
2197              Phoenix Sky Harbor International     38060
2198              Phoenix Sky Harbor International     38060
2199                       San Diego International     41740
2200                       Fairbanks International     21820
2201                        Portland International     38900
2202                           Logan International     14460
2203                           Logan International     14460
2204                                     LaGuardia     35620
2205                         Ontario International     40140
2206                   San Francisco International     41860
2207      Hartsfield-Jackson Atlanta International     12060
2208      Hartsfield-Jackson Atlanta International     12060
2209      Hartsfield-Jackson Atlanta International     12060
2210      Hartsfield-Jackson Atlanta International     12060
2211      Hartsfield-Jackson Atlanta International     12060
2212      Hartsfield-Jackson Atlanta International     12060
2213                           Logan International     14460
2214             Ronald Reagan Washington National     47900
2215                    Detroit Metro Wayne County     19820
2216                    Detroit Metro Wayne County     19820
2217                    Detroit Metro Wayne County     19820
2218                 John F. Kennedy International     35620
2219                 John F. Kennedy International     35620
2220                 John F. Kennedy International     35620
2221                 John F. Kennedy International     35620
2222                     Los Angeles International     31080
2223                     Los Angeles International     31080
2224                     Los Angeles International     31080
2225             Minneapolis-St Paul International     33460
2226             Minneapolis-St Paul International     33460
2227       Norman Y. Mineta San Jose International     41940
2228                  Salt Lake City International     41620
2229                  Salt Lake City International     41620
2230                  Salt Lake City International     41620
2231                           Tampa International     45300
2232                           Tampa International     45300
2233                     Los Angeles International     31080
2234                    Detroit Metro Wayne County     19820
2235                  Chicago O'Hare International     16980
2236                          Denver International     19740
2237                 John F. Kennedy International     35620
2238          George Bush Intercontinental/Houston     26420
2239          George Bush Intercontinental/Houston     26420
2240          George Bush Intercontinental/Houston     26420
2241          George Bush Intercontinental/Houston     26420
2242                  Raleigh-Durham International     39580
2243                   San Francisco International     41860
2244          George Bush Intercontinental/Houston     26420
2245                  Newark Liberty International     35620
2246                                     LaGuardia     35620
2247                  Chicago O'Hare International     16980
2248                        Richmond International     40060
2249                    Philadelphia International     37980
2250                     Kansas City International     28140
2251               Dallas/Fort Worth International     19100
2252                  Gerald R. Ford International     24340
2253                    Philadelphia International     37980
2254                    Myrtle Beach International     34820
2255                       Fairbanks International     21820
2256                                   Agana Field      <NA>
2257         Francisco C. Ada Saipan International      <NA>
2258                  Seattle/Tacoma International     42660
2259                  Seattle/Tacoma International     42660
2260                  Salt Lake City International     41620
2261                          Denver International     19740
2262               Washington Dulles International     47900
2263                   Lehigh Valley International     10900
2264      Hartsfield-Jackson Atlanta International     12060
2265      Hartsfield-Jackson Atlanta International     12060
2266      Hartsfield-Jackson Atlanta International     12060
2267      Hartsfield-Jackson Atlanta International     12060
2268      Hartsfield-Jackson Atlanta International     12060
2269      Hartsfield-Jackson Atlanta International     12060
2270      Hartsfield-Jackson Atlanta International     12060
2271      Hartsfield-Jackson Atlanta International     12060
2272                          Bangor International     12620
2273                           Logan International     14460
2274                           Logan International     14460
2275                     Charlottesville Albemarle     16820
2276                  Charleston AFB/International     16700
2277    Cincinnati/Northern Kentucky International     17140
2278                      Harrisburg International     25420
2279                    Detroit Metro Wayne County     19820
2280                    Detroit Metro Wayne County     19820
2281                    Detroit Metro Wayne County     19820
2282                    Detroit Metro Wayne County     19820
2283                    Detroit Metro Wayne County     19820
2284                    Detroit Metro Wayne County     19820
2285                    Detroit Metro Wayne County     19820
2286                  Newark Liberty International     35620
2287              Phoenix Sky Harbor International     38060
2288                    Indianapolis International     26900
2289                 John F. Kennedy International     35620
2290                 John F. Kennedy International     35620
2291                 John F. Kennedy International     35620
2292                                     LaGuardia     35620
2293                 John F. Kennedy International     35620
2294                 John F. Kennedy International     35620
2295                                     LaGuardia     35620
2296                                     LaGuardia     35620
2297                                     LaGuardia     35620
2298                                     LaGuardia     35620
2299                                     LaGuardia     35620
2300                                     LaGuardia     35620
2301                      Harrisburg International     25420
2302             Minneapolis-St Paul International     33460
2303             Minneapolis-St Paul International     33460
2304             Minneapolis-St Paul International     33460
2305                  Raleigh-Durham International     39580
2306                Roanoke Regional/Woodrum Field     40220
2307               Greater Rochester International     40380
2308                                  McGhee Tyson     28940
2309              Austin - Bergstrom International     12420
2310              Austin - Bergstrom International     12420
2311              Dane County Regional-Truax Field     31540
2312              Austin - Bergstrom International     12420
2313                         Bradley International     25540
2314                           Logan International     14460
2315                           Logan International     14460
2316                    Indianapolis International     26900
2317                           Logan International     14460
2318                   San Francisco International     41860
2319               Charlotte Douglas International     16740
2320               Charlotte Douglas International     16740
2321               Charlotte Douglas International     16740
2322               Charlotte Douglas International     16740
2323               Charlotte Douglas International     16740
2324                            Monterey Peninsula     41500
2325               Charlotte Douglas International     16740
2326               Charlotte Douglas International     16740
2327               Charlotte Douglas International     16740
2328    Cincinnati/Northern Kentucky International     17140
2329             Ronald Reagan Washington National     47900
2330               Dallas/Fort Worth International     19100
2331               Dallas/Fort Worth International     19100
2332               Dallas/Fort Worth International     19100
2333               Dallas/Fort Worth International     19100
2334               Dallas/Fort Worth International     19100
2335               Dallas/Fort Worth International     19100
2336               Dallas/Fort Worth International     19100
2337               Dallas/Fort Worth International     19100
2338               Dallas/Fort Worth International     19100
2339               Dallas/Fort Worth International     19100
2340               Dallas/Fort Worth International     19100
2341               Dallas/Fort Worth International     19100
2342               Dallas/Fort Worth International     19100
2343               Dallas/Fort Worth International     19100
2344               Dallas/Fort Worth International     19100
2345               Dallas/Fort Worth International     19100
2346                  Springfield-Branson National     44180
2347                             Columbia Regional     17860
2348                  Seattle/Tacoma International     42660
2349          George Bush Intercontinental/Houston     26420
2350       Fort Lauderdale-Hollywood International     33100
2351                 John F. Kennedy International     35620
2352                        McCarran International     29820
2353                           Shreveport Regional     43340
2354                      Wilmington International     48900
2355                        Richmond International     40060
2356                      Burlington International     15540
2357                 John F. Kennedy International     35620
2358                         Orlando International     36740
2359                      Harrisburg International     25420
2360                Portland International Jetport     38860
2361                                   Adams Field     30780
2362                  McAllen Miller International     32580
2363                           Miami International     33100
2364                           Miami International     33100
2365                           Miami International     33100
2366                           Miami International     33100
2367                           Miami International     33100
2368                           Miami International     33100
2369                          Tallahassee Regional     45220
2370                      Palm Beach International     33100
2371                  Charleston AFB/International     16700
2372                  Chicago O'Hare International     16980
2373                  Chicago O'Hare International     16980
2374                  Chicago O'Hare International     16980
2375                  Chicago O'Hare International     16980
2376                  Chicago O'Hare International     16980
2377                     Charlottesville Albemarle     16820
2378                    Philadelphia International     37980
2379                    Philadelphia International     37980
2380              Phoenix Sky Harbor International     38060
2381              Phoenix Sky Harbor International     38060
2382              Phoenix Sky Harbor International     38060
2383              Phoenix Sky Harbor International     38060
2384                        Portland International     38900
2385           Baton Rouge Metropolitan/Ryan Field     12940
2386                  Raleigh-Durham International     39580
2387               Southwest Florida International     15980
2388                                    Tri Cities     28700
2389                      Pittsburgh International     38300
2390                  Piedmont Triad International     24660
2391                Roanoke Regional/Woodrum Field     40220
2392        Birmingham-Shuttlesworth International     13820
2393                Luis Munoz Marin International     41980
2394             John Glenn Columbus International     18140
2395         Louisville Muhammad Ali International     31140
2396                          Hector International     22020
2397                  Yuma MCAS/Yuma International     49740
2398           Ted Stevens Anchorage International     11260
2399           Ted Stevens Anchorage International     11260
2400               Wiley Post/Will Rogers Memorial      <NA>
2401             Ronald Reagan Washington National     47900
2402                       Ketchikan International     28540
2403                 Daniel K Inouye International     46520
2404                       Ketchikan International     28540
2405                     Los Angeles International     31080
2406                     Los Angeles International     31080
2407                               Eppley Airfield     36540
2408                           Ralph Wien Memorial      <NA>
2409                        Portland International     38900
2410                               Kahului Airport     27980
2411                  Seattle/Tacoma International     42660
2412                  Seattle/Tacoma International     42660
2413                  Seattle/Tacoma International     42660
2414                  Seattle/Tacoma International     42660
2415                   San Francisco International     41860
2416             Albuquerque International Sunport     10740
2417               Southwest Florida International     15980
2418                          Albany International     10580
2419                         Bradley International     25540
2420                         Bradley International     25540
2421                           Logan International     14460
2422                           Logan International     14460
2423                           Logan International     14460
2424                           Logan International     14460
2425                                      Bob Hope     31080
2426             Ronald Reagan Washington National     47900
2427       Fort Lauderdale-Hollywood International     33100
2428                 John F. Kennedy International     35620
2429                  Seattle/Tacoma International     42660
2430                 John F. Kennedy International     35620
2431                 John F. Kennedy International     35620
2432                 John F. Kennedy International     35620
2433                     Los Angeles International     31080
2434                     Los Angeles International     31080
2435                    Palm Springs International     40140
2436                  Theodore Francis Green State     39300
2437                  Theodore Francis Green State     39300
2438                       San Diego International     41740
2439                Luis Munoz Marin International     41980
2440                Luis Munoz Marin International     41980
2441                      Sacramento International     40900
2442              Sarasota/Bradenton International     35840
2443                Syracuse Hancock International     45060
2444      Hartsfield-Jackson Atlanta International     12060
2445      Hartsfield-Jackson Atlanta International     12060
2446      Hartsfield-Jackson Atlanta International     12060
2447      Hartsfield-Jackson Atlanta International     12060
2448      Hartsfield-Jackson Atlanta International     12060
2449      Hartsfield-Jackson Atlanta International     12060
2450      Hartsfield-Jackson Atlanta International     12060
2451      Hartsfield-Jackson Atlanta International     12060
2452      Hartsfield-Jackson Atlanta International     12060
2453      Hartsfield-Jackson Atlanta International     12060
2454      Hartsfield-Jackson Atlanta International     12060
2455      Hartsfield-Jackson Atlanta International     12060
2456      Hartsfield-Jackson Atlanta International     12060
2457      Hartsfield-Jackson Atlanta International     12060
2458      Hartsfield-Jackson Atlanta International     12060
2459      Hartsfield-Jackson Atlanta International     12060
2460      Hartsfield-Jackson Atlanta International     12060
2461      Hartsfield-Jackson Atlanta International     12060
2462      Hartsfield-Jackson Atlanta International     12060
2463      Hartsfield-Jackson Atlanta International     12060
2464      Hartsfield-Jackson Atlanta International     12060
2465      Hartsfield-Jackson Atlanta International     12060
2466              Austin - Bergstrom International     12420
2467              Austin - Bergstrom International     12420
2468                       Nashville International     34980
2469                           Logan International     14460
2470                                  Jackson Hole     27220
2471               Charlotte Douglas International     16740
2472    Cincinnati/Northern Kentucky International     17140
2473    Cincinnati/Northern Kentucky International     17140
2474    Cincinnati/Northern Kentucky International     17140
2475                                Cherry Capital     45900
2476               Dallas/Fort Worth International     19100
2477                    Detroit Metro Wayne County     19820
2478                    Detroit Metro Wayne County     19820
2479                    Detroit Metro Wayne County     19820
2480                    Detroit Metro Wayne County     19820
2481                    Detroit Metro Wayne County     19820
2482                    Detroit Metro Wayne County     19820
2483                    Detroit Metro Wayne County     19820
2484                    Detroit Metro Wayne County     19820
2485                    Detroit Metro Wayne County     19820
2486                         El Paso International     21340
2487                       Melbourne International     37340
2488               Washington Dulles International     47900
2489                    Indianapolis International     26900
2490                 John F. Kennedy International     35620
2491                                     LaGuardia     35620
2492                     Los Angeles International     31080
2493                     Los Angeles International     31080
2494                         Orlando International     36740
2495                         Memphis International     32820
2496                           Miami International     33100
2497                           Miami International     33100
2498             Minneapolis-St Paul International     33460
2499             Minneapolis-St Paul International     33460
2500             Minneapolis-St Paul International     33460
2501             Minneapolis-St Paul International     33460
2502             Minneapolis-St Paul International     33460
2503             Minneapolis-St Paul International     33460
2504             Minneapolis-St Paul International     33460
2505             Minneapolis-St Paul International     33460
2506             Minneapolis-St Paul International     33460
2507             Minneapolis-St Paul International     33460
2508             Minneapolis-St Paul International     33460
2509             Minneapolis-St Paul International     33460
2510                 John F. Kennedy International     35620
2511                  Piedmont Triad International     24660
2512               Southwest Florida International     15980
2513                     San Antonio International     41700
2514                  Seattle/Tacoma International     42660
2515                  Seattle/Tacoma International     42660
2516                           Rapid City Regional     39660
2517                  Seattle/Tacoma International     42660
2518                   San Francisco International     41860
2519                Luis Munoz Marin International     41980
2520                  Salt Lake City International     41620
2521                  Salt Lake City International     41620
2522                  Salt Lake City International     41620
2523                  Salt Lake City International     41620
2524                  Salt Lake City International     41620
2525                  Salt Lake City International     41620
2526                  Salt Lake City International     41620
2527                  Salt Lake City International     41620
2528                  Salt Lake City International     41620
2529                  Salt Lake City International     41620
2530                  Salt Lake City International     41620
2531                  Salt Lake City International     41620
2532                  Salt Lake City International     41620
2533                                    Tri Cities     28700
2534                      Burlington International     15540
2535                  Newark Liberty International     35620
2536                  Newark Liberty International     35620
2537                  Newark Liberty International     35620
2538                  Newark Liberty International     35620
2539                  Newark Liberty International     35620
2540                  Newark Liberty International     35620
2541               Washington Dulles International     47900
2542               Washington Dulles International     47900
2543                     Los Angeles International     31080
2544                          Tallahassee Regional     45220
2545  Brownsville South Padre Island International     15180
2546               Dallas/Fort Worth International     19100
2547               Dallas/Fort Worth International     19100
2548               Dallas/Fort Worth International     19100
2549               Dallas/Fort Worth International     19100
2550               Dallas/Fort Worth International     19100
2551               Dallas/Fort Worth International     19100
2552                      Des Moines International     19780
2553                    Philadelphia International     37980
2554                           Fort Smith Regional     22900
2555                       Grand Junction Regional     24300
2556                         Wichita Mid-Continent     48620
2557      Jackson Medgar Wiley Evers International     27140
2558                         Lake Charles Regional     29340
2559                           Miami International     33100
2560                               Eppley Airfield     36540
2561                  Chicago O'Hare International     16980
2562                  Chicago O'Hare International     16980
2563                  Chicago O'Hare International     16980
2564                       Abraham Lincoln Capital     44100
2565                          Tallahassee Regional     45220
2566                  Salt Lake City International     41620
2567                         El Paso International     21340
2568               Charlotte Douglas International     16740
2569               Charlotte Douglas International     16740
2570               Charlotte Douglas International     16740
2571               Charlotte Douglas International     16740
2572               Charlotte Douglas International     16740
2573               Charlotte Douglas International     16740
2574             Ronald Reagan Washington National     47900
2575             Ronald Reagan Washington National     47900
2576                  Piedmont Triad International     24660
2577              Dane County Regional-Truax Field     31540
2578                    Philadelphia International     37980
2579                 Pensacola Gulf Coast Regional     37860
2580   Huntsville International-Carl T Jones Field     26620
2581                            Bismarck Municipal     13900
2582           Casper/Natrona County International     16220
2583                  Corpus Christi International     18580
2584                          Denver International     19740
2585                          Denver International     19740
2586                          Denver International     19740
2587                          Denver International     19740
2588                          Denver International     19740
2589                          Denver International     19740
2590                          Denver International     19740
2591                          Denver International     19740
2592                    Detroit Metro Wayne County     19820
2593                    Detroit Metro Wayne County     19820
2594                    Detroit Metro Wayne County     19820
2595                St Louis Lambert International     41180
2596                            Westchester County     35620
2597          George Bush Intercontinental/Houston     26420
2598          George Bush Intercontinental/Houston     26420
2599          George Bush Intercontinental/Houston     26420
2600          George Bush Intercontinental/Houston     26420
2601                     Los Angeles International     31080
2602           Lubbock Preston Smith International     31180
2603      Midland International Air and Space Port     33260
2604                     Kansas City International     28140
2605             Minneapolis-St Paul International     33460
2606             Minneapolis-St Paul International     33460
2607             Minneapolis-St Paul International     33460
2608             Minneapolis-St Paul International     33460
2609             Minneapolis-St Paul International     33460
2610             Minneapolis-St Paul International     33460
2611             Minneapolis-St Paul International     33460
2612                               Eppley Airfield     36540
2613                  Chicago O'Hare International     16980
2614                  Chicago O'Hare International     16980
2615                  Chicago O'Hare International     16980
2616                  Chicago O'Hare International     16980
2617                  Chicago O'Hare International     16980
2618                         Norfolk International     47260
2619              Phoenix Sky Harbor International     38060
2620                        Richmond International     40060
2621            Savannah/Hilton Head International     42340
2622                  Seattle/Tacoma International     42660
2623                   San Francisco International     41860
2624                   San Francisco International     41860
2625                  Salt Lake City International     41620
2626                  Salt Lake City International     41620
2627                  Salt Lake City International     41620
2628                  Salt Lake City International     41620
2629                  Salt Lake City International     41620
2630                  Salt Lake City International     41620
2631                  Salt Lake City International     41620
2632                          Tucson International     46060
2633                        Portland International     38900
2634             Ronald Reagan Washington National     47900
2635                          Denver International     19740
2636                          Denver International     19740
2637                          Denver International     19740
2638                      Des Moines International     19780
2639                  Newark Liberty International     35620
2640                  Newark Liberty International     35620
2641           Ted Stevens Anchorage International     11260
2642                      Sacramento International     40900
2643               Washington Dulles International     47900
2644               Washington Dulles International     47900
2645               Washington Dulles International     47900
2646               Washington Dulles International     47900
2647          George Bush Intercontinental/Houston     26420
2648          George Bush Intercontinental/Houston     26420
2649          George Bush Intercontinental/Houston     26420
2650          George Bush Intercontinental/Houston     26420
2651          George Bush Intercontinental/Houston     26420
2652          George Bush Intercontinental/Houston     26420
2653          George Bush Intercontinental/Houston     26420
2654          George Bush Intercontinental/Houston     26420
2655                     Kansas City International     28140
2656                  McAllen Miller International     32580
2657                               Eppley Airfield     36540
2658                      Pittsburgh International     38300
2659                       San Diego International     41740
2660               Aspen Pitkin County Sardy Field     24060
2661                   San Francisco International     41860
2662                   San Francisco International     41860
2663                   San Francisco International     41860
2664                   San Francisco International     41860
2665                      Sacramento International     40900
2666               Aspen Pitkin County Sardy Field     24060
2667              John Wayne Airport-Orange County     31080
2668              Austin - Bergstrom International     12420
2669                                      Bob Hope     31080
2670            Baltimore/Washington International     12580
2671             John Glenn Columbus International     18140
2672                          Denver International     19740
2673                        Portland International     38900
2674                        McCarran International     29820
2675                        McCarran International     29820
2676                       San Diego International     41740
2677              Phoenix Sky Harbor International     38060
2678               Southwest Florida International     15980
2679                       San Diego International     41740
2680                General Mitchell International     33340
2681                         El Paso International     21340
2682                                Joe Foss Field     43620
2683          George Bush Intercontinental/Houston     26420
2684          George Bush Intercontinental/Houston     26420
2685          George Bush Intercontinental/Houston     26420
2686                     Kansas City International     28140
2687                           Logan International     14460
2688                           Logan International     14460
2689                           Logan International     14460
2690                  Charleston AFB/International     16700
2691             John Glenn Columbus International     18140
2692             Ronald Reagan Washington National     47900
2693                    Detroit Metro Wayne County     19820
2694                  Newark Liberty International     35620
2695                  Newark Liberty International     35620
2696                  Newark Liberty International     35620
2697                  Newark Liberty International     35620
2698          Greenville-Spartanburg International     43900
2699                                     LaGuardia     35620
2700                                     LaGuardia     35620
2701                                     LaGuardia     35620
2702                             Will Rogers World     36420
2703                  Chicago O'Hare International     16980
2704                  Chicago O'Hare International     16980
2705                  Chicago O'Hare International     16980
2706                  Chicago O'Hare International     16980
2707                    Philadelphia International     37980
2708                    Philadelphia International     37980
2709                           Shreveport Regional     43340
2710                  Raleigh-Durham International     39580
2711                   Northwest Arkansas Regional     22220
2712                           Evansville Regional     21780
2713               Washington Dulles International     47900
2714                  Chicago O'Hare International     16980
2715                  Chicago O'Hare International     16980
2716                 Pensacola Gulf Coast Regional     37860
2717             Minneapolis-St Paul International     33460
2718                    Palm Springs International     40140
2719               Southwest Florida International     15980
2720               Charlotte Douglas International     16740
2721               Charlotte Douglas International     16740
2722                    Manchester-Boston Regional     31700
2723                    Philadelphia International     37980
2724                    Philadelphia International     37980
2725        Birmingham-Shuttlesworth International     13820
2726                          Denver International     19740
2727               Washington Dulles International     47900
2728          George Bush Intercontinental/Houston     26420
2729          George Bush Intercontinental/Houston     26420
2730                         Wichita Mid-Continent     48620
2731                                   Adams Field     30780
2732      Hartsfield-Jackson Atlanta International     12060
2733                          Bangor International     12620
2734                       Nashville International     34980
2735                      Burlington International     15540
2736            Baltimore/Washington International     12580
2737                  Gerald R. Ford International     24340
2738          Greenville-Spartanburg International     43900
2739                 John F. Kennedy International     35620
2740                 John F. Kennedy International     35620
2741                                     LaGuardia     35620
2742                                     LaGuardia     35620
2743                                     LaGuardia     35620
2744                   Northwest Arkansas Regional     22220
2745                  Raleigh-Durham International     39580
2746                        Richmond International     40060
2747               Greater Rochester International     40380
2748               Greater Rochester International     40380
2749            Savannah/Hilton Head International     42340
2750            Savannah/Hilton Head International     42340
2751                           Tampa International     45300
2752   Huntsville International-Carl T Jones Field     26620
2753              Austin - Bergstrom International     12420
2754                          Tucson International     46060
2755                                  Lovell Field     16860
2756                               Pitt Greenville     24780
2757                            Boise Air Terminal     14260
2758                               Kahului Airport     27980
2759      Midland International Air and Space Port     33260
2760                                      Bob Hope     31080
2761                 Daniel K Inouye International     46520
2762                            Lafayette Regional     29180
2763               Cleveland-Hopkins International     17460
2764               Cleveland-Hopkins International     17460
2765               Cleveland-Hopkins International     17460
2766           Ted Stevens Anchorage International     11260
2767               Charlotte Douglas International     16740
2768               Charlotte Douglas International     16740
2769               Charlotte Douglas International     16740
2770               Charlotte Douglas International     16740
2771               Charlotte Douglas International     16740
2772               Charlotte Douglas International     16740
2773               Charlotte Douglas International     16740
2774               Charlotte Douglas International     16740
2775               Charlotte Douglas International     16740
2776               Charlotte Douglas International     16740
2777               Charlotte Douglas International     16740
2778               Charlotte Douglas International     16740
2779               Charlotte Douglas International     16740
2780               Charlotte Douglas International     16740
2781    Cincinnati/Northern Kentucky International     17140
2782             Ronald Reagan Washington National     47900
2783             Ronald Reagan Washington National     47900
2784               Dallas/Fort Worth International     19100
2785               Dallas/Fort Worth International     19100
2786               Dallas/Fort Worth International     19100
2787               Dallas/Fort Worth International     19100
2788               Dallas/Fort Worth International     19100
2789               Dallas/Fort Worth International     19100
2790               Dallas/Fort Worth International     19100
2791               Dallas/Fort Worth International     19100
2792               Dallas/Fort Worth International     19100
2793               Dallas/Fort Worth International     19100
2794               Dallas/Fort Worth International     19100
2795               Dallas/Fort Worth International     19100
2796               Dallas/Fort Worth International     19100
2797               Dallas/Fort Worth International     19100
2798               Dallas/Fort Worth International     19100
2799               Dallas/Fort Worth International     19100
2800               Dallas/Fort Worth International     19100
2801               Dallas/Fort Worth International     19100
2802                               Eppley Airfield     36540
2803                                    Blue Grass     30460
2804                Syracuse Hancock International     45060
2805                             Will Rogers World     36420
2806                             Columbia Regional     17860
2807                      Reno/Tahoe International     39900
2808                                  Cyril E King      <NA>
2809             John Glenn Columbus International     18140
2810                    Indianapolis International     26900
2811                    Jacksonville International     27260
2812           Wilkes Barre Scranton International     42540
2813                 Gulfport-Biloxi International     25060
2814            Eglin AFB Destin Fort Walton Beach     18880
2815                           Tulsa International     46140
2816                          Bangor International     12620
2817                Augusta Regional at Bush Field     12260
2818                     Los Angeles International     31080
2819              Sarasota/Bradenton International     35840
2820                     Central Nebraska Regional     24260
2821                         Memphis International     32820
2822                  Theodore Francis Green State     39300
2823                         Columbia Metropolitan     17900
2824                    Myrtle Beach International     34820
2825                               Mobile Regional     33660
2826                     Kansas City International     28140
2827                                  Yampa Valley     44460
2828                         Memphis International     32820
2829                           Miami International     33100
2830                           Miami International     33100
2831                           Miami International     33100
2832                      Reno/Tahoe International     39900
2833                           Miami International     33100
2834                      Des Moines International     19780
2835                           Miami International     33100
2836                           Miami International     33100
2837              Dane County Regional-Truax Field     31540
2838                        Richmond International     40060
2839                                 Waco Regional     47380
2840                  Chicago O'Hare International     16980
2841                  Chicago O'Hare International     16980
2842                    Palm Springs International     40140
2843                      Palm Beach International     33100
2844                         El Paso International     21340
2845                     Coastal Carolina Regional     35100
2846                Luis Munoz Marin International     41980
2847              Phoenix Sky Harbor International     38060
2848              Phoenix Sky Harbor International     38060
2849                      Pittsburgh International     38300
2850            Baltimore/Washington International     12580
2851                       Grand Junction Regional     24300
2852               Greater Rochester International     40380
2853                         Norfolk International     47260
2854                 Pensacola Gulf Coast Regional     37860
2855                            Long Beach Airport     31080
2856                          Valley International     15180
2857                  Seattle/Tacoma International     42660
2858                    Manchester-Boston Regional     31700
2859                            Asheville Regional     11700
2860                   San Francisco International     41860
2861                               William P Hobby     26420
2862                        Portland International     38900
2863                Luis Munoz Marin International     41980
2864                         Columbia Metropolitan     17900
2865                            Asheville Regional     11700
2866                                    Blue Grass     30460
2867                St Louis Lambert International     41180
2868                         Columbus Metropolitan     17980
2869                           Tampa International     45300
2870                          Tucson International     46060
2871             Albuquerque International Sunport     10740
2872               Dallas/Fort Worth International     19100
2873                             Will Rogers World     36420
2874                  Charleston AFB/International     16700
2875            Baltimore/Washington International     12580
2876                    Indianapolis International     26900
2877                       Ketchikan International     28540
2878                       Ketchikan International     28540
2879                         Orlando International     36740
2880                General Mitchell International     33340
2881                        Portland International     38900
2882                       San Diego International     41740
2883                     San Antonio International     41700
2884                  Seattle/Tacoma International     42660
2885                  Seattle/Tacoma International     42660
2886                  Seattle/Tacoma International     42660
2887                  Seattle/Tacoma International     42660
2888                  Seattle/Tacoma International     42660
2889                  Seattle/Tacoma International     42660
2890                  Seattle/Tacoma International     42660
2891                  Seattle/Tacoma International     42660
2892                  Seattle/Tacoma International     42660
2893                  Seattle/Tacoma International     42660
2894                  Seattle/Tacoma International     42660
2895                  Seattle/Tacoma International     42660
2896       Norman Y. Mineta San Jose International     41940
2897                         Bradley International     25540
2898                         Bradley International     25540
2899                         Bradley International     25540
2900                           Logan International     14460
2901                           Logan International     14460
2902                           Logan International     14460
2903                              Rafael Hernandez     10380
2904                 Buffalo Niagara International     15380
2905                  Charleston AFB/International     16700
2906               Cleveland-Hopkins International     17460
2907                       San Diego International     41740
2908             Ronald Reagan Washington National     47900
2909                  Newark Liberty International     35620
2910                 John F. Kennedy International     35620
2911       Fort Lauderdale-Hollywood International     33100
2912       Fort Lauderdale-Hollywood International     33100
2913       Fort Lauderdale-Hollywood International     33100
2914       Fort Lauderdale-Hollywood International     33100
2915       Fort Lauderdale-Hollywood International     33100
2916                            Westchester County     35620
2917                            Westchester County     35620
2918          George Bush Intercontinental/Houston     26420
2919                    Jacksonville International     27260
2920                    Jacksonville International     27260
2921                    Jacksonville International     27260
2922                    Jacksonville International     27260
2923                 John F. Kennedy International     35620
2924                 John F. Kennedy International     35620
2925                 John F. Kennedy International     35620
2926                 John F. Kennedy International     35620
2927                 John F. Kennedy International     35620
2928                         Orlando International     36740
2929       Fort Lauderdale-Hollywood International     33100
2930                      Palm Beach International     33100
2931                      Palm Beach International     33100
2932                      Palm Beach International     33100
2933                      Palm Beach International     33100
2934                                     Mercedita     38660
2935                        Richmond International     40060
2936                        Richmond International     40060
2937                        Richmond International     40060
2938                      Reno/Tahoe International     39900
2939               Southwest Florida International     15980
2940                       San Diego International     41740
2941                     San Antonio International     41700
2942       Norman Y. Mineta San Jose International     41940
2943                Luis Munoz Marin International     41980
2944                      Burlington International     15540
2945              Sarasota/Bradenton International     35840
2946                             Will Rogers World     36420
2947      Hartsfield-Jackson Atlanta International     12060
2948      Hartsfield-Jackson Atlanta International     12060
2949      Hartsfield-Jackson Atlanta International     12060
2950      Hartsfield-Jackson Atlanta International     12060
2951      Hartsfield-Jackson Atlanta International     12060
2952      Hartsfield-Jackson Atlanta International     12060
2953                  Billings Logan International     13740
2954                      Fort Wayne International     23060
2955                 Daniel K Inouye International     46520
2956   Huntsville International-Carl T Jones Field     26620
2957                                  Cyril E King      <NA>
2958               Washington Dulles International     47900
2959                    Detroit Metro Wayne County     19820
2960                       Quad City International     19340
2961       Fort Lauderdale-Hollywood International     33100
2962               Cleveland-Hopkins International     17460
2963                                    Blue Grass     30460
2964                       Elmira/Corning Regional     21300
2965                         Columbus Metropolitan     17980
2966                      Fort Wayne International     23060
2967                      Wilmington International     48900
2968                    Southwest Georgia Regional     10500
2969                  Chicago O'Hare International     16980
2970                        Portland International     38900
2971               Southwest Florida International     15980
2972             Ronald Reagan Washington National     47900
2973                St Louis Lambert International     41180
2974                       Grand Junction Regional     24300
2975                  Salt Lake City International     41620
2976               Greater Rochester International     40380
2977                    Indianapolis International     26900
2978                          Denver International     19740
2979                          Denver International     19740
2980                          Denver International     19740
2981                          Denver International     19740
2982                         Long Island MacArthur     35620
2983                        McCarran International     29820
2984                         Orlando International     36740
2985                         Ontario International     40140
2986               Southwest Florida International     15980
2987               Southwest Florida International     15980
2988                St Louis Lambert International     41180
2989                           Tampa International     45300
2990                                Trenton Mercer     45940
2991                                Trenton Mercer     45940
2992                                  McGhee Tyson     28940
2993                   Northwest Arkansas Regional     22220
2994                  Gerald R. Ford International     24340
2995                  Piedmont Triad International     24660
2996               Washington Dulles International     47900
2997                  Chicago O'Hare International     16980
2998                              Rafael Hernandez     10380
2999                St Louis Lambert International     41180
3000                               Mobile Regional     33660
3001        Birmingham-Shuttlesworth International     13820
3002                     Lawton-Fort Sill Regional     30020
3003                                  Lovell Field     16860
3004                              The Eastern Iowa     16300
3005             Ronald Reagan Washington National     47900
3006               Dallas/Fort Worth International     19100
3007               Dallas/Fort Worth International     19100
3008               Dallas/Fort Worth International     19100
3009               Dallas/Fort Worth International     19100
3010               Dallas/Fort Worth International     19100
3011               Dallas/Fort Worth International     19100
3012               Dallas/Fort Worth International     19100
3013                  Gerald R. Ford International     24340
3014                           Miami International     33100
3015                           Miami International     33100
3016                           Miami International     33100
3017                  Chicago O'Hare International     16980
3018                  Chicago O'Hare International     16980
3019                  Chicago O'Hare International     16980
3020                  Chicago O'Hare International     16980
3021               Charlotte Douglas International     16740
3022            Savannah/Hilton Head International     42340
3023                                  McGhee Tyson     28940
3024                   Atlantic City International     12100
3025                         Akron-Canton Regional     10420
3026               Cleveland-Hopkins International     17460
3027                        McCarran International     29820
3028                     Los Angeles International     31080
3029                General Mitchell International     33340
3030         Louisville Muhammad Ali International     31140
3031                Augusta Regional at Bush Field     12260
3032               Cleveland-Hopkins International     17460
3033               Charlotte Douglas International     16740
3034               Charlotte Douglas International     16740
3035               Charlotte Douglas International     16740
3036               Charlotte Douglas International     16740
3037    Cincinnati/Northern Kentucky International     17140
3038             Ronald Reagan Washington National     47900
3039             Ronald Reagan Washington National     47900
3040             Ronald Reagan Washington National     47900
3041             Ronald Reagan Washington National     47900
3042             Ronald Reagan Washington National     47900
3043             Ronald Reagan Washington National     47900
3044                      Des Moines International     19780
3045        Birmingham-Shuttlesworth International     13820
3046       Northwest Florida Beaches International     37460
3047                          Gainesville Regional     23540
3048                  Gerald R. Ford International     24340
3049            Erie International/Tom Ridge Field     21500
3050                    Indianapolis International     26900
3051                    Philadelphia International     37980
3052                           South Bend Regional     43780
3053              Austin - Bergstrom International     12420
3054                                 Meadows Field     12540
3055         Prescott Regional Ernest A Love Field     39150
3056             Charles M. Schulz - Sonoma County     42220
3057                          Denver International     19740
3058                          Denver International     19740
3059                          Denver International     19740
3060               Dallas/Fort Worth International     19100
3061               Dallas/Fort Worth International     19100
3062                    Detroit Metro Wayne County     19820
3063                      Fort Wayne International     23060
3064                          Juneau International     27940
3065                           Lea County Regional     26020
3066                          Idaho Falls Regional     26820
3067                     Los Angeles International     31080
3068                     Los Angeles International     31080
3069                     Los Angeles International     31080
3070                      Alexandria International     10780
3071                             Victoria Regional     47020
3072             Minneapolis-St Paul International     33460
3073                  Chicago O'Hare International     16980
3074                Portland International Jetport     38860
3075                            Santa Fe Municipal     42140
3076            Savannah/Hilton Head International     42340
3077                Roanoke Regional/Woodrum Field     40220
3078                  Seattle/Tacoma International     42660
3079                   San Francisco International     41860
3080                   San Francisco International     41860
3081                   San Francisco International     41860
3082                   San Francisco International     41860
3083                  Salt Lake City International     41620
3084                            Mahlon Sweet Field     21660
3085                         Norfolk International     47260
3086                          Walla Walla Regional     47460
3087           Ted Stevens Anchorage International     11260
3088                     Los Angeles International     31080
3089                            Monterey Peninsula     41500
3090                              Snohomish County     42660
3091                  Seattle/Tacoma International     42660
3092              Austin - Bergstrom International     12420
3093                 Daniel K Inouye International     46520
3094                       Cape Girardeau Regional     43460
3095                           Tulsa International     46140
3096                Luis Munoz Marin International     41980
3097             John Glenn Columbus International     18140
3098                          Denver International     19740
3099                          Denver International     19740
3100                  Newark Liberty International     35620
3101                 Fresno Yosemite International     23420
3102               Washington Dulles International     47900
3103               Washington Dulles International     47900
3104          George Bush Intercontinental/Houston     26420
3105          George Bush Intercontinental/Houston     26420
3106          George Bush Intercontinental/Houston     26420
3107          George Bush Intercontinental/Houston     26420
3108          George Bush Intercontinental/Houston     26420
3109          George Bush Intercontinental/Houston     26420
3110                        Portland International     38900
3111                             Redding Municipal     39820
3112                     Los Angeles International     31080
3113                     Los Angeles International     31080
3114                                  Cyril E King      <NA>
3115                Luis Munoz Marin International     41980
3116                    Philadelphia International     37980
3117                              Salina Municipal     41460
3118              Sarasota/Bradenton International     35840
3119                  Corpus Christi International     18580
3120                  Liberal Mid-America Regional     30580
3121             Albuquerque International Sunport     10740
3122             Albuquerque International Sunport     10740
3123              Austin - Bergstrom International     12420
3124              Austin - Bergstrom International     12420
3125        Birmingham-Shuttlesworth International     13820
3126                       Nashville International     34980
3127                       Nashville International     34980
3128                       Nashville International     34980
3129              Phoenix Sky Harbor International     38060
3130                 Buffalo Niagara International     15380
3131            Baltimore/Washington International     12580
3132            Baltimore/Washington International     12580
3133            Baltimore/Washington International     12580
3134            Baltimore/Washington International     12580
3135            Baltimore/Washington International     12580
3136            Baltimore/Washington International     12580
3137            Baltimore/Washington International     12580
3138            Baltimore/Washington International     12580
3139            Baltimore/Washington International     12580
3140            Baltimore/Washington International     12580
3141                  Charleston AFB/International     16700
3142             John Glenn Columbus International     18140
3143             John Glenn Columbus International     18140
3144                             Dallas Love Field     19100
3145                             Dallas Love Field     19100
3146                             Dallas Love Field     19100
3147                             Dallas Love Field     19100
3148                             Dallas Love Field     19100
3149                             Dallas Love Field     19100
3150                             Dallas Love Field     19100
3151                             Dallas Love Field     19100
3152             Ronald Reagan Washington National     47900
3153             Ronald Reagan Washington National     47900
3154                          Denver International     19740
3155                          Denver International     19740
3156       Fort Lauderdale-Hollywood International     33100
3157                               William P Hobby     26420
3158                               William P Hobby     26420
3159                               William P Hobby     26420
3160                               William P Hobby     26420
3161                         Long Island MacArthur     35620
3162                        McCarran International     29820
3163                        McCarran International     29820
3164           Lubbock Preston Smith International     31180
3165           Lubbock Preston Smith International     31180
3166                            Long Beach Airport     31080
3167                                   Adams Field     30780
3168      Midland International Air and Space Port     33260
3169                     Kansas City International     28140
3170                     Kansas City International     28140
3171                         Orlando International     36740
3172                         Orlando International     36740
3173                         Orlando International     36740
3174                  Chicago Midway International     16980
3175                  Chicago Midway International     16980
3176                  Chicago Midway International     16980
3177                  Chicago Midway International     16980
3178                  Chicago Midway International     16980
3179                  Chicago Midway International     16980
3180                  Chicago Midway International     16980
3181                         Memphis International     32820
3182                General Mitchell International     33340
3183                    Myrtle Beach International     34820
3184            Metropolitan Oakland International     41860
3185            Metropolitan Oakland International     41860
3186                               Eppley Airfield     36540
3187                               Eppley Airfield     36540
3188              Phoenix Sky Harbor International     38060
3189              Phoenix Sky Harbor International     38060
3190              Phoenix Sky Harbor International     38060
3191                      Pittsburgh International     38300
3192                    Palm Springs International     40140
3193                  Theodore Francis Green State     39300
3194                  Theodore Francis Green State     39300
3195                  Raleigh-Durham International     39580
3196                      Reno/Tahoe International     39900
3197                      Reno/Tahoe International     39900
3198               Greater Rochester International     40380
3199               Southwest Florida International     15980
3200                       San Diego International     41740
3201                       San Diego International     41740
3202                     San Antonio International     41700
3203                     San Antonio International     41700
3204            Savannah/Hilton Head International     42340
3205         Louisville Muhammad Ali International     31140
3206                      Sacramento International     40900
3207                St Louis Lambert International     41180
3208                St Louis Lambert International     41180
3209                St Louis Lambert International     41180
3210                St Louis Lambert International     41180
3211                           Tampa International     45300
3212                           Tampa International     45300
3213                           Tampa International     45300
3214                           Tulsa International     46140
3215                           Tulsa International     46140
3216            Savannah/Hilton Head International     42340
3217               Charlotte Douglas International     16740
3218               Dallas/Fort Worth International     19100
3219               Dallas/Fort Worth International     19100
3220                  Yuma MCAS/Yuma International     49740
3221              Phoenix Sky Harbor International     38060
3222              Phoenix Sky Harbor International     38060
3223                        Richmond International     40060
3224                         Bradley International     25540
3225                           Logan International     14460
3226             Ronald Reagan Washington National     47900
3227             Ronald Reagan Washington National     47900
3228                  Newark Liberty International     35620
3229                  Newark Liberty International     35620
3230               Washington Dulles International     47900
3231               Washington Dulles International     47900
3232             John Glenn Columbus International     18140
3233                                     LaGuardia     35620
3234                                     LaGuardia     35620
3235                                     LaGuardia     35620
3236                  Chicago O'Hare International     16980
3237                  Chicago O'Hare International     16980
3238                  Chicago O'Hare International     16980
3239                    Philadelphia International     37980
3240                         Akron-Canton Regional     10420
3241              Sarasota/Bradenton International     35840
3242                            Asheville Regional     11700
3243                        Portland International     38900
3244                 Fresno Yosemite International     23420
3245                         Columbia Metropolitan     17900
3246                             Central Wisconsin     48140
3247          George Bush Intercontinental/Houston     26420
3248            Erie International/Tom Ridge Field     21500
3249               Washington Dulles International     47900
3250                General Mitchell International     33340
3251                  Chicago O'Hare International     16980
3252                               University Park     44300
3253           Wilkes Barre Scranton International     42540
3254    Cincinnati/Northern Kentucky International     17140
3255             Minneapolis-St Paul International     33460
3256                           Miami International     33100
3257                           Logan International     14460
3258               Charlotte Douglas International     16740
3259                  Gerald R. Ford International     24340
3260                    Philadelphia International     37980
3261                    Philadelphia International     37980
3262               Greater Rochester International     40380
3263          Greenville-Spartanburg International     43900
3264     Louis Armstrong New Orleans International     35380
3265          George Bush Intercontinental/Houston     26420
3266                            Santa Fe Municipal     42140
3267                         Bradley International     25540
3268               Charlotte Douglas International     16740
3269               Dallas/Fort Worth International     19100
3270               Dallas/Fort Worth International     19100
3271                           Montgomery Regional     33860
3272                    Philadelphia International     37980
3273         Kona International Airport at Keahole     25900
3274                     Los Angeles International     31080
3275        Salisbury-Ocean City/Wicomico Regional     41540
3276              San Angelo Regional/Mathis Field     41660
3277                          Sawyer International     32100
3278              Phoenix Sky Harbor International     38060
3279                          Jack Brooks Regional     13140
3280           Ted Stevens Anchorage International     11260
3281           Ted Stevens Anchorage International     11260
3282           Ted Stevens Anchorage International     11260
3283                  Seattle/Tacoma International     42660
3284                                  Nome Airport      <NA>
3285                    Petersburg James A Johnson      <NA>
3286                            Westchester County     35620
3287                            Westchester County     35620
3288                  Theodore Francis Green State     39300
3289                     San Antonio International     41700
3290      Hartsfield-Jackson Atlanta International     12060
3291      Hartsfield-Jackson Atlanta International     12060
3292      Hartsfield-Jackson Atlanta International     12060
3293      Hartsfield-Jackson Atlanta International     12060
3294      Hartsfield-Jackson Atlanta International     12060
3295      Hartsfield-Jackson Atlanta International     12060
3296                          Gainesville Regional     23540
3297           Ted Stevens Anchorage International     11260
3298                           Shreveport Regional     43340
3299             Bozeman Yellowstone International     14580
3300                St Louis Lambert International     41180
3301             Ronald Reagan Washington National     47900
3302               Dallas/Fort Worth International     19100
3303               Dallas/Fort Worth International     19100
3304                            Monterey Peninsula     41500
3305               Charlotte Douglas International     16740
3306               Charlotte Douglas International     16740
3307             Ronald Reagan Washington National     47900
3308             Ronald Reagan Washington National     47900
3309        Salisbury-Ocean City/Wicomico Regional     41540
3310                    Philadelphia International     37980
3311                          Denver International     19740
3312           Lubbock Preston Smith International     31180
3313                  Chicago O'Hare International     16980
3314                     San Antonio International     41700
3315                   San Francisco International     41860
3316                  Newark Liberty International     35620
3317                  Newark Liberty International     35620
3318          George Bush Intercontinental/Houston     26420
3319                 Daniel K Inouye International     46520
3320                       San Diego International     41740
3321                           Minot International     33500
3322                   San Francisco International     41860
3323            Baltimore/Washington International     12580
3324             Ronald Reagan Washington National     47900
3325                            Mahlon Sweet Field     21660
3326                         Spokane International     44060
3327                  Chicago Midway International     16980
3328                               Eppley Airfield     36540
3329                                      Bob Hope     31080
3330                       San Diego International     41740
3331                       San Diego International     41740
3332              John Wayne Airport-Orange County     31080
3333                St Louis Lambert International     41180
3334                           Tampa International     45300
3335                  Charleston AFB/International     16700
3336               Dallas/Fort Worth International     19100
3337               Dallas/Fort Worth International     19100
3338               Dallas/Fort Worth International     19100
3339          George Bush Intercontinental/Houston     26420
3340          George Bush Intercontinental/Houston     26420
3341          George Bush Intercontinental/Houston     26420
3342                           Rapid City Regional     39660
3343               Charlotte Douglas International     16740
3344               Charlotte Douglas International     16740
3345                                     LaGuardia     35620
3346                         Norfolk International     47260
3347                    Philadelphia International     37980
3348             Minneapolis-St Paul International     33460
3349                    Philadelphia International     37980
3350                    Philadelphia International     37980
3351                          Denver International     19740
3352                          Denver International     19740
3353                           Shreveport Regional     43340
3354                    Philadelphia International     37980
3355                  Chicago O'Hare International     16980
3356      Hartsfield-Jackson Atlanta International     12060
3357             Ronald Reagan Washington National     47900
3358               Dallas/Fort Worth International     19100
3359               Dallas/Fort Worth International     19100
3360        General Downing - Peoria International     37900
3361                      San Luis County Regional     42020
3362                              Easterwood Field     17780
3363                      Palm Beach International     33100
3364                    Philadelphia International     37980
3365                University of Illinois/Willard     16580
3366      Hartsfield-Jackson Atlanta International     12060
3367      Hartsfield-Jackson Atlanta International     12060
3368            Baltimore/Washington International     12580
3369                    Detroit Metro Wayne County     19820
3370                  Chicago O'Hare International     16980
3371                                 Meadows Field     12540
3372               Dallas/Fort Worth International     19100
3373                           Miami International     33100
3374             Ronald Reagan Washington National     47900
3375             Ronald Reagan Washington National     47900
3376                          Denver International     19740
3377                             Granite Point Ndb      <NA>
3378                  Chicago O'Hare International     16980
3379                                    Tri Cities     28420
3380                   San Francisco International     41860
3381                      Reno/Tahoe International     39900
3382                          Denver International     19740
3383                  Newark Liberty International     35620
3384                  Newark Liberty International     35620
3385          George Bush Intercontinental/Houston     26420
3386                    Indianapolis International     26900
3387                   San Francisco International     41860
3388               Southwest Florida International     15980
3389                        McCarran International     29820
3390           Rick Husband Amarillo International     11100
3391               Dallas/Fort Worth International     19100
3392               Dallas/Fort Worth International     19100
3393          George Bush Intercontinental/Houston     26420
3394                     Kansas City International     28140
3395                  Salt Lake City International     41620
3396         Louisville Muhammad Ali International     31140
3397          George Bush Intercontinental/Houston     26420
3398               Charlotte Douglas International     16740
3399      Hartsfield-Jackson Atlanta International     12060
3400               Dallas/Fort Worth International     19100
3401                                     LaGuardia     35620
3402      Hartsfield-Jackson Atlanta International     12060
3403    Central Il Regional Airport at Bloomington     14010
3404                              The Eastern Iowa     16300
3405                    Detroit Metro Wayne County     19820
3406                                     LaGuardia     35620
3407                         Memphis International     32820
3408                       Quad City International     19340
3409                 Daniel K Inouye International     46520
3410                           South Bend Regional     43780
3411              Austin - Bergstrom International     12420
3412          Greenville-Spartanburg International     43900
3413                       Durango La Plata County     20420
3414               Charlotte Douglas International     16740
3415               Charlotte Douglas International     16740
3416               Charlotte Douglas International     16740
3417               Charlotte Douglas International     16740
3418               Charlotte Douglas International     16740
3419               Charlotte Douglas International     16740
3420               Charlotte Douglas International     16740
3421               Dallas/Fort Worth International     19100
3422               Dallas/Fort Worth International     19100
3423               Dallas/Fort Worth International     19100
3424               Dallas/Fort Worth International     19100
3425               Dallas/Fort Worth International     19100
3426                                  Jackson Hole     27220
3427                  Springfield-Branson National     44180
3428                              Abilene Regional     10180
3429                Luis Munoz Marin International     41980
3430                           Miami International     33100
3431                            Bismarck Municipal     13900
3432                  Gerald R. Ford International     24340
3433                       Santa Barbara Municipal     42200
3434                      Bellingham International     13380
3435              Phoenix Sky Harbor International     38060
3436                      Burlington International     15540
3437                     San Antonio International     41700
3438          Sheppard AFB/Wichita Falls Municipal     48660
3439              John Wayne Airport-Orange County     31080
3440                      Pittsburgh International     38300
3441                                      Bob Hope     31080
3442                             Dallas Love Field     19100
3443              Phoenix Sky Harbor International     38060
3444                         Ontario International     40140
3445                        Portland International     38900
3446                        Portland International     38900
3447                        Portland International     38900
3448                        Portland International     38900
3449                      San Luis County Regional     42020
3450                       San Diego International     41740
3451                  Seattle/Tacoma International     42660
3452                  Seattle/Tacoma International     42660
3453                  Seattle/Tacoma International     42660
3454                  Seattle/Tacoma International     42660
3455                  Seattle/Tacoma International     42660
3456                         Sitka Rocky Gutierrez      <NA>
3457                         Sitka Rocky Gutierrez      <NA>
3458       Norman Y. Mineta San Jose International     41940
3459              John Wayne Airport-Orange County     31080
3460                         Bradley International     25540
3461                           Logan International     14460
3462                           Logan International     14460
3463                 John F. Kennedy International     35620
3464                     Los Angeles International     31080
3465                     Los Angeles International     31080
3466                                     LaGuardia     35620
3467                Luis Munoz Marin International     41980
3468      Hartsfield-Jackson Atlanta International     12060
3469      Hartsfield-Jackson Atlanta International     12060
3470                     Grand Forks International     24220
3471      Hartsfield-Jackson Atlanta International     12060
3472                         Wichita Mid-Continent     48620
3473                           Logan International     14460
3474             Bozeman Yellowstone International     14580
3475                            Boise Air Terminal     14260
3476                          Tallahassee Regional     45220
3477                         Columbia Metropolitan     17900
3478                           Minot International     33500
3479                     Lewiston Nez Perce County     30300
3480          Rogue Valley International - Medford     32780
3481                     Los Angeles International     31080
3482                     Kansas City International     28140
3483                         Memphis International     32820
3484                        Missoula International     33540
3485               Aspen Pitkin County Sardy Field     24060
3486             Minneapolis-St Paul International     33460
3487                        Portland International     38900
3488                           Tulsa International     46140
3489                               Mobile Regional     33660
3490                                Cherry Capital     45900
3491              James M Cox/Dayton International     19430
3492               Dallas/Fort Worth International     19100
3493               Dallas/Fort Worth International     19100
3494               Dallas/Fort Worth International     19100
3495               Dallas/Fort Worth International     19100
3496                          Gainesville Regional     23540
3497                           Miami International     33100
3498                                        Yeager     16620
3499               Charlotte Douglas International     16740
3500             Ronald Reagan Washington National     47900
3501              Dane County Regional-Truax Field     31540
3502                         Norfolk International     47260
3503                    Philadelphia International     37980
3504                            Bismarck Municipal     13900
3505                       Brainerd Lakes Regional     14660
3506                          Denver International     19740
3507                          Denver International     19740
3508                          Denver International     19740
3509                          Denver International     19740
3510               Dallas/Fort Worth International     19100
3511               Dallas/Fort Worth International     19100
3512               Dallas/Fort Worth International     19100
3513               Washington Dulles International     47900
3514                        Appleton International     11540
3515                          Sawyer International     32100
3516             Minneapolis-St Paul International     33460
3517             Minneapolis-St Paul International     33460
3518                               Eppley Airfield     36540
3519                  Chicago O'Hare International     16980
3520                  Chicago O'Hare International     16980
3521                        Portland International     38900
3522                        Portland International     38900
3523              Phoenix Sky Harbor International     38060
3524              Phoenix Sky Harbor International     38060
3525                         Spokane International     44060
3526               Washington Dulles International     47900
3527                       San Diego International     41740
3528                      San Luis County Regional     42020
3529                  Salt Lake City International     41620
3530                  Salt Lake City International     41620
3531                  Salt Lake City International     41620
3532                  Salt Lake City International     41620
3533                  Salt Lake City International     41620
3534                              Snohomish County     42660
3535                       Pullman Moscow Regional     39420
3536                       Santa Barbara Municipal     42200
3537                  Seattle/Tacoma International     42660
3538                  Seattle/Tacoma International     42660
3539                          Denver International     19740
3540               Washington Dulles International     47900
3541               Washington Dulles International     47900
3542          George Bush Intercontinental/Houston     26420
3543                                  McGhee Tyson     28940
3544               Gunnison-Crested Butte Regional      <NA>
3545                Syracuse Hancock International     45060
3546                  Chicago O'Hare International     16980
3547      Jackson Medgar Wiley Evers International     27140
3548                      Reno/Tahoe International     39900
3549                   San Francisco International     41860
3550                   San Francisco International     41860
3551              John Wayne Airport-Orange County     31080
3552                                        Yeager     16620
3553                       Grand Junction Regional     24300
3554                             Dallas Love Field     19100
3555                          Denver International     19740
3556       Fort Lauderdale-Hollywood International     33100
3557                  Gerald R. Ford International     24340
3558                               William P Hobby     26420
3559                        McCarran International     29820
3560              Phoenix Sky Harbor International     38060
3561                      Pittsburgh International     38300
3562                      Sacramento International     40900
3563                St Louis Lambert International     41180
3564                St Louis Lambert International     41180
3565                      Sacramento International     40900
3566               Washington Dulles International     47900
3567          George Bush Intercontinental/Houston     26420
3568          George Bush Intercontinental/Houston     26420
3569                       Santa Barbara Municipal     42200
3570               Charlotte Douglas International     16740
3571                  Gerald R. Ford International     24340
3572                    Philadelphia International     37980
3573                  Chicago O'Hare International     16980
3574              James M Cox/Dayton International     19430
3575                    Philadelphia International     37980
3576                          Denver International     19740
3577                            Boise Air Terminal     14260
3578          George Bush Intercontinental/Houston     26420
3579                            Mahlon Sweet Field     21660
3580      Hartsfield-Jackson Atlanta International     12060
3581      Hartsfield-Jackson Atlanta International     12060
3582                      Des Moines International     19780
3583                    Detroit Metro Wayne County     19820
3584                                     LaGuardia     35620
3585                                     LaGuardia     35620
3586             Minneapolis-St Paul International     33460
3587             Minneapolis-St Paul International     33460
3588                                  McGhee Tyson     28940
3589                  Springfield-Branson National     44180
3590             Bozeman Yellowstone International     14580
3591                      San Luis County Regional     42020
3592               Charlotte Douglas International     16740
3593                        Missoula International     33540
3594       Northwest Florida Beaches International     37460
3595               Dallas/Fort Worth International     19100
3596               Dallas/Fort Worth International     19100
3597               Dallas/Fort Worth International     19100
3598                      Des Moines International     19780
3599                            Mahlon Sweet Field     21660
3600                 Buffalo Niagara International     15380
3601                         Eagle County Regional     20780
3602              Phoenix Sky Harbor International     38060
3603    Central Il Regional Airport at Bloomington     14010
3604                        Key West International     28580
3605                                  Cyril E King      <NA>
3606           Ted Stevens Anchorage International     11260
3607                            Boise Air Terminal     14260
3608               Dallas/Fort Worth International     19100
3609                 Daniel K Inouye International     46520
3610                  Chicago O'Hare International     16980
3611                        Portland International     38900
3612                        Portland International     38900
3613                        Portland International     38900
3614                       San Diego International     41740
3615                  Seattle/Tacoma International     42660
3616                          Tucson International     46060
3617                           Logan International     14460
3618                 John F. Kennedy International     35620
3619      Hartsfield-Jackson Atlanta International     12060
3620      Hartsfield-Jackson Atlanta International     12060
3621                           South Bend Regional     43780
3622             Minneapolis-St Paul International     33460
3623                      Golden Triangle Regional     18060
3624                  Salt Lake City International     41620
3625               Dallas/Fort Worth International     19100
3626               Dallas/Fort Worth International     19100
3627               Dallas/Fort Worth International     19100
3628               Dallas/Fort Worth International     19100
3629                     San Antonio International     41700
3630                                   Adams Field     30780
3631                           Miami International     33100
3632                    Myrtle Beach International     34820
3633                              Rafael Hernandez     10380
3634                         Columbia Metropolitan     17900
3635               Charlotte Douglas International     16740
3636             Ronald Reagan Washington National     47900
3637                                Joe Foss Field     43620
3638                    Manchester-Boston Regional     31700
3639                    Philadelphia International     37980
3640             Albuquerque International Sunport     10740
3641                  Billings Logan International     13740
3642               Dallas/Fort Worth International     19100
3643               Dallas/Fort Worth International     19100
3644                    Detroit Metro Wayne County     19820
3645                    Detroit Metro Wayne County     19820
3646                         Spokane International     44060
3647             Minneapolis-St Paul International     33460
3648                  Chicago O'Hare International     16980
3649                         Eagle County Regional     20780
3650                   San Francisco International     41860
3651       Norman Y. Mineta San Jose International     41940
3652                  Salt Lake City International     41620
3653                  Salt Lake City International     41620
3654                  Salt Lake City International     41620
3655                        McCarran International     29820
3656                       San Diego International     41740
3657                  Seattle/Tacoma International     42660
3658                          Denver International     19740
3659                           Hilton Head Airport     25940
3660                  Chicago O'Hare International     16980
3661                 Pensacola Gulf Coast Regional     37860
3662                               Helena Regional     25740
3663                        Key West International     28580
3664                     San Antonio International     41700
3665                 Gulfport-Biloxi International     25060
3666                                      Bob Hope     31080
3667             Ronald Reagan Washington National     47900
3668                         Long Island MacArthur     35620
3669                         Orlando International     36740
3670                  Chicago Midway International     16980
3671            Metropolitan Oakland International     41860
3672            Metropolitan Oakland International     41860
3673            Metropolitan Oakland International     41860
3674              Phoenix Sky Harbor International     38060
3675                         Wichita Mid-Continent     48620
3676               Charlotte Douglas International     16740
3677                      Sacramento International     40900
3678                St Louis Lambert International     41180
3679               Dallas/Fort Worth International     19100
3680                          Hector International     22020
3681                                Joe Foss Field     43620
3682          George Bush Intercontinental/Houston     26420
3683          George Bush Intercontinental/Houston     26420
3684                       Quad City International     19340
3685                  Raleigh-Durham International     39580
3686             Ronald Reagan Washington National     47900
3687               Washington Dulles International     47900
3688                                     LaGuardia     35620
3689                         Memphis International     32820
3690                    Philadelphia International     37980
3691                  Chicago O'Hare International     16980
3692               Charlotte Douglas International     16740
3693               Charlotte Douglas International     16740
3694                    Philadelphia International     37980
3695                    Philadelphia International     37980
3696          George Bush Intercontinental/Houston     26420
3697                               Mobile Regional     33660
3698      Hartsfield-Jackson Atlanta International     12060
3699                    Detroit Metro Wayne County     19820
3700           Ted Stevens Anchorage International     11260
3701                          Bangor International     12620
3702               Charlotte Douglas International     16740
3703                           Miami International     33100
3704           Lubbock Preston Smith International     31180
3705               Dallas/Fort Worth International     19100
3706               Dallas/Fort Worth International     19100
3707               Dallas/Fort Worth International     19100
3708               Dallas/Fort Worth International     19100
3709               Dallas/Fort Worth International     19100
3710               Dallas/Fort Worth International     19100
3711               Dallas/Fort Worth International     19100
3712               Dallas/Fort Worth International     19100
3713               Dallas/Fort Worth International     19100
3714                General Mitchell International     33340
3715                 John F. Kennedy International     35620
3716                 John F. Kennedy International     35620
3717                 Buffalo Niagara International     15380
3718                                  Yampa Valley     44460
3719                           Miami International     33100
3720                         Norfolk International     47260
3721            Savannah/Hilton Head International     42340
3722                Luis Munoz Marin International     41980
3723                  Springfield-Branson National     44180
3724                  Salt Lake City International     41620
3725           Ted Stevens Anchorage International     11260
3726                    Petersburg James A Johnson      <NA>
3727                                Bethel Airport      <NA>
3728                 John F. Kennedy International     35620
3729                        McCarran International     29820
3730                Luis Munoz Marin International     41980
3731                           Tampa International     45300
3732      Hartsfield-Jackson Atlanta International     12060
3733                         Memphis International     32820
3734                  Newark Liberty International     35620
3735               Dallas/Fort Worth International     19100
3736               Dallas/Fort Worth International     19100
3737                           Miami International     33100
3738                             Will Rogers World     36420
3739                General Mitchell International     33340
3740                              The Eastern Iowa     16300
3741               Charlotte Douglas International     16740
3742               Charlotte Douglas International     16740
3743             Ronald Reagan Washington National     47900
3744             Ronald Reagan Washington National     47900
3745                         Memphis International     32820
3746                          Albany International     10580
3747               Dallas/Fort Worth International     19100
3748          George Bush Intercontinental/Houston     26420
3749                     Los Angeles International     31080
3750                     Lewiston Nez Perce County     30300
3751                  Chicago O'Hare International     16980
3752                  Chicago O'Hare International     16980
3753                  Chicago O'Hare International     16980
3754              Phoenix Sky Harbor International     38060
3755                      San Luis County Regional     42020
3756                   San Francisco International     41860
3757                  Salt Lake City International     41620
3758                                Kodiak Airport      <NA>
3759   Huntsville International-Carl T Jones Field     26620
3760  Brownsville South Padre Island International     15180
3761               Washington Dulles International     47900
3762          George Bush Intercontinental/Houston     26420
3763                  Chicago O'Hare International     16980
3764                   San Francisco International     41860
3765             Albuquerque International Sunport     10740
3766                       Nashville International     34980
3767                       Nashville International     34980
3768            Baltimore/Washington International     12580
3769            Baltimore/Washington International     12580
3770                          Denver International     19740
3771                    Jacksonville International     27260
3772                                  Yampa Valley     44460
3773                               William P Hobby     26420
3774                        McCarran International     29820
3775                        McCarran International     29820
3776                        McCarran International     29820
3777                        McCarran International     29820
3778                        McCarran International     29820
3779                                   Adams Field     30780
3780                         Orlando International     36740
3781                  Chicago Midway International     16980
3782                    Manchester-Boston Regional     31700
3783                    Manchester-Boston Regional     31700
3784                General Mitchell International     33340
3785                        Portland International     38900
3786                        Portland International     38900
3787              Phoenix Sky Harbor International     38060
3788              Phoenix Sky Harbor International     38060
3789                     San Antonio International     41700
3790         Louisville Muhammad Ali International     31140
3791                      Sacramento International     40900
3792                      Sacramento International     40900
3793                St Louis Lambert International     41180
3794               Dallas/Fort Worth International     19100
3795               Dallas/Fort Worth International     19100
3796                    Detroit Metro Wayne County     19820
3797   Huntsville International-Carl T Jones Field     26620
3798              Phoenix Sky Harbor International     38060
3799              Phoenix Sky Harbor International     38060
3800               Charlotte Douglas International     16740
3801                                     LaGuardia     35620
3802                  Raleigh-Durham International     39580
3803                  Chicago O'Hare International     16980
3804               Washington Dulles International     47900
3805                             Will Rogers World     36420
3806                            Worcester Regional     49340
3807                  Billings Logan International     13740
3808                           Hilton Head Airport     25940
3809            Baltimore/Washington International     12580
3810                           Miami International     33100
3811                  Charleston AFB/International     16700
3812       Fort Lauderdale-Hollywood International     33100
3813                 John F. Kennedy International     35620
3814                            Worcester Regional     49340
3815                            Worcester Regional     49340
3816                Luis Munoz Marin International     41980
3817                                  Cyril E King      <NA>
3818              Dane County Regional-Truax Field     31540
3819    Central Il Regional Airport at Bloomington     14010
3820                 Buffalo Niagara International     15380
3821                          Denver International     19740
3822                          Denver International     19740
3823                          Denver International     19740
3824                      Des Moines International     19780
3825                       Durango La Plata County     20420
3826                                Joe Foss Field     43620
3827                          Valley International     15180
3828                                    New Castle     37980
3829                         Long Island MacArthur     35620
3830                         Long Island MacArthur     35620
3831                        McCarran International     29820
3832                         Orlando International     36740
3833                         Orlando International     36740
3834                  Chicago O'Hare International     16980
3835                      Palm Beach International     33100
3836                Portland International Jetport     38860
3837                Portland International Jetport     38860
3838                  Raleigh-Durham International     39580
3839                  Raleigh-Durham International     39580
3840               Southwest Florida International     15980
3841                New York Stewart International     39100
3842                New York Stewart International     39100
3843                Syracuse Hancock International     45060
3844                           Tampa International     45300
3845                                Trenton Mercer     45940
3846                                Trenton Mercer     45940
3847                                Trenton Mercer     45940
3848                                Trenton Mercer     45940
3849                  Charleston AFB/International     16700
3850                   Atlantic City International     12100
3851                   Atlantic City International     12100
3852                         Akron-Canton Regional     10420
3853             John Glenn Columbus International     18140
3854                      Palm Beach International     33100
3855       Fort Lauderdale-Hollywood International     33100
3856                    Indianapolis International     26900
3857                        McCarran International     29820
3858                     Los Angeles International     31080
3859                        Arnold Palmer Regional     38300
3860                                     LaGuardia     35620
3861                         Orlando International     36740
3862                         Orlando International     36740
3863                         Orlando International     36740
3864                    Myrtle Beach International     34820
3865                    Myrtle Beach International     34820
3866                    Myrtle Beach International     34820
3867                                  Cyril E King      <NA>
3868                  Chicago O'Hare International     16980
3869                    Philadelphia International     37980
3870               Southwest Florida International     15980
3871               Southwest Florida International     15980
3872         Louisville Muhammad Ali International     31140
3873                                  McGhee Tyson     28940
3874                     Los Angeles International     31080
3875                   San Francisco International     41860
3876                          Denver International     19740
3877                   Lehigh Valley International     10900
3878                  Chicago O'Hare International     16980
3879                    Detroit Metro Wayne County     19820
3880            Savannah/Hilton Head International     42340
3881                            Hilo International     25900
3882          George Bush Intercontinental/Houston     26420
3883                            Worcester Regional     49340
3884               Cleveland-Hopkins International     17460
3885                            Asheville Regional     11700
3886             Minneapolis-St Paul International     33460
3887             Minneapolis-St Paul International     33460
3888             Minneapolis-St Paul International     33460
3889                      Palm Beach International     33100
3890                           Punta Gorda Airport     39460
3891          George Bush Intercontinental/Houston     26420
3892                 Daniel K Inouye International     46520
3893                 John F. Kennedy International     35620
3894           Ted Stevens Anchorage International     11260
3895           Ted Stevens Anchorage International     11260
3896          George Bush Intercontinental/Houston     26420
3897                  Chicago O'Hare International     16980
3898       Norman Y. Mineta San Jose International     41940
3899      Hartsfield-Jackson Atlanta International     12060
3900                    Detroit Metro Wayne County     19820
3901               Charlotte Douglas International     16740
3902               Charlotte Douglas International     16740
3903               Charlotte Douglas International     16740
3904               Dallas/Fort Worth International     19100
3905              Phoenix Sky Harbor International     38060
3906           Ted Stevens Anchorage International     11260
3907                           King Salmon Airport      <NA>
3908                  Seattle/Tacoma International     42660
3909                      Palm Beach International     33100
3910                                  Cyril E King      <NA>
3911      Hartsfield-Jackson Atlanta International     12060
3912      Hartsfield-Jackson Atlanta International     12060
3913      Hartsfield-Jackson Atlanta International     12060
3914                        McCarran International     29820
3915           Casper/Natrona County International     16220
3916                             Aberdeen Regional     10100
3917                  Newark Liberty International     35620
3918                  Piedmont Triad International     24660
3919                  Billings Logan International     13740
3920           Baton Rouge Metropolitan/Ryan Field     12940
3921                                        Yeager     16620
3922             Ronald Reagan Washington National     47900
3923          Greenville-Spartanburg International     43900
3924                    Philadelphia International     37980
3925                    Philadelphia International     37980
3926                    Philadelphia International     37980
3927                      Gillette Campbell County     23940
3928                          Denver International     19740
3929                          Denver International     19740
3930                          Denver International     19740
3931                          Denver International     19740
3932               Dallas/Fort Worth International     19100
3933               Dallas/Fort Worth International     19100
3934              Phoenix Sky Harbor International     38060
3935                             Friedman Memorial     25200
3936                            Mahlon Sweet Field     21660
3937          Joslin Field - Magic Valley Regional     46300
3938             Albuquerque International Sunport     10740
3939                   San Francisco International     41860
3940      Hartsfield-Jackson Atlanta International     12060
3941                 Buffalo Niagara International     15380
3942                 Buffalo Niagara International     15380
3943            Baltimore/Washington International     12580
3944             John Glenn Columbus International     18140
3945             John Glenn Columbus International     18140
3946                             Dallas Love Field     19100
3947                             Dallas Love Field     19100
3948                  Gerald R. Ford International     24340
3949              Phoenix Sky Harbor International     38060
3950       Northwest Florida Beaches International     37460
3951         Louisville Muhammad Ali International     31140
3952                              The Eastern Iowa     16300
3953               Dallas/Fort Worth International     19100
3954          George Bush Intercontinental/Houston     26420
3955      Hartsfield-Jackson Atlanta International     12060
3956              James M Cox/Dayton International     19430
3957               Washington Dulles International     47900
3958                      Burlington International     15540
3959                    Philadelphia International     37980
3960                 John F. Kennedy International     35620
3961                           Montgomery Regional     33860
3962                       Durango La Plata County     20420
3963                             Florence Regional     22500
3964   Huntsville International-Carl T Jones Field     26620
3965       Fort Lauderdale-Hollywood International     33100
3966                  Charleston AFB/International     16700
3967                          Laredo International     29700
3968    Cincinnati/Northern Kentucky International     17140
3969                    Philadelphia International     37980
3970                  Piedmont Triad International     24660
3971               Dallas/Fort Worth International     19100
3972    Central Il Regional Airport at Bloomington     14010
3973                           La Crosse Municipal     29100
3974                                 Meadows Field     12540
3975                           South Bend Regional     43780
3976               Greater Rochester International     40380
3977                 John F. Kennedy International     35620
3978                         Ontario International     40140
3979                                    Tri Cities     28700
3980                      Burlington International     15540
3981                       Rochester International     40340
3982                           Miami International     33100
3983                         Del Rio International     19620
3984                                        Yeager     16620
3985                           Evansville Regional     21780
3986                     Great Falls International     24500
3987                    Palm Springs International     40140
3988                      Reno/Tahoe International     39900
3989                 John F. Kennedy International     35620
3990                Portland International Jetport     38860
3991                  Charleston AFB/International     16700
3992                            Nantucket Memorial      <NA>
3993      Hartsfield-Jackson Atlanta International     12060
3994                        Appleton International     11540
3995                          Albany International     10580
3996                         Wichita Mid-Continent     48620
3997                       Rochester International     40340
3998       Fort Lauderdale-Hollywood International     33100
3999                             Central Wisconsin     48140
4000                                  Lovell Field     16860
4001                    Jacksonville International     27260
4002                 John F. Kennedy International     35620
4003               Charlotte Douglas International     16740
4004     Louis Armstrong New Orleans International     35380
4005                               William P Hobby     26420
4006                         Orlando International     36740
4007                   San Francisco International     41860
4008             Minneapolis-St Paul International     33460
4009      Hartsfield-Jackson Atlanta International     12060
4010      Hartsfield-Jackson Atlanta International     12060
4011              Phoenix Sky Harbor International     38060
4012                         Spokane International     44060
4013                    Detroit Metro Wayne County     19820
4014                                 Lihue Airport     28180
4015               Charlotte Douglas International     16740
4016               Washington Dulles International     47900
4017               Charlotte Douglas International     16740
4018       Fort Lauderdale-Hollywood International     33100
4019                           Miami International     33100
4020                  Chicago O'Hare International     16980
4021                        Portland International     38900
4022                  Chicago O'Hare International     16980
4023               Charlotte Douglas International     16740
4024                    Philadelphia International     37980
4025                    Philadelphia International     37980
4026               Washington Dulles International     47900
4027                               Monroe Regional     33740
4028               Washington Dulles International     47900
4029                  Salt Lake City International     41620
4030                 Daniel K Inouye International     46520
4031       Norman Y. Mineta San Jose International     41940
4032               Southwest Florida International     15980
4033                 Daniel K Inouye International     46520
4034                               William P Hobby     26420
4035          George Bush Intercontinental/Houston     26420
4036                                  Delta County     21540
4037               Washington Dulles International     47900
4038                                  Cyril E King      <NA>
4039              Phoenix Sky Harbor International     38060
4040                  Salt Lake City International     41620
4041                            Watertown Regional     47980
4042                  Chicago Midway International     16980
4043                St Louis Lambert International     41180
4044                             Dallas Love Field     19100
4045                               Kahului Airport     27980
4046                                      Bob Hope     31080
4047                         Orlando International     36740
4048            Baltimore/Washington International     12580
4049                  Chicago O'Hare International     16980
4050          George Bush Intercontinental/Houston     26420
4051         Kona International Airport at Keahole     25900
4052                  Salt Lake City International     41620
4053           Ted Stevens Anchorage International     11260
4054      Hartsfield-Jackson Atlanta International     12060
4055                               Kahului Airport     27980
4056               Charlotte Douglas International     16740
4057                  Chicago Midway International     16980
4058                  Chicago O'Hare International     16980
4059               Charlotte Douglas International     16740
4060               Charlotte Douglas International     16740
4061              Austin - Bergstrom International     12420
4062              John Wayne Airport-Orange County     31080
4063                      Pittsburgh International     38300
4064                  Chicago Midway International     16980
4065               Dallas/Fort Worth International     19100
4066                      Pittsburgh International     38300
4067           Ted Stevens Anchorage International     11260
4068                        Portland International     38900
4069                        Portland International     38900
4070               Southwest Florida International     15980
4071                  Seattle/Tacoma International     42660
4072                         Orlando International     36740
4073     Louis Armstrong New Orleans International     35380
4074      Hartsfield-Jackson Atlanta International     12060
4075      Hartsfield-Jackson Atlanta International     12060
4076                      Reno/Tahoe International     39900
4077                  Salt Lake City International     41620
4078                  Newark Liberty International     35620
4079               Charlotte Douglas International     16740
4080                        Richmond International     40060
4081               Charlotte Douglas International     16740
4082               Charlotte Douglas International     16740
4083                      Ithaca Tompkins Regional     27060
4084                    Philadelphia International     37980
4085               Aspen Pitkin County Sardy Field     24060
4086               Dallas/Fort Worth International     19100
4087                     Los Angeles International     31080
4088                                  Cyril E King      <NA>
4089              Austin - Bergstrom International     12420
4090              Sarasota/Bradenton International     35840
4091                            St George Regional     41100
4092                  Chicago O'Hare International     16980
4093                    Philadelphia International     37980
4094                    Philadelphia International     37980
4095          George Bush Intercontinental/Houston     26420
4096           Ted Stevens Anchorage International     11260
4097                          Denver International     19740
4098       Green Bay Austin Straubel International     24580
4099                         Long Island MacArthur     35620
4100                        McCarran International     29820
4101                         Orlando International     36740
4102                         Orlando International     36740
4103                         Orlando International     36740
4104                         Orlando International     36740
4105                           Miami International     33100
4106              Dane County Regional-Truax Field     31540
4107                Syracuse Hancock International     45060
4108     Pellston Regional Airport of Emmet County      <NA>
4109               Charlotte Douglas International     16740
4110               Dallas/Fort Worth International     19100
4111          Greenville-Spartanburg International     43900
4112                         Sitka Rocky Gutierrez      <NA>
4113                               Yakutat Airport      <NA>
4114                           Logan International     14460
4115       Norman Y. Mineta San Jose International     41940
4116    Cincinnati/Northern Kentucky International     17140
4117          Joslin Field - Magic Valley Regional     46300
4118                               Dothan Regional     37120
4119                     Great Falls International     24500
4120                                   Bert Mooney     15580
4121                                        Yeager     16620
4122                  Salt Lake City International     41620
4123               Dallas/Fort Worth International     19100
4124               Charlotte Douglas International     16740
4125               Charlotte Douglas International     16740
4126               Charlotte Douglas International     16740
4127                    Philadelphia International     37980
4128                          Tallahassee Regional     45220
4129               Dallas/Fort Worth International     19100
4130                    Detroit Metro Wayne County     19820
4131                          Sawyer International     32100
4132                     Los Angeles International     31080
4133             Charles M. Schulz - Sonoma County     42220
4134                             Granite Point Ndb      <NA>
4135             Minneapolis-St Paul International     33460
4136                             Will Rogers World     36420
4137                            St George Regional     41100
4138                          Valley International     15180
4139                  Newark Liberty International     35620
4140                     Los Angeles International     31080
4141                  Chicago O'Hare International     16980
4142             Albuquerque International Sunport     10740
4143                Luis Munoz Marin International     41980
4144              Austin - Bergstrom International     12420
4145                             Dallas Love Field     19100
4146                               William P Hobby     26420
4147                               William P Hobby     26420
4148              John Wayne Airport-Orange County     31080
4149                           Tampa International     45300
4150               Dallas/Fort Worth International     19100
4151               Charlotte Douglas International     16740
4152             Bozeman Yellowstone International     14580
4153                   Northwest Arkansas Regional     22220
4154                  Newark Liberty International     35620
4155             Minneapolis-St Paul International     33460
4156                           Logan International     14460
4157                                     LaGuardia     35620
4158                                     LaGuardia     35620
4159                                     LaGuardia     35620
4160                                     LaGuardia     35620
4161                         Norfolk International     47260
4162                                  Jackson Hole     27220
4163               Dallas/Fort Worth International     19100
4164                         El Paso International     21340
4165          Greenville-Spartanburg International     43900
4166                           Montgomery Regional     33860
4167                    Jacksonville International     27260
4168                     Kansas City International     28140
4169                           Miami International     33100
4170                           Miami International     33100
4171                           Miami International     33100
4172                 Gulfport-Biloxi International     25060
4173                         Columbus Metropolitan     17980
4174                  Chicago O'Hare International     16980
4175                Portland International Jetport     38860
4176                       Watertown International     48060
4177                                Toledo Express     45780
4178                      Alexandria International     10780
4179                 Buffalo Niagara International     15380
4180                        Key West International     28580
4181            Savannah/Hilton Head International     42340
4182                Syracuse Hancock International     45060
4183                          Gainesville Regional     23540
4184              Austin - Bergstrom International     12420
4185    Cincinnati/Northern Kentucky International     17140
4186                           Logan International     14460
4187       Fort Lauderdale-Hollywood International     33100
4188       Fort Lauderdale-Hollywood International     33100
4189       Fort Lauderdale-Hollywood International     33100
4190                            Westchester County     35620
4191                     Los Angeles International     31080
4192                         Bradley International     25540
4193                     Los Angeles International     31080
4194                        Portland International     38900
4195                        Richmond International     40060
4196            Savannah/Hilton Head International     42340
4197                      Burlington International     15540
4198       Norman Y. Mineta San Jose International     41940
4199                               Lincoln Airport     30700
4200                   Lehigh Valley International     10900
4201                  Seattle/Tacoma International     42660
4202        Birmingham-Shuttlesworth International     13820
4203                           Evansville Regional     21780
4204      Hartsfield-Jackson Atlanta International     12060
4205                         Bradley International     25540
4206                         Orlando International     36740
4207     Louis Armstrong New Orleans International     35380
4208                  Theodore Francis Green State     39300
4209                                Joe Foss Field     43620
4210                  Newark Liberty International     35620
4211                          Albany International     10580
4212                             Waterloo Regional     47940
4213                      Reno/Tahoe International     39900
4214               Dallas/Fort Worth International     19100
4215               Dallas/Fort Worth International     19100
4216                          Idaho Falls Regional     26820
4217                           Evansville Regional     21780
4218                  Chicago O'Hare International     16980
4219              Phoenix Sky Harbor International     38060
4220                                  McGhee Tyson     28940
4221                   Atlantic City International     12100
4222       Fort Lauderdale-Hollywood International     33100
4223                        Arnold Palmer Regional     38300
4224                                     LaGuardia     35620
4225                Luis Munoz Marin International     41980
4226                           Tampa International     45300
4227             Bozeman Yellowstone International     14580
4228                           Tulsa International     46140
4229             Ronald Reagan Washington National     47900
4230             Ronald Reagan Washington National     47900
4231            Tri-State/Milton J. Ferguson Field     26580
4232                      Wilmington International     48900
4233                  Capital Region International     29620
4234                              Easterwood Field     17780
4235                  Gerald R. Ford International     24340
4236           Rick Husband Amarillo International     11100
4237               Cleveland-Hopkins International     17460
4238                             Flagstaff Pulliam     22380
4239          George Bush Intercontinental/Houston     26420
4240                     Los Angeles International     31080
4241                     Los Angeles International     31080
4242      Midland International Air and Space Port     33260
4243                    Myrtle Beach International     34820
4244                  Chicago O'Hare International     16980
4245                  Chicago O'Hare International     16980
4246                  Chicago O'Hare International     16980
4247              Phoenix Sky Harbor International     38060
4248              Roswell International Air Center     40740
4249                   San Francisco International     41860
4250                   San Francisco International     41860
4251                           Tulsa International     46140
4252               Southwest Florida International     15980
4253                             Redding Municipal     39820
4254             Charles M. Schulz - Sonoma County     42220
4255                          Albany International     10580
4256                        Richmond International     40060
4257                  Gerald R. Ford International     24340
4258                      Chippewa Valley Regional     20740
4259       Fort Lauderdale-Hollywood International     33100
4260          Greenville-Spartanburg International     43900
4261  North Platte Regional Airport Lee Bird Field     35820
4262                     Charlottesville Albemarle     16820
4263                      Harrisburg International     25420
4264              James M Cox/Dayton International     19430
4265                          Tucson International     46060
4266           Rick Husband Amarillo International     11100
4267            Erie International/Tom Ridge Field     21500
4268                         Memphis International     32820
4269                           Tampa International     45300
4270                            Monterey Peninsula     41500
4271                       Rochester International     40340
4272                      Wilmington International     48900
4273                     San Antonio International     41700
4274                         Wichita Mid-Continent     48620
4275                      Reno/Tahoe International     39900
4276                            Boise Air Terminal     14260
4277                             Dallas Love Field     19100
4278                         Long Island MacArthur     35620
4279       Northwest Florida Beaches International     37460
4280                               William P Hobby     26420
4281                        Portland International     38900
4282                 Buffalo Niagara International     15380
4283                         Norfolk International     47260
4284          Greenville-Spartanburg International     43900
4285                                  Yampa Valley     44460
4286              John Wayne Airport-Orange County     31080
4287                               Eppley Airfield     36540
4288                          Albany International     10580
4289            Metropolitan Oakland International     41860
4290                  Chicago Midway International     16980
4291                           Miami International     33100
4292                       Nashville International     34980
4293                             Will Rogers World     36420
4294                       Nashville International     34980
4295                    Manchester-Boston Regional     31700
4296                         Spokane International     44060
4297           Lubbock Preston Smith International     31180
4298                               University Park     44300
4299               Dallas/Fort Worth International     19100
4300               Washington Dulles International     47900
4301          George Bush Intercontinental/Houston     26420
4302          George Bush Intercontinental/Houston     26420
4303                    Myrtle Beach International     34820
4304           Lubbock Preston Smith International     31180
4305              Phoenix Sky Harbor International     38060
4306              Sarasota/Bradenton International     35840
4307              Austin - Bergstrom International     12420
4308                  Charleston AFB/International     16700
4309                 John F. Kennedy International     35620
4310                                     LaGuardia     35620
4311                               University Park     44300
4312                      Pittsburgh International     38300
4313                      Palm Beach International     33100
4314               Washington Dulles International     47900
4315               Washington Dulles International     47900
4316               Washington Dulles International     47900
4317               Washington Dulles International     47900
4318                          Duluth International     20260
4319       Green Bay Austin Straubel International     24580
4320             Minneapolis-St Paul International     33460
4321             Minneapolis-St Paul International     33460
4322             Minneapolis-St Paul International     33460
4323             Minneapolis-St Paul International     33460
4324                             Granite Point Ndb      <NA>
4325              Austin - Bergstrom International     12420
4326                      Harrisburg International     25420
4327          George Bush Intercontinental/Houston     26420
4328          George Bush Intercontinental/Houston     26420
4329                           Tampa International     45300
4330      Hartsfield-Jackson Atlanta International     12060
4331                      Wilmington International     48900
4332                 John F. Kennedy International     35620
4333                 John F. Kennedy International     35620
4334                     Charlottesville Albemarle     16820
4335                                     LaGuardia     35620
4336                                          Ford     27020
4337                           Stillwater Regional     44660
4338      Jackson Medgar Wiley Evers International     27140
4339           Fayetteville Regional/Grannis Field     22180
4340                              Dubuque Regional     20220
4341                            Manhattan Regional     31740
4342                  Chicago O'Hare International     16980
4343                   Northwest Arkansas Regional     22220
4344                             Montrose Regional     33940
4345                         Sitka Rocky Gutierrez      <NA>
4346                         Orlando International     36740
4347                        Appleton International     11540
4348                             Canyonlands Field      <NA>
4349                General Mitchell International     33340
4350                             Montrose Regional     33940
4351      Hartsfield-Jackson Atlanta International     12060
4352                         Orlando International     36740
4353                         Orlando International     36740
4354                  Chicago O'Hare International     16980
4355                         Columbia Metropolitan     17900
4356                  Chicago O'Hare International     16980
4357                  Chicago O'Hare International     16980
4358                         Akron-Canton Regional     10420
4359                         Akron-Canton Regional     10420
4360       Fort Lauderdale-Hollywood International     33100
4361                     Los Angeles International     31080
4362                        Arnold Palmer Regional     38300
4363                     Kansas City International     28140
4364                    Myrtle Beach International     34820
4365               Southwest Florida International     15980
4366               Southwest Florida International     15980
4367               Greater Rochester International     40380
4368               Charlotte Douglas International     16740
4369             Ronald Reagan Washington National     47900
4370             Ronald Reagan Washington National     47900
4371             Ronald Reagan Washington National     47900
4372       Newport News/Williamsburg International     47260
4373             Ronald Reagan Washington National     47900
4374             Ronald Reagan Washington National     47900
4375             Ronald Reagan Washington National     47900
4376                         Akron-Canton Regional     10420
4377                    Philadelphia International     37980
4378                                   Adams Field     30780
4379                         Memphis International     32820
4380          George Bush Intercontinental/Houston     26420
4381          George Bush Intercontinental/Houston     26420
4382                              Kearney Regional     28260
4383             Minneapolis-St Paul International     33460
4384              Phoenix Sky Harbor International     38060
4385              Phoenix Sky Harbor International     38060
4386                               Joplin Regional     27900
4387                            Manhattan Regional     31740
4388                    Palm Springs International     40140
4389                     Rhinelander/Oneida County      <NA>
4390                  Seattle/Tacoma International     42660
4391                  Newark Liberty International     35620
4392               Washington Dulles International     47900
4393                 Fresno Yosemite International     23420
4394                Roanoke Regional/Woodrum Field     40220
4395                   Hattiesburg-Laurel Regional     29860
4396               Charlotte Douglas International     16740
4397                  Corpus Christi International     18580
4398                         Memphis International     32820
4399                        Portland International     38900
4400                          Valley International     15180
4401                      Pittsburgh International     38300
4402      Midland International Air and Space Port     33260
4403                General Mitchell International     33340
4404               Washington Dulles International     47900
4405               Washington Dulles International     47900
4406               Washington Dulles International     47900
4407                    Philadelphia International     37980
4408                                  Lovell Field     16860
4409               Washington Dulles International     47900
4410               Washington Dulles International     47900
4411               Washington Dulles International     47900
4412               Washington Dulles International     47900
4413                  Chicago O'Hare International     16980
4414                           Tampa International     45300
4415                       Fairbanks International     21820
4416                            St George Regional     41100
4417                          Idaho Falls Regional     26820
4418                            Santa Fe Municipal     42140
4419                      Fort Wayne International     23060
4420                        Portland International     38900
4421                               Monroe Regional     33740
4422                                 Elko Regional     21220
4423                          Denver International     19740
4424                          Valley International     15180
4425                           Miami International     33100
4426              Dane County Regional-Truax Field     31540
4427                               Eppley Airfield     36540
4428                   Atlantic City International     12100
4429                         Bradley International     25540
4430       Fort Lauderdale-Hollywood International     33100
4431                    Myrtle Beach International     34820
4432               Charlotte Douglas International     16740
4433               Charlotte Douglas International     16740
4434                     Charlottesville Albemarle     16820
4435                    Myrtle Beach International     34820
4436                           Rapid City Regional     39660
4437                               Muskegon County     34740
4438                          Mason City Municipal     32380
4439                    Palm Springs International     40140
4440                  Seattle/Tacoma International     42660
4441                             Pangborn Memorial     48300
4442                               Decatur Airport     19500
4443      California Redwood Coast Humboldt County     21700
4444                Rock Springs Sweetwater County     40540
4445                          Yellowstone Regional      <NA>
4446                          Laredo International     29700
4447                    Philadelphia International     37980
4448                             Dallas Love Field     19100
4449                 Pensacola Gulf Coast Regional     37860
4450       Norman Y. Mineta San Jose International     41940
4451         Kona International Airport at Keahole     25900
4452             Albuquerque International Sunport     10740
4453                      Bellingham International     13380
4454                       San Diego International     41740
4455                        Richmond International     40060
4456              John Wayne Airport-Orange County     31080
4457                           Tampa International     45300
4458          John Murtha Johnstown-Cambria County     27780
4459                    Shenandoah Valley Regional     44420
4460               Washington Dulles International     47900
4461      California Redwood Coast Humboldt County     21700
4462      California Redwood Coast Humboldt County     21700
4463                                      Bob Hope     31080
4464                                      Bob Hope     31080
4465                                      Bob Hope     31080
4466                                      Bob Hope     31080
4467                                      Bob Hope     31080
4468                                      Bob Hope     31080
4469       Fort Lauderdale-Hollywood International     33100
4470               Fort Collins-Loveland Municipal     22660
4471                               Tweed New Haven     35300
4472                               Tweed New Haven     35300
4473          Rogue Valley International - Medford     32780
4474                                Ogden-Hinckley     36260
4475                      Palm Beach International     33100
4476             Charles M. Schulz - Sonoma County     42220
4477                        Portland International     38900
4478                          Denver International     19740
4479                           Tulsa International     46140
4480                          Denver International     19740
4481                          Denver International     19740
4482              Phoenix Sky Harbor International     38060
4483              Phoenix Sky Harbor International     38060
4484                               Kahului Airport     27980
4485                         Eagle County Regional     20780
4486             Minneapolis-St Paul International     33460
4487              Austin - Bergstrom International     12420
4488                  Chicago O'Hare International     16980
4489                                  Jackson Hole     27220
4490          George Bush Intercontinental/Houston     26420
4491                           Miami International     33100
4492                  Chicago O'Hare International     16980
4493       Fort Lauderdale-Hollywood International     33100
4494               Dallas/Fort Worth International     19100
4495                                  Cyril E King      <NA>
4496               Dallas/Fort Worth International     19100
4497             Ronald Reagan Washington National     47900
4498                    Philadelphia International     37980
4499               Dallas/Fort Worth International     19100
4500                  Chicago O'Hare International     16980
4501                  Chicago O'Hare International     16980
4502   Huntsville International-Carl T Jones Field     26620
4503                  Springfield-Branson National     44180
4504                     Kansas City International     28140
4505                    Philadelphia International     37980
4506                    Detroit Metro Wayne County     19820
4507                             Flagstaff Pulliam     22380
4508                          Bangor International     12620
4509                        McCarran International     29820
4510                           Miami International     33100
4511                              Rafael Hernandez     10380
4512                          Bangor International     12620
4513    Central Il Regional Airport at Bloomington     14010
4514                      Burlington International     15540
4515                         Orlando International     36740
4516                      Harrisburg International     25420
4517                Luis Munoz Marin International     41980
4518                                  McGhee Tyson     28940
4519                              Henry E. Rohlsen      <NA>
4520       Fort Lauderdale-Hollywood International     33100
4521                    Manchester-Boston Regional     31700
4522                           Tampa International     45300
4523                             Redding Municipal     39820
4524              John Wayne Airport-Orange County     31080
4525                             Friedman Memorial     25200
4526                Portland International Jetport     38860
4527                       Nashville International     34980
4528                             Dallas Love Field     19100
4529                 Daniel K Inouye International     46520
4530                            Boise Air Terminal     14260
4531                         Orlando International     36740
4532                  Chicago O'Hare International     16980
4533                  Theodore Francis Green State     39300
4534                        Richmond International     40060
4535                     San Antonio International     41700
4536             Ronald Reagan Washington National     47900
4537                           Tampa International     45300
4538               Washington Dulles International     47900
4539       Green Bay Austin Straubel International     24580
4540                      Alexandria International     10780
4541                                     LaGuardia     35620
4542                            Bismarck Municipal     13900
4543                                 Roberts Field     13460
4544                          Juneau International     27940
4545                        Key West International     28580
4546       Fort Lauderdale-Hollywood International     33100
4547                 John F. Kennedy International     35620
4548                                     Mercedita     38660
4549                                   Yellowstone     14580
4550        Greater Binghamton/Edwin A. Link Field     13780
4551                    Myrtle Beach International     34820
4552                   Northwest Arkansas Regional     22220
4553               Dallas/Fort Worth International     19100
4554                         Tyler Pounds Regional     46340
4555                           Logan International     14460
4556             Ronald Reagan Washington National     47900
4557             Ronald Reagan Washington National     47900
4558             Ronald Reagan Washington National     47900
4559                     Los Angeles International     31080
4560              Austin - Bergstrom International     12420
4561                           Lea County Regional     26020
4562                           Dodge City Regional     19980
4563          Sioux Gateway Brig Gen Bud Day Field     43580
4564                       Nashville International     34980
4565                        Portland International     38900
4566                             Dallas Love Field     19100
4567                               William P Hobby     26420
4568                               William P Hobby     26420
4569                               William P Hobby     26420
4570       Northwest Florida Beaches International     37460
4571                        McCarran International     29820
4572                                 Lihue Airport     28180
4573                     Kansas City International     28140
4574                      Reno/Tahoe International     39900
4575                  Chicago Midway International     16980
4576                                     LaGuardia     35620
4577                       San Diego International     41740
4578            City of Colorado Springs Municipal     17820
4579                  Gerald R. Ford International     24340
4580                St Louis Lambert International     41180
4581                           Tampa International     45300
4582                           Tampa International     45300
4583               Washington Dulles International     47900
4584                          Duluth International     20260
4585              Dane County Regional-Truax Field     31540
4586              Phoenix Sky Harbor International     38060
4587               Southwest Florida International     15980
4588                          Tallahassee Regional     45220
4589                               Tweed New Haven     35300
4590                                 Roberts Field     13460
4591              Phoenix Sky Harbor International     38060
4592                             Friedman Memorial     25200
4593                  Chicago O'Hare International     16980
4594                              Henry E. Rohlsen      <NA>
4595                    Detroit Metro Wayne County     19820
4596                  Chicago Midway International     16980
4597                            Mahlon Sweet Field     21660
4598                  Billings Logan International     13740
4599                  Chicago O'Hare International     16980
4600          Yakima Air Terminal/McAllister Field     49420
4601                        Alpena County Regional     10980
4602                    Palm Springs International     40140
4603                         Orlando International     36740
4604                      Palm Beach International     33100
4605       Fort Lauderdale-Hollywood International     33100
4606       Fort Lauderdale-Hollywood International     33100
4607                    Myrtle Beach International     34820
4608                         Memphis International     32820
4609               Charlotte Douglas International     16740
4610           Cheyenne Regional/Jerry Olson Field     16940
4611               Dallas/Fort Worth International     19100
4612                            Watertown Regional     47980
4613                               Vernal Regional     46860
4614                              Laramie Regional     29660
4615                             Canyonlands Field      <NA>
4616                      Houghton County Memorial     26340
4617                      Ogdensburg International     36300
4618      California Redwood Coast Humboldt County     21700
4619              Sarasota/Bradenton International     35840
4620 Western Neb. Regional/William B. Heilig Field     42420
4621                              Kearney Regional     28260
4622                                 Hays Regional     25700
4623                          Albany International     10580
4624            Baltimore/Washington International     12580
4625      Jackson Medgar Wiley Evers International     27140
4626             Ronald Reagan Washington National     47900
4627                             Montrose Regional     33940
4628       Fort Lauderdale-Hollywood International     33100
4629       Fort Lauderdale-Hollywood International     33100
4630                               William P Hobby     26420
4631                               William P Hobby     26420
4632                    Philadelphia International     37980
4633                        McCarran International     29820
4634                        McCarran International     29820
4635                        McCarran International     29820
4636                     Kansas City International     28140
4637            Eglin AFB Destin Fort Walton Beach     18880
4638                  Chicago Midway International     16980
4639              Phoenix Sky Harbor International     38060
4640                          Valley International     15180
4641              Phoenix Sky Harbor International     38060
4642               Southwest Florida International     15980
4643                       San Diego International     41740
4644                     San Antonio International     41700
4645                     San Antonio International     41700
4646              Sarasota/Bradenton International     35840
4647              Sarasota/Bradenton International     35840
4648                     San Antonio International     41700
4649               Dallas/Fort Worth International     19100
4650                   North Central West Virginia     17220
4651  Waynesville-St. Robert Regional Forney Field     22780
4652               Washington Dulles International     47900
4653              Sarasota/Bradenton International     35840
4654                        Key West International     28580
4655                           Tampa International     45300
4656               Dallas/Fort Worth International     19100
4657                                  Jackson Hole     27220
4658      Hartsfield-Jackson Atlanta International     12060
4659                  Chicago O'Hare International     16980
4660                             Friedman Memorial     25200
4661                 Daniel K Inouye International     46520
4662               Washington Dulles International     47900
4663          George Bush Intercontinental/Houston     26420
4664          George Bush Intercontinental/Houston     26420
4665                  Seattle/Tacoma International     42660
4666                              Henry E. Rohlsen      <NA>
4667                               University Park     44300
4668                             Valdosta Regional     46660
4669                      Alexandria International     10780
4670               Dallas/Fort Worth International     19100
4671                  Salt Lake City International     41620
4672                               William P Hobby     26420
4673                  Chicago O'Hare International     16980
4674                          Denver International     19740
4675      Hartsfield-Jackson Atlanta International     12060
4676      Hartsfield-Jackson Atlanta International     12060
4677                    Detroit Metro Wayne County     19820
4678               Charlotte Douglas International     16740
4679               Dallas/Fort Worth International     19100
4680               Southwest Florida International     15980
4681               Dallas/Fort Worth International     19100
4682               Dallas/Fort Worth International     19100
4683                  Chicago O'Hare International     16980
4684             Ronald Reagan Washington National     47900
4685                          Denver International     19740
4686          George Bush Intercontinental/Houston     26420
4687                  Newark Liberty International     35620
4688                        McCarran International     29820
4689               Dallas/Fort Worth International     19100
4690             Ronald Reagan Washington National     47900
4691                        Key West International     28580
4692                  Newark Liberty International     35620
4693         Kona International Airport at Keahole     25900
4694             John Glenn Columbus International     18140
4695                          Juneau International     27940
4696                         Orlando International     36740
4697                 Buffalo Niagara International     15380
4698                        Provincetown Municipal     12700
4699                     Martha's Vineyard Airport     47240
4700                       Durango La Plata County     20420
4701                           Cedar City Regional     16260
4702              Austin - Bergstrom International     12420
4703                    Myrtle Beach International     34820
4704               Southwest Florida International     15980
4705               Charlotte Douglas International     16740
4706               Charlotte Douglas International     16740
4707             Ronald Reagan Washington National     47900
4708             Ronald Reagan Washington National     47900
4709                          Denver International     19740
4710          George Bush Intercontinental/Houston     26420
4711              Phoenix Sky Harbor International     38060
4712                          Devils Lake Regional      <NA>
4713         Kona International Airport at Keahole     25900
4714          John Murtha Johnstown-Cambria County     27780
4715                            Jamestown Regional     27420
4716        San Luis Valley Regional/Bergman Field      <NA>
4717                          Albany International     10580
4718                 Buffalo Niagara International     15380
4719                    Palm Springs International     40140
4720                               William P Hobby     26420
4721                               William P Hobby     26420
4722                      Des Moines International     19780
4723                         Orlando International     36740
4724                         Orlando International     36740
4725            Metropolitan Oakland International     41860
4726                             Will Rogers World     36420
4727                St Louis Lambert International     41180
4728                           Tampa International     45300
4729                           Tampa International     45300
4730               Dallas/Fort Worth International     19100
4731                        Key West International     28580
4732                                    Blue Grass     30460
4733                    Philadelphia International     37980
4734                          Denver International     19740
4735          George Bush Intercontinental/Houston     26420
4736          George Bush Intercontinental/Houston     26420
4737                        Key West International     28580
4738                         Orlando International     36740
4739      Hartsfield-Jackson Atlanta International     12060
4740                    Detroit Metro Wayne County     19820
4741               Charlotte Douglas International     16740
4742               Dallas/Fort Worth International     19100
4743           Ted Stevens Anchorage International     11260
4744             Ronald Reagan Washington National     47900
4745                          Juneau International     27940
4746                          Juneau International     27940
4747                          Knox County Regional      <NA>
4748                 John F. Kennedy International     35620
4749               Southwest Florida International     15980
4750                   Northwest Arkansas Regional     22220
4751                           Tampa International     45300
4752                    Philadelphia International     37980
4753        General Downing - Peoria International     37900
4754                               Sheridan County     43260
4755                          Denver International     19740
4756                          Denver International     19740
4757               Dallas/Fort Worth International     19100
4758                    Detroit Metro Wayne County     19820
4759                    Detroit Metro Wayne County     19820
4760          George Bush Intercontinental/Houston     26420
4761                             Central Wisconsin     48140
4762             Minneapolis-St Paul International     33460
4763             Minneapolis-St Paul International     33460
4764       Dickinson - Theodore Roosevelt Regional     19860
4765              Phoenix Sky Harbor International     38060
4766                          Tucson International     46060
4767                  Seattle/Tacoma International     42660
4768                    Shenandoah Valley Regional     44420
4769                     Plattsburgh International     38460
4770                             Riverton Regional     40180
4771                         El Paso International     21340
4772                               William P Hobby     26420
4773                               William P Hobby     26420
4774                               William P Hobby     26420
4775                        McCarran International     29820
4776                     Kansas City International     28140
4777                               Kahului Airport     27980
4778       Norman Y. Mineta San Jose International     41940
4779                St Louis Lambert International     41180
4780                           Tulsa International     46140
4781          George Bush Intercontinental/Houston     26420
4782              Phoenix Sky Harbor International     38060
4783                                  Jackson Hole     27220
4784                                     LaGuardia     35620
4785                  Chicago O'Hare International     16980
4786          George Bush Intercontinental/Houston     26420
4787          George Bush Intercontinental/Houston     26420
4788               Charlotte Douglas International     16740
4789                    Detroit Metro Wayne County     19820
4790                  Chicago O'Hare International     16980
4791               Dallas/Fort Worth International     19100
4792                           Miami International     33100
4793                     Los Angeles International     31080
4794      Hartsfield-Jackson Atlanta International     12060
4795             Ronald Reagan Washington National     47900
4796               Dallas/Fort Worth International     19100
4797                   Northwest Arkansas Regional     22220
4798          George Bush Intercontinental/Houston     26420
4799                     Kansas City International     28140
4800             Minneapolis-St Paul International     33460
4801                  Salt Lake City International     41620
4802                   Northwest Arkansas Regional     22220
4803                              Snohomish County     42660
4804                          Tucson International     46060
4805             Bozeman Yellowstone International     14580
4806                             Dallas Love Field     19100
4807       Northwest Florida Beaches International     37460
4808                         Orlando International     36740
4809                     San Antonio International     41700
4810                      Sacramento International     40900
4811                           Tulsa International     46140
4812                  Chicago O'Hare International     16980
4813               Charlotte Douglas International     16740
4814      Hartsfield-Jackson Atlanta International     12060
4815      Hartsfield-Jackson Atlanta International     12060
4816      Hartsfield-Jackson Atlanta International     12060
4817                    Detroit Metro Wayne County     19820
4818                    Detroit Metro Wayne County     19820
4819                                     LaGuardia     35620
4820                General Mitchell International     33340
4821             Minneapolis-St Paul International     33460
4822                   Northwest Arkansas Regional     22220
4823                                  Cyril E King      <NA>
4824      California Redwood Coast Humboldt County     21700
4825                             Montrose Regional     33940
4826                                   Adams Field     30780
4827                        Appleton International     11540
4828                         Wichita Mid-Continent     48620
4829       Fort Lauderdale-Hollywood International     33100
4830                 John F. Kennedy International     35620
4831                      Palm Beach International     33100
4832               Southwest Florida International     15980
4833      Hartsfield-Jackson Atlanta International     12060
4834             Minneapolis-St Paul International     33460
4835                      Des Moines International     19780
4836               Cleveland-Hopkins International     17460
4837             Ronald Reagan Washington National     47900
4838               Dallas/Fort Worth International     19100
4839                  Chicago O'Hare International     16980
4840               Charlotte Douglas International     16740
4841                           Montgomery Regional     33860
4842      California Redwood Coast Humboldt County     21700
4843                            Monterey Peninsula     41500
4844                          Denver International     19740
4845                    Detroit Metro Wayne County     19820
4846             Minneapolis-St Paul International     33460
4847             Minneapolis-St Paul International     33460
4848             Minneapolis-St Paul International     33460
4849             Minneapolis-St Paul International     33460
4850              Phoenix Sky Harbor International     38060
4851                   San Francisco International     41860
4852                   San Francisco International     41860
4853                               Pierre Regional     38180
4854                  Chicago O'Hare International     16980
4855              Dane County Regional-Truax Field     31540
4856                                   Adams Field     30780
4857                                      Bob Hope     31080
4858                      Palm Beach International     33100
4859                    Palm Springs International     40140
4860          Greenville-Spartanburg International     43900
4861                             Montrose Regional     33940
4862                        McCarran International     29820
4863                     Los Angeles International     31080
4864                             Will Rogers World     36420
4865                  Theodore Francis Green State     39300
4866               Charlotte Douglas International     16740
4867            City of Colorado Springs Municipal     17820
4868                       San Diego International     41740
4869    Cincinnati/Northern Kentucky International     17140
4870                          Tucson International     46060
4871               Dallas/Fort Worth International     19100
4872             Ronald Reagan Washington National     47900
4873                  Chicago O'Hare International     16980
4874                  Chicago O'Hare International     16980
4875                          Valley International     15180
4876                           Logan International     14460
4877               Charlotte Douglas International     16740
4878                      Fort Wayne International     23060
4879                    Philadelphia International     37980
4880                    Philadelphia International     37980
4881                    Philadelphia International     37980
4882          George Bush Intercontinental/Houston     26420
4883      Hartsfield-Jackson Atlanta International     12060
4884      Hartsfield-Jackson Atlanta International     12060
4885                  Charleston AFB/International     16700
4886                    Detroit Metro Wayne County     19820
4887                    Detroit Metro Wayne County     19820
4888                    Detroit Metro Wayne County     19820
4889                    Detroit Metro Wayne County     19820
4890                    Detroit Metro Wayne County     19820
4891                    Detroit Metro Wayne County     19820
4892             Minneapolis-St Paul International     33460
4893             Minneapolis-St Paul International     33460
4894                                  McGhee Tyson     28940
4895                                  Cyril E King      <NA>
4896                Roanoke Regional/Woodrum Field     40220
4897                 Texarkana Regional-Webb Field     45500
4898         Kona International Airport at Keahole     25900
4899                           Logan International     14460
4900                 John F. Kennedy International     35620
4901                  Newark Liberty International     35620
4902                 John F. Kennedy International     35620
4903                                     LaGuardia     35620
4904                         Orlando International     36740
4905      Hartsfield-Jackson Atlanta International     12060
4906      Hartsfield-Jackson Atlanta International     12060
4907      Hartsfield-Jackson Atlanta International     12060
4908             Minneapolis-St Paul International     33460
4909                      Ithaca Tompkins Regional     27060
4910              James M Cox/Dayton International     19430
4911                              Bemidji Regional     13420
4912              Sarasota/Bradenton International     35840
4913                  Newark Liberty International     35620
4914                           East Texas Regional     30980
4915               Dallas/Fort Worth International     19100
4916                  Chicago O'Hare International     16980
4917                  Chicago O'Hare International     16980
4918                          Denver International     19740
4919                    Detroit Metro Wayne County     19820
4920                         Eagle County Regional     20780
4921          George Bush Intercontinental/Houston     26420
4922                         Eagle County Regional     20780
4923                     Los Angeles International     31080
4924                     Los Angeles International     31080
4925                     Southwest Oregon Regional     18300
4926             Minneapolis-St Paul International     33460
4927                        Portland International     38900
4928                       San Diego International     41740
4929                  Salt Lake City International     41620
4930                               Kahului Airport     27980
4931                  Springfield-Branson National     44180
4932             Bozeman Yellowstone International     14580
4933               Washington Dulles International     47900
4934                            Hilo International     25900
4935                         Lake Charles Regional     29340
4936                           Rapid City Regional     39660
4937                             Dallas Love Field     19100
4938                         El Paso International     21340
4939                 Daniel K Inouye International     46520
4940                               William P Hobby     26420
4941            Eglin AFB Destin Fort Walton Beach     18880
4942                         El Paso International     21340
4943                          Tucson International     46060
4944            Metropolitan Oakland International     41860
4945                           Tulsa International     46140
4946                Luis Munoz Marin International     41980
4947                                   Adams Field     30780
4948                         Columbia Metropolitan     17900
4949                        Key West International     28580
4950               Washington Dulles International     47900
4951                Luis Munoz Marin International     41980
4952                  Newark Liberty International     35620
4953                                    Tri Cities     28420
4954             Charles M. Schulz - Sonoma County     42220
4955             Ronald Reagan Washington National     47900
4956                    Manchester-Boston Regional     31700
4957               Charlotte Douglas International     16740
4958                                  Jackson Hole     27220
4959                          Denver International     19740
4960                  Salt Lake City International     41620
4961                   San Francisco International     41860
4962                St Louis Lambert International     41180
4963                          Denver International     19740
4964           Ted Stevens Anchorage International     11260
4965                                 Mile 13 Field      <NA>
4966                    Petersburg James A Johnson      <NA>
4967                         Orlando International     36740
4968                Portland International Jetport     38860
4969                  Newark Liberty International     35620
4970                           Miami International     33100
4971          George Bush Intercontinental/Houston     26420
4972                  Seattle/Tacoma International     42660
4973                         El Paso International     21340
4974               Cleveland-Hopkins International     17460
4975                             Dallas Love Field     19100
4976                                        Yeager     16620
4977                      Fort Wayne International     23060
4978               Charlotte Douglas International     16740
4979                              Wrangell Airport      <NA>
4980                                 Lihue Airport     28180
4981                      Reno/Tahoe International     39900
4982                               William P Hobby     26420
4983                         Ontario International     40140
4984     Louis Armstrong New Orleans International     35380
4985                           Logan International     14460
4986               Charlotte Douglas International     16740
4987                University of Illinois/Willard     16580
4988                         Orlando International     36740
4989               Charlotte Douglas International     16740
4990               Charlotte Douglas International     16740
4991                    Glacier Park International     28060
4992                          Denver International     19740
4993                  Salt Lake City International     41620
4994                            Dillingham Airport      <NA>
4995              Phoenix Sky Harbor International     38060
4996                  Chicago O'Hare International     16980
4997                       Nashville International     34980
4998                  Chicago Midway International     16980
4999                  Chicago Midway International     16980
5000                       San Diego International     41740
5001               Washington Dulles International     47900
5002               Washington Dulles International     47900
5003          George Bush Intercontinental/Houston     26420
5004                 Pensacola Gulf Coast Regional     37860
5005      Hartsfield-Jackson Atlanta International     12060
5006                             Flagstaff Pulliam     22380
5007                        Key West International     28580
5008                    Detroit Metro Wayne County     19820
5009      Hartsfield-Jackson Atlanta International     12060
5010                    Detroit Metro Wayne County     19820
5011                    Detroit Metro Wayne County     19820
5012             Minneapolis-St Paul International     33460
5013               Dallas/Fort Worth International     19100
5014                    Philadelphia International     37980
5015                    Philadelphia International     37980
5016                            Westchester County     35620
5017                  Salt Lake City International     41620
5018             Ronald Reagan Washington National     47900
5019                    Philadelphia International     37980
5020                    Philadelphia International     37980
5021               Dallas/Fort Worth International     19100
5022               Charlotte Douglas International     16740
5023           Ted Stevens Anchorage International     11260
5024           Ted Stevens Anchorage International     11260
5025      Hartsfield-Jackson Atlanta International     12060
5026               Charlotte Douglas International     16740
5027               Charlotte Douglas International     16740
5028                     Los Angeles International     31080
5029                  Chicago O'Hare International     16980
5030              Phoenix Sky Harbor International     38060
5031                   San Francisco International     41860
5032                  Salt Lake City International     41620
5033           Ted Stevens Anchorage International     11260
5034                             Deadhorse Airport      <NA>
5035             Minneapolis-St Paul International     33460
5036                    Detroit Metro Wayne County     19820
5037                              Henry E. Rohlsen      <NA>
5038                           Logan International     14460
5039             Ronald Reagan Washington National     47900
5040                          Denver International     19740
5041                          Denver International     19740
5042              John Wayne Airport-Orange County     31080
5043                  Chicago O'Hare International     16980
5044                 Daniel K Inouye International     46520
5045                         Orlando International     36740
5046     Louis Armstrong New Orleans International     35380
5047                    Philadelphia International     37980
5048                 Pensacola Gulf Coast Regional     37860
5049           Ted Stevens Anchorage International     11260
5050                    Petersburg James A Johnson      <NA>
5051      Hartsfield-Jackson Atlanta International     12060
5052                          Albany International     10580
5053                              The Eastern Iowa     16300
5054               Charlotte Douglas International     16740
5055                          Denver International     19740
5056                      Des Moines International     19780
5057                          Hector International     22020
5058       Green Bay Austin Straubel International     24580
5059                          Valley International     15180
5060                        McCarran International     29820
5061                        McCarran International     29820
5062                                   Adams Field     30780
5063                         Orlando International     36740
5064                         Orlando International     36740
5065                         Orlando International     36740
5066                         Orlando International     36740
5067                         Orlando International     36740
5068                Portland International Jetport     38860
5069               Greater Rochester International     40380
5070                Syracuse Hancock International     45060
5071                                Trenton Mercer     45940
5072                   Northwest Arkansas Regional     22220
5073                   Northwest Arkansas Regional     22220
5074       Fort Lauderdale-Hollywood International     33100
5075               Southwest Florida International     15980
5076                                      Bob Hope     31080
5077                                      Bob Hope     31080
5078                             Redding Municipal     39820
5079                                  Jackson Hole     27220
5080    Central Il Regional Airport at Bloomington     14010
5081               Charlotte Douglas International     16740
5082               Charlotte Douglas International     16740
5083             Ronald Reagan Washington National     47900
5084               Aspen Pitkin County Sardy Field     24060
5085                          Denver International     19740
5086               Dallas/Fort Worth International     19100
5087              Phoenix Sky Harbor International     38060
5088                   San Francisco International     41860
5089                  Seattle/Tacoma International     42660
5090          George Bush Intercontinental/Houston     26420
5091                        Key West International     28580
5092              Austin - Bergstrom International     12420
5093                             Dallas Love Field     19100
5094             Ronald Reagan Washington National     47900
5095         Kona International Airport at Keahole     25900
5096                               William P Hobby     26420
5097                  Raleigh-Durham International     39580
5098                  Raleigh-Durham International     39580
5099                     San Antonio International     41700
5100                     San Antonio International     41700
5101                                Toledo Express     45780
5102                                  Cyril E King      <NA>
5103               Dallas/Fort Worth International     19100
5104                           Miami International     33100
5105                  Chicago O'Hare International     16980
5106                                  Yampa Valley     44460
5107                        Missoula International     33540
5108                             Greenbrier Valley      <NA>
5109             Bozeman Yellowstone International     14580
5110            City of Colorado Springs Municipal     17820
5111    Cincinnati/Northern Kentucky International     17140
5112                             Dallas Love Field     19100
5113                         Orlando International     36740
5114                  Chicago O'Hare International     16980
5115               Dallas/Fort Worth International     19100
5116                  Gerald R. Ford International     24340
5117             Minneapolis-St Paul International     33460
5118                           Logan International     14460
5119                 Quincy Regional-Baldwin Field     39500
5120                          Denver International     19740
5121                                  Jackson Hole     27220
5122                     Los Angeles International     31080
5123                   San Francisco International     41860
5124                   San Francisco International     41860
5125                      Wilmington International     48900
5126      Midland International Air and Space Port     33260
5127                  Chicago Midway International     16980
5128                            St. Cloud Regional     33460
5129             Minneapolis-St Paul International     33460
5130              Phoenix Sky Harbor International     38060
5131                    Presque Isle International      <NA>
5132              Austin - Bergstrom International     12420
5133              Phoenix Sky Harbor International     38060
5134                            Boise Air Terminal     14260
5135           Ted Stevens Anchorage International     11260
5136   Barnstable Municipal-Boardman/Polando Field     12700
5137                    Palm Springs International     40140
5138                                  Yampa Valley     44460
5139            Eglin AFB Destin Fort Walton Beach     18880
5140                     Los Angeles International     31080
5141                  Salt Lake City International     41620
5142              Austin - Bergstrom International     12420
5143                    Palm Springs International     40140
5144                               William P Hobby     26420
5145      Jackson Medgar Wiley Evers International     27140
5146      Jackson Medgar Wiley Evers International     27140
5147                    Myrtle Beach International     34820
5148                  Chicago O'Hare International     16980
5149                  Seattle/Tacoma International     42660
5150               Southwest Florida International     15980
5151                 Pensacola Gulf Coast Regional     37860
5152               Charlotte Douglas International     16740
5153       St. Petersburg-Clearwater International     45300
5154      Hartsfield-Jackson Atlanta International     12060
5155       Fort Lauderdale-Hollywood International     33100
5156               Charlotte Douglas International     16740
5157             Minneapolis-St Paul International     33460
5158                              Wrangell Airport      <NA>
5159                                      Bob Hope     31080
5160                  Newark Liberty International     35620
5161               Dallas/Fort Worth International     19100
5162              Phoenix Sky Harbor International     38060
5163                           Logan International     14460
5164                           Miami International     33100
5165               Charlotte Douglas International     16740
5166                             Montrose Regional     33940
5167                                  Yampa Valley     44460
5168                             Dallas Love Field     19100
5169                        McCarran International     29820
5170                         Ontario International     40140
5171               Charlotte Douglas International     16740
5172                    Myrtle Beach International     34820
5173                  Chicago O'Hare International     16980
5174                        McCarran International     29820
5175                    Detroit Metro Wayne County     19820
5176                        McCarran International     29820
5177                St Louis Lambert International     41180
5178               Charlotte Douglas International     16740
5179               Washington Dulles International     47900
5180               Charlotte Douglas International     16740
5181               Charlotte Douglas International     16740
5182                  Chicago O'Hare International     16980
5183                                 Lihue Airport     28180
5184                         Orlando International     36740
5185                    Detroit Metro Wayne County     19820
5186                               Kahului Airport     27980
5187                  Seattle/Tacoma International     42660
5188                    Myrtle Beach International     34820
5189                               Kahului Airport     27980
5190                                  Yampa Valley     44460
5191                     Los Angeles International     31080
5192                                   Adams Field     30780
5193      Hartsfield-Jackson Atlanta International     12060
5194                                  Delta County     21540
5195              Austin - Bergstrom International     12420
5196                        Key West International     28580
5197      Hartsfield-Jackson Atlanta International     12060
5198                  Chicago O'Hare International     16980
5199               Washington Dulles International     47900
5200      Hartsfield-Jackson Atlanta International     12060
5201               Cleveland-Hopkins International     17460
5202               Charlotte Douglas International     16740
5203                St Louis Lambert International     41180
5204                   San Francisco International     41860
5205                          Denver International     19740
5206                        Portland International     38900
5207               Charlotte Douglas International     16740
5208                  Salt Lake City International     41620
5209             Bozeman Yellowstone International     14580
5210             Minneapolis-St Paul International     33460
5211                          Denver International     19740
5212                    Detroit Metro Wayne County     19820
5213                             Dallas Love Field     19100
5214                 Daniel K Inouye International     46520
5215                    Philadelphia International     37980
5216                         Orlando International     36740
5217                    Detroit Metro Wayne County     19820
5218                             Dallas Love Field     19100
5219                     Kansas City International     28140
5220                St Louis Lambert International     41180
5221     Louis Armstrong New Orleans International     35380
5222                Luis Munoz Marin International     41980
5223                  Seattle/Tacoma International     42660
5224                               William P Hobby     26420
5225                          Denver International     19740
5226             Bozeman Yellowstone International     14580
5227                General Mitchell International     33340
5228                  Chicago O'Hare International     16980
5229             Minneapolis-St Paul International     33460
5230               Charlotte Douglas International     16740
5231                        McCarran International     29820
5232             Minneapolis-St Paul International     33460
5233                      Palm Beach International     33100
5234                        McCarran International     29820
5235           Baton Rouge Metropolitan/Ryan Field     12940
5236                                      Bob Hope     31080
5237               Charlotte Douglas International     16740
5238               Washington Dulles International     47900
5239               Cleveland-Hopkins International     17460
5240                    Philadelphia International     37980
5241                        McCarran International     29820
5242                             Montrose Regional     33940
5243             Bozeman Yellowstone International     14580
5244                             Montrose Regional     33940
5245              Phoenix Sky Harbor International     38060
5246                            Nantucket Memorial      <NA>
5247                  Newark Liberty International     35620
5248                       Nashville International     34980
5249          George Bush Intercontinental/Houston     26420
5250                    Palm Springs International     40140
5251                         Eagle County Regional     20780
5252                  Chicago O'Hare International     16980
5253                   San Francisco International     41860
5254                     Kansas City International     28140
5255                  Chicago O'Hare International     16980
5256               Washington Dulles International     47900
5257               Dallas/Fort Worth International     19100
5258                               William P Hobby     26420
5259               Dallas/Fort Worth International     19100
5260                      Sacramento International     40900
5261                          Denver International     19740
5262                Luis Munoz Marin International     41980
5263                            Hilo International     25900
5264                              Wrangell Airport      <NA>
5265                               William P Hobby     26420
5266               Dallas/Fort Worth International     19100
5267                    Jacksonville International     27260
5268                    Palm Springs International     40140
5269                    Myrtle Beach International     34820
5270                   San Francisco International     41860
5271                             Will Rogers World     36420
5272             John Glenn Columbus International     18140
5273                             Dallas Love Field     19100
5274                             Dallas Love Field     19100
5275                           Miami International     33100
5276                               William P Hobby     26420
5277                         Ontario International     40140
5278                  Chicago O'Hare International     16980
5279               Charlotte Douglas International     16740
5280                                     LaGuardia     35620
5281                               Kahului Airport     27980
5282                St Louis Lambert International     41180
5283                              Wrangell Airport      <NA>
5284                     San Antonio International     41700
5285                  Chicago O'Hare International     16980
5286                         Eagle County Regional     20780
5287                  Salt Lake City International     41620
5288                  Chicago O'Hare International     16980
5289              Austin - Bergstrom International     12420
5290                     Los Angeles International     31080
5291               Washington Dulles International     47900
5292          George Bush Intercontinental/Houston     26420
5293               Washington Dulles International     47900
5294               Washington Dulles International     47900
5295                          Denver International     19740
5296                       Santa Barbara Municipal     42200
5297             Minneapolis-St Paul International     33460
5298               Charlotte Douglas International     16740
5299                  Chicago Midway International     16980
5300               Gunnison-Crested Butte Regional      <NA>
5301                   North Central West Virginia     17220
5302               Gunnison-Crested Butte Regional      <NA>
5303             John Glenn Columbus International     18140
5304   Huntsville International-Carl T Jones Field     26620
5305                                          Adak      <NA>
5306            Savannah/Hilton Head International     42340
5307                      Burlington International     15540
5308                         Columbia Metropolitan     17900
5309               Aspen Pitkin County Sardy Field     24060
5310                         Eagle County Regional     20780
5311                                Cherry Capital     45900
5312               Aspen Pitkin County Sardy Field     24060
5313             Bozeman Yellowstone International     14580
5314                                  Jackson Hole     27220
5315                               Yakutat Airport      <NA>
5316                  Billings Logan International     13740
5317                             Friedman Memorial     25200
5318                                  Yampa Valley     44460
5319                           Falls International      <NA>
5320                        Key West International     28580
5321                 Chippewa County International     42300
5322                           Rapid City Regional     39660
5323                           Hilton Head Airport     25940
5324                           Rapid City Regional     39660
5325                                          Ford     27020
5326                    Glacier Park International     28060
5327                           Tampa International     45300
5328                                  Jackson Hole     27220
5329                                  Yampa Valley     44460
5330                      Burlington International     15540
5331                    Glacier Park International     28060
5332                       Eastern Sierra Regional      <NA>
5333                               Pueblo Memorial     39380
5334       Green Bay Austin Straubel International     24580
5335               Aspen Pitkin County Sardy Field     24060
5336                          Albany International     10580
5337                Luis Munoz Marin International     41980
5338                Luis Munoz Marin International     41980
5339                      Bellingham International     13380
5340                 Pensacola Gulf Coast Regional     37860
5341                         Ontario International     40140
5342                    Detroit Metro Wayne County     19820
5343                         El Paso International     21340
5344                         Norfolk International     47260
5345                          Tucson International     46060
5346                  Charleston AFB/International     16700
5347                    Myrtle Beach International     34820
5348                                  Yampa Valley     44460
5349              John Wayne Airport-Orange County     31080
5350                         Ontario International     40140
5351                      Des Moines International     19780
5352                      Reno/Tahoe International     39900
5353       Northwest Florida Beaches International     37460
5354                         Spokane International     44060
5355       Northwest Florida Beaches International     37460
5356           Rick Husband Amarillo International     11100
5357                           Logan International     14460
5358                            Boise Air Terminal     14260
5359                Luis Munoz Marin International     41980
5360                      Reno/Tahoe International     39900
5361       Northwest Florida Beaches International     37460
5362                    Manchester-Boston Regional     31700
5363            Eglin AFB Destin Fort Walton Beach     18880
5364             Albuquerque International Sunport     10740
5365             Minneapolis-St Paul International     33460
5366                         Long Island MacArthur     35620
5367                  Theodore Francis Green State     39300
5368               Cleveland-Hopkins International     17460
5369    Cincinnati/Northern Kentucky International     17140
5370                          Valley International     15180
5371                             Will Rogers World     36420
5372                      Reno/Tahoe International     39900
5373             Albuquerque International Sunport     10740
5374                           Logan International     14460
5375                        Richmond International     40060
5376                        Richmond International     40060
5377                  Theodore Francis Green State     39300
5378               Southwest Florida International     15980
5379               Charlotte Douglas International     16740
5380                           Tulsa International     46140
5381             Albuquerque International Sunport     10740
5382       Fort Lauderdale-Hollywood International     33100
5383                  Theodore Francis Green State     39300
5384                            Boise Air Terminal     14260
5385        Birmingham-Shuttlesworth International     13820
5386                           Tulsa International     46140
5387          Greenville-Spartanburg International     43900
5388             Bozeman Yellowstone International     14580
5389               Southwest Florida International     15980
5390              Sarasota/Bradenton International     35840
5391                  Raleigh-Durham International     39580
5392                         Ontario International     40140
5393                        Richmond International     40060
5394                    Jacksonville International     27260
5395                       Melbourne International     37340
5396                           Tampa International     45300
5397                               Joplin Regional     27900
5398                    Myrtle Beach International     34820
5399                 Pensacola Gulf Coast Regional     37860
5400                   Lehigh Valley International     10900
5401                       Santa Barbara Municipal     42200
5402                  Theodore Francis Green State     39300
5403                            Asheville Regional     11700
5404           Lubbock Preston Smith International     31180
5405                            Mahlon Sweet Field     21660
5406                  Charleston AFB/International     16700
5407                  Theodore Francis Green State     39300
5408                   Daytona Beach International     19660
5409                Roanoke Regional/Woodrum Field     40220
5410                            Nantucket Memorial      <NA>
5411             John Glenn Columbus International     18140
5412             Albuquerque International Sunport     10740
5413                         Akron-Canton Regional     10420
5414                         El Paso International     21340
5415                     Martha's Vineyard Airport     47240
5416       Northwest Florida Beaches International     37460
5417      Midland International Air and Space Port     33260
5418                             Lebanon Municipal     30100
5419                Syracuse Hancock International     45060
5420                         Norfolk International     47260
5421                          Valley International     15180
5422      Hartsfield-Jackson Atlanta International     12060
5423                    McCook Ben Nelson Regional      <NA>
5424                    Indianapolis International     26900
5425                          Valley International     15180
5426                         Eagle County Regional     20780
5427                    Detroit Metro Wayne County     19820
5428             John Glenn Columbus International     18140
5429                           Kirksville Regional     28860
5430                                 Mile 13 Field      <NA>
5431     Louis Armstrong New Orleans International     35380
5432             Minneapolis-St Paul International     33460
5433      Hartsfield-Jackson Atlanta International     12060
5434                    Detroit Metro Wayne County     19820
5435                          Denver International     19740
5436                  Chicago O'Hare International     16980
5437               Dallas/Fort Worth International     19100
5438          George Bush Intercontinental/Houston     26420
5439                                 Mile 13 Field      <NA>
5440              Dane County Regional-Truax Field     31540
5441                       Ketchikan International     28540
5442                   Daytona Beach International     19660
5443                General Mitchell International     33340
5444               Charlotte Douglas International     16740
5445                              Cortez Municipal      <NA>
5446                          Denver International     19740
5447                        Portland International     38900
5448   Huntsville International-Carl T Jones Field     26620
5449                            Mahlon Sweet Field     21660
5450                           Fort Dodge Regional     22700
5451                  Salt Lake City International     41620
5452      Hartsfield-Jackson Atlanta International     12060
5453               Charlotte Douglas International     16740
5454                  Chicago O'Hare International     16980
5455                          Denver International     19740
5456             Minneapolis-St Paul International     33460
5457      Hartsfield-Jackson Atlanta International     12060
5458                  Chicago O'Hare International     16980
5459               Charlotte Douglas International     16740
5460      Hartsfield-Jackson Atlanta International     12060
5461                  Chicago O'Hare International     16980
5462                  Chicago O'Hare International     16980
5463      Hartsfield-Jackson Atlanta International     12060
5464                     San Antonio International     41700
5465                    Detroit Metro Wayne County     19820
5466                    Detroit Metro Wayne County     19820
5467               Washington Dulles International     47900
5468                  Seattle/Tacoma International     42660
5469               Charlotte Douglas International     16740
5470               Dallas/Fort Worth International     19100
5471                                   Agana Field      <NA>
5472                  Chicago O'Hare International     16980
5473                  Chicago O'Hare International     16980
5474                          Denver International     19740
5475                          Denver International     19740
5476                    Philadelphia International     37980
5477      Hartsfield-Jackson Atlanta International     12060
5478          George Bush Intercontinental/Houston     26420
5479                  Seattle/Tacoma International     42660
5480                          Denver International     19740
5481                    Detroit Metro Wayne County     19820
5482                    Petersburg James A Johnson      <NA>
5483               Charlotte Douglas International     16740
5484                    Philadelphia International     37980
5485             Minneapolis-St Paul International     33460
5486             Minneapolis-St Paul International     33460
5487                    Detroit Metro Wayne County     19820
5488          George Bush Intercontinental/Houston     26420
5489                          Denver International     19740
5490          George Bush Intercontinental/Houston     26420
5491                  Salt Lake City International     41620
5492                          Denver International     19740
5493             Minneapolis-St Paul International     33460
5494                          Denver International     19740
5495               Charlotte Douglas International     16740
5496                    Detroit Metro Wayne County     19820
5497                          Denver International     19740
5498          George Bush Intercontinental/Houston     26420
5499              Phoenix Sky Harbor International     38060
5500                          Denver International     19740
5501               Dallas/Fort Worth International     19100
5502                   San Francisco International     41860
5503                     Los Angeles International     31080
5504                        Portland International     38900
5505          George Bush Intercontinental/Houston     26420
5506                  Seattle/Tacoma International     42660
5507                  Chicago O'Hare International     16980
5508               Dallas/Fort Worth International     19100
5509                  Chicago O'Hare International     16980
5510                  Chicago O'Hare International     16980
5511          George Bush Intercontinental/Houston     26420
5512                          Denver International     19740
5513               Washington Dulles International     47900
5514                          Denver International     19740
5515                          Denver International     19740
5516           Ted Stevens Anchorage International     11260
5517                    Detroit Metro Wayne County     19820
5518               Dallas/Fort Worth International     19100
5519                  Salt Lake City International     41620
5520               Washington Dulles International     47900
5521                          Denver International     19740
5522      Hartsfield-Jackson Atlanta International     12060
5523                               Kahului Airport     27980
5524             Minneapolis-St Paul International     33460
5525               Dallas/Fort Worth International     19100
5526                    Detroit Metro Wayne County     19820
5527                          Denver International     19740
5528                    Detroit Metro Wayne County     19820
5529                  Seattle/Tacoma International     42660
5530               Dallas/Fort Worth International     19100
5531                          Denver International     19740
5532                  Salt Lake City International     41620
5533                           Ralph Wien Memorial      <NA>
5534             Minneapolis-St Paul International     33460
5535                         Spokane International     44060
5536                  Corpus Christi International     18580
5537                                    Blue Grass     30460
5538              Austin - Bergstrom International     12420
5539                           Miami International     33100
5540                  Seattle/Tacoma International     42660
5541             Minneapolis-St Paul International     33460
5542                           Fort Dodge Regional     22700
5543     Louis Armstrong New Orleans International     35380
5544             Albuquerque International Sunport     10740
5545             Albuquerque International Sunport     10740
5546                          Albany International     10580
5547                          Albany International     10580
5548           Rick Husband Amarillo International     11100
5549                         Bradley International     25540
5550                            Boise Air Terminal     14260
5551                 Buffalo Niagara International     15380
5552                 Buffalo Niagara International     15380
5553                 Buffalo Niagara International     15380
5554            Baltimore/Washington International     12580
5555            Baltimore/Washington International     12580
5556             John Glenn Columbus International     18140
5557                         El Paso International     21340
5558                         El Paso International     21340
5559                 Fresno Yosemite International     23420
5560               Washington Dulles International     47900
5561                    Indianapolis International     26900
5562                         Long Island MacArthur     35620
5563           Lubbock Preston Smith International     31180
5564           Lubbock Preston Smith International     31180
5565           Lubbock Preston Smith International     31180
5566              John Wayne Airport-Orange County     31080
5567                            Long Beach Airport     31080
5568                            Long Beach Airport     31080
5569                                   Adams Field     30780
5570                                   Adams Field     30780
5571      Midland International Air and Space Port     33260
5572      Midland International Air and Space Port     33260
5573      Midland International Air and Space Port     33260
5574                     Kansas City International     28140
5575                         Memphis International     32820
5576                         Memphis International     32820
5577                    Manchester-Boston Regional     31700
5578                           Miami International     33100
5579     Louis Armstrong New Orleans International     35380
5580            Metropolitan Oakland International     41860
5581                             Will Rogers World     36420
5582                             Will Rogers World     36420
5583                               Eppley Airfield     36540
5584                               Eppley Airfield     36540
5585                         Norfolk International     47260
5586                 Pensacola Gulf Coast Regional     37860
5587                        Richmond International     40060
5588      Midland International Air and Space Port     33260
5589                        Portland International     38900
5590                      Des Moines International     19780
5591                                     LaGuardia     35620
5592                  Charleston AFB/International     16700
5593                      Burlington International     15540
5594               Cleveland-Hopkins International     17460
5595                      Pittsburgh International     38300
5596                        Portland International     38900
5597           Lubbock Preston Smith International     31180
5598                         Orlando International     36740
5599             Minneapolis-St Paul International     33460
5600                      Owensboro Daviess County     36980
5601                                   Adams Field     30780
5602               Southwest Florida International     15980
5603      Midland International Air and Space Port     33260
5604          Greenville-Spartanburg International     43900
5605               Cleveland-Hopkins International     17460
5606                    Myrtle Beach International     34820
5607                        Missoula International     33540
5608                   San Francisco International     41860
5609                         Bradley International     25540
5610                          Tucson International     46060
5611                            Boise Air Terminal     14260
5612                  Theodore Francis Green State     39300
5613                  Gerald R. Ford International     24340
5614                          Valley International     15180
5615                  Corpus Christi International     18580
5616                          Tucson International     46060
5617           Lubbock Preston Smith International     31180
5618             Bozeman Yellowstone International     14580
5619             Albuquerque International Sunport     10740
5620                          Valley International     15180
5621                           Tampa International     45300
5622            Metropolitan Oakland International     41860
5623                         El Paso International     21340
5624                 Pensacola Gulf Coast Regional     37860
5625              Sarasota/Bradenton International     35840
5626                  Corpus Christi International     18580
5627                  Theodore Francis Green State     39300
5628          Eastern Oregon Regional at Pendleton     25840
5629               Fort Collins-Loveland Municipal     22660
5630                         El Paso International     21340
5631           Ted Stevens Anchorage International     11260
5632                   San Francisco International     41860
5633                Luis Munoz Marin International     41980
5634                               Yakutat Airport      <NA>
5635            Baltimore/Washington International     12580
5636                          Albany International     10580
5637                      Des Moines International     19780
5638                                      Bob Hope     31080
5639       Northwest Florida Beaches International     37460
5640                  Gerald R. Ford International     24340
5641               Greater Rochester International     40380
5642                  Charleston AFB/International     16700
5643                  Chicago O'Hare International     16980
5644                         Bradley International     25540
5645                         El Paso International     21340
5646                                Cherry Capital     45900
5647                                   Adams Field     30780
5648                      Palm Beach International     33100
5649                University of Illinois/Willard     16580
5650                            Asheville Regional     11700
5651                           Tulsa International     46140
5652                             Will Rogers World     36420
5653                     San Antonio International     41700
5654                      Owensboro Daviess County     36980
5655                           Tulsa International     46140
5656                       Eastern Sierra Regional      <NA>
5657             Albuquerque International Sunport     10740
5658                       Eugenio Maria de Hostos     32420
5659             Ronald Reagan Washington National     47900
5660                           Miami International     33100
5661               Charlotte Douglas International     16740
5662                  Seattle/Tacoma International     42660
5663           Ted Stevens Anchorage International     11260
5664                       Ketchikan International     28540
5665                  Salt Lake City International     41620
5666                  Chicago O'Hare International     16980
5667                  Seattle/Tacoma International     42660
5668                  Chicago O'Hare International     16980
5669                          Denver International     19740
5670                          Denver International     19740
5671                  Salt Lake City International     41620
5672                            Long Beach Airport     31080
5673               Dallas/Fort Worth International     19100
5674               Washington Dulles International     47900
5675               Washington Dulles International     47900
5676                  Chicago O'Hare International     16980
5677                  Salt Lake City International     41620
5678              Phoenix Sky Harbor International     38060
5679               Washington Dulles International     47900
5680                       Nashville International     34980
5681                          Denver International     19740
5682                  Chicago O'Hare International     16980
5683                        McCarran International     29820
5684                          Denver International     19740
5685                     Los Angeles International     31080
5686                          Denver International     19740
5687               Dallas/Fort Worth International     19100
5688                  Chicago O'Hare International     16980
5689                             Dallas Love Field     19100
5690                    Philadelphia International     37980
5691             Ronald Reagan Washington National     47900
5692               Dallas/Fort Worth International     19100
5693                  Chicago O'Hare International     16980
5694               Dallas/Fort Worth International     19100
5695                          Denver International     19740
5696                  Chicago O'Hare International     16980
5697                          Denver International     19740
5698                  Chicago O'Hare International     16980
5699                          Denver International     19740
5700             Minneapolis-St Paul International     33460
5701                St Louis Lambert International     41180
5702                    Detroit Metro Wayne County     19820
5703                  Chicago O'Hare International     16980
5704                General Mitchell International     33340
5705               Washington Dulles International     47900
5706             Minneapolis-St Paul International     33460
5707                St Louis Lambert International     41180
5708                  Salt Lake City International     41620
5709                               Kahului Airport     27980
5710                St Louis Lambert International     41180
5711                          Denver International     19740
5712         Kona International Airport at Keahole     25900
5713                       Nashville International     34980
5714                St Louis Lambert International     41180
5715                     Los Angeles International     31080
5716                Luis Munoz Marin International     41980
5717                St Louis Lambert International     41180
5718                  Chicago O'Hare International     16980
5719             Minneapolis-St Paul International     33460
5720                  Chicago O'Hare International     16980
5721               Dallas/Fort Worth International     19100
5722              Austin - Bergstrom International     12420
5723        Birmingham-Shuttlesworth International     13820
5724            Metropolitan Oakland International     41860
5725                  Salt Lake City International     41620
5726                    Philadelphia International     37980
5727                     Kansas City International     28140
5728            Metropolitan Oakland International     41860
5729                           South Bend Regional     43780
5730                     Los Angeles International     31080
5731             John Glenn Columbus International     18140
5732                          Denver International     19740
5733                                     LaGuardia     35620
5734                               Eppley Airfield     36540
5735                       San Diego International     41740
5736                     San Antonio International     41700
5737                     San Antonio International     41700
5738                      Sacramento International     40900
5739               Dallas/Fort Worth International     19100
5740               Dallas/Fort Worth International     19100
5741                          Bishop International     22420
5742                     Kansas City International     28140
5743                     Kansas City International     28140
5744                               Eppley Airfield     36540
5745       Norman Y. Mineta San Jose International     41940
5746       Norman Y. Mineta San Jose International     41940
5747                            Boise Air Terminal     14260
5748     Louis Armstrong New Orleans International     35380
5749                    Myrtle Beach International     34820
5750                         Bradley International     25540
5751                       Nashville International     34980
5752      Jackson Medgar Wiley Evers International     27140
5753                     Kansas City International     28140
5754                     Kansas City International     28140
5755            Metropolitan Oakland International     41860
5756             Albuquerque International Sunport     10740
5757                       Nashville International     34980
5758            Baltimore/Washington International     12580
5759                         Memphis International     32820
5760            Metropolitan Oakland International     41860
5761                               Eppley Airfield     36540
5762                      Sacramento International     40900
5763              Austin - Bergstrom International     12420
5764                            Boise Air Terminal     14260
5765            City of Colorado Springs Municipal     17820
5766                  Salt Lake City International     41620
5767              John Wayne Airport-Orange County     31080
5768                 Buffalo Niagara International     15380
5769            City of Colorado Springs Municipal     17820
5770                             Dallas Love Field     19100
5771                     Kansas City International     28140
5772     Louis Armstrong New Orleans International     35380
5773                    Philadelphia International     37980
5774                     San Antonio International     41700
5775       Norman Y. Mineta San Jose International     41940
5776      Hartsfield-Jackson Atlanta International     12060
5777        Birmingham-Shuttlesworth International     13820
5778            Baltimore/Washington International     12580
5779                    Detroit Metro Wayne County     19820
5780                             Will Rogers World     36420
5781                  Theodore Francis Green State     39300
5782                     San Antonio International     41700
5783                  Seattle/Tacoma International     42660
5784                               William P Hobby     26420
5785                            Long Beach Airport     31080
5786                            Long Beach Airport     31080
5787                     Kansas City International     28140
5788                Portland International Jetport     38860
5789                      Reno/Tahoe International     39900
5790                  Seattle/Tacoma International     42660
5791                           Tulsa International     46140
5792               Charlotte Douglas International     16740
5793                  Seattle/Tacoma International     42660
5794                         Bradley International     25540
5795             Bozeman Yellowstone International     14580
5796                            Long Beach Airport     31080
5797                            Long Beach Airport     31080
5798                            Long Beach Airport     31080
5799                        Portland International     38900
5800                  Chicago O'Hare International     16980
5801                  Charleston AFB/International     16700
5802               Washington Dulles International     47900
5803                 Buffalo Niagara International     15380
5804            City of Colorado Springs Municipal     17820
5805                                   Adams Field     30780
5806                      Sacramento International     40900
5807                             Dallas Love Field     19100
5808                         Spokane International     44060
5809                 Pensacola Gulf Coast Regional     37860
5810                     Los Angeles International     31080
5811                    Jacksonville International     27260
5812               Greater Rochester International     40380
5813              John Wayne Airport-Orange County     31080
5814                St Louis Lambert International     41180
5815                    Indianapolis International     26900
5816              Phoenix Sky Harbor International     38060
5817            Baltimore/Washington International     12580
5818                             Dallas Love Field     19100
5819                        McCarran International     29820
5820                            Long Beach Airport     31080
5821                  Theodore Francis Green State     39300
5822                  Newark Liberty International     35620
5823            Baltimore/Washington International     12580
5824                    Detroit Metro Wayne County     19820
5825                        Key West International     28580
5826               Cleveland-Hopkins International     17460
5827                    Jacksonville International     27260
5828                General Mitchell International     33340
5829     Louis Armstrong New Orleans International     35380
5830                               Eppley Airfield     36540
5831                  Raleigh-Durham International     39580
5832                                     LaGuardia     35620
5833       Norman Y. Mineta San Jose International     41940
5834                   San Francisco International     41860
5835            City of Colorado Springs Municipal     17820
5836                      Sacramento International     40900
5837              Phoenix Sky Harbor International     38060
5838              Austin - Bergstrom International     12420
5839              Austin - Bergstrom International     12420
5840            Baltimore/Washington International     12580
5841             John Glenn Columbus International     18140
5842                             Dallas Love Field     19100
5843             Ronald Reagan Washington National     47900
5844                    Indianapolis International     26900
5845                         Memphis International     32820
5846                         Memphis International     32820
5847                               Eppley Airfield     36540
5848              Phoenix Sky Harbor International     38060
5849                  Theodore Francis Green State     39300
5850                       San Diego International     41740
5851                           Miami International     33100
5852                             Will Rogers World     36420
5853                       San Diego International     41740
5854                 Daniel K Inouye International     46520
5855                       San Diego International     41740
5856                         Bradley International     25540
5857                                      Bob Hope     31080
5858            Baltimore/Washington International     12580
5859                             Dallas Love Field     19100
5860                             Dallas Love Field     19100
5861                         El Paso International     21340
5862       Fort Lauderdale-Hollywood International     33100
5863                               William P Hobby     26420
5864                                     LaGuardia     35620
5865                            Long Beach Airport     31080
5866                     Kansas City International     28140
5867                     Kansas City International     28140
5868                     Kansas City International     28140
5869                     Kansas City International     28140
5870     Louis Armstrong New Orleans International     35380
5871                             Will Rogers World     36420
5872                         Ontario International     40140
5873                         Ontario International     40140
5874                       San Diego International     41740
5875                     San Antonio International     41700
5876                     San Antonio International     41700
5877       Norman Y. Mineta San Jose International     41940
5878       Norman Y. Mineta San Jose International     41940
5879              Sarasota/Bradenton International     35840
5880                           Tampa International     45300
5881                           Tulsa International     46140
5882                           Tulsa International     46140
5883                          Tucson International     46060
5884     Louis Armstrong New Orleans International     35380
5885                         Ontario International     40140
5886                          Valley International     15180
5887      Jackson Medgar Wiley Evers International     27140
5888                         Memphis International     32820
5889                General Mitchell International     33340
5890                General Mitchell International     33340
5891                             Will Rogers World     36420
5892                               Eppley Airfield     36540
5893       Fort Lauderdale-Hollywood International     33100
5894            Metropolitan Oakland International     41860
5895               Southwest Florida International     15980
5896                         Ontario International     40140
5897             Albuquerque International Sunport     10740
5898                            Mahlon Sweet Field     21660
5899             Minneapolis-St Paul International     33460
5900              John Wayne Airport-Orange County     31080
5901                           Tampa International     45300
5902                General Mitchell International     33340
5903    Cincinnati/Northern Kentucky International     17140
5904                         El Paso International     21340
5905                         Memphis International     32820
5906             Minneapolis-St Paul International     33460
5907                           Tulsa International     46140
5908             John Glenn Columbus International     18140
5909     Louis Armstrong New Orleans International     35380
5910           Lubbock Preston Smith International     31180
5911         Louisville Muhammad Ali International     31140
5912      Hartsfield-Jackson Atlanta International     12060
5913             John Glenn Columbus International     18140
5914                    Manchester-Boston Regional     31700
5915            Metropolitan Oakland International     41860
5916                       San Diego International     41740
5917                    Indianapolis International     26900
5918                         Norfolk International     47260
5919                        McCarran International     29820
5920                       Nashville International     34980
5921                                      Bob Hope     31080
5922             Bozeman Yellowstone International     14580
5923                         Spokane International     44060
5924                            Long Beach Airport     31080
5925                             Will Rogers World     36420
5926                       Santa Barbara Municipal     42200
5927       Norman Y. Mineta San Jose International     41940
5928                 Buffalo Niagara International     15380
5929                    Indianapolis International     26900
5930                  Raleigh-Durham International     39580
5931                   San Francisco International     41860
5932                          Tucson International     46060
5933            Baltimore/Washington International     12580
5934                   San Francisco International     41860
5935                          Albany International     10580
5936           Rick Husband Amarillo International     11100
5937                         Bradley International     25540
5938                 Fresno Yosemite International     23420
5939      Midland International Air and Space Port     33260
5940               Greater Rochester International     40380
5941                            Boise Air Terminal     14260
5942               Cleveland-Hopkins International     17460
5943               Charlotte Douglas International     16740
5944             John Glenn Columbus International     18140
5945                         Wichita Mid-Continent     48620
5946                                     LaGuardia     35620
5947                     Kansas City International     28140
5948                         Ontario International     40140
5949                         Ontario International     40140
5950                      Sacramento International     40900
5951                         Memphis International     32820
5952     Louis Armstrong New Orleans International     35380
5953                     San Antonio International     41700
5954                          Tucson International     46060
5955             Albuquerque International Sunport     10740
5956           Lubbock Preston Smith International     31180
5957                             Will Rogers World     36420
5958                               Eppley Airfield     36540
5959                        Portland International     38900
5960            City of Colorado Springs Municipal     17820
5961                      Sacramento International     40900
5962                Portland International Jetport     38860
5963     Louis Armstrong New Orleans International     35380
5964      Hartsfield-Jackson Atlanta International     12060
5965                       Nashville International     34980
5966             John Glenn Columbus International     18140
5967             John Glenn Columbus International     18140
5968            City of Colorado Springs Municipal     17820
5969                    Detroit Metro Wayne County     19820
5970                         Spokane International     44060
5971                               William P Hobby     26420
5972                    Indianapolis International     26900
5973                     Kansas City International     28140
5974     Louis Armstrong New Orleans International     35380
5975            Metropolitan Oakland International     41860
5976                        Portland International     38900
5977              Phoenix Sky Harbor International     38060
5978              Phoenix Sky Harbor International     38060
5979       Norman Y. Mineta San Jose International     41940
5980                  Salt Lake City International     41620
5981              John Wayne Airport-Orange County     31080
5982                         Wichita Mid-Continent     48620
5983             Albuquerque International Sunport     10740
5984              Phoenix Sky Harbor International     38060
5985        Birmingham-Shuttlesworth International     13820
5986            City of Colorado Springs Municipal     17820
5987                Luis Munoz Marin International     41980
5988                             Dallas Love Field     19100
5989       Norman Y. Mineta San Jose International     41940
5990                St Louis Lambert International     41180
5991                           Miami International     33100
5992                      Reno/Tahoe International     39900
5993                St Louis Lambert International     41180
5994                                   Adams Field     30780
5995                         El Paso International     21340
5996                    Indianapolis International     26900
5997                         Ontario International     40140
5998                  Raleigh-Durham International     39580
5999                                     LaGuardia     35620
6000                   San Francisco International     41860
6001               Washington Dulles International     47900
6002          Greenville-Spartanburg International     43900
6003                        Portland International     38900
6004             Albuquerque International Sunport     10740
6005                               William P Hobby     26420
6006                               William P Hobby     26420
6007                            Long Beach Airport     31080
6008                        Portland International     38900
6009                  Salt Lake City International     41620
6010                      Sacramento International     40900
6011                                      Bob Hope     31080
6012                         Norfolk International     47260
6013                 Pensacola Gulf Coast Regional     37860
6014               Cleveland-Hopkins International     17460
6015            City of Colorado Springs Municipal     17820
6016                     Los Angeles International     31080
6017                               William P Hobby     26420
6018                  Raleigh-Durham International     39580
6019                St Louis Lambert International     41180
6020        Birmingham-Shuttlesworth International     13820
6021                  Gerald R. Ford International     24340
6022                          Tucson International     46060
6023        Birmingham-Shuttlesworth International     13820
6024        Birmingham-Shuttlesworth International     13820
6025               Cleveland-Hopkins International     17460
6026            Metropolitan Oakland International     41860
6027                               Eppley Airfield     36540
6028                      Pittsburgh International     38300
6029                Portland International Jetport     38860
6030                           South Bend Regional     43780
6031                                     LaGuardia     35620
6032                     Los Angeles International     31080
6033                      Bellingham International     13380
6034                            Boise Air Terminal     14260
6035       Northwest Florida Beaches International     37460
6036                    Jacksonville International     27260
6037     Louis Armstrong New Orleans International     35380
6038                               Eppley Airfield     36540
6039              Phoenix Sky Harbor International     38060
6040                  Raleigh-Durham International     39580
6041              John Wayne Airport-Orange County     31080
6042                St Louis Lambert International     41180
6043           Rick Husband Amarillo International     11100
6044            Savannah/Hilton Head International     42340
6045                             Dallas Love Field     19100
6046                  Gerald R. Ford International     24340
6047                          Valley International     15180
6048                 Pensacola Gulf Coast Regional     37860
6049                    Palm Springs International     40140
6050                       San Diego International     41740
6051              John Wayne Airport-Orange County     31080
6052                             Dallas Love Field     19100
6053                 Fresno Yosemite International     23420
6054                                   Adams Field     30780
6055              Austin - Bergstrom International     12420
6056                       Nashville International     34980
6057               Washington Dulles International     47900
6058                        McCarran International     29820
6059                                      Bob Hope     31080
6060               Cleveland-Hopkins International     17460
6061                    Indianapolis International     26900
6062                  Raleigh-Durham International     39580
6063         Louisville Muhammad Ali International     31140
6064             John Glenn Columbus International     18140
6065                  Chicago Midway International     16980
6066            Metropolitan Oakland International     41860
6067      Jackson Medgar Wiley Evers International     27140
6068                     Kansas City International     28140
6069                     San Antonio International     41700
6070              Austin - Bergstrom International     12420
6071       Fort Lauderdale-Hollywood International     33100
6072                            Long Beach Airport     31080
6073                General Mitchell International     33340
6074                      Reno/Tahoe International     39900
6075                     San Antonio International     41700
6076                         Orlando International     36740
6077                            Boise Air Terminal     14260
6078               Cleveland-Hopkins International     17460
6079                         El Paso International     21340
6080                  Chicago Midway International     16980
6081                         Ontario International     40140
6082                       San Diego International     41740
6083             Albuquerque International Sunport     10740
6084                                      Bob Hope     31080
6085                           Logan International     14460
6086                    Indianapolis International     26900
6087                   San Francisco International     41860
6088           Rick Husband Amarillo International     11100
6089                       Nashville International     34980
6090                           Logan International     14460
6091                                      Bob Hope     31080
6092      Jackson Medgar Wiley Evers International     27140
6093                               Eppley Airfield     36540
6094               Greater Rochester International     40380
6095                    Manchester-Boston Regional     31700
6096                           Tampa International     45300
6097             Albuquerque International Sunport     10740
6098                 Buffalo Niagara International     15380
6099              Sarasota/Bradenton International     35840
6100                 Buffalo Niagara International     15380
6101              John Wayne Airport-Orange County     31080
6102             Albuquerque International Sunport     10740
6103                     Kansas City International     28140
6104                General Mitchell International     33340
6105                             Will Rogers World     36420
6106                      Reno/Tahoe International     39900
6107                       San Diego International     41740
6108                       Santa Barbara Municipal     42200
6109                           Tulsa International     46140
6110                         Bradley International     25540
6111                       Nashville International     34980
6112                  Chicago O'Hare International     16980
6113                       Santa Barbara Municipal     42200
6114                      Sacramento International     40900
6115                                Trenton Mercer     45940
6116             Albuquerque International Sunport     10740
6117               Cleveland-Hopkins International     17460
6118            City of Colorado Springs Municipal     17820
6119            City of Colorado Springs Municipal     17820
6120                 Fresno Yosemite International     23420
6121                            Long Beach Airport     31080
6122                            Long Beach Airport     31080
6123                General Mitchell International     33340
6124     Louis Armstrong New Orleans International     35380
6125     Louis Armstrong New Orleans International     35380
6126                         Norfolk International     47260
6127                    Palm Springs International     40140
6128                  Raleigh-Durham International     39580
6129                      Reno/Tahoe International     39900
6130                     San Antonio International     41700
6131                       Santa Barbara Municipal     42200
6132                                   Adams Field     30780
6133                                      Bob Hope     31080
6134    Cincinnati/Northern Kentucky International     17140
6135         Louisville Muhammad Ali International     31140
6136                  Corpus Christi International     18580
6137      Jackson Medgar Wiley Evers International     27140
6138                     Kansas City International     28140
6139                               Eppley Airfield     36540
6140                         Ontario International     40140
6141                     San Antonio International     41700
6142                           Tampa International     45300
6143                  Salt Lake City International     41620
6144              Austin - Bergstrom International     12420
6145                         Bradley International     25540
6146            City of Colorado Springs Municipal     17820
6147                    Philadelphia International     37980
6148                     San Antonio International     41700
6149                           Tampa International     45300
6150      Jackson Medgar Wiley Evers International     27140
6151                     San Antonio International     41700
6152                           Logan International     14460
6153               Cleveland-Hopkins International     17460
6154                        McCarran International     29820
6155      Midland International Air and Space Port     33260
6156            Metropolitan Oakland International     41860
6157                 Pensacola Gulf Coast Regional     37860
6158         Louisville Muhammad Ali International     31140
6159              John Wayne Airport-Orange County     31080
6160                       Nashville International     34980
6161            Baltimore/Washington International     12580
6162                         El Paso International     21340
6163                  Gerald R. Ford International     24340
6164     Louis Armstrong New Orleans International     35380
6165              John Wayne Airport-Orange County     31080
6166                           Tulsa International     46140
6167              Austin - Bergstrom International     12420
6168                  Gerald R. Ford International     24340
6169                    Jacksonville International     27260
6170                                     LaGuardia     35620
6171                        Portland International     38900
6172                     San Antonio International     41700
6173                                      Bob Hope     31080
6174             John Glenn Columbus International     18140
6175                    Detroit Metro Wayne County     19820
6176                    Philadelphia International     37980
6177              Phoenix Sky Harbor International     38060
6178                St Louis Lambert International     41180
6179                           Tampa International     45300
6180                  Charleston AFB/International     16700
6181          Greenville-Spartanburg International     43900
6182                            Long Beach Airport     31080
6183                         Norfolk International     47260
6184                      Pittsburgh International     38300
6185             Bozeman Yellowstone International     14580
6186            City of Colorado Springs Municipal     17820
6187                  Gerald R. Ford International     24340
6188                             Montrose Regional     33940
6189                         Norfolk International     47260
6190                     San Antonio International     41700
6191                  Seattle/Tacoma International     42660
6192       Norman Y. Mineta San Jose International     41940
6193              Phoenix Sky Harbor International     38060
6194                          Tucson International     46060
6195            Baltimore/Washington International     12580
6196                     Los Angeles International     31080
6197                               Eppley Airfield     36540
6198                              Wrangell Airport      <NA>
6199                Luis Munoz Marin International     41980
6200                         El Paso International     21340
6201                           Logan International     14460
6202            City of Colorado Springs Municipal     17820
6203                    Indianapolis International     26900
6204                General Mitchell International     33340
6205                       Santa Barbara Municipal     42200
6206              John Wayne Airport-Orange County     31080
6207                          Tallahassee Regional     45220
6208             Albuquerque International Sunport     10740
6209                       Nashville International     34980
6210            City of Colorado Springs Municipal     17820
6211                         Spokane International     44060
6212                      Reno/Tahoe International     39900
6213                       San Diego International     41740
6214                Luis Munoz Marin International     41980
6215     Louis Armstrong New Orleans International     35380
6216                 Buffalo Niagara International     15380
6217                         Bradley International     25540
6218                     Kansas City International     28140
6219                          Tucson International     46060
6220                            Nantucket Memorial      <NA>
6221                               William P Hobby     26420
6222                          Juneau International     27940
6223                         Bradley International     25540
6224                         Bradley International     25540
6225               Cleveland-Hopkins International     17460
6226                         Spokane International     44060
6227                     Kansas City International     28140
6228                    Manchester-Boston Regional     31700
6229                    Manchester-Boston Regional     31700
6230                       San Diego International     41740
6231       Norman Y. Mineta San Jose International     41940
6232                     Kansas City International     28140
6233          George Bush Intercontinental/Houston     26420
6234      Jackson Medgar Wiley Evers International     27140
6235                       Santa Barbara Municipal     42200
6236             John Glenn Columbus International     18140
6237                        McCarran International     29820
6238                Portland International Jetport     38860
6239         Kona International Airport at Keahole     25900
6240                             Will Rogers World     36420
6241                     San Antonio International     41700
6242       Norman Y. Mineta San Jose International     41940
6243                      Sacramento International     40900
6244                St Louis Lambert International     41180
6245                             Dallas Love Field     19100
6246       Norman Y. Mineta San Jose International     41940
6247        Birmingham-Shuttlesworth International     13820
6248                         Spokane International     44060
6249                       Nashville International     34980
6250               Greater Rochester International     40380
6251         Louisville Muhammad Ali International     31140
6252                         Norfolk International     47260
6253       Norman Y. Mineta San Jose International     41940
6254                  Chicago O'Hare International     16980
6255                    Indianapolis International     26900
6256                                      Bob Hope     31080
6257                      Pittsburgh International     38300
6258              John Wayne Airport-Orange County     31080
6259              John Wayne Airport-Orange County     31080
6260                Portland International Jetport     38860
6261                                      Bob Hope     31080
6262                       Nashville International     34980
6263            Metropolitan Oakland International     41860
6264                St Louis Lambert International     41180
6265                      Reno/Tahoe International     39900
6266                          Albany International     10580
6267                            Long Beach Airport     31080
6268                 Fresno Yosemite International     23420
6269                            Long Beach Airport     31080
6270                  Chicago Midway International     16980
6271                    Myrtle Beach International     34820
6272                         Ontario International     40140
6273                    Philadelphia International     37980
6274                    Indianapolis International     26900
6275            Metropolitan Oakland International     41860
6276         Louisville Muhammad Ali International     31140
6277                           Tulsa International     46140
6278                    Indianapolis International     26900
6279                    Myrtle Beach International     34820
6280                             Will Rogers World     36420
6281                      Reno/Tahoe International     39900
6282                       San Diego International     41740
6283                    Indianapolis International     26900
6284                        McCarran International     29820
6285                General Mitchell International     33340
6286                    Detroit Metro Wayne County     19820
6287                             Will Rogers World     36420
6288                     San Antonio International     41700
6289                         Bradley International     25540
6290                         Ontario International     40140
6291       Norman Y. Mineta San Jose International     41940
6292              Sarasota/Bradenton International     35840
6293                      Sacramento International     40900
6294              Austin - Bergstrom International     12420
6295                          Denver International     19740
6296          Greenville-Spartanburg International     43900
6297                        McCarran International     29820
6298                             Will Rogers World     36420
6299                               Eppley Airfield     36540
6300              Austin - Bergstrom International     12420
6301                               Eppley Airfield     36540
6302            Baltimore/Washington International     12580
6303                                      Bob Hope     31080
6304                          Albany International     10580
6305                        Portland International     38900
6306                                      Bob Hope     31080
6307                       Nashville International     34980
6308              John Wayne Airport-Orange County     31080
6309                 Buffalo Niagara International     15380
6310                       San Diego International     41740
6311                    Jacksonville International     27260
6312                         Orlando International     36740
6313                         Orlando International     36740
6314                     Martha's Vineyard Airport     47240
6315           Rick Husband Amarillo International     11100
6316                             Will Rogers World     36420
6317       Norman Y. Mineta San Jose International     41940
6318                           Miami International     33100
6319                         El Paso International     21340
6320                    Jacksonville International     27260
6321             Minneapolis-St Paul International     33460
6322                      Sacramento International     40900
6323                         El Paso International     21340
6324                               William P Hobby     26420
6325                            Long Beach Airport     31080
6326                       San Diego International     41740
6327       Norman Y. Mineta San Jose International     41940
6328       Norman Y. Mineta San Jose International     41940
6329              Sarasota/Bradenton International     35840
6330             Bozeman Yellowstone International     14580
6331             John Glenn Columbus International     18140
6332                             Dallas Love Field     19100
6333                            Long Beach Airport     31080
6334                     San Antonio International     41700
6335                       Nashville International     34980
6336                               Eppley Airfield     36540
6337       Norman Y. Mineta San Jose International     41940
6338                           Tulsa International     46140
6339                                     LaGuardia     35620
6340                         Memphis International     32820
6341               Greater Rochester International     40380
6342        Birmingham-Shuttlesworth International     13820
6343                             Dallas Love Field     19100
6344                         Ontario International     40140
6345                      Pittsburgh International     38300
6346                Portland International Jetport     38860
6347         Veterans Airport of Southern Illinois     16060
6348                    Myrtle Beach International     34820
6349       Norman Y. Mineta San Jose International     41940
6350            Eglin AFB Destin Fort Walton Beach     18880
6351             Bozeman Yellowstone International     14580
6352                             Dallas Love Field     19100
6353                  Salt Lake City International     41620
6354                      Des Moines International     19780
6355                      Antonio Rivera Rodriguez      <NA>
6356                           Logan International     14460
6357                     San Antonio International     41700
6358                          Albany International     10580
6359          Greenville-Spartanburg International     43900
6360              Austin - Bergstrom International     12420
6361           Rick Husband Amarillo International     11100
6362      Hartsfield-Jackson Atlanta International     12060
6363                    Jacksonville International     27260
6364                 Pensacola Gulf Coast Regional     37860
6365                      Sacramento International     40900
6366             Albuquerque International Sunport     10740
6367                             Dallas Love Field     19100
6368                        Richmond International     40060
6369               Greater Rochester International     40380
6370                      Sacramento International     40900
6371                          Albany International     10580
6372            City of Colorado Springs Municipal     17820
6373              Sarasota/Bradenton International     35840
6374                           Tampa International     45300
6375     Louis Armstrong New Orleans International     35380
6376                             Will Rogers World     36420
6377                         Memphis International     32820
6378            Baltimore/Washington International     12580
6379                  Charleston AFB/International     16700
6380               Cleveland-Hopkins International     17460
6381                    Indianapolis International     26900
6382                    Jacksonville International     27260
6383                General Mitchell International     33340
6384                    Myrtle Beach International     34820
6385                      Palm Beach International     33100
6386                 Pensacola Gulf Coast Regional     37860
6387                Portland International Jetport     38860
6388                  Raleigh-Durham International     39580
6389                          Tucson International     46060
6390             Albuquerque International Sunport     10740
6391                    Detroit Metro Wayne County     19820
6392                            Mahlon Sweet Field     21660
6393                      Pittsburgh International     38300
6394                       Nashville International     34980
6395                           Logan International     14460
6396            City of Colorado Springs Municipal     17820
6397                             Dallas Love Field     19100
6398             Albuquerque International Sunport     10740
6399                       Nashville International     34980
6400                          Valley International     15180
6401               Washington Dulles International     47900
6402                     San Antonio International     41700
6403                St Louis Lambert International     41180
6404      Midland International Air and Space Port     33260
6405                     Kansas City International     28140
6406                               Eppley Airfield     36540
6407              John Wayne Airport-Orange County     31080
6408                       San Diego International     41740
6409             John Glenn Columbus International     18140
6410                  Chicago O'Hare International     16980
6411                  Chicago O'Hare International     16980
6412                          Denver International     19740
6413               Charlotte Douglas International     16740
6414                  Chicago Midway International     16980
6415                  Chicago Midway International     16980
6416             Ronald Reagan Washington National     47900
6417               Dallas/Fort Worth International     19100
6418                         Orlando International     36740
6419                Luis Munoz Marin International     41980
6420                           Miami International     33100
6421                           Miami International     33100
6422                          Denver International     19740
6423              John Wayne Airport-Orange County     31080
6424               Dallas/Fort Worth International     19100
6425                          Denver International     19740
6426                             Dallas Love Field     19100
6427                  Salt Lake City International     41620
6428               Charlotte Douglas International     16740
6429                                      Bob Hope     31080
6430                          Denver International     19740
6431                   San Francisco International     41860
6432                  Chicago O'Hare International     16980
6433               Dallas/Fort Worth International     19100
6434          George Bush Intercontinental/Houston     26420
6435               Charlotte Douglas International     16740
6436               Southwest Florida International     15980
6437             Minneapolis-St Paul International     33460
6438                               William P Hobby     26420
6439             Ronald Reagan Washington National     47900
6440              John Wayne Airport-Orange County     31080
6441                             Dallas Love Field     19100
6442                  Chicago O'Hare International     16980
6443                        Portland International     38900
6444               Washington Dulles International     47900
6445                                  Cyril E King      <NA>
6446               Washington Dulles International     47900
6447                  Chicago Midway International     16980
6448                New York Stewart International     39100
6449                             Dallas Love Field     19100
6450                           Logan International     14460
6451                           Miami International     33100
6452                           Miami International     33100
6453                  Chicago O'Hare International     16980
6454                           Miami International     33100
6455                  Salt Lake City International     41620
6456     Louis Armstrong New Orleans International     35380
6457                           Miami International     33100
6458                     Kansas City International     28140
6459                       Nashville International     34980
6460                  Chicago Midway International     16980
6461                           Miami International     33100
6462               Charlotte Douglas International     16740
6463                  Salt Lake City International     41620
6464       Norman Y. Mineta San Jose International     41940
6465                    Philadelphia International     37980
6466                     San Antonio International     41700
6467                St Louis Lambert International     41180
6468                    Myrtle Beach International     34820
6469               Charlotte Douglas International     16740
6470                                      Bob Hope     31080
6471                     Kansas City International     28140
6472           Ted Stevens Anchorage International     11260
6473                           Miami International     33100
6474                         Orlando International     36740
6475                               William P Hobby     26420
6476             Minneapolis-St Paul International     33460
6477                General Mitchell International     33340
6478                          Denver International     19740
6479                           Miami International     33100
6480                          Denver International     19740
6481                          Denver International     19740
6482                St Louis Lambert International     41180
6483                        McCarran International     29820
6484               Dallas/Fort Worth International     19100
6485                           Miami International     33100
6486                           Miami International     33100
6487                            Long Beach Airport     31080
6488                       Nashville International     34980
6489                    Philadelphia International     37980
6490                         Bradley International     25540
6491                       San Diego International     41740
6492                                  Cyril E King      <NA>
6493                                  Yampa Valley     44460
6494                                  Yampa Valley     44460
6495                               Eppley Airfield     36540
6496               Greater Rochester International     40380
6497                      Pittsburgh International     38300
6498       Fort Lauderdale-Hollywood International     33100
6499               Southwest Florida International     15980
6500                    Palm Springs International     40140
6501                         Eagle County Regional     20780
6502              Sarasota/Bradenton International     35840
6503                    Myrtle Beach International     34820
6504                        McCarran International     29820
6505                           Miami International     33100
6506                           Tampa International     45300
6507                        McCarran International     29820
6508                           South Bend Regional     43780
6509       Northwest Florida Beaches International     37460
6510                    Myrtle Beach International     34820
6511      Midland International Air and Space Port     33260
6512           Rick Husband Amarillo International     11100
6513             Albuquerque International Sunport     10740
6514                                  Yampa Valley     44460
6515                      Reno/Tahoe International     39900
6516                           Tampa International     45300
6517       Northwest Florida Beaches International     37460
6518                       San Diego International     41740
6519                         Orlando International     36740
6520                    Jacksonville International     27260
6521                      Pittsburgh International     38300
6522                      Pittsburgh International     38300
6523                         Norfolk International     47260
6524                          Tucson International     46060
6525                           Tulsa International     46140
6526             Bozeman Yellowstone International     14580
6527                         El Paso International     21340
6528      Midland International Air and Space Port     33260
6529               Southwest Florida International     15980
6530                             Dallas Love Field     19100
6531                    Detroit Metro Wayne County     19820
6532                        McCarran International     29820
6533                      Sacramento International     40900
6534      Midland International Air and Space Port     33260
6535           Lubbock Preston Smith International     31180
6536                    Jacksonville International     27260
6537                             Montrose Regional     33940
6538                         Orlando International     36740
6539               Southwest Florida International     15980
6540                             Will Rogers World     36420
6541            City of Colorado Springs Municipal     17820
6542             Bozeman Yellowstone International     14580
6543                 Pensacola Gulf Coast Regional     37860
6544                                      Bob Hope     31080
6545                         Spokane International     44060
6546                  Theodore Francis Green State     39300
6547                           Miami International     33100
6548                         Long Island MacArthur     35620
6549                Luis Munoz Marin International     41980
6550                   San Francisco International     41860
6551            Eglin AFB Destin Fort Walton Beach     18880
6552                         Orlando International     36740
6553               Cleveland-Hopkins International     17460
6554                    Detroit Metro Wayne County     19820
6555                                     LaGuardia     35620
6556        Birmingham-Shuttlesworth International     13820
6557                      Pittsburgh International     38300
6558                  Charleston AFB/International     16700
6559              Phoenix Sky Harbor International     38060
6560        Birmingham-Shuttlesworth International     13820
6561           Rick Husband Amarillo International     11100
6562            Eglin AFB Destin Fort Walton Beach     18880
6563                         El Paso International     21340
6564                      Palm Beach International     33100
6565                          Denver International     19740
6566           Lubbock Preston Smith International     31180
6567                     Los Angeles International     31080
6568     Louis Armstrong New Orleans International     35380
6569                  Raleigh-Durham International     39580
6570               Washington Dulles International     47900
6571                            Mahlon Sweet Field     21660
6572                 Buffalo Niagara International     15380
6573         Louisville Muhammad Ali International     31140
6574                         Memphis International     32820
6575             Albuquerque International Sunport     10740
6576                          Tucson International     46060
6577      Midland International Air and Space Port     33260
6578              Austin - Bergstrom International     12420
6579               Southwest Florida International     15980
6580                         Norfolk International     47260
6581              Dane County Regional-Truax Field     31540
6582                            Boise Air Terminal     14260
6583                         Norfolk International     47260
6584            Metropolitan Oakland International     41860
6585                           South Bend Regional     43780
6586                         Eagle County Regional     20780
6587     Louis Armstrong New Orleans International     35380
6588               Southwest Florida International     15980
6589              John Wayne Airport-Orange County     31080
6590                                     LaGuardia     35620
6591                         Eagle County Regional     20780
6592                                  Jackson Hole     27220
6593                           South Bend Regional     43780
6594                 Fresno Yosemite International     23420
6595            Metropolitan Oakland International     41860
6596                                     LaGuardia     35620
6597                        Portland International     38900
6598    Cincinnati/Northern Kentucky International     17140
6599                         Long Island MacArthur     35620
6600                      Sacramento International     40900
6601                    Indianapolis International     26900
6602                           Tampa International     45300
6603                  Charleston AFB/International     16700
6604                                      Bob Hope     31080
6605                          Albany International     10580
6606            Metropolitan Oakland International     41860
6607                         El Paso International     21340
6608                                      Bob Hope     31080
6609                        Portland International     38900
6610                         Long Island MacArthur     35620
6611                                     LaGuardia     35620
6612                  Theodore Francis Green State     39300
6613                         Norfolk International     47260
6614                         Long Island MacArthur     35620
6615                  Gerald R. Ford International     24340
6616                      Pittsburgh International     38300
6617        Birmingham-Shuttlesworth International     13820
6618      Midland International Air and Space Port     33260
6619                 Buffalo Niagara International     15380
6620                          Tucson International     46060
6621                      Palm Beach International     33100
6622          George Bush Intercontinental/Houston     26420
6623              Austin - Bergstrom International     12420
6624                                      Bob Hope     31080
6625               Southwest Florida International     15980
6626                  Seattle/Tacoma International     42660
6627                         Ontario International     40140
6628                  Raleigh-Durham International     39580
6629       Fort Lauderdale-Hollywood International     33100
6630                      Reno/Tahoe International     39900
6631             Ronald Reagan Washington National     47900
6632                      Sacramento International     40900
6633                 Buffalo Niagara International     15380
6634                           Tulsa International     46140
6635                    Manchester-Boston Regional     31700
6636                        Portland International     38900
6637            City of Colorado Springs Municipal     17820
6638               Southwest Florida International     15980
6639                             Will Rogers World     36420
6640                             Will Rogers World     36420
6641              Sarasota/Bradenton International     35840
6642       Northwest Florida Beaches International     37460
6643             John Glenn Columbus International     18140
6644              Sarasota/Bradenton International     35840
6645                                  Yampa Valley     44460
6646                   San Francisco International     41860
6647             Bozeman Yellowstone International     14580
6648                         Wichita Mid-Continent     48620
6649                          Albany International     10580
6650                  Charleston AFB/International     16700
6651                  Theodore Francis Green State     39300
6652                      Reno/Tahoe International     39900
6653                      Sacramento International     40900
6654                        McCarran International     29820
6655     Louis Armstrong New Orleans International     35380
6656                          Tucson International     46060
6657       Norman Y. Mineta San Jose International     41940
6658              John Wayne Airport-Orange County     31080
6659             Minneapolis-St Paul International     33460
6660                         Memphis International     32820
6661            Eglin AFB Destin Fort Walton Beach     18880
6662                General Mitchell International     33340
6663                         Ontario International     40140
6664                     Martha's Vineyard Airport     47240
6665       Green Bay Austin Straubel International     24580
6666                        McCarran International     29820
                                     dest_cbsa_name
1                       Detroit-Warren-Dearborn, MI
2                       Detroit-Warren-Dearborn, MI
3                       Detroit-Warren-Dearborn, MI
4                       Detroit-Warren-Dearborn, MI
5                San Francisco-Oakland-Berkeley, CA
6                         Phoenix-Mesa-Chandler, AZ
7                       Detroit-Warren-Dearborn, MI
8           Miami-Fort Lauderdale-Pompano Beach, FL
9                       Detroit-Warren-Dearborn, MI
10                      Detroit-Warren-Dearborn, MI
11                      Detroit-Warren-Dearborn, MI
12                      Detroit-Warren-Dearborn, MI
13              Portland-Vancouver-Hillsboro, OR-WA
14                        Phoenix-Mesa-Chandler, AZ
15               San Jose-Sunnyvale-Santa Clara, CA
16               San Jose-Sunnyvale-Santa Clara, CA
17                      Detroit-Warren-Dearborn, MI
18                             Dayton-Kettering, OH
19                          Buffalo-Cheektowaga, NY
20                                  Panama City, FL
21          Minneapolis-St. Paul-Bloomington, MN-WI
22             Riverside-San Bernardino-Ontario, CA
23                        Providence-Warwick, RI-MA
24                                 Jacksonville, FL
25          Miami-Fort Lauderdale-Pompano Beach, FL
26                                    Asheville, NC
27            New York-Newark-Jersey City, NY-NJ-PA
28                                     Key West, FL
29                                      Jackson, MS
30               Los Angeles-Long Beach-Anaheim, CA
31              Portland-Vancouver-Hillsboro, OR-WA
32                                 Raleigh-Cary, NC
33                  Sacramento-Roseville-Folsom, CA
34          Miami-Fort Lauderdale-Pompano Beach, FL
35               San Francisco-Oakland-Berkeley, CA
36                       Denver-Aurora-Lakewood, CO
37            New York-Newark-Jersey City, NY-NJ-PA
38               San Diego-Chula Vista-Carlsbad, CA
39                      Seattle-Tacoma-Bellevue, WA
40               San Diego-Chula Vista-Carlsbad, CA
41                  Sacramento-Roseville-Folsom, CA
42                           Kennewick-Richland, WA
43            New York-Newark-Jersey City, NY-NJ-PA
44            New York-Newark-Jersey City, NY-NJ-PA
45             Atlanta-Sandy Springs-Alpharetta, GA
46                  Dallas-Fort Worth-Arlington, TX
47                                    Lafayette, LA
48                 Austin-Round Rock-Georgetown, TX
49                             Cincinnati, OH-KY-IN
50                               Kansas City, MO-KS
51               Chicago-Naperville-Elgin, IL-IN-WI
52               San Diego-Chula Vista-Carlsbad, CA
53                                     Syracuse, NY
54          Miami-Fort Lauderdale-Pompano Beach, FL
55                               Urban Honolulu, HI
56                          Buffalo-Cheektowaga, NY
57                                  Sioux Falls, SD
58                                      Bozeman, MT
59                      Seattle-Tacoma-Bellevue, WA
60                   Des Moines-West Des Moines, IA
61                   Boston-Cambridge-Newton, MA-NH
62            New York-Newark-Jersey City, NY-NJ-PA
63                                     Fargo, ND-MN
64             Atlanta-Sandy Springs-Alpharetta, GA
65     Washington-Arlington-Alexandria, DC-VA-MD-WV
66            New York-Newark-Jersey City, NY-NJ-PA
67                         New Orleans-Metairie, LA
68                    San Antonio-New Braunfels, TX
69               Los Angeles-Long Beach-Anaheim, CA
70                                       Fresno, CA
71                                  Idaho Falls, ID
72             Riverside-San Bernardino-Ontario, CA
73                              Gulfport-Biloxi, MS
74                   Boston-Cambridge-Newton, MA-NH
75                    Orlando-Kissimmee-Sanford, FL
76                                  Spartanburg, SC
77                      Albany-Schenectady-Troy, NY
78            Hartford-East Hartford-Middletown, CT
79                      Detroit-Warren-Dearborn, MI
80                           Milwaukee-Waukesha, WI
81                  Dallas-Fort Worth-Arlington, TX
82                                Memphis, TN-MS-AR
83                    Baltimore-Columbia-Towson, MD
84                                     Columbus, OH
85                         New Orleans-Metairie, LA
86       Virginia Beach-Norfolk-Newport News, VA-NC
87                                   Pittsburgh, PA
88          Miami-Fort Lauderdale-Pompano Beach, FL
89                    Orlando-Kissimmee-Sanford, FL
90                 Las Vegas-Henderson-Paradise, NV
91               San Diego-Chula Vista-Carlsbad, CA
92                  Sacramento-Roseville-Folsom, CA
93                                 Raleigh-Cary, NC
94                                     Columbus, OH
95                    Orlando-Kissimmee-Sanford, FL
96              Portland-Vancouver-Hillsboro, OR-WA
97                      Omaha-Council Bluffs, NE-IA
98           Deltona-Daytona Beach-Ormond Beach, FL
99                 Indianapolis-Carmel-Anderson, IN
100           New York-Newark-Jersey City, NY-NJ-PA
101                              Salt Lake City, UT
102               North Port-Sarasota-Bradenton, FL
103          Crestview-Fort Walton Beach-Destin, FL
104                  Boston-Cambridge-Newton, MA-NH
105                Indianapolis-Carmel-Anderson, IN
106                                      Tucson, AZ
107              Los Angeles-Long Beach-Anaheim, CA
108              Los Angeles-Long Beach-Anaheim, CA
109              Chicago-Naperville-Elgin, IL-IN-WI
110                       Greensboro-High Point, NC
111                            Cleveland-Elyria, OH
112                       Grand Rapids-Kentwood, MI
113     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
114              Los Angeles-Long Beach-Anaheim, CA
115            Houston-The Woodlands-Sugar Land, TX
116                           Kalamazoo-Portage, MI
117           New York-Newark-Jersey City, NY-NJ-PA
118           New York-Newark-Jersey City, NY-NJ-PA
119                      Denver-Aurora-Lakewood, CO
120                                        Hilo, HI
121           New York-Newark-Jersey City, NY-NJ-PA
122           New York-Newark-Jersey City, NY-NJ-PA
123           New York-Newark-Jersey City, NY-NJ-PA
124           New York-Newark-Jersey City, NY-NJ-PA
125           New York-Newark-Jersey City, NY-NJ-PA
126                                       Kapaa, HI
127                              Salt Lake City, UT
128              Los Angeles-Long Beach-Anaheim, CA
129                      Spokane-Spokane Valley, WA
130                      Spokane-Spokane Valley, WA
131                                  Jackson, WY-ID
132              San Francisco-Oakland-Berkeley, CA
133                            Colorado Springs, CO
134           New York-Newark-Jersey City, NY-NJ-PA
135           New York-Newark-Jersey City, NY-NJ-PA
136                                        Reno, NV
137                                  Boise City, ID
138                                Jacksonville, NC
139                            Cincinnati, OH-KY-IN
140                                    Syracuse, NY
141                            Cleveland-Elyria, OH
142             Tampa-St. Petersburg-Clearwater, FL
143                                    Syracuse, NY
144                Las Vegas-Henderson-Paradise, NV
145                                   Duluth, MN-WI
146           Hartford-East Hartford-Middletown, CT
147           New York-Newark-Jersey City, NY-NJ-PA
148                Austin-Round Rock-Georgetown, TX
149                Las Vegas-Henderson-Paradise, NV
150                  Augusta-Richmond County, GA-SC
151                                    Richmond, VA
152                   San Antonio-New Braunfels, TX
153              Los Angeles-Long Beach-Anaheim, CA
154           New York-Newark-Jersey City, NY-NJ-PA
155                  Boston-Cambridge-Newton, MA-NH
156              Los Angeles-Long Beach-Anaheim, CA
157           Hartford-East Hartford-Middletown, CT
158                         Buffalo-Cheektowaga, NY
159           New York-Newark-Jersey City, NY-NJ-PA
160                                    Richmond, VA
161              Los Angeles-Long Beach-Anaheim, CA
162                         Buffalo-Cheektowaga, NY
163                                    Richmond, VA
164                   Orlando-Kissimmee-Sanford, FL
165              Los Angeles-Long Beach-Anaheim, CA
166                                   Anchorage, AK
167                                   Kalispell, MT
168              Los Angeles-Long Beach-Anaheim, CA
169                                    Missoula, MT
170                                      Hailey, ID
171                               Oklahoma City, OK
172                       Grand Rapids-Kentwood, MI
173              Los Angeles-Long Beach-Anaheim, CA
174                       Phoenix-Mesa-Chandler, AZ
175              San Diego-Chula Vista-Carlsbad, CA
176                     Seattle-Tacoma-Bellevue, WA
177           New York-Newark-Jersey City, NY-NJ-PA
178                                  Boise City, ID
179                      Spokane-Spokane Valley, WA
180                       Phoenix-Mesa-Chandler, AZ
181              San Francisco-Oakland-Berkeley, CA
182                 Sacramento-Roseville-Folsom, CA
183           New York-Newark-Jersey City, NY-NJ-PA
184           New York-Newark-Jersey City, NY-NJ-PA
185           New York-Newark-Jersey City, NY-NJ-PA
186                  Boston-Cambridge-Newton, MA-NH
187        Little Rock-North Little Rock-Conway, AR
188                                 Baton Rouge, LA
189             Portland-Vancouver-Hillsboro, OR-WA
190                           Lexington-Fayette, KY
191                              Urban Honolulu, HI
192    Washington-Arlington-Alexandria, DC-VA-MD-WV
193                                St. Louis, MO-IL
194                   Orlando-Kissimmee-Sanford, FL
195                       La Crosse-Onalaska, WI-MN
196                   Orlando-Kissimmee-Sanford, FL
197                   Orlando-Kissimmee-Sanford, FL
198                                   Green Bay, WI
199             Tampa-St. Petersburg-Clearwater, FL
200                                      Tucson, AZ
201                      Denver-Aurora-Lakewood, CO
202              San Francisco-Oakland-Berkeley, CA
203                                   Knoxville, TN
204                                Cedar Rapids, IA
205                      Denver-Aurora-Lakewood, CO
206                                   Brunswick, GA
207                       Cape Coral-Fort Myers, FL
208                                 Spartanburg, SC
209    Washington-Arlington-Alexandria, DC-VA-MD-WV
210         Miami-Fort Lauderdale-Pompano Beach, FL
211   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
212                                    Savannah, GA
213                                       Tulsa, OK
214         Minneapolis-St. Paul-Bloomington, MN-WI
215         Minneapolis-St. Paul-Bloomington, MN-WI
216         Minneapolis-St. Paul-Bloomington, MN-WI
217         Minneapolis-St. Paul-Bloomington, MN-WI
218         Minneapolis-St. Paul-Bloomington, MN-WI
219         Minneapolis-St. Paul-Bloomington, MN-WI
220                 Dallas-Fort Worth-Arlington, TX
221         Miami-Fort Lauderdale-Pompano Beach, FL
222                       Cape Coral-Fort Myers, FL
223         Minneapolis-St. Paul-Bloomington, MN-WI
224         Minneapolis-St. Paul-Bloomington, MN-WI
225         Minneapolis-St. Paul-Bloomington, MN-WI
226                     Portland-South Portland, ME
227         Minneapolis-St. Paul-Bloomington, MN-WI
228         Minneapolis-St. Paul-Bloomington, MN-WI
229         Minneapolis-St. Paul-Bloomington, MN-WI
230         Minneapolis-St. Paul-Bloomington, MN-WI
231         Minneapolis-St. Paul-Bloomington, MN-WI
232         Minneapolis-St. Paul-Bloomington, MN-WI
233         Minneapolis-St. Paul-Bloomington, MN-WI
234         Minneapolis-St. Paul-Bloomington, MN-WI
235         Minneapolis-St. Paul-Bloomington, MN-WI
236         Minneapolis-St. Paul-Bloomington, MN-WI
237                        Lansing-East Lansing, MI
238                        New Orleans-Metairie, LA
239                        New Orleans-Metairie, LA
240              Los Angeles-Long Beach-Anaheim, CA
241                           Birmingham-Hoover, AL
242               Charlotte-Concord-Gastonia, NC-SC
243                                Raleigh-Cary, NC
244              San Francisco-Oakland-Berkeley, CA
245                  Pensacola-Ferry Pass-Brent, FL
246                   Orlando-Kissimmee-Sanford, FL
247            Riverside-San Bernardino-Ontario, CA
248                 Hilton Head Island-Bluffton, SC
249              Chicago-Naperville-Elgin, IL-IN-WI
250              Louisville/Jefferson County, KY-IN
251                                    Syracuse, NY
252              Chicago-Naperville-Elgin, IL-IN-WI
253              Chicago-Naperville-Elgin, IL-IN-WI
254                                   Duluth, MN-WI
255              Los Angeles-Long Beach-Anaheim, CA
256                  Des Moines-West Des Moines, IA
257                 Charleston-North Charleston, SC
258                Indianapolis-Carmel-Anderson, IN
259            Riverside-San Bernardino-Ontario, CA
260                  Boston-Cambridge-Newton, MA-NH
261                              Kansas City, MO-KS
262                                 Albuquerque, NM
263                                        Reno, NV
264                                 Albuquerque, NM
265         Miami-Fort Lauderdale-Pompano Beach, FL
266     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
267                                   Rochester, MN
268                     Portland-South Portland, ME
269                  Boston-Cambridge-Newton, MA-NH
270                     South Bend-Mishawaka, IN-MI
271  Nashville-Davidson--Murfreesboro--Franklin, TN
272    Washington-Arlington-Alexandria, DC-VA-MD-WV
273                Las Vegas-Henderson-Paradise, NV
274                                Raleigh-Cary, NC
275                                Raleigh-Cary, NC
276                                Raleigh-Cary, NC
277                                Raleigh-Cary, NC
278              San Francisco-Oakland-Berkeley, CA
279                                Raleigh-Cary, NC
280                                Raleigh-Cary, NC
281                 Dallas-Fort Worth-Arlington, TX
282                 Burlington-South Burlington, VT
283                       Cape Coral-Fort Myers, FL
284                                   Green Bay, WI
285              San Diego-Chula Vista-Carlsbad, CA
286                   Orlando-Kissimmee-Sanford, FL
287             Tampa-St. Petersburg-Clearwater, FL
288                                Fayetteville, NC
289                     Seattle-Tacoma-Bellevue, WA
290                   Baltimore-Columbia-Towson, MD
291    Washington-Arlington-Alexandria, DC-VA-MD-WV
292                     Seattle-Tacoma-Bellevue, WA
293                     Seattle-Tacoma-Bellevue, WA
294                          Milwaukee-Waukesha, WI
295                     Seattle-Tacoma-Bellevue, WA
296                     Seattle-Tacoma-Bellevue, WA
297                                  St. George, UT
298                     Seattle-Tacoma-Bellevue, WA
299  Nashville-Davidson--Murfreesboro--Franklin, TN
300                            Cincinnati, OH-KY-IN
301         Miami-Fort Lauderdale-Pompano Beach, FL
302                     Detroit-Warren-Dearborn, MI
303                     Detroit-Warren-Dearborn, MI
304                              Salt Lake City, UT
305                              Salt Lake City, UT
306                                Cedar Rapids, IA
307                          Milwaukee-Waukesha, WI
308                                    Columbus, OH
309                              Salt Lake City, UT
310                              Salt Lake City, UT
311                              Salt Lake City, UT
312                              Salt Lake City, UT
313                              Salt Lake City, UT
314           New York-Newark-Jersey City, NY-NJ-PA
315                              Salt Lake City, UT
316                              Salt Lake City, UT
317                              Salt Lake City, UT
318                              Salt Lake City, UT
319                              Salt Lake City, UT
320  Nashville-Davidson--Murfreesboro--Franklin, TN
321         Minneapolis-St. Paul-Bloomington, MN-WI
322                              Chattanooga, TN-GA
323                       Grand Rapids-Kentwood, MI
324                          Eugene-Springfield, OR
325                                        Bend, OR
326              Louisville/Jefferson County, KY-IN
327                                St. Louis, MO-IL
328                      Spokane-Spokane Valley, WA
329                                   Green Bay, WI
330                                 Sioux Falls, SD
331                                     Saginaw, MI
332                Las Vegas-Henderson-Paradise, NV
333             Tampa-St. Petersburg-Clearwater, FL
334             Tampa-St. Petersburg-Clearwater, FL
335             Tampa-St. Petersburg-Clearwater, FL
336            Atlanta-Sandy Springs-Alpharetta, GA
337            Atlanta-Sandy Springs-Alpharetta, GA
338                Austin-Round Rock-Georgetown, TX
339                   Baltimore-Columbia-Towson, MD
340                            Cleveland-Elyria, OH
341              San Diego-Chula Vista-Carlsbad, CA
342            Riverside-San Bernardino-Ontario, CA
343               Charlotte-Concord-Gastonia, NC-SC
344                      Denver-Aurora-Lakewood, CO
345                      Denver-Aurora-Lakewood, CO
346           New York-Newark-Jersey City, NY-NJ-PA
347                Las Vegas-Henderson-Paradise, NV
348                   Orlando-Kissimmee-Sanford, FL
349            Riverside-San Bernardino-Ontario, CA
350                               Memphis, TN-MS-AR
351         Miami-Fort Lauderdale-Pompano Beach, FL
352             Portland-Vancouver-Hillsboro, OR-WA
353     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
354     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
355     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
356                       Phoenix-Mesa-Chandler, AZ
357                                Raleigh-Cary, NC
358              San Diego-Chula Vista-Carlsbad, CA
359                   San Antonio-New Braunfels, TX
360                     San Juan-Bayamón-Caguas, PR
361           New York-Newark-Jersey City, NY-NJ-PA
362               Charlotte-Concord-Gastonia, NC-SC
363               Charlotte-Concord-Gastonia, NC-SC
364                              Urban Honolulu, HI
365                Las Vegas-Henderson-Paradise, NV
366                       Phoenix-Mesa-Chandler, AZ
367         Miami-Fort Lauderdale-Pompano Beach, FL
368            Houston-The Woodlands-Sugar Land, TX
369           New York-Newark-Jersey City, NY-NJ-PA
370                      Denver-Aurora-Lakewood, CO
371           New York-Newark-Jersey City, NY-NJ-PA
372           New York-Newark-Jersey City, NY-NJ-PA
373           New York-Newark-Jersey City, NY-NJ-PA
374                                   Asheville, NC
375                       Greensboro-High Point, NC
376                                 Springfield, IL
377    Washington-Arlington-Alexandria, DC-VA-MD-WV
378    Washington-Arlington-Alexandria, DC-VA-MD-WV
379                                   Knoxville, TN
380                       Cape Coral-Fort Myers, FL
381            Houston-The Woodlands-Sugar Land, TX
382              San Francisco-Oakland-Berkeley, CA
383  Nashville-Davidson--Murfreesboro--Franklin, TN
384              San Francisco-Oakland-Berkeley, CA
385              San Francisco-Oakland-Berkeley, CA
386             Tampa-St. Petersburg-Clearwater, FL
387                                Jacksonville, FL
388                     Seattle-Tacoma-Bellevue, WA
389                                   Rochester, NY
390                     Seattle-Tacoma-Bellevue, WA
391                                St. Louis, MO-IL
392                                    Syracuse, NY
393                Indianapolis-Carmel-Anderson, IN
394                       Phoenix-Mesa-Chandler, AZ
395        Little Rock-North Little Rock-Conway, AR
396           New York-Newark-Jersey City, NY-NJ-PA
397                                   Knoxville, TN
398                                  Pittsburgh, PA
399           Hartford-East Hartford-Middletown, CT
400                                            <NA>
401                   Orlando-Kissimmee-Sanford, FL
402                Austin-Round Rock-Georgetown, TX
403                Austin-Round Rock-Georgetown, TX
404                Austin-Round Rock-Georgetown, TX
405              Louisville/Jefferson County, KY-IN
406                Las Vegas-Henderson-Paradise, NV
407            Atlanta-Sandy Springs-Alpharetta, GA
408                                    Syracuse, NY
409                  Boston-Cambridge-Newton, MA-NH
410                                    Fargo, ND-MN
411           New York-Newark-Jersey City, NY-NJ-PA
412              Los Angeles-Long Beach-Anaheim, CA
413                               Oklahoma City, OK
414                                      Fresno, CA
415              Fayetteville-Springdale-Rogers, AR
416             Portland-Vancouver-Hillsboro, OR-WA
417                   Orlando-Kissimmee-Sanford, FL
418                            Cincinnati, OH-KY-IN
419                   Orlando-Kissimmee-Sanford, FL
420             Tampa-St. Petersburg-Clearwater, FL
421                            Cincinnati, OH-KY-IN
422                                     Wichita, KS
423                                      Monroe, LA
424    Washington-Arlington-Alexandria, DC-VA-MD-WV
425    Washington-Arlington-Alexandria, DC-VA-MD-WV
426                 Dallas-Fort Worth-Arlington, TX
427                 Dallas-Fort Worth-Arlington, TX
428                           Birmingham-Hoover, AL
429              San Jose-Sunnyvale-Santa Clara, CA
430                   Orlando-Kissimmee-Sanford, FL
431         Miami-Fort Lauderdale-Pompano Beach, FL
432                                    Richmond, VA
433                                       Tulsa, OK
434              Los Angeles-Long Beach-Anaheim, CA
435                       Phoenix-Mesa-Chandler, AZ
436         Miami-Fort Lauderdale-Pompano Beach, FL
437                            Colorado Springs, CO
438                      Spokane-Spokane Valley, WA
439                                 Garden City, KS
440                                   Lynchburg, VA
441              Chicago-Naperville-Elgin, IL-IN-WI
442                                      Bangor, ME
443                                Jacksonville, FL
444                                 Sioux Falls, SD
445              Louisville/Jefferson County, KY-IN
446                                    Syracuse, NY
447                Austin-Round Rock-Georgetown, TX
448            Riverside-San Bernardino-Ontario, CA
449                                   Lafayette, LA
450    Washington-Arlington-Alexandria, DC-VA-MD-WV
451                Austin-Round Rock-Georgetown, TX
452              San Jose-Sunnyvale-Santa Clara, CA
453                              Kansas City, MO-KS
454         Miami-Fort Lauderdale-Pompano Beach, FL
455  Nashville-Davidson--Murfreesboro--Franklin, TN
456                            Cleveland-Elyria, OH
457                              Kansas City, MO-KS
458                                  Fort Wayne, IN
459                        New Orleans-Metairie, LA
460                                    Columbia, SC
461                           Lexington-Fayette, KY
462              Chicago-Naperville-Elgin, IL-IN-WI
463              Chicago-Naperville-Elgin, IL-IN-WI
464              Chicago-Naperville-Elgin, IL-IN-WI
465                                        Reno, NV
466                       Grand Rapids-Kentwood, MI
467              Chicago-Naperville-Elgin, IL-IN-WI
468              Fayetteville-Springdale-Rogers, AR
469              Los Angeles-Long Beach-Anaheim, CA
470                                    Key West, FL
471              Louisville/Jefferson County, KY-IN
472            Houston-The Woodlands-Sugar Land, TX
473                  Augusta-Richmond County, GA-SC
474                                Raleigh-Cary, NC
475                        New Orleans-Metairie, LA
476                                 Albuquerque, NM
477            Atlanta-Sandy Springs-Alpharetta, GA
478                        Lansing-East Lansing, MI
479                      Denver-Aurora-Lakewood, CO
480                Las Vegas-Henderson-Paradise, NV
481                     Seattle-Tacoma-Bellevue, WA
482                     Atlantic City-Hammonton, NJ
483                     Atlantic City-Hammonton, NJ
484                     Atlantic City-Hammonton, NJ
485            Atlanta-Sandy Springs-Alpharetta, GA
486                Austin-Round Rock-Georgetown, TX
487            Atlanta-Sandy Springs-Alpharetta, GA
488              Los Angeles-Long Beach-Anaheim, CA
489            Atlanta-Sandy Springs-Alpharetta, GA
490            Atlanta-Sandy Springs-Alpharetta, GA
491           Hartford-East Hartford-Middletown, CT
492  Nashville-Davidson--Murfreesboro--Franklin, TN
493  Nashville-Davidson--Murfreesboro--Franklin, TN
494  Nashville-Davidson--Murfreesboro--Franklin, TN
495  Nashville-Davidson--Murfreesboro--Franklin, TN
496                  Boston-Cambridge-Newton, MA-NH
497                  Boston-Cambridge-Newton, MA-NH
498                  Boston-Cambridge-Newton, MA-NH
499                  Boston-Cambridge-Newton, MA-NH
500                  Boston-Cambridge-Newton, MA-NH
501              Los Angeles-Long Beach-Anaheim, CA
502                   Baltimore-Columbia-Towson, MD
503                      Denver-Aurora-Lakewood, CO
504                   Baltimore-Columbia-Towson, MD
505                   Baltimore-Columbia-Towson, MD
506                   Baltimore-Columbia-Towson, MD
507                   Baltimore-Columbia-Towson, MD
508                            Cleveland-Elyria, OH
509                   Orlando-Kissimmee-Sanford, FL
510                            Cleveland-Elyria, OH
511                            Cleveland-Elyria, OH
512            Houston-The Woodlands-Sugar Land, TX
513               Charlotte-Concord-Gastonia, NC-SC
514                                    Columbus, OH
515                   Baltimore-Columbia-Towson, MD
516                 Dallas-Fort Worth-Arlington, TX
517                 Dallas-Fort Worth-Arlington, TX
518                 Dallas-Fort Worth-Arlington, TX
519                 Dallas-Fort Worth-Arlington, TX
520              Chicago-Naperville-Elgin, IL-IN-WI
521                     Detroit-Warren-Dearborn, MI
522           New York-Newark-Jersey City, NY-NJ-PA
523           New York-Newark-Jersey City, NY-NJ-PA
524           New York-Newark-Jersey City, NY-NJ-PA
525           New York-Newark-Jersey City, NY-NJ-PA
526           New York-Newark-Jersey City, NY-NJ-PA
527         Miami-Fort Lauderdale-Pompano Beach, FL
528         Miami-Fort Lauderdale-Pompano Beach, FL
529         Miami-Fort Lauderdale-Pompano Beach, FL
530         Miami-Fort Lauderdale-Pompano Beach, FL
531         Miami-Fort Lauderdale-Pompano Beach, FL
532         Miami-Fort Lauderdale-Pompano Beach, FL
533         Miami-Fort Lauderdale-Pompano Beach, FL
534         Miami-Fort Lauderdale-Pompano Beach, FL
535            Houston-The Woodlands-Sugar Land, TX
536            Houston-The Woodlands-Sugar Land, TX
537                Indianapolis-Carmel-Anderson, IN
538                Indianapolis-Carmel-Anderson, IN
539                Indianapolis-Carmel-Anderson, IN
540                Las Vegas-Henderson-Paradise, NV
541                Las Vegas-Henderson-Paradise, NV
542            Atlanta-Sandy Springs-Alpharetta, GA
543                       Greensboro-High Point, NC
544                Las Vegas-Henderson-Paradise, NV
545                Las Vegas-Henderson-Paradise, NV
546                Las Vegas-Henderson-Paradise, NV
547              Los Angeles-Long Beach-Anaheim, CA
548              Los Angeles-Long Beach-Anaheim, CA
549             Tampa-St. Petersburg-Clearwater, FL
550              Los Angeles-Long Beach-Anaheim, CA
551              Los Angeles-Long Beach-Anaheim, CA
552                                  Pittsburgh, PA
553                                  Pittsburgh, PA
554                              Kansas City, MO-KS
555                              Kansas City, MO-KS
556                   Orlando-Kissimmee-Sanford, FL
557                   Orlando-Kissimmee-Sanford, FL
558                   Orlando-Kissimmee-Sanford, FL
559              San Francisco-Oakland-Berkeley, CA
560                   Orlando-Kissimmee-Sanford, FL
561                   Orlando-Kissimmee-Sanford, FL
562                          Milwaukee-Waukesha, WI
563     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
564                        New Orleans-Metairie, LA
565           New York-Newark-Jersey City, NY-NJ-PA
566              Chicago-Naperville-Elgin, IL-IN-WI
567              Chicago-Naperville-Elgin, IL-IN-WI
568              Chicago-Naperville-Elgin, IL-IN-WI
569              Chicago-Naperville-Elgin, IL-IN-WI
570                                  Pittsburgh, PA
571                                  Pittsburgh, PA
572                                  Pittsburgh, PA
573              San Diego-Chula Vista-Carlsbad, CA
574                     San Juan-Bayamón-Caguas, PR
575                                St. Louis, MO-IL
576            Houston-The Woodlands-Sugar Land, TX
577             Tampa-St. Petersburg-Clearwater, FL
578             Tampa-St. Petersburg-Clearwater, FL
579             Tampa-St. Petersburg-Clearwater, FL
580             Tampa-St. Petersburg-Clearwater, FL
581               North Port-Sarasota-Bradenton, FL
582              Louisville/Jefferson County, KY-IN
583          Crestview-Fort Walton Beach-Destin, FL
584                Las Vegas-Henderson-Paradise, NV
585                       Phoenix-Mesa-Chandler, AZ
586                     Albany-Schenectady-Troy, NY
587                Las Vegas-Henderson-Paradise, NV
588           New York-Newark-Jersey City, NY-NJ-PA
589         Minneapolis-St. Paul-Bloomington, MN-WI
590     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
591         Miami-Fort Lauderdale-Pompano Beach, FL
592  Nashville-Davidson--Murfreesboro--Franklin, TN
593           New York-Newark-Jersey City, NY-NJ-PA
594           New York-Newark-Jersey City, NY-NJ-PA
595             Tampa-St. Petersburg-Clearwater, FL
596          Crestview-Fort Walton Beach-Destin, FL
597                                St. Louis, MO-IL
598                   San Antonio-New Braunfels, TX
599                 Charleston-North Charleston, SC
600                   Baltimore-Columbia-Towson, MD
601               Charlotte-Concord-Gastonia, NC-SC
602               Charlotte-Concord-Gastonia, NC-SC
603               Charlotte-Concord-Gastonia, NC-SC
604               Charlotte-Concord-Gastonia, NC-SC
605               Charlotte-Concord-Gastonia, NC-SC
606         Miami-Fort Lauderdale-Pompano Beach, FL
607                               Oklahoma City, OK
608                   Orlando-Kissimmee-Sanford, FL
609                Indianapolis-Carmel-Anderson, IN
610                               Memphis, TN-MS-AR
611                       Phoenix-Mesa-Chandler, AZ
612                                       Akron, OH
613                            Cleveland-Elyria, OH
614                            Dayton-Kettering, OH
615                Austin-Round Rock-Georgetown, TX
616    Washington-Arlington-Alexandria, DC-VA-MD-WV
617    Washington-Arlington-Alexandria, DC-VA-MD-WV
618    Washington-Arlington-Alexandria, DC-VA-MD-WV
619              San Francisco-Oakland-Berkeley, CA
620                 Dallas-Fort Worth-Arlington, TX
621    Washington-Arlington-Alexandria, DC-VA-MD-WV
622           New York-Newark-Jersey City, NY-NJ-PA
623                       Providence-Warwick, RI-MA
624            Atlanta-Sandy Springs-Alpharetta, GA
625                     Detroit-Warren-Dearborn, MI
626                     Portland-South Portland, ME
627                                    Savannah, GA
628        Little Rock-North Little Rock-Conway, AR
629               Palm Bay-Melbourne-Titusville, FL
630                     Detroit-Warren-Dearborn, MI
631                              Kansas City, MO-KS
632              Chicago-Naperville-Elgin, IL-IN-WI
633                          Milwaukee-Waukesha, WI
634                                       Flint, MI
635                            Dayton-Kettering, OH
636                  Boston-Cambridge-Newton, MA-NH
637                                  Pittsburgh, PA
638                 Dallas-Fort Worth-Arlington, TX
639                     Omaha-Council Bluffs, NE-IA
640           New York-Newark-Jersey City, NY-NJ-PA
641         Miami-Fort Lauderdale-Pompano Beach, FL
642            Atlanta-Sandy Springs-Alpharetta, GA
643                       Cape Coral-Fort Myers, FL
644                         Buffalo-Cheektowaga, NY
645                                  Pittsburgh, PA
646               Allentown-Bethlehem-Easton, PA-NJ
647      Virginia Beach-Norfolk-Newport News, VA-NC
648      Virginia Beach-Norfolk-Newport News, VA-NC
649                                Jacksonville, FL
650                                Jacksonville, FL
651                           Manchester-Nashua, NH
652                  Boston-Cambridge-Newton, MA-NH
653                                Jacksonville, FL
654                                   Asheville, NC
655                                Raleigh-Cary, NC
656                                Fayetteville, NC
657                                Jacksonville, NC
658                         Harrisburg-Carlisle, PA
659         Miami-Fort Lauderdale-Pompano Beach, FL
660                 Charleston-North Charleston, SC
661            Houston-The Woodlands-Sugar Land, TX
662                  Des Moines-West Des Moines, IA
663                                 Spartanburg, SC
664                     Portland-South Portland, ME
665                        New Orleans-Metairie, LA
666                                     Jackson, MS
667                        New Orleans-Metairie, LA
668                           Lexington-Fayette, KY
669     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
670     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
671                           Birmingham-Hoover, AL
672     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
673     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
674     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
675     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
676                      Denver-Aurora-Lakewood, CO
677              San Diego-Chula Vista-Carlsbad, CA
678                     Seattle-Tacoma-Bellevue, WA
679                Indianapolis-Carmel-Anderson, IN
680           New York-Newark-Jersey City, NY-NJ-PA
681              Chicago-Naperville-Elgin, IL-IN-WI
682           Hartford-East Hartford-Middletown, CT
683                                   Knoxville, TN
684                       Providence-Warwick, RI-MA
685                                Raleigh-Cary, NC
686                                St. Louis, MO-IL
687                                    Syracuse, NY
688              Louisville/Jefferson County, KY-IN
689                                 Albuquerque, NM
690            Houston-The Woodlands-Sugar Land, TX
691                                     Lincoln, NE
692                     Albany-Schenectady-Troy, NY
693            Riverside-San Bernardino-Ontario, CA
694                            Glenwood Springs, CO
695                              Urban Honolulu, HI
696                     Seattle-Tacoma-Bellevue, WA
697                                 Albuquerque, NM
698  Nashville-Davidson--Murfreesboro--Franklin, TN
699                              Kansas City, MO-KS
700                                            <NA>
701                                     Medford, OR
702            Riverside-San Bernardino-Ontario, CA
703                   Santa Maria-Santa Barbara, CA
704              Los Angeles-Long Beach-Anaheim, CA
705                                  Boise City, ID
706                                  Boise City, ID
707                                  Boise City, ID
708            Atlanta-Sandy Springs-Alpharetta, GA
709                                  Boise City, ID
710                                  Boise City, ID
711                                        Hilo, HI
712              Los Angeles-Long Beach-Anaheim, CA
713                                  Boise City, ID
714                         Santa Rosa-Petaluma, CA
715              Los Angeles-Long Beach-Anaheim, CA
716              Los Angeles-Long Beach-Anaheim, CA
717                     Kahului-Wailuku-Lahaina, HI
718                                     Bozeman, MT
719                   Baltimore-Columbia-Towson, MD
720                                     Bozeman, MT
721                               Oklahoma City, OK
722                              Killeen-Temple, TX
723                  Boston-Cambridge-Newton, MA-NH
724           New York-Newark-Jersey City, NY-NJ-PA
725                            Colorado Springs, CO
726              Los Angeles-Long Beach-Anaheim, CA
727                 Dallas-Fort Worth-Arlington, TX
728                      Denver-Aurora-Lakewood, CO
729                      Denver-Aurora-Lakewood, CO
730                      Denver-Aurora-Lakewood, CO
731                      Denver-Aurora-Lakewood, CO
732                      Denver-Aurora-Lakewood, CO
733                      Denver-Aurora-Lakewood, CO
734                                      Tucson, AZ
735                              Salt Lake City, UT
736                                  Pittsburgh, PA
737                  Des Moines-West Des Moines, IA
738                          Kennewick-Richland, WA
739                         Harrisburg-Carlisle, PA
740                          Eugene-Springfield, OR
741                      Denver-Aurora-Lakewood, CO
742                                      Fresno, CA
743                                      Fresno, CA
744                                      Fresno, CA
745                                      Fresno, CA
746                                        Bend, OR
747              Chicago-Naperville-Elgin, IL-IN-WI
748                                   Kalispell, MT
749              Chicago-Naperville-Elgin, IL-IN-WI
750         Miami-Fort Lauderdale-Pompano Beach, FL
751               North Port-Sarasota-Bradenton, FL
752                                Jacksonville, FL
753                       Phoenix-Mesa-Chandler, AZ
754                      Spokane-Spokane Valley, WA
755                      Spokane-Spokane Valley, WA
756                  Boston-Cambridge-Newton, MA-NH
757  Nashville-Davidson--Murfreesboro--Franklin, TN
758         Miami-Fort Lauderdale-Pompano Beach, FL
759         Miami-Fort Lauderdale-Pompano Beach, FL
760              San Jose-Sunnyvale-Santa Clara, CA
761               Allentown-Bethlehem-Easton, PA-NJ
762                           Steamboat Springs, CO
763                              Salt Lake City, UT
764                       La Crosse-Onalaska, WI-MN
765            Houston-The Woodlands-Sugar Land, TX
766            Houston-The Woodlands-Sugar Land, TX
767                                   Pocatello, ID
768                            Cleveland-Elyria, OH
769                                    Fargo, ND-MN
770    Washington-Arlington-Alexandria, DC-VA-MD-WV
771                                  Pittsburgh, PA
772              Chicago-Naperville-Elgin, IL-IN-WI
773              Los Angeles-Long Beach-Anaheim, CA
774              Los Angeles-Long Beach-Anaheim, CA
775              Los Angeles-Long Beach-Anaheim, CA
776              Los Angeles-Long Beach-Anaheim, CA
777              Los Angeles-Long Beach-Anaheim, CA
778              Los Angeles-Long Beach-Anaheim, CA
779              Los Angeles-Long Beach-Anaheim, CA
780              Los Angeles-Long Beach-Anaheim, CA
781                                 Baton Rouge, LA
782              San Francisco-Oakland-Berkeley, CA
783                Indianapolis-Carmel-Anderson, IN
784                           Kalamazoo-Portage, MI
785                   San Antonio-New Braunfels, TX
786                                     Madison, WI
787         Minneapolis-St. Paul-Bloomington, MN-WI
788              San Diego-Chula Vista-Carlsbad, CA
789                          Milwaukee-Waukesha, WI
790                Las Vegas-Henderson-Paradise, NV
791                          Eugene-Springfield, OR
792                                     Salinas, CA
793                                     Madison, WI
794         Minneapolis-St. Paul-Bloomington, MN-WI
795         Minneapolis-St. Paul-Bloomington, MN-WI
796                                 Great Falls, MT
797                                   Green Bay, WI
798              San Francisco-Oakland-Berkeley, CA
799                                     Roswell, NM
800                     Kahului-Wailuku-Lahaina, HI
801                      Scranton--Wilkes-Barre, PA
802           New York-Newark-Jersey City, NY-NJ-PA
803                                Jacksonville, FL
804                     Omaha-Council Bluffs, NE-IA
805                       Providence-Warwick, RI-MA
806                            Sault Ste. Marie, MI
807            Riverside-San Bernardino-Ontario, CA
808                   San Antonio-New Braunfels, TX
809            Riverside-San Bernardino-Ontario, CA
810         Miami-Fort Lauderdale-Pompano Beach, FL
811              Chicago-Naperville-Elgin, IL-IN-WI
812              Chicago-Naperville-Elgin, IL-IN-WI
813              Chicago-Naperville-Elgin, IL-IN-WI
814              Chicago-Naperville-Elgin, IL-IN-WI
815                      Denver-Aurora-Lakewood, CO
816             Portland-Vancouver-Hillsboro, OR-WA
817             Portland-Vancouver-Hillsboro, OR-WA
818             Portland-Vancouver-Hillsboro, OR-WA
819             Portland-Vancouver-Hillsboro, OR-WA
820             Portland-Vancouver-Hillsboro, OR-WA
821             Portland-Vancouver-Hillsboro, OR-WA
822             Portland-Vancouver-Hillsboro, OR-WA
823             Portland-Vancouver-Hillsboro, OR-WA
824                              Kansas City, MO-KS
825                                        Hilo, HI
826                       Phoenix-Mesa-Chandler, AZ
827                       Phoenix-Mesa-Chandler, AZ
828                                  Pittsburgh, PA
829                          Milwaukee-Waukesha, WI
830                Las Vegas-Henderson-Paradise, NV
831                                        Bend, OR
832            Riverside-San Bernardino-Ontario, CA
833                                  Boise City, ID
834                                     Madison, WI
835                                  Rapid City, SD
836                               Memphis, TN-MS-AR
837            Riverside-San Bernardino-Ontario, CA
838                                      Helena, MT
839                                    Appleton, WI
840               Charlotte-Concord-Gastonia, NC-SC
841                                    Richmond, VA
842                                        Reno, NV
843                 Sacramento-Roseville-Folsom, CA
844              San Diego-Chula Vista-Carlsbad, CA
845              San Diego-Chula Vista-Carlsbad, CA
846              San Diego-Chula Vista-Carlsbad, CA
847              San Diego-Chula Vista-Carlsbad, CA
848              San Diego-Chula Vista-Carlsbad, CA
849              San Diego-Chula Vista-Carlsbad, CA
850              San Diego-Chula Vista-Carlsbad, CA
851                                     Salinas, CA
852                    Prescott Valley-Prescott, AZ
853                 San Luis Obispo-Paso Robles, CA
854                Las Vegas-Henderson-Paradise, NV
855                   Santa Maria-Santa Barbara, CA
856                                St. Louis, MO-IL
857                 San Luis Obispo-Paso Robles, CA
858                Las Vegas-Henderson-Paradise, NV
859         Miami-Fort Lauderdale-Pompano Beach, FL
860                     Seattle-Tacoma-Bellevue, WA
861                     Seattle-Tacoma-Bellevue, WA
862                     Seattle-Tacoma-Bellevue, WA
863                     Seattle-Tacoma-Bellevue, WA
864              San Francisco-Oakland-Berkeley, CA
865              San Francisco-Oakland-Berkeley, CA
866              San Francisco-Oakland-Berkeley, CA
867              San Francisco-Oakland-Berkeley, CA
868              San Francisco-Oakland-Berkeley, CA
869              San Francisco-Oakland-Berkeley, CA
870              San Francisco-Oakland-Berkeley, CA
871              San Francisco-Oakland-Berkeley, CA
872              San Jose-Sunnyvale-Santa Clara, CA
873              San Jose-Sunnyvale-Santa Clara, CA
874              San Jose-Sunnyvale-Santa Clara, CA
875              San Jose-Sunnyvale-Santa Clara, CA
876              San Jose-Sunnyvale-Santa Clara, CA
877                     Detroit-Warren-Dearborn, MI
878                                      Tucson, AZ
879                                        Hilo, HI
880                              Salt Lake City, UT
881                                     Durango, CO
882                   Orlando-Kissimmee-Sanford, FL
883                                 Bakersfield, CA
884                 San Luis Obispo-Paso Robles, CA
885                              Urban Honolulu, HI
886                 Sacramento-Roseville-Folsom, CA
887                 Sacramento-Roseville-Folsom, CA
888                 Sacramento-Roseville-Folsom, CA
889                              Urban Honolulu, HI
890                                        Bend, OR
891                     Seattle-Tacoma-Bellevue, WA
892              Los Angeles-Long Beach-Anaheim, CA
893                           Birmingham-Hoover, AL
894                     South Bend-Mishawaka, IN-MI
895                 Dallas-Fort Worth-Arlington, TX
896                         Santa Rosa-Petaluma, CA
897                         Santa Rosa-Petaluma, CA
898                         Santa Rosa-Petaluma, CA
899                     Omaha-Council Bluffs, NE-IA
900                     Omaha-Council Bluffs, NE-IA
901                                   Anchorage, AK
902                                      Tucson, AZ
903    Washington-Arlington-Alexandria, DC-VA-MD-WV
904              Los Angeles-Long Beach-Anaheim, CA
905                                 Albuquerque, NM
906                                    Billings, MT
907              Chicago-Naperville-Elgin, IL-IN-WI
908                                  Boise City, ID
909                                  Boise City, ID
910                                  Boise City, ID
911                                     Bozeman, MT
912                          Kennewick-Richland, WA
913                     Detroit-Warren-Dearborn, MI
914           New York-Newark-Jersey City, NY-NJ-PA
915                        New Orleans-Metairie, LA
916                                    Missoula, MT
917                                   Kalispell, MT
918                      Spokane-Spokane Valley, WA
919           New York-Newark-Jersey City, NY-NJ-PA
920                   Santa Maria-Santa Barbara, CA
921           New York-Newark-Jersey City, NY-NJ-PA
922                      Spokane-Spokane Valley, WA
923                                     Medford, OR
924                                      Helena, MT
925                                 Idaho Falls, ID
926              Los Angeles-Long Beach-Anaheim, CA
927                                     Medford, OR
928                                     Medford, OR
929              San Francisco-Oakland-Berkeley, CA
930                     Seattle-Tacoma-Bellevue, WA
931                     Seattle-Tacoma-Bellevue, WA
932                     Seattle-Tacoma-Bellevue, WA
933                     Seattle-Tacoma-Bellevue, WA
934             Portland-Vancouver-Hillsboro, OR-WA
935             Portland-Vancouver-Hillsboro, OR-WA
936            Riverside-San Bernardino-Ontario, CA
937                                     El Paso, TX
938                                     Pullman, WA
939                                        Bend, OR
940              San Diego-Chula Vista-Carlsbad, CA
941                   Santa Maria-Santa Barbara, CA
942                     Seattle-Tacoma-Bellevue, WA
943                     Seattle-Tacoma-Bellevue, WA
944                     Seattle-Tacoma-Bellevue, WA
945                     Seattle-Tacoma-Bellevue, WA
946                     Seattle-Tacoma-Bellevue, WA
947                     Seattle-Tacoma-Bellevue, WA
948                     Seattle-Tacoma-Bellevue, WA
949                     Seattle-Tacoma-Bellevue, WA
950                     Seattle-Tacoma-Bellevue, WA
951                     Seattle-Tacoma-Bellevue, WA
952                     Seattle-Tacoma-Bellevue, WA
953                     Seattle-Tacoma-Bellevue, WA
954                     Seattle-Tacoma-Bellevue, WA
955                     Seattle-Tacoma-Bellevue, WA
956                     Seattle-Tacoma-Bellevue, WA
957              San Francisco-Oakland-Berkeley, CA
958              San Jose-Sunnyvale-Santa Clara, CA
959              Los Angeles-Long Beach-Anaheim, CA
960                         Santa Rosa-Petaluma, CA
961                      Denver-Aurora-Lakewood, CO
962                Austin-Round Rock-Georgetown, TX
963           Hartford-East Hartford-Middletown, CT
964     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
965                                   Kalispell, MT
966                                    Missoula, MT
967            Atlanta-Sandy Springs-Alpharetta, GA
968                                            <NA>
969                                    Appleton, WI
970                      Denver-Aurora-Lakewood, CO
971                Austin-Round Rock-Georgetown, TX
972                     Omaha-Council Bluffs, NE-IA
973                Austin-Round Rock-Georgetown, TX
974                                    Meridian, MS
975                     Seattle-Tacoma-Bellevue, WA
976              Los Angeles-Long Beach-Anaheim, CA
977           New York-Newark-Jersey City, NY-NJ-PA
978              Los Angeles-Long Beach-Anaheim, CA
979                Austin-Round Rock-Georgetown, TX
980           Hartford-East Hartford-Middletown, CT
981              Los Angeles-Long Beach-Anaheim, CA
982                                Raleigh-Cary, NC
983                                    Savannah, GA
984                       Greensboro-High Point, NC
985                           Birmingham-Hoover, AL
986                            Cincinnati, OH-KY-IN
987            Atlanta-Sandy Springs-Alpharetta, GA
988                                  Boise City, ID
989                                  Jackson, WY-ID
990                                        Bend, OR
991                  Boston-Cambridge-Newton, MA-NH
992                      Denver-Aurora-Lakewood, CO
993                   Orlando-Kissimmee-Sanford, FL
994                        New Orleans-Metairie, LA
995             Tampa-St. Petersburg-Clearwater, FL
996                 Hilton Head Island-Bluffton, SC
997                  Boston-Cambridge-Newton, MA-NH
998                                       Kapaa, HI
999                  Des Moines-West Des Moines, IA
1000                                      Kapaa, HI
1001                        Buffalo-Cheektowaga, NY
1002          New York-Newark-Jersey City, NY-NJ-PA
1003                             Urban Honolulu, HI
1004                             Urban Honolulu, HI
1005                    Kahului-Wailuku-Lahaina, HI
1006               Las Vegas-Henderson-Paradise, NV
1007                       New Orleans-Metairie, LA
1008                                 Pittsburgh, PA
1009                                    Saginaw, MI
1010                    Portland-South Portland, ME
1011                                    Lincoln, NE
1012                           Cleveland-Elyria, OH
1013                           Cleveland-Elyria, OH
1014                      Cape Coral-Fort Myers, FL
1015                                       Reno, NV
1016                           Colorado Springs, CO
1017                                     Salina, KS
1018          New York-Newark-Jersey City, NY-NJ-PA
1019        Miami-Fort Lauderdale-Pompano Beach, FL
1020                 Boston-Cambridge-Newton, MA-NH
1021         Crestview-Fort Walton Beach-Destin, FL
1022                     Denver-Aurora-Lakewood, CO
1023                  Santa Maria-Santa Barbara, CA
1024          New York-Newark-Jersey City, NY-NJ-PA
1025                     Denver-Aurora-Lakewood, CO
1026   Washington-Arlington-Alexandria, DC-VA-MD-WV
1027     Virginia Beach-Norfolk-Newport News, VA-NC
1028                                  Duluth, MN-WI
1029                     Denver-Aurora-Lakewood, CO
1030                     Denver-Aurora-Lakewood, CO
1031                     Denver-Aurora-Lakewood, CO
1032                     Denver-Aurora-Lakewood, CO
1033                Dallas-Fort Worth-Arlington, TX
1034                                     Joplin, MO
1035           Houston-The Woodlands-Sugar Land, TX
1036                     Denver-Aurora-Lakewood, CO
1037                      Cape Coral-Fort Myers, FL
1038          New York-Newark-Jersey City, NY-NJ-PA
1039                           Colorado Springs, CO
1040                Sacramento-Roseville-Folsom, CA
1041 Nashville-Davidson--Murfreesboro--Franklin, TN
1042                           Colorado Springs, CO
1043                              Oklahoma City, OK
1044          New York-Newark-Jersey City, NY-NJ-PA
1045        Miami-Fort Lauderdale-Pompano Beach, FL
1046          New York-Newark-Jersey City, NY-NJ-PA
1047                             Salt Lake City, UT
1048                                 Jackson, WY-ID
1049          New York-Newark-Jersey City, NY-NJ-PA
1050          New York-Newark-Jersey City, NY-NJ-PA
1051          New York-Newark-Jersey City, NY-NJ-PA
1052          New York-Newark-Jersey City, NY-NJ-PA
1053          New York-Newark-Jersey City, NY-NJ-PA
1054          New York-Newark-Jersey City, NY-NJ-PA
1055          New York-Newark-Jersey City, NY-NJ-PA
1056          New York-Newark-Jersey City, NY-NJ-PA
1057          New York-Newark-Jersey City, NY-NJ-PA
1058          New York-Newark-Jersey City, NY-NJ-PA
1059          New York-Newark-Jersey City, NY-NJ-PA
1060                                Sioux Falls, SD
1061             San Francisco-Oakland-Berkeley, CA
1062                                           <NA>
1063        Miami-Fort Lauderdale-Pompano Beach, FL
1064                             Killeen-Temple, TX
1065        Miami-Fort Lauderdale-Pompano Beach, FL
1066            Tampa-St. Petersburg-Clearwater, FL
1067                  San Antonio-New Braunfels, TX
1068                                Spartanburg, SC
1069                                 Pittsburgh, PA
1070             Louisville/Jefferson County, KY-IN
1071              North Port-Sarasota-Bradenton, FL
1072                                Panama City, FL
1073                       New Orleans-Metairie, LA
1074             Louisville/Jefferson County, KY-IN
1075                Sacramento-Roseville-Folsom, CA
1076                  Baltimore-Columbia-Towson, MD
1077                  Orlando-Kissimmee-Sanford, FL
1078   Washington-Arlington-Alexandria, DC-VA-MD-WV
1079   Washington-Arlington-Alexandria, DC-VA-MD-WV
1080   Washington-Arlington-Alexandria, DC-VA-MD-WV
1081   Washington-Arlington-Alexandria, DC-VA-MD-WV
1082   Washington-Arlington-Alexandria, DC-VA-MD-WV
1083   Washington-Arlington-Alexandria, DC-VA-MD-WV
1084   Washington-Arlington-Alexandria, DC-VA-MD-WV
1085   Washington-Arlington-Alexandria, DC-VA-MD-WV
1086                         Kennewick-Richland, WA
1087   Washington-Arlington-Alexandria, DC-VA-MD-WV
1088                                Albuquerque, NM
1089           Houston-The Woodlands-Sugar Land, TX
1090           Houston-The Woodlands-Sugar Land, TX
1091           Houston-The Woodlands-Sugar Land, TX
1092           Houston-The Woodlands-Sugar Land, TX
1093                                 Paducah, KY-IL
1094           Houston-The Woodlands-Sugar Land, TX
1095           Houston-The Woodlands-Sugar Land, TX
1096           Houston-The Woodlands-Sugar Land, TX
1097                Charleston-North Charleston, SC
1098                              Oklahoma City, OK
1099   Washington-Arlington-Alexandria, DC-VA-MD-WV
1100                    Portland-South Portland, ME
1101                                  Rochester, NY
1102                               Jacksonville, FL
1103                  San Antonio-New Braunfels, TX
1104          New York-Newark-Jersey City, NY-NJ-PA
1105                  Baltimore-Columbia-Towson, MD
1106                                   Columbus, OH
1107                                   Richmond, VA
1108               Las Vegas-Henderson-Paradise, NV
1109                                     Bangor, ME
1110                          Manchester-Nashua, NH
1111 Nashville-Davidson--Murfreesboro--Franklin, TN
1112                         Milwaukee-Waukesha, WI
1113                           Cleveland-Elyria, OH
1114               Indianapolis-Carmel-Anderson, IN
1115                  Orlando-Kissimmee-Sanford, FL
1116            Tampa-St. Petersburg-Clearwater, FL
1117                                   Columbus, OH
1118                           Cincinnati, OH-KY-IN
1119                                    Madison, WI
1120                           Cincinnati, OH-KY-IN
1121                    Detroit-Warren-Dearborn, MI
1122                           Cincinnati, OH-KY-IN
1123                      Cape Coral-Fort Myers, FL
1124             Los Angeles-Long Beach-Anaheim, CA
1125             Los Angeles-Long Beach-Anaheim, CA
1126                    Detroit-Warren-Dearborn, MI
1127             San Jose-Sunnyvale-Santa Clara, CA
1128            Portland-Vancouver-Hillsboro, OR-WA
1129                     Denver-Aurora-Lakewood, CO
1130                Sacramento-Roseville-Folsom, CA
1131                               Raleigh-Cary, NC
1132                  Baltimore-Columbia-Towson, MD
1133                    Kahului-Wailuku-Lahaina, HI
1134                      Cape Coral-Fort Myers, FL
1135     Virginia Beach-Norfolk-Newport News, VA-NC
1136                      Phoenix-Mesa-Chandler, AZ
1137             San Diego-Chula Vista-Carlsbad, CA
1138                                      Flint, MI
1139        Miami-Fort Lauderdale-Pompano Beach, FL
1140                                  Lafayette, LA
1141   Washington-Arlington-Alexandria, DC-VA-MD-WV
1142                          Birmingham-Hoover, AL
1143                                   Billings, MT
1144                                       Hilo, HI
1145                                   Syracuse, NY
1146                             Salt Lake City, UT
1147                               St. Louis, MO-IL
1148          Hartford-East Hartford-Middletown, CT
1149               Indianapolis-Carmel-Anderson, IN
1150             Chicago-Naperville-Elgin, IL-IN-WI
1151             Chicago-Naperville-Elgin, IL-IN-WI
1152             Chicago-Naperville-Elgin, IL-IN-WI
1153             Chicago-Naperville-Elgin, IL-IN-WI
1154           Riverside-San Bernardino-Ontario, CA
1155             Chicago-Naperville-Elgin, IL-IN-WI
1156             Chicago-Naperville-Elgin, IL-IN-WI
1157                     Denver-Aurora-Lakewood, CO
1158             Chicago-Naperville-Elgin, IL-IN-WI
1159             Chicago-Naperville-Elgin, IL-IN-WI
1160             Chicago-Naperville-Elgin, IL-IN-WI
1161             Chicago-Naperville-Elgin, IL-IN-WI
1162             Chicago-Naperville-Elgin, IL-IN-WI
1163             Chicago-Naperville-Elgin, IL-IN-WI
1164                                      Kapaa, HI
1165                              Memphis, TN-MS-AR
1166                                   Columbus, OH
1167                               Cedar Rapids, IA
1168            Portland-Vancouver-Hillsboro, OR-WA
1169   Washington-Arlington-Alexandria, DC-VA-MD-WV
1170                      Phoenix-Mesa-Chandler, AZ
1171                        Buffalo-Cheektowaga, NY
1172                             Chattanooga, TN-GA
1173                                    Bozeman, MT
1174             Louisville/Jefferson County, KY-IN
1175 Nashville-Davidson--Murfreesboro--Franklin, TN
1176                                     Peoria, IL
1177                                    Medford, OR
1178                  San Antonio-New Braunfels, TX
1179                Dallas-Fort Worth-Arlington, TX
1180           Riverside-San Bernardino-Ontario, CA
1181            Davenport-Moline-Rock Island, IA-IL
1182                Dallas-Fort Worth-Arlington, TX
1183                                     Ithaca, NY
1184                Burlington-South Burlington, VT
1185                               Cedar Rapids, IA
1186                           Dayton-Kettering, OH
1187             San Francisco-Oakland-Berkeley, CA
1188          New York-Newark-Jersey City, NY-NJ-PA
1189                      Providence-Warwick, RI-MA
1190             San Francisco-Oakland-Berkeley, CA
1191                    Portland-South Portland, ME
1192    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1193                               St. Louis, MO-IL
1194             San Francisco-Oakland-Berkeley, CA
1195                      Providence-Warwick, RI-MA
1196                                  Rochester, NY
1197            Davenport-Moline-Rock Island, IA-IL
1198   Washington-Arlington-Alexandria, DC-VA-MD-WV
1199          Hartford-East Hartford-Middletown, CT
1200        Miami-Fort Lauderdale-Pompano Beach, FL
1201            Tampa-St. Petersburg-Clearwater, FL
1202                           Cincinnati, OH-KY-IN
1203           Riverside-San Bernardino-Ontario, CA
1204                                     Tucson, AZ
1205                                Panama City, FL
1206                                Albuquerque, NM
1207                                      Kapaa, HI
1208                                Albuquerque, NM
1209                                Albuquerque, NM
1210                                Albuquerque, NM
1211                    Albany-Schenectady-Troy, NY
1212                  Orlando-Kissimmee-Sanford, FL
1213        Miami-Fort Lauderdale-Pompano Beach, FL
1214                      Cape Coral-Fort Myers, FL
1215                      Cape Coral-Fort Myers, FL
1216                Sacramento-Roseville-Folsom, CA
1217                    Albany-Schenectady-Troy, NY
1218                Sacramento-Roseville-Folsom, CA
1219                    Albany-Schenectady-Troy, NY
1220                                   Amarillo, TX
1221                                   Amarillo, TX
1222           Atlanta-Sandy Springs-Alpharetta, GA
1223           Atlanta-Sandy Springs-Alpharetta, GA
1224                                    El Paso, TX
1225               Las Vegas-Henderson-Paradise, NV
1226             Los Angeles-Long Beach-Anaheim, CA
1227                      Phoenix-Mesa-Chandler, AZ
1228           Atlanta-Sandy Springs-Alpharetta, GA
1229           Atlanta-Sandy Springs-Alpharetta, GA
1230           Atlanta-Sandy Springs-Alpharetta, GA
1231           Atlanta-Sandy Springs-Alpharetta, GA
1232           Atlanta-Sandy Springs-Alpharetta, GA
1233             Los Angeles-Long Beach-Anaheim, CA
1234             San Francisco-Oakland-Berkeley, CA
1235                             Salt Lake City, UT
1236           Atlanta-Sandy Springs-Alpharetta, GA
1237           Atlanta-Sandy Springs-Alpharetta, GA
1238           Atlanta-Sandy Springs-Alpharetta, GA
1239           Atlanta-Sandy Springs-Alpharetta, GA
1240           Atlanta-Sandy Springs-Alpharetta, GA
1241           Atlanta-Sandy Springs-Alpharetta, GA
1242                                      Tulsa, OK
1243           Atlanta-Sandy Springs-Alpharetta, GA
1244           Atlanta-Sandy Springs-Alpharetta, GA
1245                    Kahului-Wailuku-Lahaina, HI
1246           Atlanta-Sandy Springs-Alpharetta, GA
1247           Atlanta-Sandy Springs-Alpharetta, GA
1248           Atlanta-Sandy Springs-Alpharetta, GA
1249           Atlanta-Sandy Springs-Alpharetta, GA
1250           Atlanta-Sandy Springs-Alpharetta, GA
1251                             Urban Honolulu, HI
1252           Atlanta-Sandy Springs-Alpharetta, GA
1253           Atlanta-Sandy Springs-Alpharetta, GA
1254           Atlanta-Sandy Springs-Alpharetta, GA
1255           Atlanta-Sandy Springs-Alpharetta, GA
1256                 Boston-Cambridge-Newton, MA-NH
1257          New York-Newark-Jersey City, NY-NJ-PA
1258                    Omaha-Council Bluffs, NE-IA
1259                                   Savannah, GA
1260               Austin-Round Rock-Georgetown, TX
1261        Miami-Fort Lauderdale-Pompano Beach, FL
1262                    Omaha-Council Bluffs, NE-IA
1263             San Francisco-Oakland-Berkeley, CA
1264                    Seattle-Tacoma-Bellevue, WA
1265           Riverside-San Bernardino-Ontario, CA
1266             San Diego-Chula Vista-Carlsbad, CA
1267               Austin-Round Rock-Georgetown, TX
1268               Austin-Round Rock-Georgetown, TX
1269               Austin-Round Rock-Georgetown, TX
1270               Austin-Round Rock-Georgetown, TX
1271               Austin-Round Rock-Georgetown, TX
1272               Austin-Round Rock-Georgetown, TX
1273               Austin-Round Rock-Georgetown, TX
1274               Austin-Round Rock-Georgetown, TX
1275               Austin-Round Rock-Georgetown, TX
1276               Austin-Round Rock-Georgetown, TX
1277               Austin-Round Rock-Georgetown, TX
1278               Austin-Round Rock-Georgetown, TX
1279               Austin-Round Rock-Georgetown, TX
1280               Austin-Round Rock-Georgetown, TX
1281               Austin-Round Rock-Georgetown, TX
1282               Austin-Round Rock-Georgetown, TX
1283               Austin-Round Rock-Georgetown, TX
1284               Austin-Round Rock-Georgetown, TX
1285                      Providence-Warwick, RI-MA
1286               Las Vegas-Henderson-Paradise, NV
1287           Riverside-San Bernardino-Ontario, CA
1288          Hartford-East Hartford-Middletown, CT
1289          Hartford-East Hartford-Middletown, CT
1290                          Birmingham-Hoover, AL
1291                          Birmingham-Hoover, AL
1292                          Birmingham-Hoover, AL
1293                          Birmingham-Hoover, AL
1294                          Birmingham-Hoover, AL
1295                          Birmingham-Hoover, AL
1296                                 Bellingham, WA
1297 Nashville-Davidson--Murfreesboro--Franklin, TN
1298 Nashville-Davidson--Murfreesboro--Franklin, TN
1299 Nashville-Davidson--Murfreesboro--Franklin, TN
1300                                   Montrose, CO
1301 Nashville-Davidson--Murfreesboro--Franklin, TN
1302 Nashville-Davidson--Murfreesboro--Franklin, TN
1303 Nashville-Davidson--Murfreesboro--Franklin, TN
1304 Nashville-Davidson--Murfreesboro--Franklin, TN
1305 Nashville-Davidson--Murfreesboro--Franklin, TN
1306                                       Reno, NV
1307 Nashville-Davidson--Murfreesboro--Franklin, TN
1308             Los Angeles-Long Beach-Anaheim, CA
1309 Nashville-Davidson--Murfreesboro--Franklin, TN
1310 Nashville-Davidson--Murfreesboro--Franklin, TN
1311 Nashville-Davidson--Murfreesboro--Franklin, TN
1312 Nashville-Davidson--Murfreesboro--Franklin, TN
1313 Nashville-Davidson--Murfreesboro--Franklin, TN
1314 Nashville-Davidson--Murfreesboro--Franklin, TN
1315 Nashville-Davidson--Murfreesboro--Franklin, TN
1316 Nashville-Davidson--Murfreesboro--Franklin, TN
1317 Nashville-Davidson--Murfreesboro--Franklin, TN
1318 Nashville-Davidson--Murfreesboro--Franklin, TN
1319 Nashville-Davidson--Murfreesboro--Franklin, TN
1320 Nashville-Davidson--Murfreesboro--Franklin, TN
1321 Nashville-Davidson--Murfreesboro--Franklin, TN
1322 Nashville-Davidson--Murfreesboro--Franklin, TN
1323 Nashville-Davidson--Murfreesboro--Franklin, TN
1324 Nashville-Davidson--Murfreesboro--Franklin, TN
1325                             Urban Honolulu, HI
1326                    Kahului-Wailuku-Lahaina, HI
1327 Nashville-Davidson--Murfreesboro--Franklin, TN
1328 Nashville-Davidson--Murfreesboro--Franklin, TN
1329 Nashville-Davidson--Murfreesboro--Franklin, TN
1330 Nashville-Davidson--Murfreesboro--Franklin, TN
1331 Nashville-Davidson--Murfreesboro--Franklin, TN
1332 Nashville-Davidson--Murfreesboro--Franklin, TN
1333                        Buffalo-Cheektowaga, NY
1334        Miami-Fort Lauderdale-Pompano Beach, FL
1335                                 Boise City, ID
1336                                 Boise City, ID
1337                                 Boise City, ID
1338                                 Boise City, ID
1339                                       Reno, NV
1340                Dallas-Fort Worth-Arlington, TX
1341           Houston-The Woodlands-Sugar Land, TX
1342                Charleston-North Charleston, SC
1343                                Spartanburg, SC
1344               Indianapolis-Carmel-Anderson, IN
1345                               Jacksonville, FL
1346                      Phoenix-Mesa-Chandler, AZ
1347                                   Savannah, GA
1348                     Denver-Aurora-Lakewood, CO
1349             Los Angeles-Long Beach-Anaheim, CA
1350        Minneapolis-St. Paul-Bloomington, MN-WI
1351                      Phoenix-Mesa-Chandler, AZ
1352             San Jose-Sunnyvale-Santa Clara, CA
1353                 Boston-Cambridge-Newton, MA-NH
1354              North Port-Sarasota-Bradenton, FL
1355                        Buffalo-Cheektowaga, NY
1356                        Buffalo-Cheektowaga, NY
1357                        Buffalo-Cheektowaga, NY
1358             Los Angeles-Long Beach-Anaheim, CA
1359                       New Orleans-Metairie, LA
1360                               Raleigh-Cary, NC
1361            Tampa-St. Petersburg-Clearwater, FL
1362                              Oklahoma City, OK
1363             Los Angeles-Long Beach-Anaheim, CA
1364             Los Angeles-Long Beach-Anaheim, CA
1365             Los Angeles-Long Beach-Anaheim, CA
1366             Los Angeles-Long Beach-Anaheim, CA
1367             Los Angeles-Long Beach-Anaheim, CA
1368             Los Angeles-Long Beach-Anaheim, CA
1369                  Baltimore-Columbia-Towson, MD
1370                  Baltimore-Columbia-Towson, MD
1371                    Seattle-Tacoma-Bellevue, WA
1372                  Baltimore-Columbia-Towson, MD
1373                  Baltimore-Columbia-Towson, MD
1374                  Baltimore-Columbia-Towson, MD
1375                  Baltimore-Columbia-Towson, MD
1376                  Baltimore-Columbia-Towson, MD
1377                  Baltimore-Columbia-Towson, MD
1378                  Baltimore-Columbia-Towson, MD
1379                  Baltimore-Columbia-Towson, MD
1380                  Baltimore-Columbia-Towson, MD
1381                  Baltimore-Columbia-Towson, MD
1382                    San Juan-Bayamón-Caguas, PR
1383                  Baltimore-Columbia-Towson, MD
1384                  Baltimore-Columbia-Towson, MD
1385                  Baltimore-Columbia-Towson, MD
1386                                       Hilo, HI
1387                  Baltimore-Columbia-Towson, MD
1388   Washington-Arlington-Alexandria, DC-VA-MD-WV
1389                  Baltimore-Columbia-Towson, MD
1390                  Baltimore-Columbia-Towson, MD
1391                  Baltimore-Columbia-Towson, MD
1392                                       Hilo, HI
1393                  Baltimore-Columbia-Towson, MD
1394                  Baltimore-Columbia-Towson, MD
1395                  Baltimore-Columbia-Towson, MD
1396                  Baltimore-Columbia-Towson, MD
1397                  Baltimore-Columbia-Towson, MD
1398                  Baltimore-Columbia-Towson, MD
1399                  Baltimore-Columbia-Towson, MD
1400                      Cape Coral-Fort Myers, FL
1401                                    Bozeman, MT
1402                             Kansas City, MO-KS
1403                         Milwaukee-Waukesha, WI
1404                Charleston-North Charleston, SC
1405                           Colorado Springs, CO
1406                Charleston-North Charleston, SC
1407             Los Angeles-Long Beach-Anaheim, CA
1408                      Cape Coral-Fort Myers, FL
1409                           Cleveland-Elyria, OH
1410                           Cleveland-Elyria, OH
1411                             Urban Honolulu, HI
1412                           Cleveland-Elyria, OH
1413                           Cleveland-Elyria, OH
1414                                   Columbus, OH
1415                                   Columbus, OH
1416                                     Tucson, AZ
1417                                   Columbus, OH
1418                      Phoenix-Mesa-Chandler, AZ
1419                                Panama City, FL
1420                                   Columbus, OH
1421                                   Columbus, OH
1422                                   Columbus, OH
1423                                   Columbus, OH
1424                                   Columbus, OH
1425                                   Columbus, OH
1426                  Santa Maria-Santa Barbara, CA
1427                           Colorado Springs, CO
1428                           Colorado Springs, CO
1429                             Corpus Christi, TX
1430                      Cape Coral-Fort Myers, FL
1431                     Spokane-Spokane Valley, WA
1432             San Francisco-Oakland-Berkeley, CA
1433                           Cincinnati, OH-KY-IN
1434                           Cincinnati, OH-KY-IN
1435                           Cincinnati, OH-KY-IN
1436            Tampa-St. Petersburg-Clearwater, FL
1437                           Cincinnati, OH-KY-IN
1438                Dallas-Fort Worth-Arlington, TX
1439             Los Angeles-Long Beach-Anaheim, CA
1440                Dallas-Fort Worth-Arlington, TX
1441             San Francisco-Oakland-Berkeley, CA
1442                Dallas-Fort Worth-Arlington, TX
1443                Dallas-Fort Worth-Arlington, TX
1444                Dallas-Fort Worth-Arlington, TX
1445                Dallas-Fort Worth-Arlington, TX
1446                Dallas-Fort Worth-Arlington, TX
1447                Dallas-Fort Worth-Arlington, TX
1448                Dallas-Fort Worth-Arlington, TX
1449                Dallas-Fort Worth-Arlington, TX
1450                Dallas-Fort Worth-Arlington, TX
1451                Dallas-Fort Worth-Arlington, TX
1452                Dallas-Fort Worth-Arlington, TX
1453                Dallas-Fort Worth-Arlington, TX
1454                Dallas-Fort Worth-Arlington, TX
1455                Dallas-Fort Worth-Arlington, TX
1456                Dallas-Fort Worth-Arlington, TX
1457                Dallas-Fort Worth-Arlington, TX
1458                Dallas-Fort Worth-Arlington, TX
1459                Dallas-Fort Worth-Arlington, TX
1460                Dallas-Fort Worth-Arlington, TX
1461                Dallas-Fort Worth-Arlington, TX
1462                Dallas-Fort Worth-Arlington, TX
1463                Dallas-Fort Worth-Arlington, TX
1464                Dallas-Fort Worth-Arlington, TX
1465                Dallas-Fort Worth-Arlington, TX
1466                Dallas-Fort Worth-Arlington, TX
1467                Dallas-Fort Worth-Arlington, TX
1468                Dallas-Fort Worth-Arlington, TX
1469                Dallas-Fort Worth-Arlington, TX
1470                Dallas-Fort Worth-Arlington, TX
1471                Dallas-Fort Worth-Arlington, TX
1472                Dallas-Fort Worth-Arlington, TX
1473                Dallas-Fort Worth-Arlington, TX
1474                Dallas-Fort Worth-Arlington, TX
1475                Dallas-Fort Worth-Arlington, TX
1476             San Francisco-Oakland-Berkeley, CA
1477              North Port-Sarasota-Bradenton, FL
1478   Washington-Arlington-Alexandria, DC-VA-MD-WV
1479   Washington-Arlington-Alexandria, DC-VA-MD-WV
1480   Washington-Arlington-Alexandria, DC-VA-MD-WV
1481                     Denver-Aurora-Lakewood, CO
1482   Washington-Arlington-Alexandria, DC-VA-MD-WV
1483   Washington-Arlington-Alexandria, DC-VA-MD-WV
1484   Washington-Arlington-Alexandria, DC-VA-MD-WV
1485   Washington-Arlington-Alexandria, DC-VA-MD-WV
1486   Washington-Arlington-Alexandria, DC-VA-MD-WV
1487   Washington-Arlington-Alexandria, DC-VA-MD-WV
1488   Washington-Arlington-Alexandria, DC-VA-MD-WV
1489                  Baltimore-Columbia-Towson, MD
1490   Washington-Arlington-Alexandria, DC-VA-MD-WV
1491                     Denver-Aurora-Lakewood, CO
1492          New York-Newark-Jersey City, NY-NJ-PA
1493                     Denver-Aurora-Lakewood, CO
1494          New York-Newark-Jersey City, NY-NJ-PA
1495                     Denver-Aurora-Lakewood, CO
1496              North Port-Sarasota-Bradenton, FL
1497                     Denver-Aurora-Lakewood, CO
1498                     Denver-Aurora-Lakewood, CO
1499                     Denver-Aurora-Lakewood, CO
1500              North Port-Sarasota-Bradenton, FL
1501                     Denver-Aurora-Lakewood, CO
1502                     Denver-Aurora-Lakewood, CO
1503                     Denver-Aurora-Lakewood, CO
1504                  Orlando-Kissimmee-Sanford, FL
1505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1506                     Denver-Aurora-Lakewood, CO
1507                     Denver-Aurora-Lakewood, CO
1508                     Denver-Aurora-Lakewood, CO
1509        Miami-Fort Lauderdale-Pompano Beach, FL
1510                     Denver-Aurora-Lakewood, CO
1511                     Denver-Aurora-Lakewood, CO
1512                     Denver-Aurora-Lakewood, CO
1513                     Denver-Aurora-Lakewood, CO
1514                     Denver-Aurora-Lakewood, CO
1515                     Denver-Aurora-Lakewood, CO
1516                     Denver-Aurora-Lakewood, CO
1517                     Denver-Aurora-Lakewood, CO
1518                Sacramento-Roseville-Folsom, CA
1519                     Denver-Aurora-Lakewood, CO
1520                     Denver-Aurora-Lakewood, CO
1521                     Denver-Aurora-Lakewood, CO
1522                     Denver-Aurora-Lakewood, CO
1523                     Denver-Aurora-Lakewood, CO
1524                     Denver-Aurora-Lakewood, CO
1525                     Denver-Aurora-Lakewood, CO
1526                     Denver-Aurora-Lakewood, CO
1527                     Denver-Aurora-Lakewood, CO
1528            Tampa-St. Petersburg-Clearwater, FL
1529           Houston-The Woodlands-Sugar Land, TX
1530           Houston-The Woodlands-Sugar Land, TX
1531             San Diego-Chula Vista-Carlsbad, CA
1532                    Detroit-Warren-Dearborn, MI
1533                    Detroit-Warren-Dearborn, MI
1534                    Detroit-Warren-Dearborn, MI
1535                                Albuquerque, NM
1536    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1537                                    El Paso, TX
1538                                    El Paso, TX
1539                                    El Paso, TX
1540                                    El Paso, TX
1541                                    El Paso, TX
1542             San Jose-Sunnyvale-Santa Clara, CA
1543            Tampa-St. Petersburg-Clearwater, FL
1544                               Jacksonville, FL
1545            Tampa-St. Petersburg-Clearwater, FL
1546                                    El Paso, TX
1547                                    El Paso, TX
1548             San Diego-Chula Vista-Carlsbad, CA
1549                         Eugene-Springfield, OR
1550                         Eugene-Springfield, OR
1551                                     Fresno, CA
1552                     Denver-Aurora-Lakewood, CO
1553               Las Vegas-Henderson-Paradise, NV
1554             San Jose-Sunnyvale-Santa Clara, CA
1555        Miami-Fort Lauderdale-Pompano Beach, FL
1556               Austin-Round Rock-Georgetown, TX
1557        Miami-Fort Lauderdale-Pompano Beach, FL
1558        Miami-Fort Lauderdale-Pompano Beach, FL
1559                      Providence-Warwick, RI-MA
1560        Miami-Fort Lauderdale-Pompano Beach, FL
1561        Miami-Fort Lauderdale-Pompano Beach, FL
1562        Miami-Fort Lauderdale-Pompano Beach, FL
1563        Miami-Fort Lauderdale-Pompano Beach, FL
1564             Los Angeles-Long Beach-Anaheim, CA
1565        Miami-Fort Lauderdale-Pompano Beach, FL
1566        Miami-Fort Lauderdale-Pompano Beach, FL
1567        Miami-Fort Lauderdale-Pompano Beach, FL
1568     Virginia Beach-Norfolk-Newport News, VA-NC
1569                                      Tulsa, OK
1570                     Spokane-Spokane Valley, WA
1571                          Manchester-Nashua, NH
1572                     Spokane-Spokane Valley, WA
1573                     Spokane-Spokane Valley, WA
1574                      Phoenix-Mesa-Chandler, AZ
1575                     Spokane-Spokane Valley, WA
1576                      Grand Rapids-Kentwood, MI
1577                                Spartanburg, SC
1578             San Jose-Sunnyvale-Santa Clara, CA
1579             Los Angeles-Long Beach-Anaheim, CA
1580                             Salt Lake City, UT
1581 Nashville-Davidson--Murfreesboro--Franklin, TN
1582           Houston-The Woodlands-Sugar Land, TX
1583                               Raleigh-Cary, NC
1584          New York-Newark-Jersey City, NY-NJ-PA
1585           Houston-The Woodlands-Sugar Land, TX
1586           Houston-The Woodlands-Sugar Land, TX
1587           Houston-The Woodlands-Sugar Land, TX
1588           Houston-The Woodlands-Sugar Land, TX
1589           Houston-The Woodlands-Sugar Land, TX
1590           Houston-The Woodlands-Sugar Land, TX
1591           Houston-The Woodlands-Sugar Land, TX
1592           Houston-The Woodlands-Sugar Land, TX
1593           Houston-The Woodlands-Sugar Land, TX
1594          New York-Newark-Jersey City, NY-NJ-PA
1595           Houston-The Woodlands-Sugar Land, TX
1596           Houston-The Woodlands-Sugar Land, TX
1597           Houston-The Woodlands-Sugar Land, TX
1598           Houston-The Woodlands-Sugar Land, TX
1599           Houston-The Woodlands-Sugar Land, TX
1600           Houston-The Woodlands-Sugar Land, TX
1601           Houston-The Woodlands-Sugar Land, TX
1602           Houston-The Woodlands-Sugar Land, TX
1603           Houston-The Woodlands-Sugar Land, TX
1604           Houston-The Woodlands-Sugar Land, TX
1605           Houston-The Woodlands-Sugar Land, TX
1606           Houston-The Woodlands-Sugar Land, TX
1607           Houston-The Woodlands-Sugar Land, TX
1608           Houston-The Woodlands-Sugar Land, TX
1609           Houston-The Woodlands-Sugar Land, TX
1610           Houston-The Woodlands-Sugar Land, TX
1611           Houston-The Woodlands-Sugar Land, TX
1612           Houston-The Woodlands-Sugar Land, TX
1613           Houston-The Woodlands-Sugar Land, TX
1614           Houston-The Woodlands-Sugar Land, TX
1615          New York-Newark-Jersey City, NY-NJ-PA
1616           Houston-The Woodlands-Sugar Land, TX
1617           Houston-The Woodlands-Sugar Land, TX
1618           Houston-The Woodlands-Sugar Land, TX
1619           Houston-The Woodlands-Sugar Land, TX
1620                                    Jackson, MS
1621                      Brownsville-Harlingen, TX
1622                           Colorado Springs, CO
1623                             Salt Lake City, UT
1624             San Francisco-Oakland-Berkeley, CA
1625                Sacramento-Roseville-Folsom, CA
1626                      Grand Rapids-Kentwood, MI
1627           Houston-The Woodlands-Sugar Land, TX
1628                  Orlando-Kissimmee-Sanford, FL
1629           Houston-The Woodlands-Sugar Land, TX
1630                                    Wichita, KS
1631                                    Wichita, KS
1632                    Portland-South Portland, ME
1633               Indianapolis-Carmel-Anderson, IN
1634               Indianapolis-Carmel-Anderson, IN
1635               Indianapolis-Carmel-Anderson, IN
1636               Indianapolis-Carmel-Anderson, IN
1637               Indianapolis-Carmel-Anderson, IN
1638          New York-Newark-Jersey City, NY-NJ-PA
1639        Miami-Fort Lauderdale-Pompano Beach, FL
1640         Crestview-Fort Walton Beach-Destin, FL
1641                          Manchester-Nashua, NH
1642                               Jacksonville, FL
1643                               Jacksonville, FL
1644                               Jacksonville, FL
1645           Atlanta-Sandy Springs-Alpharetta, GA
1646                  Baltimore-Columbia-Towson, MD
1647                              Oklahoma City, OK
1648               Las Vegas-Henderson-Paradise, NV
1649               Las Vegas-Henderson-Paradise, NV
1650               Indianapolis-Carmel-Anderson, IN
1651                       New Orleans-Metairie, LA
1652                                 Pittsburgh, PA
1653               Las Vegas-Henderson-Paradise, NV
1654                                 Pittsburgh, PA
1655            Tampa-St. Petersburg-Clearwater, FL
1656               Las Vegas-Henderson-Paradise, NV
1657               Las Vegas-Henderson-Paradise, NV
1658           Atlanta-Sandy Springs-Alpharetta, GA
1659             Chicago-Naperville-Elgin, IL-IN-WI
1660               Las Vegas-Henderson-Paradise, NV
1661               Las Vegas-Henderson-Paradise, NV
1662                                 Pittsburgh, PA
1663               Las Vegas-Henderson-Paradise, NV
1664               Las Vegas-Henderson-Paradise, NV
1665               Las Vegas-Henderson-Paradise, NV
1666               Las Vegas-Henderson-Paradise, NV
1667               Las Vegas-Henderson-Paradise, NV
1668               Las Vegas-Henderson-Paradise, NV
1669               Las Vegas-Henderson-Paradise, NV
1670               Las Vegas-Henderson-Paradise, NV
1671               Las Vegas-Henderson-Paradise, NV
1672               Las Vegas-Henderson-Paradise, NV
1673               Las Vegas-Henderson-Paradise, NV
1674               Las Vegas-Henderson-Paradise, NV
1675               Las Vegas-Henderson-Paradise, NV
1676               Las Vegas-Henderson-Paradise, NV
1677               Las Vegas-Henderson-Paradise, NV
1678               Las Vegas-Henderson-Paradise, NV
1679             Los Angeles-Long Beach-Anaheim, CA
1680             Los Angeles-Long Beach-Anaheim, CA
1681                                      Kapaa, HI
1682                       New Orleans-Metairie, LA
1683                  San Antonio-New Braunfels, TX
1684             Los Angeles-Long Beach-Anaheim, CA
1685                                      Tulsa, OK
1686                  Orlando-Kissimmee-Sanford, FL
1687        Miami-Fort Lauderdale-Pompano Beach, FL
1688             Los Angeles-Long Beach-Anaheim, CA
1689             Los Angeles-Long Beach-Anaheim, CA
1690             Los Angeles-Long Beach-Anaheim, CA
1691             Los Angeles-Long Beach-Anaheim, CA
1692           Riverside-San Bernardino-Ontario, CA
1693                               Raleigh-Cary, NC
1694                                    Lubbock, TX
1695                Dallas-Fort Worth-Arlington, TX
1696           Houston-The Woodlands-Sugar Land, TX
1697          New York-Newark-Jersey City, NY-NJ-PA
1698                       New Orleans-Metairie, LA
1699                              Oklahoma City, OK
1700          New York-Newark-Jersey City, NY-NJ-PA
1701          New York-Newark-Jersey City, NY-NJ-PA
1702             Los Angeles-Long Beach-Anaheim, CA
1703             Chicago-Naperville-Elgin, IL-IN-WI
1704             Los Angeles-Long Beach-Anaheim, CA
1705             Los Angeles-Long Beach-Anaheim, CA
1706             Los Angeles-Long Beach-Anaheim, CA
1707             Los Angeles-Long Beach-Anaheim, CA
1708             Los Angeles-Long Beach-Anaheim, CA
1709           Riverside-San Bernardino-Ontario, CA
1710             Los Angeles-Long Beach-Anaheim, CA
1711             Los Angeles-Long Beach-Anaheim, CA
1712             Los Angeles-Long Beach-Anaheim, CA
1713             Los Angeles-Long Beach-Anaheim, CA
1714             Los Angeles-Long Beach-Anaheim, CA
1715       Little Rock-North Little Rock-Conway, AR
1716                                    Midland, TX
1717                                    Midland, TX
1718                             Kansas City, MO-KS
1719                             Kansas City, MO-KS
1720              North Port-Sarasota-Bradenton, FL
1721                             Kansas City, MO-KS
1722                             Kansas City, MO-KS
1723                             Kansas City, MO-KS
1724                             Kansas City, MO-KS
1725                             Kansas City, MO-KS
1726                             Kansas City, MO-KS
1727                             Kansas City, MO-KS
1728                        Buffalo-Cheektowaga, NY
1729                                    Bozeman, MT
1730           Riverside-San Bernardino-Ontario, CA
1731                    Seattle-Tacoma-Bellevue, WA
1732                                     Fresno, CA
1733                      Phoenix-Mesa-Chandler, AZ
1734                  Orlando-Kissimmee-Sanford, FL
1735                 Boston-Cambridge-Newton, MA-NH
1736                 Des Moines-West Des Moines, IA
1737             San Diego-Chula Vista-Carlsbad, CA
1738                  Orlando-Kissimmee-Sanford, FL
1739                  Orlando-Kissimmee-Sanford, FL
1740                  Orlando-Kissimmee-Sanford, FL
1741                  Orlando-Kissimmee-Sanford, FL
1742                  Orlando-Kissimmee-Sanford, FL
1743                  Orlando-Kissimmee-Sanford, FL
1744                  Orlando-Kissimmee-Sanford, FL
1745                  Orlando-Kissimmee-Sanford, FL
1746                  Orlando-Kissimmee-Sanford, FL
1747                  Orlando-Kissimmee-Sanford, FL
1748                                      Kapaa, HI
1749                  Orlando-Kissimmee-Sanford, FL
1750                  Orlando-Kissimmee-Sanford, FL
1751             Chicago-Naperville-Elgin, IL-IN-WI
1752             Chicago-Naperville-Elgin, IL-IN-WI
1753             Chicago-Naperville-Elgin, IL-IN-WI
1754             Chicago-Naperville-Elgin, IL-IN-WI
1755             Chicago-Naperville-Elgin, IL-IN-WI
1756             Chicago-Naperville-Elgin, IL-IN-WI
1757             Chicago-Naperville-Elgin, IL-IN-WI
1758             Chicago-Naperville-Elgin, IL-IN-WI
1759             Chicago-Naperville-Elgin, IL-IN-WI
1760             Chicago-Naperville-Elgin, IL-IN-WI
1761             Chicago-Naperville-Elgin, IL-IN-WI
1762             Chicago-Naperville-Elgin, IL-IN-WI
1763             Chicago-Naperville-Elgin, IL-IN-WI
1764             Chicago-Naperville-Elgin, IL-IN-WI
1765             Chicago-Naperville-Elgin, IL-IN-WI
1766             Chicago-Naperville-Elgin, IL-IN-WI
1767             Chicago-Naperville-Elgin, IL-IN-WI
1768             Chicago-Naperville-Elgin, IL-IN-WI
1769             Chicago-Naperville-Elgin, IL-IN-WI
1770             Chicago-Naperville-Elgin, IL-IN-WI
1771             Chicago-Naperville-Elgin, IL-IN-WI
1772             Chicago-Naperville-Elgin, IL-IN-WI
1773             Chicago-Naperville-Elgin, IL-IN-WI
1774             Chicago-Naperville-Elgin, IL-IN-WI
1775             Chicago-Naperville-Elgin, IL-IN-WI
1776             Chicago-Naperville-Elgin, IL-IN-WI
1777             Chicago-Naperville-Elgin, IL-IN-WI
1778             Chicago-Naperville-Elgin, IL-IN-WI
1779             Chicago-Naperville-Elgin, IL-IN-WI
1780             Chicago-Naperville-Elgin, IL-IN-WI
1781             Chicago-Naperville-Elgin, IL-IN-WI
1782                               St. Louis, MO-IL
1783             Chicago-Naperville-Elgin, IL-IN-WI
1784             Chicago-Naperville-Elgin, IL-IN-WI
1785             Chicago-Naperville-Elgin, IL-IN-WI
1786             Chicago-Naperville-Elgin, IL-IN-WI
1787             Chicago-Naperville-Elgin, IL-IN-WI
1788             Chicago-Naperville-Elgin, IL-IN-WI
1789             Chicago-Naperville-Elgin, IL-IN-WI
1790             Chicago-Naperville-Elgin, IL-IN-WI
1791             Chicago-Naperville-Elgin, IL-IN-WI
1792             Chicago-Naperville-Elgin, IL-IN-WI
1793             Chicago-Naperville-Elgin, IL-IN-WI
1794             Chicago-Naperville-Elgin, IL-IN-WI
1795             Chicago-Naperville-Elgin, IL-IN-WI
1796             Chicago-Naperville-Elgin, IL-IN-WI
1797             Chicago-Naperville-Elgin, IL-IN-WI
1798             Chicago-Naperville-Elgin, IL-IN-WI
1799             Chicago-Naperville-Elgin, IL-IN-WI
1800             Chicago-Naperville-Elgin, IL-IN-WI
1801                              Memphis, TN-MS-AR
1802                              Memphis, TN-MS-AR
1803                              Memphis, TN-MS-AR
1804                              Memphis, TN-MS-AR
1805                              Memphis, TN-MS-AR
1806                  San Antonio-New Braunfels, TX
1807        Minneapolis-St. Paul-Bloomington, MN-WI
1808        Miami-Fort Lauderdale-Pompano Beach, FL
1809        Miami-Fort Lauderdale-Pompano Beach, FL
1810                             Kansas City, MO-KS
1811                         Milwaukee-Waukesha, WI
1812                         Milwaukee-Waukesha, WI
1813                         Milwaukee-Waukesha, WI
1814                         Milwaukee-Waukesha, WI
1815                         Milwaukee-Waukesha, WI
1816        Minneapolis-St. Paul-Bloomington, MN-WI
1817                      Cape Coral-Fort Myers, FL
1818             San Diego-Chula Vista-Carlsbad, CA
1819                       New Orleans-Metairie, LA
1820                       New Orleans-Metairie, LA
1821                       New Orleans-Metairie, LA
1822                       New Orleans-Metairie, LA
1823                       New Orleans-Metairie, LA
1824                       New Orleans-Metairie, LA
1825                       New Orleans-Metairie, LA
1826                       New Orleans-Metairie, LA
1827                           Colorado Springs, CO
1828                       New Orleans-Metairie, LA
1829                       New Orleans-Metairie, LA
1830                       New Orleans-Metairie, LA
1831                                      Tulsa, OK
1832  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1833  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1834             San Francisco-Oakland-Berkeley, CA
1835             San Francisco-Oakland-Berkeley, CA
1836             San Francisco-Oakland-Berkeley, CA
1837             San Francisco-Oakland-Berkeley, CA
1838             San Diego-Chula Vista-Carlsbad, CA
1839             San Francisco-Oakland-Berkeley, CA
1840               Indianapolis-Carmel-Anderson, IN
1841             San Francisco-Oakland-Berkeley, CA
1842             San Francisco-Oakland-Berkeley, CA
1843             San Francisco-Oakland-Berkeley, CA
1844             San Jose-Sunnyvale-Santa Clara, CA
1845             San Francisco-Oakland-Berkeley, CA
1846             San Francisco-Oakland-Berkeley, CA
1847             San Francisco-Oakland-Berkeley, CA
1848             San Francisco-Oakland-Berkeley, CA
1849             San Francisco-Oakland-Berkeley, CA
1850                Sacramento-Roseville-Folsom, CA
1851                              Oklahoma City, OK
1852                              Oklahoma City, OK
1853                              Oklahoma City, OK
1854                    Kahului-Wailuku-Lahaina, HI
1855              North Port-Sarasota-Bradenton, FL
1856                    Omaha-Council Bluffs, NE-IA
1857                    Omaha-Council Bluffs, NE-IA
1858                    Omaha-Council Bluffs, NE-IA
1859                  San Antonio-New Braunfels, TX
1860           Riverside-San Bernardino-Ontario, CA
1861           Riverside-San Bernardino-Ontario, CA
1862                                   Savannah, GA
1863             Chicago-Naperville-Elgin, IL-IN-WI
1864             Chicago-Naperville-Elgin, IL-IN-WI
1865             Chicago-Naperville-Elgin, IL-IN-WI
1866     Virginia Beach-Norfolk-Newport News, VA-NC
1867     Virginia Beach-Norfolk-Newport News, VA-NC
1868     Virginia Beach-Norfolk-Newport News, VA-NC
1869     Virginia Beach-Norfolk-Newport News, VA-NC
1870          Hartford-East Hartford-Middletown, CT
1871                    Omaha-Council Bluffs, NE-IA
1872            Portland-Vancouver-Hillsboro, OR-WA
1873            Tampa-St. Petersburg-Clearwater, FL
1874                                      Kapaa, HI
1875             San Francisco-Oakland-Berkeley, CA
1876    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1877        Miami-Fort Lauderdale-Pompano Beach, FL
1878                      Phoenix-Mesa-Chandler, AZ
1879                         Milwaukee-Waukesha, WI
1880                      Phoenix-Mesa-Chandler, AZ
1881           Atlanta-Sandy Springs-Alpharetta, GA
1882                      Phoenix-Mesa-Chandler, AZ
1883                      Phoenix-Mesa-Chandler, AZ
1884                      Phoenix-Mesa-Chandler, AZ
1885                      Phoenix-Mesa-Chandler, AZ
1886                      Phoenix-Mesa-Chandler, AZ
1887                      Phoenix-Mesa-Chandler, AZ
1888                      Phoenix-Mesa-Chandler, AZ
1889                      Phoenix-Mesa-Chandler, AZ
1890                      Phoenix-Mesa-Chandler, AZ
1891                      Phoenix-Mesa-Chandler, AZ
1892                      Phoenix-Mesa-Chandler, AZ
1893                      Phoenix-Mesa-Chandler, AZ
1894                      Phoenix-Mesa-Chandler, AZ
1895                      Phoenix-Mesa-Chandler, AZ
1896                             Urban Honolulu, HI
1897                      Phoenix-Mesa-Chandler, AZ
1898                      Phoenix-Mesa-Chandler, AZ
1899                      Phoenix-Mesa-Chandler, AZ
1900                      Phoenix-Mesa-Chandler, AZ
1901                      Phoenix-Mesa-Chandler, AZ
1902                      Phoenix-Mesa-Chandler, AZ
1903                                 Pittsburgh, PA
1904                                 Pittsburgh, PA
1905                                 Pittsburgh, PA
1906                                 Pittsburgh, PA
1907                                 Pittsburgh, PA
1908                                 Pittsburgh, PA
1909                 Pensacola-Ferry Pass-Brent, FL
1910                 Pensacola-Ferry Pass-Brent, FL
1911                 Pensacola-Ferry Pass-Brent, FL
1912           Riverside-San Bernardino-Ontario, CA
1913           Riverside-San Bernardino-Ontario, CA
1914                               Raleigh-Cary, NC
1915             San Francisco-Oakland-Berkeley, CA
1916                               Raleigh-Cary, NC
1917                    San Juan-Bayamón-Caguas, PR
1918                  San Antonio-New Braunfels, TX
1919                               Raleigh-Cary, NC
1920                                   Richmond, VA
1921                                       Reno, NV
1922                                       Reno, NV
1923                                       Reno, NV
1924                                       Reno, NV
1925                                  Rochester, NY
1926                                  Rochester, NY
1927                    Detroit-Warren-Dearborn, MI
1928                      Cape Coral-Fort Myers, FL
1929                      Cape Coral-Fort Myers, FL
1930                      Cape Coral-Fort Myers, FL
1931                      Cape Coral-Fort Myers, FL
1932                      Cape Coral-Fort Myers, FL
1933             San Diego-Chula Vista-Carlsbad, CA
1934         Crestview-Fort Walton Beach-Destin, FL
1935                Charleston-North Charleston, SC
1936                     Spokane-Spokane Valley, WA
1937             San Diego-Chula Vista-Carlsbad, CA
1938             San Diego-Chula Vista-Carlsbad, CA
1939             San Diego-Chula Vista-Carlsbad, CA
1940        Minneapolis-St. Paul-Bloomington, MN-WI
1941                                     Tucson, AZ
1942                  San Antonio-New Braunfels, TX
1943                  San Antonio-New Braunfels, TX
1944                  San Antonio-New Braunfels, TX
1945                  San Antonio-New Braunfels, TX
1946                Dallas-Fort Worth-Arlington, TX
1947                  Santa Maria-Santa Barbara, CA
1948             Louisville/Jefferson County, KY-IN
1949             Louisville/Jefferson County, KY-IN
1950             Louisville/Jefferson County, KY-IN
1951             Louisville/Jefferson County, KY-IN
1952             Louisville/Jefferson County, KY-IN
1953             Los Angeles-Long Beach-Anaheim, CA
1954             Los Angeles-Long Beach-Anaheim, CA
1955                               Raleigh-Cary, NC
1956             San Francisco-Oakland-Berkeley, CA
1957             San Francisco-Oakland-Berkeley, CA
1958             San Jose-Sunnyvale-Santa Clara, CA
1959             San Jose-Sunnyvale-Santa Clara, CA
1960                             Urban Honolulu, HI
1961             San Jose-Sunnyvale-Santa Clara, CA
1962                    Kahului-Wailuku-Lahaina, HI
1963                    Kahului-Wailuku-Lahaina, HI
1964             San Jose-Sunnyvale-Santa Clara, CA
1965             San Jose-Sunnyvale-Santa Clara, CA
1966             San Jose-Sunnyvale-Santa Clara, CA
1967             San Jose-Sunnyvale-Santa Clara, CA
1968                    San Juan-Bayamón-Caguas, PR
1969                             Salt Lake City, UT
1970                             Salt Lake City, UT
1971                             Salt Lake City, UT
1972                             Salt Lake City, UT
1973                Sacramento-Roseville-Folsom, CA
1974                             Kansas City, MO-KS
1975                Sacramento-Roseville-Folsom, CA
1976                Sacramento-Roseville-Folsom, CA
1977                                       Hilo, HI
1978                Sacramento-Roseville-Folsom, CA
1979                Sacramento-Roseville-Folsom, CA
1980                Sacramento-Roseville-Folsom, CA
1981                Sacramento-Roseville-Folsom, CA
1982             Los Angeles-Long Beach-Anaheim, CA
1983                       New Orleans-Metairie, LA
1984             Los Angeles-Long Beach-Anaheim, CA
1985              North Port-Sarasota-Bradenton, FL
1986              North Port-Sarasota-Bradenton, FL
1987              North Port-Sarasota-Bradenton, FL
1988              North Port-Sarasota-Bradenton, FL
1989                               St. Louis, MO-IL
1990                               St. Louis, MO-IL
1991                               St. Louis, MO-IL
1992                               St. Louis, MO-IL
1993                               St. Louis, MO-IL
1994                               St. Louis, MO-IL
1995                               St. Louis, MO-IL
1996                               St. Louis, MO-IL
1997                               St. Louis, MO-IL
1998                               St. Louis, MO-IL
1999                               St. Louis, MO-IL
2000          Hartford-East Hartford-Middletown, CT
2001                               St. Louis, MO-IL
2002                               St. Louis, MO-IL
2003                               St. Louis, MO-IL
2004                               St. Louis, MO-IL
2005                               St. Louis, MO-IL
2006                               St. Louis, MO-IL
2007                               St. Louis, MO-IL
2008                               St. Louis, MO-IL
2009                               St. Louis, MO-IL
2010                               St. Louis, MO-IL
2011                               St. Louis, MO-IL
2012                               St. Louis, MO-IL
2013                               St. Louis, MO-IL
2014                               St. Louis, MO-IL
2015                               St. Louis, MO-IL
2016                               St. Louis, MO-IL
2017            Tampa-St. Petersburg-Clearwater, FL
2018                                   Syracuse, NY
2019                     Denver-Aurora-Lakewood, CO
2020            Tampa-St. Petersburg-Clearwater, FL
2021            Tampa-St. Petersburg-Clearwater, FL
2022            Tampa-St. Petersburg-Clearwater, FL
2023            Tampa-St. Petersburg-Clearwater, FL
2024            Tampa-St. Petersburg-Clearwater, FL
2025            Tampa-St. Petersburg-Clearwater, FL
2026            Tampa-St. Petersburg-Clearwater, FL
2027            Tampa-St. Petersburg-Clearwater, FL
2028            Tampa-St. Petersburg-Clearwater, FL
2029                                     Tucson, AZ
2030                                     Tucson, AZ
2031         Crestview-Fort Walton Beach-Destin, FL
2032                         Milwaukee-Waukesha, WI
2033                    Shreveport-Bossier City, LA
2034                                    Medford, OR
2035                  Orlando-Kissimmee-Sanford, FL
2036                Dallas-Fort Worth-Arlington, TX
2037                Sacramento-Roseville-Folsom, CA
2038                           Cincinnati, OH-KY-IN
2039                               Jacksonville, FL
2040             San Diego-Chula Vista-Carlsbad, CA
2041                               Raleigh-Cary, NC
2042   Washington-Arlington-Alexandria, DC-VA-MD-WV
2043   Washington-Arlington-Alexandria, DC-VA-MD-WV
2044           Houston-The Woodlands-Sugar Land, TX
2045           Houston-The Woodlands-Sugar Land, TX
2046          New York-Newark-Jersey City, NY-NJ-PA
2047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2048                      Phoenix-Mesa-Chandler, AZ
2049                      Phoenix-Mesa-Chandler, AZ
2050             Los Angeles-Long Beach-Anaheim, CA
2051                 Pensacola-Ferry Pass-Brent, FL
2052        Minneapolis-St. Paul-Bloomington, MN-WI
2053                    San Juan-Bayamón-Caguas, PR
2054   Washington-Arlington-Alexandria, DC-VA-MD-WV
2055                                     Bangor, ME
2056                        Buffalo-Cheektowaga, NY
2057                        Harrisburg-Carlisle, PA
2058                               Jacksonville, FL
2059                 Boston-Cambridge-Newton, MA-NH
2060                           Cincinnati, OH-KY-IN
2061                 Boston-Cambridge-Newton, MA-NH
2062                     Denver-Aurora-Lakewood, CO
2063                       New Orleans-Metairie, LA
2064                 Des Moines-West Des Moines, IA
2065     Virginia Beach-Norfolk-Newport News, VA-NC
2066                Dallas-Fort Worth-Arlington, TX
2067        Miami-Fort Lauderdale-Pompano Beach, FL
2068                 Boston-Cambridge-Newton, MA-NH
2069                 Boston-Cambridge-Newton, MA-NH
2070                 Boston-Cambridge-Newton, MA-NH
2071             San Francisco-Oakland-Berkeley, CA
2072                          Manchester-Nashua, NH
2073                Charleston-North Charleston, SC
2074                                      Tulsa, OK
2075                           Cleveland-Elyria, OH
2076                           Cleveland-Elyria, OH
2077              Charlotte-Concord-Gastonia, NC-SC
2078              Charlotte-Concord-Gastonia, NC-SC
2079               Indianapolis-Carmel-Anderson, IN
2080                                   Columbus, OH
2081                                   Columbus, OH
2082                                   Columbus, OH
2083                           Cincinnati, OH-KY-IN
2084                Sacramento-Roseville-Folsom, CA
2085   Washington-Arlington-Alexandria, DC-VA-MD-WV
2086   Washington-Arlington-Alexandria, DC-VA-MD-WV
2087   Washington-Arlington-Alexandria, DC-VA-MD-WV
2088   Washington-Arlington-Alexandria, DC-VA-MD-WV
2089                                    Madison, WI
2090          New York-Newark-Jersey City, NY-NJ-PA
2091          New York-Newark-Jersey City, NY-NJ-PA
2092          New York-Newark-Jersey City, NY-NJ-PA
2093          New York-Newark-Jersey City, NY-NJ-PA
2094          New York-Newark-Jersey City, NY-NJ-PA
2095          New York-Newark-Jersey City, NY-NJ-PA
2096                 Pensacola-Ferry Pass-Brent, FL
2097                      Greensboro-High Point, NC
2098   Washington-Arlington-Alexandria, DC-VA-MD-WV
2099   Washington-Arlington-Alexandria, DC-VA-MD-WV
2100                                 Wilmington, NC
2101               Indianapolis-Carmel-Anderson, IN
2102         Deltona-Daytona Beach-Ormond Beach, FL
2103               Indianapolis-Carmel-Anderson, IN
2104                         Milwaukee-Waukesha, WI
2105                          Carbondale-Marion, IL
2106                Dallas-Fort Worth-Arlington, TX
2107          New York-Newark-Jersey City, NY-NJ-PA
2108                                Panama City, FL
2109          New York-Newark-Jersey City, NY-NJ-PA
2110                      Phoenix-Mesa-Chandler, AZ
2111                                  Knoxville, TN
2112          New York-Newark-Jersey City, NY-NJ-PA
2113          New York-Newark-Jersey City, NY-NJ-PA
2114          New York-Newark-Jersey City, NY-NJ-PA
2115          New York-Newark-Jersey City, NY-NJ-PA
2116          New York-Newark-Jersey City, NY-NJ-PA
2117          New York-Newark-Jersey City, NY-NJ-PA
2118          New York-Newark-Jersey City, NY-NJ-PA
2119          New York-Newark-Jersey City, NY-NJ-PA
2120          New York-Newark-Jersey City, NY-NJ-PA
2121          New York-Newark-Jersey City, NY-NJ-PA
2122          New York-Newark-Jersey City, NY-NJ-PA
2123          New York-Newark-Jersey City, NY-NJ-PA
2124                                Spartanburg, SC
2125     Virginia Beach-Norfolk-Newport News, VA-NC
2126                    Omaha-Council Bluffs, NE-IA
2127     Virginia Beach-Norfolk-Newport News, VA-NC
2128    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2129                                 Pittsburgh, PA
2130                                 Pittsburgh, PA
2131                                  Fairbanks, AK
2132                                 Pittsburgh, PA
2133                                   Savannah, GA
2134                                   Savannah, GA
2135             Louisville/Jefferson County, KY-IN
2136                               Raleigh-Cary, NC
2137                               Raleigh-Cary, NC
2138                      Providence-Warwick, RI-MA
2139                 Boston-Cambridge-Newton, MA-NH
2140             Louisville/Jefferson County, KY-IN
2141                                   Columbus, OH
2142              Charlotte-Concord-Gastonia, NC-SC
2143                Charleston-North Charleston, SC
2144                           Cleveland-Elyria, OH
2145                            Charlottesville, VA
2146                                      Akron, OH
2147   Washington-Arlington-Alexandria, DC-VA-MD-WV
2148                    Seattle-Tacoma-Bellevue, WA
2149                           Sioux City, IA-NE-SD
2150             Chicago-Naperville-Elgin, IL-IN-WI
2151             Chicago-Naperville-Elgin, IL-IN-WI
2152               Las Vegas-Henderson-Paradise, NV
2153                  San Antonio-New Braunfels, TX
2154                      Phoenix-Mesa-Chandler, AZ
2155        Minneapolis-St. Paul-Bloomington, MN-WI
2156        Minneapolis-St. Paul-Bloomington, MN-WI
2157                                 Eau Claire, WI
2158                    Albany-Schenectady-Troy, NY
2159                                 Wilmington, NC
2160                     Denver-Aurora-Lakewood, CO
2161   Washington-Arlington-Alexandria, DC-VA-MD-WV
2162             San Diego-Chula Vista-Carlsbad, CA
2163  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2164                      Cape Coral-Fort Myers, FL
2165                                   Richmond, VA
2166                      Greensboro-High Point, NC
2167                                   Syracuse, NY
2168                             Kansas City, MO-KS
2169                     Denver-Aurora-Lakewood, CO
2170                      Grand Rapids-Kentwood, MI
2171                                 Huntsville, AL
2172           Houston-The Woodlands-Sugar Land, TX
2173             Los Angeles-Long Beach-Anaheim, CA
2174        Miami-Fort Lauderdale-Pompano Beach, FL
2175                 Pensacola-Ferry Pass-Brent, FL
2176                     Denver-Aurora-Lakewood, CO
2177                 Pensacola-Ferry Pass-Brent, FL
2178                          New Haven-Milford, CT
2179                          New Haven-Milford, CT
2180                  Orlando-Kissimmee-Sanford, FL
2181             Los Angeles-Long Beach-Anaheim, CA
2182                           Glenwood Springs, CO
2183                          Birmingham-Hoover, AL
2184          New York-Newark-Jersey City, NY-NJ-PA
2185                         Milwaukee-Waukesha, WI
2186   Washington-Arlington-Alexandria, DC-VA-MD-WV
2187   Washington-Arlington-Alexandria, DC-VA-MD-WV
2188                Dallas-Fort Worth-Arlington, TX
2189                Dallas-Fort Worth-Arlington, TX
2190                Dallas-Fort Worth-Arlington, TX
2191                             Urban Honolulu, HI
2192          New York-Newark-Jersey City, NY-NJ-PA
2193           Atlanta-Sandy Springs-Alpharetta, GA
2194             Chicago-Naperville-Elgin, IL-IN-WI
2195    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2197                      Phoenix-Mesa-Chandler, AZ
2198                      Phoenix-Mesa-Chandler, AZ
2199             San Diego-Chula Vista-Carlsbad, CA
2200                                  Fairbanks, AK
2201            Portland-Vancouver-Hillsboro, OR-WA
2202                 Boston-Cambridge-Newton, MA-NH
2203                 Boston-Cambridge-Newton, MA-NH
2204          New York-Newark-Jersey City, NY-NJ-PA
2205           Riverside-San Bernardino-Ontario, CA
2206             San Francisco-Oakland-Berkeley, CA
2207           Atlanta-Sandy Springs-Alpharetta, GA
2208           Atlanta-Sandy Springs-Alpharetta, GA
2209           Atlanta-Sandy Springs-Alpharetta, GA
2210           Atlanta-Sandy Springs-Alpharetta, GA
2211           Atlanta-Sandy Springs-Alpharetta, GA
2212           Atlanta-Sandy Springs-Alpharetta, GA
2213                 Boston-Cambridge-Newton, MA-NH
2214   Washington-Arlington-Alexandria, DC-VA-MD-WV
2215                    Detroit-Warren-Dearborn, MI
2216                    Detroit-Warren-Dearborn, MI
2217                    Detroit-Warren-Dearborn, MI
2218          New York-Newark-Jersey City, NY-NJ-PA
2219          New York-Newark-Jersey City, NY-NJ-PA
2220          New York-Newark-Jersey City, NY-NJ-PA
2221          New York-Newark-Jersey City, NY-NJ-PA
2222             Los Angeles-Long Beach-Anaheim, CA
2223             Los Angeles-Long Beach-Anaheim, CA
2224             Los Angeles-Long Beach-Anaheim, CA
2225        Minneapolis-St. Paul-Bloomington, MN-WI
2226        Minneapolis-St. Paul-Bloomington, MN-WI
2227             San Jose-Sunnyvale-Santa Clara, CA
2228                             Salt Lake City, UT
2229                             Salt Lake City, UT
2230                             Salt Lake City, UT
2231            Tampa-St. Petersburg-Clearwater, FL
2232            Tampa-St. Petersburg-Clearwater, FL
2233             Los Angeles-Long Beach-Anaheim, CA
2234                    Detroit-Warren-Dearborn, MI
2235             Chicago-Naperville-Elgin, IL-IN-WI
2236                     Denver-Aurora-Lakewood, CO
2237          New York-Newark-Jersey City, NY-NJ-PA
2238           Houston-The Woodlands-Sugar Land, TX
2239           Houston-The Woodlands-Sugar Land, TX
2240           Houston-The Woodlands-Sugar Land, TX
2241           Houston-The Woodlands-Sugar Land, TX
2242                               Raleigh-Cary, NC
2243             San Francisco-Oakland-Berkeley, CA
2244           Houston-The Woodlands-Sugar Land, TX
2245          New York-Newark-Jersey City, NY-NJ-PA
2246          New York-Newark-Jersey City, NY-NJ-PA
2247             Chicago-Naperville-Elgin, IL-IN-WI
2248                                   Richmond, VA
2249    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2250                             Kansas City, MO-KS
2251                Dallas-Fort Worth-Arlington, TX
2252                      Grand Rapids-Kentwood, MI
2253    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2254  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2255                                  Fairbanks, AK
2256                                           <NA>
2257                                           <NA>
2258                    Seattle-Tacoma-Bellevue, WA
2259                    Seattle-Tacoma-Bellevue, WA
2260                             Salt Lake City, UT
2261                     Denver-Aurora-Lakewood, CO
2262   Washington-Arlington-Alexandria, DC-VA-MD-WV
2263              Allentown-Bethlehem-Easton, PA-NJ
2264           Atlanta-Sandy Springs-Alpharetta, GA
2265           Atlanta-Sandy Springs-Alpharetta, GA
2266           Atlanta-Sandy Springs-Alpharetta, GA
2267           Atlanta-Sandy Springs-Alpharetta, GA
2268           Atlanta-Sandy Springs-Alpharetta, GA
2269           Atlanta-Sandy Springs-Alpharetta, GA
2270           Atlanta-Sandy Springs-Alpharetta, GA
2271           Atlanta-Sandy Springs-Alpharetta, GA
2272                                     Bangor, ME
2273                 Boston-Cambridge-Newton, MA-NH
2274                 Boston-Cambridge-Newton, MA-NH
2275                            Charlottesville, VA
2276                Charleston-North Charleston, SC
2277                           Cincinnati, OH-KY-IN
2278                        Harrisburg-Carlisle, PA
2279                    Detroit-Warren-Dearborn, MI
2280                    Detroit-Warren-Dearborn, MI
2281                    Detroit-Warren-Dearborn, MI
2282                    Detroit-Warren-Dearborn, MI
2283                    Detroit-Warren-Dearborn, MI
2284                    Detroit-Warren-Dearborn, MI
2285                    Detroit-Warren-Dearborn, MI
2286          New York-Newark-Jersey City, NY-NJ-PA
2287                      Phoenix-Mesa-Chandler, AZ
2288               Indianapolis-Carmel-Anderson, IN
2289          New York-Newark-Jersey City, NY-NJ-PA
2290          New York-Newark-Jersey City, NY-NJ-PA
2291          New York-Newark-Jersey City, NY-NJ-PA
2292          New York-Newark-Jersey City, NY-NJ-PA
2293          New York-Newark-Jersey City, NY-NJ-PA
2294          New York-Newark-Jersey City, NY-NJ-PA
2295          New York-Newark-Jersey City, NY-NJ-PA
2296          New York-Newark-Jersey City, NY-NJ-PA
2297          New York-Newark-Jersey City, NY-NJ-PA
2298          New York-Newark-Jersey City, NY-NJ-PA
2299          New York-Newark-Jersey City, NY-NJ-PA
2300          New York-Newark-Jersey City, NY-NJ-PA
2301                        Harrisburg-Carlisle, PA
2302        Minneapolis-St. Paul-Bloomington, MN-WI
2303        Minneapolis-St. Paul-Bloomington, MN-WI
2304        Minneapolis-St. Paul-Bloomington, MN-WI
2305                               Raleigh-Cary, NC
2306                                    Roanoke, VA
2307                                  Rochester, NY
2308                                  Knoxville, TN
2309               Austin-Round Rock-Georgetown, TX
2310               Austin-Round Rock-Georgetown, TX
2311                                    Madison, WI
2312               Austin-Round Rock-Georgetown, TX
2313          Hartford-East Hartford-Middletown, CT
2314                 Boston-Cambridge-Newton, MA-NH
2315                 Boston-Cambridge-Newton, MA-NH
2316               Indianapolis-Carmel-Anderson, IN
2317                 Boston-Cambridge-Newton, MA-NH
2318             San Francisco-Oakland-Berkeley, CA
2319              Charlotte-Concord-Gastonia, NC-SC
2320              Charlotte-Concord-Gastonia, NC-SC
2321              Charlotte-Concord-Gastonia, NC-SC
2322              Charlotte-Concord-Gastonia, NC-SC
2323              Charlotte-Concord-Gastonia, NC-SC
2324                                    Salinas, CA
2325              Charlotte-Concord-Gastonia, NC-SC
2326              Charlotte-Concord-Gastonia, NC-SC
2327              Charlotte-Concord-Gastonia, NC-SC
2328                           Cincinnati, OH-KY-IN
2329   Washington-Arlington-Alexandria, DC-VA-MD-WV
2330                Dallas-Fort Worth-Arlington, TX
2331                Dallas-Fort Worth-Arlington, TX
2332                Dallas-Fort Worth-Arlington, TX
2333                Dallas-Fort Worth-Arlington, TX
2334                Dallas-Fort Worth-Arlington, TX
2335                Dallas-Fort Worth-Arlington, TX
2336                Dallas-Fort Worth-Arlington, TX
2337                Dallas-Fort Worth-Arlington, TX
2338                Dallas-Fort Worth-Arlington, TX
2339                Dallas-Fort Worth-Arlington, TX
2340                Dallas-Fort Worth-Arlington, TX
2341                Dallas-Fort Worth-Arlington, TX
2342                Dallas-Fort Worth-Arlington, TX
2343                Dallas-Fort Worth-Arlington, TX
2344                Dallas-Fort Worth-Arlington, TX
2345                Dallas-Fort Worth-Arlington, TX
2346                                Springfield, MO
2347                                   Columbia, MO
2348                    Seattle-Tacoma-Bellevue, WA
2349           Houston-The Woodlands-Sugar Land, TX
2350        Miami-Fort Lauderdale-Pompano Beach, FL
2351          New York-Newark-Jersey City, NY-NJ-PA
2352               Las Vegas-Henderson-Paradise, NV
2353                    Shreveport-Bossier City, LA
2354                                 Wilmington, NC
2355                                   Richmond, VA
2356                Burlington-South Burlington, VT
2357          New York-Newark-Jersey City, NY-NJ-PA
2358                  Orlando-Kissimmee-Sanford, FL
2359                        Harrisburg-Carlisle, PA
2360                    Portland-South Portland, ME
2361       Little Rock-North Little Rock-Conway, AR
2362                   McAllen-Edinburg-Mission, TX
2363        Miami-Fort Lauderdale-Pompano Beach, FL
2364        Miami-Fort Lauderdale-Pompano Beach, FL
2365        Miami-Fort Lauderdale-Pompano Beach, FL
2366        Miami-Fort Lauderdale-Pompano Beach, FL
2367        Miami-Fort Lauderdale-Pompano Beach, FL
2368        Miami-Fort Lauderdale-Pompano Beach, FL
2369                                Tallahassee, FL
2370        Miami-Fort Lauderdale-Pompano Beach, FL
2371                Charleston-North Charleston, SC
2372             Chicago-Naperville-Elgin, IL-IN-WI
2373             Chicago-Naperville-Elgin, IL-IN-WI
2374             Chicago-Naperville-Elgin, IL-IN-WI
2375             Chicago-Naperville-Elgin, IL-IN-WI
2376             Chicago-Naperville-Elgin, IL-IN-WI
2377                            Charlottesville, VA
2378    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2379    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2380                      Phoenix-Mesa-Chandler, AZ
2381                      Phoenix-Mesa-Chandler, AZ
2382                      Phoenix-Mesa-Chandler, AZ
2383                      Phoenix-Mesa-Chandler, AZ
2384            Portland-Vancouver-Hillsboro, OR-WA
2385                                Baton Rouge, LA
2386                               Raleigh-Cary, NC
2387                      Cape Coral-Fort Myers, FL
2388                       Kingsport-Bristol, TN-VA
2389                                 Pittsburgh, PA
2390                      Greensboro-High Point, NC
2391                                    Roanoke, VA
2392                          Birmingham-Hoover, AL
2393                    San Juan-Bayamón-Caguas, PR
2394                                   Columbus, OH
2395             Louisville/Jefferson County, KY-IN
2396                                   Fargo, ND-MN
2397                                       Yuma, AZ
2398                                  Anchorage, AK
2399                                  Anchorage, AK
2400                                           <NA>
2401   Washington-Arlington-Alexandria, DC-VA-MD-WV
2402                                  Ketchikan, AK
2403                             Urban Honolulu, HI
2404                                  Ketchikan, AK
2405             Los Angeles-Long Beach-Anaheim, CA
2406             Los Angeles-Long Beach-Anaheim, CA
2407                    Omaha-Council Bluffs, NE-IA
2408                                           <NA>
2409            Portland-Vancouver-Hillsboro, OR-WA
2410                    Kahului-Wailuku-Lahaina, HI
2411                    Seattle-Tacoma-Bellevue, WA
2412                    Seattle-Tacoma-Bellevue, WA
2413                    Seattle-Tacoma-Bellevue, WA
2414                    Seattle-Tacoma-Bellevue, WA
2415             San Francisco-Oakland-Berkeley, CA
2416                                Albuquerque, NM
2417                      Cape Coral-Fort Myers, FL
2418                    Albany-Schenectady-Troy, NY
2419          Hartford-East Hartford-Middletown, CT
2420          Hartford-East Hartford-Middletown, CT
2421                 Boston-Cambridge-Newton, MA-NH
2422                 Boston-Cambridge-Newton, MA-NH
2423                 Boston-Cambridge-Newton, MA-NH
2424                 Boston-Cambridge-Newton, MA-NH
2425             Los Angeles-Long Beach-Anaheim, CA
2426   Washington-Arlington-Alexandria, DC-VA-MD-WV
2427        Miami-Fort Lauderdale-Pompano Beach, FL
2428          New York-Newark-Jersey City, NY-NJ-PA
2429                    Seattle-Tacoma-Bellevue, WA
2430          New York-Newark-Jersey City, NY-NJ-PA
2431          New York-Newark-Jersey City, NY-NJ-PA
2432          New York-Newark-Jersey City, NY-NJ-PA
2433             Los Angeles-Long Beach-Anaheim, CA
2434             Los Angeles-Long Beach-Anaheim, CA
2435           Riverside-San Bernardino-Ontario, CA
2436                      Providence-Warwick, RI-MA
2437                      Providence-Warwick, RI-MA
2438             San Diego-Chula Vista-Carlsbad, CA
2439                    San Juan-Bayamón-Caguas, PR
2440                    San Juan-Bayamón-Caguas, PR
2441                Sacramento-Roseville-Folsom, CA
2442              North Port-Sarasota-Bradenton, FL
2443                                   Syracuse, NY
2444           Atlanta-Sandy Springs-Alpharetta, GA
2445           Atlanta-Sandy Springs-Alpharetta, GA
2446           Atlanta-Sandy Springs-Alpharetta, GA
2447           Atlanta-Sandy Springs-Alpharetta, GA
2448           Atlanta-Sandy Springs-Alpharetta, GA
2449           Atlanta-Sandy Springs-Alpharetta, GA
2450           Atlanta-Sandy Springs-Alpharetta, GA
2451           Atlanta-Sandy Springs-Alpharetta, GA
2452           Atlanta-Sandy Springs-Alpharetta, GA
2453           Atlanta-Sandy Springs-Alpharetta, GA
2454           Atlanta-Sandy Springs-Alpharetta, GA
2455           Atlanta-Sandy Springs-Alpharetta, GA
2456           Atlanta-Sandy Springs-Alpharetta, GA
2457           Atlanta-Sandy Springs-Alpharetta, GA
2458           Atlanta-Sandy Springs-Alpharetta, GA
2459           Atlanta-Sandy Springs-Alpharetta, GA
2460           Atlanta-Sandy Springs-Alpharetta, GA
2461           Atlanta-Sandy Springs-Alpharetta, GA
2462           Atlanta-Sandy Springs-Alpharetta, GA
2463           Atlanta-Sandy Springs-Alpharetta, GA
2464           Atlanta-Sandy Springs-Alpharetta, GA
2465           Atlanta-Sandy Springs-Alpharetta, GA
2466               Austin-Round Rock-Georgetown, TX
2467               Austin-Round Rock-Georgetown, TX
2468 Nashville-Davidson--Murfreesboro--Franklin, TN
2469                 Boston-Cambridge-Newton, MA-NH
2470                                 Jackson, WY-ID
2471              Charlotte-Concord-Gastonia, NC-SC
2472                           Cincinnati, OH-KY-IN
2473                           Cincinnati, OH-KY-IN
2474                           Cincinnati, OH-KY-IN
2475                              Traverse City, MI
2476                Dallas-Fort Worth-Arlington, TX
2477                    Detroit-Warren-Dearborn, MI
2478                    Detroit-Warren-Dearborn, MI
2479                    Detroit-Warren-Dearborn, MI
2480                    Detroit-Warren-Dearborn, MI
2481                    Detroit-Warren-Dearborn, MI
2482                    Detroit-Warren-Dearborn, MI
2483                    Detroit-Warren-Dearborn, MI
2484                    Detroit-Warren-Dearborn, MI
2485                    Detroit-Warren-Dearborn, MI
2486                                    El Paso, TX
2487              Palm Bay-Melbourne-Titusville, FL
2488   Washington-Arlington-Alexandria, DC-VA-MD-WV
2489               Indianapolis-Carmel-Anderson, IN
2490          New York-Newark-Jersey City, NY-NJ-PA
2491          New York-Newark-Jersey City, NY-NJ-PA
2492             Los Angeles-Long Beach-Anaheim, CA
2493             Los Angeles-Long Beach-Anaheim, CA
2494                  Orlando-Kissimmee-Sanford, FL
2495                              Memphis, TN-MS-AR
2496        Miami-Fort Lauderdale-Pompano Beach, FL
2497        Miami-Fort Lauderdale-Pompano Beach, FL
2498        Minneapolis-St. Paul-Bloomington, MN-WI
2499        Minneapolis-St. Paul-Bloomington, MN-WI
2500        Minneapolis-St. Paul-Bloomington, MN-WI
2501        Minneapolis-St. Paul-Bloomington, MN-WI
2502        Minneapolis-St. Paul-Bloomington, MN-WI
2503        Minneapolis-St. Paul-Bloomington, MN-WI
2504        Minneapolis-St. Paul-Bloomington, MN-WI
2505        Minneapolis-St. Paul-Bloomington, MN-WI
2506        Minneapolis-St. Paul-Bloomington, MN-WI
2507        Minneapolis-St. Paul-Bloomington, MN-WI
2508        Minneapolis-St. Paul-Bloomington, MN-WI
2509        Minneapolis-St. Paul-Bloomington, MN-WI
2510          New York-Newark-Jersey City, NY-NJ-PA
2511                      Greensboro-High Point, NC
2512                      Cape Coral-Fort Myers, FL
2513                  San Antonio-New Braunfels, TX
2514                    Seattle-Tacoma-Bellevue, WA
2515                    Seattle-Tacoma-Bellevue, WA
2516                                 Rapid City, SD
2517                    Seattle-Tacoma-Bellevue, WA
2518             San Francisco-Oakland-Berkeley, CA
2519                    San Juan-Bayamón-Caguas, PR
2520                             Salt Lake City, UT
2521                             Salt Lake City, UT
2522                             Salt Lake City, UT
2523                             Salt Lake City, UT
2524                             Salt Lake City, UT
2525                             Salt Lake City, UT
2526                             Salt Lake City, UT
2527                             Salt Lake City, UT
2528                             Salt Lake City, UT
2529                             Salt Lake City, UT
2530                             Salt Lake City, UT
2531                             Salt Lake City, UT
2532                             Salt Lake City, UT
2533                       Kingsport-Bristol, TN-VA
2534                Burlington-South Burlington, VT
2535          New York-Newark-Jersey City, NY-NJ-PA
2536          New York-Newark-Jersey City, NY-NJ-PA
2537          New York-Newark-Jersey City, NY-NJ-PA
2538          New York-Newark-Jersey City, NY-NJ-PA
2539          New York-Newark-Jersey City, NY-NJ-PA
2540          New York-Newark-Jersey City, NY-NJ-PA
2541   Washington-Arlington-Alexandria, DC-VA-MD-WV
2542   Washington-Arlington-Alexandria, DC-VA-MD-WV
2543             Los Angeles-Long Beach-Anaheim, CA
2544                                Tallahassee, FL
2545                      Brownsville-Harlingen, TX
2546                Dallas-Fort Worth-Arlington, TX
2547                Dallas-Fort Worth-Arlington, TX
2548                Dallas-Fort Worth-Arlington, TX
2549                Dallas-Fort Worth-Arlington, TX
2550                Dallas-Fort Worth-Arlington, TX
2551                Dallas-Fort Worth-Arlington, TX
2552                 Des Moines-West Des Moines, IA
2553    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2554                              Fort Smith, AR-OK
2555                             Grand Junction, CO
2556                                    Wichita, KS
2557                                    Jackson, MS
2558                               Lake Charles, LA
2559        Miami-Fort Lauderdale-Pompano Beach, FL
2560                    Omaha-Council Bluffs, NE-IA
2561             Chicago-Naperville-Elgin, IL-IN-WI
2562             Chicago-Naperville-Elgin, IL-IN-WI
2563             Chicago-Naperville-Elgin, IL-IN-WI
2564                                Springfield, IL
2565                                Tallahassee, FL
2566                             Salt Lake City, UT
2567                                    El Paso, TX
2568              Charlotte-Concord-Gastonia, NC-SC
2569              Charlotte-Concord-Gastonia, NC-SC
2570              Charlotte-Concord-Gastonia, NC-SC
2571              Charlotte-Concord-Gastonia, NC-SC
2572              Charlotte-Concord-Gastonia, NC-SC
2573              Charlotte-Concord-Gastonia, NC-SC
2574   Washington-Arlington-Alexandria, DC-VA-MD-WV
2575   Washington-Arlington-Alexandria, DC-VA-MD-WV
2576                      Greensboro-High Point, NC
2577                                    Madison, WI
2578    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2579                 Pensacola-Ferry Pass-Brent, FL
2580                                 Huntsville, AL
2581                                   Bismarck, ND
2582                                     Casper, WY
2583                             Corpus Christi, TX
2584                     Denver-Aurora-Lakewood, CO
2585                     Denver-Aurora-Lakewood, CO
2586                     Denver-Aurora-Lakewood, CO
2587                     Denver-Aurora-Lakewood, CO
2588                     Denver-Aurora-Lakewood, CO
2589                     Denver-Aurora-Lakewood, CO
2590                     Denver-Aurora-Lakewood, CO
2591                     Denver-Aurora-Lakewood, CO
2592                    Detroit-Warren-Dearborn, MI
2593                    Detroit-Warren-Dearborn, MI
2594                    Detroit-Warren-Dearborn, MI
2595                               St. Louis, MO-IL
2596          New York-Newark-Jersey City, NY-NJ-PA
2597           Houston-The Woodlands-Sugar Land, TX
2598           Houston-The Woodlands-Sugar Land, TX
2599           Houston-The Woodlands-Sugar Land, TX
2600           Houston-The Woodlands-Sugar Land, TX
2601             Los Angeles-Long Beach-Anaheim, CA
2602                                    Lubbock, TX
2603                                    Midland, TX
2604                             Kansas City, MO-KS
2605        Minneapolis-St. Paul-Bloomington, MN-WI
2606        Minneapolis-St. Paul-Bloomington, MN-WI
2607        Minneapolis-St. Paul-Bloomington, MN-WI
2608        Minneapolis-St. Paul-Bloomington, MN-WI
2609        Minneapolis-St. Paul-Bloomington, MN-WI
2610        Minneapolis-St. Paul-Bloomington, MN-WI
2611        Minneapolis-St. Paul-Bloomington, MN-WI
2612                    Omaha-Council Bluffs, NE-IA
2613             Chicago-Naperville-Elgin, IL-IN-WI
2614             Chicago-Naperville-Elgin, IL-IN-WI
2615             Chicago-Naperville-Elgin, IL-IN-WI
2616             Chicago-Naperville-Elgin, IL-IN-WI
2617             Chicago-Naperville-Elgin, IL-IN-WI
2618     Virginia Beach-Norfolk-Newport News, VA-NC
2619                      Phoenix-Mesa-Chandler, AZ
2620                                   Richmond, VA
2621                                   Savannah, GA
2622                    Seattle-Tacoma-Bellevue, WA
2623             San Francisco-Oakland-Berkeley, CA
2624             San Francisco-Oakland-Berkeley, CA
2625                             Salt Lake City, UT
2626                             Salt Lake City, UT
2627                             Salt Lake City, UT
2628                             Salt Lake City, UT
2629                             Salt Lake City, UT
2630                             Salt Lake City, UT
2631                             Salt Lake City, UT
2632                                     Tucson, AZ
2633            Portland-Vancouver-Hillsboro, OR-WA
2634   Washington-Arlington-Alexandria, DC-VA-MD-WV
2635                     Denver-Aurora-Lakewood, CO
2636                     Denver-Aurora-Lakewood, CO
2637                     Denver-Aurora-Lakewood, CO
2638                 Des Moines-West Des Moines, IA
2639          New York-Newark-Jersey City, NY-NJ-PA
2640          New York-Newark-Jersey City, NY-NJ-PA
2641                                  Anchorage, AK
2642                Sacramento-Roseville-Folsom, CA
2643   Washington-Arlington-Alexandria, DC-VA-MD-WV
2644   Washington-Arlington-Alexandria, DC-VA-MD-WV
2645   Washington-Arlington-Alexandria, DC-VA-MD-WV
2646   Washington-Arlington-Alexandria, DC-VA-MD-WV
2647           Houston-The Woodlands-Sugar Land, TX
2648           Houston-The Woodlands-Sugar Land, TX
2649           Houston-The Woodlands-Sugar Land, TX
2650           Houston-The Woodlands-Sugar Land, TX
2651           Houston-The Woodlands-Sugar Land, TX
2652           Houston-The Woodlands-Sugar Land, TX
2653           Houston-The Woodlands-Sugar Land, TX
2654           Houston-The Woodlands-Sugar Land, TX
2655                             Kansas City, MO-KS
2656                   McAllen-Edinburg-Mission, TX
2657                    Omaha-Council Bluffs, NE-IA
2658                                 Pittsburgh, PA
2659             San Diego-Chula Vista-Carlsbad, CA
2660                           Glenwood Springs, CO
2661             San Francisco-Oakland-Berkeley, CA
2662             San Francisco-Oakland-Berkeley, CA
2663             San Francisco-Oakland-Berkeley, CA
2664             San Francisco-Oakland-Berkeley, CA
2665                Sacramento-Roseville-Folsom, CA
2666                           Glenwood Springs, CO
2667             Los Angeles-Long Beach-Anaheim, CA
2668               Austin-Round Rock-Georgetown, TX
2669             Los Angeles-Long Beach-Anaheim, CA
2670                  Baltimore-Columbia-Towson, MD
2671                                   Columbus, OH
2672                     Denver-Aurora-Lakewood, CO
2673            Portland-Vancouver-Hillsboro, OR-WA
2674               Las Vegas-Henderson-Paradise, NV
2675               Las Vegas-Henderson-Paradise, NV
2676             San Diego-Chula Vista-Carlsbad, CA
2677                      Phoenix-Mesa-Chandler, AZ
2678                      Cape Coral-Fort Myers, FL
2679             San Diego-Chula Vista-Carlsbad, CA
2680                         Milwaukee-Waukesha, WI
2681                                    El Paso, TX
2682                                Sioux Falls, SD
2683           Houston-The Woodlands-Sugar Land, TX
2684           Houston-The Woodlands-Sugar Land, TX
2685           Houston-The Woodlands-Sugar Land, TX
2686                             Kansas City, MO-KS
2687                 Boston-Cambridge-Newton, MA-NH
2688                 Boston-Cambridge-Newton, MA-NH
2689                 Boston-Cambridge-Newton, MA-NH
2690                Charleston-North Charleston, SC
2691                                   Columbus, OH
2692   Washington-Arlington-Alexandria, DC-VA-MD-WV
2693                    Detroit-Warren-Dearborn, MI
2694          New York-Newark-Jersey City, NY-NJ-PA
2695          New York-Newark-Jersey City, NY-NJ-PA
2696          New York-Newark-Jersey City, NY-NJ-PA
2697          New York-Newark-Jersey City, NY-NJ-PA
2698                                Spartanburg, SC
2699          New York-Newark-Jersey City, NY-NJ-PA
2700          New York-Newark-Jersey City, NY-NJ-PA
2701          New York-Newark-Jersey City, NY-NJ-PA
2702                              Oklahoma City, OK
2703             Chicago-Naperville-Elgin, IL-IN-WI
2704             Chicago-Naperville-Elgin, IL-IN-WI
2705             Chicago-Naperville-Elgin, IL-IN-WI
2706             Chicago-Naperville-Elgin, IL-IN-WI
2707    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2708    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2709                    Shreveport-Bossier City, LA
2710                               Raleigh-Cary, NC
2711             Fayetteville-Springdale-Rogers, AR
2712                              Evansville, IN-KY
2713   Washington-Arlington-Alexandria, DC-VA-MD-WV
2714             Chicago-Naperville-Elgin, IL-IN-WI
2715             Chicago-Naperville-Elgin, IL-IN-WI
2716                 Pensacola-Ferry Pass-Brent, FL
2717        Minneapolis-St. Paul-Bloomington, MN-WI
2718           Riverside-San Bernardino-Ontario, CA
2719                      Cape Coral-Fort Myers, FL
2720              Charlotte-Concord-Gastonia, NC-SC
2721              Charlotte-Concord-Gastonia, NC-SC
2722                          Manchester-Nashua, NH
2723    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2725                          Birmingham-Hoover, AL
2726                     Denver-Aurora-Lakewood, CO
2727   Washington-Arlington-Alexandria, DC-VA-MD-WV
2728           Houston-The Woodlands-Sugar Land, TX
2729           Houston-The Woodlands-Sugar Land, TX
2730                                    Wichita, KS
2731       Little Rock-North Little Rock-Conway, AR
2732           Atlanta-Sandy Springs-Alpharetta, GA
2733                                     Bangor, ME
2734 Nashville-Davidson--Murfreesboro--Franklin, TN
2735                Burlington-South Burlington, VT
2736                  Baltimore-Columbia-Towson, MD
2737                      Grand Rapids-Kentwood, MI
2738                                Spartanburg, SC
2739          New York-Newark-Jersey City, NY-NJ-PA
2740          New York-Newark-Jersey City, NY-NJ-PA
2741          New York-Newark-Jersey City, NY-NJ-PA
2742          New York-Newark-Jersey City, NY-NJ-PA
2743          New York-Newark-Jersey City, NY-NJ-PA
2744             Fayetteville-Springdale-Rogers, AR
2745                               Raleigh-Cary, NC
2746                                   Richmond, VA
2747                                  Rochester, NY
2748                                  Rochester, NY
2749                                   Savannah, GA
2750                                   Savannah, GA
2751            Tampa-St. Petersburg-Clearwater, FL
2752                                 Huntsville, AL
2753               Austin-Round Rock-Georgetown, TX
2754                                     Tucson, AZ
2755                             Chattanooga, TN-GA
2756                                 Greenville, NC
2757                                 Boise City, ID
2758                    Kahului-Wailuku-Lahaina, HI
2759                                    Midland, TX
2760             Los Angeles-Long Beach-Anaheim, CA
2761                             Urban Honolulu, HI
2762                                  Lafayette, LA
2763                           Cleveland-Elyria, OH
2764                           Cleveland-Elyria, OH
2765                           Cleveland-Elyria, OH
2766                                  Anchorage, AK
2767              Charlotte-Concord-Gastonia, NC-SC
2768              Charlotte-Concord-Gastonia, NC-SC
2769              Charlotte-Concord-Gastonia, NC-SC
2770              Charlotte-Concord-Gastonia, NC-SC
2771              Charlotte-Concord-Gastonia, NC-SC
2772              Charlotte-Concord-Gastonia, NC-SC
2773              Charlotte-Concord-Gastonia, NC-SC
2774              Charlotte-Concord-Gastonia, NC-SC
2775              Charlotte-Concord-Gastonia, NC-SC
2776              Charlotte-Concord-Gastonia, NC-SC
2777              Charlotte-Concord-Gastonia, NC-SC
2778              Charlotte-Concord-Gastonia, NC-SC
2779              Charlotte-Concord-Gastonia, NC-SC
2780              Charlotte-Concord-Gastonia, NC-SC
2781                           Cincinnati, OH-KY-IN
2782   Washington-Arlington-Alexandria, DC-VA-MD-WV
2783   Washington-Arlington-Alexandria, DC-VA-MD-WV
2784                Dallas-Fort Worth-Arlington, TX
2785                Dallas-Fort Worth-Arlington, TX
2786                Dallas-Fort Worth-Arlington, TX
2787                Dallas-Fort Worth-Arlington, TX
2788                Dallas-Fort Worth-Arlington, TX
2789                Dallas-Fort Worth-Arlington, TX
2790                Dallas-Fort Worth-Arlington, TX
2791                Dallas-Fort Worth-Arlington, TX
2792                Dallas-Fort Worth-Arlington, TX
2793                Dallas-Fort Worth-Arlington, TX
2794                Dallas-Fort Worth-Arlington, TX
2795                Dallas-Fort Worth-Arlington, TX
2796                Dallas-Fort Worth-Arlington, TX
2797                Dallas-Fort Worth-Arlington, TX
2798                Dallas-Fort Worth-Arlington, TX
2799                Dallas-Fort Worth-Arlington, TX
2800                Dallas-Fort Worth-Arlington, TX
2801                Dallas-Fort Worth-Arlington, TX
2802                    Omaha-Council Bluffs, NE-IA
2803                          Lexington-Fayette, KY
2804                                   Syracuse, NY
2805                              Oklahoma City, OK
2806                                   Columbia, MO
2807                                       Reno, NV
2808                                           <NA>
2809                                   Columbus, OH
2810               Indianapolis-Carmel-Anderson, IN
2811                               Jacksonville, FL
2812                     Scranton--Wilkes-Barre, PA
2813                            Gulfport-Biloxi, MS
2814         Crestview-Fort Walton Beach-Destin, FL
2815                                      Tulsa, OK
2816                                     Bangor, ME
2817                 Augusta-Richmond County, GA-SC
2818             Los Angeles-Long Beach-Anaheim, CA
2819              North Port-Sarasota-Bradenton, FL
2820                               Grand Island, NE
2821                              Memphis, TN-MS-AR
2822                      Providence-Warwick, RI-MA
2823                                   Columbia, SC
2824  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2825                                     Mobile, AL
2826                             Kansas City, MO-KS
2827                          Steamboat Springs, CO
2828                              Memphis, TN-MS-AR
2829        Miami-Fort Lauderdale-Pompano Beach, FL
2830        Miami-Fort Lauderdale-Pompano Beach, FL
2831        Miami-Fort Lauderdale-Pompano Beach, FL
2832                                       Reno, NV
2833        Miami-Fort Lauderdale-Pompano Beach, FL
2834                 Des Moines-West Des Moines, IA
2835        Miami-Fort Lauderdale-Pompano Beach, FL
2836        Miami-Fort Lauderdale-Pompano Beach, FL
2837                                    Madison, WI
2838                                   Richmond, VA
2839                                       Waco, TX
2840             Chicago-Naperville-Elgin, IL-IN-WI
2841             Chicago-Naperville-Elgin, IL-IN-WI
2842           Riverside-San Bernardino-Ontario, CA
2843        Miami-Fort Lauderdale-Pompano Beach, FL
2844                                    El Paso, TX
2845                                   New Bern, NC
2846                    San Juan-Bayamón-Caguas, PR
2847                      Phoenix-Mesa-Chandler, AZ
2848                      Phoenix-Mesa-Chandler, AZ
2849                                 Pittsburgh, PA
2850                  Baltimore-Columbia-Towson, MD
2851                             Grand Junction, CO
2852                                  Rochester, NY
2853     Virginia Beach-Norfolk-Newport News, VA-NC
2854                 Pensacola-Ferry Pass-Brent, FL
2855             Los Angeles-Long Beach-Anaheim, CA
2856                      Brownsville-Harlingen, TX
2857                    Seattle-Tacoma-Bellevue, WA
2858                          Manchester-Nashua, NH
2859                                  Asheville, NC
2860             San Francisco-Oakland-Berkeley, CA
2861           Houston-The Woodlands-Sugar Land, TX
2862            Portland-Vancouver-Hillsboro, OR-WA
2863                    San Juan-Bayamón-Caguas, PR
2864                                   Columbia, SC
2865                                  Asheville, NC
2866                          Lexington-Fayette, KY
2867                               St. Louis, MO-IL
2868                                Columbus, GA-AL
2869            Tampa-St. Petersburg-Clearwater, FL
2870                                     Tucson, AZ
2871                                Albuquerque, NM
2872                Dallas-Fort Worth-Arlington, TX
2873                              Oklahoma City, OK
2874                Charleston-North Charleston, SC
2875                  Baltimore-Columbia-Towson, MD
2876               Indianapolis-Carmel-Anderson, IN
2877                                  Ketchikan, AK
2878                                  Ketchikan, AK
2879                  Orlando-Kissimmee-Sanford, FL
2880                         Milwaukee-Waukesha, WI
2881            Portland-Vancouver-Hillsboro, OR-WA
2882             San Diego-Chula Vista-Carlsbad, CA
2883                  San Antonio-New Braunfels, TX
2884                    Seattle-Tacoma-Bellevue, WA
2885                    Seattle-Tacoma-Bellevue, WA
2886                    Seattle-Tacoma-Bellevue, WA
2887                    Seattle-Tacoma-Bellevue, WA
2888                    Seattle-Tacoma-Bellevue, WA
2889                    Seattle-Tacoma-Bellevue, WA
2890                    Seattle-Tacoma-Bellevue, WA
2891                    Seattle-Tacoma-Bellevue, WA
2892                    Seattle-Tacoma-Bellevue, WA
2893                    Seattle-Tacoma-Bellevue, WA
2894                    Seattle-Tacoma-Bellevue, WA
2895                    Seattle-Tacoma-Bellevue, WA
2896             San Jose-Sunnyvale-Santa Clara, CA
2897          Hartford-East Hartford-Middletown, CT
2898          Hartford-East Hartford-Middletown, CT
2899          Hartford-East Hartford-Middletown, CT
2900                 Boston-Cambridge-Newton, MA-NH
2901                 Boston-Cambridge-Newton, MA-NH
2902                 Boston-Cambridge-Newton, MA-NH
2903                          Aguadilla-Isabela, PR
2904                        Buffalo-Cheektowaga, NY
2905                Charleston-North Charleston, SC
2906                           Cleveland-Elyria, OH
2907             San Diego-Chula Vista-Carlsbad, CA
2908   Washington-Arlington-Alexandria, DC-VA-MD-WV
2909          New York-Newark-Jersey City, NY-NJ-PA
2910          New York-Newark-Jersey City, NY-NJ-PA
2911        Miami-Fort Lauderdale-Pompano Beach, FL
2912        Miami-Fort Lauderdale-Pompano Beach, FL
2913        Miami-Fort Lauderdale-Pompano Beach, FL
2914        Miami-Fort Lauderdale-Pompano Beach, FL
2915        Miami-Fort Lauderdale-Pompano Beach, FL
2916          New York-Newark-Jersey City, NY-NJ-PA
2917          New York-Newark-Jersey City, NY-NJ-PA
2918           Houston-The Woodlands-Sugar Land, TX
2919                               Jacksonville, FL
2920                               Jacksonville, FL
2921                               Jacksonville, FL
2922                               Jacksonville, FL
2923          New York-Newark-Jersey City, NY-NJ-PA
2924          New York-Newark-Jersey City, NY-NJ-PA
2925          New York-Newark-Jersey City, NY-NJ-PA
2926          New York-Newark-Jersey City, NY-NJ-PA
2927          New York-Newark-Jersey City, NY-NJ-PA
2928                  Orlando-Kissimmee-Sanford, FL
2929        Miami-Fort Lauderdale-Pompano Beach, FL
2930        Miami-Fort Lauderdale-Pompano Beach, FL
2931        Miami-Fort Lauderdale-Pompano Beach, FL
2932        Miami-Fort Lauderdale-Pompano Beach, FL
2933        Miami-Fort Lauderdale-Pompano Beach, FL
2934                                      Ponce, PR
2935                                   Richmond, VA
2936                                   Richmond, VA
2937                                   Richmond, VA
2938                                       Reno, NV
2939                      Cape Coral-Fort Myers, FL
2940             San Diego-Chula Vista-Carlsbad, CA
2941                  San Antonio-New Braunfels, TX
2942             San Jose-Sunnyvale-Santa Clara, CA
2943                    San Juan-Bayamón-Caguas, PR
2944                Burlington-South Burlington, VT
2945              North Port-Sarasota-Bradenton, FL
2946                              Oklahoma City, OK
2947           Atlanta-Sandy Springs-Alpharetta, GA
2948           Atlanta-Sandy Springs-Alpharetta, GA
2949           Atlanta-Sandy Springs-Alpharetta, GA
2950           Atlanta-Sandy Springs-Alpharetta, GA
2951           Atlanta-Sandy Springs-Alpharetta, GA
2952           Atlanta-Sandy Springs-Alpharetta, GA
2953                                   Billings, MT
2954                                 Fort Wayne, IN
2955                             Urban Honolulu, HI
2956                                 Huntsville, AL
2957                                           <NA>
2958   Washington-Arlington-Alexandria, DC-VA-MD-WV
2959                    Detroit-Warren-Dearborn, MI
2960            Davenport-Moline-Rock Island, IA-IL
2961        Miami-Fort Lauderdale-Pompano Beach, FL
2962                           Cleveland-Elyria, OH
2963                          Lexington-Fayette, KY
2964                                     Elmira, NY
2965                                Columbus, GA-AL
2966                                 Fort Wayne, IN
2967                                 Wilmington, NC
2968                                     Albany, GA
2969             Chicago-Naperville-Elgin, IL-IN-WI
2970            Portland-Vancouver-Hillsboro, OR-WA
2971                      Cape Coral-Fort Myers, FL
2972   Washington-Arlington-Alexandria, DC-VA-MD-WV
2973                               St. Louis, MO-IL
2974                             Grand Junction, CO
2975                             Salt Lake City, UT
2976                                  Rochester, NY
2977               Indianapolis-Carmel-Anderson, IN
2978                     Denver-Aurora-Lakewood, CO
2979                     Denver-Aurora-Lakewood, CO
2980                     Denver-Aurora-Lakewood, CO
2981                     Denver-Aurora-Lakewood, CO
2982          New York-Newark-Jersey City, NY-NJ-PA
2983               Las Vegas-Henderson-Paradise, NV
2984                  Orlando-Kissimmee-Sanford, FL
2985           Riverside-San Bernardino-Ontario, CA
2986                      Cape Coral-Fort Myers, FL
2987                      Cape Coral-Fort Myers, FL
2988                               St. Louis, MO-IL
2989            Tampa-St. Petersburg-Clearwater, FL
2990                          Trenton-Princeton, NJ
2991                          Trenton-Princeton, NJ
2992                                  Knoxville, TN
2993             Fayetteville-Springdale-Rogers, AR
2994                      Grand Rapids-Kentwood, MI
2995                      Greensboro-High Point, NC
2996   Washington-Arlington-Alexandria, DC-VA-MD-WV
2997             Chicago-Naperville-Elgin, IL-IN-WI
2998                          Aguadilla-Isabela, PR
2999                               St. Louis, MO-IL
3000                                     Mobile, AL
3001                          Birmingham-Hoover, AL
3002                                     Lawton, OK
3003                             Chattanooga, TN-GA
3004                               Cedar Rapids, IA
3005   Washington-Arlington-Alexandria, DC-VA-MD-WV
3006                Dallas-Fort Worth-Arlington, TX
3007                Dallas-Fort Worth-Arlington, TX
3008                Dallas-Fort Worth-Arlington, TX
3009                Dallas-Fort Worth-Arlington, TX
3010                Dallas-Fort Worth-Arlington, TX
3011                Dallas-Fort Worth-Arlington, TX
3012                Dallas-Fort Worth-Arlington, TX
3013                      Grand Rapids-Kentwood, MI
3014        Miami-Fort Lauderdale-Pompano Beach, FL
3015        Miami-Fort Lauderdale-Pompano Beach, FL
3016        Miami-Fort Lauderdale-Pompano Beach, FL
3017             Chicago-Naperville-Elgin, IL-IN-WI
3018             Chicago-Naperville-Elgin, IL-IN-WI
3019             Chicago-Naperville-Elgin, IL-IN-WI
3020             Chicago-Naperville-Elgin, IL-IN-WI
3021              Charlotte-Concord-Gastonia, NC-SC
3022                                   Savannah, GA
3023                                  Knoxville, TN
3024                    Atlantic City-Hammonton, NJ
3025                                      Akron, OH
3026                           Cleveland-Elyria, OH
3027               Las Vegas-Henderson-Paradise, NV
3028             Los Angeles-Long Beach-Anaheim, CA
3029                         Milwaukee-Waukesha, WI
3030             Louisville/Jefferson County, KY-IN
3031                 Augusta-Richmond County, GA-SC
3032                           Cleveland-Elyria, OH
3033              Charlotte-Concord-Gastonia, NC-SC
3034              Charlotte-Concord-Gastonia, NC-SC
3035              Charlotte-Concord-Gastonia, NC-SC
3036              Charlotte-Concord-Gastonia, NC-SC
3037                           Cincinnati, OH-KY-IN
3038   Washington-Arlington-Alexandria, DC-VA-MD-WV
3039   Washington-Arlington-Alexandria, DC-VA-MD-WV
3040   Washington-Arlington-Alexandria, DC-VA-MD-WV
3041   Washington-Arlington-Alexandria, DC-VA-MD-WV
3042   Washington-Arlington-Alexandria, DC-VA-MD-WV
3043   Washington-Arlington-Alexandria, DC-VA-MD-WV
3044                 Des Moines-West Des Moines, IA
3045                          Birmingham-Hoover, AL
3046                                Panama City, FL
3047                                Gainesville, FL
3048                      Grand Rapids-Kentwood, MI
3049                                       Erie, PA
3050               Indianapolis-Carmel-Anderson, IN
3051    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3052                    South Bend-Mishawaka, IN-MI
3053               Austin-Round Rock-Georgetown, TX
3054                                Bakersfield, CA
3055                   Prescott Valley-Prescott, AZ
3056                        Santa Rosa-Petaluma, CA
3057                     Denver-Aurora-Lakewood, CO
3058                     Denver-Aurora-Lakewood, CO
3059                     Denver-Aurora-Lakewood, CO
3060                Dallas-Fort Worth-Arlington, TX
3061                Dallas-Fort Worth-Arlington, TX
3062                    Detroit-Warren-Dearborn, MI
3063                                 Fort Wayne, IN
3064                                     Juneau, AK
3065                                      Hobbs, NM
3066                                Idaho Falls, ID
3067             Los Angeles-Long Beach-Anaheim, CA
3068             Los Angeles-Long Beach-Anaheim, CA
3069             Los Angeles-Long Beach-Anaheim, CA
3070                                 Alexandria, LA
3071                                   Victoria, TX
3072        Minneapolis-St. Paul-Bloomington, MN-WI
3073             Chicago-Naperville-Elgin, IL-IN-WI
3074                    Portland-South Portland, ME
3075                                   Santa Fe, NM
3076                                   Savannah, GA
3077                                    Roanoke, VA
3078                    Seattle-Tacoma-Bellevue, WA
3079             San Francisco-Oakland-Berkeley, CA
3080             San Francisco-Oakland-Berkeley, CA
3081             San Francisco-Oakland-Berkeley, CA
3082             San Francisco-Oakland-Berkeley, CA
3083                             Salt Lake City, UT
3084                         Eugene-Springfield, OR
3085     Virginia Beach-Norfolk-Newport News, VA-NC
3086                                Walla Walla, WA
3087                                  Anchorage, AK
3088             Los Angeles-Long Beach-Anaheim, CA
3089                                    Salinas, CA
3090                    Seattle-Tacoma-Bellevue, WA
3091                    Seattle-Tacoma-Bellevue, WA
3092               Austin-Round Rock-Georgetown, TX
3093                             Urban Honolulu, HI
3094                                   Sikeston, MO
3095                                      Tulsa, OK
3096                    San Juan-Bayamón-Caguas, PR
3097                                   Columbus, OH
3098                     Denver-Aurora-Lakewood, CO
3099                     Denver-Aurora-Lakewood, CO
3100          New York-Newark-Jersey City, NY-NJ-PA
3101                                     Fresno, CA
3102   Washington-Arlington-Alexandria, DC-VA-MD-WV
3103   Washington-Arlington-Alexandria, DC-VA-MD-WV
3104           Houston-The Woodlands-Sugar Land, TX
3105           Houston-The Woodlands-Sugar Land, TX
3106           Houston-The Woodlands-Sugar Land, TX
3107           Houston-The Woodlands-Sugar Land, TX
3108           Houston-The Woodlands-Sugar Land, TX
3109           Houston-The Woodlands-Sugar Land, TX
3110            Portland-Vancouver-Hillsboro, OR-WA
3111                                    Redding, CA
3112             Los Angeles-Long Beach-Anaheim, CA
3113             Los Angeles-Long Beach-Anaheim, CA
3114                                           <NA>
3115                    San Juan-Bayamón-Caguas, PR
3116    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3117                                     Salina, KS
3118              North Port-Sarasota-Bradenton, FL
3119                             Corpus Christi, TX
3120                                    Liberal, KS
3121                                Albuquerque, NM
3122                                Albuquerque, NM
3123               Austin-Round Rock-Georgetown, TX
3124               Austin-Round Rock-Georgetown, TX
3125                          Birmingham-Hoover, AL
3126 Nashville-Davidson--Murfreesboro--Franklin, TN
3127 Nashville-Davidson--Murfreesboro--Franklin, TN
3128 Nashville-Davidson--Murfreesboro--Franklin, TN
3129                      Phoenix-Mesa-Chandler, AZ
3130                        Buffalo-Cheektowaga, NY
3131                  Baltimore-Columbia-Towson, MD
3132                  Baltimore-Columbia-Towson, MD
3133                  Baltimore-Columbia-Towson, MD
3134                  Baltimore-Columbia-Towson, MD
3135                  Baltimore-Columbia-Towson, MD
3136                  Baltimore-Columbia-Towson, MD
3137                  Baltimore-Columbia-Towson, MD
3138                  Baltimore-Columbia-Towson, MD
3139                  Baltimore-Columbia-Towson, MD
3140                  Baltimore-Columbia-Towson, MD
3141                Charleston-North Charleston, SC
3142                                   Columbus, OH
3143                                   Columbus, OH
3144                Dallas-Fort Worth-Arlington, TX
3145                Dallas-Fort Worth-Arlington, TX
3146                Dallas-Fort Worth-Arlington, TX
3147                Dallas-Fort Worth-Arlington, TX
3148                Dallas-Fort Worth-Arlington, TX
3149                Dallas-Fort Worth-Arlington, TX
3150                Dallas-Fort Worth-Arlington, TX
3151                Dallas-Fort Worth-Arlington, TX
3152   Washington-Arlington-Alexandria, DC-VA-MD-WV
3153   Washington-Arlington-Alexandria, DC-VA-MD-WV
3154                     Denver-Aurora-Lakewood, CO
3155                     Denver-Aurora-Lakewood, CO
3156        Miami-Fort Lauderdale-Pompano Beach, FL
3157           Houston-The Woodlands-Sugar Land, TX
3158           Houston-The Woodlands-Sugar Land, TX
3159           Houston-The Woodlands-Sugar Land, TX
3160           Houston-The Woodlands-Sugar Land, TX
3161          New York-Newark-Jersey City, NY-NJ-PA
3162               Las Vegas-Henderson-Paradise, NV
3163               Las Vegas-Henderson-Paradise, NV
3164                                    Lubbock, TX
3165                                    Lubbock, TX
3166             Los Angeles-Long Beach-Anaheim, CA
3167       Little Rock-North Little Rock-Conway, AR
3168                                    Midland, TX
3169                             Kansas City, MO-KS
3170                             Kansas City, MO-KS
3171                  Orlando-Kissimmee-Sanford, FL
3172                  Orlando-Kissimmee-Sanford, FL
3173                  Orlando-Kissimmee-Sanford, FL
3174             Chicago-Naperville-Elgin, IL-IN-WI
3175             Chicago-Naperville-Elgin, IL-IN-WI
3176             Chicago-Naperville-Elgin, IL-IN-WI
3177             Chicago-Naperville-Elgin, IL-IN-WI
3178             Chicago-Naperville-Elgin, IL-IN-WI
3179             Chicago-Naperville-Elgin, IL-IN-WI
3180             Chicago-Naperville-Elgin, IL-IN-WI
3181                              Memphis, TN-MS-AR
3182                         Milwaukee-Waukesha, WI
3183  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3184             San Francisco-Oakland-Berkeley, CA
3185             San Francisco-Oakland-Berkeley, CA
3186                    Omaha-Council Bluffs, NE-IA
3187                    Omaha-Council Bluffs, NE-IA
3188                      Phoenix-Mesa-Chandler, AZ
3189                      Phoenix-Mesa-Chandler, AZ
3190                      Phoenix-Mesa-Chandler, AZ
3191                                 Pittsburgh, PA
3192           Riverside-San Bernardino-Ontario, CA
3193                      Providence-Warwick, RI-MA
3194                      Providence-Warwick, RI-MA
3195                               Raleigh-Cary, NC
3196                                       Reno, NV
3197                                       Reno, NV
3198                                  Rochester, NY
3199                      Cape Coral-Fort Myers, FL
3200             San Diego-Chula Vista-Carlsbad, CA
3201             San Diego-Chula Vista-Carlsbad, CA
3202                  San Antonio-New Braunfels, TX
3203                  San Antonio-New Braunfels, TX
3204                                   Savannah, GA
3205             Louisville/Jefferson County, KY-IN
3206                Sacramento-Roseville-Folsom, CA
3207                               St. Louis, MO-IL
3208                               St. Louis, MO-IL
3209                               St. Louis, MO-IL
3210                               St. Louis, MO-IL
3211            Tampa-St. Petersburg-Clearwater, FL
3212            Tampa-St. Petersburg-Clearwater, FL
3213            Tampa-St. Petersburg-Clearwater, FL
3214                                      Tulsa, OK
3215                                      Tulsa, OK
3216                                   Savannah, GA
3217              Charlotte-Concord-Gastonia, NC-SC
3218                Dallas-Fort Worth-Arlington, TX
3219                Dallas-Fort Worth-Arlington, TX
3220                                       Yuma, AZ
3221                      Phoenix-Mesa-Chandler, AZ
3222                      Phoenix-Mesa-Chandler, AZ
3223                                   Richmond, VA
3224          Hartford-East Hartford-Middletown, CT
3225                 Boston-Cambridge-Newton, MA-NH
3226   Washington-Arlington-Alexandria, DC-VA-MD-WV
3227   Washington-Arlington-Alexandria, DC-VA-MD-WV
3228          New York-Newark-Jersey City, NY-NJ-PA
3229          New York-Newark-Jersey City, NY-NJ-PA
3230   Washington-Arlington-Alexandria, DC-VA-MD-WV
3231   Washington-Arlington-Alexandria, DC-VA-MD-WV
3232                                   Columbus, OH
3233          New York-Newark-Jersey City, NY-NJ-PA
3234          New York-Newark-Jersey City, NY-NJ-PA
3235          New York-Newark-Jersey City, NY-NJ-PA
3236             Chicago-Naperville-Elgin, IL-IN-WI
3237             Chicago-Naperville-Elgin, IL-IN-WI
3238             Chicago-Naperville-Elgin, IL-IN-WI
3239    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3240                                      Akron, OH
3241              North Port-Sarasota-Bradenton, FL
3242                                  Asheville, NC
3243            Portland-Vancouver-Hillsboro, OR-WA
3244                                     Fresno, CA
3245                                   Columbia, SC
3246                              Wausau-Weston, WI
3247           Houston-The Woodlands-Sugar Land, TX
3248                                       Erie, PA
3249   Washington-Arlington-Alexandria, DC-VA-MD-WV
3250                         Milwaukee-Waukesha, WI
3251             Chicago-Naperville-Elgin, IL-IN-WI
3252                              State College, PA
3253                     Scranton--Wilkes-Barre, PA
3254                           Cincinnati, OH-KY-IN
3255        Minneapolis-St. Paul-Bloomington, MN-WI
3256        Miami-Fort Lauderdale-Pompano Beach, FL
3257                 Boston-Cambridge-Newton, MA-NH
3258              Charlotte-Concord-Gastonia, NC-SC
3259                      Grand Rapids-Kentwood, MI
3260    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3261    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3262                                  Rochester, NY
3263                                Spartanburg, SC
3264                       New Orleans-Metairie, LA
3265           Houston-The Woodlands-Sugar Land, TX
3266                                   Santa Fe, NM
3267          Hartford-East Hartford-Middletown, CT
3268              Charlotte-Concord-Gastonia, NC-SC
3269                Dallas-Fort Worth-Arlington, TX
3270                Dallas-Fort Worth-Arlington, TX
3271                                 Montgomery, AL
3272    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3273                                       Hilo, HI
3274             Los Angeles-Long Beach-Anaheim, CA
3275                               Salisbury, MD-DE
3276                                 San Angelo, TX
3277                                  Marquette, MI
3278                      Phoenix-Mesa-Chandler, AZ
3279                       Beaumont-Port Arthur, TX
3280                                  Anchorage, AK
3281                                  Anchorage, AK
3282                                  Anchorage, AK
3283                    Seattle-Tacoma-Bellevue, WA
3284                                           <NA>
3285                                           <NA>
3286          New York-Newark-Jersey City, NY-NJ-PA
3287          New York-Newark-Jersey City, NY-NJ-PA
3288                      Providence-Warwick, RI-MA
3289                  San Antonio-New Braunfels, TX
3290           Atlanta-Sandy Springs-Alpharetta, GA
3291           Atlanta-Sandy Springs-Alpharetta, GA
3292           Atlanta-Sandy Springs-Alpharetta, GA
3293           Atlanta-Sandy Springs-Alpharetta, GA
3294           Atlanta-Sandy Springs-Alpharetta, GA
3295           Atlanta-Sandy Springs-Alpharetta, GA
3296                                Gainesville, FL
3297                                  Anchorage, AK
3298                    Shreveport-Bossier City, LA
3299                                    Bozeman, MT
3300                               St. Louis, MO-IL
3301   Washington-Arlington-Alexandria, DC-VA-MD-WV
3302                Dallas-Fort Worth-Arlington, TX
3303                Dallas-Fort Worth-Arlington, TX
3304                                    Salinas, CA
3305              Charlotte-Concord-Gastonia, NC-SC
3306              Charlotte-Concord-Gastonia, NC-SC
3307   Washington-Arlington-Alexandria, DC-VA-MD-WV
3308   Washington-Arlington-Alexandria, DC-VA-MD-WV
3309                               Salisbury, MD-DE
3310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3311                     Denver-Aurora-Lakewood, CO
3312                                    Lubbock, TX
3313             Chicago-Naperville-Elgin, IL-IN-WI
3314                  San Antonio-New Braunfels, TX
3315             San Francisco-Oakland-Berkeley, CA
3316          New York-Newark-Jersey City, NY-NJ-PA
3317          New York-Newark-Jersey City, NY-NJ-PA
3318           Houston-The Woodlands-Sugar Land, TX
3319                             Urban Honolulu, HI
3320             San Diego-Chula Vista-Carlsbad, CA
3321                                      Minot, ND
3322             San Francisco-Oakland-Berkeley, CA
3323                  Baltimore-Columbia-Towson, MD
3324   Washington-Arlington-Alexandria, DC-VA-MD-WV
3325                         Eugene-Springfield, OR
3326                     Spokane-Spokane Valley, WA
3327             Chicago-Naperville-Elgin, IL-IN-WI
3328                    Omaha-Council Bluffs, NE-IA
3329             Los Angeles-Long Beach-Anaheim, CA
3330             San Diego-Chula Vista-Carlsbad, CA
3331             San Diego-Chula Vista-Carlsbad, CA
3332             Los Angeles-Long Beach-Anaheim, CA
3333                               St. Louis, MO-IL
3334            Tampa-St. Petersburg-Clearwater, FL
3335                Charleston-North Charleston, SC
3336                Dallas-Fort Worth-Arlington, TX
3337                Dallas-Fort Worth-Arlington, TX
3338                Dallas-Fort Worth-Arlington, TX
3339           Houston-The Woodlands-Sugar Land, TX
3340           Houston-The Woodlands-Sugar Land, TX
3341           Houston-The Woodlands-Sugar Land, TX
3342                                 Rapid City, SD
3343              Charlotte-Concord-Gastonia, NC-SC
3344              Charlotte-Concord-Gastonia, NC-SC
3345          New York-Newark-Jersey City, NY-NJ-PA
3346     Virginia Beach-Norfolk-Newport News, VA-NC
3347    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3348        Minneapolis-St. Paul-Bloomington, MN-WI
3349    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3350    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3351                     Denver-Aurora-Lakewood, CO
3352                     Denver-Aurora-Lakewood, CO
3353                    Shreveport-Bossier City, LA
3354    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3355             Chicago-Naperville-Elgin, IL-IN-WI
3356           Atlanta-Sandy Springs-Alpharetta, GA
3357   Washington-Arlington-Alexandria, DC-VA-MD-WV
3358                Dallas-Fort Worth-Arlington, TX
3359                Dallas-Fort Worth-Arlington, TX
3360                                     Peoria, IL
3361                San Luis Obispo-Paso Robles, CA
3362                      College Station-Bryan, TX
3363        Miami-Fort Lauderdale-Pompano Beach, FL
3364    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3365                           Champaign-Urbana, IL
3366           Atlanta-Sandy Springs-Alpharetta, GA
3367           Atlanta-Sandy Springs-Alpharetta, GA
3368                  Baltimore-Columbia-Towson, MD
3369                    Detroit-Warren-Dearborn, MI
3370             Chicago-Naperville-Elgin, IL-IN-WI
3371                                Bakersfield, CA
3372                Dallas-Fort Worth-Arlington, TX
3373        Miami-Fort Lauderdale-Pompano Beach, FL
3374   Washington-Arlington-Alexandria, DC-VA-MD-WV
3375   Washington-Arlington-Alexandria, DC-VA-MD-WV
3376                     Denver-Aurora-Lakewood, CO
3377                                           <NA>
3378             Chicago-Naperville-Elgin, IL-IN-WI
3379                         Kennewick-Richland, WA
3380             San Francisco-Oakland-Berkeley, CA
3381                                       Reno, NV
3382                     Denver-Aurora-Lakewood, CO
3383          New York-Newark-Jersey City, NY-NJ-PA
3384          New York-Newark-Jersey City, NY-NJ-PA
3385           Houston-The Woodlands-Sugar Land, TX
3386               Indianapolis-Carmel-Anderson, IN
3387             San Francisco-Oakland-Berkeley, CA
3388                      Cape Coral-Fort Myers, FL
3389               Las Vegas-Henderson-Paradise, NV
3390                                   Amarillo, TX
3391                Dallas-Fort Worth-Arlington, TX
3392                Dallas-Fort Worth-Arlington, TX
3393           Houston-The Woodlands-Sugar Land, TX
3394                             Kansas City, MO-KS
3395                             Salt Lake City, UT
3396             Louisville/Jefferson County, KY-IN
3397           Houston-The Woodlands-Sugar Land, TX
3398              Charlotte-Concord-Gastonia, NC-SC
3399           Atlanta-Sandy Springs-Alpharetta, GA
3400                Dallas-Fort Worth-Arlington, TX
3401          New York-Newark-Jersey City, NY-NJ-PA
3402           Atlanta-Sandy Springs-Alpharetta, GA
3403                                Bloomington, IL
3404                               Cedar Rapids, IA
3405                    Detroit-Warren-Dearborn, MI
3406          New York-Newark-Jersey City, NY-NJ-PA
3407                              Memphis, TN-MS-AR
3408            Davenport-Moline-Rock Island, IA-IL
3409                             Urban Honolulu, HI
3410                    South Bend-Mishawaka, IN-MI
3411               Austin-Round Rock-Georgetown, TX
3412                                Spartanburg, SC
3413                                    Durango, CO
3414              Charlotte-Concord-Gastonia, NC-SC
3415              Charlotte-Concord-Gastonia, NC-SC
3416              Charlotte-Concord-Gastonia, NC-SC
3417              Charlotte-Concord-Gastonia, NC-SC
3418              Charlotte-Concord-Gastonia, NC-SC
3419              Charlotte-Concord-Gastonia, NC-SC
3420              Charlotte-Concord-Gastonia, NC-SC
3421                Dallas-Fort Worth-Arlington, TX
3422                Dallas-Fort Worth-Arlington, TX
3423                Dallas-Fort Worth-Arlington, TX
3424                Dallas-Fort Worth-Arlington, TX
3425                Dallas-Fort Worth-Arlington, TX
3426                                 Jackson, WY-ID
3427                                Springfield, MO
3428                                    Abilene, TX
3429                    San Juan-Bayamón-Caguas, PR
3430        Miami-Fort Lauderdale-Pompano Beach, FL
3431                                   Bismarck, ND
3432                      Grand Rapids-Kentwood, MI
3433                  Santa Maria-Santa Barbara, CA
3434                                 Bellingham, WA
3435                      Phoenix-Mesa-Chandler, AZ
3436                Burlington-South Burlington, VT
3437                  San Antonio-New Braunfels, TX
3438                              Wichita Falls, TX
3439             Los Angeles-Long Beach-Anaheim, CA
3440                                 Pittsburgh, PA
3441             Los Angeles-Long Beach-Anaheim, CA
3442                Dallas-Fort Worth-Arlington, TX
3443                      Phoenix-Mesa-Chandler, AZ
3444           Riverside-San Bernardino-Ontario, CA
3445            Portland-Vancouver-Hillsboro, OR-WA
3446            Portland-Vancouver-Hillsboro, OR-WA
3447            Portland-Vancouver-Hillsboro, OR-WA
3448            Portland-Vancouver-Hillsboro, OR-WA
3449                San Luis Obispo-Paso Robles, CA
3450             San Diego-Chula Vista-Carlsbad, CA
3451                    Seattle-Tacoma-Bellevue, WA
3452                    Seattle-Tacoma-Bellevue, WA
3453                    Seattle-Tacoma-Bellevue, WA
3454                    Seattle-Tacoma-Bellevue, WA
3455                    Seattle-Tacoma-Bellevue, WA
3456                                           <NA>
3457                                           <NA>
3458             San Jose-Sunnyvale-Santa Clara, CA
3459             Los Angeles-Long Beach-Anaheim, CA
3460          Hartford-East Hartford-Middletown, CT
3461                 Boston-Cambridge-Newton, MA-NH
3462                 Boston-Cambridge-Newton, MA-NH
3463          New York-Newark-Jersey City, NY-NJ-PA
3464             Los Angeles-Long Beach-Anaheim, CA
3465             Los Angeles-Long Beach-Anaheim, CA
3466          New York-Newark-Jersey City, NY-NJ-PA
3467                    San Juan-Bayamón-Caguas, PR
3468           Atlanta-Sandy Springs-Alpharetta, GA
3469           Atlanta-Sandy Springs-Alpharetta, GA
3470                             Grand Forks, ND-MN
3471           Atlanta-Sandy Springs-Alpharetta, GA
3472                                    Wichita, KS
3473                 Boston-Cambridge-Newton, MA-NH
3474                                    Bozeman, MT
3475                                 Boise City, ID
3476                                Tallahassee, FL
3477                                   Columbia, SC
3478                                      Minot, ND
3479                                Lewiston, ID-WA
3480                                    Medford, OR
3481             Los Angeles-Long Beach-Anaheim, CA
3482                             Kansas City, MO-KS
3483                              Memphis, TN-MS-AR
3484                                   Missoula, MT
3485                           Glenwood Springs, CO
3486        Minneapolis-St. Paul-Bloomington, MN-WI
3487            Portland-Vancouver-Hillsboro, OR-WA
3488                                      Tulsa, OK
3489                                     Mobile, AL
3490                              Traverse City, MI
3491                           Dayton-Kettering, OH
3492                Dallas-Fort Worth-Arlington, TX
3493                Dallas-Fort Worth-Arlington, TX
3494                Dallas-Fort Worth-Arlington, TX
3495                Dallas-Fort Worth-Arlington, TX
3496                                Gainesville, FL
3497        Miami-Fort Lauderdale-Pompano Beach, FL
3498                                 Charleston, WV
3499              Charlotte-Concord-Gastonia, NC-SC
3500   Washington-Arlington-Alexandria, DC-VA-MD-WV
3501                                    Madison, WI
3502     Virginia Beach-Norfolk-Newport News, VA-NC
3503    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3504                                   Bismarck, ND
3505                                   Brainerd, MN
3506                     Denver-Aurora-Lakewood, CO
3507                     Denver-Aurora-Lakewood, CO
3508                     Denver-Aurora-Lakewood, CO
3509                     Denver-Aurora-Lakewood, CO
3510                Dallas-Fort Worth-Arlington, TX
3511                Dallas-Fort Worth-Arlington, TX
3512                Dallas-Fort Worth-Arlington, TX
3513   Washington-Arlington-Alexandria, DC-VA-MD-WV
3514                                   Appleton, WI
3515                                  Marquette, MI
3516        Minneapolis-St. Paul-Bloomington, MN-WI
3517        Minneapolis-St. Paul-Bloomington, MN-WI
3518                    Omaha-Council Bluffs, NE-IA
3519             Chicago-Naperville-Elgin, IL-IN-WI
3520             Chicago-Naperville-Elgin, IL-IN-WI
3521            Portland-Vancouver-Hillsboro, OR-WA
3522            Portland-Vancouver-Hillsboro, OR-WA
3523                      Phoenix-Mesa-Chandler, AZ
3524                      Phoenix-Mesa-Chandler, AZ
3525                     Spokane-Spokane Valley, WA
3526   Washington-Arlington-Alexandria, DC-VA-MD-WV
3527             San Diego-Chula Vista-Carlsbad, CA
3528                San Luis Obispo-Paso Robles, CA
3529                             Salt Lake City, UT
3530                             Salt Lake City, UT
3531                             Salt Lake City, UT
3532                             Salt Lake City, UT
3533                             Salt Lake City, UT
3534                    Seattle-Tacoma-Bellevue, WA
3535                                    Pullman, WA
3536                  Santa Maria-Santa Barbara, CA
3537                    Seattle-Tacoma-Bellevue, WA
3538                    Seattle-Tacoma-Bellevue, WA
3539                     Denver-Aurora-Lakewood, CO
3540   Washington-Arlington-Alexandria, DC-VA-MD-WV
3541   Washington-Arlington-Alexandria, DC-VA-MD-WV
3542           Houston-The Woodlands-Sugar Land, TX
3543                                  Knoxville, TN
3544                                           <NA>
3545                                   Syracuse, NY
3546             Chicago-Naperville-Elgin, IL-IN-WI
3547                                    Jackson, MS
3548                                       Reno, NV
3549             San Francisco-Oakland-Berkeley, CA
3550             San Francisco-Oakland-Berkeley, CA
3551             Los Angeles-Long Beach-Anaheim, CA
3552                                 Charleston, WV
3553                             Grand Junction, CO
3554                Dallas-Fort Worth-Arlington, TX
3555                     Denver-Aurora-Lakewood, CO
3556        Miami-Fort Lauderdale-Pompano Beach, FL
3557                      Grand Rapids-Kentwood, MI
3558           Houston-The Woodlands-Sugar Land, TX
3559               Las Vegas-Henderson-Paradise, NV
3560                      Phoenix-Mesa-Chandler, AZ
3561                                 Pittsburgh, PA
3562                Sacramento-Roseville-Folsom, CA
3563                               St. Louis, MO-IL
3564                               St. Louis, MO-IL
3565                Sacramento-Roseville-Folsom, CA
3566   Washington-Arlington-Alexandria, DC-VA-MD-WV
3567           Houston-The Woodlands-Sugar Land, TX
3568           Houston-The Woodlands-Sugar Land, TX
3569                  Santa Maria-Santa Barbara, CA
3570              Charlotte-Concord-Gastonia, NC-SC
3571                      Grand Rapids-Kentwood, MI
3572    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3573             Chicago-Naperville-Elgin, IL-IN-WI
3574                           Dayton-Kettering, OH
3575    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3576                     Denver-Aurora-Lakewood, CO
3577                                 Boise City, ID
3578           Houston-The Woodlands-Sugar Land, TX
3579                         Eugene-Springfield, OR
3580           Atlanta-Sandy Springs-Alpharetta, GA
3581           Atlanta-Sandy Springs-Alpharetta, GA
3582                 Des Moines-West Des Moines, IA
3583                    Detroit-Warren-Dearborn, MI
3584          New York-Newark-Jersey City, NY-NJ-PA
3585          New York-Newark-Jersey City, NY-NJ-PA
3586        Minneapolis-St. Paul-Bloomington, MN-WI
3587        Minneapolis-St. Paul-Bloomington, MN-WI
3588                                  Knoxville, TN
3589                                Springfield, MO
3590                                    Bozeman, MT
3591                San Luis Obispo-Paso Robles, CA
3592              Charlotte-Concord-Gastonia, NC-SC
3593                                   Missoula, MT
3594                                Panama City, FL
3595                Dallas-Fort Worth-Arlington, TX
3596                Dallas-Fort Worth-Arlington, TX
3597                Dallas-Fort Worth-Arlington, TX
3598                 Des Moines-West Des Moines, IA
3599                         Eugene-Springfield, OR
3600                        Buffalo-Cheektowaga, NY
3601                                    Edwards, CO
3602                      Phoenix-Mesa-Chandler, AZ
3603                                Bloomington, IL
3604                                   Key West, FL
3605                                           <NA>
3606                                  Anchorage, AK
3607                                 Boise City, ID
3608                Dallas-Fort Worth-Arlington, TX
3609                             Urban Honolulu, HI
3610             Chicago-Naperville-Elgin, IL-IN-WI
3611            Portland-Vancouver-Hillsboro, OR-WA
3612            Portland-Vancouver-Hillsboro, OR-WA
3613            Portland-Vancouver-Hillsboro, OR-WA
3614             San Diego-Chula Vista-Carlsbad, CA
3615                    Seattle-Tacoma-Bellevue, WA
3616                                     Tucson, AZ
3617                 Boston-Cambridge-Newton, MA-NH
3618          New York-Newark-Jersey City, NY-NJ-PA
3619           Atlanta-Sandy Springs-Alpharetta, GA
3620           Atlanta-Sandy Springs-Alpharetta, GA
3621                    South Bend-Mishawaka, IN-MI
3622        Minneapolis-St. Paul-Bloomington, MN-WI
3623                                   Columbus, MS
3624                             Salt Lake City, UT
3625                Dallas-Fort Worth-Arlington, TX
3626                Dallas-Fort Worth-Arlington, TX
3627                Dallas-Fort Worth-Arlington, TX
3628                Dallas-Fort Worth-Arlington, TX
3629                  San Antonio-New Braunfels, TX
3630       Little Rock-North Little Rock-Conway, AR
3631        Miami-Fort Lauderdale-Pompano Beach, FL
3632  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3633                          Aguadilla-Isabela, PR
3634                                   Columbia, SC
3635              Charlotte-Concord-Gastonia, NC-SC
3636   Washington-Arlington-Alexandria, DC-VA-MD-WV
3637                                Sioux Falls, SD
3638                          Manchester-Nashua, NH
3639    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3640                                Albuquerque, NM
3641                                   Billings, MT
3642                Dallas-Fort Worth-Arlington, TX
3643                Dallas-Fort Worth-Arlington, TX
3644                    Detroit-Warren-Dearborn, MI
3645                    Detroit-Warren-Dearborn, MI
3646                     Spokane-Spokane Valley, WA
3647        Minneapolis-St. Paul-Bloomington, MN-WI
3648             Chicago-Naperville-Elgin, IL-IN-WI
3649                                    Edwards, CO
3650             San Francisco-Oakland-Berkeley, CA
3651             San Jose-Sunnyvale-Santa Clara, CA
3652                             Salt Lake City, UT
3653                             Salt Lake City, UT
3654                             Salt Lake City, UT
3655               Las Vegas-Henderson-Paradise, NV
3656             San Diego-Chula Vista-Carlsbad, CA
3657                    Seattle-Tacoma-Bellevue, WA
3658                     Denver-Aurora-Lakewood, CO
3659                Hilton Head Island-Bluffton, SC
3660             Chicago-Naperville-Elgin, IL-IN-WI
3661                 Pensacola-Ferry Pass-Brent, FL
3662                                     Helena, MT
3663                                   Key West, FL
3664                  San Antonio-New Braunfels, TX
3665                            Gulfport-Biloxi, MS
3666             Los Angeles-Long Beach-Anaheim, CA
3667   Washington-Arlington-Alexandria, DC-VA-MD-WV
3668          New York-Newark-Jersey City, NY-NJ-PA
3669                  Orlando-Kissimmee-Sanford, FL
3670             Chicago-Naperville-Elgin, IL-IN-WI
3671             San Francisco-Oakland-Berkeley, CA
3672             San Francisco-Oakland-Berkeley, CA
3673             San Francisco-Oakland-Berkeley, CA
3674                      Phoenix-Mesa-Chandler, AZ
3675                                    Wichita, KS
3676              Charlotte-Concord-Gastonia, NC-SC
3677                Sacramento-Roseville-Folsom, CA
3678                               St. Louis, MO-IL
3679                Dallas-Fort Worth-Arlington, TX
3680                                   Fargo, ND-MN
3681                                Sioux Falls, SD
3682           Houston-The Woodlands-Sugar Land, TX
3683           Houston-The Woodlands-Sugar Land, TX
3684            Davenport-Moline-Rock Island, IA-IL
3685                               Raleigh-Cary, NC
3686   Washington-Arlington-Alexandria, DC-VA-MD-WV
3687   Washington-Arlington-Alexandria, DC-VA-MD-WV
3688          New York-Newark-Jersey City, NY-NJ-PA
3689                              Memphis, TN-MS-AR
3690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3691             Chicago-Naperville-Elgin, IL-IN-WI
3692              Charlotte-Concord-Gastonia, NC-SC
3693              Charlotte-Concord-Gastonia, NC-SC
3694    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3695    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3696           Houston-The Woodlands-Sugar Land, TX
3697                                     Mobile, AL
3698           Atlanta-Sandy Springs-Alpharetta, GA
3699                    Detroit-Warren-Dearborn, MI
3700                                  Anchorage, AK
3701                                     Bangor, ME
3702              Charlotte-Concord-Gastonia, NC-SC
3703        Miami-Fort Lauderdale-Pompano Beach, FL
3704                                    Lubbock, TX
3705                Dallas-Fort Worth-Arlington, TX
3706                Dallas-Fort Worth-Arlington, TX
3707                Dallas-Fort Worth-Arlington, TX
3708                Dallas-Fort Worth-Arlington, TX
3709                Dallas-Fort Worth-Arlington, TX
3710                Dallas-Fort Worth-Arlington, TX
3711                Dallas-Fort Worth-Arlington, TX
3712                Dallas-Fort Worth-Arlington, TX
3713                Dallas-Fort Worth-Arlington, TX
3714                         Milwaukee-Waukesha, WI
3715          New York-Newark-Jersey City, NY-NJ-PA
3716          New York-Newark-Jersey City, NY-NJ-PA
3717                        Buffalo-Cheektowaga, NY
3718                          Steamboat Springs, CO
3719        Miami-Fort Lauderdale-Pompano Beach, FL
3720     Virginia Beach-Norfolk-Newport News, VA-NC
3721                                   Savannah, GA
3722                    San Juan-Bayamón-Caguas, PR
3723                                Springfield, MO
3724                             Salt Lake City, UT
3725                                  Anchorage, AK
3726                                           <NA>
3727                                           <NA>
3728          New York-Newark-Jersey City, NY-NJ-PA
3729               Las Vegas-Henderson-Paradise, NV
3730                    San Juan-Bayamón-Caguas, PR
3731            Tampa-St. Petersburg-Clearwater, FL
3732           Atlanta-Sandy Springs-Alpharetta, GA
3733                              Memphis, TN-MS-AR
3734          New York-Newark-Jersey City, NY-NJ-PA
3735                Dallas-Fort Worth-Arlington, TX
3736                Dallas-Fort Worth-Arlington, TX
3737        Miami-Fort Lauderdale-Pompano Beach, FL
3738                              Oklahoma City, OK
3739                         Milwaukee-Waukesha, WI
3740                               Cedar Rapids, IA
3741              Charlotte-Concord-Gastonia, NC-SC
3742              Charlotte-Concord-Gastonia, NC-SC
3743   Washington-Arlington-Alexandria, DC-VA-MD-WV
3744   Washington-Arlington-Alexandria, DC-VA-MD-WV
3745                              Memphis, TN-MS-AR
3746                    Albany-Schenectady-Troy, NY
3747                Dallas-Fort Worth-Arlington, TX
3748           Houston-The Woodlands-Sugar Land, TX
3749             Los Angeles-Long Beach-Anaheim, CA
3750                                Lewiston, ID-WA
3751             Chicago-Naperville-Elgin, IL-IN-WI
3752             Chicago-Naperville-Elgin, IL-IN-WI
3753             Chicago-Naperville-Elgin, IL-IN-WI
3754                      Phoenix-Mesa-Chandler, AZ
3755                San Luis Obispo-Paso Robles, CA
3756             San Francisco-Oakland-Berkeley, CA
3757                             Salt Lake City, UT
3758                                           <NA>
3759                                 Huntsville, AL
3760                      Brownsville-Harlingen, TX
3761   Washington-Arlington-Alexandria, DC-VA-MD-WV
3762           Houston-The Woodlands-Sugar Land, TX
3763             Chicago-Naperville-Elgin, IL-IN-WI
3764             San Francisco-Oakland-Berkeley, CA
3765                                Albuquerque, NM
3766 Nashville-Davidson--Murfreesboro--Franklin, TN
3767 Nashville-Davidson--Murfreesboro--Franklin, TN
3768                  Baltimore-Columbia-Towson, MD
3769                  Baltimore-Columbia-Towson, MD
3770                     Denver-Aurora-Lakewood, CO
3771                               Jacksonville, FL
3772                          Steamboat Springs, CO
3773           Houston-The Woodlands-Sugar Land, TX
3774               Las Vegas-Henderson-Paradise, NV
3775               Las Vegas-Henderson-Paradise, NV
3776               Las Vegas-Henderson-Paradise, NV
3777               Las Vegas-Henderson-Paradise, NV
3778               Las Vegas-Henderson-Paradise, NV
3779       Little Rock-North Little Rock-Conway, AR
3780                  Orlando-Kissimmee-Sanford, FL
3781             Chicago-Naperville-Elgin, IL-IN-WI
3782                          Manchester-Nashua, NH
3783                          Manchester-Nashua, NH
3784                         Milwaukee-Waukesha, WI
3785            Portland-Vancouver-Hillsboro, OR-WA
3786            Portland-Vancouver-Hillsboro, OR-WA
3787                      Phoenix-Mesa-Chandler, AZ
3788                      Phoenix-Mesa-Chandler, AZ
3789                  San Antonio-New Braunfels, TX
3790             Louisville/Jefferson County, KY-IN
3791                Sacramento-Roseville-Folsom, CA
3792                Sacramento-Roseville-Folsom, CA
3793                               St. Louis, MO-IL
3794                Dallas-Fort Worth-Arlington, TX
3795                Dallas-Fort Worth-Arlington, TX
3796                    Detroit-Warren-Dearborn, MI
3797                                 Huntsville, AL
3798                      Phoenix-Mesa-Chandler, AZ
3799                      Phoenix-Mesa-Chandler, AZ
3800              Charlotte-Concord-Gastonia, NC-SC
3801          New York-Newark-Jersey City, NY-NJ-PA
3802                               Raleigh-Cary, NC
3803             Chicago-Naperville-Elgin, IL-IN-WI
3804   Washington-Arlington-Alexandria, DC-VA-MD-WV
3805                              Oklahoma City, OK
3806                               Worcester, MA-CT
3807                                   Billings, MT
3808                Hilton Head Island-Bluffton, SC
3809                  Baltimore-Columbia-Towson, MD
3810        Miami-Fort Lauderdale-Pompano Beach, FL
3811                Charleston-North Charleston, SC
3812        Miami-Fort Lauderdale-Pompano Beach, FL
3813          New York-Newark-Jersey City, NY-NJ-PA
3814                               Worcester, MA-CT
3815                               Worcester, MA-CT
3816                    San Juan-Bayamón-Caguas, PR
3817                                           <NA>
3818                                    Madison, WI
3819                                Bloomington, IL
3820                        Buffalo-Cheektowaga, NY
3821                     Denver-Aurora-Lakewood, CO
3822                     Denver-Aurora-Lakewood, CO
3823                     Denver-Aurora-Lakewood, CO
3824                 Des Moines-West Des Moines, IA
3825                                    Durango, CO
3826                                Sioux Falls, SD
3827                      Brownsville-Harlingen, TX
3828    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3829          New York-Newark-Jersey City, NY-NJ-PA
3830          New York-Newark-Jersey City, NY-NJ-PA
3831               Las Vegas-Henderson-Paradise, NV
3832                  Orlando-Kissimmee-Sanford, FL
3833                  Orlando-Kissimmee-Sanford, FL
3834             Chicago-Naperville-Elgin, IL-IN-WI
3835        Miami-Fort Lauderdale-Pompano Beach, FL
3836                    Portland-South Portland, ME
3837                    Portland-South Portland, ME
3838                               Raleigh-Cary, NC
3839                               Raleigh-Cary, NC
3840                      Cape Coral-Fort Myers, FL
3841           Poughkeepsie-Newburgh-Middletown, NY
3842           Poughkeepsie-Newburgh-Middletown, NY
3843                                   Syracuse, NY
3844            Tampa-St. Petersburg-Clearwater, FL
3845                          Trenton-Princeton, NJ
3846                          Trenton-Princeton, NJ
3847                          Trenton-Princeton, NJ
3848                          Trenton-Princeton, NJ
3849                Charleston-North Charleston, SC
3850                    Atlantic City-Hammonton, NJ
3851                    Atlantic City-Hammonton, NJ
3852                                      Akron, OH
3853                                   Columbus, OH
3854        Miami-Fort Lauderdale-Pompano Beach, FL
3855        Miami-Fort Lauderdale-Pompano Beach, FL
3856               Indianapolis-Carmel-Anderson, IN
3857               Las Vegas-Henderson-Paradise, NV
3858             Los Angeles-Long Beach-Anaheim, CA
3859                                 Pittsburgh, PA
3860          New York-Newark-Jersey City, NY-NJ-PA
3861                  Orlando-Kissimmee-Sanford, FL
3862                  Orlando-Kissimmee-Sanford, FL
3863                  Orlando-Kissimmee-Sanford, FL
3864  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3865  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3866  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3867                                           <NA>
3868             Chicago-Naperville-Elgin, IL-IN-WI
3869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3870                      Cape Coral-Fort Myers, FL
3871                      Cape Coral-Fort Myers, FL
3872             Louisville/Jefferson County, KY-IN
3873                                  Knoxville, TN
3874             Los Angeles-Long Beach-Anaheim, CA
3875             San Francisco-Oakland-Berkeley, CA
3876                     Denver-Aurora-Lakewood, CO
3877              Allentown-Bethlehem-Easton, PA-NJ
3878             Chicago-Naperville-Elgin, IL-IN-WI
3879                    Detroit-Warren-Dearborn, MI
3880                                   Savannah, GA
3881                                       Hilo, HI
3882           Houston-The Woodlands-Sugar Land, TX
3883                               Worcester, MA-CT
3884                           Cleveland-Elyria, OH
3885                                  Asheville, NC
3886        Minneapolis-St. Paul-Bloomington, MN-WI
3887        Minneapolis-St. Paul-Bloomington, MN-WI
3888        Minneapolis-St. Paul-Bloomington, MN-WI
3889        Miami-Fort Lauderdale-Pompano Beach, FL
3890                                Punta Gorda, FL
3891           Houston-The Woodlands-Sugar Land, TX
3892                             Urban Honolulu, HI
3893          New York-Newark-Jersey City, NY-NJ-PA
3894                                  Anchorage, AK
3895                                  Anchorage, AK
3896           Houston-The Woodlands-Sugar Land, TX
3897             Chicago-Naperville-Elgin, IL-IN-WI
3898             San Jose-Sunnyvale-Santa Clara, CA
3899           Atlanta-Sandy Springs-Alpharetta, GA
3900                    Detroit-Warren-Dearborn, MI
3901              Charlotte-Concord-Gastonia, NC-SC
3902              Charlotte-Concord-Gastonia, NC-SC
3903              Charlotte-Concord-Gastonia, NC-SC
3904                Dallas-Fort Worth-Arlington, TX
3905                      Phoenix-Mesa-Chandler, AZ
3906                                  Anchorage, AK
3907                                           <NA>
3908                    Seattle-Tacoma-Bellevue, WA
3909        Miami-Fort Lauderdale-Pompano Beach, FL
3910                                           <NA>
3911           Atlanta-Sandy Springs-Alpharetta, GA
3912           Atlanta-Sandy Springs-Alpharetta, GA
3913           Atlanta-Sandy Springs-Alpharetta, GA
3914               Las Vegas-Henderson-Paradise, NV
3915                                     Casper, WY
3916                                   Aberdeen, SD
3917          New York-Newark-Jersey City, NY-NJ-PA
3918                      Greensboro-High Point, NC
3919                                   Billings, MT
3920                                Baton Rouge, LA
3921                                 Charleston, WV
3922   Washington-Arlington-Alexandria, DC-VA-MD-WV
3923                                Spartanburg, SC
3924    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3925    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3926    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3927                                   Gillette, WY
3928                     Denver-Aurora-Lakewood, CO
3929                     Denver-Aurora-Lakewood, CO
3930                     Denver-Aurora-Lakewood, CO
3931                     Denver-Aurora-Lakewood, CO
3932                Dallas-Fort Worth-Arlington, TX
3933                Dallas-Fort Worth-Arlington, TX
3934                      Phoenix-Mesa-Chandler, AZ
3935                                     Hailey, ID
3936                         Eugene-Springfield, OR
3937                                 Twin Falls, ID
3938                                Albuquerque, NM
3939             San Francisco-Oakland-Berkeley, CA
3940           Atlanta-Sandy Springs-Alpharetta, GA
3941                        Buffalo-Cheektowaga, NY
3942                        Buffalo-Cheektowaga, NY
3943                  Baltimore-Columbia-Towson, MD
3944                                   Columbus, OH
3945                                   Columbus, OH
3946                Dallas-Fort Worth-Arlington, TX
3947                Dallas-Fort Worth-Arlington, TX
3948                      Grand Rapids-Kentwood, MI
3949                      Phoenix-Mesa-Chandler, AZ
3950                                Panama City, FL
3951             Louisville/Jefferson County, KY-IN
3952                               Cedar Rapids, IA
3953                Dallas-Fort Worth-Arlington, TX
3954           Houston-The Woodlands-Sugar Land, TX
3955           Atlanta-Sandy Springs-Alpharetta, GA
3956                           Dayton-Kettering, OH
3957   Washington-Arlington-Alexandria, DC-VA-MD-WV
3958                Burlington-South Burlington, VT
3959    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3960          New York-Newark-Jersey City, NY-NJ-PA
3961                                 Montgomery, AL
3962                                    Durango, CO
3963                                   Florence, SC
3964                                 Huntsville, AL
3965        Miami-Fort Lauderdale-Pompano Beach, FL
3966                Charleston-North Charleston, SC
3967                                     Laredo, TX
3968                           Cincinnati, OH-KY-IN
3969    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3970                      Greensboro-High Point, NC
3971                Dallas-Fort Worth-Arlington, TX
3972                                Bloomington, IL
3973                      La Crosse-Onalaska, WI-MN
3974                                Bakersfield, CA
3975                    South Bend-Mishawaka, IN-MI
3976                                  Rochester, NY
3977          New York-Newark-Jersey City, NY-NJ-PA
3978           Riverside-San Bernardino-Ontario, CA
3979                       Kingsport-Bristol, TN-VA
3980                Burlington-South Burlington, VT
3981                                  Rochester, MN
3982        Miami-Fort Lauderdale-Pompano Beach, FL
3983                                    Del Rio, TX
3984                                 Charleston, WV
3985                              Evansville, IN-KY
3986                                Great Falls, MT
3987           Riverside-San Bernardino-Ontario, CA
3988                                       Reno, NV
3989          New York-Newark-Jersey City, NY-NJ-PA
3990                    Portland-South Portland, ME
3991                Charleston-North Charleston, SC
3992                                           <NA>
3993           Atlanta-Sandy Springs-Alpharetta, GA
3994                                   Appleton, WI
3995                    Albany-Schenectady-Troy, NY
3996                                    Wichita, KS
3997                                  Rochester, MN
3998        Miami-Fort Lauderdale-Pompano Beach, FL
3999                              Wausau-Weston, WI
4000                             Chattanooga, TN-GA
4001                               Jacksonville, FL
4002          New York-Newark-Jersey City, NY-NJ-PA
4003              Charlotte-Concord-Gastonia, NC-SC
4004                       New Orleans-Metairie, LA
4005           Houston-The Woodlands-Sugar Land, TX
4006                  Orlando-Kissimmee-Sanford, FL
4007             San Francisco-Oakland-Berkeley, CA
4008        Minneapolis-St. Paul-Bloomington, MN-WI
4009           Atlanta-Sandy Springs-Alpharetta, GA
4010           Atlanta-Sandy Springs-Alpharetta, GA
4011                      Phoenix-Mesa-Chandler, AZ
4012                     Spokane-Spokane Valley, WA
4013                    Detroit-Warren-Dearborn, MI
4014                                      Kapaa, HI
4015              Charlotte-Concord-Gastonia, NC-SC
4016   Washington-Arlington-Alexandria, DC-VA-MD-WV
4017              Charlotte-Concord-Gastonia, NC-SC
4018        Miami-Fort Lauderdale-Pompano Beach, FL
4019        Miami-Fort Lauderdale-Pompano Beach, FL
4020             Chicago-Naperville-Elgin, IL-IN-WI
4021            Portland-Vancouver-Hillsboro, OR-WA
4022             Chicago-Naperville-Elgin, IL-IN-WI
4023              Charlotte-Concord-Gastonia, NC-SC
4024    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4025    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4026   Washington-Arlington-Alexandria, DC-VA-MD-WV
4027                                     Monroe, LA
4028   Washington-Arlington-Alexandria, DC-VA-MD-WV
4029                             Salt Lake City, UT
4030                             Urban Honolulu, HI
4031             San Jose-Sunnyvale-Santa Clara, CA
4032                      Cape Coral-Fort Myers, FL
4033                             Urban Honolulu, HI
4034           Houston-The Woodlands-Sugar Land, TX
4035           Houston-The Woodlands-Sugar Land, TX
4036                                   Escanaba, MI
4037   Washington-Arlington-Alexandria, DC-VA-MD-WV
4038                                           <NA>
4039                      Phoenix-Mesa-Chandler, AZ
4040                             Salt Lake City, UT
4041                                  Watertown, SD
4042             Chicago-Naperville-Elgin, IL-IN-WI
4043                               St. Louis, MO-IL
4044                Dallas-Fort Worth-Arlington, TX
4045                    Kahului-Wailuku-Lahaina, HI
4046             Los Angeles-Long Beach-Anaheim, CA
4047                  Orlando-Kissimmee-Sanford, FL
4048                  Baltimore-Columbia-Towson, MD
4049             Chicago-Naperville-Elgin, IL-IN-WI
4050           Houston-The Woodlands-Sugar Land, TX
4051                                       Hilo, HI
4052                             Salt Lake City, UT
4053                                  Anchorage, AK
4054           Atlanta-Sandy Springs-Alpharetta, GA
4055                    Kahului-Wailuku-Lahaina, HI
4056              Charlotte-Concord-Gastonia, NC-SC
4057             Chicago-Naperville-Elgin, IL-IN-WI
4058             Chicago-Naperville-Elgin, IL-IN-WI
4059              Charlotte-Concord-Gastonia, NC-SC
4060              Charlotte-Concord-Gastonia, NC-SC
4061               Austin-Round Rock-Georgetown, TX
4062             Los Angeles-Long Beach-Anaheim, CA
4063                                 Pittsburgh, PA
4064             Chicago-Naperville-Elgin, IL-IN-WI
4065                Dallas-Fort Worth-Arlington, TX
4066                                 Pittsburgh, PA
4067                                  Anchorage, AK
4068            Portland-Vancouver-Hillsboro, OR-WA
4069            Portland-Vancouver-Hillsboro, OR-WA
4070                      Cape Coral-Fort Myers, FL
4071                    Seattle-Tacoma-Bellevue, WA
4072                  Orlando-Kissimmee-Sanford, FL
4073                       New Orleans-Metairie, LA
4074           Atlanta-Sandy Springs-Alpharetta, GA
4075           Atlanta-Sandy Springs-Alpharetta, GA
4076                                       Reno, NV
4077                             Salt Lake City, UT
4078          New York-Newark-Jersey City, NY-NJ-PA
4079              Charlotte-Concord-Gastonia, NC-SC
4080                                   Richmond, VA
4081              Charlotte-Concord-Gastonia, NC-SC
4082              Charlotte-Concord-Gastonia, NC-SC
4083                                     Ithaca, NY
4084    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4085                           Glenwood Springs, CO
4086                Dallas-Fort Worth-Arlington, TX
4087             Los Angeles-Long Beach-Anaheim, CA
4088                                           <NA>
4089               Austin-Round Rock-Georgetown, TX
4090              North Port-Sarasota-Bradenton, FL
4091                                 St. George, UT
4092             Chicago-Naperville-Elgin, IL-IN-WI
4093    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4094    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4095           Houston-The Woodlands-Sugar Land, TX
4096                                  Anchorage, AK
4097                     Denver-Aurora-Lakewood, CO
4098                                  Green Bay, WI
4099          New York-Newark-Jersey City, NY-NJ-PA
4100               Las Vegas-Henderson-Paradise, NV
4101                  Orlando-Kissimmee-Sanford, FL
4102                  Orlando-Kissimmee-Sanford, FL
4103                  Orlando-Kissimmee-Sanford, FL
4104                  Orlando-Kissimmee-Sanford, FL
4105        Miami-Fort Lauderdale-Pompano Beach, FL
4106                                    Madison, WI
4107                                   Syracuse, NY
4108                                           <NA>
4109              Charlotte-Concord-Gastonia, NC-SC
4110                Dallas-Fort Worth-Arlington, TX
4111                                Spartanburg, SC
4112                                           <NA>
4113                                           <NA>
4114                 Boston-Cambridge-Newton, MA-NH
4115             San Jose-Sunnyvale-Santa Clara, CA
4116                           Cincinnati, OH-KY-IN
4117                                 Twin Falls, ID
4118                                      Ozark, AL
4119                                Great Falls, MT
4120                           Butte-Silver Bow, MT
4121                                 Charleston, WV
4122                             Salt Lake City, UT
4123                Dallas-Fort Worth-Arlington, TX
4124              Charlotte-Concord-Gastonia, NC-SC
4125              Charlotte-Concord-Gastonia, NC-SC
4126              Charlotte-Concord-Gastonia, NC-SC
4127    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4128                                Tallahassee, FL
4129                Dallas-Fort Worth-Arlington, TX
4130                    Detroit-Warren-Dearborn, MI
4131                                  Marquette, MI
4132             Los Angeles-Long Beach-Anaheim, CA
4133                        Santa Rosa-Petaluma, CA
4134                                           <NA>
4135        Minneapolis-St. Paul-Bloomington, MN-WI
4136                              Oklahoma City, OK
4137                                 St. George, UT
4138                      Brownsville-Harlingen, TX
4139          New York-Newark-Jersey City, NY-NJ-PA
4140             Los Angeles-Long Beach-Anaheim, CA
4141             Chicago-Naperville-Elgin, IL-IN-WI
4142                                Albuquerque, NM
4143                    San Juan-Bayamón-Caguas, PR
4144               Austin-Round Rock-Georgetown, TX
4145                Dallas-Fort Worth-Arlington, TX
4146           Houston-The Woodlands-Sugar Land, TX
4147           Houston-The Woodlands-Sugar Land, TX
4148             Los Angeles-Long Beach-Anaheim, CA
4149            Tampa-St. Petersburg-Clearwater, FL
4150                Dallas-Fort Worth-Arlington, TX
4151              Charlotte-Concord-Gastonia, NC-SC
4152                                    Bozeman, MT
4153             Fayetteville-Springdale-Rogers, AR
4154          New York-Newark-Jersey City, NY-NJ-PA
4155        Minneapolis-St. Paul-Bloomington, MN-WI
4156                 Boston-Cambridge-Newton, MA-NH
4157          New York-Newark-Jersey City, NY-NJ-PA
4158          New York-Newark-Jersey City, NY-NJ-PA
4159          New York-Newark-Jersey City, NY-NJ-PA
4160          New York-Newark-Jersey City, NY-NJ-PA
4161     Virginia Beach-Norfolk-Newport News, VA-NC
4162                                 Jackson, WY-ID
4163                Dallas-Fort Worth-Arlington, TX
4164                                    El Paso, TX
4165                                Spartanburg, SC
4166                                 Montgomery, AL
4167                               Jacksonville, FL
4168                             Kansas City, MO-KS
4169        Miami-Fort Lauderdale-Pompano Beach, FL
4170        Miami-Fort Lauderdale-Pompano Beach, FL
4171        Miami-Fort Lauderdale-Pompano Beach, FL
4172                            Gulfport-Biloxi, MS
4173                                Columbus, GA-AL
4174             Chicago-Naperville-Elgin, IL-IN-WI
4175                    Portland-South Portland, ME
4176                        Watertown-Fort Drum, NY
4177                                     Toledo, OH
4178                                 Alexandria, LA
4179                        Buffalo-Cheektowaga, NY
4180                                   Key West, FL
4181                                   Savannah, GA
4182                                   Syracuse, NY
4183                                Gainesville, FL
4184               Austin-Round Rock-Georgetown, TX
4185                           Cincinnati, OH-KY-IN
4186                 Boston-Cambridge-Newton, MA-NH
4187        Miami-Fort Lauderdale-Pompano Beach, FL
4188        Miami-Fort Lauderdale-Pompano Beach, FL
4189        Miami-Fort Lauderdale-Pompano Beach, FL
4190          New York-Newark-Jersey City, NY-NJ-PA
4191             Los Angeles-Long Beach-Anaheim, CA
4192          Hartford-East Hartford-Middletown, CT
4193             Los Angeles-Long Beach-Anaheim, CA
4194            Portland-Vancouver-Hillsboro, OR-WA
4195                                   Richmond, VA
4196                                   Savannah, GA
4197                Burlington-South Burlington, VT
4198             San Jose-Sunnyvale-Santa Clara, CA
4199                                    Lincoln, NE
4200              Allentown-Bethlehem-Easton, PA-NJ
4201                    Seattle-Tacoma-Bellevue, WA
4202                          Birmingham-Hoover, AL
4203                              Evansville, IN-KY
4204           Atlanta-Sandy Springs-Alpharetta, GA
4205          Hartford-East Hartford-Middletown, CT
4206                  Orlando-Kissimmee-Sanford, FL
4207                       New Orleans-Metairie, LA
4208                      Providence-Warwick, RI-MA
4209                                Sioux Falls, SD
4210          New York-Newark-Jersey City, NY-NJ-PA
4211                    Albany-Schenectady-Troy, NY
4212                       Waterloo-Cedar Falls, IA
4213                                       Reno, NV
4214                Dallas-Fort Worth-Arlington, TX
4215                Dallas-Fort Worth-Arlington, TX
4216                                Idaho Falls, ID
4217                              Evansville, IN-KY
4218             Chicago-Naperville-Elgin, IL-IN-WI
4219                      Phoenix-Mesa-Chandler, AZ
4220                                  Knoxville, TN
4221                    Atlantic City-Hammonton, NJ
4222        Miami-Fort Lauderdale-Pompano Beach, FL
4223                                 Pittsburgh, PA
4224          New York-Newark-Jersey City, NY-NJ-PA
4225                    San Juan-Bayamón-Caguas, PR
4226            Tampa-St. Petersburg-Clearwater, FL
4227                                    Bozeman, MT
4228                                      Tulsa, OK
4229   Washington-Arlington-Alexandria, DC-VA-MD-WV
4230   Washington-Arlington-Alexandria, DC-VA-MD-WV
4231                   Huntington-Ashland, WV-KY-OH
4232                                 Wilmington, NC
4233                       Lansing-East Lansing, MI
4234                      College Station-Bryan, TX
4235                      Grand Rapids-Kentwood, MI
4236                                   Amarillo, TX
4237                           Cleveland-Elyria, OH
4238                                  Flagstaff, AZ
4239           Houston-The Woodlands-Sugar Land, TX
4240             Los Angeles-Long Beach-Anaheim, CA
4241             Los Angeles-Long Beach-Anaheim, CA
4242                                    Midland, TX
4243  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4244             Chicago-Naperville-Elgin, IL-IN-WI
4245             Chicago-Naperville-Elgin, IL-IN-WI
4246             Chicago-Naperville-Elgin, IL-IN-WI
4247                      Phoenix-Mesa-Chandler, AZ
4248                                    Roswell, NM
4249             San Francisco-Oakland-Berkeley, CA
4250             San Francisco-Oakland-Berkeley, CA
4251                                      Tulsa, OK
4252                      Cape Coral-Fort Myers, FL
4253                                    Redding, CA
4254                        Santa Rosa-Petaluma, CA
4255                    Albany-Schenectady-Troy, NY
4256                                   Richmond, VA
4257                      Grand Rapids-Kentwood, MI
4258                                 Eau Claire, WI
4259        Miami-Fort Lauderdale-Pompano Beach, FL
4260                                Spartanburg, SC
4261                               North Platte, NE
4262                            Charlottesville, VA
4263                        Harrisburg-Carlisle, PA
4264                           Dayton-Kettering, OH
4265                                     Tucson, AZ
4266                                   Amarillo, TX
4267                                       Erie, PA
4268                              Memphis, TN-MS-AR
4269            Tampa-St. Petersburg-Clearwater, FL
4270                                    Salinas, CA
4271                                  Rochester, MN
4272                                 Wilmington, NC
4273                  San Antonio-New Braunfels, TX
4274                                    Wichita, KS
4275                                       Reno, NV
4276                                 Boise City, ID
4277                Dallas-Fort Worth-Arlington, TX
4278          New York-Newark-Jersey City, NY-NJ-PA
4279                                Panama City, FL
4280           Houston-The Woodlands-Sugar Land, TX
4281            Portland-Vancouver-Hillsboro, OR-WA
4282                        Buffalo-Cheektowaga, NY
4283     Virginia Beach-Norfolk-Newport News, VA-NC
4284                                Spartanburg, SC
4285                          Steamboat Springs, CO
4286             Los Angeles-Long Beach-Anaheim, CA
4287                    Omaha-Council Bluffs, NE-IA
4288                    Albany-Schenectady-Troy, NY
4289             San Francisco-Oakland-Berkeley, CA
4290             Chicago-Naperville-Elgin, IL-IN-WI
4291        Miami-Fort Lauderdale-Pompano Beach, FL
4292 Nashville-Davidson--Murfreesboro--Franklin, TN
4293                              Oklahoma City, OK
4294 Nashville-Davidson--Murfreesboro--Franklin, TN
4295                          Manchester-Nashua, NH
4296                     Spokane-Spokane Valley, WA
4297                                    Lubbock, TX
4298                              State College, PA
4299                Dallas-Fort Worth-Arlington, TX
4300   Washington-Arlington-Alexandria, DC-VA-MD-WV
4301           Houston-The Woodlands-Sugar Land, TX
4302           Houston-The Woodlands-Sugar Land, TX
4303  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4304                                    Lubbock, TX
4305                      Phoenix-Mesa-Chandler, AZ
4306              North Port-Sarasota-Bradenton, FL
4307               Austin-Round Rock-Georgetown, TX
4308                Charleston-North Charleston, SC
4309          New York-Newark-Jersey City, NY-NJ-PA
4310          New York-Newark-Jersey City, NY-NJ-PA
4311                              State College, PA
4312                                 Pittsburgh, PA
4313        Miami-Fort Lauderdale-Pompano Beach, FL
4314   Washington-Arlington-Alexandria, DC-VA-MD-WV
4315   Washington-Arlington-Alexandria, DC-VA-MD-WV
4316   Washington-Arlington-Alexandria, DC-VA-MD-WV
4317   Washington-Arlington-Alexandria, DC-VA-MD-WV
4318                                  Duluth, MN-WI
4319                                  Green Bay, WI
4320        Minneapolis-St. Paul-Bloomington, MN-WI
4321        Minneapolis-St. Paul-Bloomington, MN-WI
4322        Minneapolis-St. Paul-Bloomington, MN-WI
4323        Minneapolis-St. Paul-Bloomington, MN-WI
4324                                           <NA>
4325               Austin-Round Rock-Georgetown, TX
4326                        Harrisburg-Carlisle, PA
4327           Houston-The Woodlands-Sugar Land, TX
4328           Houston-The Woodlands-Sugar Land, TX
4329            Tampa-St. Petersburg-Clearwater, FL
4330           Atlanta-Sandy Springs-Alpharetta, GA
4331                                 Wilmington, NC
4332          New York-Newark-Jersey City, NY-NJ-PA
4333          New York-Newark-Jersey City, NY-NJ-PA
4334                            Charlottesville, VA
4335          New York-Newark-Jersey City, NY-NJ-PA
4336                           Iron Mountain, MI-WI
4337                                 Stillwater, OK
4338                                    Jackson, MS
4339                               Fayetteville, NC
4340                                    Dubuque, IA
4341                                  Manhattan, KS
4342             Chicago-Naperville-Elgin, IL-IN-WI
4343             Fayetteville-Springdale-Rogers, AR
4344                                   Montrose, CO
4345                                           <NA>
4346                  Orlando-Kissimmee-Sanford, FL
4347                                   Appleton, WI
4348                                           <NA>
4349                         Milwaukee-Waukesha, WI
4350                                   Montrose, CO
4351           Atlanta-Sandy Springs-Alpharetta, GA
4352                  Orlando-Kissimmee-Sanford, FL
4353                  Orlando-Kissimmee-Sanford, FL
4354             Chicago-Naperville-Elgin, IL-IN-WI
4355                                   Columbia, SC
4356             Chicago-Naperville-Elgin, IL-IN-WI
4357             Chicago-Naperville-Elgin, IL-IN-WI
4358                                      Akron, OH
4359                                      Akron, OH
4360        Miami-Fort Lauderdale-Pompano Beach, FL
4361             Los Angeles-Long Beach-Anaheim, CA
4362                                 Pittsburgh, PA
4363                             Kansas City, MO-KS
4364  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4365                      Cape Coral-Fort Myers, FL
4366                      Cape Coral-Fort Myers, FL
4367                                  Rochester, NY
4368              Charlotte-Concord-Gastonia, NC-SC
4369   Washington-Arlington-Alexandria, DC-VA-MD-WV
4370   Washington-Arlington-Alexandria, DC-VA-MD-WV
4371   Washington-Arlington-Alexandria, DC-VA-MD-WV
4372     Virginia Beach-Norfolk-Newport News, VA-NC
4373   Washington-Arlington-Alexandria, DC-VA-MD-WV
4374   Washington-Arlington-Alexandria, DC-VA-MD-WV
4375   Washington-Arlington-Alexandria, DC-VA-MD-WV
4376                                      Akron, OH
4377    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4378       Little Rock-North Little Rock-Conway, AR
4379                              Memphis, TN-MS-AR
4380           Houston-The Woodlands-Sugar Land, TX
4381           Houston-The Woodlands-Sugar Land, TX
4382                                    Kearney, NE
4383        Minneapolis-St. Paul-Bloomington, MN-WI
4384                      Phoenix-Mesa-Chandler, AZ
4385                      Phoenix-Mesa-Chandler, AZ
4386                                     Joplin, MO
4387                                  Manhattan, KS
4388           Riverside-San Bernardino-Ontario, CA
4389                                           <NA>
4390                    Seattle-Tacoma-Bellevue, WA
4391          New York-Newark-Jersey City, NY-NJ-PA
4392   Washington-Arlington-Alexandria, DC-VA-MD-WV
4393                                     Fresno, CA
4394                                    Roanoke, VA
4395                                     Laurel, MS
4396              Charlotte-Concord-Gastonia, NC-SC
4397                             Corpus Christi, TX
4398                              Memphis, TN-MS-AR
4399            Portland-Vancouver-Hillsboro, OR-WA
4400                      Brownsville-Harlingen, TX
4401                                 Pittsburgh, PA
4402                                    Midland, TX
4403                         Milwaukee-Waukesha, WI
4404   Washington-Arlington-Alexandria, DC-VA-MD-WV
4405   Washington-Arlington-Alexandria, DC-VA-MD-WV
4406   Washington-Arlington-Alexandria, DC-VA-MD-WV
4407    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4408                             Chattanooga, TN-GA
4409   Washington-Arlington-Alexandria, DC-VA-MD-WV
4410   Washington-Arlington-Alexandria, DC-VA-MD-WV
4411   Washington-Arlington-Alexandria, DC-VA-MD-WV
4412   Washington-Arlington-Alexandria, DC-VA-MD-WV
4413             Chicago-Naperville-Elgin, IL-IN-WI
4414            Tampa-St. Petersburg-Clearwater, FL
4415                                  Fairbanks, AK
4416                                 St. George, UT
4417                                Idaho Falls, ID
4418                                   Santa Fe, NM
4419                                 Fort Wayne, IN
4420            Portland-Vancouver-Hillsboro, OR-WA
4421                                     Monroe, LA
4422                                       Elko, NV
4423                     Denver-Aurora-Lakewood, CO
4424                      Brownsville-Harlingen, TX
4425        Miami-Fort Lauderdale-Pompano Beach, FL
4426                                    Madison, WI
4427                    Omaha-Council Bluffs, NE-IA
4428                    Atlantic City-Hammonton, NJ
4429          Hartford-East Hartford-Middletown, CT
4430        Miami-Fort Lauderdale-Pompano Beach, FL
4431  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4432              Charlotte-Concord-Gastonia, NC-SC
4433              Charlotte-Concord-Gastonia, NC-SC
4434                            Charlottesville, VA
4435  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4436                                 Rapid City, SD
4437                                   Muskegon, MI
4438                                 Mason City, IA
4439           Riverside-San Bernardino-Ontario, CA
4440                    Seattle-Tacoma-Bellevue, WA
4441                                  Wenatchee, WA
4442                                    Decatur, IL
4443                              Eureka-Arcata, CA
4444                               Rock Springs, WY
4445                                           <NA>
4446                                     Laredo, TX
4447    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4448                Dallas-Fort Worth-Arlington, TX
4449                 Pensacola-Ferry Pass-Brent, FL
4450             San Jose-Sunnyvale-Santa Clara, CA
4451                                       Hilo, HI
4452                                Albuquerque, NM
4453                                 Bellingham, WA
4454             San Diego-Chula Vista-Carlsbad, CA
4455                                   Richmond, VA
4456             Los Angeles-Long Beach-Anaheim, CA
4457            Tampa-St. Petersburg-Clearwater, FL
4458                                  Johnstown, PA
4459                                   Staunton, VA
4460   Washington-Arlington-Alexandria, DC-VA-MD-WV
4461                              Eureka-Arcata, CA
4462                              Eureka-Arcata, CA
4463             Los Angeles-Long Beach-Anaheim, CA
4464             Los Angeles-Long Beach-Anaheim, CA
4465             Los Angeles-Long Beach-Anaheim, CA
4466             Los Angeles-Long Beach-Anaheim, CA
4467             Los Angeles-Long Beach-Anaheim, CA
4468             Los Angeles-Long Beach-Anaheim, CA
4469        Miami-Fort Lauderdale-Pompano Beach, FL
4470                               Fort Collins, CO
4471                          New Haven-Milford, CT
4472                          New Haven-Milford, CT
4473                                    Medford, OR
4474                           Ogden-Clearfield, UT
4475        Miami-Fort Lauderdale-Pompano Beach, FL
4476                        Santa Rosa-Petaluma, CA
4477            Portland-Vancouver-Hillsboro, OR-WA
4478                     Denver-Aurora-Lakewood, CO
4479                                      Tulsa, OK
4480                     Denver-Aurora-Lakewood, CO
4481                     Denver-Aurora-Lakewood, CO
4482                      Phoenix-Mesa-Chandler, AZ
4483                      Phoenix-Mesa-Chandler, AZ
4484                    Kahului-Wailuku-Lahaina, HI
4485                                    Edwards, CO
4486        Minneapolis-St. Paul-Bloomington, MN-WI
4487               Austin-Round Rock-Georgetown, TX
4488             Chicago-Naperville-Elgin, IL-IN-WI
4489                                 Jackson, WY-ID
4490           Houston-The Woodlands-Sugar Land, TX
4491        Miami-Fort Lauderdale-Pompano Beach, FL
4492             Chicago-Naperville-Elgin, IL-IN-WI
4493        Miami-Fort Lauderdale-Pompano Beach, FL
4494                Dallas-Fort Worth-Arlington, TX
4495                                           <NA>
4496                Dallas-Fort Worth-Arlington, TX
4497   Washington-Arlington-Alexandria, DC-VA-MD-WV
4498    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4499                Dallas-Fort Worth-Arlington, TX
4500             Chicago-Naperville-Elgin, IL-IN-WI
4501             Chicago-Naperville-Elgin, IL-IN-WI
4502                                 Huntsville, AL
4503                                Springfield, MO
4504                             Kansas City, MO-KS
4505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4506                    Detroit-Warren-Dearborn, MI
4507                                  Flagstaff, AZ
4508                                     Bangor, ME
4509               Las Vegas-Henderson-Paradise, NV
4510        Miami-Fort Lauderdale-Pompano Beach, FL
4511                          Aguadilla-Isabela, PR
4512                                     Bangor, ME
4513                                Bloomington, IL
4514                Burlington-South Burlington, VT
4515                  Orlando-Kissimmee-Sanford, FL
4516                        Harrisburg-Carlisle, PA
4517                    San Juan-Bayamón-Caguas, PR
4518                                  Knoxville, TN
4519                                           <NA>
4520        Miami-Fort Lauderdale-Pompano Beach, FL
4521                          Manchester-Nashua, NH
4522            Tampa-St. Petersburg-Clearwater, FL
4523                                    Redding, CA
4524             Los Angeles-Long Beach-Anaheim, CA
4525                                     Hailey, ID
4526                    Portland-South Portland, ME
4527 Nashville-Davidson--Murfreesboro--Franklin, TN
4528                Dallas-Fort Worth-Arlington, TX
4529                             Urban Honolulu, HI
4530                                 Boise City, ID
4531                  Orlando-Kissimmee-Sanford, FL
4532             Chicago-Naperville-Elgin, IL-IN-WI
4533                      Providence-Warwick, RI-MA
4534                                   Richmond, VA
4535                  San Antonio-New Braunfels, TX
4536   Washington-Arlington-Alexandria, DC-VA-MD-WV
4537            Tampa-St. Petersburg-Clearwater, FL
4538   Washington-Arlington-Alexandria, DC-VA-MD-WV
4539                                  Green Bay, WI
4540                                 Alexandria, LA
4541          New York-Newark-Jersey City, NY-NJ-PA
4542                                   Bismarck, ND
4543                                       Bend, OR
4544                                     Juneau, AK
4545                                   Key West, FL
4546        Miami-Fort Lauderdale-Pompano Beach, FL
4547          New York-Newark-Jersey City, NY-NJ-PA
4548                                      Ponce, PR
4549                                    Bozeman, MT
4550                                 Binghamton, NY
4551  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4552             Fayetteville-Springdale-Rogers, AR
4553                Dallas-Fort Worth-Arlington, TX
4554                                      Tyler, TX
4555                 Boston-Cambridge-Newton, MA-NH
4556   Washington-Arlington-Alexandria, DC-VA-MD-WV
4557   Washington-Arlington-Alexandria, DC-VA-MD-WV
4558   Washington-Arlington-Alexandria, DC-VA-MD-WV
4559             Los Angeles-Long Beach-Anaheim, CA
4560               Austin-Round Rock-Georgetown, TX
4561                                      Hobbs, NM
4562                                 Dodge City, KS
4563                           Sioux City, IA-NE-SD
4564 Nashville-Davidson--Murfreesboro--Franklin, TN
4565            Portland-Vancouver-Hillsboro, OR-WA
4566                Dallas-Fort Worth-Arlington, TX
4567           Houston-The Woodlands-Sugar Land, TX
4568           Houston-The Woodlands-Sugar Land, TX
4569           Houston-The Woodlands-Sugar Land, TX
4570                                Panama City, FL
4571               Las Vegas-Henderson-Paradise, NV
4572                                      Kapaa, HI
4573                             Kansas City, MO-KS
4574                                       Reno, NV
4575             Chicago-Naperville-Elgin, IL-IN-WI
4576          New York-Newark-Jersey City, NY-NJ-PA
4577             San Diego-Chula Vista-Carlsbad, CA
4578                           Colorado Springs, CO
4579                      Grand Rapids-Kentwood, MI
4580                               St. Louis, MO-IL
4581            Tampa-St. Petersburg-Clearwater, FL
4582            Tampa-St. Petersburg-Clearwater, FL
4583   Washington-Arlington-Alexandria, DC-VA-MD-WV
4584                                  Duluth, MN-WI
4585                                    Madison, WI
4586                      Phoenix-Mesa-Chandler, AZ
4587                      Cape Coral-Fort Myers, FL
4588                                Tallahassee, FL
4589                          New Haven-Milford, CT
4590                                       Bend, OR
4591                      Phoenix-Mesa-Chandler, AZ
4592                                     Hailey, ID
4593             Chicago-Naperville-Elgin, IL-IN-WI
4594                                           <NA>
4595                    Detroit-Warren-Dearborn, MI
4596             Chicago-Naperville-Elgin, IL-IN-WI
4597                         Eugene-Springfield, OR
4598                                   Billings, MT
4599             Chicago-Naperville-Elgin, IL-IN-WI
4600                                     Yakima, WA
4601                                     Alpena, MI
4602           Riverside-San Bernardino-Ontario, CA
4603                  Orlando-Kissimmee-Sanford, FL
4604        Miami-Fort Lauderdale-Pompano Beach, FL
4605        Miami-Fort Lauderdale-Pompano Beach, FL
4606        Miami-Fort Lauderdale-Pompano Beach, FL
4607  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4608                              Memphis, TN-MS-AR
4609              Charlotte-Concord-Gastonia, NC-SC
4610                                   Cheyenne, WY
4611                Dallas-Fort Worth-Arlington, TX
4612                                  Watertown, SD
4613                                     Vernal, UT
4614                                    Laramie, WY
4615                                           <NA>
4616                                   Houghton, MI
4617                         Ogdensburg-Massena, NY
4618                              Eureka-Arcata, CA
4619              North Port-Sarasota-Bradenton, FL
4620                                Scottsbluff, NE
4621                                    Kearney, NE
4622                                       Hays, KS
4623                    Albany-Schenectady-Troy, NY
4624                  Baltimore-Columbia-Towson, MD
4625                                    Jackson, MS
4626   Washington-Arlington-Alexandria, DC-VA-MD-WV
4627                                   Montrose, CO
4628        Miami-Fort Lauderdale-Pompano Beach, FL
4629        Miami-Fort Lauderdale-Pompano Beach, FL
4630           Houston-The Woodlands-Sugar Land, TX
4631           Houston-The Woodlands-Sugar Land, TX
4632    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4633               Las Vegas-Henderson-Paradise, NV
4634               Las Vegas-Henderson-Paradise, NV
4635               Las Vegas-Henderson-Paradise, NV
4636                             Kansas City, MO-KS
4637         Crestview-Fort Walton Beach-Destin, FL
4638             Chicago-Naperville-Elgin, IL-IN-WI
4639                      Phoenix-Mesa-Chandler, AZ
4640                      Brownsville-Harlingen, TX
4641                      Phoenix-Mesa-Chandler, AZ
4642                      Cape Coral-Fort Myers, FL
4643             San Diego-Chula Vista-Carlsbad, CA
4644                  San Antonio-New Braunfels, TX
4645                  San Antonio-New Braunfels, TX
4646              North Port-Sarasota-Bradenton, FL
4647              North Port-Sarasota-Bradenton, FL
4648                  San Antonio-New Braunfels, TX
4649                Dallas-Fort Worth-Arlington, TX
4650                                 Clarksburg, WV
4651                          Fort Leonard Wood, MO
4652   Washington-Arlington-Alexandria, DC-VA-MD-WV
4653              North Port-Sarasota-Bradenton, FL
4654                                   Key West, FL
4655            Tampa-St. Petersburg-Clearwater, FL
4656                Dallas-Fort Worth-Arlington, TX
4657                                 Jackson, WY-ID
4658           Atlanta-Sandy Springs-Alpharetta, GA
4659             Chicago-Naperville-Elgin, IL-IN-WI
4660                                     Hailey, ID
4661                             Urban Honolulu, HI
4662   Washington-Arlington-Alexandria, DC-VA-MD-WV
4663           Houston-The Woodlands-Sugar Land, TX
4664           Houston-The Woodlands-Sugar Land, TX
4665                    Seattle-Tacoma-Bellevue, WA
4666                                           <NA>
4667                              State College, PA
4668                                   Valdosta, GA
4669                                 Alexandria, LA
4670                Dallas-Fort Worth-Arlington, TX
4671                             Salt Lake City, UT
4672           Houston-The Woodlands-Sugar Land, TX
4673             Chicago-Naperville-Elgin, IL-IN-WI
4674                     Denver-Aurora-Lakewood, CO
4675           Atlanta-Sandy Springs-Alpharetta, GA
4676           Atlanta-Sandy Springs-Alpharetta, GA
4677                    Detroit-Warren-Dearborn, MI
4678              Charlotte-Concord-Gastonia, NC-SC
4679                Dallas-Fort Worth-Arlington, TX
4680                      Cape Coral-Fort Myers, FL
4681                Dallas-Fort Worth-Arlington, TX
4682                Dallas-Fort Worth-Arlington, TX
4683             Chicago-Naperville-Elgin, IL-IN-WI
4684   Washington-Arlington-Alexandria, DC-VA-MD-WV
4685                     Denver-Aurora-Lakewood, CO
4686           Houston-The Woodlands-Sugar Land, TX
4687          New York-Newark-Jersey City, NY-NJ-PA
4688               Las Vegas-Henderson-Paradise, NV
4689                Dallas-Fort Worth-Arlington, TX
4690   Washington-Arlington-Alexandria, DC-VA-MD-WV
4691                                   Key West, FL
4692          New York-Newark-Jersey City, NY-NJ-PA
4693                                       Hilo, HI
4694                                   Columbus, OH
4695                                     Juneau, AK
4696                  Orlando-Kissimmee-Sanford, FL
4697                        Buffalo-Cheektowaga, NY
4698                            Barnstable Town, MA
4699                             Vineyard Haven, MA
4700                                    Durango, CO
4701                                 Cedar City, UT
4702               Austin-Round Rock-Georgetown, TX
4703  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4704                      Cape Coral-Fort Myers, FL
4705              Charlotte-Concord-Gastonia, NC-SC
4706              Charlotte-Concord-Gastonia, NC-SC
4707   Washington-Arlington-Alexandria, DC-VA-MD-WV
4708   Washington-Arlington-Alexandria, DC-VA-MD-WV
4709                     Denver-Aurora-Lakewood, CO
4710           Houston-The Woodlands-Sugar Land, TX
4711                      Phoenix-Mesa-Chandler, AZ
4712                                           <NA>
4713                                       Hilo, HI
4714                                  Johnstown, PA
4715                                  Jamestown, ND
4716                                           <NA>
4717                    Albany-Schenectady-Troy, NY
4718                        Buffalo-Cheektowaga, NY
4719           Riverside-San Bernardino-Ontario, CA
4720           Houston-The Woodlands-Sugar Land, TX
4721           Houston-The Woodlands-Sugar Land, TX
4722                 Des Moines-West Des Moines, IA
4723                  Orlando-Kissimmee-Sanford, FL
4724                  Orlando-Kissimmee-Sanford, FL
4725             San Francisco-Oakland-Berkeley, CA
4726                              Oklahoma City, OK
4727                               St. Louis, MO-IL
4728            Tampa-St. Petersburg-Clearwater, FL
4729            Tampa-St. Petersburg-Clearwater, FL
4730                Dallas-Fort Worth-Arlington, TX
4731                                   Key West, FL
4732                          Lexington-Fayette, KY
4733    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4734                     Denver-Aurora-Lakewood, CO
4735           Houston-The Woodlands-Sugar Land, TX
4736           Houston-The Woodlands-Sugar Land, TX
4737                                   Key West, FL
4738                  Orlando-Kissimmee-Sanford, FL
4739           Atlanta-Sandy Springs-Alpharetta, GA
4740                    Detroit-Warren-Dearborn, MI
4741              Charlotte-Concord-Gastonia, NC-SC
4742                Dallas-Fort Worth-Arlington, TX
4743                                  Anchorage, AK
4744   Washington-Arlington-Alexandria, DC-VA-MD-WV
4745                                     Juneau, AK
4746                                     Juneau, AK
4747                                           <NA>
4748          New York-Newark-Jersey City, NY-NJ-PA
4749                      Cape Coral-Fort Myers, FL
4750             Fayetteville-Springdale-Rogers, AR
4751            Tampa-St. Petersburg-Clearwater, FL
4752    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4753                                     Peoria, IL
4754                                   Sheridan, WY
4755                     Denver-Aurora-Lakewood, CO
4756                     Denver-Aurora-Lakewood, CO
4757                Dallas-Fort Worth-Arlington, TX
4758                    Detroit-Warren-Dearborn, MI
4759                    Detroit-Warren-Dearborn, MI
4760           Houston-The Woodlands-Sugar Land, TX
4761                              Wausau-Weston, WI
4762        Minneapolis-St. Paul-Bloomington, MN-WI
4763        Minneapolis-St. Paul-Bloomington, MN-WI
4764                                  Dickinson, ND
4765                      Phoenix-Mesa-Chandler, AZ
4766                                     Tucson, AZ
4767                    Seattle-Tacoma-Bellevue, WA
4768                                   Staunton, VA
4769                                Plattsburgh, NY
4770                                   Riverton, WY
4771                                    El Paso, TX
4772           Houston-The Woodlands-Sugar Land, TX
4773           Houston-The Woodlands-Sugar Land, TX
4774           Houston-The Woodlands-Sugar Land, TX
4775               Las Vegas-Henderson-Paradise, NV
4776                             Kansas City, MO-KS
4777                    Kahului-Wailuku-Lahaina, HI
4778             San Jose-Sunnyvale-Santa Clara, CA
4779                               St. Louis, MO-IL
4780                                      Tulsa, OK
4781           Houston-The Woodlands-Sugar Land, TX
4782                      Phoenix-Mesa-Chandler, AZ
4783                                 Jackson, WY-ID
4784          New York-Newark-Jersey City, NY-NJ-PA
4785             Chicago-Naperville-Elgin, IL-IN-WI
4786           Houston-The Woodlands-Sugar Land, TX
4787           Houston-The Woodlands-Sugar Land, TX
4788              Charlotte-Concord-Gastonia, NC-SC
4789                    Detroit-Warren-Dearborn, MI
4790             Chicago-Naperville-Elgin, IL-IN-WI
4791                Dallas-Fort Worth-Arlington, TX
4792        Miami-Fort Lauderdale-Pompano Beach, FL
4793             Los Angeles-Long Beach-Anaheim, CA
4794           Atlanta-Sandy Springs-Alpharetta, GA
4795   Washington-Arlington-Alexandria, DC-VA-MD-WV
4796                Dallas-Fort Worth-Arlington, TX
4797             Fayetteville-Springdale-Rogers, AR
4798           Houston-The Woodlands-Sugar Land, TX
4799                             Kansas City, MO-KS
4800        Minneapolis-St. Paul-Bloomington, MN-WI
4801                             Salt Lake City, UT
4802             Fayetteville-Springdale-Rogers, AR
4803                    Seattle-Tacoma-Bellevue, WA
4804                                     Tucson, AZ
4805                                    Bozeman, MT
4806                Dallas-Fort Worth-Arlington, TX
4807                                Panama City, FL
4808                  Orlando-Kissimmee-Sanford, FL
4809                  San Antonio-New Braunfels, TX
4810                Sacramento-Roseville-Folsom, CA
4811                                      Tulsa, OK
4812             Chicago-Naperville-Elgin, IL-IN-WI
4813              Charlotte-Concord-Gastonia, NC-SC
4814           Atlanta-Sandy Springs-Alpharetta, GA
4815           Atlanta-Sandy Springs-Alpharetta, GA
4816           Atlanta-Sandy Springs-Alpharetta, GA
4817                    Detroit-Warren-Dearborn, MI
4818                    Detroit-Warren-Dearborn, MI
4819          New York-Newark-Jersey City, NY-NJ-PA
4820                         Milwaukee-Waukesha, WI
4821        Minneapolis-St. Paul-Bloomington, MN-WI
4822             Fayetteville-Springdale-Rogers, AR
4823                                           <NA>
4824                              Eureka-Arcata, CA
4825                                   Montrose, CO
4826       Little Rock-North Little Rock-Conway, AR
4827                                   Appleton, WI
4828                                    Wichita, KS
4829        Miami-Fort Lauderdale-Pompano Beach, FL
4830          New York-Newark-Jersey City, NY-NJ-PA
4831        Miami-Fort Lauderdale-Pompano Beach, FL
4832                      Cape Coral-Fort Myers, FL
4833           Atlanta-Sandy Springs-Alpharetta, GA
4834        Minneapolis-St. Paul-Bloomington, MN-WI
4835                 Des Moines-West Des Moines, IA
4836                           Cleveland-Elyria, OH
4837   Washington-Arlington-Alexandria, DC-VA-MD-WV
4838                Dallas-Fort Worth-Arlington, TX
4839             Chicago-Naperville-Elgin, IL-IN-WI
4840              Charlotte-Concord-Gastonia, NC-SC
4841                                 Montgomery, AL
4842                              Eureka-Arcata, CA
4843                                    Salinas, CA
4844                     Denver-Aurora-Lakewood, CO
4845                    Detroit-Warren-Dearborn, MI
4846        Minneapolis-St. Paul-Bloomington, MN-WI
4847        Minneapolis-St. Paul-Bloomington, MN-WI
4848        Minneapolis-St. Paul-Bloomington, MN-WI
4849        Minneapolis-St. Paul-Bloomington, MN-WI
4850                      Phoenix-Mesa-Chandler, AZ
4851             San Francisco-Oakland-Berkeley, CA
4852             San Francisco-Oakland-Berkeley, CA
4853                                     Pierre, SD
4854             Chicago-Naperville-Elgin, IL-IN-WI
4855                                    Madison, WI
4856       Little Rock-North Little Rock-Conway, AR
4857             Los Angeles-Long Beach-Anaheim, CA
4858        Miami-Fort Lauderdale-Pompano Beach, FL
4859           Riverside-San Bernardino-Ontario, CA
4860                                Spartanburg, SC
4861                                   Montrose, CO
4862               Las Vegas-Henderson-Paradise, NV
4863             Los Angeles-Long Beach-Anaheim, CA
4864                              Oklahoma City, OK
4865                      Providence-Warwick, RI-MA
4866              Charlotte-Concord-Gastonia, NC-SC
4867                           Colorado Springs, CO
4868             San Diego-Chula Vista-Carlsbad, CA
4869                           Cincinnati, OH-KY-IN
4870                                     Tucson, AZ
4871                Dallas-Fort Worth-Arlington, TX
4872   Washington-Arlington-Alexandria, DC-VA-MD-WV
4873             Chicago-Naperville-Elgin, IL-IN-WI
4874             Chicago-Naperville-Elgin, IL-IN-WI
4875                      Brownsville-Harlingen, TX
4876                 Boston-Cambridge-Newton, MA-NH
4877              Charlotte-Concord-Gastonia, NC-SC
4878                                 Fort Wayne, IN
4879    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4880    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4881    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4882           Houston-The Woodlands-Sugar Land, TX
4883           Atlanta-Sandy Springs-Alpharetta, GA
4884           Atlanta-Sandy Springs-Alpharetta, GA
4885                Charleston-North Charleston, SC
4886                    Detroit-Warren-Dearborn, MI
4887                    Detroit-Warren-Dearborn, MI
4888                    Detroit-Warren-Dearborn, MI
4889                    Detroit-Warren-Dearborn, MI
4890                    Detroit-Warren-Dearborn, MI
4891                    Detroit-Warren-Dearborn, MI
4892        Minneapolis-St. Paul-Bloomington, MN-WI
4893        Minneapolis-St. Paul-Bloomington, MN-WI
4894                                  Knoxville, TN
4895                                           <NA>
4896                                    Roanoke, VA
4897                               Texarkana, TX-AR
4898                                       Hilo, HI
4899                 Boston-Cambridge-Newton, MA-NH
4900          New York-Newark-Jersey City, NY-NJ-PA
4901          New York-Newark-Jersey City, NY-NJ-PA
4902          New York-Newark-Jersey City, NY-NJ-PA
4903          New York-Newark-Jersey City, NY-NJ-PA
4904                  Orlando-Kissimmee-Sanford, FL
4905           Atlanta-Sandy Springs-Alpharetta, GA
4906           Atlanta-Sandy Springs-Alpharetta, GA
4907           Atlanta-Sandy Springs-Alpharetta, GA
4908        Minneapolis-St. Paul-Bloomington, MN-WI
4909                                     Ithaca, NY
4910                           Dayton-Kettering, OH
4911                                    Bemidji, MN
4912              North Port-Sarasota-Bradenton, FL
4913          New York-Newark-Jersey City, NY-NJ-PA
4914                                   Longview, TX
4915                Dallas-Fort Worth-Arlington, TX
4916             Chicago-Naperville-Elgin, IL-IN-WI
4917             Chicago-Naperville-Elgin, IL-IN-WI
4918                     Denver-Aurora-Lakewood, CO
4919                    Detroit-Warren-Dearborn, MI
4920                                    Edwards, CO
4921           Houston-The Woodlands-Sugar Land, TX
4922                                    Edwards, CO
4923             Los Angeles-Long Beach-Anaheim, CA
4924             Los Angeles-Long Beach-Anaheim, CA
4925                                   Coos Bay, OR
4926        Minneapolis-St. Paul-Bloomington, MN-WI
4927            Portland-Vancouver-Hillsboro, OR-WA
4928             San Diego-Chula Vista-Carlsbad, CA
4929                             Salt Lake City, UT
4930                    Kahului-Wailuku-Lahaina, HI
4931                                Springfield, MO
4932                                    Bozeman, MT
4933   Washington-Arlington-Alexandria, DC-VA-MD-WV
4934                                       Hilo, HI
4935                               Lake Charles, LA
4936                                 Rapid City, SD
4937                Dallas-Fort Worth-Arlington, TX
4938                                    El Paso, TX
4939                             Urban Honolulu, HI
4940           Houston-The Woodlands-Sugar Land, TX
4941         Crestview-Fort Walton Beach-Destin, FL
4942                                    El Paso, TX
4943                                     Tucson, AZ
4944             San Francisco-Oakland-Berkeley, CA
4945                                      Tulsa, OK
4946                    San Juan-Bayamón-Caguas, PR
4947       Little Rock-North Little Rock-Conway, AR
4948                                   Columbia, SC
4949                                   Key West, FL
4950   Washington-Arlington-Alexandria, DC-VA-MD-WV
4951                    San Juan-Bayamón-Caguas, PR
4952          New York-Newark-Jersey City, NY-NJ-PA
4953                         Kennewick-Richland, WA
4954                        Santa Rosa-Petaluma, CA
4955   Washington-Arlington-Alexandria, DC-VA-MD-WV
4956                          Manchester-Nashua, NH
4957              Charlotte-Concord-Gastonia, NC-SC
4958                                 Jackson, WY-ID
4959                     Denver-Aurora-Lakewood, CO
4960                             Salt Lake City, UT
4961             San Francisco-Oakland-Berkeley, CA
4962                               St. Louis, MO-IL
4963                     Denver-Aurora-Lakewood, CO
4964                                  Anchorage, AK
4965                                           <NA>
4966                                           <NA>
4967                  Orlando-Kissimmee-Sanford, FL
4968                    Portland-South Portland, ME
4969          New York-Newark-Jersey City, NY-NJ-PA
4970        Miami-Fort Lauderdale-Pompano Beach, FL
4971           Houston-The Woodlands-Sugar Land, TX
4972                    Seattle-Tacoma-Bellevue, WA
4973                                    El Paso, TX
4974                           Cleveland-Elyria, OH
4975                Dallas-Fort Worth-Arlington, TX
4976                                 Charleston, WV
4977                                 Fort Wayne, IN
4978              Charlotte-Concord-Gastonia, NC-SC
4979                                           <NA>
4980                                      Kapaa, HI
4981                                       Reno, NV
4982           Houston-The Woodlands-Sugar Land, TX
4983           Riverside-San Bernardino-Ontario, CA
4984                       New Orleans-Metairie, LA
4985                 Boston-Cambridge-Newton, MA-NH
4986              Charlotte-Concord-Gastonia, NC-SC
4987                           Champaign-Urbana, IL
4988                  Orlando-Kissimmee-Sanford, FL
4989              Charlotte-Concord-Gastonia, NC-SC
4990              Charlotte-Concord-Gastonia, NC-SC
4991                                  Kalispell, MT
4992                     Denver-Aurora-Lakewood, CO
4993                             Salt Lake City, UT
4994                                           <NA>
4995                      Phoenix-Mesa-Chandler, AZ
4996             Chicago-Naperville-Elgin, IL-IN-WI
4997 Nashville-Davidson--Murfreesboro--Franklin, TN
4998             Chicago-Naperville-Elgin, IL-IN-WI
4999             Chicago-Naperville-Elgin, IL-IN-WI
5000             San Diego-Chula Vista-Carlsbad, CA
5001   Washington-Arlington-Alexandria, DC-VA-MD-WV
5002   Washington-Arlington-Alexandria, DC-VA-MD-WV
5003           Houston-The Woodlands-Sugar Land, TX
5004                 Pensacola-Ferry Pass-Brent, FL
5005           Atlanta-Sandy Springs-Alpharetta, GA
5006                                  Flagstaff, AZ
5007                                   Key West, FL
5008                    Detroit-Warren-Dearborn, MI
5009           Atlanta-Sandy Springs-Alpharetta, GA
5010                    Detroit-Warren-Dearborn, MI
5011                    Detroit-Warren-Dearborn, MI
5012        Minneapolis-St. Paul-Bloomington, MN-WI
5013                Dallas-Fort Worth-Arlington, TX
5014    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5015    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5016          New York-Newark-Jersey City, NY-NJ-PA
5017                             Salt Lake City, UT
5018   Washington-Arlington-Alexandria, DC-VA-MD-WV
5019    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5020    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5021                Dallas-Fort Worth-Arlington, TX
5022              Charlotte-Concord-Gastonia, NC-SC
5023                                  Anchorage, AK
5024                                  Anchorage, AK
5025           Atlanta-Sandy Springs-Alpharetta, GA
5026              Charlotte-Concord-Gastonia, NC-SC
5027              Charlotte-Concord-Gastonia, NC-SC
5028             Los Angeles-Long Beach-Anaheim, CA
5029             Chicago-Naperville-Elgin, IL-IN-WI
5030                      Phoenix-Mesa-Chandler, AZ
5031             San Francisco-Oakland-Berkeley, CA
5032                             Salt Lake City, UT
5033                                  Anchorage, AK
5034                                           <NA>
5035        Minneapolis-St. Paul-Bloomington, MN-WI
5036                    Detroit-Warren-Dearborn, MI
5037                                           <NA>
5038                 Boston-Cambridge-Newton, MA-NH
5039   Washington-Arlington-Alexandria, DC-VA-MD-WV
5040                     Denver-Aurora-Lakewood, CO
5041                     Denver-Aurora-Lakewood, CO
5042             Los Angeles-Long Beach-Anaheim, CA
5043             Chicago-Naperville-Elgin, IL-IN-WI
5044                             Urban Honolulu, HI
5045                  Orlando-Kissimmee-Sanford, FL
5046                       New Orleans-Metairie, LA
5047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5048                 Pensacola-Ferry Pass-Brent, FL
5049                                  Anchorage, AK
5050                                           <NA>
5051           Atlanta-Sandy Springs-Alpharetta, GA
5052                    Albany-Schenectady-Troy, NY
5053                               Cedar Rapids, IA
5054              Charlotte-Concord-Gastonia, NC-SC
5055                     Denver-Aurora-Lakewood, CO
5056                 Des Moines-West Des Moines, IA
5057                                   Fargo, ND-MN
5058                                  Green Bay, WI
5059                      Brownsville-Harlingen, TX
5060               Las Vegas-Henderson-Paradise, NV
5061               Las Vegas-Henderson-Paradise, NV
5062       Little Rock-North Little Rock-Conway, AR
5063                  Orlando-Kissimmee-Sanford, FL
5064                  Orlando-Kissimmee-Sanford, FL
5065                  Orlando-Kissimmee-Sanford, FL
5066                  Orlando-Kissimmee-Sanford, FL
5067                  Orlando-Kissimmee-Sanford, FL
5068                    Portland-South Portland, ME
5069                                  Rochester, NY
5070                                   Syracuse, NY
5071                          Trenton-Princeton, NJ
5072             Fayetteville-Springdale-Rogers, AR
5073             Fayetteville-Springdale-Rogers, AR
5074        Miami-Fort Lauderdale-Pompano Beach, FL
5075                      Cape Coral-Fort Myers, FL
5076             Los Angeles-Long Beach-Anaheim, CA
5077             Los Angeles-Long Beach-Anaheim, CA
5078                                    Redding, CA
5079                                 Jackson, WY-ID
5080                                Bloomington, IL
5081              Charlotte-Concord-Gastonia, NC-SC
5082              Charlotte-Concord-Gastonia, NC-SC
5083   Washington-Arlington-Alexandria, DC-VA-MD-WV
5084                           Glenwood Springs, CO
5085                     Denver-Aurora-Lakewood, CO
5086                Dallas-Fort Worth-Arlington, TX
5087                      Phoenix-Mesa-Chandler, AZ
5088             San Francisco-Oakland-Berkeley, CA
5089                    Seattle-Tacoma-Bellevue, WA
5090           Houston-The Woodlands-Sugar Land, TX
5091                                   Key West, FL
5092               Austin-Round Rock-Georgetown, TX
5093                Dallas-Fort Worth-Arlington, TX
5094   Washington-Arlington-Alexandria, DC-VA-MD-WV
5095                                       Hilo, HI
5096           Houston-The Woodlands-Sugar Land, TX
5097                               Raleigh-Cary, NC
5098                               Raleigh-Cary, NC
5099                  San Antonio-New Braunfels, TX
5100                  San Antonio-New Braunfels, TX
5101                                     Toledo, OH
5102                                           <NA>
5103                Dallas-Fort Worth-Arlington, TX
5104        Miami-Fort Lauderdale-Pompano Beach, FL
5105             Chicago-Naperville-Elgin, IL-IN-WI
5106                          Steamboat Springs, CO
5107                                   Missoula, MT
5108                                           <NA>
5109                                    Bozeman, MT
5110                           Colorado Springs, CO
5111                           Cincinnati, OH-KY-IN
5112                Dallas-Fort Worth-Arlington, TX
5113                  Orlando-Kissimmee-Sanford, FL
5114             Chicago-Naperville-Elgin, IL-IN-WI
5115                Dallas-Fort Worth-Arlington, TX
5116                      Grand Rapids-Kentwood, MI
5117        Minneapolis-St. Paul-Bloomington, MN-WI
5118                 Boston-Cambridge-Newton, MA-NH
5119                                  Quincy, IL-MO
5120                     Denver-Aurora-Lakewood, CO
5121                                 Jackson, WY-ID
5122             Los Angeles-Long Beach-Anaheim, CA
5123             San Francisco-Oakland-Berkeley, CA
5124             San Francisco-Oakland-Berkeley, CA
5125                                 Wilmington, NC
5126                                    Midland, TX
5127             Chicago-Naperville-Elgin, IL-IN-WI
5128        Minneapolis-St. Paul-Bloomington, MN-WI
5129        Minneapolis-St. Paul-Bloomington, MN-WI
5130                      Phoenix-Mesa-Chandler, AZ
5131                                           <NA>
5132               Austin-Round Rock-Georgetown, TX
5133                      Phoenix-Mesa-Chandler, AZ
5134                                 Boise City, ID
5135                                  Anchorage, AK
5136                            Barnstable Town, MA
5137           Riverside-San Bernardino-Ontario, CA
5138                          Steamboat Springs, CO
5139         Crestview-Fort Walton Beach-Destin, FL
5140             Los Angeles-Long Beach-Anaheim, CA
5141                             Salt Lake City, UT
5142               Austin-Round Rock-Georgetown, TX
5143           Riverside-San Bernardino-Ontario, CA
5144           Houston-The Woodlands-Sugar Land, TX
5145                                    Jackson, MS
5146                                    Jackson, MS
5147  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5148             Chicago-Naperville-Elgin, IL-IN-WI
5149                    Seattle-Tacoma-Bellevue, WA
5150                      Cape Coral-Fort Myers, FL
5151                 Pensacola-Ferry Pass-Brent, FL
5152              Charlotte-Concord-Gastonia, NC-SC
5153            Tampa-St. Petersburg-Clearwater, FL
5154           Atlanta-Sandy Springs-Alpharetta, GA
5155        Miami-Fort Lauderdale-Pompano Beach, FL
5156              Charlotte-Concord-Gastonia, NC-SC
5157        Minneapolis-St. Paul-Bloomington, MN-WI
5158                                           <NA>
5159             Los Angeles-Long Beach-Anaheim, CA
5160          New York-Newark-Jersey City, NY-NJ-PA
5161                Dallas-Fort Worth-Arlington, TX
5162                      Phoenix-Mesa-Chandler, AZ
5163                 Boston-Cambridge-Newton, MA-NH
5164        Miami-Fort Lauderdale-Pompano Beach, FL
5165              Charlotte-Concord-Gastonia, NC-SC
5166                                   Montrose, CO
5167                          Steamboat Springs, CO
5168                Dallas-Fort Worth-Arlington, TX
5169               Las Vegas-Henderson-Paradise, NV
5170           Riverside-San Bernardino-Ontario, CA
5171              Charlotte-Concord-Gastonia, NC-SC
5172  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5173             Chicago-Naperville-Elgin, IL-IN-WI
5174               Las Vegas-Henderson-Paradise, NV
5175                    Detroit-Warren-Dearborn, MI
5176               Las Vegas-Henderson-Paradise, NV
5177                               St. Louis, MO-IL
5178              Charlotte-Concord-Gastonia, NC-SC
5179   Washington-Arlington-Alexandria, DC-VA-MD-WV
5180              Charlotte-Concord-Gastonia, NC-SC
5181              Charlotte-Concord-Gastonia, NC-SC
5182             Chicago-Naperville-Elgin, IL-IN-WI
5183                                      Kapaa, HI
5184                  Orlando-Kissimmee-Sanford, FL
5185                    Detroit-Warren-Dearborn, MI
5186                    Kahului-Wailuku-Lahaina, HI
5187                    Seattle-Tacoma-Bellevue, WA
5188  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5189                    Kahului-Wailuku-Lahaina, HI
5190                          Steamboat Springs, CO
5191             Los Angeles-Long Beach-Anaheim, CA
5192       Little Rock-North Little Rock-Conway, AR
5193           Atlanta-Sandy Springs-Alpharetta, GA
5194                                   Escanaba, MI
5195               Austin-Round Rock-Georgetown, TX
5196                                   Key West, FL
5197           Atlanta-Sandy Springs-Alpharetta, GA
5198             Chicago-Naperville-Elgin, IL-IN-WI
5199   Washington-Arlington-Alexandria, DC-VA-MD-WV
5200           Atlanta-Sandy Springs-Alpharetta, GA
5201                           Cleveland-Elyria, OH
5202              Charlotte-Concord-Gastonia, NC-SC
5203                               St. Louis, MO-IL
5204             San Francisco-Oakland-Berkeley, CA
5205                     Denver-Aurora-Lakewood, CO
5206            Portland-Vancouver-Hillsboro, OR-WA
5207              Charlotte-Concord-Gastonia, NC-SC
5208                             Salt Lake City, UT
5209                                    Bozeman, MT
5210        Minneapolis-St. Paul-Bloomington, MN-WI
5211                     Denver-Aurora-Lakewood, CO
5212                    Detroit-Warren-Dearborn, MI
5213                Dallas-Fort Worth-Arlington, TX
5214                             Urban Honolulu, HI
5215    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5216                  Orlando-Kissimmee-Sanford, FL
5217                    Detroit-Warren-Dearborn, MI
5218                Dallas-Fort Worth-Arlington, TX
5219                             Kansas City, MO-KS
5220                               St. Louis, MO-IL
5221                       New Orleans-Metairie, LA
5222                    San Juan-Bayamón-Caguas, PR
5223                    Seattle-Tacoma-Bellevue, WA
5224           Houston-The Woodlands-Sugar Land, TX
5225                     Denver-Aurora-Lakewood, CO
5226                                    Bozeman, MT
5227                         Milwaukee-Waukesha, WI
5228             Chicago-Naperville-Elgin, IL-IN-WI
5229        Minneapolis-St. Paul-Bloomington, MN-WI
5230              Charlotte-Concord-Gastonia, NC-SC
5231               Las Vegas-Henderson-Paradise, NV
5232        Minneapolis-St. Paul-Bloomington, MN-WI
5233        Miami-Fort Lauderdale-Pompano Beach, FL
5234               Las Vegas-Henderson-Paradise, NV
5235                                Baton Rouge, LA
5236             Los Angeles-Long Beach-Anaheim, CA
5237              Charlotte-Concord-Gastonia, NC-SC
5238   Washington-Arlington-Alexandria, DC-VA-MD-WV
5239                           Cleveland-Elyria, OH
5240    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5241               Las Vegas-Henderson-Paradise, NV
5242                                   Montrose, CO
5243                                    Bozeman, MT
5244                                   Montrose, CO
5245                      Phoenix-Mesa-Chandler, AZ
5246                                           <NA>
5247          New York-Newark-Jersey City, NY-NJ-PA
5248 Nashville-Davidson--Murfreesboro--Franklin, TN
5249           Houston-The Woodlands-Sugar Land, TX
5250           Riverside-San Bernardino-Ontario, CA
5251                                    Edwards, CO
5252             Chicago-Naperville-Elgin, IL-IN-WI
5253             San Francisco-Oakland-Berkeley, CA
5254                             Kansas City, MO-KS
5255             Chicago-Naperville-Elgin, IL-IN-WI
5256   Washington-Arlington-Alexandria, DC-VA-MD-WV
5257                Dallas-Fort Worth-Arlington, TX
5258           Houston-The Woodlands-Sugar Land, TX
5259                Dallas-Fort Worth-Arlington, TX
5260                Sacramento-Roseville-Folsom, CA
5261                     Denver-Aurora-Lakewood, CO
5262                    San Juan-Bayamón-Caguas, PR
5263                                       Hilo, HI
5264                                           <NA>
5265           Houston-The Woodlands-Sugar Land, TX
5266                Dallas-Fort Worth-Arlington, TX
5267                               Jacksonville, FL
5268           Riverside-San Bernardino-Ontario, CA
5269  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5270             San Francisco-Oakland-Berkeley, CA
5271                              Oklahoma City, OK
5272                                   Columbus, OH
5273                Dallas-Fort Worth-Arlington, TX
5274                Dallas-Fort Worth-Arlington, TX
5275        Miami-Fort Lauderdale-Pompano Beach, FL
5276           Houston-The Woodlands-Sugar Land, TX
5277           Riverside-San Bernardino-Ontario, CA
5278             Chicago-Naperville-Elgin, IL-IN-WI
5279              Charlotte-Concord-Gastonia, NC-SC
5280          New York-Newark-Jersey City, NY-NJ-PA
5281                    Kahului-Wailuku-Lahaina, HI
5282                               St. Louis, MO-IL
5283                                           <NA>
5284                  San Antonio-New Braunfels, TX
5285             Chicago-Naperville-Elgin, IL-IN-WI
5286                                    Edwards, CO
5287                             Salt Lake City, UT
5288             Chicago-Naperville-Elgin, IL-IN-WI
5289               Austin-Round Rock-Georgetown, TX
5290             Los Angeles-Long Beach-Anaheim, CA
5291   Washington-Arlington-Alexandria, DC-VA-MD-WV
5292           Houston-The Woodlands-Sugar Land, TX
5293   Washington-Arlington-Alexandria, DC-VA-MD-WV
5294   Washington-Arlington-Alexandria, DC-VA-MD-WV
5295                     Denver-Aurora-Lakewood, CO
5296                  Santa Maria-Santa Barbara, CA
5297        Minneapolis-St. Paul-Bloomington, MN-WI
5298              Charlotte-Concord-Gastonia, NC-SC
5299             Chicago-Naperville-Elgin, IL-IN-WI
5300                                           <NA>
5301                                 Clarksburg, WV
5302                                           <NA>
5303                                   Columbus, OH
5304                                 Huntsville, AL
5305                                           <NA>
5306                                   Savannah, GA
5307                Burlington-South Burlington, VT
5308                                   Columbia, SC
5309                           Glenwood Springs, CO
5310                                    Edwards, CO
5311                              Traverse City, MI
5312                           Glenwood Springs, CO
5313                                    Bozeman, MT
5314                                 Jackson, WY-ID
5315                                           <NA>
5316                                   Billings, MT
5317                                     Hailey, ID
5318                          Steamboat Springs, CO
5319                                           <NA>
5320                                   Key West, FL
5321                           Sault Ste. Marie, MI
5322                                 Rapid City, SD
5323                Hilton Head Island-Bluffton, SC
5324                                 Rapid City, SD
5325                           Iron Mountain, MI-WI
5326                                  Kalispell, MT
5327            Tampa-St. Petersburg-Clearwater, FL
5328                                 Jackson, WY-ID
5329                          Steamboat Springs, CO
5330                Burlington-South Burlington, VT
5331                                  Kalispell, MT
5332                                           <NA>
5333                                     Pueblo, CO
5334                                  Green Bay, WI
5335                           Glenwood Springs, CO
5336                    Albany-Schenectady-Troy, NY
5337                    San Juan-Bayamón-Caguas, PR
5338                    San Juan-Bayamón-Caguas, PR
5339                                 Bellingham, WA
5340                 Pensacola-Ferry Pass-Brent, FL
5341           Riverside-San Bernardino-Ontario, CA
5342                    Detroit-Warren-Dearborn, MI
5343                                    El Paso, TX
5344     Virginia Beach-Norfolk-Newport News, VA-NC
5345                                     Tucson, AZ
5346                Charleston-North Charleston, SC
5347  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5348                          Steamboat Springs, CO
5349             Los Angeles-Long Beach-Anaheim, CA
5350           Riverside-San Bernardino-Ontario, CA
5351                 Des Moines-West Des Moines, IA
5352                                       Reno, NV
5353                                Panama City, FL
5354                     Spokane-Spokane Valley, WA
5355                                Panama City, FL
5356                                   Amarillo, TX
5357                 Boston-Cambridge-Newton, MA-NH
5358                                 Boise City, ID
5359                    San Juan-Bayamón-Caguas, PR
5360                                       Reno, NV
5361                                Panama City, FL
5362                          Manchester-Nashua, NH
5363         Crestview-Fort Walton Beach-Destin, FL
5364                                Albuquerque, NM
5365        Minneapolis-St. Paul-Bloomington, MN-WI
5366          New York-Newark-Jersey City, NY-NJ-PA
5367                      Providence-Warwick, RI-MA
5368                           Cleveland-Elyria, OH
5369                           Cincinnati, OH-KY-IN
5370                      Brownsville-Harlingen, TX
5371                              Oklahoma City, OK
5372                                       Reno, NV
5373                                Albuquerque, NM
5374                 Boston-Cambridge-Newton, MA-NH
5375                                   Richmond, VA
5376                                   Richmond, VA
5377                      Providence-Warwick, RI-MA
5378                      Cape Coral-Fort Myers, FL
5379              Charlotte-Concord-Gastonia, NC-SC
5380                                      Tulsa, OK
5381                                Albuquerque, NM
5382        Miami-Fort Lauderdale-Pompano Beach, FL
5383                      Providence-Warwick, RI-MA
5384                                 Boise City, ID
5385                          Birmingham-Hoover, AL
5386                                      Tulsa, OK
5387                                Spartanburg, SC
5388                                    Bozeman, MT
5389                      Cape Coral-Fort Myers, FL
5390              North Port-Sarasota-Bradenton, FL
5391                               Raleigh-Cary, NC
5392           Riverside-San Bernardino-Ontario, CA
5393                                   Richmond, VA
5394                               Jacksonville, FL
5395              Palm Bay-Melbourne-Titusville, FL
5396            Tampa-St. Petersburg-Clearwater, FL
5397                                     Joplin, MO
5398  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5399                 Pensacola-Ferry Pass-Brent, FL
5400              Allentown-Bethlehem-Easton, PA-NJ
5401                  Santa Maria-Santa Barbara, CA
5402                      Providence-Warwick, RI-MA
5403                                  Asheville, NC
5404                                    Lubbock, TX
5405                         Eugene-Springfield, OR
5406                Charleston-North Charleston, SC
5407                      Providence-Warwick, RI-MA
5408         Deltona-Daytona Beach-Ormond Beach, FL
5409                                    Roanoke, VA
5410                                           <NA>
5411                                   Columbus, OH
5412                                Albuquerque, NM
5413                                      Akron, OH
5414                                    El Paso, TX
5415                             Vineyard Haven, MA
5416                                Panama City, FL
5417                                    Midland, TX
5418                                 Lebanon, NH-VT
5419                                   Syracuse, NY
5420     Virginia Beach-Norfolk-Newport News, VA-NC
5421                      Brownsville-Harlingen, TX
5422           Atlanta-Sandy Springs-Alpharetta, GA
5423                                           <NA>
5424               Indianapolis-Carmel-Anderson, IN
5425                      Brownsville-Harlingen, TX
5426                                    Edwards, CO
5427                    Detroit-Warren-Dearborn, MI
5428                                   Columbus, OH
5429                                 Kirksville, MO
5430                                           <NA>
5431                       New Orleans-Metairie, LA
5432        Minneapolis-St. Paul-Bloomington, MN-WI
5433           Atlanta-Sandy Springs-Alpharetta, GA
5434                    Detroit-Warren-Dearborn, MI
5435                     Denver-Aurora-Lakewood, CO
5436             Chicago-Naperville-Elgin, IL-IN-WI
5437                Dallas-Fort Worth-Arlington, TX
5438           Houston-The Woodlands-Sugar Land, TX
5439                                           <NA>
5440                                    Madison, WI
5441                                  Ketchikan, AK
5442         Deltona-Daytona Beach-Ormond Beach, FL
5443                         Milwaukee-Waukesha, WI
5444              Charlotte-Concord-Gastonia, NC-SC
5445                                           <NA>
5446                     Denver-Aurora-Lakewood, CO
5447            Portland-Vancouver-Hillsboro, OR-WA
5448                                 Huntsville, AL
5449                         Eugene-Springfield, OR
5450                                 Fort Dodge, IA
5451                             Salt Lake City, UT
5452           Atlanta-Sandy Springs-Alpharetta, GA
5453              Charlotte-Concord-Gastonia, NC-SC
5454             Chicago-Naperville-Elgin, IL-IN-WI
5455                     Denver-Aurora-Lakewood, CO
5456        Minneapolis-St. Paul-Bloomington, MN-WI
5457           Atlanta-Sandy Springs-Alpharetta, GA
5458             Chicago-Naperville-Elgin, IL-IN-WI
5459              Charlotte-Concord-Gastonia, NC-SC
5460           Atlanta-Sandy Springs-Alpharetta, GA
5461             Chicago-Naperville-Elgin, IL-IN-WI
5462             Chicago-Naperville-Elgin, IL-IN-WI
5463           Atlanta-Sandy Springs-Alpharetta, GA
5464                  San Antonio-New Braunfels, TX
5465                    Detroit-Warren-Dearborn, MI
5466                    Detroit-Warren-Dearborn, MI
5467   Washington-Arlington-Alexandria, DC-VA-MD-WV
5468                    Seattle-Tacoma-Bellevue, WA
5469              Charlotte-Concord-Gastonia, NC-SC
5470                Dallas-Fort Worth-Arlington, TX
5471                                           <NA>
5472             Chicago-Naperville-Elgin, IL-IN-WI
5473             Chicago-Naperville-Elgin, IL-IN-WI
5474                     Denver-Aurora-Lakewood, CO
5475                     Denver-Aurora-Lakewood, CO
5476    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5477           Atlanta-Sandy Springs-Alpharetta, GA
5478           Houston-The Woodlands-Sugar Land, TX
5479                    Seattle-Tacoma-Bellevue, WA
5480                     Denver-Aurora-Lakewood, CO
5481                    Detroit-Warren-Dearborn, MI
5482                                           <NA>
5483              Charlotte-Concord-Gastonia, NC-SC
5484    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5485        Minneapolis-St. Paul-Bloomington, MN-WI
5486        Minneapolis-St. Paul-Bloomington, MN-WI
5487                    Detroit-Warren-Dearborn, MI
5488           Houston-The Woodlands-Sugar Land, TX
5489                     Denver-Aurora-Lakewood, CO
5490           Houston-The Woodlands-Sugar Land, TX
5491                             Salt Lake City, UT
5492                     Denver-Aurora-Lakewood, CO
5493        Minneapolis-St. Paul-Bloomington, MN-WI
5494                     Denver-Aurora-Lakewood, CO
5495              Charlotte-Concord-Gastonia, NC-SC
5496                    Detroit-Warren-Dearborn, MI
5497                     Denver-Aurora-Lakewood, CO
5498           Houston-The Woodlands-Sugar Land, TX
5499                      Phoenix-Mesa-Chandler, AZ
5500                     Denver-Aurora-Lakewood, CO
5501                Dallas-Fort Worth-Arlington, TX
5502             San Francisco-Oakland-Berkeley, CA
5503             Los Angeles-Long Beach-Anaheim, CA
5504            Portland-Vancouver-Hillsboro, OR-WA
5505           Houston-The Woodlands-Sugar Land, TX
5506                    Seattle-Tacoma-Bellevue, WA
5507             Chicago-Naperville-Elgin, IL-IN-WI
5508                Dallas-Fort Worth-Arlington, TX
5509             Chicago-Naperville-Elgin, IL-IN-WI
5510             Chicago-Naperville-Elgin, IL-IN-WI
5511           Houston-The Woodlands-Sugar Land, TX
5512                     Denver-Aurora-Lakewood, CO
5513   Washington-Arlington-Alexandria, DC-VA-MD-WV
5514                     Denver-Aurora-Lakewood, CO
5515                     Denver-Aurora-Lakewood, CO
5516                                  Anchorage, AK
5517                    Detroit-Warren-Dearborn, MI
5518                Dallas-Fort Worth-Arlington, TX
5519                             Salt Lake City, UT
5520   Washington-Arlington-Alexandria, DC-VA-MD-WV
5521                     Denver-Aurora-Lakewood, CO
5522           Atlanta-Sandy Springs-Alpharetta, GA
5523                    Kahului-Wailuku-Lahaina, HI
5524        Minneapolis-St. Paul-Bloomington, MN-WI
5525                Dallas-Fort Worth-Arlington, TX
5526                    Detroit-Warren-Dearborn, MI
5527                     Denver-Aurora-Lakewood, CO
5528                    Detroit-Warren-Dearborn, MI
5529                    Seattle-Tacoma-Bellevue, WA
5530                Dallas-Fort Worth-Arlington, TX
5531                     Denver-Aurora-Lakewood, CO
5532                             Salt Lake City, UT
5533                                           <NA>
5534        Minneapolis-St. Paul-Bloomington, MN-WI
5535                     Spokane-Spokane Valley, WA
5536                             Corpus Christi, TX
5537                          Lexington-Fayette, KY
5538               Austin-Round Rock-Georgetown, TX
5539        Miami-Fort Lauderdale-Pompano Beach, FL
5540                    Seattle-Tacoma-Bellevue, WA
5541        Minneapolis-St. Paul-Bloomington, MN-WI
5542                                 Fort Dodge, IA
5543                       New Orleans-Metairie, LA
5544                                Albuquerque, NM
5545                                Albuquerque, NM
5546                    Albany-Schenectady-Troy, NY
5547                    Albany-Schenectady-Troy, NY
5548                                   Amarillo, TX
5549          Hartford-East Hartford-Middletown, CT
5550                                 Boise City, ID
5551                        Buffalo-Cheektowaga, NY
5552                        Buffalo-Cheektowaga, NY
5553                        Buffalo-Cheektowaga, NY
5554                  Baltimore-Columbia-Towson, MD
5555                  Baltimore-Columbia-Towson, MD
5556                                   Columbus, OH
5557                                    El Paso, TX
5558                                    El Paso, TX
5559                                     Fresno, CA
5560   Washington-Arlington-Alexandria, DC-VA-MD-WV
5561               Indianapolis-Carmel-Anderson, IN
5562          New York-Newark-Jersey City, NY-NJ-PA
5563                                    Lubbock, TX
5564                                    Lubbock, TX
5565                                    Lubbock, TX
5566             Los Angeles-Long Beach-Anaheim, CA
5567             Los Angeles-Long Beach-Anaheim, CA
5568             Los Angeles-Long Beach-Anaheim, CA
5569       Little Rock-North Little Rock-Conway, AR
5570       Little Rock-North Little Rock-Conway, AR
5571                                    Midland, TX
5572                                    Midland, TX
5573                                    Midland, TX
5574                             Kansas City, MO-KS
5575                              Memphis, TN-MS-AR
5576                              Memphis, TN-MS-AR
5577                          Manchester-Nashua, NH
5578        Miami-Fort Lauderdale-Pompano Beach, FL
5579                       New Orleans-Metairie, LA
5580             San Francisco-Oakland-Berkeley, CA
5581                              Oklahoma City, OK
5582                              Oklahoma City, OK
5583                    Omaha-Council Bluffs, NE-IA
5584                    Omaha-Council Bluffs, NE-IA
5585     Virginia Beach-Norfolk-Newport News, VA-NC
5586                 Pensacola-Ferry Pass-Brent, FL
5587                                   Richmond, VA
5588                                    Midland, TX
5589            Portland-Vancouver-Hillsboro, OR-WA
5590                 Des Moines-West Des Moines, IA
5591          New York-Newark-Jersey City, NY-NJ-PA
5592                Charleston-North Charleston, SC
5593                Burlington-South Burlington, VT
5594                           Cleveland-Elyria, OH
5595                                 Pittsburgh, PA
5596            Portland-Vancouver-Hillsboro, OR-WA
5597                                    Lubbock, TX
5598                  Orlando-Kissimmee-Sanford, FL
5599        Minneapolis-St. Paul-Bloomington, MN-WI
5600                                  Owensboro, KY
5601       Little Rock-North Little Rock-Conway, AR
5602                      Cape Coral-Fort Myers, FL
5603                                    Midland, TX
5604                                Spartanburg, SC
5605                           Cleveland-Elyria, OH
5606  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5607                                   Missoula, MT
5608             San Francisco-Oakland-Berkeley, CA
5609          Hartford-East Hartford-Middletown, CT
5610                                     Tucson, AZ
5611                                 Boise City, ID
5612                      Providence-Warwick, RI-MA
5613                      Grand Rapids-Kentwood, MI
5614                      Brownsville-Harlingen, TX
5615                             Corpus Christi, TX
5616                                     Tucson, AZ
5617                                    Lubbock, TX
5618                                    Bozeman, MT
5619                                Albuquerque, NM
5620                      Brownsville-Harlingen, TX
5621            Tampa-St. Petersburg-Clearwater, FL
5622             San Francisco-Oakland-Berkeley, CA
5623                                    El Paso, TX
5624                 Pensacola-Ferry Pass-Brent, FL
5625              North Port-Sarasota-Bradenton, FL
5626                             Corpus Christi, TX
5627                      Providence-Warwick, RI-MA
5628                        Hermiston-Pendleton, OR
5629                               Fort Collins, CO
5630                                    El Paso, TX
5631                                  Anchorage, AK
5632             San Francisco-Oakland-Berkeley, CA
5633                    San Juan-Bayamón-Caguas, PR
5634                                           <NA>
5635                  Baltimore-Columbia-Towson, MD
5636                    Albany-Schenectady-Troy, NY
5637                 Des Moines-West Des Moines, IA
5638             Los Angeles-Long Beach-Anaheim, CA
5639                                Panama City, FL
5640                      Grand Rapids-Kentwood, MI
5641                                  Rochester, NY
5642                Charleston-North Charleston, SC
5643             Chicago-Naperville-Elgin, IL-IN-WI
5644          Hartford-East Hartford-Middletown, CT
5645                                    El Paso, TX
5646                              Traverse City, MI
5647       Little Rock-North Little Rock-Conway, AR
5648        Miami-Fort Lauderdale-Pompano Beach, FL
5649                           Champaign-Urbana, IL
5650                                  Asheville, NC
5651                                      Tulsa, OK
5652                              Oklahoma City, OK
5653                  San Antonio-New Braunfels, TX
5654                                  Owensboro, KY
5655                                      Tulsa, OK
5656                                           <NA>
5657                                Albuquerque, NM
5658                                   Mayagüez, PR
5659   Washington-Arlington-Alexandria, DC-VA-MD-WV
5660        Miami-Fort Lauderdale-Pompano Beach, FL
5661              Charlotte-Concord-Gastonia, NC-SC
5662                    Seattle-Tacoma-Bellevue, WA
5663                                  Anchorage, AK
5664                                  Ketchikan, AK
5665                             Salt Lake City, UT
5666             Chicago-Naperville-Elgin, IL-IN-WI
5667                    Seattle-Tacoma-Bellevue, WA
5668             Chicago-Naperville-Elgin, IL-IN-WI
5669                     Denver-Aurora-Lakewood, CO
5670                     Denver-Aurora-Lakewood, CO
5671                             Salt Lake City, UT
5672             Los Angeles-Long Beach-Anaheim, CA
5673                Dallas-Fort Worth-Arlington, TX
5674   Washington-Arlington-Alexandria, DC-VA-MD-WV
5675   Washington-Arlington-Alexandria, DC-VA-MD-WV
5676             Chicago-Naperville-Elgin, IL-IN-WI
5677                             Salt Lake City, UT
5678                      Phoenix-Mesa-Chandler, AZ
5679   Washington-Arlington-Alexandria, DC-VA-MD-WV
5680 Nashville-Davidson--Murfreesboro--Franklin, TN
5681                     Denver-Aurora-Lakewood, CO
5682             Chicago-Naperville-Elgin, IL-IN-WI
5683               Las Vegas-Henderson-Paradise, NV
5684                     Denver-Aurora-Lakewood, CO
5685             Los Angeles-Long Beach-Anaheim, CA
5686                     Denver-Aurora-Lakewood, CO
5687                Dallas-Fort Worth-Arlington, TX
5688             Chicago-Naperville-Elgin, IL-IN-WI
5689                Dallas-Fort Worth-Arlington, TX
5690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5691   Washington-Arlington-Alexandria, DC-VA-MD-WV
5692                Dallas-Fort Worth-Arlington, TX
5693             Chicago-Naperville-Elgin, IL-IN-WI
5694                Dallas-Fort Worth-Arlington, TX
5695                     Denver-Aurora-Lakewood, CO
5696             Chicago-Naperville-Elgin, IL-IN-WI
5697                     Denver-Aurora-Lakewood, CO
5698             Chicago-Naperville-Elgin, IL-IN-WI
5699                     Denver-Aurora-Lakewood, CO
5700        Minneapolis-St. Paul-Bloomington, MN-WI
5701                               St. Louis, MO-IL
5702                    Detroit-Warren-Dearborn, MI
5703             Chicago-Naperville-Elgin, IL-IN-WI
5704                         Milwaukee-Waukesha, WI
5705   Washington-Arlington-Alexandria, DC-VA-MD-WV
5706        Minneapolis-St. Paul-Bloomington, MN-WI
5707                               St. Louis, MO-IL
5708                             Salt Lake City, UT
5709                    Kahului-Wailuku-Lahaina, HI
5710                               St. Louis, MO-IL
5711                     Denver-Aurora-Lakewood, CO
5712                                       Hilo, HI
5713 Nashville-Davidson--Murfreesboro--Franklin, TN
5714                               St. Louis, MO-IL
5715             Los Angeles-Long Beach-Anaheim, CA
5716                    San Juan-Bayamón-Caguas, PR
5717                               St. Louis, MO-IL
5718             Chicago-Naperville-Elgin, IL-IN-WI
5719        Minneapolis-St. Paul-Bloomington, MN-WI
5720             Chicago-Naperville-Elgin, IL-IN-WI
5721                Dallas-Fort Worth-Arlington, TX
5722               Austin-Round Rock-Georgetown, TX
5723                          Birmingham-Hoover, AL
5724             San Francisco-Oakland-Berkeley, CA
5725                             Salt Lake City, UT
5726    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5727                             Kansas City, MO-KS
5728             San Francisco-Oakland-Berkeley, CA
5729                    South Bend-Mishawaka, IN-MI
5730             Los Angeles-Long Beach-Anaheim, CA
5731                                   Columbus, OH
5732                     Denver-Aurora-Lakewood, CO
5733          New York-Newark-Jersey City, NY-NJ-PA
5734                    Omaha-Council Bluffs, NE-IA
5735             San Diego-Chula Vista-Carlsbad, CA
5736                  San Antonio-New Braunfels, TX
5737                  San Antonio-New Braunfels, TX
5738                Sacramento-Roseville-Folsom, CA
5739                Dallas-Fort Worth-Arlington, TX
5740                Dallas-Fort Worth-Arlington, TX
5741                                      Flint, MI
5742                             Kansas City, MO-KS
5743                             Kansas City, MO-KS
5744                    Omaha-Council Bluffs, NE-IA
5745             San Jose-Sunnyvale-Santa Clara, CA
5746             San Jose-Sunnyvale-Santa Clara, CA
5747                                 Boise City, ID
5748                       New Orleans-Metairie, LA
5749  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
5750          Hartford-East Hartford-Middletown, CT
5751 Nashville-Davidson--Murfreesboro--Franklin, TN
5752                                    Jackson, MS
5753                             Kansas City, MO-KS
5754                             Kansas City, MO-KS
5755             San Francisco-Oakland-Berkeley, CA
5756                                Albuquerque, NM
5757 Nashville-Davidson--Murfreesboro--Franklin, TN
5758                  Baltimore-Columbia-Towson, MD
5759                              Memphis, TN-MS-AR
5760             San Francisco-Oakland-Berkeley, CA
5761                    Omaha-Council Bluffs, NE-IA
5762                Sacramento-Roseville-Folsom, CA
5763               Austin-Round Rock-Georgetown, TX
5764                                 Boise City, ID
5765                           Colorado Springs, CO
5766                             Salt Lake City, UT
5767             Los Angeles-Long Beach-Anaheim, CA
5768                        Buffalo-Cheektowaga, NY
5769                           Colorado Springs, CO
5770                Dallas-Fort Worth-Arlington, TX
5771                             Kansas City, MO-KS
5772                       New Orleans-Metairie, LA
5773    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
5774                  San Antonio-New Braunfels, TX
5775             San Jose-Sunnyvale-Santa Clara, CA
5776           Atlanta-Sandy Springs-Alpharetta, GA
5777                          Birmingham-Hoover, AL
5778                  Baltimore-Columbia-Towson, MD
5779                    Detroit-Warren-Dearborn, MI
5780                              Oklahoma City, OK
5781                      Providence-Warwick, RI-MA
5782                  San Antonio-New Braunfels, TX
5783                    Seattle-Tacoma-Bellevue, WA
5784           Houston-The Woodlands-Sugar Land, TX
5785             Los Angeles-Long Beach-Anaheim, CA
5786             Los Angeles-Long Beach-Anaheim, CA
5787                             Kansas City, MO-KS
5788                    Portland-South Portland, ME
5789                                       Reno, NV
5790                    Seattle-Tacoma-Bellevue, WA
5791                                      Tulsa, OK
5792              Charlotte-Concord-Gastonia, NC-SC
5793                    Seattle-Tacoma-Bellevue, WA
5794          Hartford-East Hartford-Middletown, CT
5795                                    Bozeman, MT
5796             Los Angeles-Long Beach-Anaheim, CA
5797             Los Angeles-Long Beach-Anaheim, CA
5798             Los Angeles-Long Beach-Anaheim, CA
5799            Portland-Vancouver-Hillsboro, OR-WA
5800             Chicago-Naperville-Elgin, IL-IN-WI
5801                Charleston-North Charleston, SC
5802   Washington-Arlington-Alexandria, DC-VA-MD-WV
5803                        Buffalo-Cheektowaga, NY
5804                           Colorado Springs, CO
5805       Little Rock-North Little Rock-Conway, AR
5806                Sacramento-Roseville-Folsom, CA
5807                Dallas-Fort Worth-Arlington, TX
5808                     Spokane-Spokane Valley, WA
5809                 Pensacola-Ferry Pass-Brent, FL
5810             Los Angeles-Long Beach-Anaheim, CA
5811                               Jacksonville, FL
5812                                  Rochester, NY
5813             Los Angeles-Long Beach-Anaheim, CA
5814                               St. Louis, MO-IL
5815               Indianapolis-Carmel-Anderson, IN
5816                      Phoenix-Mesa-Chandler, AZ
5817                  Baltimore-Columbia-Towson, MD
5818                Dallas-Fort Worth-Arlington, TX
5819               Las Vegas-Henderson-Paradise, NV
5820             Los Angeles-Long Beach-Anaheim, CA
5821                      Providence-Warwick, RI-MA
5822          New York-Newark-Jersey City, NY-NJ-PA
5823                  Baltimore-Columbia-Towson, MD
5824                    Detroit-Warren-Dearborn, MI
5825                                   Key West, FL
5826                           Cleveland-Elyria, OH
5827                               Jacksonville, FL
5828                         Milwaukee-Waukesha, WI
5829                       New Orleans-Metairie, LA
5830                    Omaha-Council Bluffs, NE-IA
5831                               Raleigh-Cary, NC
5832          New York-Newark-Jersey City, NY-NJ-PA
5833             San Jose-Sunnyvale-Santa Clara, CA
5834             San Francisco-Oakland-Berkeley, CA
5835                           Colorado Springs, CO
5836                Sacramento-Roseville-Folsom, CA
5837                      Phoenix-Mesa-Chandler, AZ
5838               Austin-Round Rock-Georgetown, TX
5839               Austin-Round Rock-Georgetown, TX
5840                  Baltimore-Columbia-Towson, MD
5841                                   Columbus, OH
5842                Dallas-Fort Worth-Arlington, TX
5843   Washington-Arlington-Alexandria, DC-VA-MD-WV
5844               Indianapolis-Carmel-Anderson, IN
5845                              Memphis, TN-MS-AR
5846                              Memphis, TN-MS-AR
5847                    Omaha-Council Bluffs, NE-IA
5848                      Phoenix-Mesa-Chandler, AZ
5849                      Providence-Warwick, RI-MA
5850             San Diego-Chula Vista-Carlsbad, CA
5851        Miami-Fort Lauderdale-Pompano Beach, FL
5852                              Oklahoma City, OK
5853             San Diego-Chula Vista-Carlsbad, CA
5854                             Urban Honolulu, HI
5855             San Diego-Chula Vista-Carlsbad, CA
5856          Hartford-East Hartford-Middletown, CT
5857             Los Angeles-Long Beach-Anaheim, CA
5858                  Baltimore-Columbia-Towson, MD
5859                Dallas-Fort Worth-Arlington, TX
5860                Dallas-Fort Worth-Arlington, TX
5861                                    El Paso, TX
5862        Miami-Fort Lauderdale-Pompano Beach, FL
5863           Houston-The Woodlands-Sugar Land, TX
5864          New York-Newark-Jersey City, NY-NJ-PA
5865             Los Angeles-Long Beach-Anaheim, CA
5866                             Kansas City, MO-KS
5867                             Kansas City, MO-KS
5868                             Kansas City, MO-KS
5869                             Kansas City, MO-KS
5870                       New Orleans-Metairie, LA
5871                              Oklahoma City, OK
5872           Riverside-San Bernardino-Ontario, CA
5873           Riverside-San Bernardino-Ontario, CA
5874             San Diego-Chula Vista-Carlsbad, CA
5875                  San Antonio-New Braunfels, TX
5876                  San Antonio-New Braunfels, TX
5877             San Jose-Sunnyvale-Santa Clara, CA
5878             San Jose-Sunnyvale-Santa Clara, CA
5879              North Port-Sarasota-Bradenton, FL
5880            Tampa-St. Petersburg-Clearwater, FL
5881                                      Tulsa, OK
5882                                      Tulsa, OK
5883                                     Tucson, AZ
5884                       New Orleans-Metairie, LA
5885           Riverside-San Bernardino-Ontario, CA
5886                      Brownsville-Harlingen, TX
5887                                    Jackson, MS
5888                              Memphis, TN-MS-AR
5889                         Milwaukee-Waukesha, WI
5890                         Milwaukee-Waukesha, WI
5891                              Oklahoma City, OK
5892                    Omaha-Council Bluffs, NE-IA
5893        Miami-Fort Lauderdale-Pompano Beach, FL
5894             San Francisco-Oakland-Berkeley, CA
5895                      Cape Coral-Fort Myers, FL
5896           Riverside-San Bernardino-Ontario, CA
5897                                Albuquerque, NM
5898                         Eugene-Springfield, OR
5899        Minneapolis-St. Paul-Bloomington, MN-WI
5900             Los Angeles-Long Beach-Anaheim, CA
5901            Tampa-St. Petersburg-Clearwater, FL
5902                         Milwaukee-Waukesha, WI
5903                           Cincinnati, OH-KY-IN
5904                                    El Paso, TX
5905                              Memphis, TN-MS-AR
5906        Minneapolis-St. Paul-Bloomington, MN-WI
5907                                      Tulsa, OK
5908                                   Columbus, OH
5909                       New Orleans-Metairie, LA
5910                                    Lubbock, TX
5911             Louisville/Jefferson County, KY-IN
5912           Atlanta-Sandy Springs-Alpharetta, GA
5913                                   Columbus, OH
5914                          Manchester-Nashua, NH
5915             San Francisco-Oakland-Berkeley, CA
5916             San Diego-Chula Vista-Carlsbad, CA
5917               Indianapolis-Carmel-Anderson, IN
5918     Virginia Beach-Norfolk-Newport News, VA-NC
5919               Las Vegas-Henderson-Paradise, NV
5920 Nashville-Davidson--Murfreesboro--Franklin, TN
5921             Los Angeles-Long Beach-Anaheim, CA
5922                                    Bozeman, MT
5923                     Spokane-Spokane Valley, WA
5924             Los Angeles-Long Beach-Anaheim, CA
5925                              Oklahoma City, OK
5926                  Santa Maria-Santa Barbara, CA
5927             San Jose-Sunnyvale-Santa Clara, CA
5928                        Buffalo-Cheektowaga, NY
5929               Indianapolis-Carmel-Anderson, IN
5930                               Raleigh-Cary, NC
5931             San Francisco-Oakland-Berkeley, CA
5932                                     Tucson, AZ
5933                  Baltimore-Columbia-Towson, MD
5934             San Francisco-Oakland-Berkeley, CA
5935                    Albany-Schenectady-Troy, NY
5936                                   Amarillo, TX
5937          Hartford-East Hartford-Middletown, CT
5938                                     Fresno, CA
5939                                    Midland, TX
5940                                  Rochester, NY
5941                                 Boise City, ID
5942                           Cleveland-Elyria, OH
5943              Charlotte-Concord-Gastonia, NC-SC
5944                                   Columbus, OH
5945                                    Wichita, KS
5946          New York-Newark-Jersey City, NY-NJ-PA
5947                             Kansas City, MO-KS
5948           Riverside-San Bernardino-Ontario, CA
5949           Riverside-San Bernardino-Ontario, CA
5950                Sacramento-Roseville-Folsom, CA
5951                              Memphis, TN-MS-AR
5952                       New Orleans-Metairie, LA
5953                  San Antonio-New Braunfels, TX
5954                                     Tucson, AZ
5955                                Albuquerque, NM
5956                                    Lubbock, TX
5957                              Oklahoma City, OK
5958                    Omaha-Council Bluffs, NE-IA
5959            Portland-Vancouver-Hillsboro, OR-WA
5960                           Colorado Springs, CO
5961                Sacramento-Roseville-Folsom, CA
5962                    Portland-South Portland, ME
5963                       New Orleans-Metairie, LA
5964           Atlanta-Sandy Springs-Alpharetta, GA
5965 Nashville-Davidson--Murfreesboro--Franklin, TN
5966                                   Columbus, OH
5967                                   Columbus, OH
5968                           Colorado Springs, CO
5969                    Detroit-Warren-Dearborn, MI
5970                     Spokane-Spokane Valley, WA
5971           Houston-The Woodlands-Sugar Land, TX
5972               Indianapolis-Carmel-Anderson, IN
5973                             Kansas City, MO-KS
5974                       New Orleans-Metairie, LA
5975             San Francisco-Oakland-Berkeley, CA
5976            Portland-Vancouver-Hillsboro, OR-WA
5977                      Phoenix-Mesa-Chandler, AZ
5978                      Phoenix-Mesa-Chandler, AZ
5979             San Jose-Sunnyvale-Santa Clara, CA
5980                             Salt Lake City, UT
5981             Los Angeles-Long Beach-Anaheim, CA
5982                                    Wichita, KS
5983                                Albuquerque, NM
5984                      Phoenix-Mesa-Chandler, AZ
5985                          Birmingham-Hoover, AL
5986                           Colorado Springs, CO
5987                    San Juan-Bayamón-Caguas, PR
5988                Dallas-Fort Worth-Arlington, TX
5989             San Jose-Sunnyvale-Santa Clara, CA
5990                               St. Louis, MO-IL
5991        Miami-Fort Lauderdale-Pompano Beach, FL
5992                                       Reno, NV
5993                               St. Louis, MO-IL
5994       Little Rock-North Little Rock-Conway, AR
5995                                    El Paso, TX
5996               Indianapolis-Carmel-Anderson, IN
5997           Riverside-San Bernardino-Ontario, CA
5998                               Raleigh-Cary, NC
5999          New York-Newark-Jersey City, NY-NJ-PA
6000             San Francisco-Oakland-Berkeley, CA
6001   Washington-Arlington-Alexandria, DC-VA-MD-WV
6002                                Spartanburg, SC
6003            Portland-Vancouver-Hillsboro, OR-WA
6004                                Albuquerque, NM
6005           Houston-The Woodlands-Sugar Land, TX
6006           Houston-The Woodlands-Sugar Land, TX
6007             Los Angeles-Long Beach-Anaheim, CA
6008            Portland-Vancouver-Hillsboro, OR-WA
6009                             Salt Lake City, UT
6010                Sacramento-Roseville-Folsom, CA
6011             Los Angeles-Long Beach-Anaheim, CA
6012     Virginia Beach-Norfolk-Newport News, VA-NC
6013                 Pensacola-Ferry Pass-Brent, FL
6014                           Cleveland-Elyria, OH
6015                           Colorado Springs, CO
6016             Los Angeles-Long Beach-Anaheim, CA
6017           Houston-The Woodlands-Sugar Land, TX
6018                               Raleigh-Cary, NC
6019                               St. Louis, MO-IL
6020                          Birmingham-Hoover, AL
6021                      Grand Rapids-Kentwood, MI
6022                                     Tucson, AZ
6023                          Birmingham-Hoover, AL
6024                          Birmingham-Hoover, AL
6025                           Cleveland-Elyria, OH
6026             San Francisco-Oakland-Berkeley, CA
6027                    Omaha-Council Bluffs, NE-IA
6028                                 Pittsburgh, PA
6029                    Portland-South Portland, ME
6030                    South Bend-Mishawaka, IN-MI
6031          New York-Newark-Jersey City, NY-NJ-PA
6032             Los Angeles-Long Beach-Anaheim, CA
6033                                 Bellingham, WA
6034                                 Boise City, ID
6035                                Panama City, FL
6036                               Jacksonville, FL
6037                       New Orleans-Metairie, LA
6038                    Omaha-Council Bluffs, NE-IA
6039                      Phoenix-Mesa-Chandler, AZ
6040                               Raleigh-Cary, NC
6041             Los Angeles-Long Beach-Anaheim, CA
6042                               St. Louis, MO-IL
6043                                   Amarillo, TX
6044                                   Savannah, GA
6045                Dallas-Fort Worth-Arlington, TX
6046                      Grand Rapids-Kentwood, MI
6047                      Brownsville-Harlingen, TX
6048                 Pensacola-Ferry Pass-Brent, FL
6049           Riverside-San Bernardino-Ontario, CA
6050             San Diego-Chula Vista-Carlsbad, CA
6051             Los Angeles-Long Beach-Anaheim, CA
6052                Dallas-Fort Worth-Arlington, TX
6053                                     Fresno, CA
6054       Little Rock-North Little Rock-Conway, AR
6055               Austin-Round Rock-Georgetown, TX
6056 Nashville-Davidson--Murfreesboro--Franklin, TN
6057   Washington-Arlington-Alexandria, DC-VA-MD-WV
6058               Las Vegas-Henderson-Paradise, NV
6059             Los Angeles-Long Beach-Anaheim, CA
6060                           Cleveland-Elyria, OH
6061               Indianapolis-Carmel-Anderson, IN
6062                               Raleigh-Cary, NC
6063             Louisville/Jefferson County, KY-IN
6064                                   Columbus, OH
6065             Chicago-Naperville-Elgin, IL-IN-WI
6066             San Francisco-Oakland-Berkeley, CA
6067                                    Jackson, MS
6068                             Kansas City, MO-KS
6069                  San Antonio-New Braunfels, TX
6070               Austin-Round Rock-Georgetown, TX
6071        Miami-Fort Lauderdale-Pompano Beach, FL
6072             Los Angeles-Long Beach-Anaheim, CA
6073                         Milwaukee-Waukesha, WI
6074                                       Reno, NV
6075                  San Antonio-New Braunfels, TX
6076                  Orlando-Kissimmee-Sanford, FL
6077                                 Boise City, ID
6078                           Cleveland-Elyria, OH
6079                                    El Paso, TX
6080             Chicago-Naperville-Elgin, IL-IN-WI
6081           Riverside-San Bernardino-Ontario, CA
6082             San Diego-Chula Vista-Carlsbad, CA
6083                                Albuquerque, NM
6084             Los Angeles-Long Beach-Anaheim, CA
6085                 Boston-Cambridge-Newton, MA-NH
6086               Indianapolis-Carmel-Anderson, IN
6087             San Francisco-Oakland-Berkeley, CA
6088                                   Amarillo, TX
6089 Nashville-Davidson--Murfreesboro--Franklin, TN
6090                 Boston-Cambridge-Newton, MA-NH
6091             Los Angeles-Long Beach-Anaheim, CA
6092                                    Jackson, MS
6093                    Omaha-Council Bluffs, NE-IA
6094                                  Rochester, NY
6095                          Manchester-Nashua, NH
6096            Tampa-St. Petersburg-Clearwater, FL
6097                                Albuquerque, NM
6098                        Buffalo-Cheektowaga, NY
6099              North Port-Sarasota-Bradenton, FL
6100                        Buffalo-Cheektowaga, NY
6101             Los Angeles-Long Beach-Anaheim, CA
6102                                Albuquerque, NM
6103                             Kansas City, MO-KS
6104                         Milwaukee-Waukesha, WI
6105                              Oklahoma City, OK
6106                                       Reno, NV
6107             San Diego-Chula Vista-Carlsbad, CA
6108                  Santa Maria-Santa Barbara, CA
6109                                      Tulsa, OK
6110          Hartford-East Hartford-Middletown, CT
6111 Nashville-Davidson--Murfreesboro--Franklin, TN
6112             Chicago-Naperville-Elgin, IL-IN-WI
6113                  Santa Maria-Santa Barbara, CA
6114                Sacramento-Roseville-Folsom, CA
6115                          Trenton-Princeton, NJ
6116                                Albuquerque, NM
6117                           Cleveland-Elyria, OH
6118                           Colorado Springs, CO
6119                           Colorado Springs, CO
6120                                     Fresno, CA
6121             Los Angeles-Long Beach-Anaheim, CA
6122             Los Angeles-Long Beach-Anaheim, CA
6123                         Milwaukee-Waukesha, WI
6124                       New Orleans-Metairie, LA
6125                       New Orleans-Metairie, LA
6126     Virginia Beach-Norfolk-Newport News, VA-NC
6127           Riverside-San Bernardino-Ontario, CA
6128                               Raleigh-Cary, NC
6129                                       Reno, NV
6130                  San Antonio-New Braunfels, TX
6131                  Santa Maria-Santa Barbara, CA
6132       Little Rock-North Little Rock-Conway, AR
6133             Los Angeles-Long Beach-Anaheim, CA
6134                           Cincinnati, OH-KY-IN
6135             Louisville/Jefferson County, KY-IN
6136                             Corpus Christi, TX
6137                                    Jackson, MS
6138                             Kansas City, MO-KS
6139                    Omaha-Council Bluffs, NE-IA
6140           Riverside-San Bernardino-Ontario, CA
6141                  San Antonio-New Braunfels, TX
6142            Tampa-St. Petersburg-Clearwater, FL
6143                             Salt Lake City, UT
6144               Austin-Round Rock-Georgetown, TX
6145          Hartford-East Hartford-Middletown, CT
6146                           Colorado Springs, CO
6147    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6148                  San Antonio-New Braunfels, TX
6149            Tampa-St. Petersburg-Clearwater, FL
6150                                    Jackson, MS
6151                  San Antonio-New Braunfels, TX
6152                 Boston-Cambridge-Newton, MA-NH
6153                           Cleveland-Elyria, OH
6154               Las Vegas-Henderson-Paradise, NV
6155                                    Midland, TX
6156             San Francisco-Oakland-Berkeley, CA
6157                 Pensacola-Ferry Pass-Brent, FL
6158             Louisville/Jefferson County, KY-IN
6159             Los Angeles-Long Beach-Anaheim, CA
6160 Nashville-Davidson--Murfreesboro--Franklin, TN
6161                  Baltimore-Columbia-Towson, MD
6162                                    El Paso, TX
6163                      Grand Rapids-Kentwood, MI
6164                       New Orleans-Metairie, LA
6165             Los Angeles-Long Beach-Anaheim, CA
6166                                      Tulsa, OK
6167               Austin-Round Rock-Georgetown, TX
6168                      Grand Rapids-Kentwood, MI
6169                               Jacksonville, FL
6170          New York-Newark-Jersey City, NY-NJ-PA
6171            Portland-Vancouver-Hillsboro, OR-WA
6172                  San Antonio-New Braunfels, TX
6173             Los Angeles-Long Beach-Anaheim, CA
6174                                   Columbus, OH
6175                    Detroit-Warren-Dearborn, MI
6176    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6177                      Phoenix-Mesa-Chandler, AZ
6178                               St. Louis, MO-IL
6179            Tampa-St. Petersburg-Clearwater, FL
6180                Charleston-North Charleston, SC
6181                                Spartanburg, SC
6182             Los Angeles-Long Beach-Anaheim, CA
6183     Virginia Beach-Norfolk-Newport News, VA-NC
6184                                 Pittsburgh, PA
6185                                    Bozeman, MT
6186                           Colorado Springs, CO
6187                      Grand Rapids-Kentwood, MI
6188                                   Montrose, CO
6189     Virginia Beach-Norfolk-Newport News, VA-NC
6190                  San Antonio-New Braunfels, TX
6191                    Seattle-Tacoma-Bellevue, WA
6192             San Jose-Sunnyvale-Santa Clara, CA
6193                      Phoenix-Mesa-Chandler, AZ
6194                                     Tucson, AZ
6195                  Baltimore-Columbia-Towson, MD
6196             Los Angeles-Long Beach-Anaheim, CA
6197                    Omaha-Council Bluffs, NE-IA
6198                                           <NA>
6199                    San Juan-Bayamón-Caguas, PR
6200                                    El Paso, TX
6201                 Boston-Cambridge-Newton, MA-NH
6202                           Colorado Springs, CO
6203               Indianapolis-Carmel-Anderson, IN
6204                         Milwaukee-Waukesha, WI
6205                  Santa Maria-Santa Barbara, CA
6206             Los Angeles-Long Beach-Anaheim, CA
6207                                Tallahassee, FL
6208                                Albuquerque, NM
6209 Nashville-Davidson--Murfreesboro--Franklin, TN
6210                           Colorado Springs, CO
6211                     Spokane-Spokane Valley, WA
6212                                       Reno, NV
6213             San Diego-Chula Vista-Carlsbad, CA
6214                    San Juan-Bayamón-Caguas, PR
6215                       New Orleans-Metairie, LA
6216                        Buffalo-Cheektowaga, NY
6217          Hartford-East Hartford-Middletown, CT
6218                             Kansas City, MO-KS
6219                                     Tucson, AZ
6220                                           <NA>
6221           Houston-The Woodlands-Sugar Land, TX
6222                                     Juneau, AK
6223          Hartford-East Hartford-Middletown, CT
6224          Hartford-East Hartford-Middletown, CT
6225                           Cleveland-Elyria, OH
6226                     Spokane-Spokane Valley, WA
6227                             Kansas City, MO-KS
6228                          Manchester-Nashua, NH
6229                          Manchester-Nashua, NH
6230             San Diego-Chula Vista-Carlsbad, CA
6231             San Jose-Sunnyvale-Santa Clara, CA
6232                             Kansas City, MO-KS
6233           Houston-The Woodlands-Sugar Land, TX
6234                                    Jackson, MS
6235                  Santa Maria-Santa Barbara, CA
6236                                   Columbus, OH
6237               Las Vegas-Henderson-Paradise, NV
6238                    Portland-South Portland, ME
6239                                       Hilo, HI
6240                              Oklahoma City, OK
6241                  San Antonio-New Braunfels, TX
6242             San Jose-Sunnyvale-Santa Clara, CA
6243                Sacramento-Roseville-Folsom, CA
6244                               St. Louis, MO-IL
6245                Dallas-Fort Worth-Arlington, TX
6246             San Jose-Sunnyvale-Santa Clara, CA
6247                          Birmingham-Hoover, AL
6248                     Spokane-Spokane Valley, WA
6249 Nashville-Davidson--Murfreesboro--Franklin, TN
6250                                  Rochester, NY
6251             Louisville/Jefferson County, KY-IN
6252     Virginia Beach-Norfolk-Newport News, VA-NC
6253             San Jose-Sunnyvale-Santa Clara, CA
6254             Chicago-Naperville-Elgin, IL-IN-WI
6255               Indianapolis-Carmel-Anderson, IN
6256             Los Angeles-Long Beach-Anaheim, CA
6257                                 Pittsburgh, PA
6258             Los Angeles-Long Beach-Anaheim, CA
6259             Los Angeles-Long Beach-Anaheim, CA
6260                    Portland-South Portland, ME
6261             Los Angeles-Long Beach-Anaheim, CA
6262 Nashville-Davidson--Murfreesboro--Franklin, TN
6263             San Francisco-Oakland-Berkeley, CA
6264                               St. Louis, MO-IL
6265                                       Reno, NV
6266                    Albany-Schenectady-Troy, NY
6267             Los Angeles-Long Beach-Anaheim, CA
6268                                     Fresno, CA
6269             Los Angeles-Long Beach-Anaheim, CA
6270             Chicago-Naperville-Elgin, IL-IN-WI
6271  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6272           Riverside-San Bernardino-Ontario, CA
6273    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6274               Indianapolis-Carmel-Anderson, IN
6275             San Francisco-Oakland-Berkeley, CA
6276             Louisville/Jefferson County, KY-IN
6277                                      Tulsa, OK
6278               Indianapolis-Carmel-Anderson, IN
6279  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6280                              Oklahoma City, OK
6281                                       Reno, NV
6282             San Diego-Chula Vista-Carlsbad, CA
6283               Indianapolis-Carmel-Anderson, IN
6284               Las Vegas-Henderson-Paradise, NV
6285                         Milwaukee-Waukesha, WI
6286                    Detroit-Warren-Dearborn, MI
6287                              Oklahoma City, OK
6288                  San Antonio-New Braunfels, TX
6289          Hartford-East Hartford-Middletown, CT
6290           Riverside-San Bernardino-Ontario, CA
6291             San Jose-Sunnyvale-Santa Clara, CA
6292              North Port-Sarasota-Bradenton, FL
6293                Sacramento-Roseville-Folsom, CA
6294               Austin-Round Rock-Georgetown, TX
6295                     Denver-Aurora-Lakewood, CO
6296                                Spartanburg, SC
6297               Las Vegas-Henderson-Paradise, NV
6298                              Oklahoma City, OK
6299                    Omaha-Council Bluffs, NE-IA
6300               Austin-Round Rock-Georgetown, TX
6301                    Omaha-Council Bluffs, NE-IA
6302                  Baltimore-Columbia-Towson, MD
6303             Los Angeles-Long Beach-Anaheim, CA
6304                    Albany-Schenectady-Troy, NY
6305            Portland-Vancouver-Hillsboro, OR-WA
6306             Los Angeles-Long Beach-Anaheim, CA
6307 Nashville-Davidson--Murfreesboro--Franklin, TN
6308             Los Angeles-Long Beach-Anaheim, CA
6309                        Buffalo-Cheektowaga, NY
6310             San Diego-Chula Vista-Carlsbad, CA
6311                               Jacksonville, FL
6312                  Orlando-Kissimmee-Sanford, FL
6313                  Orlando-Kissimmee-Sanford, FL
6314                             Vineyard Haven, MA
6315                                   Amarillo, TX
6316                              Oklahoma City, OK
6317             San Jose-Sunnyvale-Santa Clara, CA
6318        Miami-Fort Lauderdale-Pompano Beach, FL
6319                                    El Paso, TX
6320                               Jacksonville, FL
6321        Minneapolis-St. Paul-Bloomington, MN-WI
6322                Sacramento-Roseville-Folsom, CA
6323                                    El Paso, TX
6324           Houston-The Woodlands-Sugar Land, TX
6325             Los Angeles-Long Beach-Anaheim, CA
6326             San Diego-Chula Vista-Carlsbad, CA
6327             San Jose-Sunnyvale-Santa Clara, CA
6328             San Jose-Sunnyvale-Santa Clara, CA
6329              North Port-Sarasota-Bradenton, FL
6330                                    Bozeman, MT
6331                                   Columbus, OH
6332                Dallas-Fort Worth-Arlington, TX
6333             Los Angeles-Long Beach-Anaheim, CA
6334                  San Antonio-New Braunfels, TX
6335 Nashville-Davidson--Murfreesboro--Franklin, TN
6336                    Omaha-Council Bluffs, NE-IA
6337             San Jose-Sunnyvale-Santa Clara, CA
6338                                      Tulsa, OK
6339          New York-Newark-Jersey City, NY-NJ-PA
6340                              Memphis, TN-MS-AR
6341                                  Rochester, NY
6342                          Birmingham-Hoover, AL
6343                Dallas-Fort Worth-Arlington, TX
6344           Riverside-San Bernardino-Ontario, CA
6345                                 Pittsburgh, PA
6346                    Portland-South Portland, ME
6347                          Carbondale-Marion, IL
6348  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6349             San Jose-Sunnyvale-Santa Clara, CA
6350         Crestview-Fort Walton Beach-Destin, FL
6351                                    Bozeman, MT
6352                Dallas-Fort Worth-Arlington, TX
6353                             Salt Lake City, UT
6354                 Des Moines-West Des Moines, IA
6355                                           <NA>
6356                 Boston-Cambridge-Newton, MA-NH
6357                  San Antonio-New Braunfels, TX
6358                    Albany-Schenectady-Troy, NY
6359                                Spartanburg, SC
6360               Austin-Round Rock-Georgetown, TX
6361                                   Amarillo, TX
6362           Atlanta-Sandy Springs-Alpharetta, GA
6363                               Jacksonville, FL
6364                 Pensacola-Ferry Pass-Brent, FL
6365                Sacramento-Roseville-Folsom, CA
6366                                Albuquerque, NM
6367                Dallas-Fort Worth-Arlington, TX
6368                                   Richmond, VA
6369                                  Rochester, NY
6370                Sacramento-Roseville-Folsom, CA
6371                    Albany-Schenectady-Troy, NY
6372                           Colorado Springs, CO
6373              North Port-Sarasota-Bradenton, FL
6374            Tampa-St. Petersburg-Clearwater, FL
6375                       New Orleans-Metairie, LA
6376                              Oklahoma City, OK
6377                              Memphis, TN-MS-AR
6378                  Baltimore-Columbia-Towson, MD
6379                Charleston-North Charleston, SC
6380                           Cleveland-Elyria, OH
6381               Indianapolis-Carmel-Anderson, IN
6382                               Jacksonville, FL
6383                         Milwaukee-Waukesha, WI
6384  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6385        Miami-Fort Lauderdale-Pompano Beach, FL
6386                 Pensacola-Ferry Pass-Brent, FL
6387                    Portland-South Portland, ME
6388                               Raleigh-Cary, NC
6389                                     Tucson, AZ
6390                                Albuquerque, NM
6391                    Detroit-Warren-Dearborn, MI
6392                         Eugene-Springfield, OR
6393                                 Pittsburgh, PA
6394 Nashville-Davidson--Murfreesboro--Franklin, TN
6395                 Boston-Cambridge-Newton, MA-NH
6396                           Colorado Springs, CO
6397                Dallas-Fort Worth-Arlington, TX
6398                                Albuquerque, NM
6399 Nashville-Davidson--Murfreesboro--Franklin, TN
6400                      Brownsville-Harlingen, TX
6401   Washington-Arlington-Alexandria, DC-VA-MD-WV
6402                  San Antonio-New Braunfels, TX
6403                               St. Louis, MO-IL
6404                                    Midland, TX
6405                             Kansas City, MO-KS
6406                    Omaha-Council Bluffs, NE-IA
6407             Los Angeles-Long Beach-Anaheim, CA
6408             San Diego-Chula Vista-Carlsbad, CA
6409                                   Columbus, OH
6410             Chicago-Naperville-Elgin, IL-IN-WI
6411             Chicago-Naperville-Elgin, IL-IN-WI
6412                     Denver-Aurora-Lakewood, CO
6413              Charlotte-Concord-Gastonia, NC-SC
6414             Chicago-Naperville-Elgin, IL-IN-WI
6415             Chicago-Naperville-Elgin, IL-IN-WI
6416   Washington-Arlington-Alexandria, DC-VA-MD-WV
6417                Dallas-Fort Worth-Arlington, TX
6418                  Orlando-Kissimmee-Sanford, FL
6419                    San Juan-Bayamón-Caguas, PR
6420        Miami-Fort Lauderdale-Pompano Beach, FL
6421        Miami-Fort Lauderdale-Pompano Beach, FL
6422                     Denver-Aurora-Lakewood, CO
6423             Los Angeles-Long Beach-Anaheim, CA
6424                Dallas-Fort Worth-Arlington, TX
6425                     Denver-Aurora-Lakewood, CO
6426                Dallas-Fort Worth-Arlington, TX
6427                             Salt Lake City, UT
6428              Charlotte-Concord-Gastonia, NC-SC
6429             Los Angeles-Long Beach-Anaheim, CA
6430                     Denver-Aurora-Lakewood, CO
6431             San Francisco-Oakland-Berkeley, CA
6432             Chicago-Naperville-Elgin, IL-IN-WI
6433                Dallas-Fort Worth-Arlington, TX
6434           Houston-The Woodlands-Sugar Land, TX
6435              Charlotte-Concord-Gastonia, NC-SC
6436                      Cape Coral-Fort Myers, FL
6437        Minneapolis-St. Paul-Bloomington, MN-WI
6438           Houston-The Woodlands-Sugar Land, TX
6439   Washington-Arlington-Alexandria, DC-VA-MD-WV
6440             Los Angeles-Long Beach-Anaheim, CA
6441                Dallas-Fort Worth-Arlington, TX
6442             Chicago-Naperville-Elgin, IL-IN-WI
6443            Portland-Vancouver-Hillsboro, OR-WA
6444   Washington-Arlington-Alexandria, DC-VA-MD-WV
6445                                           <NA>
6446   Washington-Arlington-Alexandria, DC-VA-MD-WV
6447             Chicago-Naperville-Elgin, IL-IN-WI
6448           Poughkeepsie-Newburgh-Middletown, NY
6449                Dallas-Fort Worth-Arlington, TX
6450                 Boston-Cambridge-Newton, MA-NH
6451        Miami-Fort Lauderdale-Pompano Beach, FL
6452        Miami-Fort Lauderdale-Pompano Beach, FL
6453             Chicago-Naperville-Elgin, IL-IN-WI
6454        Miami-Fort Lauderdale-Pompano Beach, FL
6455                             Salt Lake City, UT
6456                       New Orleans-Metairie, LA
6457        Miami-Fort Lauderdale-Pompano Beach, FL
6458                             Kansas City, MO-KS
6459 Nashville-Davidson--Murfreesboro--Franklin, TN
6460             Chicago-Naperville-Elgin, IL-IN-WI
6461        Miami-Fort Lauderdale-Pompano Beach, FL
6462              Charlotte-Concord-Gastonia, NC-SC
6463                             Salt Lake City, UT
6464             San Jose-Sunnyvale-Santa Clara, CA
6465    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6466                  San Antonio-New Braunfels, TX
6467                               St. Louis, MO-IL
6468  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6469              Charlotte-Concord-Gastonia, NC-SC
6470             Los Angeles-Long Beach-Anaheim, CA
6471                             Kansas City, MO-KS
6472                                  Anchorage, AK
6473        Miami-Fort Lauderdale-Pompano Beach, FL
6474                  Orlando-Kissimmee-Sanford, FL
6475           Houston-The Woodlands-Sugar Land, TX
6476        Minneapolis-St. Paul-Bloomington, MN-WI
6477                         Milwaukee-Waukesha, WI
6478                     Denver-Aurora-Lakewood, CO
6479        Miami-Fort Lauderdale-Pompano Beach, FL
6480                     Denver-Aurora-Lakewood, CO
6481                     Denver-Aurora-Lakewood, CO
6482                               St. Louis, MO-IL
6483               Las Vegas-Henderson-Paradise, NV
6484                Dallas-Fort Worth-Arlington, TX
6485        Miami-Fort Lauderdale-Pompano Beach, FL
6486        Miami-Fort Lauderdale-Pompano Beach, FL
6487             Los Angeles-Long Beach-Anaheim, CA
6488 Nashville-Davidson--Murfreesboro--Franklin, TN
6489    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6490          Hartford-East Hartford-Middletown, CT
6491             San Diego-Chula Vista-Carlsbad, CA
6492                                           <NA>
6493                          Steamboat Springs, CO
6494                          Steamboat Springs, CO
6495                    Omaha-Council Bluffs, NE-IA
6496                                  Rochester, NY
6497                                 Pittsburgh, PA
6498        Miami-Fort Lauderdale-Pompano Beach, FL
6499                      Cape Coral-Fort Myers, FL
6500           Riverside-San Bernardino-Ontario, CA
6501                                    Edwards, CO
6502              North Port-Sarasota-Bradenton, FL
6503  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6504               Las Vegas-Henderson-Paradise, NV
6505        Miami-Fort Lauderdale-Pompano Beach, FL
6506            Tampa-St. Petersburg-Clearwater, FL
6507               Las Vegas-Henderson-Paradise, NV
6508                    South Bend-Mishawaka, IN-MI
6509                                Panama City, FL
6510  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
6511                                    Midland, TX
6512                                   Amarillo, TX
6513                                Albuquerque, NM
6514                          Steamboat Springs, CO
6515                                       Reno, NV
6516            Tampa-St. Petersburg-Clearwater, FL
6517                                Panama City, FL
6518             San Diego-Chula Vista-Carlsbad, CA
6519                  Orlando-Kissimmee-Sanford, FL
6520                               Jacksonville, FL
6521                                 Pittsburgh, PA
6522                                 Pittsburgh, PA
6523     Virginia Beach-Norfolk-Newport News, VA-NC
6524                                     Tucson, AZ
6525                                      Tulsa, OK
6526                                    Bozeman, MT
6527                                    El Paso, TX
6528                                    Midland, TX
6529                      Cape Coral-Fort Myers, FL
6530                Dallas-Fort Worth-Arlington, TX
6531                    Detroit-Warren-Dearborn, MI
6532               Las Vegas-Henderson-Paradise, NV
6533                Sacramento-Roseville-Folsom, CA
6534                                    Midland, TX
6535                                    Lubbock, TX
6536                               Jacksonville, FL
6537                                   Montrose, CO
6538                  Orlando-Kissimmee-Sanford, FL
6539                      Cape Coral-Fort Myers, FL
6540                              Oklahoma City, OK
6541                           Colorado Springs, CO
6542                                    Bozeman, MT
6543                 Pensacola-Ferry Pass-Brent, FL
6544             Los Angeles-Long Beach-Anaheim, CA
6545                     Spokane-Spokane Valley, WA
6546                      Providence-Warwick, RI-MA
6547        Miami-Fort Lauderdale-Pompano Beach, FL
6548          New York-Newark-Jersey City, NY-NJ-PA
6549                    San Juan-Bayamón-Caguas, PR
6550             San Francisco-Oakland-Berkeley, CA
6551         Crestview-Fort Walton Beach-Destin, FL
6552                  Orlando-Kissimmee-Sanford, FL
6553                           Cleveland-Elyria, OH
6554                    Detroit-Warren-Dearborn, MI
6555          New York-Newark-Jersey City, NY-NJ-PA
6556                          Birmingham-Hoover, AL
6557                                 Pittsburgh, PA
6558                Charleston-North Charleston, SC
6559                      Phoenix-Mesa-Chandler, AZ
6560                          Birmingham-Hoover, AL
6561                                   Amarillo, TX
6562         Crestview-Fort Walton Beach-Destin, FL
6563                                    El Paso, TX
6564        Miami-Fort Lauderdale-Pompano Beach, FL
6565                     Denver-Aurora-Lakewood, CO
6566                                    Lubbock, TX
6567             Los Angeles-Long Beach-Anaheim, CA
6568                       New Orleans-Metairie, LA
6569                               Raleigh-Cary, NC
6570   Washington-Arlington-Alexandria, DC-VA-MD-WV
6571                         Eugene-Springfield, OR
6572                        Buffalo-Cheektowaga, NY
6573             Louisville/Jefferson County, KY-IN
6574                              Memphis, TN-MS-AR
6575                                Albuquerque, NM
6576                                     Tucson, AZ
6577                                    Midland, TX
6578               Austin-Round Rock-Georgetown, TX
6579                      Cape Coral-Fort Myers, FL
6580     Virginia Beach-Norfolk-Newport News, VA-NC
6581                                    Madison, WI
6582                                 Boise City, ID
6583     Virginia Beach-Norfolk-Newport News, VA-NC
6584             San Francisco-Oakland-Berkeley, CA
6585                    South Bend-Mishawaka, IN-MI
6586                                    Edwards, CO
6587                       New Orleans-Metairie, LA
6588                      Cape Coral-Fort Myers, FL
6589             Los Angeles-Long Beach-Anaheim, CA
6590          New York-Newark-Jersey City, NY-NJ-PA
6591                                    Edwards, CO
6592                                 Jackson, WY-ID
6593                    South Bend-Mishawaka, IN-MI
6594                                     Fresno, CA
6595             San Francisco-Oakland-Berkeley, CA
6596          New York-Newark-Jersey City, NY-NJ-PA
6597            Portland-Vancouver-Hillsboro, OR-WA
6598                           Cincinnati, OH-KY-IN
6599          New York-Newark-Jersey City, NY-NJ-PA
6600                Sacramento-Roseville-Folsom, CA
6601               Indianapolis-Carmel-Anderson, IN
6602            Tampa-St. Petersburg-Clearwater, FL
6603                Charleston-North Charleston, SC
6604             Los Angeles-Long Beach-Anaheim, CA
6605                    Albany-Schenectady-Troy, NY
6606             San Francisco-Oakland-Berkeley, CA
6607                                    El Paso, TX
6608             Los Angeles-Long Beach-Anaheim, CA
6609            Portland-Vancouver-Hillsboro, OR-WA
6610          New York-Newark-Jersey City, NY-NJ-PA
6611          New York-Newark-Jersey City, NY-NJ-PA
6612                      Providence-Warwick, RI-MA
6613     Virginia Beach-Norfolk-Newport News, VA-NC
6614          New York-Newark-Jersey City, NY-NJ-PA
6615                      Grand Rapids-Kentwood, MI
6616                                 Pittsburgh, PA
6617                          Birmingham-Hoover, AL
6618                                    Midland, TX
6619                        Buffalo-Cheektowaga, NY
6620                                     Tucson, AZ
6621        Miami-Fort Lauderdale-Pompano Beach, FL
6622           Houston-The Woodlands-Sugar Land, TX
6623               Austin-Round Rock-Georgetown, TX
6624             Los Angeles-Long Beach-Anaheim, CA
6625                      Cape Coral-Fort Myers, FL
6626                    Seattle-Tacoma-Bellevue, WA
6627           Riverside-San Bernardino-Ontario, CA
6628                               Raleigh-Cary, NC
6629        Miami-Fort Lauderdale-Pompano Beach, FL
6630                                       Reno, NV
6631   Washington-Arlington-Alexandria, DC-VA-MD-WV
6632                Sacramento-Roseville-Folsom, CA
6633                        Buffalo-Cheektowaga, NY
6634                                      Tulsa, OK
6635                          Manchester-Nashua, NH
6636            Portland-Vancouver-Hillsboro, OR-WA
6637                           Colorado Springs, CO
6638                      Cape Coral-Fort Myers, FL
6639                              Oklahoma City, OK
6640                              Oklahoma City, OK
6641              North Port-Sarasota-Bradenton, FL
6642                                Panama City, FL
6643                                   Columbus, OH
6644              North Port-Sarasota-Bradenton, FL
6645                          Steamboat Springs, CO
6646             San Francisco-Oakland-Berkeley, CA
6647                                    Bozeman, MT
6648                                    Wichita, KS
6649                    Albany-Schenectady-Troy, NY
6650                Charleston-North Charleston, SC
6651                      Providence-Warwick, RI-MA
6652                                       Reno, NV
6653                Sacramento-Roseville-Folsom, CA
6654               Las Vegas-Henderson-Paradise, NV
6655                       New Orleans-Metairie, LA
6656                                     Tucson, AZ
6657             San Jose-Sunnyvale-Santa Clara, CA
6658             Los Angeles-Long Beach-Anaheim, CA
6659        Minneapolis-St. Paul-Bloomington, MN-WI
6660                              Memphis, TN-MS-AR
6661         Crestview-Fort Walton Beach-Destin, FL
6662                         Milwaukee-Waukesha, WI
6663           Riverside-San Bernardino-Ontario, CA
6664                             Vineyard Haven, MA
6665                                  Green Bay, WI
6666               Las Vegas-Henderson-Paradise, NV
                                                          NAME
1             New York-Newark-Jersey City, NY-NJ-PA Metro Area
2           Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3                                  Jacksonville, FL Metro Area
4                Los Angeles-Long Beach-Anaheim, CA Metro Area
5                Los Angeles-Long Beach-Anaheim, CA Metro Area
6                Los Angeles-Long Beach-Anaheim, CA Metro Area
7             New York-Newark-Jersey City, NY-NJ-PA Metro Area
8             New York-Newark-Jersey City, NY-NJ-PA Metro Area
9                     Orlando-Kissimmee-Sanford, FL Metro Area
10          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
11                         New Orleans-Metairie, LA Metro Area
12                        Cape Coral-Fort Myers, FL Metro Area
13                      Seattle-Tacoma-Bellevue, WA Metro Area
14                      Seattle-Tacoma-Bellevue, WA Metro Area
15                      Seattle-Tacoma-Bellevue, WA Metro Area
16                               Salt Lake City, UT Metro Area
17              Tampa-St. Petersburg-Clearwater, FL Metro Area
18             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
19             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
20             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
21             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
22             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
23             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
24             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
25             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
26             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
27             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
28             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
29             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
30             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
31             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
32             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
33             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
34                      Detroit-Warren-Dearborn, MI Metro Area
35                      Detroit-Warren-Dearborn, MI Metro Area
36          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
37          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
38          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
39          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
40                               Salt Lake City, UT Metro Area
41                               Salt Lake City, UT Metro Area
42                               Salt Lake City, UT Metro Area
43             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
44             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
45          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
46          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
47             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
48             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
49             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
50             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
51             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
52             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
53             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
54            New York-Newark-Jersey City, NY-NJ-PA Metro Area
55               Los Angeles-Long Beach-Anaheim, CA Metro Area
56            New York-Newark-Jersey City, NY-NJ-PA Metro Area
57          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
58                               Salt Lake City, UT Metro Area
59                               Salt Lake City, UT Metro Area
60          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
61          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
62          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
63          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
64                               Salt Lake City, UT Metro Area
65                               Salt Lake City, UT Metro Area
66                               Salt Lake City, UT Metro Area
67                               Salt Lake City, UT Metro Area
68                               Salt Lake City, UT Metro Area
69                               Salt Lake City, UT Metro Area
70                               Salt Lake City, UT Metro Area
71                               Salt Lake City, UT Metro Area
72                               Salt Lake City, UT Metro Area
73             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
74             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
75             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
76                      Detroit-Warren-Dearborn, MI Metro Area
77             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
78             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
79             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
80             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
81             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
82             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
83             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
84             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
85             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
86             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
87             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
88               Los Angeles-Long Beach-Anaheim, CA Metro Area
89               Los Angeles-Long Beach-Anaheim, CA Metro Area
90               Los Angeles-Long Beach-Anaheim, CA Metro Area
91               Los Angeles-Long Beach-Anaheim, CA Metro Area
92               Los Angeles-Long Beach-Anaheim, CA Metro Area
93          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
94          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
95                      Seattle-Tacoma-Bellevue, WA Metro Area
96                               Salt Lake City, UT Metro Area
97             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
98             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
99             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
100            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
101            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
102            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
103            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
104                     Detroit-Warren-Dearborn, MI Metro Area
105              Los Angeles-Long Beach-Anaheim, CA Metro Area
106              Los Angeles-Long Beach-Anaheim, CA Metro Area
107         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
108                              Salt Lake City, UT Metro Area
109            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
110            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
111            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
112            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
113            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
114            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
115            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
116                     Detroit-Warren-Dearborn, MI Metro Area
117                     Detroit-Warren-Dearborn, MI Metro Area
118                Las Vegas-Henderson-Paradise, NV Metro Area
119              Los Angeles-Long Beach-Anaheim, CA Metro Area
120              Los Angeles-Long Beach-Anaheim, CA Metro Area
121                   Orlando-Kissimmee-Sanford, FL Metro Area
122                   Orlando-Kissimmee-Sanford, FL Metro Area
123         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
124         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
125                       Cape Coral-Fort Myers, FL Metro Area
126                     Seattle-Tacoma-Bellevue, WA Metro Area
127                     Seattle-Tacoma-Bellevue, WA Metro Area
128                     Seattle-Tacoma-Bellevue, WA Metro Area
129                     Seattle-Tacoma-Bellevue, WA Metro Area
130                              Salt Lake City, UT Metro Area
131                              Salt Lake City, UT Metro Area
132                              Salt Lake City, UT Metro Area
133                              Salt Lake City, UT Metro Area
134             Tampa-St. Petersburg-Clearwater, FL Metro Area
135              San Diego-Chula Vista-Carlsbad, CA Metro Area
136              Los Angeles-Long Beach-Anaheim, CA Metro Area
137                     Seattle-Tacoma-Bellevue, WA Metro Area
138            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
139                     Detroit-Warren-Dearborn, MI Metro Area
140                     Detroit-Warren-Dearborn, MI Metro Area
141                     Detroit-Warren-Dearborn, MI Metro Area
142                     Detroit-Warren-Dearborn, MI Metro Area
143           New York-Newark-Jersey City, NY-NJ-PA Metro Area
144           New York-Newark-Jersey City, NY-NJ-PA Metro Area
145         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
146         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
147                                Raleigh-Cary, NC Metro Area
148                              Salt Lake City, UT Metro Area
149                              Salt Lake City, UT Metro Area
150            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
151            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
152            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
153  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
154                            Cincinnati, OH-KY-IN Metro Area
155                            Cincinnati, OH-KY-IN Metro Area
156                 Dallas-Fort Worth-Arlington, TX Metro Area
157                     Detroit-Warren-Dearborn, MI Metro Area
158                     Detroit-Warren-Dearborn, MI Metro Area
159                     Detroit-Warren-Dearborn, MI Metro Area
160                     Detroit-Warren-Dearborn, MI Metro Area
161                              Urban Honolulu, HI Metro Area
162           New York-Newark-Jersey City, NY-NJ-PA Metro Area
163           New York-Newark-Jersey City, NY-NJ-PA Metro Area
164                                Raleigh-Cary, NC Metro Area
165                   San Antonio-New Braunfels, TX Metro Area
166                     Seattle-Tacoma-Bellevue, WA Metro Area
167                              Salt Lake City, UT Metro Area
168                              Salt Lake City, UT Metro Area
169                              Salt Lake City, UT Metro Area
170                              Salt Lake City, UT Metro Area
171            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
172                     Detroit-Warren-Dearborn, MI Metro Area
173                     Detroit-Warren-Dearborn, MI Metro Area
174                     Detroit-Warren-Dearborn, MI Metro Area
175                     Detroit-Warren-Dearborn, MI Metro Area
176                     Detroit-Warren-Dearborn, MI Metro Area
177         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
178         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
179         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
180         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
181         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
182         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
183              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
184               North Port-Sarasota-Bradenton, FL Metro Area
185             Tampa-St. Petersburg-Clearwater, FL Metro Area
186              Los Angeles-Long Beach-Anaheim, CA Metro Area
187            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
188            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
189         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
190            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
191            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
192            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
193            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
194                     Detroit-Warren-Dearborn, MI Metro Area
195                     Detroit-Warren-Dearborn, MI Metro Area
196           New York-Newark-Jersey City, NY-NJ-PA Metro Area
197           New York-Newark-Jersey City, NY-NJ-PA Metro Area
198         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
199            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
200            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
201            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
202            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
203            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
204         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
205                              Salt Lake City, UT Metro Area
206            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
207            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
208            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
209         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
210            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
211            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
212            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
213            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
214                Austin-Round Rock-Georgetown, TX Metro Area
215  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
216                  Boston-Cambridge-Newton, MA-NH Metro Area
217    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
218                      Denver-Aurora-Lakewood, CO Metro Area
219                 Dallas-Fort Worth-Arlington, TX Metro Area
220                     Detroit-Warren-Dearborn, MI Metro Area
221                     Detroit-Warren-Dearborn, MI Metro Area
222                     Detroit-Warren-Dearborn, MI Metro Area
223           New York-Newark-Jersey City, NY-NJ-PA Metro Area
224                Las Vegas-Henderson-Paradise, NV Metro Area
225              Los Angeles-Long Beach-Anaheim, CA Metro Area
226           New York-Newark-Jersey City, NY-NJ-PA Metro Area
227           New York-Newark-Jersey City, NY-NJ-PA Metro Area
228                   Orlando-Kissimmee-Sanford, FL Metro Area
229                        New Orleans-Metairie, LA Metro Area
230              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
231             Portland-Vancouver-Hillsboro, OR-WA Metro Area
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
233                                Raleigh-Cary, NC Metro Area
234                       Cape Coral-Fort Myers, FL Metro Area
235                     Seattle-Tacoma-Bellevue, WA Metro Area
236             Tampa-St. Petersburg-Clearwater, FL Metro Area
237                     Detroit-Warren-Dearborn, MI Metro Area
238                     Detroit-Warren-Dearborn, MI Metro Area
239         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
240         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
241            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
242            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
243                              Salt Lake City, UT Metro Area
244                              Salt Lake City, UT Metro Area
245            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
246         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
247                              Salt Lake City, UT Metro Area
248            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
249                  Boston-Cambridge-Newton, MA-NH Metro Area
250                     Detroit-Warren-Dearborn, MI Metro Area
251           New York-Newark-Jersey City, NY-NJ-PA Metro Area
252           New York-Newark-Jersey City, NY-NJ-PA Metro Area
253         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
254         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
255                     Seattle-Tacoma-Bellevue, WA Metro Area
256            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
257            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
258         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
259                     Seattle-Tacoma-Bellevue, WA Metro Area
260                              Salt Lake City, UT Metro Area
261                              Salt Lake City, UT Metro Area
262                              Salt Lake City, UT Metro Area
263                              Salt Lake City, UT Metro Area
264            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
265            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
266                     Detroit-Warren-Dearborn, MI Metro Area
267         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
268            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
269           New York-Newark-Jersey City, NY-NJ-PA Metro Area
270         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
271            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
272            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
273            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
274                     Detroit-Warren-Dearborn, MI Metro Area
275         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
276                Las Vegas-Henderson-Paradise, NV Metro Area
277              Los Angeles-Long Beach-Anaheim, CA Metro Area
278              Los Angeles-Long Beach-Anaheim, CA Metro Area
279                   Orlando-Kissimmee-Sanford, FL Metro Area
280                     Seattle-Tacoma-Bellevue, WA Metro Area
281            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
282            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
283           New York-Newark-Jersey City, NY-NJ-PA Metro Area
284                     Detroit-Warren-Dearborn, MI Metro Area
285                     Seattle-Tacoma-Bellevue, WA Metro Area
286                              Salt Lake City, UT Metro Area
287                              Salt Lake City, UT Metro Area
288            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
289            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
290                     Detroit-Warren-Dearborn, MI Metro Area
291                     Detroit-Warren-Dearborn, MI Metro Area
292                Las Vegas-Henderson-Paradise, NV Metro Area
293              Los Angeles-Long Beach-Anaheim, CA Metro Area
294         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
295                       Phoenix-Mesa-Chandler, AZ Metro Area
296              San Diego-Chula Vista-Carlsbad, CA Metro Area
297                              Salt Lake City, UT Metro Area
298              Los Angeles-Long Beach-Anaheim, CA Metro Area
299                     Seattle-Tacoma-Bellevue, WA Metro Area
300                              Salt Lake City, UT Metro Area
301                              Salt Lake City, UT Metro Area
302         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
303                              Salt Lake City, UT Metro Area
304                                  Boise City, ID Metro Area
305                 Dallas-Fort Worth-Arlington, TX Metro Area
306                     Detroit-Warren-Dearborn, MI Metro Area
307                     Detroit-Warren-Dearborn, MI Metro Area
308                     Detroit-Warren-Dearborn, MI Metro Area
309           New York-Newark-Jersey City, NY-NJ-PA Metro Area
310                      Spokane-Spokane Valley, WA Metro Area
311           New York-Newark-Jersey City, NY-NJ-PA Metro Area
312                Las Vegas-Henderson-Paradise, NV Metro Area
313              Los Angeles-Long Beach-Anaheim, CA Metro Area
314         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
315            Riverside-San Bernardino-Ontario, CA Metro Area
316              San Diego-Chula Vista-Carlsbad, CA Metro Area
317              San Francisco-Oakland-Berkeley, CA Metro Area
318              San Jose-Sunnyvale-Santa Clara, CA Metro Area
319              Los Angeles-Long Beach-Anaheim, CA Metro Area
320         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
321                              Salt Lake City, UT Metro Area
322            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
323         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
324                     Seattle-Tacoma-Bellevue, WA Metro Area
325                              Salt Lake City, UT Metro Area
326            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
327         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
328            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
329            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
330            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
331                     Detroit-Warren-Dearborn, MI Metro Area
332                     Detroit-Warren-Dearborn, MI Metro Area
333           New York-Newark-Jersey City, NY-NJ-PA Metro Area
334           New York-Newark-Jersey City, NY-NJ-PA Metro Area
335         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
336                Las Vegas-Henderson-Paradise, NV Metro Area
337            Riverside-San Bernardino-Ontario, CA Metro Area
338                Las Vegas-Henderson-Paradise, NV Metro Area
339                   Orlando-Kissimmee-Sanford, FL Metro Area
340                   Orlando-Kissimmee-Sanford, FL Metro Area
341                      Denver-Aurora-Lakewood, CO Metro Area
342                Las Vegas-Henderson-Paradise, NV Metro Area
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
344                                      Fresno, CA Metro Area
345              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
346             Tampa-St. Petersburg-Clearwater, FL Metro Area
347             Tampa-St. Petersburg-Clearwater, FL Metro Area
348                           Trenton-Princeton, NJ Metro Area
349                      Denver-Aurora-Lakewood, CO Metro Area
350                Las Vegas-Henderson-Paradise, NV Metro Area
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
352                Las Vegas-Henderson-Paradise, NV Metro Area
353                Las Vegas-Henderson-Paradise, NV Metro Area
354                   Orlando-Kissimmee-Sanford, FL Metro Area
355             Tampa-St. Petersburg-Clearwater, FL Metro Area
356              San Diego-Chula Vista-Carlsbad, CA Metro Area
357                     San Juan-Bayamón-Caguas, PR Metro Area
358                Las Vegas-Henderson-Paradise, NV Metro Area
359                Las Vegas-Henderson-Paradise, NV Metro Area
360           New York-Newark-Jersey City, NY-NJ-PA Metro Area
361    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
362           New York-Newark-Jersey City, NY-NJ-PA Metro Area
363              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
364    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
365              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
366              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
367           New York-Newark-Jersey City, NY-NJ-PA Metro Area
368                            Cleveland-Elyria, OH Metro Area
369               Charlotte-Concord-Gastonia, NC-SC Metro Area
370    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
371                       Greensboro-High Point, NC Metro Area
372                Indianapolis-Carmel-Anderson, IN Metro Area
373                                   Rochester, NY Metro Area
374    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
375           New York-Newark-Jersey City, NY-NJ-PA Metro Area
376              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
377                 Hilton Head Island-Bluffton, SC Metro Area
378                Indianapolis-Carmel-Anderson, IN Metro Area
379    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
380              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
381              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
382              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
383           New York-Newark-Jersey City, NY-NJ-PA Metro Area
384           New York-Newark-Jersey City, NY-NJ-PA Metro Area
385    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
386    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
387           New York-Newark-Jersey City, NY-NJ-PA Metro Area
388           New York-Newark-Jersey City, NY-NJ-PA Metro Area
389           New York-Newark-Jersey City, NY-NJ-PA Metro Area
390              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
391              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
392           New York-Newark-Jersey City, NY-NJ-PA Metro Area
393           New York-Newark-Jersey City, NY-NJ-PA Metro Area
394    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
395              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
396              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
397              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
398              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
399               Charlotte-Concord-Gastonia, NC-SC Metro Area
400         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
401              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
402  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
403                            Cincinnati, OH-KY-IN Metro Area
404                               Oklahoma City, OK Metro Area
405              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
406                Austin-Round Rock-Georgetown, TX Metro Area
407              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
408              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
409              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
410              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
411                 Dallas-Fort Worth-Arlington, TX Metro Area
412              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
413                 Dallas-Fort Worth-Arlington, TX Metro Area
414                 Dallas-Fort Worth-Arlington, TX Metro Area
415                 Dallas-Fort Worth-Arlington, TX Metro Area
416              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
417    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
418    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
419         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
420         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
421         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
422              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
423                 Dallas-Fort Worth-Arlington, TX Metro Area
424                     Detroit-Warren-Dearborn, MI Metro Area
425                               Memphis, TN-MS-AR Metro Area
426                                Lake Charles, LA Metro Area
427                                    Montrose, CO Micro Area
428                 Dallas-Fort Worth-Arlington, TX Metro Area
429              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
430                 Dallas-Fort Worth-Arlington, TX Metro Area
431              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
432              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
433                 Dallas-Fort Worth-Arlington, TX Metro Area
434              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
435                 Dallas-Fort Worth-Arlington, TX Metro Area
436                 Dallas-Fort Worth-Arlington, TX Metro Area
437                 Dallas-Fort Worth-Arlington, TX Metro Area
438                 Dallas-Fort Worth-Arlington, TX Metro Area
439                 Dallas-Fort Worth-Arlington, TX Metro Area
440               Charlotte-Concord-Gastonia, NC-SC Metro Area
441         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
442              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
443              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
444              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
445                 Dallas-Fort Worth-Arlington, TX Metro Area
446                 Dallas-Fort Worth-Arlington, TX Metro Area
447                 Dallas-Fort Worth-Arlington, TX Metro Area
448                 Dallas-Fort Worth-Arlington, TX Metro Area
449                 Dallas-Fort Worth-Arlington, TX Metro Area
450               Charlotte-Concord-Gastonia, NC-SC Metro Area
451              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
452                 Dallas-Fort Worth-Arlington, TX Metro Area
453              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
454                                  Pittsburgh, PA Metro Area
455                 Dallas-Fort Worth-Arlington, TX Metro Area
456              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
457                 Dallas-Fort Worth-Arlington, TX Metro Area
458              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
459              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
460                 Dallas-Fort Worth-Arlington, TX Metro Area
461              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
462                Austin-Round Rock-Georgetown, TX Metro Area
463                            Cincinnati, OH-KY-IN Metro Area
464                                Raleigh-Cary, NC Metro Area
465              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
466              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
467                 Dallas-Fort Worth-Arlington, TX Metro Area
468              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
469         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
470         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
471         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
472                 Dallas-Fort Worth-Arlington, TX Metro Area
473                 Dallas-Fort Worth-Arlington, TX Metro Area
474              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
475                 Dallas-Fort Worth-Arlington, TX Metro Area
476                 Dallas-Fort Worth-Arlington, TX Metro Area
477         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
478              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
479                 Dallas-Fort Worth-Arlington, TX Metro Area
480                 Dallas-Fort Worth-Arlington, TX Metro Area
481                 Dallas-Fort Worth-Arlington, TX Metro Area
482         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
484                       Cape Coral-Fort Myers, FL Metro Area
485           New York-Newark-Jersey City, NY-NJ-PA Metro Area
486         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
487            Houston-The Woodlands-Sugar Land, TX Metro Area
488                Las Vegas-Henderson-Paradise, NV Metro Area
489                        New Orleans-Metairie, LA Metro Area
490              Los Angeles-Long Beach-Anaheim, CA Metro Area
491             Tampa-St. Petersburg-Clearwater, FL Metro Area
492         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
493                Las Vegas-Henderson-Paradise, NV Metro Area
494              Los Angeles-Long Beach-Anaheim, CA Metro Area
495           New York-Newark-Jersey City, NY-NJ-PA Metro Area
496                   Baltimore-Columbia-Towson, MD Metro Area
497         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
498                Las Vegas-Henderson-Paradise, NV Metro Area
499                     San Juan-Bayamón-Caguas, PR Metro Area
500             Tampa-St. Petersburg-Clearwater, FL Metro Area
501                Las Vegas-Henderson-Paradise, NV Metro Area
502         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
503         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
504                Las Vegas-Henderson-Paradise, NV Metro Area
505                        New Orleans-Metairie, LA Metro Area
506             Tampa-St. Petersburg-Clearwater, FL Metro Area
507                  Boston-Cambridge-Newton, MA-NH Metro Area
508                Las Vegas-Henderson-Paradise, NV Metro Area
509                Las Vegas-Henderson-Paradise, NV Metro Area
510                       Cape Coral-Fort Myers, FL Metro Area
511             Tampa-St. Petersburg-Clearwater, FL Metro Area
512                   Orlando-Kissimmee-Sanford, FL Metro Area
513                   Orlando-Kissimmee-Sanford, FL Metro Area
514                   Orlando-Kissimmee-Sanford, FL Metro Area
515            Houston-The Woodlands-Sugar Land, TX Metro Area
516         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
517                Las Vegas-Henderson-Paradise, NV Metro Area
518                        New Orleans-Metairie, LA Metro Area
519              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
520             Tampa-St. Petersburg-Clearwater, FL Metro Area
521                Las Vegas-Henderson-Paradise, NV Metro Area
522  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
523         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
524            Houston-The Woodlands-Sugar Land, TX Metro Area
525                   Orlando-Kissimmee-Sanford, FL Metro Area
526                Austin-Round Rock-Georgetown, TX Metro Area
527  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
528                  Boston-Cambridge-Newton, MA-NH Metro Area
529                   Baltimore-Columbia-Towson, MD Metro Area
530                      Denver-Aurora-Lakewood, CO Metro Area
531           New York-Newark-Jersey City, NY-NJ-PA Metro Area
532                Indianapolis-Carmel-Anderson, IN Metro Area
533                Las Vegas-Henderson-Paradise, NV Metro Area
534           New York-Newark-Jersey City, NY-NJ-PA Metro Area
535           New York-Newark-Jersey City, NY-NJ-PA Metro Area
536                Las Vegas-Henderson-Paradise, NV Metro Area
537         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
538                Las Vegas-Henderson-Paradise, NV Metro Area
539             Tampa-St. Petersburg-Clearwater, FL Metro Area
540  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
541                  Boston-Cambridge-Newton, MA-NH Metro Area
542                     Detroit-Warren-Dearborn, MI Metro Area
543                   Orlando-Kissimmee-Sanford, FL Metro Area
544                        New Orleans-Metairie, LA Metro Area
545                                  Pittsburgh, PA Metro Area
546                     Seattle-Tacoma-Bellevue, WA Metro Area
547         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
548                              Kansas City, MO-KS Metro Area
549                        New Orleans-Metairie, LA Metro Area
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
551              Louisville/Jefferson County, KY-IN Metro Area
552                   Orlando-Kissimmee-Sanford, FL Metro Area
553                       Cape Coral-Fort Myers, FL Metro Area
554                Las Vegas-Henderson-Paradise, NV Metro Area
555              Los Angeles-Long Beach-Anaheim, CA Metro Area
556  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
557                           Aguadilla-Isabela, PR Metro Area
558               Charlotte-Concord-Gastonia, NC-SC Metro Area
559                Las Vegas-Henderson-Paradise, NV Metro Area
560                                  Pittsburgh, PA Metro Area
561                     San Juan-Bayamón-Caguas, PR Metro Area
562                Las Vegas-Henderson-Paradise, NV Metro Area
563         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
564                Las Vegas-Henderson-Paradise, NV Metro Area
565                Las Vegas-Henderson-Paradise, NV Metro Area
566                Las Vegas-Henderson-Paradise, NV Metro Area
567                   Orlando-Kissimmee-Sanford, FL Metro Area
568                        New Orleans-Metairie, LA Metro Area
569                       Cape Coral-Fort Myers, FL Metro Area
570                Las Vegas-Henderson-Paradise, NV Metro Area
571              Los Angeles-Long Beach-Anaheim, CA Metro Area
572                   Orlando-Kissimmee-Sanford, FL Metro Area
573              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
574                  Boston-Cambridge-Newton, MA-NH Metro Area
575             Tampa-St. Petersburg-Clearwater, FL Metro Area
576         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
577                  Boston-Cambridge-Newton, MA-NH Metro Area
578                   Baltimore-Columbia-Towson, MD Metro Area
579                                    Columbus, OH Metro Area
580                Las Vegas-Henderson-Paradise, NV Metro Area
581               Charlotte-Concord-Gastonia, NC-SC Metro Area
582               Charlotte-Concord-Gastonia, NC-SC Metro Area
583    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
585    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
586               Charlotte-Concord-Gastonia, NC-SC Metro Area
587               Charlotte-Concord-Gastonia, NC-SC Metro Area
588               Charlotte-Concord-Gastonia, NC-SC Metro Area
589               Charlotte-Concord-Gastonia, NC-SC Metro Area
590               Charlotte-Concord-Gastonia, NC-SC Metro Area
591               Charlotte-Concord-Gastonia, NC-SC Metro Area
592    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
593    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
594    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
595               Charlotte-Concord-Gastonia, NC-SC Metro Area
596               Charlotte-Concord-Gastonia, NC-SC Metro Area
597               Charlotte-Concord-Gastonia, NC-SC Metro Area
598               Charlotte-Concord-Gastonia, NC-SC Metro Area
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
600               Charlotte-Concord-Gastonia, NC-SC Metro Area
601               Allentown-Bethlehem-Easton, PA-NJ Metro Area
602  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
603           New York-Newark-Jersey City, NY-NJ-PA Metro Area
604    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
605                                      Peoria, IL Metro Area
606               Charlotte-Concord-Gastonia, NC-SC Metro Area
607               Charlotte-Concord-Gastonia, NC-SC Metro Area
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
609               Charlotte-Concord-Gastonia, NC-SC Metro Area
610               Charlotte-Concord-Gastonia, NC-SC Metro Area
611               Charlotte-Concord-Gastonia, NC-SC Metro Area
612               Charlotte-Concord-Gastonia, NC-SC Metro Area
613               Charlotte-Concord-Gastonia, NC-SC Metro Area
614    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
615               Charlotte-Concord-Gastonia, NC-SC Metro Area
616                                     Jackson, MS Metro Area
617                                Jacksonville, FL Metro Area
618                        New Orleans-Metairie, LA Metro Area
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
620                                  Montgomery, AL Metro Area
621               Charlotte-Concord-Gastonia, NC-SC Metro Area
622    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
623    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
624               Charlotte-Concord-Gastonia, NC-SC Metro Area
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
627               Charlotte-Concord-Gastonia, NC-SC Metro Area
628               Charlotte-Concord-Gastonia, NC-SC Metro Area
629               Charlotte-Concord-Gastonia, NC-SC Metro Area
630               Charlotte-Concord-Gastonia, NC-SC Metro Area
631               Charlotte-Concord-Gastonia, NC-SC Metro Area
632               Charlotte-Concord-Gastonia, NC-SC Metro Area
633               Charlotte-Concord-Gastonia, NC-SC Metro Area
634               Charlotte-Concord-Gastonia, NC-SC Metro Area
635               Charlotte-Concord-Gastonia, NC-SC Metro Area
636    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
637    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
638               Charlotte-Concord-Gastonia, NC-SC Metro Area
639               Charlotte-Concord-Gastonia, NC-SC Metro Area
640               Charlotte-Concord-Gastonia, NC-SC Metro Area
641    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
642    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
643               Charlotte-Concord-Gastonia, NC-SC Metro Area
644               Charlotte-Concord-Gastonia, NC-SC Metro Area
645               Charlotte-Concord-Gastonia, NC-SC Metro Area
646               Charlotte-Concord-Gastonia, NC-SC Metro Area
647               Charlotte-Concord-Gastonia, NC-SC Metro Area
648               Charlotte-Concord-Gastonia, NC-SC Metro Area
649               Charlotte-Concord-Gastonia, NC-SC Metro Area
650    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
651    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
654               Charlotte-Concord-Gastonia, NC-SC Metro Area
655               Charlotte-Concord-Gastonia, NC-SC Metro Area
656               Charlotte-Concord-Gastonia, NC-SC Metro Area
657               Charlotte-Concord-Gastonia, NC-SC Metro Area
658               Charlotte-Concord-Gastonia, NC-SC Metro Area
659               Charlotte-Concord-Gastonia, NC-SC Metro Area
660               Charlotte-Concord-Gastonia, NC-SC Metro Area
661               Charlotte-Concord-Gastonia, NC-SC Metro Area
662               Charlotte-Concord-Gastonia, NC-SC Metro Area
663               Charlotte-Concord-Gastonia, NC-SC Metro Area
664    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
665               Charlotte-Concord-Gastonia, NC-SC Metro Area
666               Charlotte-Concord-Gastonia, NC-SC Metro Area
667    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
669  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
670                 Charleston-North Charleston, SC Metro Area
671    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
672                                  Wilmington, NC Metro Area
673                                Jacksonville, FL Metro Area
674         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
675                                Raleigh-Cary, NC Metro Area
676               Charlotte-Concord-Gastonia, NC-SC Metro Area
677               Charlotte-Concord-Gastonia, NC-SC Metro Area
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
683               Charlotte-Concord-Gastonia, NC-SC Metro Area
684               Charlotte-Concord-Gastonia, NC-SC Metro Area
685    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
686    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
687    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
688    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
689              Los Angeles-Long Beach-Anaheim, CA Metro Area
690                      Denver-Aurora-Lakewood, CO Metro Area
691              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
692              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
693              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
694              Los Angeles-Long Beach-Anaheim, CA Metro Area
695              San Diego-Chula Vista-Carlsbad, CA Metro Area
696                      Denver-Aurora-Lakewood, CO Metro Area
697              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
698              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
699                      Denver-Aurora-Lakewood, CO Metro Area
700              San Francisco-Oakland-Berkeley, CA Metro Area
701                      Denver-Aurora-Lakewood, CO Metro Area
702              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
703                      Denver-Aurora-Lakewood, CO Metro Area
704            Houston-The Woodlands-Sugar Land, TX Metro Area
705                      Spokane-Spokane Valley, WA Metro Area
706              Los Angeles-Long Beach-Anaheim, CA Metro Area
707             Portland-Vancouver-Hillsboro, OR-WA Metro Area
708                     Seattle-Tacoma-Bellevue, WA Metro Area
709              San Francisco-Oakland-Berkeley, CA Metro Area
710              San Jose-Sunnyvale-Santa Clara, CA Metro Area
711                     Seattle-Tacoma-Bellevue, WA Metro Area
712                              Salt Lake City, UT Metro Area
713                      Denver-Aurora-Lakewood, CO Metro Area
714                       Phoenix-Mesa-Chandler, AZ Metro Area
715                       Phoenix-Mesa-Chandler, AZ Metro Area
716             Portland-Vancouver-Hillsboro, OR-WA Metro Area
717              San Francisco-Oakland-Berkeley, CA Metro Area
718              Los Angeles-Long Beach-Anaheim, CA Metro Area
719              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
720                      Denver-Aurora-Lakewood, CO Metro Area
721              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
722                 Dallas-Fort Worth-Arlington, TX Metro Area
723                      Denver-Aurora-Lakewood, CO Metro Area
724                      Denver-Aurora-Lakewood, CO Metro Area
725              Los Angeles-Long Beach-Anaheim, CA Metro Area
726                      Denver-Aurora-Lakewood, CO Metro Area
727              Los Angeles-Long Beach-Anaheim, CA Metro Area
728                Austin-Round Rock-Georgetown, TX Metro Area
729                                  Boise City, ID Metro Area
730                                     Bozeman, MT Micro Area
731                  Des Moines-West Des Moines, IA Metro Area
732                               Memphis, TN-MS-AR Metro Area
733                     Omaha-Council Bluffs, NE-IA Metro Area
734                      Denver-Aurora-Lakewood, CO Metro Area
735                      Denver-Aurora-Lakewood, CO Metro Area
736         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
737                      Denver-Aurora-Lakewood, CO Metro Area
738                      Denver-Aurora-Lakewood, CO Metro Area
739              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
740              San Francisco-Oakland-Berkeley, CA Metro Area
741              San Francisco-Oakland-Berkeley, CA Metro Area
742                       Phoenix-Mesa-Chandler, AZ Metro Area
743             Portland-Vancouver-Hillsboro, OR-WA Metro Area
744              San Diego-Chula Vista-Carlsbad, CA Metro Area
745                     Seattle-Tacoma-Bellevue, WA Metro Area
746              San Francisco-Oakland-Berkeley, CA Metro Area
747              San Francisco-Oakland-Berkeley, CA Metro Area
748         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
749                              Salt Lake City, UT Metro Area
750              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
751              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
752                     Detroit-Warren-Dearborn, MI Metro Area
753                                  Boise City, ID Metro Area
754                                  Boise City, ID Metro Area
755              Los Angeles-Long Beach-Anaheim, CA Metro Area
756                     Seattle-Tacoma-Bellevue, WA Metro Area
757              San Francisco-Oakland-Berkeley, CA Metro Area
758            Houston-The Woodlands-Sugar Land, TX Metro Area
759            Houston-The Woodlands-Sugar Land, TX Metro Area
760            Houston-The Woodlands-Sugar Land, TX Metro Area
761              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
762                      Denver-Aurora-Lakewood, CO Metro Area
763                     Detroit-Warren-Dearborn, MI Metro Area
764         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
765                     Detroit-Warren-Dearborn, MI Metro Area
766                                     El Paso, TX Metro Area
767                              Salt Lake City, UT Metro Area
768                      Denver-Aurora-Lakewood, CO Metro Area
769                      Denver-Aurora-Lakewood, CO Metro Area
770              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
771    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
772              Los Angeles-Long Beach-Anaheim, CA Metro Area
773                       Phoenix-Mesa-Chandler, AZ Metro Area
774                                      Tucson, AZ Metro Area
775                                  Boise City, ID Metro Area
776                                     Bozeman, MT Micro Area
777                      Spokane-Spokane Valley, WA Metro Area
778                         Santa Rosa-Petaluma, CA Metro Area
779              San Jose-Sunnyvale-Santa Clara, CA Metro Area
780                            Glenwood Springs, CO Micro Area
781            Houston-The Woodlands-Sugar Land, TX Metro Area
782            Houston-The Woodlands-Sugar Land, TX Metro Area
783              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
784              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
785                 Dallas-Fort Worth-Arlington, TX Metro Area
786              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
787                       Phoenix-Mesa-Chandler, AZ Metro Area
788              San Francisco-Oakland-Berkeley, CA Metro Area
789                      Denver-Aurora-Lakewood, CO Metro Area
790                      Denver-Aurora-Lakewood, CO Metro Area
791                      Denver-Aurora-Lakewood, CO Metro Area
792              San Diego-Chula Vista-Carlsbad, CA Metro Area
793         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
794                                    Appleton, WI Metro Area
795    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
796                      Denver-Aurora-Lakewood, CO Metro Area
797              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
798             Portland-Vancouver-Hillsboro, OR-WA Metro Area
799                 Dallas-Fort Worth-Arlington, TX Metro Area
800              Los Angeles-Long Beach-Anaheim, CA Metro Area
801              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
802                      Denver-Aurora-Lakewood, CO Metro Area
803            Houston-The Woodlands-Sugar Land, TX Metro Area
804              Los Angeles-Long Beach-Anaheim, CA Metro Area
805                     Detroit-Warren-Dearborn, MI Metro Area
806         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
807                       Phoenix-Mesa-Chandler, AZ Metro Area
808                       Phoenix-Mesa-Chandler, AZ Metro Area
809              San Francisco-Oakland-Berkeley, CA Metro Area
810                            Cleveland-Elyria, OH Metro Area
811                                    Columbia, MO Metro Area
812                                     Wichita, KS Metro Area
813                                 Spartanburg, SC Metro Area
814                                   Knoxville, TN Metro Area
815                     Detroit-Warren-Dearborn, MI Metro Area
816              Los Angeles-Long Beach-Anaheim, CA Metro Area
817                                      Fresno, CA Metro Area
818                                     Medford, OR Metro Area
819              San Francisco-Oakland-Berkeley, CA Metro Area
820              San Diego-Chula Vista-Carlsbad, CA Metro Area
821              San Francisco-Oakland-Berkeley, CA Metro Area
822                 Sacramento-Roseville-Folsom, CA Metro Area
823              Los Angeles-Long Beach-Anaheim, CA Metro Area
824                     Seattle-Tacoma-Bellevue, WA Metro Area
825              San Francisco-Oakland-Berkeley, CA Metro Area
826                                      Fresno, CA Metro Area
827                      Denver-Aurora-Lakewood, CO Metro Area
828                     Detroit-Warren-Dearborn, MI Metro Area
829              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
830            Houston-The Woodlands-Sugar Land, TX Metro Area
831                       Phoenix-Mesa-Chandler, AZ Metro Area
832              San Jose-Sunnyvale-Santa Clara, CA Metro Area
833                              Salt Lake City, UT Metro Area
834                     Detroit-Warren-Dearborn, MI Metro Area
835                      Denver-Aurora-Lakewood, CO Metro Area
836                       Phoenix-Mesa-Chandler, AZ Metro Area
837                     Seattle-Tacoma-Bellevue, WA Metro Area
838                              Salt Lake City, UT Metro Area
839                      Denver-Aurora-Lakewood, CO Metro Area
840                      Denver-Aurora-Lakewood, CO Metro Area
841                      Denver-Aurora-Lakewood, CO Metro Area
842                     Seattle-Tacoma-Bellevue, WA Metro Area
843                       Phoenix-Mesa-Chandler, AZ Metro Area
844                 Sacramento-Roseville-Folsom, CA Metro Area
845                Austin-Round Rock-Georgetown, TX Metro Area
846                                      Fresno, CA Metro Area
847                                     Salinas, CA Metro Area
848             Portland-Vancouver-Hillsboro, OR-WA Metro Area
849              San Jose-Sunnyvale-Santa Clara, CA Metro Area
850                         Santa Rosa-Petaluma, CA Metro Area
851              Los Angeles-Long Beach-Anaheim, CA Metro Area
852              Los Angeles-Long Beach-Anaheim, CA Metro Area
853              Los Angeles-Long Beach-Anaheim, CA Metro Area
854                       Phoenix-Mesa-Chandler, AZ Metro Area
855              San Francisco-Oakland-Berkeley, CA Metro Area
856                     Detroit-Warren-Dearborn, MI Metro Area
857             Portland-Vancouver-Hillsboro, OR-WA Metro Area
858         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
859              Los Angeles-Long Beach-Anaheim, CA Metro Area
860                                  Boise City, ID Metro Area
861                                      Fresno, CA Metro Area
862                      Spokane-Spokane Valley, WA Metro Area
863              San Jose-Sunnyvale-Santa Clara, CA Metro Area
864            Riverside-San Bernardino-Ontario, CA Metro Area
865                 Dallas-Fort Worth-Arlington, TX Metro Area
866             Portland-Vancouver-Hillsboro, OR-WA Metro Area
867                       Phoenix-Mesa-Chandler, AZ Metro Area
868              Los Angeles-Long Beach-Anaheim, CA Metro Area
869                                  Boise City, ID Metro Area
870                 Dallas-Fort Worth-Arlington, TX Metro Area
871                      Spokane-Spokane Valley, WA Metro Area
872                Austin-Round Rock-Georgetown, TX Metro Area
873                      Spokane-Spokane Valley, WA Metro Area
874              Los Angeles-Long Beach-Anaheim, CA Metro Area
875             Portland-Vancouver-Hillsboro, OR-WA Metro Area
876              San Diego-Chula Vista-Carlsbad, CA Metro Area
877                      Denver-Aurora-Lakewood, CO Metro Area
878                 Dallas-Fort Worth-Arlington, TX Metro Area
879              San Diego-Chula Vista-Carlsbad, CA Metro Area
880              Los Angeles-Long Beach-Anaheim, CA Metro Area
881                      Denver-Aurora-Lakewood, CO Metro Area
882                      Denver-Aurora-Lakewood, CO Metro Area
883              San Francisco-Oakland-Berkeley, CA Metro Area
884              San Francisco-Oakland-Berkeley, CA Metro Area
885              San Francisco-Oakland-Berkeley, CA Metro Area
886                                  Boise City, ID Metro Area
887             Portland-Vancouver-Hillsboro, OR-WA Metro Area
888              San Diego-Chula Vista-Carlsbad, CA Metro Area
889                     Seattle-Tacoma-Bellevue, WA Metro Area
890                     Seattle-Tacoma-Bellevue, WA Metro Area
891              San Francisco-Oakland-Berkeley, CA Metro Area
892              San Francisco-Oakland-Berkeley, CA Metro Area
893              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
894              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
895                       Phoenix-Mesa-Chandler, AZ Metro Area
896              Los Angeles-Long Beach-Anaheim, CA Metro Area
897             Portland-Vancouver-Hillsboro, OR-WA Metro Area
898              San Diego-Chula Vista-Carlsbad, CA Metro Area
899              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
900                     Detroit-Warren-Dearborn, MI Metro Area
901              Los Angeles-Long Beach-Anaheim, CA Metro Area
902                     Seattle-Tacoma-Bellevue, WA Metro Area
903            Houston-The Woodlands-Sugar Land, TX Metro Area
904              San Francisco-Oakland-Berkeley, CA Metro Area
905             Portland-Vancouver-Hillsboro, OR-WA Metro Area
906                     Seattle-Tacoma-Bellevue, WA Metro Area
907                     Seattle-Tacoma-Bellevue, WA Metro Area
908                     Seattle-Tacoma-Bellevue, WA Metro Area
909                                     Pullman, WA Micro Area
910                 Sacramento-Roseville-Folsom, CA Metro Area
911                     Seattle-Tacoma-Bellevue, WA Metro Area
912                     Seattle-Tacoma-Bellevue, WA Metro Area
913                     Seattle-Tacoma-Bellevue, WA Metro Area
914                     Seattle-Tacoma-Bellevue, WA Metro Area
915                     Seattle-Tacoma-Bellevue, WA Metro Area
916                     Seattle-Tacoma-Bellevue, WA Metro Area
917                     Seattle-Tacoma-Bellevue, WA Metro Area
918                     Seattle-Tacoma-Bellevue, WA Metro Area
919             Portland-Vancouver-Hillsboro, OR-WA Metro Area
920             Portland-Vancouver-Hillsboro, OR-WA Metro Area
921                     Seattle-Tacoma-Bellevue, WA Metro Area
922              San Francisco-Oakland-Berkeley, CA Metro Area
923                     Seattle-Tacoma-Bellevue, WA Metro Area
924                     Seattle-Tacoma-Bellevue, WA Metro Area
925                     Seattle-Tacoma-Bellevue, WA Metro Area
926              San Francisco-Oakland-Berkeley, CA Metro Area
927              Los Angeles-Long Beach-Anaheim, CA Metro Area
928             Portland-Vancouver-Hillsboro, OR-WA Metro Area
929                     Seattle-Tacoma-Bellevue, WA Metro Area
930                                  Boise City, ID Metro Area
931                      Spokane-Spokane Valley, WA Metro Area
932                Las Vegas-Henderson-Paradise, NV Metro Area
933              Los Angeles-Long Beach-Anaheim, CA Metro Area
934                      Spokane-Spokane Valley, WA Metro Area
935              San Jose-Sunnyvale-Santa Clara, CA Metro Area
936              San Francisco-Oakland-Berkeley, CA Metro Area
937                     Seattle-Tacoma-Bellevue, WA Metro Area
938                     Seattle-Tacoma-Bellevue, WA Metro Area
939              Los Angeles-Long Beach-Anaheim, CA Metro Area
940                     Seattle-Tacoma-Bellevue, WA Metro Area
941                     Seattle-Tacoma-Bellevue, WA Metro Area
942                                     Bozeman, MT Micro Area
943                          Eugene-Springfield, OR Metro Area
944                                   Kalispell, MT Micro Area
945                                 Great Falls, MT Metro Area
946                                 Idaho Falls, ID Metro Area
947                                     Medford, OR Metro Area
948                                     Salinas, CA Metro Area
949                                    Missoula, MT Metro Area
950              San Francisco-Oakland-Berkeley, CA Metro Area
951             Portland-Vancouver-Hillsboro, OR-WA Metro Area
952                                     Pullman, WA Micro Area
953                                     Redding, CA Metro Area
954                                        Bend, OR Metro Area
955                                        Reno, NV Metro Area
956                 Sacramento-Roseville-Folsom, CA Metro Area
957                Las Vegas-Henderson-Paradise, NV Metro Area
958                                  Boise City, ID Metro Area
959                         Santa Rosa-Petaluma, CA Metro Area
960                     Seattle-Tacoma-Bellevue, WA Metro Area
961                     Seattle-Tacoma-Bellevue, WA Metro Area
962            Houston-The Woodlands-Sugar Land, TX Metro Area
963              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
964              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
965                      Denver-Aurora-Lakewood, CO Metro Area
966                      Denver-Aurora-Lakewood, CO Metro Area
967    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
968              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
969              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
970                  Boston-Cambridge-Newton, MA-NH Metro Area
971                      Denver-Aurora-Lakewood, CO Metro Area
972                      Denver-Aurora-Lakewood, CO Metro Area
973           New York-Newark-Jersey City, NY-NJ-PA Metro Area
974            Houston-The Woodlands-Sugar Land, TX Metro Area
975            Houston-The Woodlands-Sugar Land, TX Metro Area
976            Houston-The Woodlands-Sugar Land, TX Metro Area
977            Houston-The Woodlands-Sugar Land, TX Metro Area
978                      Denver-Aurora-Lakewood, CO Metro Area
979    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
980    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
981    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
982    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
983    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
984    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
985                       College Station-Bryan, TX Metro Area
986                      Denver-Aurora-Lakewood, CO Metro Area
987                      Denver-Aurora-Lakewood, CO Metro Area
988              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
989                      Denver-Aurora-Lakewood, CO Metro Area
990                      Denver-Aurora-Lakewood, CO Metro Area
991           New York-Newark-Jersey City, NY-NJ-PA Metro Area
992           New York-Newark-Jersey City, NY-NJ-PA Metro Area
993           New York-Newark-Jersey City, NY-NJ-PA Metro Area
994           New York-Newark-Jersey City, NY-NJ-PA Metro Area
995           New York-Newark-Jersey City, NY-NJ-PA Metro Area
996    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
997            Houston-The Woodlands-Sugar Land, TX Metro Area
998              Los Angeles-Long Beach-Anaheim, CA Metro Area
999              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1000             San Francisco-Oakland-Berkeley, CA Metro Area
1001          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1003                     Denver-Aurora-Lakewood, CO Metro Area
1004             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1005             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1006             San Francisco-Oakland-Berkeley, CA Metro Area
1007                     Denver-Aurora-Lakewood, CO Metro Area
1008                     Denver-Aurora-Lakewood, CO Metro Area
1009             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1010             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1011                     Denver-Aurora-Lakewood, CO Metro Area
1012          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1015                     Denver-Aurora-Lakewood, CO Metro Area
1016             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1017             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1018                 Boston-Cambridge-Newton, MA-NH Metro Area
1019          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1021           Houston-The Woodlands-Sugar Land, TX Metro Area
1022           Houston-The Woodlands-Sugar Land, TX Metro Area
1023             Los Angeles-Long Beach-Anaheim, CA Metro Area
1024             Los Angeles-Long Beach-Anaheim, CA Metro Area
1025                             Kansas City, MO-KS Metro Area
1026             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1027             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1028             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1029            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1030                      Phoenix-Mesa-Chandler, AZ Metro Area
1031                  San Antonio-New Braunfels, TX Metro Area
1032                Sacramento-Roseville-Folsom, CA Metro Area
1033          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1034             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1035             San Francisco-Oakland-Berkeley, CA Metro Area
1036                           Cleveland-Elyria, OH Metro Area
1037                           Cleveland-Elyria, OH Metro Area
1038                           Cleveland-Elyria, OH Metro Area
1039                     Denver-Aurora-Lakewood, CO Metro Area
1040                     Denver-Aurora-Lakewood, CO Metro Area
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1042           Houston-The Woodlands-Sugar Land, TX Metro Area
1043           Houston-The Woodlands-Sugar Land, TX Metro Area
1044                               Jacksonville, FL Metro Area
1045                  Orlando-Kissimmee-Sanford, FL Metro Area
1046        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1047             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1048             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1049        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1050                      Phoenix-Mesa-Chandler, AZ Metro Area
1051                               Raleigh-Cary, NC Metro Area
1052                      Cape Coral-Fort Myers, FL Metro Area
1053             San Diego-Chula Vista-Carlsbad, CA Metro Area
1054                                   Savannah, GA Metro Area
1055             San Francisco-Oakland-Berkeley, CA Metro Area
1056                    San Juan-Bayamón-Caguas, PR Metro Area
1057                             Salt Lake City, UT Metro Area
1058              North Port-Sarasota-Bradenton, FL Metro Area
1059            Tampa-St. Petersburg-Clearwater, FL Metro Area
1060                     Denver-Aurora-Lakewood, CO Metro Area
1061                     Denver-Aurora-Lakewood, CO Metro Area
1062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1064           Houston-The Woodlands-Sugar Land, TX Metro Area
1065             San Francisco-Oakland-Berkeley, CA Metro Area
1066                     Denver-Aurora-Lakewood, CO Metro Area
1067                     Denver-Aurora-Lakewood, CO Metro Area
1068             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1069          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1070          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1072           Houston-The Woodlands-Sugar Land, TX Metro Area
1073           Houston-The Woodlands-Sugar Land, TX Metro Area
1074           Houston-The Woodlands-Sugar Land, TX Metro Area
1075             San Francisco-Oakland-Berkeley, CA Metro Area
1076             San Francisco-Oakland-Berkeley, CA Metro Area
1077             San Francisco-Oakland-Berkeley, CA Metro Area
1078 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1079                 Boston-Cambridge-Newton, MA-NH Metro Area
1080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1081                               Jacksonville, FL Metro Area
1082             Los Angeles-Long Beach-Anaheim, CA Metro Area
1083                  Orlando-Kissimmee-Sanford, FL Metro Area
1084        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1085                               Raleigh-Cary, NC Metro Area
1086             San Francisco-Oakland-Berkeley, CA Metro Area
1087            Tampa-St. Petersburg-Clearwater, FL Metro Area
1088                     Denver-Aurora-Lakewood, CO Metro Area
1089                               Jacksonville, FL Metro Area
1090             Los Angeles-Long Beach-Anaheim, CA Metro Area
1091          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1092                       New Orleans-Metairie, LA Metro Area
1093             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1094                      Phoenix-Mesa-Chandler, AZ Metro Area
1095                      Cape Coral-Fort Myers, FL Metro Area
1096            Tampa-St. Petersburg-Clearwater, FL Metro Area
1097                     Denver-Aurora-Lakewood, CO Metro Area
1098                     Denver-Aurora-Lakewood, CO Metro Area
1099                     Denver-Aurora-Lakewood, CO Metro Area
1100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1103           Houston-The Woodlands-Sugar Land, TX Metro Area
1104             San Francisco-Oakland-Berkeley, CA Metro Area
1105                     Denver-Aurora-Lakewood, CO Metro Area
1106                     Denver-Aurora-Lakewood, CO Metro Area
1107          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1108          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1111           Houston-The Woodlands-Sugar Land, TX Metro Area
1112           Houston-The Woodlands-Sugar Land, TX Metro Area
1113           Houston-The Woodlands-Sugar Land, TX Metro Area
1114           Houston-The Woodlands-Sugar Land, TX Metro Area
1115           Houston-The Woodlands-Sugar Land, TX Metro Area
1116           Houston-The Woodlands-Sugar Land, TX Metro Area
1117             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1118             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1119                     Denver-Aurora-Lakewood, CO Metro Area
1120          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1121           Houston-The Woodlands-Sugar Land, TX Metro Area
1122           Houston-The Woodlands-Sugar Land, TX Metro Area
1123           Houston-The Woodlands-Sugar Land, TX Metro Area
1124               Las Vegas-Henderson-Paradise, NV Metro Area
1125                  Orlando-Kissimmee-Sanford, FL Metro Area
1126             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1127                     Denver-Aurora-Lakewood, CO Metro Area
1128                     Denver-Aurora-Lakewood, CO Metro Area
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1130             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1131                     Denver-Aurora-Lakewood, CO Metro Area
1132             Los Angeles-Long Beach-Anaheim, CA Metro Area
1133                     Denver-Aurora-Lakewood, CO Metro Area
1134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1136           Houston-The Woodlands-Sugar Land, TX Metro Area
1137           Houston-The Woodlands-Sugar Land, TX Metro Area
1138             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1139           Houston-The Woodlands-Sugar Land, TX Metro Area
1140           Houston-The Woodlands-Sugar Land, TX Metro Area
1141                     Denver-Aurora-Lakewood, CO Metro Area
1142                     Denver-Aurora-Lakewood, CO Metro Area
1143                     Denver-Aurora-Lakewood, CO Metro Area
1144                     Denver-Aurora-Lakewood, CO Metro Area
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1146           Houston-The Woodlands-Sugar Land, TX Metro Area
1147                     Denver-Aurora-Lakewood, CO Metro Area
1148                     Denver-Aurora-Lakewood, CO Metro Area
1149                     Denver-Aurora-Lakewood, CO Metro Area
1150                     Denver-Aurora-Lakewood, CO Metro Area
1151                  Baltimore-Columbia-Towson, MD Metro Area
1152                           Cleveland-Elyria, OH Metro Area
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1154                     Denver-Aurora-Lakewood, CO Metro Area
1155          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1156        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1157                      Grand Rapids-Kentwood, MI Metro Area
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1159           Houston-The Woodlands-Sugar Land, TX Metro Area
1160                                 Pittsburgh, PA Metro Area
1161                                   Richmond, VA Metro Area
1162                                  Rochester, NY Metro Area
1163             San Diego-Chula Vista-Carlsbad, CA Metro Area
1164                     Denver-Aurora-Lakewood, CO Metro Area
1165             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1166          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1167                     Denver-Aurora-Lakewood, CO Metro Area
1168          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1169             San Francisco-Oakland-Berkeley, CA Metro Area
1170             San Francisco-Oakland-Berkeley, CA Metro Area
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1172             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1173             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1174                     Denver-Aurora-Lakewood, CO Metro Area
1175                     Denver-Aurora-Lakewood, CO Metro Area
1176             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1177             San Francisco-Oakland-Berkeley, CA Metro Area
1178          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1179           Houston-The Woodlands-Sugar Land, TX Metro Area
1180           Houston-The Woodlands-Sugar Land, TX Metro Area
1181                     Denver-Aurora-Lakewood, CO Metro Area
1182                     Denver-Aurora-Lakewood, CO Metro Area
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1184             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1185             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1186             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1187               Austin-Round Rock-Georgetown, TX Metro Area
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1189          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1190        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1193           Houston-The Woodlands-Sugar Land, TX Metro Area
1194                    Kahului-Wailuku-Lahaina, HI Metro Area
1195             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1196             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1197             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1198          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1199           Houston-The Woodlands-Sugar Land, TX Metro Area
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1201                           Cleveland-Elyria, OH Metro Area
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1203           Houston-The Woodlands-Sugar Land, TX Metro Area
1204           Houston-The Woodlands-Sugar Land, TX Metro Area
1205                Dallas-Fort Worth-Arlington, TX Metro Area
1206                Dallas-Fort Worth-Arlington, TX Metro Area
1207               Las Vegas-Henderson-Paradise, NV Metro Area
1208               Austin-Round Rock-Georgetown, TX Metro Area
1209               Las Vegas-Henderson-Paradise, NV Metro Area
1210                      Phoenix-Mesa-Chandler, AZ Metro Area
1211                  Baltimore-Columbia-Towson, MD Metro Area
1212                  Baltimore-Columbia-Towson, MD Metro Area
1213                  Baltimore-Columbia-Towson, MD Metro Area
1214                  Baltimore-Columbia-Towson, MD Metro Area
1215                  Orlando-Kissimmee-Sanford, FL Metro Area
1216             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1217             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1218                  Baltimore-Columbia-Towson, MD Metro Area
1219                  Orlando-Kissimmee-Sanford, FL Metro Area
1220               Las Vegas-Henderson-Paradise, NV Metro Area
1221                Dallas-Fort Worth-Arlington, TX Metro Area
1222                  Baltimore-Columbia-Towson, MD Metro Area
1223                Dallas-Fort Worth-Arlington, TX Metro Area
1224                Dallas-Fort Worth-Arlington, TX Metro Area
1225                Dallas-Fort Worth-Arlington, TX Metro Area
1226                Dallas-Fort Worth-Arlington, TX Metro Area
1227                Dallas-Fort Worth-Arlington, TX Metro Area
1228           Houston-The Woodlands-Sugar Land, TX Metro Area
1229          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1230                  Orlando-Kissimmee-Sanford, FL Metro Area
1231             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1232                         Milwaukee-Waukesha, WI Metro Area
1233                      Phoenix-Mesa-Chandler, AZ Metro Area
1234                      Phoenix-Mesa-Chandler, AZ Metro Area
1235                      Phoenix-Mesa-Chandler, AZ Metro Area
1236                               St. Louis, MO-IL Metro Area
1237               Austin-Round Rock-Georgetown, TX Metro Area
1238 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1239                           Cleveland-Elyria, OH Metro Area
1240                                Panama City, FL Metro Area
1241        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1242           Houston-The Woodlands-Sugar Land, TX Metro Area
1243               Indianapolis-Carmel-Anderson, IN Metro Area
1244                                    Jackson, MS Metro Area
1245               Las Vegas-Henderson-Paradise, NV Metro Area
1246       Little Rock-North Little Rock-Conway, AR Metro Area
1247                             Kansas City, MO-KS Metro Area
1248                              Memphis, TN-MS-AR Metro Area
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1251                      Phoenix-Mesa-Chandler, AZ Metro Area
1252                                 Pittsburgh, PA Metro Area
1253                                   Richmond, VA Metro Area
1254                      Cape Coral-Fort Myers, FL Metro Area
1255            Tampa-St. Petersburg-Clearwater, FL Metro Area
1256 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1257                Dallas-Fort Worth-Arlington, TX Metro Area
1258                Dallas-Fort Worth-Arlington, TX Metro Area
1259                Dallas-Fort Worth-Arlington, TX Metro Area
1260                                    El Paso, TX Metro Area
1261           Houston-The Woodlands-Sugar Land, TX Metro Area
1262           Houston-The Woodlands-Sugar Land, TX Metro Area
1263             Los Angeles-Long Beach-Anaheim, CA Metro Area
1264             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1265                      Phoenix-Mesa-Chandler, AZ Metro Area
1266                      Phoenix-Mesa-Chandler, AZ Metro Area
1267                      Phoenix-Mesa-Chandler, AZ Metro Area
1268             San Diego-Chula Vista-Carlsbad, CA Metro Area
1269             Los Angeles-Long Beach-Anaheim, CA Metro Area
1270                  Baltimore-Columbia-Towson, MD Metro Area
1271                Dallas-Fort Worth-Arlington, TX Metro Area
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1273           Houston-The Woodlands-Sugar Land, TX Metro Area
1274                      Brownsville-Harlingen, TX Metro Area
1275             Los Angeles-Long Beach-Anaheim, CA Metro Area
1276             Los Angeles-Long Beach-Anaheim, CA Metro Area
1277                             Kansas City, MO-KS Metro Area
1278             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1279        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1280                       New Orleans-Metairie, LA Metro Area
1281             San Francisco-Oakland-Berkeley, CA Metro Area
1282                               Raleigh-Cary, NC Metro Area
1283             Los Angeles-Long Beach-Anaheim, CA Metro Area
1284                               St. Louis, MO-IL Metro Area
1285            Tampa-St. Petersburg-Clearwater, FL Metro Area
1286             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1287             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1288                  Baltimore-Columbia-Towson, MD Metro Area
1289                  Orlando-Kissimmee-Sanford, FL Metro Area
1290                  Baltimore-Columbia-Towson, MD Metro Area
1291                Dallas-Fort Worth-Arlington, TX Metro Area
1292           Houston-The Woodlands-Sugar Land, TX Metro Area
1293                  Orlando-Kissimmee-Sanford, FL Metro Area
1294             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1295            Tampa-St. Petersburg-Clearwater, FL Metro Area
1296               Las Vegas-Henderson-Paradise, NV Metro Area
1297               Austin-Round Rock-Georgetown, TX Metro Area
1298          Hartford-East Hartford-Middletown, CT Metro Area
1299                Dallas-Fort Worth-Arlington, TX Metro Area
1300                     Denver-Aurora-Lakewood, CO Metro Area
1301           Houston-The Woodlands-Sugar Land, TX Metro Area
1302          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1303                             Kansas City, MO-KS Metro Area
1304                  Orlando-Kissimmee-Sanford, FL Metro Area
1305     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1306                      Phoenix-Mesa-Chandler, AZ Metro Area
1307                      Cape Coral-Fort Myers, FL Metro Area
1308             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1309              North Port-Sarasota-Bradenton, FL Metro Area
1310            Tampa-St. Petersburg-Clearwater, FL Metro Area
1311                 Boston-Cambridge-Newton, MA-NH Metro Area
1312                  Baltimore-Columbia-Towson, MD Metro Area
1313                Charleston-North Charleston, SC Metro Area
1314                           Cleveland-Elyria, OH Metro Area
1315              Charlotte-Concord-Gastonia, NC-SC Metro Area
1316                                   Columbus, OH Metro Area
1317                    Detroit-Warren-Dearborn, MI Metro Area
1318                                Panama City, FL Metro Area
1319                               Jacksonville, FL Metro Area
1320             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1321        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1322                         Milwaukee-Waukesha, WI Metro Area
1323                       New Orleans-Metairie, LA Metro Area
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1325             San Francisco-Oakland-Berkeley, CA Metro Area
1326             San Francisco-Oakland-Berkeley, CA Metro Area
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1328                                 Pittsburgh, PA Metro Area
1329                 Pensacola-Ferry Pass-Brent, FL Metro Area
1330                               Raleigh-Cary, NC Metro Area
1331                                   Savannah, GA Metro Area
1332         Crestview-Fort Walton Beach-Destin, FL Metro Area
1333                     Denver-Aurora-Lakewood, CO Metro Area
1334                     Denver-Aurora-Lakewood, CO Metro Area
1335               Las Vegas-Henderson-Paradise, NV Metro Area
1336             San Francisco-Oakland-Berkeley, CA Metro Area
1337                      Phoenix-Mesa-Chandler, AZ Metro Area
1338             San Diego-Chula Vista-Carlsbad, CA Metro Area
1339               Las Vegas-Henderson-Paradise, NV Metro Area
1340 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1341 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1342                  Baltimore-Columbia-Towson, MD Metro Area
1343                  Baltimore-Columbia-Towson, MD Metro Area
1344                  Baltimore-Columbia-Towson, MD Metro Area
1345                  Baltimore-Columbia-Towson, MD Metro Area
1346                  Baltimore-Columbia-Towson, MD Metro Area
1347                  Baltimore-Columbia-Towson, MD Metro Area
1348             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1349             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1350             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1351             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1352             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1353             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1354                  Baltimore-Columbia-Towson, MD Metro Area
1355        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1356                  Orlando-Kissimmee-Sanford, FL Metro Area
1357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1358                Dallas-Fort Worth-Arlington, TX Metro Area
1359                Dallas-Fort Worth-Arlington, TX Metro Area
1360                Dallas-Fort Worth-Arlington, TX Metro Area
1361                Dallas-Fort Worth-Arlington, TX Metro Area
1362               Las Vegas-Henderson-Paradise, NV Metro Area
1363                Sacramento-Roseville-Folsom, CA Metro Area
1364               Austin-Round Rock-Georgetown, TX Metro Area
1365                     Denver-Aurora-Lakewood, CO Metro Area
1366           Houston-The Woodlands-Sugar Land, TX Metro Area
1367             San Francisco-Oakland-Berkeley, CA Metro Area
1368             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1369                          Birmingham-Hoover, AL Metro Area
1370 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1371 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1372                           Cincinnati, OH-KY-IN Metro Area
1373                      Grand Rapids-Kentwood, MI Metro Area
1374               Indianapolis-Carmel-Anderson, IN Metro Area
1375             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1376                                   Savannah, GA Metro Area
1377         Crestview-Fort Walton Beach-Destin, FL Metro Area
1378          Hartford-East Hartford-Middletown, CT Metro Area
1379                        Buffalo-Cheektowaga, NY Metro Area
1380                Charleston-North Charleston, SC Metro Area
1381                           Cleveland-Elyria, OH Metro Area
1382        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1383                                Spartanburg, SC Metro Area
1384           Houston-The Woodlands-Sugar Land, TX Metro Area
1385          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1386               Las Vegas-Henderson-Paradise, NV Metro Area
1387          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1388             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1389        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1391     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1392                      Phoenix-Mesa-Chandler, AZ Metro Area
1393                                 Pittsburgh, PA Metro Area
1394                      Providence-Warwick, RI-MA Metro Area
1395                    Portland-South Portland, ME Metro Area
1396                               Raleigh-Cary, NC Metro Area
1397                                  Rochester, NY Metro Area
1398                      Cape Coral-Fort Myers, FL Metro Area
1399             Louisville/Jefferson County, KY-IN Metro Area
1400                     Denver-Aurora-Lakewood, CO Metro Area
1401               Las Vegas-Henderson-Paradise, NV Metro Area
1402 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1403 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1404 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1405                Dallas-Fort Worth-Arlington, TX Metro Area
1406             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1407                               St. Louis, MO-IL Metro Area
1408 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1409 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1410                  Baltimore-Columbia-Towson, MD Metro Area
1411               Las Vegas-Henderson-Paradise, NV Metro Area
1412             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1413                               St. Louis, MO-IL Metro Area
1414 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1415             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1416             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1417              North Port-Sarasota-Bradenton, FL Metro Area
1418                               St. Louis, MO-IL Metro Area
1419 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1420                  Baltimore-Columbia-Towson, MD Metro Area
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1422               Las Vegas-Henderson-Paradise, NV Metro Area
1423                      Phoenix-Mesa-Chandler, AZ Metro Area
1424                               St. Louis, MO-IL Metro Area
1425            Tampa-St. Petersburg-Clearwater, FL Metro Area
1426               Las Vegas-Henderson-Paradise, NV Metro Area
1427               Las Vegas-Henderson-Paradise, NV Metro Area
1428                      Phoenix-Mesa-Chandler, AZ Metro Area
1429           Houston-The Woodlands-Sugar Land, TX Metro Area
1430           Houston-The Woodlands-Sugar Land, TX Metro Area
1431                     Denver-Aurora-Lakewood, CO Metro Area
1432             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1433                  Baltimore-Columbia-Towson, MD Metro Area
1434                  Orlando-Kissimmee-Sanford, FL Metro Area
1435             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1436             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1437            Tampa-St. Petersburg-Clearwater, FL Metro Area
1438                                Albuquerque, NM Metro Area
1439               Austin-Round Rock-Georgetown, TX Metro Area
1440                          Birmingham-Hoover, AL Metro Area
1441                     Denver-Aurora-Lakewood, CO Metro Area
1442                     Denver-Aurora-Lakewood, CO Metro Area
1443                                    El Paso, TX Metro Area
1444           Houston-The Woodlands-Sugar Land, TX Metro Area
1445          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1446             Los Angeles-Long Beach-Anaheim, CA Metro Area
1447                  Orlando-Kissimmee-Sanford, FL Metro Area
1448             San Francisco-Oakland-Berkeley, CA Metro Area
1449                    Omaha-Council Bluffs, NE-IA Metro Area
1450             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1451                             Salt Lake City, UT Metro Area
1452             Los Angeles-Long Beach-Anaheim, CA Metro Area
1453                               St. Louis, MO-IL Metro Area
1454            Tampa-St. Petersburg-Clearwater, FL Metro Area
1455                                   Amarillo, TX Metro Area
1456               Austin-Round Rock-Georgetown, TX Metro Area
1457                                   Columbus, OH Metro Area
1458                           Colorado Springs, CO Metro Area
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1460                                Panama City, FL Metro Area
1461        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1462           Houston-The Woodlands-Sugar Land, TX Metro Area
1463                                    Lubbock, TX Metro Area
1464       Little Rock-North Little Rock-Conway, AR Metro Area
1465                                    Midland, TX Metro Area
1466                             Kansas City, MO-KS Metro Area
1467             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1468        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1469                       New Orleans-Metairie, LA Metro Area
1470             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1471                      Phoenix-Mesa-Chandler, AZ Metro Area
1472                 Pensacola-Ferry Pass-Brent, FL Metro Area
1473                  San Antonio-New Braunfels, TX Metro Area
1474                                      Tulsa, OK Metro Area
1475         Crestview-Fort Walton Beach-Destin, FL Metro Area
1476 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1477 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1478 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1479        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1480             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1481                               St. Louis, MO-IL Metro Area
1482                               St. Louis, MO-IL Metro Area
1483                                   Columbus, OH Metro Area
1484                Dallas-Fort Worth-Arlington, TX Metro Area
1485                  Orlando-Kissimmee-Sanford, FL Metro Area
1486                         Milwaukee-Waukesha, WI Metro Area
1487                    Omaha-Council Bluffs, NE-IA Metro Area
1488                      Cape Coral-Fort Myers, FL Metro Area
1489                               St. Louis, MO-IL Metro Area
1490            Tampa-St. Petersburg-Clearwater, FL Metro Area
1491                          Birmingham-Hoover, AL Metro Area
1492 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1493             Los Angeles-Long Beach-Anaheim, CA Metro Area
1494                  Baltimore-Columbia-Towson, MD Metro Area
1495                           Cincinnati, OH-KY-IN Metro Area
1496                Dallas-Fort Worth-Arlington, TX Metro Area
1497                Dallas-Fort Worth-Arlington, TX Metro Area
1498                                    El Paso, TX Metro Area
1499                     Spokane-Spokane Valley, WA Metro Area
1500           Houston-The Woodlands-Sugar Land, TX Metro Area
1501               Indianapolis-Carmel-Anderson, IN Metro Area
1502               Las Vegas-Henderson-Paradise, NV Metro Area
1503          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1504             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1505             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1506                         Milwaukee-Waukesha, WI Metro Area
1507                  Santa Maria-Santa Barbara, CA Metro Area
1508             Los Angeles-Long Beach-Anaheim, CA Metro Area
1509                               St. Louis, MO-IL Metro Area
1510                                      Tulsa, OK Metro Area
1511                                     Tucson, AZ Metro Area
1512                                Albuquerque, NM Metro Area
1513                        Buffalo-Cheektowaga, NY Metro Area
1514                Charleston-North Charleston, SC Metro Area
1515                          Steamboat Springs, CO Micro Area
1516           Houston-The Woodlands-Sugar Land, TX Metro Area
1517                                    Wichita, KS Metro Area
1518               Las Vegas-Henderson-Paradise, NV Metro Area
1519             Los Angeles-Long Beach-Anaheim, CA Metro Area
1520       Little Rock-North Little Rock-Conway, AR Metro Area
1521        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1522                       New Orleans-Metairie, LA Metro Area
1523             San Francisco-Oakland-Berkeley, CA Metro Area
1524                              Oklahoma City, OK Metro Area
1525                                       Reno, NV Metro Area
1526             San Diego-Chula Vista-Carlsbad, CA Metro Area
1527            Tampa-St. Petersburg-Clearwater, FL Metro Area
1528                               St. Louis, MO-IL Metro Area
1529 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1530             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1531             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1532 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1533                  Baltimore-Columbia-Towson, MD Metro Area
1534                               St. Louis, MO-IL Metro Area
1535           Houston-The Woodlands-Sugar Land, TX Metro Area
1536                               St. Louis, MO-IL Metro Area
1537               Austin-Round Rock-Georgetown, TX Metro Area
1538                     Denver-Aurora-Lakewood, CO Metro Area
1539           Houston-The Woodlands-Sugar Land, TX Metro Area
1540               Las Vegas-Henderson-Paradise, NV Metro Area
1541             Los Angeles-Long Beach-Anaheim, CA Metro Area
1542                      Phoenix-Mesa-Chandler, AZ Metro Area
1543               Austin-Round Rock-Georgetown, TX Metro Area
1544           Houston-The Woodlands-Sugar Land, TX Metro Area
1545           Houston-The Woodlands-Sugar Land, TX Metro Area
1546                      Phoenix-Mesa-Chandler, AZ Metro Area
1547                  San Antonio-New Braunfels, TX Metro Area
1548             San Francisco-Oakland-Berkeley, CA Metro Area
1549               Las Vegas-Henderson-Paradise, NV Metro Area
1550             San Francisco-Oakland-Berkeley, CA Metro Area
1551               Las Vegas-Henderson-Paradise, NV Metro Area
1552                  Baltimore-Columbia-Towson, MD Metro Area
1553           Houston-The Woodlands-Sugar Land, TX Metro Area
1554           Houston-The Woodlands-Sugar Land, TX Metro Area
1555           Houston-The Woodlands-Sugar Land, TX Metro Area
1556                  Orlando-Kissimmee-Sanford, FL Metro Area
1557                       New Orleans-Metairie, LA Metro Area
1558                               Raleigh-Cary, NC Metro Area
1559                  Baltimore-Columbia-Towson, MD Metro Area
1560                Dallas-Fort Worth-Arlington, TX Metro Area
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1563                      Phoenix-Mesa-Chandler, AZ Metro Area
1564                      Phoenix-Mesa-Chandler, AZ Metro Area
1565                                 Pittsburgh, PA Metro Area
1566                  San Antonio-New Braunfels, TX Metro Area
1567            Tampa-St. Petersburg-Clearwater, FL Metro Area
1568                     Denver-Aurora-Lakewood, CO Metro Area
1569                     Denver-Aurora-Lakewood, CO Metro Area
1570               Las Vegas-Henderson-Paradise, NV Metro Area
1571             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1572                      Phoenix-Mesa-Chandler, AZ Metro Area
1573                Sacramento-Roseville-Folsom, CA Metro Area
1574               Las Vegas-Henderson-Paradise, NV Metro Area
1575             San Francisco-Oakland-Berkeley, CA Metro Area
1576                  Baltimore-Columbia-Towson, MD Metro Area
1577           Houston-The Woodlands-Sugar Land, TX Metro Area
1578                                      Kapaa, HI Micro Area
1579             San Francisco-Oakland-Berkeley, CA Metro Area
1580             San Francisco-Oakland-Berkeley, CA Metro Area
1581                      Phoenix-Mesa-Chandler, AZ Metro Area
1582           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1583 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1584                  Baltimore-Columbia-Towson, MD Metro Area
1585                Dallas-Fort Worth-Arlington, TX Metro Area
1586                     Denver-Aurora-Lakewood, CO Metro Area
1587                                    El Paso, TX Metro Area
1588                                Spartanburg, SC Metro Area
1589        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1590        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1591                       New Orleans-Metairie, LA Metro Area
1592                      Phoenix-Mesa-Chandler, AZ Metro Area
1593                               St. Louis, MO-IL Metro Area
1594                               St. Louis, MO-IL Metro Area
1595               Austin-Round Rock-Georgetown, TX Metro Area
1596             Los Angeles-Long Beach-Anaheim, CA Metro Area
1597                                Panama City, FL Metro Area
1598        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1599                      Brownsville-Harlingen, TX Metro Area
1600               Las Vegas-Henderson-Paradise, NV Metro Area
1601             Los Angeles-Long Beach-Anaheim, CA Metro Area
1602                                    Lubbock, TX Metro Area
1603          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1604             Los Angeles-Long Beach-Anaheim, CA Metro Area
1605                                    Midland, TX Metro Area
1606                  Orlando-Kissimmee-Sanford, FL Metro Area
1607                              Memphis, TN-MS-AR Metro Area
1608             San Francisco-Oakland-Berkeley, CA Metro Area
1609                              Oklahoma City, OK Metro Area
1610           Riverside-San Bernardino-Ontario, CA Metro Area
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1612                 Pensacola-Ferry Pass-Brent, FL Metro Area
1613                      Cape Coral-Fort Myers, FL Metro Area
1614                  San Antonio-New Braunfels, TX Metro Area
1615                  San Antonio-New Braunfels, TX Metro Area
1616                                   Savannah, GA Metro Area
1617             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1618            Tampa-St. Petersburg-Clearwater, FL Metro Area
1619                                      Tulsa, OK Metro Area
1620           Houston-The Woodlands-Sugar Land, TX Metro Area
1621           Houston-The Woodlands-Sugar Land, TX Metro Area
1622             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1623             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1624                Dallas-Fort Worth-Arlington, TX Metro Area
1625                Dallas-Fort Worth-Arlington, TX Metro Area
1626             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1627                Dallas-Fort Worth-Arlington, TX Metro Area
1628                Dallas-Fort Worth-Arlington, TX Metro Area
1629             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1630                     Denver-Aurora-Lakewood, CO Metro Area
1631                               St. Louis, MO-IL Metro Area
1632                  Baltimore-Columbia-Towson, MD Metro Area
1633                Dallas-Fort Worth-Arlington, TX Metro Area
1634           Houston-The Woodlands-Sugar Land, TX Metro Area
1635                  Orlando-Kissimmee-Sanford, FL Metro Area
1636                      Cape Coral-Fort Myers, FL Metro Area
1637              North Port-Sarasota-Bradenton, FL Metro Area
1638 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1639                  Baltimore-Columbia-Towson, MD Metro Area
1640                  Baltimore-Columbia-Towson, MD Metro Area
1641                  Baltimore-Columbia-Towson, MD Metro Area
1642                               St. Louis, MO-IL Metro Area
1643 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1644             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1645                      Phoenix-Mesa-Chandler, AZ Metro Area
1646                      Phoenix-Mesa-Chandler, AZ Metro Area
1647                      Phoenix-Mesa-Chandler, AZ Metro Area
1648                                Albuquerque, NM Metro Area
1649                                   Amarillo, TX Metro Area
1650               Austin-Round Rock-Georgetown, TX Metro Area
1651               Austin-Round Rock-Georgetown, TX Metro Area
1652                Dallas-Fort Worth-Arlington, TX Metro Area
1653                     Spokane-Spokane Valley, WA Metro Area
1654             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1655                         Milwaukee-Waukesha, WI Metro Area
1656             San Francisco-Oakland-Berkeley, CA Metro Area
1657            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1658                  San Antonio-New Braunfels, TX Metro Area
1659                             Salt Lake City, UT Metro Area
1660                Sacramento-Roseville-Folsom, CA Metro Area
1661             Los Angeles-Long Beach-Anaheim, CA Metro Area
1662                               St. Louis, MO-IL Metro Area
1663                                 Boise City, ID Metro Area
1664             Los Angeles-Long Beach-Anaheim, CA Metro Area
1665                  Baltimore-Columbia-Towson, MD Metro Area
1666                                    Bozeman, MT Micro Area
1667                           Colorado Springs, CO Metro Area
1668                         Eugene-Springfield, OR Metro Area
1669             Los Angeles-Long Beach-Anaheim, CA Metro Area
1670                         Milwaukee-Waukesha, WI Metro Area
1671           Riverside-San Bernardino-Ontario, CA Metro Area
1672           Riverside-San Bernardino-Ontario, CA Metro Area
1673                                       Reno, NV Metro Area
1674             San Diego-Chula Vista-Carlsbad, CA Metro Area
1675                  Santa Maria-Santa Barbara, CA Metro Area
1676             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1677                                      Tulsa, OK Metro Area
1678                                     Tucson, AZ Metro Area
1679                                Albuquerque, NM Metro Area
1680                                    El Paso, TX Metro Area
1681                             Urban Honolulu, HI Metro Area
1682             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1683                       New Orleans-Metairie, LA Metro Area
1684                       New Orleans-Metairie, LA Metro Area
1685                      Phoenix-Mesa-Chandler, AZ Metro Area
1686                      Phoenix-Mesa-Chandler, AZ Metro Area
1687               Austin-Round Rock-Georgetown, TX Metro Area
1688               Austin-Round Rock-Georgetown, TX Metro Area
1689           Houston-The Woodlands-Sugar Land, TX Metro Area
1690                                       Reno, NV Metro Area
1691                Sacramento-Roseville-Folsom, CA Metro Area
1692                Sacramento-Roseville-Folsom, CA Metro Area
1693               Austin-Round Rock-Georgetown, TX Metro Area
1694                Dallas-Fort Worth-Arlington, TX Metro Area
1695                  Baltimore-Columbia-Towson, MD Metro Area
1696                  Baltimore-Columbia-Towson, MD Metro Area
1697           Houston-The Woodlands-Sugar Land, TX Metro Area
1698                               St. Louis, MO-IL Metro Area
1699                               St. Louis, MO-IL Metro Area
1700             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1701                       New Orleans-Metairie, LA Metro Area
1702                     Denver-Aurora-Lakewood, CO Metro Area
1703               Las Vegas-Henderson-Paradise, NV Metro Area
1704             San Francisco-Oakland-Berkeley, CA Metro Area
1705                Sacramento-Roseville-Folsom, CA Metro Area
1706                               St. Louis, MO-IL Metro Area
1707                             Urban Honolulu, HI Metro Area
1708           Houston-The Woodlands-Sugar Land, TX Metro Area
1709           Houston-The Woodlands-Sugar Land, TX Metro Area
1710               Las Vegas-Henderson-Paradise, NV Metro Area
1711             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1712                    Kahului-Wailuku-Lahaina, HI Metro Area
1713                                       Reno, NV Metro Area
1714                Sacramento-Roseville-Folsom, CA Metro Area
1715                Dallas-Fort Worth-Arlington, TX Metro Area
1716                Dallas-Fort Worth-Arlington, TX Metro Area
1717           Houston-The Woodlands-Sugar Land, TX Metro Area
1718               Austin-Round Rock-Georgetown, TX Metro Area
1719                Dallas-Fort Worth-Arlington, TX Metro Area
1720             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1721             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1722                  Baltimore-Columbia-Towson, MD Metro Area
1723        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1724          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1725                  Orlando-Kissimmee-Sanford, FL Metro Area
1726                       New Orleans-Metairie, LA Metro Area
1727                      Cape Coral-Fort Myers, FL Metro Area
1728                  Baltimore-Columbia-Towson, MD Metro Area
1729                Dallas-Fort Worth-Arlington, TX Metro Area
1730                Dallas-Fort Worth-Arlington, TX Metro Area
1731                Dallas-Fort Worth-Arlington, TX Metro Area
1732                     Denver-Aurora-Lakewood, CO Metro Area
1733           Houston-The Woodlands-Sugar Land, TX Metro Area
1734                             Kansas City, MO-KS Metro Area
1735                               St. Louis, MO-IL Metro Area
1736                               St. Louis, MO-IL Metro Area
1737                               St. Louis, MO-IL Metro Area
1738                    Albany-Schenectady-Troy, NY Metro Area
1739          Hartford-East Hartford-Middletown, CT Metro Area
1740                          Birmingham-Hoover, AL Metro Area
1741                        Buffalo-Cheektowaga, NY Metro Area
1742                           Cincinnati, OH-KY-IN Metro Area
1743        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1744               Indianapolis-Carmel-Anderson, IN Metro Area
1745                              Memphis, TN-MS-AR Metro Area
1746                       New Orleans-Metairie, LA Metro Area
1747     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1748                      Phoenix-Mesa-Chandler, AZ Metro Area
1749             Louisville/Jefferson County, KY-IN Metro Area
1750                               St. Louis, MO-IL Metro Area
1751               Austin-Round Rock-Georgetown, TX Metro Area
1752                          Birmingham-Hoover, AL Metro Area
1753 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1754                  Baltimore-Columbia-Towson, MD Metro Area
1755                Charleston-North Charleston, SC Metro Area
1756                                   Columbus, OH Metro Area
1757                Dallas-Fort Worth-Arlington, TX Metro Area
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1759                     Denver-Aurora-Lakewood, CO Metro Area
1760        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1761                      Grand Rapids-Kentwood, MI Metro Area
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1763                               Jacksonville, FL Metro Area
1764          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1765                             Kansas City, MO-KS Metro Area
1766                  Orlando-Kissimmee-Sanford, FL Metro Area
1767        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1768                       New Orleans-Metairie, LA Metro Area
1769                    Omaha-Council Bluffs, NE-IA Metro Area
1770     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1771                      Phoenix-Mesa-Chandler, AZ Metro Area
1772                      Providence-Warwick, RI-MA Metro Area
1773                                   Richmond, VA Metro Area
1774             San Diego-Chula Vista-Carlsbad, CA Metro Area
1775             Louisville/Jefferson County, KY-IN Metro Area
1776                    Seattle-Tacoma-Bellevue, WA Metro Area
1777             San Francisco-Oakland-Berkeley, CA Metro Area
1778            Tampa-St. Petersburg-Clearwater, FL Metro Area
1779                 Boston-Cambridge-Newton, MA-NH Metro Area
1780                        Buffalo-Cheektowaga, NY Metro Area
1781                           Cleveland-Elyria, OH Metro Area
1782                           Cleveland-Elyria, OH Metro Area
1783                           Cincinnati, OH-KY-IN Metro Area
1784           Houston-The Woodlands-Sugar Land, TX Metro Area
1785           Houston-The Woodlands-Sugar Land, TX Metro Area
1786             Los Angeles-Long Beach-Anaheim, CA Metro Area
1787                              Memphis, TN-MS-AR Metro Area
1788        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1790             San Francisco-Oakland-Berkeley, CA Metro Area
1791                              Oklahoma City, OK Metro Area
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1793                                 Pittsburgh, PA Metro Area
1794                               Raleigh-Cary, NC Metro Area
1795                      Cape Coral-Fort Myers, FL Metro Area
1796                Sacramento-Roseville-Folsom, CA Metro Area
1797             Los Angeles-Long Beach-Anaheim, CA Metro Area
1798              North Port-Sarasota-Bradenton, FL Metro Area
1799                               St. Louis, MO-IL Metro Area
1800                                     Tucson, AZ Metro Area
1801                  Orlando-Kissimmee-Sanford, FL Metro Area
1802             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1803                Dallas-Fort Worth-Arlington, TX Metro Area
1804                     Denver-Aurora-Lakewood, CO Metro Area
1805           Houston-The Woodlands-Sugar Land, TX Metro Area
1806                  Baltimore-Columbia-Towson, MD Metro Area
1807                               St. Louis, MO-IL Metro Area
1808             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1809                       New Orleans-Metairie, LA Metro Area
1810                               St. Louis, MO-IL Metro Area
1811                  Baltimore-Columbia-Towson, MD Metro Area
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1813                      Phoenix-Mesa-Chandler, AZ Metro Area
1814                      Cape Coral-Fort Myers, FL Metro Area
1815                               St. Louis, MO-IL Metro Area
1816           Houston-The Woodlands-Sugar Land, TX Metro Area
1817                               St. Louis, MO-IL Metro Area
1818           Houston-The Woodlands-Sugar Land, TX Metro Area
1819           Houston-The Woodlands-Sugar Land, TX Metro Area
1820                             Kansas City, MO-KS Metro Area
1821 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1822                  Baltimore-Columbia-Towson, MD Metro Area
1823        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1824             Los Angeles-Long Beach-Anaheim, CA Metro Area
1825          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1826                  Orlando-Kissimmee-Sanford, FL Metro Area
1827                  Orlando-Kissimmee-Sanford, FL Metro Area
1828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1829                  San Antonio-New Braunfels, TX Metro Area
1830            Tampa-St. Petersburg-Clearwater, FL Metro Area
1831                Dallas-Fort Worth-Arlington, TX Metro Area
1832                  Baltimore-Columbia-Towson, MD Metro Area
1833             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1834               Austin-Round Rock-Georgetown, TX Metro Area
1835                                 Bellingham, WA Metro Area
1836             Los Angeles-Long Beach-Anaheim, CA Metro Area
1837                             Urban Honolulu, HI Metro Area
1838                                      Kapaa, HI Micro Area
1839           Riverside-San Bernardino-Ontario, CA Metro Area
1840                      Phoenix-Mesa-Chandler, AZ Metro Area
1841           Riverside-San Bernardino-Ontario, CA Metro Area
1842             San Diego-Chula Vista-Carlsbad, CA Metro Area
1843                                 Boise City, ID Metro Area
1844             Los Angeles-Long Beach-Anaheim, CA Metro Area
1845                         Eugene-Springfield, OR Metro Area
1846                     Spokane-Spokane Valley, WA Metro Area
1847                                       Hilo, HI Micro Area
1848                  Santa Maria-Santa Barbara, CA Metro Area
1849             Los Angeles-Long Beach-Anaheim, CA Metro Area
1850                             Urban Honolulu, HI Metro Area
1851               Austin-Round Rock-Georgetown, TX Metro Area
1852           Houston-The Woodlands-Sugar Land, TX Metro Area
1853             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1854                      Phoenix-Mesa-Chandler, AZ Metro Area
1855                               St. Louis, MO-IL Metro Area
1856               Las Vegas-Henderson-Paradise, NV Metro Area
1857             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1858                               St. Louis, MO-IL Metro Area
1859           Houston-The Woodlands-Sugar Land, TX Metro Area
1860             San Francisco-Oakland-Berkeley, CA Metro Area
1861             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1862 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1863                      Phoenix-Mesa-Chandler, AZ Metro Area
1864 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1865                Dallas-Fort Worth-Arlington, TX Metro Area
1866 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1867             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1868                  Baltimore-Columbia-Towson, MD Metro Area
1869                  Orlando-Kissimmee-Sanford, FL Metro Area
1870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1871                      Phoenix-Mesa-Chandler, AZ Metro Area
1872                      Phoenix-Mesa-Chandler, AZ Metro Area
1873                      Phoenix-Mesa-Chandler, AZ Metro Area
1874             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1875             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1876                     Denver-Aurora-Lakewood, CO Metro Area
1877               Austin-Round Rock-Georgetown, TX Metro Area
1878                     Spokane-Spokane Valley, WA Metro Area
1879           Houston-The Woodlands-Sugar Land, TX Metro Area
1880             San Francisco-Oakland-Berkeley, CA Metro Area
1881                              Oklahoma City, OK Metro Area
1882            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1883                                       Reno, NV Metro Area
1884                  San Antonio-New Braunfels, TX Metro Area
1885             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1886                             Salt Lake City, UT Metro Area
1887                Sacramento-Roseville-Folsom, CA Metro Area
1888                                Albuquerque, NM Metro Area
1889               Austin-Round Rock-Georgetown, TX Metro Area
1890             Los Angeles-Long Beach-Anaheim, CA Metro Area
1891                                   Columbus, OH Metro Area
1892                           Colorado Springs, CO Metro Area
1893                                    El Paso, TX Metro Area
1894        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1895             Los Angeles-Long Beach-Anaheim, CA Metro Area
1896                                      Kapaa, HI Micro Area
1897                         Milwaukee-Waukesha, WI Metro Area
1898                    Omaha-Council Bluffs, NE-IA Metro Area
1899           Riverside-San Bernardino-Ontario, CA Metro Area
1900           Riverside-San Bernardino-Ontario, CA Metro Area
1901             Los Angeles-Long Beach-Anaheim, CA Metro Area
1902            Tampa-St. Petersburg-Clearwater, FL Metro Area
1903                      Phoenix-Mesa-Chandler, AZ Metro Area
1904                      Cape Coral-Fort Myers, FL Metro Area
1905              North Port-Sarasota-Bradenton, FL Metro Area
1906 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1907                  Baltimore-Columbia-Towson, MD Metro Area
1908        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1909 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1910                Dallas-Fort Worth-Arlington, TX Metro Area
1911           Houston-The Woodlands-Sugar Land, TX Metro Area
1912                Sacramento-Roseville-Folsom, CA Metro Area
1913               Las Vegas-Henderson-Paradise, NV Metro Area
1914             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1915                               St. Louis, MO-IL Metro Area
1916                  Baltimore-Columbia-Towson, MD Metro Area
1917                  Baltimore-Columbia-Towson, MD Metro Area
1918                  Orlando-Kissimmee-Sanford, FL Metro Area
1919            Tampa-St. Petersburg-Clearwater, FL Metro Area
1920             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1921             Los Angeles-Long Beach-Anaheim, CA Metro Area
1922             Los Angeles-Long Beach-Anaheim, CA Metro Area
1923             San Diego-Chula Vista-Carlsbad, CA Metro Area
1924             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1925                  Orlando-Kissimmee-Sanford, FL Metro Area
1926            Tampa-St. Petersburg-Clearwater, FL Metro Area
1927             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1928                         Milwaukee-Waukesha, WI Metro Area
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1930                             Kansas City, MO-KS Metro Area
1931             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1932             Louisville/Jefferson County, KY-IN Metro Area
1933                                 Boise City, ID Metro Area
1934                Dallas-Fort Worth-Arlington, TX Metro Area
1935           Houston-The Woodlands-Sugar Land, TX Metro Area
1936             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1937                             Urban Honolulu, HI Metro Area
1938                    Kahului-Wailuku-Lahaina, HI Metro Area
1939                                     Tucson, AZ Metro Area
1940                Dallas-Fort Worth-Arlington, TX Metro Area
1941           Houston-The Woodlands-Sugar Land, TX Metro Area
1942 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1943                Dallas-Fort Worth-Arlington, TX Metro Area
1944                                    El Paso, TX Metro Area
1945             Los Angeles-Long Beach-Anaheim, CA Metro Area
1946               Las Vegas-Henderson-Paradise, NV Metro Area
1947             San Francisco-Oakland-Berkeley, CA Metro Area
1948                  Orlando-Kissimmee-Sanford, FL Metro Area
1949             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1950                  Baltimore-Columbia-Towson, MD Metro Area
1951                      Cape Coral-Fort Myers, FL Metro Area
1952            Tampa-St. Petersburg-Clearwater, FL Metro Area
1953             San Francisco-Oakland-Berkeley, CA Metro Area
1954             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1955                      Phoenix-Mesa-Chandler, AZ Metro Area
1956             Los Angeles-Long Beach-Anaheim, CA Metro Area
1957             San Diego-Chula Vista-Carlsbad, CA Metro Area
1958                Dallas-Fort Worth-Arlington, TX Metro Area
1959               Las Vegas-Henderson-Paradise, NV Metro Area
1960                    Kahului-Wailuku-Lahaina, HI Metro Area
1961                    Kahului-Wailuku-Lahaina, HI Metro Area
1962                             Urban Honolulu, HI Metro Area
1963                                       Hilo, HI Micro Area
1964             Los Angeles-Long Beach-Anaheim, CA Metro Area
1965           Riverside-San Bernardino-Ontario, CA Metro Area
1966                                       Reno, NV Metro Area
1967             Los Angeles-Long Beach-Anaheim, CA Metro Area
1968                  Orlando-Kissimmee-Sanford, FL Metro Area
1969                Dallas-Fort Worth-Arlington, TX Metro Area
1970             Los Angeles-Long Beach-Anaheim, CA Metro Area
1971                  Orlando-Kissimmee-Sanford, FL Metro Area
1972                Sacramento-Roseville-Folsom, CA Metro Area
1973                     Spokane-Spokane Valley, WA Metro Area
1974             San Diego-Chula Vista-Carlsbad, CA Metro Area
1975                    Seattle-Tacoma-Bellevue, WA Metro Area
1976             Los Angeles-Long Beach-Anaheim, CA Metro Area
1977                             Urban Honolulu, HI Metro Area
1978             Los Angeles-Long Beach-Anaheim, CA Metro Area
1979           Riverside-San Bernardino-Ontario, CA Metro Area
1980           Riverside-San Bernardino-Ontario, CA Metro Area
1981             Los Angeles-Long Beach-Anaheim, CA Metro Area
1982                Dallas-Fort Worth-Arlington, TX Metro Area
1983                      Phoenix-Mesa-Chandler, AZ Metro Area
1984               Austin-Round Rock-Georgetown, TX Metro Area
1985                                   Columbus, OH Metro Area
1986               Austin-Round Rock-Georgetown, TX Metro Area
1987               Indianapolis-Carmel-Anderson, IN Metro Area
1988          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1989                  Baltimore-Columbia-Towson, MD Metro Area
1990                Dallas-Fort Worth-Arlington, TX Metro Area
1991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1992           Houston-The Woodlands-Sugar Land, TX Metro Area
1993                               Jacksonville, FL Metro Area
1994          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1995             Los Angeles-Long Beach-Anaheim, CA Metro Area
1996             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1997                       New Orleans-Metairie, LA Metro Area
1998                    Seattle-Tacoma-Bellevue, WA Metro Area
1999               Austin-Round Rock-Georgetown, TX Metro Area
2000 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2001 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2002                                   Columbus, OH Metro Area
2003                 Des Moines-West Des Moines, IA Metro Area
2004                                Panama City, FL Metro Area
2005                                    Wichita, KS Metro Area
2006             Los Angeles-Long Beach-Anaheim, CA Metro Area
2007       Little Rock-North Little Rock-Conway, AR Metro Area
2008                             Kansas City, MO-KS Metro Area
2009                  Orlando-Kissimmee-Sanford, FL Metro Area
2010        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2011                         Milwaukee-Waukesha, WI Metro Area
2012                              Oklahoma City, OK Metro Area
2013                    Omaha-Council Bluffs, NE-IA Metro Area
2014                      Phoenix-Mesa-Chandler, AZ Metro Area
2015                 Pensacola-Ferry Pass-Brent, FL Metro Area
2016              North Port-Sarasota-Bradenton, FL Metro Area
2017 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2018                  Baltimore-Columbia-Towson, MD Metro Area
2019                                   Columbus, OH Metro Area
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2021             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2022                               Raleigh-Cary, NC Metro Area
2023             Louisville/Jefferson County, KY-IN Metro Area
2024          Hartford-East Hartford-Middletown, CT Metro Area
2025                          Birmingham-Hoover, AL Metro Area
2026                        Buffalo-Cheektowaga, NY Metro Area
2027                           Cincinnati, OH-KY-IN Metro Area
2028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2029             San Diego-Chula Vista-Carlsbad, CA Metro Area
2030               Las Vegas-Henderson-Paradise, NV Metro Area
2031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2032                Dallas-Fort Worth-Arlington, TX Metro Area
2033           Houston-The Woodlands-Sugar Land, TX Metro Area
2034                      Phoenix-Mesa-Chandler, AZ Metro Area
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2036                               St. Louis, MO-IL Metro Area
2037                Dallas-Fort Worth-Arlington, TX Metro Area
2038                      Phoenix-Mesa-Chandler, AZ Metro Area
2039                Dallas-Fort Worth-Arlington, TX Metro Area
2040                Dallas-Fort Worth-Arlington, TX Metro Area
2041                Dallas-Fort Worth-Arlington, TX Metro Area
2042          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2043                                 Pittsburgh, PA Metro Area
2044                                   Savannah, GA Metro Area
2045                                      Tulsa, OK Metro Area
2046                Dallas-Fort Worth-Arlington, TX Metro Area
2047                      Phoenix-Mesa-Chandler, AZ Metro Area
2048                                Bakersfield, CA Metro Area
2049                         Eugene-Springfield, OR Metro Area
2050                Dallas-Fort Worth-Arlington, TX Metro Area
2051                Dallas-Fort Worth-Arlington, TX Metro Area
2052           Houston-The Woodlands-Sugar Land, TX Metro Area
2053           Houston-The Woodlands-Sugar Land, TX Metro Area
2054           Houston-The Woodlands-Sugar Land, TX Metro Area
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2058          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2059               Indianapolis-Carmel-Anderson, IN Metro Area
2060          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2061                                   Columbus, OH Metro Area
2062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2063          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2064          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2065          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2066          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2067          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2068          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2069                                 Pittsburgh, PA Metro Area
2070                               Raleigh-Cary, NC Metro Area
2071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2073          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2074              Charlotte-Concord-Gastonia, NC-SC Metro Area
2075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2076          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2077          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2078          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2079          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2080          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2081                 Boston-Cambridge-Newton, MA-NH Metro Area
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2083          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2084              Charlotte-Concord-Gastonia, NC-SC Metro Area
2085          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2086                               Raleigh-Cary, NC Metro Area
2087             Louisville/Jefferson County, KY-IN Metro Area
2088                 Boston-Cambridge-Newton, MA-NH Metro Area
2089          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2090                Charleston-North Charleston, SC Metro Area
2091                    Detroit-Warren-Dearborn, MI Metro Area
2092                                   Key West, FL Micro Area
2093                         Milwaukee-Waukesha, WI Metro Area
2094                       New Orleans-Metairie, LA Metro Area
2095                    Portland-South Portland, ME Metro Area
2096              Charlotte-Concord-Gastonia, NC-SC Metro Area
2097          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2098                       New Orleans-Metairie, LA Metro Area
2099              North Port-Sarasota-Bradenton, FL Metro Area
2100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2101                 Boston-Cambridge-Newton, MA-NH Metro Area
2102              Charlotte-Concord-Gastonia, NC-SC Metro Area
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2104          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2105 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2106                  Baltimore-Columbia-Towson, MD Metro Area
2107                  Baltimore-Columbia-Towson, MD Metro Area
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2109     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2112                                 Pittsburgh, PA Metro Area
2113                           Cleveland-Elyria, OH Metro Area
2114                                   Columbus, OH Metro Area
2115               Indianapolis-Carmel-Anderson, IN Metro Area
2116               Indianapolis-Carmel-Anderson, IN Metro Area
2117                                   Richmond, VA Metro Area
2118                           Cincinnati, OH-KY-IN Metro Area
2119              Charlotte-Concord-Gastonia, NC-SC Metro Area
2120                               Jacksonville, FL Metro Area
2121                 Boston-Cambridge-Newton, MA-NH Metro Area
2122                               Raleigh-Cary, NC Metro Area
2123                                   Columbus, OH Metro Area
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2126          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2127          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2128                 Boston-Cambridge-Newton, MA-NH Metro Area
2129          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2130          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2131             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2132                 Boston-Cambridge-Newton, MA-NH Metro Area
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2137          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2139              Charlotte-Concord-Gastonia, NC-SC Metro Area
2140          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2141              Charlotte-Concord-Gastonia, NC-SC Metro Area
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2147                        Buffalo-Cheektowaga, NY Metro Area
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2149             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2150                      Greensboro-High Point, NC Metro Area
2151          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2153        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2154        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2155                                    Bozeman, MT Micro Area
2156             San Francisco-Oakland-Berkeley, CA Metro Area
2157        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2167                 Boston-Cambridge-Newton, MA-NH Metro Area
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2169                                  Flagstaff, AZ Metro Area
2170                     Denver-Aurora-Lakewood, CO Metro Area
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2172       Little Rock-North Little Rock-Conway, AR Metro Area
2173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2174                                   Key West, FL Micro Area
2175                  Orlando-Kissimmee-Sanford, FL Metro Area
2176                  Orlando-Kissimmee-Sanford, FL Metro Area
2177            Tampa-St. Petersburg-Clearwater, FL Metro Area
2178        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2179            Tampa-St. Petersburg-Clearwater, FL Metro Area
2180                          New Haven-Milford, CT Metro Area
2181                 Boston-Cambridge-Newton, MA-NH Metro Area
2182           Houston-The Woodlands-Sugar Land, TX Metro Area
2183          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2184                         Milwaukee-Waukesha, WI Metro Area
2185          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2186               Las Vegas-Henderson-Paradise, NV Metro Area
2187        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2188                 Boston-Cambridge-Newton, MA-NH Metro Area
2189           Riverside-San Bernardino-Ontario, CA Metro Area
2190                    Kahului-Wailuku-Lahaina, HI Metro Area
2191                Dallas-Fort Worth-Arlington, TX Metro Area
2192                      Phoenix-Mesa-Chandler, AZ Metro Area
2193                Dallas-Fort Worth-Arlington, TX Metro Area
2194                                                      <NA>
2195             San Diego-Chula Vista-Carlsbad, CA Metro Area
2196             San Francisco-Oakland-Berkeley, CA Metro Area
2197                             Kansas City, MO-KS Metro Area
2198                               Raleigh-Cary, NC Metro Area
2199        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2200                    Seattle-Tacoma-Bellevue, WA Metro Area
2201                             Urban Honolulu, HI Metro Area
2202                      Cape Coral-Fort Myers, FL Metro Area
2203             San Francisco-Oakland-Berkeley, CA Metro Area
2204                      Cape Coral-Fort Myers, FL Metro Area
2205          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2206          Hartford-East Hartford-Middletown, CT Metro Area
2207                                Albuquerque, NM Metro Area
2208                 Boston-Cambridge-Newton, MA-NH Metro Area
2209                                 Jackson, WY-ID Micro Area
2210              Palm Bay-Melbourne-Titusville, FL Metro Area
2211        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2212            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2213                  Orlando-Kissimmee-Sanford, FL Metro Area
2214             Los Angeles-Long Beach-Anaheim, CA Metro Area
2215                             Kansas City, MO-KS Metro Area
2216                      Phoenix-Mesa-Chandler, AZ Metro Area
2217                Dallas-Fort Worth-Arlington, TX Metro Area
2218               Austin-Round Rock-Georgetown, TX Metro Area
2219                     Denver-Aurora-Lakewood, CO Metro Area
2220        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2221                    San Juan-Bayamón-Caguas, PR Metro Area
2222                           Cincinnati, OH-KY-IN Metro Area
2223          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2224                               Raleigh-Cary, NC Metro Area
2225        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2226             San Diego-Chula Vista-Carlsbad, CA Metro Area
2227           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2228               Austin-Round Rock-Georgetown, TX Metro Area
2229                             Kansas City, MO-KS Metro Area
2230        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2231             Los Angeles-Long Beach-Anaheim, CA Metro Area
2232                    Seattle-Tacoma-Bellevue, WA Metro Area
2233              Charlotte-Concord-Gastonia, NC-SC Metro Area
2234          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2235           Riverside-San Bernardino-Ontario, CA Metro Area
2236                      Cape Coral-Fort Myers, FL Metro Area
2237             Los Angeles-Long Beach-Anaheim, CA Metro Area
2238                 Boston-Cambridge-Newton, MA-NH Metro Area
2239                          Steamboat Springs, CO Micro Area
2240                                       Reno, NV Metro Area
2241                             Salt Lake City, UT Metro Area
2242             San Francisco-Oakland-Berkeley, CA Metro Area
2243            Tampa-St. Petersburg-Clearwater, FL Metro Area
2244                               Raleigh-Cary, NC Metro Area
2245                                   Columbus, OH Metro Area
2246                             Kansas City, MO-KS Metro Area
2247                                Albuquerque, NM Metro Area
2248          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2249                    Seattle-Tacoma-Bellevue, WA Metro Area
2250        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2251                             Salt Lake City, UT Metro Area
2252            Tampa-St. Petersburg-Clearwater, FL Metro Area
2253                    San Juan-Bayamón-Caguas, PR Metro Area
2254        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2255                                  Anchorage, AK Metro Area
2256                             Urban Honolulu, HI Metro Area
2257                                                      <NA>
2258                             Urban Honolulu, HI Metro Area
2259                                       Hilo, HI Micro Area
2260                             Urban Honolulu, HI Metro Area
2261                    Kahului-Wailuku-Lahaina, HI Metro Area
2262               Las Vegas-Henderson-Paradise, NV Metro Area
2263           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2264                                Baton Rouge, LA Metro Area
2265                                Gainesville, FL Metro Area
2266                            Gulfport-Biloxi, MS Metro Area
2267                          Lexington-Fayette, KY Metro Area
2268                                     Mobile, AL Metro Area
2269                                    Roanoke, VA Metro Area
2270                                Springfield, MO Metro Area
2271                                      Tulsa, OK Metro Area
2272          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2273                         Milwaukee-Waukesha, WI Metro Area
2274                                   Richmond, VA Metro Area
2275           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2276          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2277                 Boston-Cambridge-Newton, MA-NH Metro Area
2278                    Detroit-Warren-Dearborn, MI Metro Area
2279                Burlington-South Burlington, VT Metro Area
2280                Charleston-North Charleston, SC Metro Area
2281                                Spartanburg, SC Metro Area
2282                    Portland-South Portland, ME Metro Area
2283                               Raleigh-Cary, NC Metro Area
2284                                  Rochester, NY Metro Area
2285                                  Knoxville, TN Metro Area
2286                           Cincinnati, OH-KY-IN Metro Area
2287           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2288          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2289                                     Bangor, ME Metro Area
2290 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2291                Charleston-North Charleston, SC Metro Area
2292                Charleston-North Charleston, SC Metro Area
2293                                 Pittsburgh, PA Metro Area
2294                                   Savannah, GA Metro Area
2295                          Birmingham-Hoover, AL Metro Area
2296                      Greensboro-High Point, NC Metro Area
2297                                Spartanburg, SC Metro Area
2298                              Memphis, TN-MS-AR Metro Area
2299                    Portland-South Portland, ME Metro Area
2300                                   Savannah, GA Metro Area
2301           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2302                           Cincinnati, OH-KY-IN Metro Area
2303                 Des Moines-West Des Moines, IA Metro Area
2304          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2305          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2306           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2307                    Detroit-Warren-Dearborn, MI Metro Area
2308          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2309            Tampa-St. Petersburg-Clearwater, FL Metro Area
2310                 Boston-Cambridge-Newton, MA-NH Metro Area
2311                Dallas-Fort Worth-Arlington, TX Metro Area
2312          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2313        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2314               Austin-Round Rock-Georgetown, TX Metro Area
2315                Dallas-Fort Worth-Arlington, TX Metro Area
2316                Dallas-Fort Worth-Arlington, TX Metro Area
2317                      Phoenix-Mesa-Chandler, AZ Metro Area
2318              Charlotte-Concord-Gastonia, NC-SC Metro Area
2319                                   Columbus, OH Metro Area
2320               Las Vegas-Henderson-Paradise, NV Metro Area
2321        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2322                       New Orleans-Metairie, LA Metro Area
2323     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2324                      Phoenix-Mesa-Chandler, AZ Metro Area
2325                                 Pittsburgh, PA Metro Area
2326                    Portland-South Portland, ME Metro Area
2327            Tampa-St. Petersburg-Clearwater, FL Metro Area
2328              Charlotte-Concord-Gastonia, NC-SC Metro Area
2329          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2330                               Jacksonville, FL Metro Area
2331                              Memphis, TN-MS-AR Metro Area
2332                                Albuquerque, NM Metro Area
2333                                     Bangor, ME Metro Area
2334                                   Columbus, OH Metro Area
2335                      Greensboro-High Point, NC Metro Area
2336                                    Wichita, KS Metro Area
2337             Los Angeles-Long Beach-Anaheim, CA Metro Area
2338                        Harrisburg-Carlisle, PA Metro Area
2339                   McAllen-Edinburg-Mission, TX Metro Area
2340                         Milwaukee-Waukesha, WI Metro Area
2341           Riverside-San Bernardino-Ontario, CA Metro Area
2342        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2343                    Portland-South Portland, ME Metro Area
2344                      Cape Coral-Fort Myers, FL Metro Area
2345             San Francisco-Oakland-Berkeley, CA Metro Area
2346             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2347             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2348              Charlotte-Concord-Gastonia, NC-SC Metro Area
2349        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2350                Dallas-Fort Worth-Arlington, TX Metro Area
2351                Dallas-Fort Worth-Arlington, TX Metro Area
2352        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2353                Dallas-Fort Worth-Arlington, TX Metro Area
2354              Charlotte-Concord-Gastonia, NC-SC Metro Area
2355                Dallas-Fort Worth-Arlington, TX Metro Area
2356              Charlotte-Concord-Gastonia, NC-SC Metro Area
2357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2358               Austin-Round Rock-Georgetown, TX Metro Area
2359                Dallas-Fort Worth-Arlington, TX Metro Area
2360              Charlotte-Concord-Gastonia, NC-SC Metro Area
2361                Dallas-Fort Worth-Arlington, TX Metro Area
2362                Dallas-Fort Worth-Arlington, TX Metro Area
2363            Tampa-St. Petersburg-Clearwater, FL Metro Area
2364               Las Vegas-Henderson-Paradise, NV Metro Area
2365                      Phoenix-Mesa-Chandler, AZ Metro Area
2366             San Francisco-Oakland-Berkeley, CA Metro Area
2367                    San Juan-Bayamón-Caguas, PR Metro Area
2368                                                      <NA>
2369              Charlotte-Concord-Gastonia, NC-SC Metro Area
2370                Dallas-Fort Worth-Arlington, TX Metro Area
2371                Dallas-Fort Worth-Arlington, TX Metro Area
2372                                   Key West, FL Micro Area
2373           Riverside-San Bernardino-Ontario, CA Metro Area
2374                    San Juan-Bayamón-Caguas, PR Metro Area
2375             Los Angeles-Long Beach-Anaheim, CA Metro Area
2376              North Port-Sarasota-Bradenton, FL Metro Area
2377              Charlotte-Concord-Gastonia, NC-SC Metro Area
2378                Dallas-Fort Worth-Arlington, TX Metro Area
2379                      Cape Coral-Fort Myers, FL Metro Area
2380                 Boston-Cambridge-Newton, MA-NH Metro Area
2381          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2382          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2383        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2384              Charlotte-Concord-Gastonia, NC-SC Metro Area
2385                Dallas-Fort Worth-Arlington, TX Metro Area
2386        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2387                Dallas-Fort Worth-Arlington, TX Metro Area
2388                Dallas-Fort Worth-Arlington, TX Metro Area
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2390              Charlotte-Concord-Gastonia, NC-SC Metro Area
2391              Charlotte-Concord-Gastonia, NC-SC Metro Area
2392              Charlotte-Concord-Gastonia, NC-SC Metro Area
2393        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2394        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2396                Dallas-Fort Worth-Arlington, TX Metro Area
2397                Dallas-Fort Worth-Arlington, TX Metro Area
2398                             Urban Honolulu, HI Metro Area
2399                                                      <NA>
2400                                  Anchorage, AK Metro Area
2401                    Seattle-Tacoma-Bellevue, WA Metro Area
2402                    Seattle-Tacoma-Bellevue, WA Metro Area
2403                                  Anchorage, AK Metro Area
2404                                  Anchorage, AK Metro Area
2405                                      Kapaa, HI Micro Area
2406            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2407                    Seattle-Tacoma-Bellevue, WA Metro Area
2408                                  Anchorage, AK Metro Area
2409                                      Kapaa, HI Micro Area
2410                    Seattle-Tacoma-Bellevue, WA Metro Area
2411           Riverside-San Bernardino-Ontario, CA Metro Area
2412        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2413                                      Kapaa, HI Micro Area
2414                  Orlando-Kissimmee-Sanford, FL Metro Area
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2416          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2417                 Boston-Cambridge-Newton, MA-NH Metro Area
2418        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2419        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2420             San Francisco-Oakland-Berkeley, CA Metro Area
2421                        Buffalo-Cheektowaga, NY Metro Area
2422        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2423             San Diego-Chula Vista-Carlsbad, CA Metro Area
2424              North Port-Sarasota-Bradenton, FL Metro Area
2425          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2426        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2427                                   Richmond, VA Metro Area
2428                                Albuquerque, NM Metro Area
2429                 Boston-Cambridge-Newton, MA-NH Metro Area
2430             Los Angeles-Long Beach-Anaheim, CA Metro Area
2431        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2432           Riverside-San Bernardino-Ontario, CA Metro Area
2433          Hartford-East Hartford-Middletown, CT Metro Area
2434                        Buffalo-Cheektowaga, NY Metro Area
2435          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2436                  Orlando-Kissimmee-Sanford, FL Metro Area
2437        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2438          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2440            Tampa-St. Petersburg-Clearwater, FL Metro Area
2441          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2442                 Boston-Cambridge-Newton, MA-NH Metro Area
2443                  Orlando-Kissimmee-Sanford, FL Metro Area
2444                    Albany-Schenectady-Troy, NY Metro Area
2445          Hartford-East Hartford-Middletown, CT Metro Area
2446                                 Boise City, ID Metro Area
2447                                    Bozeman, MT Micro Area
2448                                   Columbus, OH Metro Area
2449                           Dayton-Kettering, OH Metro Area
2450                                    Edwards, CO Micro Area
2451                      Greensboro-High Point, NC Metro Area
2452                                 Huntsville, AL Metro Area
2453                                 Wilmington, NC Metro Area
2454                               Jacksonville, FL Metro Area
2455                    Omaha-Council Bluffs, NE-IA Metro Area
2456     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2457                 Pensacola-Ferry Pass-Brent, FL Metro Area
2458                    Portland-South Portland, ME Metro Area
2459                               Raleigh-Cary, NC Metro Area
2460             San Diego-Chula Vista-Carlsbad, CA Metro Area
2461             San Francisco-Oakland-Berkeley, CA Metro Area
2462                    San Juan-Bayamón-Caguas, PR Metro Area
2463             Los Angeles-Long Beach-Anaheim, CA Metro Area
2464                                     Tucson, AZ Metro Area
2465         Crestview-Fort Walton Beach-Destin, FL Metro Area
2466                    Detroit-Warren-Dearborn, MI Metro Area
2467                    Seattle-Tacoma-Bellevue, WA Metro Area
2468                             Salt Lake City, UT Metro Area
2469        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2471                             Salt Lake City, UT Metro Area
2472        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2473               Las Vegas-Henderson-Paradise, NV Metro Area
2474                      Cape Coral-Fort Myers, FL Metro Area
2475                    Detroit-Warren-Dearborn, MI Metro Area
2476          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2477               Austin-Round Rock-Georgetown, TX Metro Area
2478                 Boston-Cambridge-Newton, MA-NH Metro Area
2479                        Buffalo-Cheektowaga, NY Metro Area
2480                         Milwaukee-Waukesha, WI Metro Area
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2482             San Diego-Chula Vista-Carlsbad, CA Metro Area
2483                  San Antonio-New Braunfels, TX Metro Area
2484             San Francisco-Oakland-Berkeley, CA Metro Area
2485              North Port-Sarasota-Bradenton, FL Metro Area
2486           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2487           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2488                    Seattle-Tacoma-Bellevue, WA Metro Area
2489                             Salt Lake City, UT Metro Area
2490                       New Orleans-Metairie, LA Metro Area
2491        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2492               Indianapolis-Carmel-Anderson, IN Metro Area
2493            Tampa-St. Petersburg-Clearwater, FL Metro Area
2494                 Boston-Cambridge-Newton, MA-NH Metro Area
2495                             Salt Lake City, UT Metro Area
2496                 Boston-Cambridge-Newton, MA-NH Metro Area
2497          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2498          Hartford-East Hartford-Middletown, CT Metro Area
2499                  Baltimore-Columbia-Towson, MD Metro Area
2500                    Detroit-Warren-Dearborn, MI Metro Area
2501        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2502                             Kansas City, MO-KS Metro Area
2503                         Milwaukee-Waukesha, WI Metro Area
2504                                   Missoula, MT Metro Area
2505           Riverside-San Bernardino-Ontario, CA Metro Area
2506                  San Antonio-New Braunfels, TX Metro Area
2507                Sacramento-Roseville-Folsom, CA Metro Area
2508             Los Angeles-Long Beach-Anaheim, CA Metro Area
2509              North Port-Sarasota-Bradenton, FL Metro Area
2510                 Boston-Cambridge-Newton, MA-NH Metro Area
2511                    Detroit-Warren-Dearborn, MI Metro Area
2512                           Cincinnati, OH-KY-IN Metro Area
2513                    Detroit-Warren-Dearborn, MI Metro Area
2514               Austin-Round Rock-Georgetown, TX Metro Area
2515          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2516        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2517            Tampa-St. Petersburg-Clearwater, FL Metro Area
2518                 Boston-Cambridge-Newton, MA-NH Metro Area
2519           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2520 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2521                 Boston-Cambridge-Newton, MA-NH Metro Area
2522                  Baltimore-Columbia-Towson, MD Metro Area
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2524        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2525               Indianapolis-Carmel-Anderson, IN Metro Area
2526                       New Orleans-Metairie, LA Metro Area
2527            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2528                               Raleigh-Cary, NC Metro Area
2529                                       Reno, NV Metro Area
2530                  San Antonio-New Braunfels, TX Metro Area
2531                               St. Louis, MO-IL Metro Area
2532            Tampa-St. Petersburg-Clearwater, FL Metro Area
2533           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2534          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2535                Burlington-South Burlington, VT Metro Area
2536                        Buffalo-Cheektowaga, NY Metro Area
2537                      Grand Rapids-Kentwood, MI Metro Area
2538                                Spartanburg, SC Metro Area
2539                Hilton Head Island-Bluffton, SC Metro Area
2540                                   Richmond, VA Metro Area
2541                Burlington-South Burlington, VT Metro Area
2542                               St. Louis, MO-IL Metro Area
2543                                       Hilo, HI Micro Area
2544                Dallas-Fort Worth-Arlington, TX Metro Area
2545                Dallas-Fort Worth-Arlington, TX Metro Area
2546                      Brownsville-Harlingen, TX Metro Area
2547                                   Columbia, SC Metro Area
2548                           Champaign-Urbana, IL Metro Area
2549                             Corpus Christi, TX Metro Area
2550                                Springfield, IL Metro Area
2551                                  Knoxville, TN Metro Area
2552        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2553        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2554                Dallas-Fort Worth-Arlington, TX Metro Area
2555                Dallas-Fort Worth-Arlington, TX Metro Area
2556                Dallas-Fort Worth-Arlington, TX Metro Area
2557                Dallas-Fort Worth-Arlington, TX Metro Area
2558                Dallas-Fort Worth-Arlington, TX Metro Area
2559                    Omaha-Council Bluffs, NE-IA Metro Area
2560        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2561                    Omaha-Council Bluffs, NE-IA Metro Area
2562                 Des Moines-West Des Moines, IA Metro Area
2563                                  Rochester, MN Metro Area
2564                Dallas-Fort Worth-Arlington, TX Metro Area
2565        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2566              Charlotte-Concord-Gastonia, NC-SC Metro Area
2567              Charlotte-Concord-Gastonia, NC-SC Metro Area
2568                                    Madison, WI Metro Area
2569                           Cleveland-Elyria, OH Metro Area
2570                    Detroit-Warren-Dearborn, MI Metro Area
2571                                  Lafayette, LA Metro Area
2572       Little Rock-North Little Rock-Conway, AR Metro Area
2573                        Harrisburg-Carlisle, PA Metro Area
2574                           Dayton-Kettering, OH Metro Area
2575                                  Knoxville, TN Metro Area
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2578                          Manchester-Nashua, NH Metro Area
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2581        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2582                     Denver-Aurora-Lakewood, CO Metro Area
2583                Dallas-Fort Worth-Arlington, TX Metro Area
2584                                   Appleton, WI Metro Area
2585 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2586                                     Casper, WY Metro Area
2587                         Eugene-Springfield, OR Metro Area
2588                                    Midland, TX Metro Area
2589     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2590             Louisville/Jefferson County, KY-IN Metro Area
2591                                                      <NA>
2592                    Albany-Schenectady-Troy, NY Metro Area
2593                    Omaha-Council Bluffs, NE-IA Metro Area
2594                    South Bend-Mishawaka, IN-MI Metro Area
2595                Dallas-Fort Worth-Arlington, TX Metro Area
2596             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2597        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2598                             Kansas City, MO-KS Metro Area
2599                         Milwaukee-Waukesha, WI Metro Area
2600           Riverside-San Bernardino-Ontario, CA Metro Area
2601             Fayetteville-Springdale-Rogers, AR Metro Area
2602                     Denver-Aurora-Lakewood, CO Metro Area
2603                     Denver-Aurora-Lakewood, CO Metro Area
2604           Houston-The Woodlands-Sugar Land, TX Metro Area
2605                                   Bismarck, ND Metro Area
2606                              Memphis, TN-MS-AR Metro Area
2607                              Oklahoma City, OK Metro Area
2608                    Omaha-Council Bluffs, NE-IA Metro Area
2609                                 Pittsburgh, PA Metro Area
2610                                   Richmond, VA Metro Area
2611             Louisville/Jefferson County, KY-IN Metro Area
2612        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2613          Hartford-East Hartford-Middletown, CT Metro Area
2614                    Albany-Schenectady-Troy, NY Metro Area
2615                          Birmingham-Hoover, AL Metro Area
2616                              Memphis, TN-MS-AR Metro Area
2617                                 Rapid City, SD Metro Area
2618                    Detroit-Warren-Dearborn, MI Metro Area
2619                                    Durango, CO Micro Area
2620        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2621                     Denver-Aurora-Lakewood, CO Metro Area
2622           Riverside-San Bernardino-Ontario, CA Metro Area
2623                                Albuquerque, NM Metro Area
2624                                     Tucson, AZ Metro Area
2625                                Albuquerque, NM Metro Area
2626                                     Fresno, CA Metro Area
2627                                     Helena, MT Micro Area
2628                         Kennewick-Richland, WA Metro Area
2629           Riverside-San Bernardino-Ontario, CA Metro Area
2630                                 Rapid City, SD Metro Area
2631                                     Tucson, AZ Metro Area
2632                             Salt Lake City, UT Metro Area
2633                                 Boise City, ID Metro Area
2634             San Francisco-Oakland-Berkeley, CA Metro Area
2635                                      Kapaa, HI Micro Area
2636                                    Madison, WI Metro Area
2637                                   Missoula, MT Metro Area
2638           Houston-The Woodlands-Sugar Land, TX Metro Area
2639                  San Antonio-New Braunfels, TX Metro Area
2640                Sacramento-Roseville-Folsom, CA Metro Area
2641                     Denver-Aurora-Lakewood, CO Metro Area
2642           Houston-The Woodlands-Sugar Land, TX Metro Area
2643            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2644                      Phoenix-Mesa-Chandler, AZ Metro Area
2645             San Diego-Chula Vista-Carlsbad, CA Metro Area
2646                    San Juan-Bayamón-Caguas, PR Metro Area
2647                  Baltimore-Columbia-Towson, MD Metro Area
2648                                   Columbus, OH Metro Area
2649                           Cincinnati, OH-KY-IN Metro Area
2650                             Urban Honolulu, HI Metro Area
2651                                 Jackson, WY-ID Micro Area
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2653                                 Pittsburgh, PA Metro Area
2654                    Seattle-Tacoma-Bellevue, WA Metro Area
2655          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2656           Houston-The Woodlands-Sugar Land, TX Metro Area
2657           Houston-The Woodlands-Sugar Land, TX Metro Area
2658           Houston-The Woodlands-Sugar Land, TX Metro Area
2659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2660             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2661                  Baltimore-Columbia-Towson, MD Metro Area
2662                             Urban Honolulu, HI Metro Area
2663                  Orlando-Kissimmee-Sanford, FL Metro Area
2664                    Seattle-Tacoma-Bellevue, WA Metro Area
2665          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2666                     Denver-Aurora-Lakewood, CO Metro Area
2667          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2668             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2669 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2670                    San Juan-Bayamón-Caguas, PR Metro Area
2671                      Cape Coral-Fort Myers, FL Metro Area
2672                                Panama City, FL Metro Area
2673           Houston-The Woodlands-Sugar Land, TX Metro Area
2674                             Urban Honolulu, HI Metro Area
2675                             Kansas City, MO-KS Metro Area
2676 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2677                             Urban Honolulu, HI Metro Area
2678               Indianapolis-Carmel-Anderson, IN Metro Area
2679                  San Antonio-New Braunfels, TX Metro Area
2680        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2681           Houston-The Woodlands-Sugar Land, TX Metro Area
2682                Dallas-Fort Worth-Arlington, TX Metro Area
2683                 Des Moines-West Des Moines, IA Metro Area
2684                                   Key West, FL Micro Area
2685             Louisville/Jefferson County, KY-IN Metro Area
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2687                Charleston-North Charleston, SC Metro Area
2688                           Cleveland-Elyria, OH Metro Area
2689                               Jacksonville, FL Metro Area
2690                 Boston-Cambridge-Newton, MA-NH Metro Area
2691          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2692                                    Madison, WI Metro Area
2693                                   Columbus, OH Metro Area
2694                             Kansas City, MO-KS Metro Area
2695                              Memphis, TN-MS-AR Metro Area
2696                                    Madison, WI Metro Area
2697             Louisville/Jefferson County, KY-IN Metro Area
2698          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2699             Fayetteville-Springdale-Rogers, AR Metro Area
2700                                   Key West, FL Micro Area
2701             Louisville/Jefferson County, KY-IN Metro Area
2702          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2703          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2704                Charleston-North Charleston, SC Metro Area
2705                               Jacksonville, FL Metro Area
2706             Louisville/Jefferson County, KY-IN Metro Area
2707                                   Key West, FL Micro Area
2708                       New Orleans-Metairie, LA Metro Area
2709              Charlotte-Concord-Gastonia, NC-SC Metro Area
2710                 Boston-Cambridge-Newton, MA-NH Metro Area
2711          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2712             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2713                                     Ithaca, NY Metro Area
2714                                   Columbia, SC Metro Area
2715                 Pensacola-Ferry Pass-Brent, FL Metro Area
2716             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2717                      Brownsville-Harlingen, TX Metro Area
2718        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2719                                  Green Bay, WI Metro Area
2720                               Salisbury, MD-DE Metro Area
2721             Louisville/Jefferson County, KY-IN Metro Area
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2723          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2724                                   Savannah, GA Metro Area
2725           Houston-The Woodlands-Sugar Land, TX Metro Area
2726                                  Dickinson, ND Micro Area
2727                    Albany-Schenectady-Troy, NY Metro Area
2728                                     Mobile, AL Metro Area
2729                               St. Louis, MO-IL Metro Area
2730           Houston-The Woodlands-Sugar Land, TX Metro Area
2731                     Denver-Aurora-Lakewood, CO Metro Area
2732              Allentown-Bethlehem-Easton, PA-NJ Metro Area
2733          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2734          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2735          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2736        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2737          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2738          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2739                Burlington-South Burlington, VT Metro Area
2740                    Portland-South Portland, ME Metro Area
2741                                   Columbia, SC Metro Area
2742                      Grand Rapids-Kentwood, MI Metro Area
2743     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2744           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2745          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2746                 Boston-Cambridge-Newton, MA-NH Metro Area
2747          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2748          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2749          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2750          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2751                Dallas-Fort Worth-Arlington, TX Metro Area
2752                Dallas-Fort Worth-Arlington, TX Metro Area
2753        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2754                      Phoenix-Mesa-Chandler, AZ Metro Area
2755              Charlotte-Concord-Gastonia, NC-SC Metro Area
2756              Charlotte-Concord-Gastonia, NC-SC Metro Area
2757                Dallas-Fort Worth-Arlington, TX Metro Area
2758                Dallas-Fort Worth-Arlington, TX Metro Area
2759                Dallas-Fort Worth-Arlington, TX Metro Area
2760                Dallas-Fort Worth-Arlington, TX Metro Area
2761              Charlotte-Concord-Gastonia, NC-SC Metro Area
2762              Charlotte-Concord-Gastonia, NC-SC Metro Area
2763                Dallas-Fort Worth-Arlington, TX Metro Area
2764        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2765                      Phoenix-Mesa-Chandler, AZ Metro Area
2766             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2767                 Boston-Cambridge-Newton, MA-NH Metro Area
2768                        Buffalo-Cheektowaga, NY Metro Area
2769                  Baltimore-Columbia-Towson, MD Metro Area
2770                           Cincinnati, OH-KY-IN Metro Area
2771                Dallas-Fort Worth-Arlington, TX Metro Area
2772                                   Key West, FL Micro Area
2773        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2774             Los Angeles-Long Beach-Anaheim, CA Metro Area
2775        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2776                      Phoenix-Mesa-Chandler, AZ Metro Area
2777                      Cape Coral-Fort Myers, FL Metro Area
2778             San Francisco-Oakland-Berkeley, CA Metro Area
2779                               St. Louis, MO-IL Metro Area
2780                                   Syracuse, NY Metro Area
2781                Dallas-Fort Worth-Arlington, TX Metro Area
2782                Dallas-Fort Worth-Arlington, TX Metro Area
2783              North Port-Sarasota-Bradenton, FL Metro Area
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2785 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2786                                 Boise City, ID Metro Area
2787             Los Angeles-Long Beach-Anaheim, CA Metro Area
2788                           Colorado Springs, CO Metro Area
2789                           Cincinnati, OH-KY-IN Metro Area
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2791                                 Jackson, WY-ID Micro Area
2792       Little Rock-North Little Rock-Conway, AR Metro Area
2793                             Kansas City, MO-KS Metro Area
2794                  Orlando-Kissimmee-Sanford, FL Metro Area
2795        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2796                                 Pittsburgh, PA Metro Area
2797             San Diego-Chula Vista-Carlsbad, CA Metro Area
2798                                   Savannah, GA Metro Area
2799                    San Juan-Bayamón-Caguas, PR Metro Area
2800                Sacramento-Roseville-Folsom, CA Metro Area
2801             Los Angeles-Long Beach-Anaheim, CA Metro Area
2802                Dallas-Fort Worth-Arlington, TX Metro Area
2803              Charlotte-Concord-Gastonia, NC-SC Metro Area
2804              Charlotte-Concord-Gastonia, NC-SC Metro Area
2805             Los Angeles-Long Beach-Anaheim, CA Metro Area
2806                Dallas-Fort Worth-Arlington, TX Metro Area
2807                Dallas-Fort Worth-Arlington, TX Metro Area
2808        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2809                Dallas-Fort Worth-Arlington, TX Metro Area
2810        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2811        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2812              Charlotte-Concord-Gastonia, NC-SC Metro Area
2813                Dallas-Fort Worth-Arlington, TX Metro Area
2814                Dallas-Fort Worth-Arlington, TX Metro Area
2815               Austin-Round Rock-Georgetown, TX Metro Area
2816              Charlotte-Concord-Gastonia, NC-SC Metro Area
2817              Charlotte-Concord-Gastonia, NC-SC Metro Area
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2819                Dallas-Fort Worth-Arlington, TX Metro Area
2820                Dallas-Fort Worth-Arlington, TX Metro Area
2821                Dallas-Fort Worth-Arlington, TX Metro Area
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2823              Charlotte-Concord-Gastonia, NC-SC Metro Area
2824              Charlotte-Concord-Gastonia, NC-SC Metro Area
2825              Charlotte-Concord-Gastonia, NC-SC Metro Area
2826                      Phoenix-Mesa-Chandler, AZ Metro Area
2827                Dallas-Fort Worth-Arlington, TX Metro Area
2828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2829                               Raleigh-Cary, NC Metro Area
2830 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2831                Charleston-North Charleston, SC Metro Area
2832              Charlotte-Concord-Gastonia, NC-SC Metro Area
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2834                Dallas-Fort Worth-Arlington, TX Metro Area
2835                               Jacksonville, FL Metro Area
2836                    Seattle-Tacoma-Bellevue, WA Metro Area
2837                      Phoenix-Mesa-Chandler, AZ Metro Area
2838              Charlotte-Concord-Gastonia, NC-SC Metro Area
2839                Dallas-Fort Worth-Arlington, TX Metro Area
2840        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2841                                     Tucson, AZ Metro Area
2842                Dallas-Fort Worth-Arlington, TX Metro Area
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2844                Dallas-Fort Worth-Arlington, TX Metro Area
2845              Charlotte-Concord-Gastonia, NC-SC Metro Area
2846              Charlotte-Concord-Gastonia, NC-SC Metro Area
2847                  Orlando-Kissimmee-Sanford, FL Metro Area
2848                                    Madison, WI Metro Area
2849                Dallas-Fort Worth-Arlington, TX Metro Area
2850                Dallas-Fort Worth-Arlington, TX Metro Area
2851                      Phoenix-Mesa-Chandler, AZ Metro Area
2852              Charlotte-Concord-Gastonia, NC-SC Metro Area
2853                Dallas-Fort Worth-Arlington, TX Metro Area
2854        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2855                Dallas-Fort Worth-Arlington, TX Metro Area
2856                Dallas-Fort Worth-Arlington, TX Metro Area
2857        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2858             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2860        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2861                Dallas-Fort Worth-Arlington, TX Metro Area
2862                Dallas-Fort Worth-Arlington, TX Metro Area
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2865                Dallas-Fort Worth-Arlington, TX Metro Area
2866                Dallas-Fort Worth-Arlington, TX Metro Area
2867                 Boston-Cambridge-Newton, MA-NH Metro Area
2868              Charlotte-Concord-Gastonia, NC-SC Metro Area
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2871                    Seattle-Tacoma-Bellevue, WA Metro Area
2872                    Seattle-Tacoma-Bellevue, WA Metro Area
2873                    Seattle-Tacoma-Bellevue, WA Metro Area
2874                    Seattle-Tacoma-Bellevue, WA Metro Area
2875                    Seattle-Tacoma-Bellevue, WA Metro Area
2876                    Seattle-Tacoma-Bellevue, WA Metro Area
2877                                                      <NA>
2878                                     Juneau, AK Micro Area
2879             San Diego-Chula Vista-Carlsbad, CA Metro Area
2880                    Seattle-Tacoma-Bellevue, WA Metro Area
2881                                Albuquerque, NM Metro Area
2882                  Orlando-Kissimmee-Sanford, FL Metro Area
2883                    Seattle-Tacoma-Bellevue, WA Metro Area
2884             Los Angeles-Long Beach-Anaheim, CA Metro Area
2885                                   Columbus, OH Metro Area
2886                           Cincinnati, OH-KY-IN Metro Area
2887               Indianapolis-Carmel-Anderson, IN Metro Area
2888                         Milwaukee-Waukesha, WI Metro Area
2889                    Kahului-Wailuku-Lahaina, HI Metro Area
2890                              Oklahoma City, OK Metro Area
2891                    Omaha-Council Bluffs, NE-IA Metro Area
2892                               Raleigh-Cary, NC Metro Area
2893                  San Antonio-New Braunfels, TX Metro Area
2894                               St. Louis, MO-IL Metro Area
2895                                     Tucson, AZ Metro Area
2896                             Urban Honolulu, HI Metro Area
2897             Los Angeles-Long Beach-Anaheim, CA Metro Area
2898        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2899                      Cape Coral-Fort Myers, FL Metro Area
2900                                   Key West, FL Micro Area
2901                  San Antonio-New Braunfels, TX Metro Area
2902                                   Savannah, GA Metro Area
2903                  Orlando-Kissimmee-Sanford, FL Metro Area
2904                 Boston-Cambridge-Newton, MA-NH Metro Area
2905             Los Angeles-Long Beach-Anaheim, CA Metro Area
2906                 Boston-Cambridge-Newton, MA-NH Metro Area
2907                 Boston-Cambridge-Newton, MA-NH Metro Area
2908                    San Juan-Bayamón-Caguas, PR Metro Area
2909                                                      <NA>
2910                                                      <NA>
2911                               Jacksonville, FL Metro Area
2912                      Providence-Warwick, RI-MA Metro Area
2913             San Diego-Chula Vista-Carlsbad, CA Metro Area
2914                    San Juan-Bayamón-Caguas, PR Metro Area
2915                             Salt Lake City, UT Metro Area
2916                  Orlando-Kissimmee-Sanford, FL Metro Area
2917            Tampa-St. Petersburg-Clearwater, FL Metro Area
2918          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2919                 Boston-Cambridge-Newton, MA-NH Metro Area
2920        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2921             Los Angeles-Long Beach-Anaheim, CA Metro Area
2922          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2923                          Aguadilla-Isabela, PR Metro Area
2924                                   Key West, FL Micro Area
2925           Houston-The Woodlands-Sugar Land, TX Metro Area
2926                  San Antonio-New Braunfels, TX Metro Area
2927              North Port-Sarasota-Bradenton, FL Metro Area
2928                      Providence-Warwick, RI-MA Metro Area
2929          Hartford-East Hartford-Middletown, CT Metro Area
2930          Hartford-East Hartford-Middletown, CT Metro Area
2931                 Boston-Cambridge-Newton, MA-NH Metro Area
2932          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2933                      Providence-Warwick, RI-MA Metro Area
2934                  Orlando-Kissimmee-Sanford, FL Metro Area
2935        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2936             Los Angeles-Long Beach-Anaheim, CA Metro Area
2937                  Orlando-Kissimmee-Sanford, FL Metro Area
2938          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2939          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2940        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2941                 Boston-Cambridge-Newton, MA-NH Metro Area
2942          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2943                               Raleigh-Cary, NC Metro Area
2944          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2945          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2946                             Salt Lake City, UT Metro Area
2947                        Buffalo-Cheektowaga, NY Metro Area
2948                Charleston-North Charleston, SC Metro Area
2949                      Grand Rapids-Kentwood, MI Metro Area
2950          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2951                      Providence-Warwick, RI-MA Metro Area
2952              North Port-Sarasota-Bradenton, FL Metro Area
2953        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2954                    Detroit-Warren-Dearborn, MI Metro Area
2955                             Salt Lake City, UT Metro Area
2956           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2957           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2958                             Salt Lake City, UT Metro Area
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2960        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2961        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2962        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2963                    Detroit-Warren-Dearborn, MI Metro Area
2964                    Detroit-Warren-Dearborn, MI Metro Area
2965           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2966           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2967           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2968           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2969                    Detroit-Warren-Dearborn, MI Metro Area
2970          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2971        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2972                           Cincinnati, OH-KY-IN Metro Area
2973                             Salt Lake City, UT Metro Area
2974                             Salt Lake City, UT Metro Area
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2976           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2977                    Detroit-Warren-Dearborn, MI Metro Area
2978                               Cedar Rapids, IA Metro Area
2979                                   Fargo, ND-MN Metro Area
2980                               Raleigh-Cary, NC Metro Area
2981             Fayetteville-Springdale-Rogers, AR Metro Area
2982        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2983                               Raleigh-Cary, NC Metro Area
2984       Little Rock-North Little Rock-Conway, AR Metro Area
2985                  Orlando-Kissimmee-Sanford, FL Metro Area
2986                    Portland-South Portland, ME Metro Area
2987                                   Syracuse, NY Metro Area
2988               Las Vegas-Henderson-Paradise, NV Metro Area
2989                          Trenton-Princeton, NJ Metro Area
2990                  Orlando-Kissimmee-Sanford, FL Metro Area
2991                      Cape Coral-Fort Myers, FL Metro Area
2992                     Denver-Aurora-Lakewood, CO Metro Area
2993                     Denver-Aurora-Lakewood, CO Metro Area
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2995             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2996                                Spartanburg, SC Metro Area
2997     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2998          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3000                Dallas-Fort Worth-Arlington, TX Metro Area
3001        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3002                Dallas-Fort Worth-Arlington, TX Metro Area
3003                Dallas-Fort Worth-Arlington, TX Metro Area
3004                Dallas-Fort Worth-Arlington, TX Metro Area
3005               Indianapolis-Carmel-Anderson, IN Metro Area
3006                                  Asheville, NC Metro Area
3007                                Bakersfield, CA Metro Area
3008                          Birmingham-Hoover, AL Metro Area
3009                                Garden City, KS Micro Area
3010                                     Laredo, TX Metro Area
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3012         Crestview-Fort Walton Beach-Destin, FL Metro Area
3013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3014                           Cincinnati, OH-KY-IN Metro Area
3015                                   Savannah, GA Metro Area
3016                                  Knoxville, TN Metro Area
3017                                   Columbus, OH Metro Area
3018                              Evansville, IN-KY Metro Area
3019       Little Rock-North Little Rock-Conway, AR Metro Area
3020                  San Antonio-New Braunfels, TX Metro Area
3021               Austin-Round Rock-Georgetown, TX Metro Area
3022        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3023                Dallas-Fort Worth-Arlington, TX Metro Area
3024                  Orlando-Kissimmee-Sanford, FL Metro Area
3025                  Orlando-Kissimmee-Sanford, FL Metro Area
3026             Los Angeles-Long Beach-Anaheim, CA Metro Area
3027               Indianapolis-Carmel-Anderson, IN Metro Area
3028                         Milwaukee-Waukesha, WI Metro Area
3029             Los Angeles-Long Beach-Anaheim, CA Metro Area
3030             Los Angeles-Long Beach-Anaheim, CA Metro Area
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3033                                Panama City, FL Metro Area
3034                         Milwaukee-Waukesha, WI Metro Area
3035                                Tallahassee, FL Metro Area
3036         Crestview-Fort Walton Beach-Destin, FL Metro Area
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3038                 Augusta-Richmond County, GA-SC Metro Area
3039                    Albany-Schenectady-Troy, NY Metro Area
3040                 Des Moines-West Des Moines, IA Metro Area
3041                                 Huntsville, AL Metro Area
3042                                 Montgomery, AL Metro Area
3043                    Portland-South Portland, ME Metro Area
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3046              Charlotte-Concord-Gastonia, NC-SC Metro Area
3047              Charlotte-Concord-Gastonia, NC-SC Metro Area
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3049              Charlotte-Concord-Gastonia, NC-SC Metro Area
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3051                           Cincinnati, OH-KY-IN Metro Area
3052                Dallas-Fort Worth-Arlington, TX Metro Area
3053           Riverside-San Bernardino-Ontario, CA Metro Area
3054                     Denver-Aurora-Lakewood, CO Metro Area
3055                     Denver-Aurora-Lakewood, CO Metro Area
3056             San Francisco-Oakland-Berkeley, CA Metro Area
3057                               Jacksonville, FL Metro Area
3058           Riverside-San Bernardino-Ontario, CA Metro Area
3059                                   Savannah, GA Metro Area
3060                                    Lubbock, TX Metro Area
3061                       Kingsport-Bristol, TN-VA Metro Area
3062                      Providence-Warwick, RI-MA Metro Area
3063                Dallas-Fort Worth-Arlington, TX Metro Area
3064                    Seattle-Tacoma-Bellevue, WA Metro Area
3065           Houston-The Woodlands-Sugar Land, TX Metro Area
3066                     Denver-Aurora-Lakewood, CO Metro Area
3067                              Oklahoma City, OK Metro Area
3068                                     Fresno, CA Metro Area
3069                                    Medford, OR Metro Area
3070           Houston-The Woodlands-Sugar Land, TX Metro Area
3071           Houston-The Woodlands-Sugar Land, TX Metro Area
3072                                   Columbus, OH Metro Area
3073                              Oklahoma City, OK Metro Area
3074                    Detroit-Warren-Dearborn, MI Metro Area
3075                      Phoenix-Mesa-Chandler, AZ Metro Area
3076             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3077             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3078                             Kansas City, MO-KS Metro Area
3079                         Eugene-Springfield, OR Metro Area
3080                                    Medford, OR Metro Area
3081           Riverside-San Bernardino-Ontario, CA Metro Area
3082                  Santa Maria-Santa Barbara, CA Metro Area
3083                 Des Moines-West Des Moines, IA Metro Area
3084                             Salt Lake City, UT Metro Area
3085           Houston-The Woodlands-Sugar Land, TX Metro Area
3086                    Seattle-Tacoma-Bellevue, WA Metro Area
3087                                  Fairbanks, AK Metro Area
3088                                  Anchorage, AK Metro Area
3089                    Seattle-Tacoma-Bellevue, WA Metro Area
3090           Riverside-San Bernardino-Ontario, CA Metro Area
3091                                Walla Walla, WA Metro Area
3092             San Francisco-Oakland-Berkeley, CA Metro Area
3093          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3094             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3095             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3096             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3097           Houston-The Woodlands-Sugar Land, TX Metro Area
3098                                 Pittsburgh, PA Metro Area
3099             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3100                          Aguadilla-Isabela, PR Metro Area
3101             Los Angeles-Long Beach-Anaheim, CA Metro Area
3102               Austin-Round Rock-Georgetown, TX Metro Area
3103                      Cape Coral-Fort Myers, FL Metro Area
3104                   McAllen-Edinburg-Mission, TX Metro Area
3105            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3106             San Diego-Chula Vista-Carlsbad, CA Metro Area
3107             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3108                Sacramento-Roseville-Folsom, CA Metro Area
3109             Los Angeles-Long Beach-Anaheim, CA Metro Area
3110           Houston-The Woodlands-Sugar Land, TX Metro Area
3111             San Francisco-Oakland-Berkeley, CA Metro Area
3112                  Baltimore-Columbia-Towson, MD Metro Area
3113                           Cleveland-Elyria, OH Metro Area
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3116           Houston-The Woodlands-Sugar Land, TX Metro Area
3117                     Denver-Aurora-Lakewood, CO Metro Area
3118                     Denver-Aurora-Lakewood, CO Metro Area
3119           Houston-The Woodlands-Sugar Land, TX Metro Area
3120                     Denver-Aurora-Lakewood, CO Metro Area
3121             San Francisco-Oakland-Berkeley, CA Metro Area
3122             San Diego-Chula Vista-Carlsbad, CA Metro Area
3123                                Albuquerque, NM Metro Area
3124                                    Lubbock, TX Metro Area
3125               Las Vegas-Henderson-Paradise, NV Metro Area
3126                               St. Louis, MO-IL Metro Area
3127             San Francisco-Oakland-Berkeley, CA Metro Area
3128                Sacramento-Roseville-Folsom, CA Metro Area
3129 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3130            Tampa-St. Petersburg-Clearwater, FL Metro Area
3131                    Albany-Schenectady-Troy, NY Metro Area
3132               Austin-Round Rock-Georgetown, TX Metro Area
3133                                   Columbus, OH Metro Area
3134                Dallas-Fort Worth-Arlington, TX Metro Area
3135                             Kansas City, MO-KS Metro Area
3136                          Manchester-Nashua, NH Metro Area
3137                                   Syracuse, NY Metro Area
3138                         Milwaukee-Waukesha, WI Metro Area
3139        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3140                  San Antonio-New Braunfels, TX Metro Area
3141                Dallas-Fort Worth-Arlington, TX Metro Area
3142        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3144               Indianapolis-Carmel-Anderson, IN Metro Area
3145                              Memphis, TN-MS-AR Metro Area
3146        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3147                         Milwaukee-Waukesha, WI Metro Area
3148             San Diego-Chula Vista-Carlsbad, CA Metro Area
3149                                   Savannah, GA Metro Area
3150              North Port-Sarasota-Bradenton, FL Metro Area
3151                      Cape Coral-Fort Myers, FL Metro Area
3152           Houston-The Woodlands-Sugar Land, TX Metro Area
3153                             Kansas City, MO-KS Metro Area
3154                           Colorado Springs, CO Metro Area
3155                                   Montrose, CO Micro Area
3156          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3157                                Albuquerque, NM Metro Area
3158                             Corpus Christi, TX Metro Area
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3160                                    Jackson, MS Metro Area
3161                  Orlando-Kissimmee-Sanford, FL Metro Area
3162                                     Fresno, CA Metro Area
3163                              Oklahoma City, OK Metro Area
3164               Las Vegas-Henderson-Paradise, NV Metro Area
3165           Houston-The Woodlands-Sugar Land, TX Metro Area
3166                Dallas-Fort Worth-Arlington, TX Metro Area
3167                               St. Louis, MO-IL Metro Area
3168               Las Vegas-Henderson-Paradise, NV Metro Area
3169           Houston-The Woodlands-Sugar Land, TX Metro Area
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3171                  San Antonio-New Braunfels, TX Metro Area
3172           Houston-The Woodlands-Sugar Land, TX Metro Area
3173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3174                    Detroit-Warren-Dearborn, MI Metro Area
3175                          Manchester-Nashua, NH Metro Area
3176                                   Savannah, GA Metro Area
3177                                Albuquerque, NM Metro Area
3178          Hartford-East Hartford-Middletown, CT Metro Area
3179             Los Angeles-Long Beach-Anaheim, CA Metro Area
3180                  San Antonio-New Braunfels, TX Metro Area
3181            Tampa-St. Petersburg-Clearwater, FL Metro Area
3182        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3183 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3184           Houston-The Woodlands-Sugar Land, TX Metro Area
3185                             Kansas City, MO-KS Metro Area
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3187 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3188                              Oklahoma City, OK Metro Area
3189                                    Wichita, KS Metro Area
3190               Indianapolis-Carmel-Anderson, IN Metro Area
3191            Tampa-St. Petersburg-Clearwater, FL Metro Area
3192             San Francisco-Oakland-Berkeley, CA Metro Area
3193             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3195                               St. Louis, MO-IL Metro Area
3196             San Francisco-Oakland-Berkeley, CA Metro Area
3197             Los Angeles-Long Beach-Anaheim, CA Metro Area
3198                  Baltimore-Columbia-Towson, MD Metro Area
3199                                 Pittsburgh, PA Metro Area
3200                                       Reno, NV Metro Area
3201                Dallas-Fort Worth-Arlington, TX Metro Area
3202                           Colorado Springs, CO Metro Area
3203                               St. Louis, MO-IL Metro Area
3204           Houston-The Woodlands-Sugar Land, TX Metro Area
3205               Las Vegas-Henderson-Paradise, NV Metro Area
3206               Austin-Round Rock-Georgetown, TX Metro Area
3207                      Cape Coral-Fort Myers, FL Metro Area
3208                                      Tulsa, OK Metro Area
3209                               Raleigh-Cary, NC Metro Area
3210             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3211          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3212                                 Pittsburgh, PA Metro Area
3213               Indianapolis-Carmel-Anderson, IN Metro Area
3214               Las Vegas-Henderson-Paradise, NV Metro Area
3215                               St. Louis, MO-IL Metro Area
3216           Houston-The Woodlands-Sugar Land, TX Metro Area
3217           Houston-The Woodlands-Sugar Land, TX Metro Area
3218                                    El Paso, TX Metro Area
3219                                Tallahassee, FL Metro Area
3220                      Phoenix-Mesa-Chandler, AZ Metro Area
3221                                    Salinas, CA Metro Area
3222                  Santa Maria-Santa Barbara, CA Metro Area
3223           Houston-The Woodlands-Sugar Land, TX Metro Area
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3225                             Kansas City, MO-KS Metro Area
3226                                     Bangor, ME Metro Area
3227                Charleston-North Charleston, SC Metro Area
3228                                 Pittsburgh, PA Metro Area
3229                               St. Louis, MO-IL Metro Area
3230          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3231                           Cincinnati, OH-KY-IN Metro Area
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3233                           Cleveland-Elyria, OH Metro Area
3234                               Jacksonville, FL Metro Area
3235                                    Roanoke, VA Metro Area
3236                                  Asheville, NC Metro Area
3237                                  Duluth, MN-WI Metro Area
3238                                   Savannah, GA Metro Area
3239                                   Columbus, OH Metro Area
3240             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3242             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3244             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3245             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3246             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3248             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3249                                  Knoxville, TN Metro Area
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3251                            Charlottesville, VA Metro Area
3252             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3254        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3255                            Gulfport-Biloxi, MS Metro Area
3256        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3257                                  Rochester, NY Metro Area
3258                             Chattanooga, TN-GA Metro Area
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3260                                  Asheville, NC Metro Area
3261                                    Roanoke, VA Metro Area
3262                 Boston-Cambridge-Newton, MA-NH Metro Area
3263           Houston-The Woodlands-Sugar Land, TX Metro Area
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3265                                Panama City, FL Metro Area
3266                     Denver-Aurora-Lakewood, CO Metro Area
3267                Dallas-Fort Worth-Arlington, TX Metro Area
3268                    San Juan-Bayamón-Caguas, PR Metro Area
3269                           Cleveland-Elyria, OH Metro Area
3270                                                      <NA>
3271                Dallas-Fort Worth-Arlington, TX Metro Area
3272             Los Angeles-Long Beach-Anaheim, CA Metro Area
3273                Dallas-Fort Worth-Arlington, TX Metro Area
3274                    Kahului-Wailuku-Lahaina, HI Metro Area
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3276                Dallas-Fort Worth-Arlington, TX Metro Area
3277             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3278                           Cincinnati, OH-KY-IN Metro Area
3279                Dallas-Fort Worth-Arlington, TX Metro Area
3280                                       Hilo, HI Micro Area
3281                    Kahului-Wailuku-Lahaina, HI Metro Area
3282                                                      <NA>
3283                                  Anchorage, AK Metro Area
3284                                  Anchorage, AK Metro Area
3285                    Seattle-Tacoma-Bellevue, WA Metro Area
3286        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3287                      Cape Coral-Fort Myers, FL Metro Area
3288                      Cape Coral-Fort Myers, FL Metro Area
3289          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3290                                   Appleton, WI Metro Area
3291                               Cedar Rapids, IA Metro Area
3292                Sacramento-Roseville-Folsom, CA Metro Area
3293                                                      <NA>
3294                                                      <NA>
3295                                   Savannah, GA Metro Area
3296           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3297           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3298           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3299        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3300          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3301                                   Key West, FL Micro Area
3302                           Dayton-Kettering, OH Metro Area
3303                               Texarkana, TX-AR Metro Area
3304                Dallas-Fort Worth-Arlington, TX Metro Area
3305                                      Akron, OH Metro Area
3306         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3307          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3308                                Tallahassee, FL Metro Area
3309              Charlotte-Concord-Gastonia, NC-SC Metro Area
3310                           Cleveland-Elyria, OH Metro Area
3311                                   Syracuse, NY Metro Area
3312                      Phoenix-Mesa-Chandler, AZ Metro Area
3313                                  Kalispell, MT Micro Area
3314             San Francisco-Oakland-Berkeley, CA Metro Area
3315                                 Jackson, WY-ID Micro Area
3316                             Urban Honolulu, HI Metro Area
3317             Los Angeles-Long Beach-Anaheim, CA Metro Area
3318                                    Edwards, CO Micro Area
3319           Houston-The Woodlands-Sugar Land, TX Metro Area
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3321                     Denver-Aurora-Lakewood, CO Metro Area
3322 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3323             San Diego-Chula Vista-Carlsbad, CA Metro Area
3324                                Albuquerque, NM Metro Area
3325             San Diego-Chula Vista-Carlsbad, CA Metro Area
3326             Los Angeles-Long Beach-Anaheim, CA Metro Area
3327           Riverside-San Bernardino-Ontario, CA Metro Area
3328                  Orlando-Kissimmee-Sanford, FL Metro Area
3329             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3330                  Baltimore-Columbia-Towson, MD Metro Area
3331                       New Orleans-Metairie, LA Metro Area
3332             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3333             San Francisco-Oakland-Berkeley, CA Metro Area
3334                    San Juan-Bayamón-Caguas, PR Metro Area
3335           Houston-The Woodlands-Sugar Land, TX Metro Area
3336                                     Peoria, IL Metro Area
3337                 Pensacola-Ferry Pass-Brent, FL Metro Area
3338                                 Rapid City, SD Metro Area
3339                                    Bozeman, MT Micro Area
3340                Charleston-North Charleston, SC Metro Area
3341     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3342                Dallas-Fort Worth-Arlington, TX Metro Area
3343                Hilton Head Island-Bluffton, SC Metro Area
3344                                   Appleton, WI Metro Area
3345                    Omaha-Council Bluffs, NE-IA Metro Area
3346          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3347        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3348                    San Juan-Bayamón-Caguas, PR Metro Area
3349                                     Bangor, ME Metro Area
3350                      Grand Rapids-Kentwood, MI Metro Area
3351                                     Helena, MT Micro Area
3352                    Shreveport-Bossier City, LA Metro Area
3353                     Denver-Aurora-Lakewood, CO Metro Area
3354                             Salt Lake City, UT Metro Area
3355                    Kahului-Wailuku-Lahaina, HI Metro Area
3356                                 Fort Wayne, IN Metro Area
3357                      Phoenix-Mesa-Chandler, AZ Metro Area
3358                                   Richmond, VA Metro Area
3359            Tampa-St. Petersburg-Clearwater, FL Metro Area
3360                Dallas-Fort Worth-Arlington, TX Metro Area
3361                      Phoenix-Mesa-Chandler, AZ Metro Area
3362                Dallas-Fort Worth-Arlington, TX Metro Area
3363             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3364                                                      <NA>
3365                Dallas-Fort Worth-Arlington, TX Metro Area
3366                                   Key West, FL Micro Area
3367                                Tallahassee, FL Metro Area
3368                             Salt Lake City, UT Metro Area
3369        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3370                                Sioux Falls, SD Metro Area
3371                Dallas-Fort Worth-Arlington, TX Metro Area
3372                                   Missoula, MT Metro Area
3373                 Pensacola-Ferry Pass-Brent, FL Metro Area
3374                          Birmingham-Hoover, AL Metro Area
3375                                   Savannah, GA Metro Area
3376                                Idaho Falls, ID Metro Area
3377        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3378                                 Boise City, ID Metro Area
3379        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3380                           Glenwood Springs, CO Micro Area
3381           Houston-The Woodlands-Sugar Land, TX Metro Area
3382                             Urban Honolulu, HI Metro Area
3383                                    Bozeman, MT Micro Area
3384                                    Edwards, CO Micro Area
3385               Austin-Round Rock-Georgetown, TX Metro Area
3386             San Francisco-Oakland-Berkeley, CA Metro Area
3387                      Cape Coral-Fort Myers, FL Metro Area
3388             San Francisco-Oakland-Berkeley, CA Metro Area
3389                  Orlando-Kissimmee-Sanford, FL Metro Area
3390                Dallas-Fort Worth-Arlington, TX Metro Area
3391                                Panama City, FL Metro Area
3392                                 Wilmington, NC Metro Area
3393                                                      <NA>
3394                 Boston-Cambridge-Newton, MA-NH Metro Area
3395                    Kahului-Wailuku-Lahaina, HI Metro Area
3396        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3398                             Urban Honolulu, HI Metro Area
3399                             Urban Honolulu, HI Metro Area
3400                                       Hilo, HI Micro Area
3401                                   Montrose, CO Micro Area
3402                                  Lafayette, LA Metro Area
3403           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3404           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3405                              Wausau-Weston, WI Metro Area
3406                 Des Moines-West Des Moines, IA Metro Area
3407          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3408           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3409        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3410           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3411                    San Juan-Bayamón-Caguas, PR Metro Area
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3413                      Phoenix-Mesa-Chandler, AZ Metro Area
3414        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3415          Hartford-East Hartford-Middletown, CT Metro Area
3416                                  Rochester, NY Metro Area
3417             San Diego-Chula Vista-Carlsbad, CA Metro Area
3418                    Seattle-Tacoma-Bellevue, WA Metro Area
3419                                                      <NA>
3420                                                      <NA>
3421                                       Reno, NV Metro Area
3422                                    Edwards, CO Micro Area
3423                                     Fresno, CA Metro Area
3424     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3425                               Raleigh-Cary, NC Metro Area
3426                Dallas-Fort Worth-Arlington, TX Metro Area
3427                Dallas-Fort Worth-Arlington, TX Metro Area
3428                Dallas-Fort Worth-Arlington, TX Metro Area
3429                Dallas-Fort Worth-Arlington, TX Metro Area
3430               Indianapolis-Carmel-Anderson, IN Metro Area
3431                      Phoenix-Mesa-Chandler, AZ Metro Area
3432                Dallas-Fort Worth-Arlington, TX Metro Area
3433                Dallas-Fort Worth-Arlington, TX Metro Area
3434                    Seattle-Tacoma-Bellevue, WA Metro Area
3435                           Cleveland-Elyria, OH Metro Area
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3437             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3438                Dallas-Fort Worth-Arlington, TX Metro Area
3439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3440                    Seattle-Tacoma-Bellevue, WA Metro Area
3441                    Seattle-Tacoma-Bellevue, WA Metro Area
3442             San Francisco-Oakland-Berkeley, CA Metro Area
3443                                  Anchorage, AK Metro Area
3444            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3445               Austin-Round Rock-Georgetown, TX Metro Area
3446             Los Angeles-Long Beach-Anaheim, CA Metro Area
3447                  Orlando-Kissimmee-Sanford, FL Metro Area
3448                    Kahului-Wailuku-Lahaina, HI Metro Area
3449                    Seattle-Tacoma-Bellevue, WA Metro Area
3450                                       Hilo, HI Micro Area
3451                                Albuquerque, NM Metro Area
3452                Charleston-North Charleston, SC Metro Area
3453                                     Juneau, AK Micro Area
3454                                  Ketchikan, AK Micro Area
3455                       New Orleans-Metairie, LA Metro Area
3456                    Seattle-Tacoma-Bellevue, WA Metro Area
3457                                  Anchorage, AK Metro Area
3458                                       Hilo, HI Micro Area
3459            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3460                    San Juan-Bayamón-Caguas, PR Metro Area
3461                       New Orleans-Metairie, LA Metro Area
3462            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3463           Riverside-San Bernardino-Ontario, CA Metro Area
3464                               Jacksonville, FL Metro Area
3465        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3466                             Vineyard Haven, MA Micro Area
3467          Hartford-East Hartford-Middletown, CT Metro Area
3468         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3469                                    Wichita, KS Metro Area
3470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3471             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3472           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3473                                                      <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3475           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3476           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3477           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3478        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3479                             Salt Lake City, UT Metro Area
3480                             Salt Lake City, UT Metro Area
3481                              Memphis, TN-MS-AR Metro Area
3482                    Detroit-Warren-Dearborn, MI Metro Area
3483             Los Angeles-Long Beach-Anaheim, CA Metro Area
3484        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3485           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3486                                   Billings, MT Metro Area
3487                    Detroit-Warren-Dearborn, MI Metro Area
3488                             Salt Lake City, UT Metro Area
3489           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3490             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3491                Dallas-Fort Worth-Arlington, TX Metro Area
3492                                   Billings, MT Metro Area
3493                                Baton Rouge, LA Metro Area
3494                                    Jackson, MS Metro Area
3495              North Port-Sarasota-Bradenton, FL Metro Area
3496        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3497                          Birmingham-Hoover, AL Metro Area
3498                  Orlando-Kissimmee-Sanford, FL Metro Area
3499                                Columbus, GA-AL Metro Area
3500                Burlington-South Burlington, VT Metro Area
3501              Charlotte-Concord-Gastonia, NC-SC Metro Area
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3503         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3504                     Denver-Aurora-Lakewood, CO Metro Area
3505        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3506                                   Bismarck, ND Metro Area
3507                             Grand Junction, CO Metro Area
3508                San Luis Obispo-Paso Robles, CA Metro Area
3509                                  Knoxville, TN Metro Area
3510                           Glenwood Springs, CO Micro Area
3511                                    Durango, CO Micro Area
3512                             Grand Junction, CO Metro Area
3513        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3514        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3515                    Detroit-Warren-Dearborn, MI Metro Area
3516                           Cleveland-Elyria, OH Metro Area
3517                                  Kalispell, MT Micro Area
3518                             Salt Lake City, UT Metro Area
3519                        Harrisburg-Carlisle, PA Metro Area
3520                                     Hailey, ID Micro Area
3521           Riverside-San Bernardino-Ontario, CA Metro Area
3522                        Santa Rosa-Petaluma, CA Metro Area
3523                                    Edwards, CO Micro Area
3524                        Santa Rosa-Petaluma, CA Metro Area
3525             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3526                Dallas-Fort Worth-Arlington, TX Metro Area
3527                                 Jackson, WY-ID Micro Area
3528             San Diego-Chula Vista-Carlsbad, CA Metro Area
3529                                   Billings, MT Metro Area
3530                         Eugene-Springfield, OR Metro Area
3531                                   Missoula, MT Metro Area
3532                              Oklahoma City, OK Metro Area
3533                    Omaha-Council Bluffs, NE-IA Metro Area
3534                      Phoenix-Mesa-Chandler, AZ Metro Area
3535                                 Boise City, ID Metro Area
3536             San Diego-Chula Vista-Carlsbad, CA Metro Area
3537                                    El Paso, TX Metro Area
3538                  Santa Maria-Santa Barbara, CA Metro Area
3539                                   Richmond, VA Metro Area
3540                  San Antonio-New Braunfels, TX Metro Area
3541                                                      <NA>
3542                    San Juan-Bayamón-Caguas, PR Metro Area
3543           Houston-The Woodlands-Sugar Land, TX Metro Area
3544                     Denver-Aurora-Lakewood, CO Metro Area
3545                     Denver-Aurora-Lakewood, CO Metro Area
3546                Burlington-South Burlington, VT Metro Area
3547           Houston-The Woodlands-Sugar Land, TX Metro Area
3548             San Francisco-Oakland-Berkeley, CA Metro Area
3549                                       Hilo, HI Micro Area
3550                                      Kapaa, HI Micro Area
3551                             Urban Honolulu, HI Metro Area
3552             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3553                     Denver-Aurora-Lakewood, CO Metro Area
3554                    Seattle-Tacoma-Bellevue, WA Metro Area
3555              North Port-Sarasota-Bradenton, FL Metro Area
3556                                   Columbus, OH Metro Area
3557                  Orlando-Kissimmee-Sanford, FL Metro Area
3558             San Diego-Chula Vista-Carlsbad, CA Metro Area
3559                                    El Paso, TX Metro Area
3560                    Kahului-Wailuku-Lahaina, HI Metro Area
3561               Austin-Round Rock-Georgetown, TX Metro Area
3562                    Kahului-Wailuku-Lahaina, HI Metro Area
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3564             San Diego-Chula Vista-Carlsbad, CA Metro Area
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3566                             Kansas City, MO-KS Metro Area
3567               Indianapolis-Carmel-Anderson, IN Metro Area
3568                                    Midland, TX Metro Area
3569                      Phoenix-Mesa-Chandler, AZ Metro Area
3570               Indianapolis-Carmel-Anderson, IN Metro Area
3571              Charlotte-Concord-Gastonia, NC-SC Metro Area
3572                             Kansas City, MO-KS Metro Area
3573              Allentown-Bethlehem-Easton, PA-NJ Metro Area
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3575                        Buffalo-Cheektowaga, NY Metro Area
3576                                    Durango, CO Micro Area
3577           Houston-The Woodlands-Sugar Land, TX Metro Area
3578                                Springfield, MO Metro Area
3579             Los Angeles-Long Beach-Anaheim, CA Metro Area
3580                                Bloomington, IL Metro Area
3581                              Evansville, IN-KY Metro Area
3582                    Detroit-Warren-Dearborn, MI Metro Area
3583                                   Syracuse, NY Metro Area
3584                            Charlottesville, VA Metro Area
3585                                    Madison, WI Metro Area
3586                                    Madison, WI Metro Area
3587             Fayetteville-Springdale-Rogers, AR Metro Area
3588                    Detroit-Warren-Dearborn, MI Metro Area
3589           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3590                Dallas-Fort Worth-Arlington, TX Metro Area
3591                Dallas-Fort Worth-Arlington, TX Metro Area
3592                                   Richmond, VA Metro Area
3593                Dallas-Fort Worth-Arlington, TX Metro Area
3594                Dallas-Fort Worth-Arlington, TX Metro Area
3595               Austin-Round Rock-Georgetown, TX Metro Area
3596                                    Bozeman, MT Micro Area
3597                    Omaha-Council Bluffs, NE-IA Metro Area
3598                      Phoenix-Mesa-Chandler, AZ Metro Area
3599                Dallas-Fort Worth-Arlington, TX Metro Area
3600                Dallas-Fort Worth-Arlington, TX Metro Area
3601                Dallas-Fort Worth-Arlington, TX Metro Area
3602                                       Hilo, HI Micro Area
3603             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3604                Dallas-Fort Worth-Arlington, TX Metro Area
3605              Charlotte-Concord-Gastonia, NC-SC Metro Area
3606                      Phoenix-Mesa-Chandler, AZ Metro Area
3607               Austin-Round Rock-Georgetown, TX Metro Area
3608            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3609            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3610                                  Anchorage, AK Metro Area
3611                                     Tucson, AZ Metro Area
3612                                       Hilo, HI Micro Area
3613           Riverside-San Bernardino-Ontario, CA Metro Area
3614                     Spokane-Spokane Valley, WA Metro Area
3615                                                      <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3617                                    Bozeman, MT Micro Area
3618                Sacramento-Roseville-Folsom, CA Metro Area
3619                                   Syracuse, NY Metro Area
3620             Fayetteville-Springdale-Rogers, AR Metro Area
3621                    Detroit-Warren-Dearborn, MI Metro Area
3622                                 Boise City, ID Metro Area
3623           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3624        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3625                             Chattanooga, TN-GA Metro Area
3626                      College Station-Bryan, TX Metro Area
3627                              Evansville, IN-KY Metro Area
3628                                     Mobile, AL Metro Area
3629        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3631             Louisville/Jefferson County, KY-IN Metro Area
3632                Dallas-Fort Worth-Arlington, TX Metro Area
3633        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3635                    Omaha-Council Bluffs, NE-IA Metro Area
3636                 Pensacola-Ferry Pass-Brent, FL Metro Area
3637              Charlotte-Concord-Gastonia, NC-SC Metro Area
3638              Charlotte-Concord-Gastonia, NC-SC Metro Area
3639                                  Knoxville, TN Metro Area
3640             San Francisco-Oakland-Berkeley, CA Metro Area
3641                             Salt Lake City, UT Metro Area
3642                    South Bend-Mishawaka, IN-MI Metro Area
3643                      Grand Rapids-Kentwood, MI Metro Area
3644                              Memphis, TN-MS-AR Metro Area
3645     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3646             San Diego-Chula Vista-Carlsbad, CA Metro Area
3647                                 Rapid City, SD Metro Area
3648                           Glenwood Springs, CO Micro Area
3649                     Denver-Aurora-Lakewood, CO Metro Area
3650                                   Montrose, CO Micro Area
3651           Riverside-San Bernardino-Ontario, CA Metro Area
3652                                    Medford, OR Metro Area
3653                                       Bend, OR Metro Area
3654                                      Tulsa, OK Metro Area
3655                    Seattle-Tacoma-Bellevue, WA Metro Area
3656                  Santa Maria-Santa Barbara, CA Metro Area
3657                        Santa Rosa-Petaluma, CA Metro Area
3658                                 Jackson, WY-ID Micro Area
3659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3660            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3661           Houston-The Woodlands-Sugar Land, TX Metro Area
3662                     Denver-Aurora-Lakewood, CO Metro Area
3663          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3665           Houston-The Woodlands-Sugar Land, TX Metro Area
3666                                       Reno, NV Metro Area
3667               Austin-Round Rock-Georgetown, TX Metro Area
3668           Houston-The Woodlands-Sugar Land, TX Metro Area
3669                         Milwaukee-Waukesha, WI Metro Area
3670             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3671                    Kahului-Wailuku-Lahaina, HI Metro Area
3672                                Albuquerque, NM Metro Area
3673                                      Kapaa, HI Micro Area
3674                                 Pittsburgh, PA Metro Area
3675               Las Vegas-Henderson-Paradise, NV Metro Area
3676             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3677                                       Hilo, HI Micro Area
3678                  San Antonio-New Braunfels, TX Metro Area
3679                                 Huntsville, AL Metro Area
3680                      Phoenix-Mesa-Chandler, AZ Metro Area
3681                      Phoenix-Mesa-Chandler, AZ Metro Area
3682                      Grand Rapids-Kentwood, MI Metro Area
3683                                Spartanburg, SC Metro Area
3684                Dallas-Fort Worth-Arlington, TX Metro Area
3685           Houston-The Woodlands-Sugar Land, TX Metro Area
3686                           Cleveland-Elyria, OH Metro Area
3687                                   Savannah, GA Metro Area
3688                    South Bend-Mishawaka, IN-MI Metro Area
3689          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3690          Hartford-East Hartford-Middletown, CT Metro Area
3691                           Dayton-Kettering, OH Metro Area
3692                                     Mobile, AL Metro Area
3693                                  Knoxville, TN Metro Area
3694                           Dayton-Kettering, OH Metro Area
3695     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3696                                  Knoxville, TN Metro Area
3697           Houston-The Woodlands-Sugar Land, TX Metro Area
3698                                   Columbia, SC Metro Area
3699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3700                Dallas-Fort Worth-Arlington, TX Metro Area
3701                Dallas-Fort Worth-Arlington, TX Metro Area
3702                 Des Moines-West Des Moines, IA Metro Area
3703             San Diego-Chula Vista-Carlsbad, CA Metro Area
3704                Dallas-Fort Worth-Arlington, TX Metro Area
3705                Charleston-North Charleston, SC Metro Area
3706                                   Key West, FL Micro Area
3707                                Spartanburg, SC Metro Area
3708                                                      <NA>
3709                             Urban Honolulu, HI Metro Area
3710               Indianapolis-Carmel-Anderson, IN Metro Area
3711                              Oklahoma City, OK Metro Area
3712                  San Antonio-New Braunfels, TX Metro Area
3713                  Santa Maria-Santa Barbara, CA Metro Area
3714                Dallas-Fort Worth-Arlington, TX Metro Area
3715                                 Jackson, WY-ID Micro Area
3716             Los Angeles-Long Beach-Anaheim, CA Metro Area
3717             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3718             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3719          Hartford-East Hartford-Middletown, CT Metro Area
3720        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3721                Dallas-Fort Worth-Arlington, TX Metro Area
3722               Austin-Round Rock-Georgetown, TX Metro Area
3723              Charlotte-Concord-Gastonia, NC-SC Metro Area
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3725                                                      <NA>
3726                                     Juneau, AK Micro Area
3727                                  Anchorage, AK Metro Area
3728                                  Rochester, NY Metro Area
3729        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3731          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3732                                    Madison, WI Metro Area
3733                    Detroit-Warren-Dearborn, MI Metro Area
3734                      Providence-Warwick, RI-MA Metro Area
3735                                   Syracuse, NY Metro Area
3736                                  Lafayette, LA Metro Area
3737                                Tallahassee, FL Metro Area
3738        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3739                  Orlando-Kissimmee-Sanford, FL Metro Area
3740              Charlotte-Concord-Gastonia, NC-SC Metro Area
3741                               Cedar Rapids, IA Metro Area
3742                              Memphis, TN-MS-AR Metro Area
3743                        Buffalo-Cheektowaga, NY Metro Area
3744                      Grand Rapids-Kentwood, MI Metro Area
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3747                                  Manhattan, KS Metro Area
3748                                     Tucson, AZ Metro Area
3749                                   Montrose, CO Micro Area
3750                     Denver-Aurora-Lakewood, CO Metro Area
3751                     Scranton--Wilkes-Barre, PA Metro Area
3752                                   Syracuse, NY Metro Area
3753                                 Jackson, WY-ID Micro Area
3754                                    Roswell, NM Micro Area
3755                     Denver-Aurora-Lakewood, CO Metro Area
3756                                    Bozeman, MT Micro Area
3757                             Grand Junction, CO Metro Area
3758                                  Anchorage, AK Metro Area
3759             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3760           Houston-The Woodlands-Sugar Land, TX Metro Area
3761                Sacramento-Roseville-Folsom, CA Metro Area
3762                                Albuquerque, NM Metro Area
3763                             Urban Honolulu, HI Metro Area
3764                               Raleigh-Cary, NC Metro Area
3765                  Baltimore-Columbia-Towson, MD Metro Area
3766             San Diego-Chula Vista-Carlsbad, CA Metro Area
3767             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3768                                Albuquerque, NM Metro Area
3769              North Port-Sarasota-Bradenton, FL Metro Area
3770                    Albany-Schenectady-Troy, NY Metro Area
3771                     Denver-Aurora-Lakewood, CO Metro Area
3772            Tampa-St. Petersburg-Clearwater, FL Metro Area
3773                             Salt Lake City, UT Metro Area
3774                          Birmingham-Hoover, AL Metro Area
3775                                   Columbus, OH Metro Area
3776             Louisville/Jefferson County, KY-IN Metro Area
3777                        Buffalo-Cheektowaga, NY Metro Area
3778                  San Antonio-New Braunfels, TX Metro Area
3779                      Phoenix-Mesa-Chandler, AZ Metro Area
3780                                   Columbus, OH Metro Area
3781            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3782                  Orlando-Kissimmee-Sanford, FL Metro Area
3783            Tampa-St. Petersburg-Clearwater, FL Metro Area
3784            Tampa-St. Petersburg-Clearwater, FL Metro Area
3785                Dallas-Fort Worth-Arlington, TX Metro Area
3786             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3787                        Buffalo-Cheektowaga, NY Metro Area
3788             Louisville/Jefferson County, KY-IN Metro Area
3789        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3790                Dallas-Fort Worth-Arlington, TX Metro Area
3791           Houston-The Woodlands-Sugar Land, TX Metro Area
3792                               St. Louis, MO-IL Metro Area
3793                Sacramento-Roseville-Folsom, CA Metro Area
3794                               Cedar Rapids, IA Metro Area
3795                                   Fargo, ND-MN Metro Area
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3797           Houston-The Woodlands-Sugar Land, TX Metro Area
3798                               Cedar Rapids, IA Metro Area
3799                                   Fargo, ND-MN Metro Area
3800                      Grand Rapids-Kentwood, MI Metro Area
3801                           Dayton-Kettering, OH Metro Area
3802                                 Pittsburgh, PA Metro Area
3803                                    Roanoke, VA Metro Area
3804                                 Huntsville, AL Metro Area
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3807             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3808              Charlotte-Concord-Gastonia, NC-SC Metro Area
3809          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3810                  Orlando-Kissimmee-Sanford, FL Metro Area
3811          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3812                               Worcester, MA-CT Metro Area
3813                               Worcester, MA-CT Metro Area
3814        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3815          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3816                                                      <NA>
3817                    San Juan-Bayamón-Caguas, PR Metro Area
3818           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3819                  Orlando-Kissimmee-Sanford, FL Metro Area
3820                      Cape Coral-Fort Myers, FL Metro Area
3821                                Sioux Falls, SD Metro Area
3822                      Brownsville-Harlingen, TX Metro Area
3823           Riverside-San Bernardino-Ontario, CA Metro Area
3824               Las Vegas-Henderson-Paradise, NV Metro Area
3825               Las Vegas-Henderson-Paradise, NV Metro Area
3826               Las Vegas-Henderson-Paradise, NV Metro Area
3827                  Orlando-Kissimmee-Sanford, FL Metro Area
3828                  Orlando-Kissimmee-Sanford, FL Metro Area
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3830                      Cape Coral-Fort Myers, FL Metro Area
3831                               St. Louis, MO-IL Metro Area
3832                           Cleveland-Elyria, OH Metro Area
3833           Riverside-San Bernardino-Ontario, CA Metro Area
3834                          Trenton-Princeton, NJ Metro Area
3835          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3836                  Orlando-Kissimmee-Sanford, FL Metro Area
3837                      Cape Coral-Fort Myers, FL Metro Area
3838          Hartford-East Hartford-Middletown, CT Metro Area
3839                          Trenton-Princeton, NJ Metro Area
3840          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3841                  Orlando-Kissimmee-Sanford, FL Metro Area
3842            Tampa-St. Petersburg-Clearwater, FL Metro Area
3843            Tampa-St. Petersburg-Clearwater, FL Metro Area
3844                      Grand Rapids-Kentwood, MI Metro Area
3845           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3846             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3847        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3848            Tampa-St. Petersburg-Clearwater, FL Metro Area
3849        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3850        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3851            Tampa-St. Petersburg-Clearwater, FL Metro Area
3852                      Cape Coral-Fort Myers, FL Metro Area
3853             Los Angeles-Long Beach-Anaheim, CA Metro Area
3854                    Atlantic City-Hammonton, NJ Metro Area
3855             Louisville/Jefferson County, KY-IN Metro Area
3856                 Pensacola-Ferry Pass-Brent, FL Metro Area
3857                           Cleveland-Elyria, OH Metro Area
3858                                 Pittsburgh, PA Metro Area
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3861                    Atlantic City-Hammonton, NJ Metro Area
3862                          Manchester-Nashua, NH Metro Area
3863                                                      <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3865                                 Pittsburgh, PA Metro Area
3866          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3867                  Orlando-Kissimmee-Sanford, FL Metro Area
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3870                    Atlantic City-Hammonton, NJ Metro Area
3871                                 Pittsburgh, PA Metro Area
3872        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3874                                    Salinas, CA Metro Area
3875                                Bakersfield, CA Metro Area
3876                                   Billings, MT Metro Area
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3878                             Kansas City, MO-KS Metro Area
3879           Houston-The Woodlands-Sugar Land, TX Metro Area
3880             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3881                             Urban Honolulu, HI Metro Area
3882                              Oklahoma City, OK Metro Area
3883          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3885        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3886                                  Asheville, NC Metro Area
3887               Indianapolis-Carmel-Anderson, IN Metro Area
3888        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3889        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3890        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3891                                    Lubbock, TX Metro Area
3892                                                      <NA>
3893                                    Edwards, CO Micro Area
3894            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3895                             Salt Lake City, UT Metro Area
3896                                   Richmond, VA Metro Area
3897                                       Hilo, HI Micro Area
3898                               St. Louis, MO-IL Metro Area
3899                                  Rochester, MN Metro Area
3900                                  Green Bay, WI Metro Area
3901                             Kansas City, MO-KS Metro Area
3902                              Oklahoma City, OK Metro Area
3903              North Port-Sarasota-Bradenton, FL Metro Area
3904             Fayetteville-Springdale-Rogers, AR Metro Area
3905                 Des Moines-West Des Moines, IA Metro Area
3906                                                      <NA>
3907                                  Anchorage, AK Metro Area
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3909          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3910          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3911                           Cincinnati, OH-KY-IN Metro Area
3912                                    El Paso, TX Metro Area
3913                                  Rochester, NY Metro Area
3914                           Cincinnati, OH-KY-IN Metro Area
3915                             Salt Lake City, UT Metro Area
3916        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3917     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3918                Dallas-Fort Worth-Arlington, TX Metro Area
3919                Dallas-Fort Worth-Arlington, TX Metro Area
3920              Charlotte-Concord-Gastonia, NC-SC Metro Area
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3922     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3924                                Spartanburg, SC Metro Area
3925                                    Madison, WI Metro Area
3926     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3927                     Denver-Aurora-Lakewood, CO Metro Area
3928                           Glenwood Springs, CO Micro Area
3929                                  Kalispell, MT Micro Area
3930                                    Medford, OR Metro Area
3931                                      Minot, ND Micro Area
3932                                Idaho Falls, ID Metro Area
3933                                   Santa Fe, NM Metro Area
3934                                    Medford, OR Metro Area
3935             San Francisco-Oakland-Berkeley, CA Metro Area
3936             Los Angeles-Long Beach-Anaheim, CA Metro Area
3937                     Denver-Aurora-Lakewood, CO Metro Area
3938           Houston-The Woodlands-Sugar Land, TX Metro Area
3939               Indianapolis-Carmel-Anderson, IN Metro Area
3940             Los Angeles-Long Beach-Anaheim, CA Metro Area
3941               Las Vegas-Henderson-Paradise, NV Metro Area
3942                      Phoenix-Mesa-Chandler, AZ Metro Area
3943                               Jacksonville, FL Metro Area
3944           Houston-The Woodlands-Sugar Land, TX Metro Area
3945                Dallas-Fort Worth-Arlington, TX Metro Area
3946                          Steamboat Springs, CO Micro Area
3947                               Raleigh-Cary, NC Metro Area
3948                      Cape Coral-Fort Myers, FL Metro Area
3949                                      Tulsa, OK Metro Area
3950           Houston-The Woodlands-Sugar Land, TX Metro Area
3951                      Phoenix-Mesa-Chandler, AZ Metro Area
3952                      Phoenix-Mesa-Chandler, AZ Metro Area
3953                                Bloomington, IL Metro Area
3954        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3955                Hilton Head Island-Bluffton, SC Metro Area
3956          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3957                                   Key West, FL Micro Area
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3959                         Milwaukee-Waukesha, WI Metro Area
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3961           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3962                Dallas-Fort Worth-Arlington, TX Metro Area
3963              Charlotte-Concord-Gastonia, NC-SC Metro Area
3964              Charlotte-Concord-Gastonia, NC-SC Metro Area
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3967                Dallas-Fort Worth-Arlington, TX Metro Area
3968               Austin-Round Rock-Georgetown, TX Metro Area
3969          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3970        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3971                                      Tulsa, OK Metro Area
3972                Dallas-Fort Worth-Arlington, TX Metro Area
3973             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3974                      Phoenix-Mesa-Chandler, AZ Metro Area
3975              Charlotte-Concord-Gastonia, NC-SC Metro Area
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3978              Charlotte-Concord-Gastonia, NC-SC Metro Area
3979              Charlotte-Concord-Gastonia, NC-SC Metro Area
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3981             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3982                                   Columbus, OH Metro Area
3983                Dallas-Fort Worth-Arlington, TX Metro Area
3984              Charlotte-Concord-Gastonia, NC-SC Metro Area
3985              Charlotte-Concord-Gastonia, NC-SC Metro Area
3986                    Seattle-Tacoma-Bellevue, WA Metro Area
3987            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3988            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3989                        Buffalo-Cheektowaga, NY Metro Area
3990          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3992          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3993             Louisville/Jefferson County, KY-IN Metro Area
3994                    Detroit-Warren-Dearborn, MI Metro Area
3995                    Detroit-Warren-Dearborn, MI Metro Area
3996        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3997           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3998                           Cincinnati, OH-KY-IN Metro Area
3999                    Detroit-Warren-Dearborn, MI Metro Area
4000                    Detroit-Warren-Dearborn, MI Metro Area
4001                    San Juan-Bayamón-Caguas, PR Metro Area
4002                                   Syracuse, NY Metro Area
4003                                      Tulsa, OK Metro Area
4004             San Diego-Chula Vista-Carlsbad, CA Metro Area
4005             Los Angeles-Long Beach-Anaheim, CA Metro Area
4006                      Cape Coral-Fort Myers, FL Metro Area
4007                Sacramento-Roseville-Folsom, CA Metro Area
4008            Davenport-Moline-Rock Island, IA-IL Metro Area
4009                          Birmingham-Hoover, AL Metro Area
4010                                  Knoxville, TN Metro Area
4011                                     Tucson, AZ Metro Area
4012            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4013               Indianapolis-Carmel-Anderson, IN Metro Area
4014             San Diego-Chula Vista-Carlsbad, CA Metro Area
4015                 Augusta-Richmond County, GA-SC Metro Area
4016          Hartford-East Hartford-Middletown, CT Metro Area
4017                               Raleigh-Cary, NC Metro Area
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4019                                   Key West, FL Micro Area
4020               Indianapolis-Carmel-Anderson, IN Metro Area
4021                                  Anchorage, AK Metro Area
4022             Fayetteville-Springdale-Rogers, AR Metro Area
4023                Charleston-North Charleston, SC Metro Area
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4025                    Albany-Schenectady-Troy, NY Metro Area
4026                                    Roanoke, VA Metro Area
4027           Houston-The Woodlands-Sugar Land, TX Metro Area
4028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4029           Houston-The Woodlands-Sugar Land, TX Metro Area
4030             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4032                Dallas-Fort Worth-Arlington, TX Metro Area
4033                                       Hilo, HI Micro Area
4034                                 Pittsburgh, PA Metro Area
4035                    Shreveport-Bossier City, LA Metro Area
4036        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4037          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4038        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4039                                  Flagstaff, AZ Metro Area
4040                                    Bozeman, MT Micro Area
4041                     Denver-Aurora-Lakewood, CO Metro Area
4042              Charlotte-Concord-Gastonia, NC-SC Metro Area
4043                                 Pittsburgh, PA Metro Area
4044                Charleston-North Charleston, SC Metro Area
4045             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4046                  Orlando-Kissimmee-Sanford, FL Metro Area
4047                                      Ponce, PR Metro Area
4048                                    Jackson, MS Metro Area
4049                      Grand Rapids-Kentwood, MI Metro Area
4050                  San Antonio-New Braunfels, TX Metro Area
4051            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4052                                  Anchorage, AK Metro Area
4053                                     Juneau, AK Micro Area
4054                                Spartanburg, SC Metro Area
4055                             Salt Lake City, UT Metro Area
4056                                 Wilmington, NC Metro Area
4057                    San Juan-Bayamón-Caguas, PR Metro Area
4058                               St. Louis, MO-IL Metro Area
4059                               Jacksonville, FL Metro Area
4060                                   Savannah, GA Metro Area
4061                                       Reno, NV Metro Area
4062                               St. Louis, MO-IL Metro Area
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4064                           Colorado Springs, CO Metro Area
4065             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4066        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4067                                                      <NA>
4068                 Boston-Cambridge-Newton, MA-NH Metro Area
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4070             Los Angeles-Long Beach-Anaheim, CA Metro Area
4071                  Baltimore-Columbia-Towson, MD Metro Area
4072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4073                 Boston-Cambridge-Newton, MA-NH Metro Area
4074                          Steamboat Springs, CO Micro Area
4075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4076           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4077                              Memphis, TN-MS-AR Metro Area
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4079                                Springfield, MO Metro Area
4080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4081                          Birmingham-Hoover, AL Metro Area
4082                Burlington-South Burlington, VT Metro Area
4083              Charlotte-Concord-Gastonia, NC-SC Metro Area
4084                    Portland-South Portland, ME Metro Area
4085                Dallas-Fort Worth-Arlington, TX Metro Area
4086                                Columbus, GA-AL Metro Area
4087                                      Tulsa, OK Metro Area
4088           Houston-The Woodlands-Sugar Land, TX Metro Area
4089               Indianapolis-Carmel-Anderson, IN Metro Area
4090                                 Pittsburgh, PA Metro Area
4091                      Phoenix-Mesa-Chandler, AZ Metro Area
4092                    Portland-South Portland, ME Metro Area
4093               Austin-Round Rock-Georgetown, TX Metro Area
4094              North Port-Sarasota-Bradenton, FL Metro Area
4095                                    Wichita, KS Metro Area
4096        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4097                                Bloomington, IL Metro Area
4098                  Orlando-Kissimmee-Sanford, FL Metro Area
4099           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4100                              Memphis, TN-MS-AR Metro Area
4101                                 Huntsville, AL Metro Area
4102                                    Madison, WI Metro Area
4103                 Pensacola-Ferry Pass-Brent, FL Metro Area
4104           Poughkeepsie-Newburgh-Middletown, NY Metro Area
4105                      Providence-Warwick, RI-MA Metro Area
4106                  Orlando-Kissimmee-Sanford, FL Metro Area
4107                      Cape Coral-Fort Myers, FL Metro Area
4108                    Detroit-Warren-Dearborn, MI Metro Area
4109                  San Antonio-New Braunfels, TX Metro Area
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4111        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4112                                  Ketchikan, AK Micro Area
4113                                  Anchorage, AK Metro Area
4114           Riverside-San Bernardino-Ontario, CA Metro Area
4115                 Boston-Cambridge-Newton, MA-NH Metro Area
4116             Los Angeles-Long Beach-Anaheim, CA Metro Area
4117                             Salt Lake City, UT Metro Area
4118           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4119                             Salt Lake City, UT Metro Area
4120                             Salt Lake City, UT Metro Area
4121           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4122                           Cincinnati, OH-KY-IN Metro Area
4123                                Springfield, MO Metro Area
4124                                    Jackson, MS Metro Area
4125                 Pensacola-Ferry Pass-Brent, FL Metro Area
4126                      Providence-Warwick, RI-MA Metro Area
4127               Indianapolis-Carmel-Anderson, IN Metro Area
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4129                                   Columbia, MO Metro Area
4130                                  Marquette, MI Micro Area
4131        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4132                                 Jackson, WY-ID Micro Area
4133                Dallas-Fort Worth-Arlington, TX Metro Area
4134                     Denver-Aurora-Lakewood, CO Metro Area
4135                      Grand Rapids-Kentwood, MI Metro Area
4136        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4137                     Denver-Aurora-Lakewood, CO Metro Area
4138           Houston-The Woodlands-Sugar Land, TX Metro Area
4139                    Kahului-Wailuku-Lahaina, HI Metro Area
4140                                       Hilo, HI Micro Area
4141                           Colorado Springs, CO Metro Area
4142             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4144                Sacramento-Roseville-Folsom, CA Metro Area
4145             Los Angeles-Long Beach-Anaheim, CA Metro Area
4146                          Birmingham-Hoover, AL Metro Area
4147                               Jacksonville, FL Metro Area
4148 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4149                      Providence-Warwick, RI-MA Metro Area
4150                                Sioux Falls, SD Metro Area
4151                          Lexington-Fayette, KY Metro Area
4152           Houston-The Woodlands-Sugar Land, TX Metro Area
4153           Houston-The Woodlands-Sugar Land, TX Metro Area
4154                                 Jackson, WY-ID Micro Area
4155                             Urban Honolulu, HI Metro Area
4156     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4157                                     Bangor, ME Metro Area
4158                Burlington-South Burlington, VT Metro Area
4159                                  Rochester, NY Metro Area
4160                                   Syracuse, NY Metro Area
4161                 Boston-Cambridge-Newton, MA-NH Metro Area
4162              Charlotte-Concord-Gastonia, NC-SC Metro Area
4163                                   Amarillo, TX Metro Area
4164             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4165                Dallas-Fort Worth-Arlington, TX Metro Area
4166              Charlotte-Concord-Gastonia, NC-SC Metro Area
4167               Austin-Round Rock-Georgetown, TX Metro Area
4168        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4169                             Kansas City, MO-KS Metro Area
4170                              Memphis, TN-MS-AR Metro Area
4171                               St. Louis, MO-IL Metro Area
4172              Charlotte-Concord-Gastonia, NC-SC Metro Area
4173                Dallas-Fort Worth-Arlington, TX Metro Area
4174                                    El Paso, TX Metro Area
4175                Dallas-Fort Worth-Arlington, TX Metro Area
4176    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4177             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4178                Dallas-Fort Worth-Arlington, TX Metro Area
4179    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4180              Charlotte-Concord-Gastonia, NC-SC Metro Area
4181    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4182    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4183                Dallas-Fort Worth-Arlington, TX Metro Area
4184            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4185                    Seattle-Tacoma-Bellevue, WA Metro Area
4186                                   Syracuse, NY Metro Area
4187                    Albany-Schenectady-Troy, NY Metro Area
4188                Charleston-North Charleston, SC Metro Area
4189            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4190        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4191                Charleston-North Charleston, SC Metro Area
4192               Las Vegas-Henderson-Paradise, NV Metro Area
4193                                   Richmond, VA Metro Area
4194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4195               Las Vegas-Henderson-Paradise, NV Metro Area
4196                 Boston-Cambridge-Newton, MA-NH Metro Area
4197                    Detroit-Warren-Dearborn, MI Metro Area
4198        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4199        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4200                    Detroit-Warren-Dearborn, MI Metro Area
4201                                  Fairbanks, AK Metro Area
4202                    Detroit-Warren-Dearborn, MI Metro Area
4203           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4204          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4205                               Raleigh-Cary, NC Metro Area
4206                      Grand Rapids-Kentwood, MI Metro Area
4207    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4208        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4209                  Orlando-Kissimmee-Sanford, FL Metro Area
4210                                   Syracuse, NY Metro Area
4211   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4212             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4213               Austin-Round Rock-Georgetown, TX Metro Area
4214                            Gulfport-Biloxi, MS Metro Area
4215                                    Midland, TX Metro Area
4216                Dallas-Fort Worth-Arlington, TX Metro Area
4217                Dallas-Fort Worth-Arlington, TX Metro Area
4218                          Lexington-Fayette, KY Metro Area
4219                             Grand Junction, CO Metro Area
4220        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4221                    San Juan-Bayamón-Caguas, PR Metro Area
4222                                                      <NA>
4223            Tampa-St. Petersburg-Clearwater, FL Metro Area
4224                    San Juan-Bayamón-Caguas, PR Metro Area
4225          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4226                    Atlantic City-Hammonton, NJ Metro Area
4227              Charlotte-Concord-Gastonia, NC-SC Metro Area
4228   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4229                       Lansing-East Lansing, MI Metro Area
4230                                 Pittsburgh, PA Metro Area
4231              Charlotte-Concord-Gastonia, NC-SC Metro Area
4232   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4233   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4234           Houston-The Woodlands-Sugar Land, TX Metro Area
4235                      Phoenix-Mesa-Chandler, AZ Metro Area
4236           Houston-The Woodlands-Sugar Land, TX Metro Area
4237             San Francisco-Oakland-Berkeley, CA Metro Area
4238                     Denver-Aurora-Lakewood, CO Metro Area
4239                             Corpus Christi, TX Metro Area
4240                         Eugene-Springfield, OR Metro Area
4241                                       Bend, OR Metro Area
4242           Houston-The Woodlands-Sugar Land, TX Metro Area
4243             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4244                                      Flint, MI Metro Area
4245                                 Huntsville, AL Metro Area
4246                      Providence-Warwick, RI-MA Metro Area
4247                San Luis Obispo-Paso Robles, CA Metro Area
4248                      Phoenix-Mesa-Chandler, AZ Metro Area
4249                                       Bend, OR Metro Area
4250                                       Reno, NV Metro Area
4251           Houston-The Woodlands-Sugar Land, TX Metro Area
4252                    Seattle-Tacoma-Bellevue, WA Metro Area
4253                    Seattle-Tacoma-Bellevue, WA Metro Area
4254             Los Angeles-Long Beach-Anaheim, CA Metro Area
4255          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4256   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4257          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4258             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4259                           Cleveland-Elyria, OH Metro Area
4260                     Denver-Aurora-Lakewood, CO Metro Area
4261                     Denver-Aurora-Lakewood, CO Metro Area
4262             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4263   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4264   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4265             San Francisco-Oakland-Berkeley, CA Metro Area
4266                     Denver-Aurora-Lakewood, CO Metro Area
4267   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4268           Houston-The Woodlands-Sugar Land, TX Metro Area
4269             San Francisco-Oakland-Berkeley, CA Metro Area
4270             San Francisco-Oakland-Berkeley, CA Metro Area
4271                     Denver-Aurora-Lakewood, CO Metro Area
4272   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4273             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4274                      Phoenix-Mesa-Chandler, AZ Metro Area
4275             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4276                Dallas-Fort Worth-Arlington, TX Metro Area
4277              Charlotte-Concord-Gastonia, NC-SC Metro Area
4278        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4279                               St. Louis, MO-IL Metro Area
4280                    Detroit-Warren-Dearborn, MI Metro Area
4281                               St. Louis, MO-IL Metro Area
4282                           Colorado Springs, CO Metro Area
4283             San Diego-Chula Vista-Carlsbad, CA Metro Area
4284             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4285                Dallas-Fort Worth-Arlington, TX Metro Area
4286           Houston-The Woodlands-Sugar Land, TX Metro Area
4287             Los Angeles-Long Beach-Anaheim, CA Metro Area
4288                     Denver-Aurora-Lakewood, CO Metro Area
4289                  Baltimore-Columbia-Towson, MD Metro Area
4290             Los Angeles-Long Beach-Anaheim, CA Metro Area
4291                Dallas-Fort Worth-Arlington, TX Metro Area
4292             Los Angeles-Long Beach-Anaheim, CA Metro Area
4293             Los Angeles-Long Beach-Anaheim, CA Metro Area
4294             Los Angeles-Long Beach-Anaheim, CA Metro Area
4295                      Phoenix-Mesa-Chandler, AZ Metro Area
4296             Los Angeles-Long Beach-Anaheim, CA Metro Area
4297               Austin-Round Rock-Georgetown, TX Metro Area
4298   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4299           Houston-The Woodlands-Sugar Land, TX Metro Area
4300  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4301                                    Jackson, MS Metro Area
4302              North Port-Sarasota-Bradenton, FL Metro Area
4303   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4304           Houston-The Woodlands-Sugar Land, TX Metro Area
4305                                    Bozeman, MT Micro Area
4306           Houston-The Woodlands-Sugar Land, TX Metro Area
4307         Crestview-Fort Walton Beach-Destin, FL Metro Area
4308   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4309                                   Richmond, VA Metro Area
4310                                 Wilmington, NC Metro Area
4311    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4312                               Raleigh-Cary, NC Metro Area
4313   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4314                                  Asheville, NC Metro Area
4315                           Dayton-Kettering, OH Metro Area
4316                                       Erie, PA Metro Area
4317                      Grand Rapids-Kentwood, MI Metro Area
4318                      Cape Coral-Fort Myers, FL Metro Area
4319                      Cape Coral-Fort Myers, FL Metro Area
4320                      Phoenix-Mesa-Chandler, AZ Metro Area
4321  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4322                                Punta Gorda, FL Metro Area
4323            Tampa-St. Petersburg-Clearwater, FL Metro Area
4324               Las Vegas-Henderson-Paradise, NV Metro Area
4325    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4326                 Boston-Cambridge-Newton, MA-NH Metro Area
4327                                 Huntsville, AL Metro Area
4328             Fayetteville-Springdale-Rogers, AR Metro Area
4329                          New Haven-Milford, CT Metro Area
4330                Burlington-South Burlington, VT Metro Area
4331                Dallas-Fort Worth-Arlington, TX Metro Area
4332                                       Reno, NV Metro Area
4333                             Urban Honolulu, HI Metro Area
4334          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4335                        Buffalo-Cheektowaga, NY Metro Area
4336                    Detroit-Warren-Dearborn, MI Metro Area
4337                Dallas-Fort Worth-Arlington, TX Metro Area
4338   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4339                Dallas-Fort Worth-Arlington, TX Metro Area
4340             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4341                Dallas-Fort Worth-Arlington, TX Metro Area
4342                        Buffalo-Cheektowaga, NY Metro Area
4343              Charlotte-Concord-Gastonia, NC-SC Metro Area
4344                Dallas-Fort Worth-Arlington, TX Metro Area
4345                                     Juneau, AK Micro Area
4346                                   Richmond, VA Metro Area
4347           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4348                             Salt Lake City, UT Metro Area
4349                             Salt Lake City, UT Metro Area
4350           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4351                          Trenton-Princeton, NJ Metro Area
4352                        Harrisburg-Carlisle, PA Metro Area
4353                                  Knoxville, TN Metro Area
4354                                      Akron, OH Metro Area
4355   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4356                               Cedar Rapids, IA Metro Area
4357                       Lansing-East Lansing, MI Metro Area
4358   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4359            Tampa-St. Petersburg-Clearwater, FL Metro Area
4360                          Aguadilla-Isabela, PR Metro Area
4361                                   Columbus, OH Metro Area
4362        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4363            Tampa-St. Petersburg-Clearwater, FL Metro Area
4364                 Boston-Cambridge-Newton, MA-NH Metro Area
4365                                      Akron, OH Metro Area
4366                                   Columbus, OH Metro Area
4367   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4368                      Greensboro-High Point, NC Metro Area
4369                      Greensboro-High Point, NC Metro Area
4370                                Spartanburg, SC Metro Area
4371              Palm Bay-Melbourne-Titusville, FL Metro Area
4372    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4373                      Providence-Warwick, RI-MA Metro Area
4374                                  Rochester, NY Metro Area
4375                                   Syracuse, NY Metro Area
4376    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4377                      Providence-Warwick, RI-MA Metro Area
4378           Houston-The Woodlands-Sugar Land, TX Metro Area
4379        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4380                              Memphis, TN-MS-AR Metro Area
4381                 Pensacola-Ferry Pass-Brent, FL Metro Area
4382             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4383                                   Brainerd, MN Micro Area
4384                                   Bismarck, ND Metro Area
4385                                 Rapid City, SD Metro Area
4386                     Denver-Aurora-Lakewood, CO Metro Area
4387             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4388             Los Angeles-Long Beach-Anaheim, CA Metro Area
4389        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4390                                 Jackson, WY-ID Micro Area
4391            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4392                    Portland-South Portland, ME Metro Area
4393             San Francisco-Oakland-Berkeley, CA Metro Area
4394   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4395           Houston-The Woodlands-Sugar Land, TX Metro Area
4396                Dallas-Fort Worth-Arlington, TX Metro Area
4397                Dallas-Fort Worth-Arlington, TX Metro Area
4398                  Baltimore-Columbia-Towson, MD Metro Area
4399                             Kansas City, MO-KS Metro Area
4400               Austin-Round Rock-Georgetown, TX Metro Area
4401           Houston-The Woodlands-Sugar Land, TX Metro Area
4402                      Phoenix-Mesa-Chandler, AZ Metro Area
4403    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4404                Charleston-North Charleston, SC Metro Area
4405                                   Columbus, OH Metro Area
4406                                  Rochester, NY Metro Area
4407                      Greensboro-High Point, NC Metro Area
4408   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4409                                 Wilmington, NC Metro Area
4410                          Manchester-Nashua, NH Metro Area
4411             Louisville/Jefferson County, KY-IN Metro Area
4412                                   Syracuse, NY Metro Area
4413                                   Appleton, WI Metro Area
4414                 Pensacola-Ferry Pass-Brent, FL Metro Area
4415                Dallas-Fort Worth-Arlington, TX Metro Area
4416                Dallas-Fort Worth-Arlington, TX Metro Area
4417                      Phoenix-Mesa-Chandler, AZ Metro Area
4418                Dallas-Fort Worth-Arlington, TX Metro Area
4419              Charlotte-Concord-Gastonia, NC-SC Metro Area
4420                                       Reno, NV Metro Area
4421           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4422                             Salt Lake City, UT Metro Area
4423                Burlington-South Burlington, VT Metro Area
4424                     Denver-Aurora-Lakewood, CO Metro Area
4425     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4426               Las Vegas-Henderson-Paradise, NV Metro Area
4427                      Cape Coral-Fort Myers, FL Metro Area
4428        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4429  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4430                                 Pittsburgh, PA Metro Area
4431          Hartford-East Hartford-Middletown, CT Metro Area
4432                                      Flint, MI Metro Area
4433                                 Huntsville, AL Metro Area
4434    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4435   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4436                      Phoenix-Mesa-Chandler, AZ Metro Area
4437             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4438             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4439                    Seattle-Tacoma-Bellevue, WA Metro Area
4440                San Luis Obispo-Paso Robles, CA Metro Area
4441                    Seattle-Tacoma-Bellevue, WA Metro Area
4442             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4443             San Francisco-Oakland-Berkeley, CA Metro Area
4444                     Denver-Aurora-Lakewood, CO Metro Area
4445                     Denver-Aurora-Lakewood, CO Metro Area
4446           Houston-The Woodlands-Sugar Land, TX Metro Area
4447           Houston-The Woodlands-Sugar Land, TX Metro Area
4448                             Corpus Christi, TX Metro Area
4449                             Kansas City, MO-KS Metro Area
4450                  San Antonio-New Braunfels, TX Metro Area
4451                    Kahului-Wailuku-Lahaina, HI Metro Area
4452 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4453             San Francisco-Oakland-Berkeley, CA Metro Area
4454                                    Bozeman, MT Micro Area
4455 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4456                                       Reno, NV Metro Area
4457                              Memphis, TN-MS-AR Metro Area
4458   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4459   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4460                      Providence-Warwick, RI-MA Metro Area
4461             Los Angeles-Long Beach-Anaheim, CA Metro Area
4462               Las Vegas-Henderson-Paradise, NV Metro Area
4463                              Eureka-Arcata, CA Micro Area
4464                         Eugene-Springfield, OR Metro Area
4465                                    Medford, OR Metro Area
4466                         Kennewick-Richland, WA Metro Area
4467                                       Bend, OR Metro Area
4468                        Santa Rosa-Petaluma, CA Metro Area
4469                          New Haven-Milford, CT Metro Area
4470             Los Angeles-Long Beach-Anaheim, CA Metro Area
4471                  Orlando-Kissimmee-Sanford, FL Metro Area
4472                      Cape Coral-Fort Myers, FL Metro Area
4473             Los Angeles-Long Beach-Anaheim, CA Metro Area
4474             Los Angeles-Long Beach-Anaheim, CA Metro Area
4475                          New Haven-Milford, CT Metro Area
4476             Los Angeles-Long Beach-Anaheim, CA Metro Area
4477            Tampa-St. Petersburg-Clearwater, FL Metro Area
4478                                       Bend, OR Metro Area
4479             Los Angeles-Long Beach-Anaheim, CA Metro Area
4480          Hartford-East Hartford-Middletown, CT Metro Area
4481                                       Hilo, HI Micro Area
4482                                Sioux Falls, SD Metro Area
4483                                      Kapaa, HI Micro Area
4484             San Diego-Chula Vista-Carlsbad, CA Metro Area
4485           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4486             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4487                           Glenwood Springs, CO Micro Area
4488                                       Reno, NV Metro Area
4489           Houston-The Woodlands-Sugar Land, TX Metro Area
4490                                   Montrose, CO Micro Area
4491                                    Edwards, CO Micro Area
4492                          Steamboat Springs, CO Micro Area
4493                    Seattle-Tacoma-Bellevue, WA Metro Area
4494                                     Tucson, AZ Metro Area
4495          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4496                    Shreveport-Bossier City, LA Metro Area
4497         Crestview-Fort Walton Beach-Destin, FL Metro Area
4498                              Memphis, TN-MS-AR Metro Area
4499                                 Fort Wayne, IN Metro Area
4500                                    Edwards, CO Micro Area
4501                Sacramento-Roseville-Folsom, CA Metro Area
4502                     Denver-Aurora-Lakewood, CO Metro Area
4503                     Denver-Aurora-Lakewood, CO Metro Area
4504             San Francisco-Oakland-Berkeley, CA Metro Area
4505             Louisville/Jefferson County, KY-IN Metro Area
4506                                   Appleton, WI Metro Area
4507                      Phoenix-Mesa-Chandler, AZ Metro Area
4508    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4509   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4510                                   Richmond, VA Metro Area
4511          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4512                 Boston-Cambridge-Newton, MA-NH Metro Area
4513                    Detroit-Warren-Dearborn, MI Metro Area
4514                  Orlando-Kissimmee-Sanford, FL Metro Area
4515                           Colorado Springs, CO Metro Area
4516                  Orlando-Kissimmee-Sanford, FL Metro Area
4517                               Jacksonville, FL Metro Area
4518                  Orlando-Kissimmee-Sanford, FL Metro Area
4519        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4520                             Kansas City, MO-KS Metro Area
4521        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4522                             Kansas City, MO-KS Metro Area
4523             Los Angeles-Long Beach-Anaheim, CA Metro Area
4524                    Seattle-Tacoma-Bellevue, WA Metro Area
4525                     Denver-Aurora-Lakewood, CO Metro Area
4526             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4527                              Oklahoma City, OK Metro Area
4528           Riverside-San Bernardino-Ontario, CA Metro Area
4529                                       Hilo, HI Micro Area
4530           Houston-The Woodlands-Sugar Land, TX Metro Area
4531                                    Jackson, MS Metro Area
4532             Los Angeles-Long Beach-Anaheim, CA Metro Area
4533              North Port-Sarasota-Bradenton, FL Metro Area
4534            Tampa-St. Petersburg-Clearwater, FL Metro Area
4535                             Kansas City, MO-KS Metro Area
4536             Los Angeles-Long Beach-Anaheim, CA Metro Area
4537                                   Richmond, VA Metro Area
4538                           Cleveland-Elyria, OH Metro Area
4539                      Phoenix-Mesa-Chandler, AZ Metro Area
4540              Charlotte-Concord-Gastonia, NC-SC Metro Area
4541                               Worcester, MA-CT Metro Area
4542                Dallas-Fort Worth-Arlington, TX Metro Area
4543            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4544                                                      <NA>
4545          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4546          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4547                                    Bozeman, MT Micro Area
4548          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4549                             Salt Lake City, UT Metro Area
4550                    Detroit-Warren-Dearborn, MI Metro Area
4551                    Detroit-Warren-Dearborn, MI Metro Area
4552          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4553                      Brownsville-Harlingen, TX Metro Area
4554                Dallas-Fort Worth-Arlington, TX Metro Area
4555  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4556                                      Akron, OH Metro Area
4557                             Chattanooga, TN-GA Metro Area
4558                                 Wilmington, NC Metro Area
4559                           Colorado Springs, CO Metro Area
4560                                 Boise City, ID Metro Area
4561                     Denver-Aurora-Lakewood, CO Metro Area
4562                     Denver-Aurora-Lakewood, CO Metro Area
4563                     Denver-Aurora-Lakewood, CO Metro Area
4564                  San Antonio-New Braunfels, TX Metro Area
4565                  Baltimore-Columbia-Towson, MD Metro Area
4566             Louisville/Jefferson County, KY-IN Metro Area
4567                Charleston-North Charleston, SC Metro Area
4568                             Kansas City, MO-KS Metro Area
4569                         Milwaukee-Waukesha, WI Metro Area
4570               Austin-Round Rock-Georgetown, TX Metro Area
4571                 Des Moines-West Des Moines, IA Metro Area
4572             San Francisco-Oakland-Berkeley, CA Metro Area
4573             Los Angeles-Long Beach-Anaheim, CA Metro Area
4574           Houston-The Woodlands-Sugar Land, TX Metro Area
4575                    Portland-South Portland, ME Metro Area
4576               Austin-Round Rock-Georgetown, TX Metro Area
4577                                Albuquerque, NM Metro Area
4578             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4579               Austin-Round Rock-Georgetown, TX Metro Area
4580                                   Savannah, GA Metro Area
4581                              Oklahoma City, OK Metro Area
4582                  San Antonio-New Braunfels, TX Metro Area
4583                         Milwaukee-Waukesha, WI Metro Area
4584                      Phoenix-Mesa-Chandler, AZ Metro Area
4585                      Cape Coral-Fort Myers, FL Metro Area
4586                                  Duluth, MN-WI Metro Area
4587                                    Madison, WI Metro Area
4588            Tampa-St. Petersburg-Clearwater, FL Metro Area
4589        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4590             Los Angeles-Long Beach-Anaheim, CA Metro Area
4591                       New Orleans-Metairie, LA Metro Area
4592             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4593                                    Bozeman, MT Micro Area
4594                    San Juan-Bayamón-Caguas, PR Metro Area
4595                                   Richmond, VA Metro Area
4596           Riverside-San Bernardino-Ontario, CA Metro Area
4597                      Phoenix-Mesa-Chandler, AZ Metro Area
4598                      Phoenix-Mesa-Chandler, AZ Metro Area
4599             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4600                    Seattle-Tacoma-Bellevue, WA Metro Area
4601                    Detroit-Warren-Dearborn, MI Metro Area
4602           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4603                                Bloomington, IL Metro Area
4604                          Trenton-Princeton, NJ Metro Area
4605                    Atlantic City-Hammonton, NJ Metro Area
4606                                                      <NA>
4607                           Cleveland-Elyria, OH Metro Area
4608    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4609                          Manchester-Nashua, NH Metro Area
4610                     Denver-Aurora-Lakewood, CO Metro Area
4611                 Des Moines-West Des Moines, IA Metro Area
4612             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4613                     Denver-Aurora-Lakewood, CO Metro Area
4614                     Denver-Aurora-Lakewood, CO Metro Area
4615                     Denver-Aurora-Lakewood, CO Metro Area
4616             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4617   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4618                     Denver-Aurora-Lakewood, CO Metro Area
4619   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4620                     Denver-Aurora-Lakewood, CO Metro Area
4621                     Denver-Aurora-Lakewood, CO Metro Area
4622                     Denver-Aurora-Lakewood, CO Metro Area
4623             Los Angeles-Long Beach-Anaheim, CA Metro Area
4624             San Francisco-Oakland-Berkeley, CA Metro Area
4625                  Baltimore-Columbia-Towson, MD Metro Area
4626                              Oklahoma City, OK Metro Area
4627           Houston-The Woodlands-Sugar Land, TX Metro Area
4628                         Milwaukee-Waukesha, WI Metro Area
4629                        Buffalo-Cheektowaga, NY Metro Area
4630                    Omaha-Council Bluffs, NE-IA Metro Area
4631                           Cincinnati, OH-KY-IN Metro Area
4632                Dallas-Fort Worth-Arlington, TX Metro Area
4633                                    Lubbock, TX Metro Area
4634                                    Midland, TX Metro Area
4635                                    Wichita, KS Metro Area
4636                 Pensacola-Ferry Pass-Brent, FL Metro Area
4637             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4638                    Albany-Schenectady-Troy, NY Metro Area
4639                              Memphis, TN-MS-AR Metro Area
4640                Dallas-Fort Worth-Arlington, TX Metro Area
4641       Little Rock-North Little Rock-Conway, AR Metro Area
4642                      Grand Rapids-Kentwood, MI Metro Area
4643                             Kansas City, MO-KS Metro Area
4644             San Diego-Chula Vista-Carlsbad, CA Metro Area
4645            Tampa-St. Petersburg-Clearwater, FL Metro Area
4646                             Kansas City, MO-KS Metro Area
4647                         Milwaukee-Waukesha, WI Metro Area
4648   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4649             Los Angeles-Long Beach-Anaheim, CA Metro Area
4650   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4651             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4652     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4653        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4654            Tampa-St. Petersburg-Clearwater, FL Metro Area
4655                                   Key West, FL Micro Area
4656                          Steamboat Springs, CO Micro Area
4657                    Seattle-Tacoma-Bellevue, WA Metro Area
4658                                   Montrose, CO Micro Area
4659                                      Tulsa, OK Metro Area
4660             Los Angeles-Long Beach-Anaheim, CA Metro Area
4661             Los Angeles-Long Beach-Anaheim, CA Metro Area
4662                             Urban Honolulu, HI Metro Area
4663                                                      <NA>
4664          Hartford-East Hartford-Middletown, CT Metro Area
4665                                 Pittsburgh, PA Metro Area
4666           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4667                    Detroit-Warren-Dearborn, MI Metro Area
4668           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4669           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4670                                    Salinas, CA Metro Area
4671                                Great Falls, MT Metro Area
4672               Indianapolis-Carmel-Anderson, IN Metro Area
4673                              State College, PA Metro Area
4674                                    Lincoln, NE Metro Area
4675                 Augusta-Richmond County, GA-SC Metro Area
4676                       Kingsport-Bristol, TN-VA Metro Area
4677                        Harrisburg-Carlisle, PA Metro Area
4678                    Albany-Schenectady-Troy, NY Metro Area
4679                     Spokane-Spokane Valley, WA Metro Area
4680          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4681                                    Madison, WI Metro Area
4682                               Grand Island, NE Metro Area
4683                                Springfield, MO Metro Area
4684                                   Columbia, SC Metro Area
4685            Davenport-Moline-Rock Island, IA-IL Metro Area
4686                           Glenwood Springs, CO Micro Area
4687                          Steamboat Springs, CO Micro Area
4688          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4689            Davenport-Moline-Rock Island, IA-IL Metro Area
4690                          Manchester-Nashua, NH Metro Area
4691             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4692                                  Asheville, NC Metro Area
4693                                  Anchorage, AK Metro Area
4694                    Seattle-Tacoma-Bellevue, WA Metro Area
4695                                                      <NA>
4696            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4697             Los Angeles-Long Beach-Anaheim, CA Metro Area
4698                 Boston-Cambridge-Newton, MA-NH Metro Area
4699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4700                             Salt Lake City, UT Metro Area
4701                             Salt Lake City, UT Metro Area
4702                               Jacksonville, FL Metro Area
4703                                 Pittsburgh, PA Metro Area
4704          Hartford-East Hartford-Middletown, CT Metro Area
4705                                Baton Rouge, LA Metro Area
4706                                     Ithaca, NY Metro Area
4707          Hartford-East Hartford-Middletown, CT Metro Area
4708                                Panama City, FL Metro Area
4709                                    Salinas, CA Metro Area
4710                    Omaha-Council Bluffs, NE-IA Metro Area
4711                                   Santa Fe, NM Metro Area
4712                     Denver-Aurora-Lakewood, CO Metro Area
4713             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4714             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4715                     Denver-Aurora-Lakewood, CO Metro Area
4716                     Denver-Aurora-Lakewood, CO Metro Area
4717            Tampa-St. Petersburg-Clearwater, FL Metro Area
4718           Houston-The Woodlands-Sugar Land, TX Metro Area
4719             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4720                                   Columbus, OH Metro Area
4721                           Colorado Springs, CO Metro Area
4722 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4723                    Omaha-Council Bluffs, NE-IA Metro Area
4724                                  Rochester, NY Metro Area
4725           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4726                  Orlando-Kissimmee-Sanford, FL Metro Area
4727            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4728                    Albany-Schenectady-Troy, NY Metro Area
4729                                  Rochester, NY Metro Area
4730             Louisville/Jefferson County, KY-IN Metro Area
4731   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4732   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4733                                   Richmond, VA Metro Area
4734                                   Amarillo, TX Metro Area
4735                      Brownsville-Harlingen, TX Metro Area
4736                      Brownsville-Harlingen, TX Metro Area
4737                  Orlando-Kissimmee-Sanford, FL Metro Area
4738                                   Key West, FL Micro Area
4739                                  Brunswick, GA Metro Area
4740                              State College, PA Metro Area
4741             Fayetteville-Springdale-Rogers, AR Metro Area
4742          Hartford-East Hartford-Middletown, CT Metro Area
4743                                                      <NA>
4744            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4745                                  Anchorage, AK Metro Area
4746                                  Ketchikan, AK Micro Area
4747                 Boston-Cambridge-Newton, MA-NH Metro Area
4748                                      Ponce, PR Metro Area
4749               Austin-Round Rock-Georgetown, TX Metro Area
4750        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4751                          Manchester-Nashua, NH Metro Area
4752                          Birmingham-Hoover, AL Metro Area
4753              Charlotte-Concord-Gastonia, NC-SC Metro Area
4754                     Denver-Aurora-Lakewood, CO Metro Area
4755                                Bakersfield, CA Metro Area
4756                                 Rapid City, SD Metro Area
4757                                  Flagstaff, AZ Metro Area
4758                                    Madison, WI Metro Area
4759             Louisville/Jefferson County, KY-IN Metro Area
4760                                   Amarillo, TX Metro Area
4761        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4762                                    Lincoln, NE Metro Area
4763                                                      <NA>
4764                     Denver-Aurora-Lakewood, CO Metro Area
4765                                Idaho Falls, ID Metro Area
4766        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4767                         Kennewick-Richland, WA Metro Area
4768             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4769   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4770                     Denver-Aurora-Lakewood, CO Metro Area
4771                  Orlando-Kissimmee-Sanford, FL Metro Area
4772              North Port-Sarasota-Bradenton, FL Metro Area
4773                                     Tucson, AZ Metro Area
4774                Sacramento-Roseville-Folsom, CA Metro Area
4775                    Kahului-Wailuku-Lahaina, HI Metro Area
4776                                 Pittsburgh, PA Metro Area
4777                Sacramento-Roseville-Folsom, CA Metro Area
4778                  Baltimore-Columbia-Towson, MD Metro Area
4779         Crestview-Fort Walton Beach-Destin, FL Metro Area
4780                  Orlando-Kissimmee-Sanford, FL Metro Area
4781                          Birmingham-Hoover, AL Metro Area
4782                                   Montrose, CO Micro Area
4783          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4784                 Pensacola-Ferry Pass-Brent, FL Metro Area
4785                                    Lincoln, NE Metro Area
4786                            Gulfport-Biloxi, MS Metro Area
4787                                     Laredo, TX Metro Area
4788            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4789          Hartford-East Hartford-Middletown, CT Metro Area
4790                                   Fargo, ND-MN Metro Area
4791                        Buffalo-Cheektowaga, NY Metro Area
4792                                                      <NA>
4793                      Cape Coral-Fort Myers, FL Metro Area
4794                        Harrisburg-Carlisle, PA Metro Area
4795             Fayetteville-Springdale-Rogers, AR Metro Area
4796                San Luis Obispo-Paso Robles, CA Metro Area
4797   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4798                                 Boise City, ID Metro Area
4799            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4800                                   Fargo, ND-MN Metro Area
4801                                 St. George, UT Metro Area
4802             Los Angeles-Long Beach-Anaheim, CA Metro Area
4803                                     Tucson, AZ Metro Area
4804                    Seattle-Tacoma-Bellevue, WA Metro Area
4805          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4806                                 Pittsburgh, PA Metro Area
4807                     Denver-Aurora-Lakewood, CO Metro Area
4808                              Oklahoma City, OK Metro Area
4809                                 Pittsburgh, PA Metro Area
4810 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4811             San Diego-Chula Vista-Carlsbad, CA Metro Area
4812                             Chattanooga, TN-GA Metro Area
4813                              Evansville, IN-KY Metro Area
4814                            Charlottesville, VA Metro Area
4815            Davenport-Moline-Rock Island, IA-IL Metro Area
4816                    Shreveport-Bossier City, LA Metro Area
4817                          Birmingham-Hoover, AL Metro Area
4818                          Lexington-Fayette, KY Metro Area
4819                                  Knoxville, TN Metro Area
4820                 Boston-Cambridge-Newton, MA-NH Metro Area
4821                               Cedar Rapids, IA Metro Area
4822        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4823    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4824                      Phoenix-Mesa-Chandler, AZ Metro Area
4825                      Phoenix-Mesa-Chandler, AZ Metro Area
4826        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4827              Charlotte-Concord-Gastonia, NC-SC Metro Area
4828                    Seattle-Tacoma-Bellevue, WA Metro Area
4829                                    Bozeman, MT Micro Area
4830             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4831             Los Angeles-Long Beach-Anaheim, CA Metro Area
4832                      Providence-Warwick, RI-MA Metro Area
4833                     Spokane-Spokane Valley, WA Metro Area
4834                     Spokane-Spokane Valley, WA Metro Area
4835                             Salt Lake City, UT Metro Area
4836                             Salt Lake City, UT Metro Area
4837       Little Rock-North Little Rock-Conway, AR Metro Area
4838                          Lexington-Fayette, KY Metro Area
4839                              Wausau-Weston, WI Metro Area
4840                     Scranton--Wilkes-Barre, PA Metro Area
4841   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4842             Los Angeles-Long Beach-Anaheim, CA Metro Area
4843                     Denver-Aurora-Lakewood, CO Metro Area
4844                                 Huntsville, AL Metro Area
4845                                 Pittsburgh, PA Metro Area
4846                                Sioux Falls, SD Metro Area
4847                             Grand Forks, ND-MN Metro Area
4848                                      Minot, ND Micro Area
4849                    South Bend-Mishawaka, IN-MI Metro Area
4850                                   Billings, MT Metro Area
4851                              Eureka-Arcata, CA Micro Area
4852                                     Fresno, CA Metro Area
4853                     Denver-Aurora-Lakewood, CO Metro Area
4854                     Spokane-Spokane Valley, WA Metro Area
4855          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4856               Las Vegas-Henderson-Paradise, NV Metro Area
4857             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4858             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4859                Dallas-Fort Worth-Arlington, TX Metro Area
4860               Austin-Round Rock-Georgetown, TX Metro Area
4861                Dallas-Fort Worth-Arlington, TX Metro Area
4862                                      Kapaa, HI Micro Area
4863                    Omaha-Council Bluffs, NE-IA Metro Area
4864 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4865                     Denver-Aurora-Lakewood, CO Metro Area
4866           Houston-The Woodlands-Sugar Land, TX Metro Area
4867           Houston-The Woodlands-Sugar Land, TX Metro Area
4868   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4869           Houston-The Woodlands-Sugar Land, TX Metro Area
4870             San Francisco-Oakland-Berkeley, CA Metro Area
4871                                Gainesville, FL Metro Area
4872                          Lexington-Fayette, KY Metro Area
4873                                 Charleston, WV Metro Area
4874                                       Erie, PA Metro Area
4875        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4876                        Harrisburg-Carlisle, PA Metro Area
4877     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4878    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4879                Burlington-South Burlington, VT Metro Area
4880                                 Fort Wayne, IN Metro Area
4881                          Lexington-Fayette, KY Metro Area
4882                                Baton Rouge, LA Metro Area
4883                                 Alexandria, LA Metro Area
4884                                     Monroe, LA Metro Area
4885                    Detroit-Warren-Dearborn, MI Metro Area
4886              Allentown-Bethlehem-Easton, PA-NJ Metro Area
4887                             Chattanooga, TN-GA Metro Area
4888                               Cedar Rapids, IA Metro Area
4889                      Greensboro-High Point, NC Metro Area
4890                                     Ithaca, NY Metro Area
4891                              Traverse City, MI Micro Area
4892                                  Green Bay, WI Metro Area
4893                                  Knoxville, TN Metro Area
4894        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4895             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4896    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4897                Dallas-Fort Worth-Arlington, TX Metro Area
4898             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4899                                                      <NA>
4900                                                      <NA>
4901                             Vineyard Haven, MA Micro Area
4902                             Vineyard Haven, MA Micro Area
4903                                                      <NA>
4904                                   Syracuse, NY Metro Area
4905                               Fayetteville, NC Metro Area
4906                                Sioux Falls, SD Metro Area
4907                                  Green Bay, WI Metro Area
4908                                 Jackson, WY-ID Micro Area
4909                    Detroit-Warren-Dearborn, MI Metro Area
4910                    Detroit-Warren-Dearborn, MI Metro Area
4911        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4912                    Detroit-Warren-Dearborn, MI Metro Area
4913                                                      <NA>
4914                Dallas-Fort Worth-Arlington, TX Metro Area
4915                       Beaumont-Port Arthur, TX Metro Area
4916                                 Fort Wayne, IN Metro Area
4917                                  Manhattan, KS Metro Area
4918                                                      <NA>
4919                                     Elmira, NY Metro Area
4920             Los Angeles-Long Beach-Anaheim, CA Metro Area
4921                           Colorado Springs, CO Metro Area
4922             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4923                              Eureka-Arcata, CA Micro Area
4924                                    Redding, CA Metro Area
4925             San Francisco-Oakland-Berkeley, CA Metro Area
4926                                  Marquette, MI Micro Area
4927                  Santa Maria-Santa Barbara, CA Metro Area
4928                San Luis Obispo-Paso Robles, CA Metro Area
4929                                Idaho Falls, ID Metro Area
4930                                  Anchorage, AK Metro Area
4931           Houston-The Woodlands-Sugar Land, TX Metro Area
4932             San Francisco-Oakland-Berkeley, CA Metro Area
4933    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4934             Los Angeles-Long Beach-Anaheim, CA Metro Area
4935           Houston-The Woodlands-Sugar Land, TX Metro Area
4936             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4937                Sacramento-Roseville-Folsom, CA Metro Area
4938           Riverside-San Bernardino-Ontario, CA Metro Area
4939             Los Angeles-Long Beach-Anaheim, CA Metro Area
4940                    San Juan-Bayamón-Caguas, PR Metro Area
4941                             Kansas City, MO-KS Metro Area
4942             Los Angeles-Long Beach-Anaheim, CA Metro Area
4943           Riverside-San Bernardino-Ontario, CA Metro Area
4944                                       Reno, NV Metro Area
4945 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4946 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4947                  Baltimore-Columbia-Towson, MD Metro Area
4948          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4949   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4950                                   Columbia, SC Metro Area
4951        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4952                                                      <NA>
4953             Los Angeles-Long Beach-Anaheim, CA Metro Area
4954               Las Vegas-Henderson-Paradise, NV Metro Area
4955                             Vineyard Haven, MA Micro Area
4956                      Cape Coral-Fort Myers, FL Metro Area
4957                Sacramento-Roseville-Folsom, CA Metro Area
4958           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4959                         Kennewick-Richland, WA Metro Area
4960                         Milwaukee-Waukesha, WI Metro Area
4961                           Cleveland-Elyria, OH Metro Area
4962             Los Angeles-Long Beach-Anaheim, CA Metro Area
4963                                    Lubbock, TX Metro Area
4964                                  Ketchikan, AK Micro Area
4965                                  Anchorage, AK Metro Area
4966                                  Ketchikan, AK Micro Area
4967                    Portland-South Portland, ME Metro Area
4968            Tampa-St. Petersburg-Clearwater, FL Metro Area
4969                          Manchester-Nashua, NH Metro Area
4970                      Greensboro-High Point, NC Metro Area
4971                                      Hobbs, NM Micro Area
4972                                    Wichita, KS Metro Area
4973             San Diego-Chula Vista-Carlsbad, CA Metro Area
4974                Dallas-Fort Worth-Arlington, TX Metro Area
4975                                   Montrose, CO Micro Area
4976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4977        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4978                                       Erie, PA Metro Area
4979                    Seattle-Tacoma-Bellevue, WA Metro Area
4980                    Kahului-Wailuku-Lahaina, HI Metro Area
4981                Dallas-Fort Worth-Arlington, TX Metro Area
4982                                       Reno, NV Metro Area
4983               Austin-Round Rock-Georgetown, TX Metro Area
4984             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4985                                Spartanburg, SC Metro Area
4986                                    El Paso, TX Metro Area
4987             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4988                                   Fargo, ND-MN Metro Area
4989                                 Alexandria, LA Metro Area
4990                    South Bend-Mishawaka, IN-MI Metro Area
4991              Charlotte-Concord-Gastonia, NC-SC Metro Area
4992                                      Hobbs, NM Micro Area
4993                           Butte-Silver Bow, MT Micro Area
4994                                  Anchorage, AK Metro Area
4995                    Seattle-Tacoma-Bellevue, WA Metro Area
4996                                   Montrose, CO Micro Area
4997                    Omaha-Council Bluffs, NE-IA Metro Area
4998        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4999         Crestview-Fort Walton Beach-Destin, FL Metro Area
5000     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5001                                     Bangor, ME Metro Area
5002                 Pensacola-Ferry Pass-Brent, FL Metro Area
5003         Crestview-Fort Walton Beach-Destin, FL Metro Area
5004   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5005                                       Reno, NV Metro Area
5006                Dallas-Fort Worth-Arlington, TX Metro Area
5007                 Boston-Cambridge-Newton, MA-NH Metro Area
5008            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5009                                 Charleston, WV Metro Area
5010                           Cleveland-Elyria, OH Metro Area
5011                           Cincinnati, OH-KY-IN Metro Area
5012                                  Anchorage, AK Metro Area
5013                 Augusta-Richmond County, GA-SC Metro Area
5014                                  Rochester, NY Metro Area
5015                                   Syracuse, NY Metro Area
5016                    Detroit-Warren-Dearborn, MI Metro Area
5017                                  Kalispell, MT Micro Area
5018             San Diego-Chula Vista-Carlsbad, CA Metro Area
5019                                 Pittsburgh, PA Metro Area
5020                                   Columbia, SC Metro Area
5021                                 St. George, UT Metro Area
5022                    Shreveport-Bossier City, LA Metro Area
5023                                                      <NA>
5024                                                      <NA>
5025                           Glenwood Springs, CO Micro Area
5026                           Dayton-Kettering, OH Metro Area
5027                               Fayetteville, NC Metro Area
5028                                     Hailey, ID Micro Area
5029                          Manchester-Nashua, NH Metro Area
5030                                       Bend, OR Metro Area
5031                                   Coos Bay, OR Micro Area
5032                           Colorado Springs, CO Metro Area
5033                                                      <NA>
5034                                  Anchorage, AK Metro Area
5035                          Steamboat Springs, CO Micro Area
5036                 Des Moines-West Des Moines, IA Metro Area
5037              Charlotte-Concord-Gastonia, NC-SC Metro Area
5038             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5039                                                      <NA>
5040                                                      <NA>
5041                                Great Falls, MT Metro Area
5042                           Glenwood Springs, CO Micro Area
5043                              Traverse City, MI Micro Area
5044                Sacramento-Roseville-Folsom, CA Metro Area
5045                                Albuquerque, NM Metro Area
5046                                    El Paso, TX Metro Area
5047                 Pensacola-Ferry Pass-Brent, FL Metro Area
5048    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5049                                                      <NA>
5050                                  Anchorage, AK Metro Area
5051           Riverside-San Bernardino-Ontario, CA Metro Area
5052        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5053                  Orlando-Kissimmee-Sanford, FL Metro Area
5054                          Trenton-Princeton, NJ Metro Area
5055                                  Green Bay, WI Metro Area
5056                  Orlando-Kissimmee-Sanford, FL Metro Area
5057                  Orlando-Kissimmee-Sanford, FL Metro Area
5058                     Denver-Aurora-Lakewood, CO Metro Area
5059               Las Vegas-Henderson-Paradise, NV Metro Area
5060                                Sioux Falls, SD Metro Area
5061       Little Rock-North Little Rock-Conway, AR Metro Area
5062                  Orlando-Kissimmee-Sanford, FL Metro Area
5063                Burlington-South Burlington, VT Metro Area
5064                 Des Moines-West Des Moines, IA Metro Area
5065                                    El Paso, TX Metro Area
5066    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5067             Fayetteville-Springdale-Rogers, AR Metro Area
5068        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5069        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5070        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5071                               Raleigh-Cary, NC Metro Area
5072               Las Vegas-Henderson-Paradise, NV Metro Area
5073                  Orlando-Kissimmee-Sanford, FL Metro Area
5074                          Manchester-Nashua, NH Metro Area
5075                          Manchester-Nashua, NH Metro Area
5076                               Fort Collins, CO Metro Area
5077                           Ogden-Clearfield, UT Metro Area
5078             Los Angeles-Long Beach-Anaheim, CA Metro Area
5079             Los Angeles-Long Beach-Anaheim, CA Metro Area
5080            Tampa-St. Petersburg-Clearwater, FL Metro Area
5081              Palm Bay-Melbourne-Titusville, FL Metro Area
5082                            Gulfport-Biloxi, MS Metro Area
5083                                      Tulsa, OK Metro Area
5084             Los Angeles-Long Beach-Anaheim, CA Metro Area
5085                                                      <NA>
5086                                       Yuma, AZ Metro Area
5087                                 St. George, UT Metro Area
5088                  San Antonio-New Braunfels, TX Metro Area
5089                                     Helena, MT Micro Area
5090           Riverside-San Bernardino-Ontario, CA Metro Area
5091           Houston-The Woodlands-Sugar Land, TX Metro Area
5092              North Port-Sarasota-Bradenton, FL Metro Area
5093                      Brownsville-Harlingen, TX Metro Area
5094                  San Antonio-New Braunfels, TX Metro Area
5095             San Francisco-Oakland-Berkeley, CA Metro Area
5096                               Raleigh-Cary, NC Metro Area
5097           Houston-The Woodlands-Sugar Land, TX Metro Area
5098                              Oklahoma City, OK Metro Area
5099                                Spartanburg, SC Metro Area
5100                         Milwaukee-Waukesha, WI Metro Area
5101              Charlotte-Concord-Gastonia, NC-SC Metro Area
5102                Dallas-Fort Worth-Arlington, TX Metro Area
5103                         Eugene-Springfield, OR Metro Area
5104             Fayetteville-Springdale-Rogers, AR Metro Area
5105                                  Marquette, MI Micro Area
5106             Los Angeles-Long Beach-Anaheim, CA Metro Area
5107             San Francisco-Oakland-Berkeley, CA Metro Area
5108   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5109           Riverside-San Bernardino-Ontario, CA Metro Area
5110                  San Antonio-New Braunfels, TX Metro Area
5111              North Port-Sarasota-Bradenton, FL Metro Area
5112     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5113                Sacramento-Roseville-Folsom, CA Metro Area
5114                                 Wilmington, NC Metro Area
5115                        Santa Rosa-Petaluma, CA Metro Area
5116           Houston-The Woodlands-Sugar Land, TX Metro Area
5117                                                      <NA>
5118                                     Bangor, ME Metro Area
5119             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5120                                Spartanburg, SC Metro Area
5121             San Francisco-Oakland-Berkeley, CA Metro Area
5122             San Diego-Chula Vista-Carlsbad, CA Metro Area
5123                                                      <NA>
5124                                    Redding, CA Metro Area
5125             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5126                             Kansas City, MO-KS Metro Area
5127                                Panama City, FL Metro Area
5128        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5129                                     Tucson, AZ Metro Area
5130                                  Green Bay, WI Metro Area
5131   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5132                      Cape Coral-Fort Myers, FL Metro Area
5133                           Glenwood Springs, CO Micro Area
5134             Los Angeles-Long Beach-Anaheim, CA Metro Area
5135                                                      <NA>
5136          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5137        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5138        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5139             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5140                                                      <NA>
5141                                Lewiston, ID-WA Metro Area
5142          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5143           Houston-The Woodlands-Sugar Land, TX Metro Area
5144             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5145                               Jacksonville, FL Metro Area
5146                  Orlando-Kissimmee-Sanford, FL Metro Area
5147                Dallas-Fort Worth-Arlington, TX Metro Area
5148           Houston-The Woodlands-Sugar Land, TX Metro Area
5149           Houston-The Woodlands-Sugar Land, TX Metro Area
5150                      Phoenix-Mesa-Chandler, AZ Metro Area
5151                               St. Louis, MO-IL Metro Area
5152                            Charlottesville, VA Metro Area
5153        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5154                    South Bend-Mishawaka, IN-MI Metro Area
5155                          Steamboat Springs, CO Micro Area
5156                                     Bangor, ME Metro Area
5157                         Kennewick-Richland, WA Metro Area
5158                                  Anchorage, AK Metro Area
5159                  Baltimore-Columbia-Towson, MD Metro Area
5160                                   Montrose, CO Micro Area
5161                                  Anchorage, AK Metro Area
5162                      Grand Rapids-Kentwood, MI Metro Area
5163                             Vineyard Haven, MA Micro Area
5164                                Gainesville, FL Metro Area
5165                                 Fort Wayne, IN Metro Area
5166             San Francisco-Oakland-Berkeley, CA Metro Area
5167           Houston-The Woodlands-Sugar Land, TX Metro Area
5168                                    Bozeman, MT Micro Area
5169                    Omaha-Council Bluffs, NE-IA Metro Area
5170                         Eugene-Springfield, OR Metro Area
5171                                 Montgomery, AL Metro Area
5172                  Orlando-Kissimmee-Sanford, FL Metro Area
5173                         Milwaukee-Waukesha, WI Metro Area
5174                                 Bellingham, WA Metro Area
5175                      Grand Rapids-Kentwood, MI Metro Area
5176                      Brownsville-Harlingen, TX Metro Area
5177                Charleston-North Charleston, SC Metro Area
5178                                   Columbia, SC Metro Area
5179                                   Richmond, VA Metro Area
5180  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5181                                Spartanburg, SC Metro Area
5182                                   Houghton, MI Micro Area
5183            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5184                                 Pittsburgh, PA Metro Area
5185                                 Fort Wayne, IN Metro Area
5186             Los Angeles-Long Beach-Anaheim, CA Metro Area
5187                                   Billings, MT Metro Area
5188                                   Columbus, OH Metro Area
5189            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5190           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
5191                  Santa Maria-Santa Barbara, CA Metro Area
5192           Houston-The Woodlands-Sugar Land, TX Metro Area
5193                                   Columbus, MS Micro Area
5194                    Detroit-Warren-Dearborn, MI Metro Area
5195                                 Pittsburgh, PA Metro Area
5196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5197                 Des Moines-West Des Moines, IA Metro Area
5198                                    Madison, WI Metro Area
5199                      Greensboro-High Point, NC Metro Area
5200                             Chattanooga, TN-GA Metro Area
5201                       New Orleans-Metairie, LA Metro Area
5202                                 Charleston, WV Metro Area
5203                    San Juan-Bayamón-Caguas, PR Metro Area
5204                San Luis Obispo-Paso Robles, CA Metro Area
5205                                  Anchorage, AK Metro Area
5206                San Luis Obispo-Paso Robles, CA Metro Area
5207                                  Asheville, NC Metro Area
5208                                 Jackson, WY-ID Micro Area
5209          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5210                                  Rochester, MN Metro Area
5211                                    Edwards, CO Micro Area
5212                      La Crosse-Onalaska, WI-MN Metro Area
5213            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5214          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5215                        Harrisburg-Carlisle, PA Metro Area
5216  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5217                           Iron Mountain, MI-WI Micro Area
5218           Riverside-San Bernardino-Ontario, CA Metro Area
5219                                Panama City, FL Metro Area
5220             Los Angeles-Long Beach-Anaheim, CA Metro Area
5221                              Oklahoma City, OK Metro Area
5222                               St. Louis, MO-IL Metro Area
5223                                  Wenatchee, WA Metro Area
5224            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5225                                Springfield, MO Metro Area
5226             Los Angeles-Long Beach-Anaheim, CA Metro Area
5227                       New Orleans-Metairie, LA Metro Area
5228            Davenport-Moline-Rock Island, IA-IL Metro Area
5229                                    Wichita, KS Metro Area
5230                       Kingsport-Bristol, TN-VA Metro Area
5231          Hartford-East Hartford-Middletown, CT Metro Area
5232                      La Crosse-Onalaska, WI-MN Metro Area
5233                    Detroit-Warren-Dearborn, MI Metro Area
5234                                       Hilo, HI Micro Area
5235                          Birmingham-Hoover, AL Metro Area
5236                                 Boise City, ID Metro Area
5237                   Huntington-Ashland, WV-KY-OH Metro Area
5238              Allentown-Bethlehem-Easton, PA-NJ Metro Area
5239              North Port-Sarasota-Bradenton, FL Metro Area
5240                               Salisbury, MD-DE Metro Area
5241                                  Anchorage, AK Metro Area
5242          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5243             San Diego-Chula Vista-Carlsbad, CA Metro Area
5244             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5245                                       Yuma, AZ Metro Area
5246                 Boston-Cambridge-Newton, MA-NH Metro Area
5247                    Albany-Schenectady-Troy, NY Metro Area
5248                    San Juan-Bayamón-Caguas, PR Metro Area
5249                                  Lafayette, LA Metro Area
5250                                 Boise City, ID Metro Area
5251             San Francisco-Oakland-Berkeley, CA Metro Area
5252                                  Johnstown, PA Metro Area
5253                                    Salinas, CA Metro Area
5254                           Cleveland-Elyria, OH Metro Area
5255                                Bloomington, IL Metro Area
5256                            Charlottesville, VA Metro Area
5257                                    Roswell, NM Micro Area
5258              Charlotte-Concord-Gastonia, NC-SC Metro Area
5259                                 San Angelo, TX Metro Area
5260                  Orlando-Kissimmee-Sanford, FL Metro Area
5261                                    Kearney, NE Micro Area
5262                                                      <NA>
5263                    Kahului-Wailuku-Lahaina, HI Metro Area
5264                                                      <NA>
5265       Little Rock-North Little Rock-Conway, AR Metro Area
5266                              Wichita Falls, TX Metro Area
5267                Dallas-Fort Worth-Arlington, TX Metro Area
5268               Austin-Round Rock-Georgetown, TX Metro Area
5269                                      Akron, OH Metro Area
5270                        Santa Rosa-Petaluma, CA Metro Area
5271                                    Lubbock, TX Metro Area
5272               Austin-Round Rock-Georgetown, TX Metro Area
5273  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5274    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5275                 Des Moines-West Des Moines, IA Metro Area
5276           Houston-The Woodlands-Sugar Land, TX Metro Area
5277                                 Pittsburgh, PA Metro Area
5278                                    Kearney, NE Micro Area
5279                                 Jackson, WY-ID Micro Area
5280             Los Angeles-Long Beach-Anaheim, CA Metro Area
5281          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5282          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5283                                  Ketchikan, AK Micro Area
5284                                Albuquerque, NM Metro Area
5285                                  Green Bay, WI Metro Area
5286                      Phoenix-Mesa-Chandler, AZ Metro Area
5287                                     Hailey, ID Micro Area
5288                    South Bend-Mishawaka, IN-MI Metro Area
5289                                Panama City, FL Metro Area
5290                                    Edwards, CO Micro Area
5291                     Scranton--Wilkes-Barre, PA Metro Area
5292                                     Monroe, LA Metro Area
5293                                                      <NA>
5294                                                      <NA>
5295                                     Hailey, ID Micro Area
5296                               St. Louis, MO-IL Metro Area
5297                           Sault Ste. Marie, MI Micro Area
5298                                    Roanoke, VA Metro Area
5299                 Pensacola-Ferry Pass-Brent, FL Metro Area
5300                Dallas-Fort Worth-Arlington, TX Metro Area
5301             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5302           Houston-The Woodlands-Sugar Land, TX Metro Area
5303             San Francisco-Oakland-Berkeley, CA Metro Area
5304                    Detroit-Warren-Dearborn, MI Metro Area
5305                                  Anchorage, AK Metro Area
5306                    Detroit-Warren-Dearborn, MI Metro Area
5307                Dallas-Fort Worth-Arlington, TX Metro Area
5308        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5309               Austin-Round Rock-Georgetown, TX Metro Area
5310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5311              Charlotte-Concord-Gastonia, NC-SC Metro Area
5312                      Phoenix-Mesa-Chandler, AZ Metro Area
5313                      Phoenix-Mesa-Chandler, AZ Metro Area
5314                      Phoenix-Mesa-Chandler, AZ Metro Area
5315                                     Juneau, AK Micro Area
5316            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5317                    Seattle-Tacoma-Bellevue, WA Metro Area
5318             San Diego-Chula Vista-Carlsbad, CA Metro Area
5319        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5320          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5321                    Detroit-Warren-Dearborn, MI Metro Area
5322                             Salt Lake City, UT Metro Area
5323   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5324              Charlotte-Concord-Gastonia, NC-SC Metro Area
5325        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5326             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5327            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5328          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5329   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5330                     Denver-Aurora-Lakewood, CO Metro Area
5331             San Francisco-Oakland-Berkeley, CA Metro Area
5332                     Denver-Aurora-Lakewood, CO Metro Area
5333                     Denver-Aurora-Lakewood, CO Metro Area
5334   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5335             San Francisco-Oakland-Berkeley, CA Metro Area
5336                Dallas-Fort Worth-Arlington, TX Metro Area
5337                     Denver-Aurora-Lakewood, CO Metro Area
5338           Houston-The Woodlands-Sugar Land, TX Metro Area
5339                      Phoenix-Mesa-Chandler, AZ Metro Area
5340             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5341                  Baltimore-Columbia-Towson, MD Metro Area
5342                Dallas-Fort Worth-Arlington, TX Metro Area
5343                       New Orleans-Metairie, LA Metro Area
5344                Dallas-Fort Worth-Arlington, TX Metro Area
5345                Dallas-Fort Worth-Arlington, TX Metro Area
5346                               St. Louis, MO-IL Metro Area
5347                               St. Louis, MO-IL Metro Area
5348           Houston-The Woodlands-Sugar Land, TX Metro Area
5349                  Orlando-Kissimmee-Sanford, FL Metro Area
5350 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5351                  Baltimore-Columbia-Towson, MD Metro Area
5352                               St. Louis, MO-IL Metro Area
5353                             Kansas City, MO-KS Metro Area
5354             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5355                  Baltimore-Columbia-Towson, MD Metro Area
5356                               St. Louis, MO-IL Metro Area
5357           Houston-The Woodlands-Sugar Land, TX Metro Area
5358             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5359                  San Antonio-New Braunfels, TX Metro Area
5360 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5361               Las Vegas-Henderson-Paradise, NV Metro Area
5362           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
5363                               St. Louis, MO-IL Metro Area
5364                  Orlando-Kissimmee-Sanford, FL Metro Area
5365                                Albuquerque, NM Metro Area
5366                       New Orleans-Metairie, LA Metro Area
5367           Houston-The Woodlands-Sugar Land, TX Metro Area
5368               Austin-Round Rock-Georgetown, TX Metro Area
5369                Dallas-Fort Worth-Arlington, TX Metro Area
5370           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
5371                  Baltimore-Columbia-Towson, MD Metro Area
5372                  Baltimore-Columbia-Towson, MD Metro Area
5373                             Kansas City, MO-KS Metro Area
5374                Dallas-Fort Worth-Arlington, TX Metro Area
5375             Los Angeles-Long Beach-Anaheim, CA Metro Area
5376                               St. Louis, MO-IL Metro Area
5377             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5378               Las Vegas-Henderson-Paradise, NV Metro Area
5379             San Francisco-Oakland-Berkeley, CA Metro Area
5380             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5381                Sacramento-Roseville-Folsom, CA Metro Area
5382                Sacramento-Roseville-Folsom, CA Metro Area
5383                Dallas-Fort Worth-Arlington, TX Metro Area
5384           Riverside-San Bernardino-Ontario, CA Metro Area
5385             Los Angeles-Long Beach-Anaheim, CA Metro Area
5386            Tampa-St. Petersburg-Clearwater, FL Metro Area
5387 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5388               Austin-Round Rock-Georgetown, TX Metro Area
5389             Los Angeles-Long Beach-Anaheim, CA Metro Area
5390             Los Angeles-Long Beach-Anaheim, CA Metro Area
5391             Los Angeles-Long Beach-Anaheim, CA Metro Area
5392               Indianapolis-Carmel-Anderson, IN Metro Area
5393               Austin-Round Rock-Georgetown, TX Metro Area
5394               Las Vegas-Henderson-Paradise, NV Metro Area
5395   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5396                  Orlando-Kissimmee-Sanford, FL Metro Area
5397           Houston-The Woodlands-Sugar Land, TX Metro Area
5398               Las Vegas-Henderson-Paradise, NV Metro Area
5399                     Denver-Aurora-Lakewood, CO Metro Area
5400          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5401             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5402               Austin-Round Rock-Georgetown, TX Metro Area
5403          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5404            Tampa-St. Petersburg-Clearwater, FL Metro Area
5405               Austin-Round Rock-Georgetown, TX Metro Area
5406             San Francisco-Oakland-Berkeley, CA Metro Area
5407                             Kansas City, MO-KS Metro Area
5408                Dallas-Fort Worth-Arlington, TX Metro Area
5409          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5410          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5411                             Salt Lake City, UT Metro Area
5412                       New Orleans-Metairie, LA Metro Area
5413  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5414             San Francisco-Oakland-Berkeley, CA Metro Area
5415                 Boston-Cambridge-Newton, MA-NH Metro Area
5416             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5417                  Orlando-Kissimmee-Sanford, FL Metro Area
5418                 Boston-Cambridge-Newton, MA-NH Metro Area
5419               Austin-Round Rock-Georgetown, TX Metro Area
5420             Los Angeles-Long Beach-Anaheim, CA Metro Area
5421                             Kansas City, MO-KS Metro Area
5422                                 Montgomery, AL Metro Area
5423                     Denver-Aurora-Lakewood, CO Metro Area
5424             San Diego-Chula Vista-Carlsbad, CA Metro Area
5425             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5426           Houston-The Woodlands-Sugar Land, TX Metro Area
5427                       Lansing-East Lansing, MI Metro Area
5428             San Francisco-Oakland-Berkeley, CA Metro Area
5429                               St. Louis, MO-IL Metro Area
5430                                     Juneau, AK Micro Area
5431        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5432                              Wausau-Weston, WI Metro Area
5433                                  Asheville, NC Metro Area
5434                           Dayton-Kettering, OH Metro Area
5435                                   Santa Fe, NM Metro Area
5436                      La Crosse-Onalaska, WI-MN Metro Area
5437                             Killeen-Temple, TX Metro Area
5438                                     Joplin, MO Metro Area
5439                    Seattle-Tacoma-Bellevue, WA Metro Area
5440   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5441                                                      <NA>
5442    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5443             Los Angeles-Long Beach-Anaheim, CA Metro Area
5444                                Gainesville, FL Metro Area
5445                     Denver-Aurora-Lakewood, CO Metro Area
5446                                     Salina, KS Micro Area
5447                                   Billings, MT Metro Area
5448                  Orlando-Kissimmee-Sanford, FL Metro Area
5449             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5450             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5451                                    Durango, CO Micro Area
5452                                   Valdosta, GA Metro Area
5453                                   New Bern, NC Metro Area
5454                                   Muskegon, MI Metro Area
5455                                    Laramie, WY Micro Area
5456                           Iron Mountain, MI-WI Micro Area
5457                                  Anchorage, AK Metro Area
5458                                  Watertown, SD Micro Area
5459                                 Greenville, NC Metro Area
5460                                Columbus, GA-AL Metro Area
5461                                    Saginaw, MI Metro Area
5462                           Champaign-Urbana, IL Metro Area
5463                               Jacksonville, NC Metro Area
5464                 Pensacola-Ferry Pass-Brent, FL Metro Area
5465                                 Binghamton, NY Metro Area
5466                                    Saginaw, MI Metro Area
5467                        Harrisburg-Carlisle, PA Metro Area
5468                                     Yakima, WA Metro Area
5469                               Jacksonville, NC Metro Area
5470                               Fayetteville, NC Metro Area
5471                                                      <NA>
5472                          Kalamazoo-Portage, MI Metro Area
5473                                Springfield, IL Metro Area
5474                                Lewiston, ID-WA Metro Area
5475                              Eureka-Arcata, CA Micro Area
5476                              State College, PA Metro Area
5477                                      Ozark, AL Micro Area
5478                               Lake Charles, LA Metro Area
5479                                                      <NA>
5480                                    Liberal, KS Micro Area
5481                                                      <NA>
5482                                                      <NA>
5483                                   Florence, SC Metro Area
5484                        Watertown-Fort Drum, NY Metro Area
5485                                    Bemidji, MN Micro Area
5486                                   Aberdeen, SD Micro Area
5487                          Kalamazoo-Portage, MI Metro Area
5488                             Killeen-Temple, TX Metro Area
5489                                   Gillette, WY Micro Area
5490                                   Victoria, TX Metro Area
5491                                  Pocatello, ID Metro Area
5492                                     Vernal, UT Micro Area
5493                                  Duluth, MN-WI Metro Area
5494                                       Hays, KS Micro Area
5495                                  Lynchburg, VA Metro Area
5496                                     Alpena, MI Micro Area
5497                                   Riverton, WY Micro Area
5498                                   Meridian, MS Micro Area
5499                              Eureka-Arcata, CA Micro Area
5500                               Rock Springs, WY Micro Area
5501                              Fort Smith, AR-OK Metro Area
5502                         Kennewick-Richland, WA Metro Area
5503                San Luis Obispo-Paso Robles, CA Metro Area
5504                        Hermiston-Pendleton, OR Micro Area
5505                      College Station-Bryan, TX Metro Area
5506                                 Bellingham, WA Metro Area
5507                           Sioux City, IA-NE-SD Metro Area
5508                                    Abilene, TX Metro Area
5509                                    Dubuque, IA Metro Area
5510                                     Toledo, OH Metro Area
5511                                 Alexandria, LA Metro Area
5512                                                      <NA>
5513                                 Clarksburg, WV Micro Area
5514                                  Rochester, MN Metro Area
5515                   Prescott Valley-Prescott, AZ Metro Area
5516                                                      <NA>
5517                                   Escanaba, MI Micro Area
5518                                      Tyler, TX Metro Area
5519                                 Twin Falls, ID Metro Area
5520                                Plattsburgh, NY Micro Area
5521                                   Sheridan, WY Micro Area
5522                                     Albany, GA Metro Area
5523                                      Kapaa, HI Micro Area
5524                                   Escanaba, MI Micro Area
5525                                   Longview, TX Metro Area
5526                                 Huntsville, AL Metro Area
5527                                 St. George, UT Metro Area
5528                                Bloomington, IL Metro Area
5529                                                      <NA>
5530                                     Monroe, LA Metro Area
5531                                     Pierre, SD Micro Area
5532                                                      <NA>
5533                                                      <NA>
5534                                                      <NA>
5535 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5536        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5537        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5538                                      Tulsa, OK Metro Area
5539                  San Antonio-New Braunfels, TX Metro Area
5540                      Cape Coral-Fort Myers, FL Metro Area
5541                               Jacksonville, FL Metro Area
5542                     Denver-Aurora-Lakewood, CO Metro Area
5543             San Francisco-Oakland-Berkeley, CA Metro Area
5544   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5545                               St. Louis, MO-IL Metro Area
5546                                     Tucson, AZ Metro Area
5547             San Diego-Chula Vista-Carlsbad, CA Metro Area
5548               Austin-Round Rock-Georgetown, TX Metro Area
5549             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5550                       New Orleans-Metairie, LA Metro Area
5551           Riverside-San Bernardino-Ontario, CA Metro Area
5552 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5553           Riverside-San Bernardino-Ontario, CA Metro Area
5554             Los Angeles-Long Beach-Anaheim, CA Metro Area
5555             Los Angeles-Long Beach-Anaheim, CA Metro Area
5556                Sacramento-Roseville-Folsom, CA Metro Area
5557            Tampa-St. Petersburg-Clearwater, FL Metro Area
5558             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5559           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
5560                Dallas-Fort Worth-Arlington, TX Metro Area
5561                          Manchester-Nashua, NH Metro Area
5562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5563             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5564 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5565             San Diego-Chula Vista-Carlsbad, CA Metro Area
5566                  Baltimore-Columbia-Towson, MD Metro Area
5567 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5568                  Baltimore-Columbia-Towson, MD Metro Area
5569            Tampa-St. Petersburg-Clearwater, FL Metro Area
5570        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5571                           Colorado Springs, CO Metro Area
5572               Austin-Round Rock-Georgetown, TX Metro Area
5573                       New Orleans-Metairie, LA Metro Area
5574                  San Antonio-New Braunfels, TX Metro Area
5575           Riverside-San Bernardino-Ontario, CA Metro Area
5576               Austin-Round Rock-Georgetown, TX Metro Area
5577                     Denver-Aurora-Lakewood, CO Metro Area
5578             Los Angeles-Long Beach-Anaheim, CA Metro Area
5579                Sacramento-Roseville-Folsom, CA Metro Area
5580        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5581            Tampa-St. Petersburg-Clearwater, FL Metro Area
5582                       New Orleans-Metairie, LA Metro Area
5583             Los Angeles-Long Beach-Anaheim, CA Metro Area
5584                Sacramento-Roseville-Folsom, CA Metro Area
5585                       New Orleans-Metairie, LA Metro Area
5586                      Phoenix-Mesa-Chandler, AZ Metro Area
5587                Dallas-Fort Worth-Arlington, TX Metro Area
5588                               Raleigh-Cary, NC Metro Area
5589                  San Antonio-New Braunfels, TX Metro Area
5590             Los Angeles-Long Beach-Anaheim, CA Metro Area
5591             Los Angeles-Long Beach-Anaheim, CA Metro Area
5592             Los Angeles-Long Beach-Anaheim, CA Metro Area
5593        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5594             San Diego-Chula Vista-Carlsbad, CA Metro Area
5595             San Francisco-Oakland-Berkeley, CA Metro Area
5596 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5597                       New Orleans-Metairie, LA Metro Area
5598             Los Angeles-Long Beach-Anaheim, CA Metro Area
5599             Los Angeles-Long Beach-Anaheim, CA Metro Area
5600 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5601                             Kansas City, MO-KS Metro Area
5602             Los Angeles-Long Beach-Anaheim, CA Metro Area
5603           Riverside-San Bernardino-Ontario, CA Metro Area
5604                                   Columbus, OH Metro Area
5605  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5606        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5607             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5608           Houston-The Woodlands-Sugar Land, TX Metro Area
5609                      Phoenix-Mesa-Chandler, AZ Metro Area
5610 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5611             Los Angeles-Long Beach-Anaheim, CA Metro Area
5612                               St. Louis, MO-IL Metro Area
5613           Houston-The Woodlands-Sugar Land, TX Metro Area
5614             Los Angeles-Long Beach-Anaheim, CA Metro Area
5615                      Cape Coral-Fort Myers, FL Metro Area
5616             Los Angeles-Long Beach-Anaheim, CA Metro Area
5617                             Kansas City, MO-KS Metro Area
5618               Indianapolis-Carmel-Anderson, IN Metro Area
5619                  San Antonio-New Braunfels, TX Metro Area
5620                               Jacksonville, FL Metro Area
5621                Sacramento-Roseville-Folsom, CA Metro Area
5622                  Orlando-Kissimmee-Sanford, FL Metro Area
5623 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5624          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5625    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
5626                              Oklahoma City, OK Metro Area
5627          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5628            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5629                     Denver-Aurora-Lakewood, CO Metro Area
5630                             Kansas City, MO-KS Metro Area
5631               Las Vegas-Henderson-Paradise, NV Metro Area
5632                               St. Louis, MO-IL Metro Area
5633                Dallas-Fort Worth-Arlington, TX Metro Area
5634                    Seattle-Tacoma-Bellevue, WA Metro Area
5635             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5636          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5637                                   Columbus, OH Metro Area
5638                             Kansas City, MO-KS Metro Area
5639        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5640             San Diego-Chula Vista-Carlsbad, CA Metro Area
5641                               Raleigh-Cary, NC Metro Area
5642                      Phoenix-Mesa-Chandler, AZ Metro Area
5643                                     Fresno, CA Metro Area
5644                Dallas-Fort Worth-Arlington, TX Metro Area
5645                  Baltimore-Columbia-Towson, MD Metro Area
5646                Dallas-Fort Worth-Arlington, TX Metro Area
5647                      Cape Coral-Fort Myers, FL Metro Area
5648 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5649              Charlotte-Concord-Gastonia, NC-SC Metro Area
5650   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5651                  San Antonio-New Braunfels, TX Metro Area
5652                                   Columbus, OH Metro Area
5653             San Francisco-Oakland-Berkeley, CA Metro Area
5654                               St. Louis, MO-IL Metro Area
5655        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5656             Los Angeles-Long Beach-Anaheim, CA Metro Area
5657        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5658                    San Juan-Bayamón-Caguas, PR Metro Area
5659                                 Charleston, WV Metro Area
5660                                   Syracuse, NY Metro Area
5661           Riverside-San Bernardino-Ontario, CA Metro Area
5662                                                      <NA>
5663                                                      <NA>
5664                                                      <NA>
5665                                 Cedar City, UT Micro Area
5666                                     Bangor, ME Metro Area
5667                                                      <NA>
5668                                                      <NA>
5669                                  Watertown, SD Micro Area
5670                                                      <NA>
5671  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5672                         Eugene-Springfield, OR Metro Area
5673                                 Alexandria, LA Metro Area
5674                         Ogdensburg-Massena, NY Micro Area
5675                                   Staunton, VA Metro Area
5676                       Waterloo-Cedar Falls, IA Metro Area
5677                                       Elko, NV Micro Area
5678                                    Midland, TX Metro Area
5679                                      Akron, OH Metro Area
5680                      Brownsville-Harlingen, TX Metro Area
5681                           Sioux City, IA-NE-SD Metro Area
5682                          Fort Leonard Wood, MO Micro Area
5683     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5684                                     Joplin, MO Metro Area
5685           Riverside-San Bernardino-Ontario, CA Metro Area
5686                                     Pueblo, CO Metro Area
5687                                     Lawton, OK Metro Area
5688                                     Joplin, MO Metro Area
5689                           Cincinnati, OH-KY-IN Metro Area
5690                            Charlottesville, VA Metro Area
5691  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5692                                   Bismarck, ND Metro Area
5693                                     Peoria, IL Metro Area
5694                                    Del Rio, TX Micro Area
5695                                                      <NA>
5696                                     Salina, KS Micro Area
5697                                 Dodge City, KS Micro Area
5698                                 Eau Claire, WI Metro Area
5699                                   Cheyenne, WY Metro Area
5700                                 Fort Wayne, IN Metro Area
5701                                    El Paso, TX Metro Area
5702                           Sault Ste. Marie, MI Micro Area
5703                                   Staunton, VA Metro Area
5704                                       Reno, NV Metro Area
5705                              State College, PA Metro Area
5706                                  Duluth, MN-WI Metro Area
5707                                 Boise City, ID Metro Area
5708                                     Casper, WY Metro Area
5709                                       Hilo, HI Micro Area
5710                          Carbondale-Marion, IL Metro Area
5711                                Scottsbluff, NE Micro Area
5712                                      Kapaa, HI Micro Area
5713                          Carbondale-Marion, IL Metro Area
5714                                  Quincy, IL-MO Micro Area
5715                   Prescott Valley-Prescott, AZ Metro Area
5716                                                      <NA>
5717                                 Kirksville, MO Micro Area
5718                                 Paducah, KY-IL Micro Area
5719                          Lexington-Fayette, KY Metro Area
5720                                 Fort Dodge, IA Micro Area
5721                                       Waco, TX Metro Area
5722                                Spartanburg, SC Metro Area
5723           Riverside-San Bernardino-Ontario, CA Metro Area
5724                       New Orleans-Metairie, LA Metro Area
5725                          Manchester-Nashua, NH Metro Area
5726                     Spokane-Spokane Valley, WA Metro Area
5727                                    Bozeman, MT Micro Area
5728                    Omaha-Council Bluffs, NE-IA Metro Area
5729             San Francisco-Oakland-Berkeley, CA Metro Area
5730                          Steamboat Springs, CO Micro Area
5731             Los Angeles-Long Beach-Anaheim, CA Metro Area
5732                    San Juan-Bayamón-Caguas, PR Metro Area
5733                  San Antonio-New Braunfels, TX Metro Area
5734            Tampa-St. Petersburg-Clearwater, FL Metro Area
5735            Tampa-St. Petersburg-Clearwater, FL Metro Area
5736                      Cape Coral-Fort Myers, FL Metro Area
5737                Sacramento-Roseville-Folsom, CA Metro Area
5738                             Kansas City, MO-KS Metro Area
5739         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
5740                              Traverse City, MI Micro Area
5741                                    Lincoln, NE Metro Area
5742              North Port-Sarasota-Bradenton, FL Metro Area
5743                               Jacksonville, FL Metro Area
5744        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5745   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5746                                    El Paso, TX Metro Area
5747             Los Angeles-Long Beach-Anaheim, CA Metro Area
5748       Little Rock-North Little Rock-Conway, AR Metro Area
5749              North Port-Sarasota-Bradenton, FL Metro Area
5750               Austin-Round Rock-Georgetown, TX Metro Area
5751                     Spokane-Spokane Valley, WA Metro Area
5752            Tampa-St. Petersburg-Clearwater, FL Metro Area
5753                                Albuquerque, NM Metro Area
5754                                     Fresno, CA Metro Area
5755                                     Tucson, AZ Metro Area
5756          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5757                                    El Paso, TX Metro Area
5758                                      Tulsa, OK Metro Area
5759                      Cape Coral-Fort Myers, FL Metro Area
5760                                    El Paso, TX Metro Area
5761                       New Orleans-Metairie, LA Metro Area
5762                       New Orleans-Metairie, LA Metro Area
5763                 Pensacola-Ferry Pass-Brent, FL Metro Area
5764                  San Antonio-New Braunfels, TX Metro Area
5765                                    Wichita, KS Metro Area
5766                                    El Paso, TX Metro Area
5767                                Albuquerque, NM Metro Area
5768              North Port-Sarasota-Bradenton, FL Metro Area
5769               Austin-Round Rock-Georgetown, TX Metro Area
5770                    San Juan-Bayamón-Caguas, PR Metro Area
5771                    San Juan-Bayamón-Caguas, PR Metro Area
5772                                   Richmond, VA Metro Area
5773                                     Tucson, AZ Metro Area
5774                                     Tucson, AZ Metro Area
5775                                Albuquerque, NM Metro Area
5776             San Francisco-Oakland-Berkeley, CA Metro Area
5777                             Kansas City, MO-KS Metro Area
5778             Los Angeles-Long Beach-Anaheim, CA Metro Area
5779                    San Juan-Bayamón-Caguas, PR Metro Area
5780                                    El Paso, TX Metro Area
5781                    Omaha-Council Bluffs, NE-IA Metro Area
5782                                       Reno, NV Metro Area
5783                          Steamboat Springs, CO Micro Area
5784                      Providence-Warwick, RI-MA Metro Area
5785                                    Wichita, KS Metro Area
5786                              Oklahoma City, OK Metro Area
5787           Riverside-San Bernardino-Ontario, CA Metro Area
5788                     Denver-Aurora-Lakewood, CO Metro Area
5789                  Santa Maria-Santa Barbara, CA Metro Area
5790                    Albany-Schenectady-Troy, NY Metro Area
5791                      Cape Coral-Fort Myers, FL Metro Area
5792                                    Bozeman, MT Micro Area
5793                                     Hailey, ID Micro Area
5794                Charleston-North Charleston, SC Metro Area
5795             Los Angeles-Long Beach-Anaheim, CA Metro Area
5796                                 Boise City, ID Metro Area
5797                    Seattle-Tacoma-Bellevue, WA Metro Area
5798            Portland-Vancouver-Hillsboro, OR-WA Metro Area
5799             Los Angeles-Long Beach-Anaheim, CA Metro Area
5800                                 Clarksburg, WV Micro Area
5801               Las Vegas-Henderson-Paradise, NV Metro Area
5802                          Steamboat Springs, CO Micro Area
5803                       New Orleans-Metairie, LA Metro Area
5804   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5805                                   Columbus, OH Metro Area
5806                  San Antonio-New Braunfels, TX Metro Area
5807                                       Reno, NV Metro Area
5808           Houston-The Woodlands-Sugar Land, TX Metro Area
5809                  Baltimore-Columbia-Towson, MD Metro Area
5810                    South Bend-Mishawaka, IN-MI Metro Area
5811             San Francisco-Oakland-Berkeley, CA Metro Area
5812                          Birmingham-Hoover, AL Metro Area
5813                                    Bozeman, MT Micro Area
5814                                Albuquerque, NM Metro Area
5815             Los Angeles-Long Beach-Anaheim, CA Metro Area
5816                      Cape Coral-Fort Myers, FL Metro Area
5817                         Eugene-Springfield, OR Metro Area
5818                      Providence-Warwick, RI-MA Metro Area
5819                                Spartanburg, SC Metro Area
5820                 Des Moines-West Des Moines, IA Metro Area
5821                          Birmingham-Hoover, AL Metro Area
5822             Fayetteville-Springdale-Rogers, AR Metro Area
5823                    Omaha-Council Bluffs, NE-IA Metro Area
5824                           Colorado Springs, CO Metro Area
5825        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5826                    San Juan-Bayamón-Caguas, PR Metro Area
5827               Indianapolis-Carmel-Anderson, IN Metro Area
5828                      Providence-Warwick, RI-MA Metro Area
5829                           Colorado Springs, CO Metro Area
5830                  San Antonio-New Braunfels, TX Metro Area
5831                                     Tucson, AZ Metro Area
5832                                   Amarillo, TX Metro Area
5833        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5834                          Steamboat Springs, CO Micro Area
5835             Los Angeles-Long Beach-Anaheim, CA Metro Area
5836            Tampa-St. Petersburg-Clearwater, FL Metro Area
5837                                    Lubbock, TX Metro Area
5838                        Buffalo-Cheektowaga, NY Metro Area
5839                                   Columbus, OH Metro Area
5840                                    El Paso, TX Metro Area
5841                    San Juan-Bayamón-Caguas, PR Metro Area
5842                           Cleveland-Elyria, OH Metro Area
5843             San Francisco-Oakland-Berkeley, CA Metro Area
5844             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5845             San Diego-Chula Vista-Carlsbad, CA Metro Area
5846                Sacramento-Roseville-Folsom, CA Metro Area
5847                                Panama City, FL Metro Area
5848                                   Richmond, VA Metro Area
5849             San Diego-Chula Vista-Carlsbad, CA Metro Area
5850                    Omaha-Council Bluffs, NE-IA Metro Area
5851                                Spartanburg, SC Metro Area
5852        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5853                              Memphis, TN-MS-AR Metro Area
5854                 Boston-Cambridge-Newton, MA-NH Metro Area
5855          Hartford-East Hartford-Middletown, CT Metro Area
5856           Houston-The Woodlands-Sugar Land, TX Metro Area
5857                                      Tulsa, OK Metro Area
5858                                    Lubbock, TX Metro Area
5859                    Albany-Schenectady-Troy, NY Metro Area
5860                                   Syracuse, NY Metro Area
5861                             Salt Lake City, UT Metro Area
5862                    Omaha-Council Bluffs, NE-IA Metro Area
5863                        Buffalo-Cheektowaga, NY Metro Area
5864                              Oklahoma City, OK Metro Area
5865                      Brownsville-Harlingen, TX Metro Area
5866             San Francisco-Oakland-Berkeley, CA Metro Area
5867             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5868                Sacramento-Roseville-Folsom, CA Metro Area
5869                  Santa Maria-Santa Barbara, CA Metro Area
5870                    Albany-Schenectady-Troy, NY Metro Area
5871             San Francisco-Oakland-Berkeley, CA Metro Area
5872        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
5873                       New Orleans-Metairie, LA Metro Area
5874          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5875     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5876                                   Columbus, OH Metro Area
5877                                      Tulsa, OK Metro Area
5878                             Kansas City, MO-KS Metro Area
5879               Las Vegas-Henderson-Paradise, NV Metro Area
5880             San Diego-Chula Vista-Carlsbad, CA Metro Area
5881             Los Angeles-Long Beach-Anaheim, CA Metro Area
5882                 Boston-Cambridge-Newton, MA-NH Metro Area
5883                               St. Louis, MO-IL Metro Area
5884                                   Amarillo, TX Metro Area
5885                  San Antonio-New Braunfels, TX Metro Area
5886          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5887        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5888                                   Columbus, OH Metro Area
5889              North Port-Sarasota-Bradenton, FL Metro Area
5890             San Diego-Chula Vista-Carlsbad, CA Metro Area
5891                                       Reno, NV Metro Area
5892                     Spokane-Spokane Valley, WA Metro Area
5893           Riverside-San Bernardino-Ontario, CA Metro Area
5894   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
5895             San Francisco-Oakland-Berkeley, CA Metro Area
5896                                       Reno, NV Metro Area
5897             Los Angeles-Long Beach-Anaheim, CA Metro Area
5898           Riverside-San Bernardino-Ontario, CA Metro Area
5899                    Portland-South Portland, ME Metro Area
5900                                 Boise City, ID Metro Area
5901             San Francisco-Oakland-Berkeley, CA Metro Area
5902             San Francisco-Oakland-Berkeley, CA Metro Area
5903                       New Orleans-Metairie, LA Metro Area
5904             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5905                                Panama City, FL Metro Area
5906                                    Lubbock, TX Metro Area
5907                       New Orleans-Metairie, LA Metro Area
5908                              Oklahoma City, OK Metro Area
5909                    San Juan-Bayamón-Caguas, PR Metro Area
5910                  Baltimore-Columbia-Towson, MD Metro Area
5911                           Colorado Springs, CO Metro Area
5912             Los Angeles-Long Beach-Anaheim, CA Metro Area
5913             San Diego-Chula Vista-Carlsbad, CA Metro Area
5914        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5915            Tampa-St. Petersburg-Clearwater, FL Metro Area
5916                                      Tulsa, OK Metro Area
5917                             Kansas City, MO-KS Metro Area
5918                      Cape Coral-Fort Myers, FL Metro Area
5919                 Pensacola-Ferry Pass-Brent, FL Metro Area
5920                      Grand Rapids-Kentwood, MI Metro Area
5921                     Spokane-Spokane Valley, WA Metro Area
5922             Los Angeles-Long Beach-Anaheim, CA Metro Area
5923             Los Angeles-Long Beach-Anaheim, CA Metro Area
5924                  San Antonio-New Braunfels, TX Metro Area
5925              North Port-Sarasota-Bradenton, FL Metro Area
5926                             Salt Lake City, UT Metro Area
5927                  Orlando-Kissimmee-Sanford, FL Metro Area
5928                    Omaha-Council Bluffs, NE-IA Metro Area
5929             Los Angeles-Long Beach-Anaheim, CA Metro Area
5930                Sacramento-Roseville-Folsom, CA Metro Area
5931                    Omaha-Council Bluffs, NE-IA Metro Area
5932                                   Columbus, OH Metro Area
5933                              Oklahoma City, OK Metro Area
5934        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5935                               Jacksonville, FL Metro Area
5936                  San Antonio-New Braunfels, TX Metro Area
5937                               Jacksonville, FL Metro Area
5938                                    Lubbock, TX Metro Area
5939 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5940                                Sioux Falls, SD Metro Area
5941 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
5942                  San Antonio-New Braunfels, TX Metro Area
5943             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5944                                       Reno, NV Metro Area
5945             Los Angeles-Long Beach-Anaheim, CA Metro Area
5946                                Albuquerque, NM Metro Area
5947          Hartford-East Hartford-Middletown, CT Metro Area
5948                                      Tulsa, OK Metro Area
5949                                 Boise City, ID Metro Area
5950                                     Tucson, AZ Metro Area
5951                               Raleigh-Cary, NC Metro Area
5952                                   Savannah, GA Metro Area
5953                                      Tulsa, OK Metro Area
5954        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
5955             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5956                  San Antonio-New Braunfels, TX Metro Area
5957             San Jose-Sunnyvale-Santa Clara, CA Metro Area
5958                                     Tucson, AZ Metro Area
5959                         Milwaukee-Waukesha, WI Metro Area
5960             San Diego-Chula Vista-Carlsbad, CA Metro Area
5961                           Colorado Springs, CO Metro Area
5962                 Boston-Cambridge-Newton, MA-NH Metro Area
5963     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5964                      Brownsville-Harlingen, TX Metro Area
5965           Riverside-San Bernardino-Ontario, CA Metro Area
5966                                 Boise City, ID Metro Area
5967                 Pensacola-Ferry Pass-Brent, FL Metro Area
5968             Los Angeles-Long Beach-Anaheim, CA Metro Area
5969             Los Angeles-Long Beach-Anaheim, CA Metro Area
5970                              Oklahoma City, OK Metro Area
5971                 Boston-Cambridge-Newton, MA-NH Metro Area
5972  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
5973                                   Columbus, OH Metro Area
5974           Riverside-San Bernardino-Ontario, CA Metro Area
5975             Louisville/Jefferson County, KY-IN Metro Area
5976                                      Tulsa, OK Metro Area
5977          Hartford-East Hartford-Middletown, CT Metro Area
5978              North Port-Sarasota-Bradenton, FL Metro Area
5979                       New Orleans-Metairie, LA Metro Area
5980                                   Richmond, VA Metro Area
5981                  San Antonio-New Braunfels, TX Metro Area
5982                                     Fresno, CA Metro Area
5983                           Cleveland-Elyria, OH Metro Area
5984                          Birmingham-Hoover, AL Metro Area
5985                Sacramento-Roseville-Folsom, CA Metro Area
5986          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5987     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
5988                    Detroit-Warren-Dearborn, MI Metro Area
5989          New York-Newark-Jersey City, NY-NJ-PA Metro Area
5990          Hartford-East Hartford-Middletown, CT Metro Area
5991                              Oklahoma City, OK Metro Area
5992                  Orlando-Kissimmee-Sanford, FL Metro Area
5993             San Francisco-Oakland-Berkeley, CA Metro Area
5994                                    Lincoln, NE Metro Area
5995                               St. Louis, MO-IL Metro Area
5996                                Panama City, FL Metro Area
5997                                Albuquerque, NM Metro Area
5998           Riverside-San Bernardino-Ontario, CA Metro Area
5999             Los Angeles-Long Beach-Anaheim, CA Metro Area
6000                                    Edwards, CO Micro Area
6001             San Jose-Sunnyvale-Santa Clara, CA Metro Area
6002               Las Vegas-Henderson-Paradise, NV Metro Area
6003                                    Bozeman, MT Micro Area
6004          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6005             San Francisco-Oakland-Berkeley, CA Metro Area
6006  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
6007                             Kansas City, MO-KS Metro Area
6008        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6009                          Birmingham-Hoover, AL Metro Area
6010                      Providence-Warwick, RI-MA Metro Area
6011             Louisville/Jefferson County, KY-IN Metro Area
6012                                    Lubbock, TX Metro Area
6013                    Omaha-Council Bluffs, NE-IA Metro Area
6014                             Kansas City, MO-KS Metro Area
6015                     Spokane-Spokane Valley, WA Metro Area
6016       Little Rock-North Little Rock-Conway, AR Metro Area
6017                      Grand Rapids-Kentwood, MI Metro Area
6018             San Diego-Chula Vista-Carlsbad, CA Metro Area
6019                      Brownsville-Harlingen, TX Metro Area
6020        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6021             San Francisco-Oakland-Berkeley, CA Metro Area
6022                         Milwaukee-Waukesha, WI Metro Area
6023                                Albuquerque, NM Metro Area
6024                                   Columbus, OH Metro Area
6025          Hartford-East Hartford-Middletown, CT Metro Area
6026                           Colorado Springs, CO Metro Area
6027             San Jose-Sunnyvale-Santa Clara, CA Metro Area
6028         Crestview-Fort Walton Beach-Destin, FL Metro Area
6029           Houston-The Woodlands-Sugar Land, TX Metro Area
6030             Los Angeles-Long Beach-Anaheim, CA Metro Area
6031                                    El Paso, TX Metro Area
6032          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6033                             Salt Lake City, UT Metro Area
6034                               St. Louis, MO-IL Metro Area
6035                                   Columbus, OH Metro Area
6036                           Cleveland-Elyria, OH Metro Area
6037                               Raleigh-Cary, NC Metro Area
6038             San Diego-Chula Vista-Carlsbad, CA Metro Area
6039                               Jacksonville, FL Metro Area
6040                                  Rochester, NY Metro Area
6041                     Spokane-Spokane Valley, WA Metro Area
6042                                       Reno, NV Metro Area
6043        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6044                               St. Louis, MO-IL Metro Area
6045                        Buffalo-Cheektowaga, NY Metro Area
6046               Las Vegas-Henderson-Paradise, NV Metro Area
6047                       New Orleans-Metairie, LA Metro Area
6048                    Detroit-Warren-Dearborn, MI Metro Area
6049                  Baltimore-Columbia-Towson, MD Metro Area
6050                               Jacksonville, FL Metro Area
6051                         Eugene-Springfield, OR Metro Area
6052                                     Fresno, CA Metro Area
6053               Austin-Round Rock-Georgetown, TX Metro Area
6054                                 Boise City, ID Metro Area
6055                                   Amarillo, TX Metro Area
6056        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6057                                       Reno, NV Metro Area
6058                                    Durango, CO Micro Area
6059                                Albuquerque, NM Metro Area
6060         Crestview-Fort Walton Beach-Destin, FL Metro Area
6061                Charleston-North Charleston, SC Metro Area
6062                  San Antonio-New Braunfels, TX Metro Area
6063              North Port-Sarasota-Bradenton, FL Metro Area
6064             Los Angeles-Long Beach-Anaheim, CA Metro Area
6065                  Santa Maria-Santa Barbara, CA Metro Area
6066                                      Tulsa, OK Metro Area
6067              North Port-Sarasota-Bradenton, FL Metro Area
6068             Los Angeles-Long Beach-Anaheim, CA Metro Area
6069  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
6070                                    Bozeman, MT Micro Area
6071                      Grand Rapids-Kentwood, MI Metro Area
6072                  Orlando-Kissimmee-Sanford, FL Metro Area
6073               Austin-Round Rock-Georgetown, TX Metro Area
6074                                     Tucson, AZ Metro Area
6075                               Jacksonville, FL Metro Area
6076                                    Bozeman, MT Micro Area
6077                                Albuquerque, NM Metro Area
6078                              Oklahoma City, OK Metro Area
6079                                   Savannah, GA Metro Area
6080       Little Rock-North Little Rock-Conway, AR Metro Area
6081                              Oklahoma City, OK Metro Area
6082                               Raleigh-Cary, NC Metro Area
6083                                     Fresno, CA Metro Area
6084                       New Orleans-Metairie, LA Metro Area
6085                      Grand Rapids-Kentwood, MI Metro Area
6086                    San Juan-Bayamón-Caguas, PR Metro Area
6087                       New Orleans-Metairie, LA Metro Area
6088           Houston-The Woodlands-Sugar Land, TX Metro Area
6089                                  Rochester, NY Metro Area
6090                 Pensacola-Ferry Pass-Brent, FL Metro Area
6091                                    Bozeman, MT Micro Area
6092   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6093                Charleston-North Charleston, SC Metro Area
6094 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
6095                Sacramento-Roseville-Folsom, CA Metro Area
6096                          Steamboat Springs, CO Micro Area
6097            Tampa-St. Petersburg-Clearwater, FL Metro Area
6098                    San Juan-Bayamón-Caguas, PR Metro Area
6099             Los Angeles-Long Beach-Anaheim, CA Metro Area
6100        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6101                               Raleigh-Cary, NC Metro Area
6102                    Detroit-Warren-Dearborn, MI Metro Area
6103                                   Savannah, GA Metro Area
6104           Riverside-San Bernardino-Ontario, CA Metro Area
6105                     Spokane-Spokane Valley, WA Metro Area
6106        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6107               Indianapolis-Carmel-Anderson, IN Metro Area
6108             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
6109                     Spokane-Spokane Valley, WA Metro Area
6110     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
6111             Los Angeles-Long Beach-Anaheim, CA Metro Area
6112         Crestview-Fort Walton Beach-Destin, FL Metro Area
6113                Dallas-Fort Worth-Arlington, TX Metro Area
6114                              Memphis, TN-MS-AR Metro Area
6115              Charlotte-Concord-Gastonia, NC-SC Metro Area
6116                     Spokane-Spokane Valley, WA Metro Area
6117             Los Angeles-Long Beach-Anaheim, CA Metro Area
6118           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
6119                                       Reno, NV Metro Area
6120                     Spokane-Spokane Valley, WA Metro Area
6121                                    El Paso, TX Metro Area
6122                                Albuquerque, NM Metro Area
6123                                   Savannah, GA Metro Area
6124                                    Midland, TX Metro Area
6125             Los Angeles-Long Beach-Anaheim, CA Metro Area
6126                    Albany-Schenectady-Troy, NY Metro Area
6127                                       Reno, NV Metro Area
6128                    Albany-Schenectady-Troy, NY Metro Area
6129                           Colorado Springs, CO Metro Area
6130          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6131                           Colorado Springs, CO Metro Area
6132                         Milwaukee-Waukesha, WI Metro Area
6133                    Albany-Schenectady-Troy, NY Metro Area
6134        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6135                             Salt Lake City, UT Metro Area
6136                                   Columbus, OH Metro Area
6137                     Denver-Aurora-Lakewood, CO Metro Area
6138                               Raleigh-Cary, NC Metro Area
6139                                Spartanburg, SC Metro Area
6140                                   Amarillo, TX Metro Area
6141                    Omaha-Council Bluffs, NE-IA Metro Area
6142             Los Angeles-Long Beach-Anaheim, CA Metro Area
6143                    Albany-Schenectady-Troy, NY Metro Area
6144                Charleston-North Charleston, SC Metro Area
6145             Los Angeles-Long Beach-Anaheim, CA Metro Area
6146                                Panama City, FL Metro Area
6147                                    Wichita, KS Metro Area
6148    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
6149                    Omaha-Council Bluffs, NE-IA Metro Area
6150             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
6151                    San Juan-Bayamón-Caguas, PR Metro Area
6152                              Oklahoma City, OK Metro Area
6153                    Omaha-Council Bluffs, NE-IA Metro Area
6154                    Albany-Schenectady-Troy, NY Metro Area
6155                              Memphis, TN-MS-AR Metro Area
6156                              Oklahoma City, OK Metro Area
6157                              Memphis, TN-MS-AR Metro Area
6158                               Jacksonville, FL Metro Area
6159                           Colorado Springs, CO Metro Area
6160                                       Reno, NV Metro Area
6161                                 Boise City, ID Metro Area
6162        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6163                 Boston-Cambridge-Newton, MA-NH Metro Area
6164                                       Reno, NV Metro Area
6165            Tampa-St. Petersburg-Clearwater, FL Metro Area
6166        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6167                              Memphis, TN-MS-AR Metro Area
6168             Los Angeles-Long Beach-Anaheim, CA Metro Area
6169          Hartford-East Hartford-Middletown, CT Metro Area
6170                                    Wichita, KS Metro Area
6171                      Providence-Warwick, RI-MA Metro Area
6172             Louisville/Jefferson County, KY-IN Metro Area
6173           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
6174                                Albuquerque, NM Metro Area
6175             Los Angeles-Long Beach-Anaheim, CA Metro Area
6176             San Francisco-Oakland-Berkeley, CA Metro Area
6177          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6178                                     Tucson, AZ Metro Area
6179                                Albuquerque, NM Metro Area
6180                           Cleveland-Elyria, OH Metro Area
6181                      Phoenix-Mesa-Chandler, AZ Metro Area
6182        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6183                               St. Louis, MO-IL Metro Area
6184                       New Orleans-Metairie, LA Metro Area
6185            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6186 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
6187     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
6188             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
6189                             Kansas City, MO-KS Metro Area
6190                                 Boise City, ID Metro Area
6191                                      Tulsa, OK Metro Area
6192                                   Columbus, OH Metro Area
6193                                Panama City, FL Metro Area
6194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6195            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6196     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
6197           Riverside-San Bernardino-Ontario, CA Metro Area
6198                                     Juneau, AK Micro Area
6199                    Atlantic City-Hammonton, NJ Metro Area
6200          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6201                                     Tucson, AZ Metro Area
6202        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6203             San Francisco-Oakland-Berkeley, CA Metro Area
6204             San Francisco-Oakland-Berkeley, CA Metro Area
6205               Austin-Round Rock-Georgetown, TX Metro Area
6206               Indianapolis-Carmel-Anderson, IN Metro Area
6207        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6208                                       Reno, NV Metro Area
6209                                 Boise City, ID Metro Area
6210                                    El Paso, TX Metro Area
6211           Riverside-San Bernardino-Ontario, CA Metro Area
6212                         Eugene-Springfield, OR Metro Area
6213                         Eugene-Springfield, OR Metro Area
6214                        Buffalo-Cheektowaga, NY Metro Area
6215                                      Tulsa, OK Metro Area
6216                             Kansas City, MO-KS Metro Area
6217                                   Savannah, GA Metro Area
6218                      Grand Rapids-Kentwood, MI Metro Area
6219             San Jose-Sunnyvale-Santa Clara, CA Metro Area
6220          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6221                    Seattle-Tacoma-Bellevue, WA Metro Area
6222                                                      <NA>
6223                          Birmingham-Hoover, AL Metro Area
6224                    Seattle-Tacoma-Bellevue, WA Metro Area
6225                              Memphis, TN-MS-AR Metro Area
6226                       New Orleans-Metairie, LA Metro Area
6227                      Brownsville-Harlingen, TX Metro Area
6228                Charleston-North Charleston, SC Metro Area
6229 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
6230                                    El Paso, TX Metro Area
6231              Charlotte-Concord-Gastonia, NC-SC Metro Area
6232             Los Angeles-Long Beach-Anaheim, CA Metro Area
6233  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
6234                                   Savannah, GA Metro Area
6235                                       Reno, NV Metro Area
6236           Riverside-San Bernardino-Ontario, CA Metro Area
6237                      Cape Coral-Fort Myers, FL Metro Area
6238               Las Vegas-Henderson-Paradise, NV Metro Area
6239                Sacramento-Roseville-Folsom, CA Metro Area
6240                               Raleigh-Cary, NC Metro Area
6241                               Raleigh-Cary, NC Metro Area
6242                      Cape Coral-Fort Myers, FL Metro Area
6243                                    El Paso, TX Metro Area
6244  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
6245                         Eugene-Springfield, OR Metro Area
6246                                     Tucson, AZ Metro Area
6247             Los Angeles-Long Beach-Anaheim, CA Metro Area
6248                             Kansas City, MO-KS Metro Area
6249                                    Midland, TX Metro Area
6250                      Cape Coral-Fort Myers, FL Metro Area
6251           Riverside-San Bernardino-Ontario, CA Metro Area
6252         Crestview-Fort Walton Beach-Destin, FL Metro Area
6253                               Raleigh-Cary, NC Metro Area
6254                                   Sikeston, MO Micro Area
6255                                Albuquerque, NM Metro Area
6256                                 Pittsburgh, PA Metro Area
6257                             Salt Lake City, UT Metro Area
6258                         Milwaukee-Waukesha, WI Metro Area
6259                    Omaha-Council Bluffs, NE-IA Metro Area
6260              North Port-Sarasota-Bradenton, FL Metro Area
6261                  San Antonio-New Braunfels, TX Metro Area
6262                                Albuquerque, NM Metro Area
6263                           Cleveland-Elyria, OH Metro Area
6264     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
6265                             Kansas City, MO-KS Metro Area
6266                    San Juan-Bayamón-Caguas, PR Metro Area
6267                        Buffalo-Cheektowaga, NY Metro Area
6268                                 Bellingham, WA Metro Area
6269                         Milwaukee-Waukesha, WI Metro Area
6270                                    El Paso, TX Metro Area
6271           Houston-The Woodlands-Sugar Land, TX Metro Area
6272                         Milwaukee-Waukesha, WI Metro Area
6273                                      Akron, OH Metro Area
6274                                    Bozeman, MT Micro Area
6275                                 Pittsburgh, PA Metro Area
6276             San Francisco-Oakland-Berkeley, CA Metro Area
6277                                     Fresno, CA Metro Area
6278                      Brownsville-Harlingen, TX Metro Area
6279                                    Jackson, MS Metro Area
6280                    Albany-Schenectady-Troy, NY Metro Area
6281                              Oklahoma City, OK Metro Area
6282                              Oklahoma City, OK Metro Area
6283           Riverside-San Bernardino-Ontario, CA Metro Area
6284                                Panama City, FL Metro Area
6285                  San Antonio-New Braunfels, TX Metro Area
6286                                    Midland, TX Metro Area
6287             San Francisco-Oakland-Berkeley, CA Metro Area
6288                     Spokane-Spokane Valley, WA Metro Area
6289                                Panama City, FL Metro Area
6290   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6291                    Omaha-Council Bluffs, NE-IA Metro Area
6292                      Providence-Warwick, RI-MA Metro Area
6293               Indianapolis-Carmel-Anderson, IN Metro Area
6294                           Cleveland-Elyria, OH Metro Area
6295                 Pensacola-Ferry Pass-Brent, FL Metro Area
6296                  Orlando-Kissimmee-Sanford, FL Metro Area
6297                      Grand Rapids-Kentwood, MI Metro Area
6298             Los Angeles-Long Beach-Anaheim, CA Metro Area
6299       Little Rock-North Little Rock-Conway, AR Metro Area
6300           Riverside-San Bernardino-Ontario, CA Metro Area
6301                  Santa Maria-Santa Barbara, CA Metro Area
6302                              Memphis, TN-MS-AR Metro Area
6303                    Detroit-Warren-Dearborn, MI Metro Area
6304                    Omaha-Council Bluffs, NE-IA Metro Area
6305                    Omaha-Council Bluffs, NE-IA Metro Area
6306                    Omaha-Council Bluffs, NE-IA Metro Area
6307                    Albany-Schenectady-Troy, NY Metro Area
6308                                 Pittsburgh, PA Metro Area
6309                      Grand Rapids-Kentwood, MI Metro Area
6310              North Port-Sarasota-Bradenton, FL Metro Area
6311        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6312                      Brownsville-Harlingen, TX Metro Area
6313                                      Tulsa, OK Metro Area
6314          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6315   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6316                                Panama City, FL Metro Area
6317                    Detroit-Warren-Dearborn, MI Metro Area
6318       Little Rock-North Little Rock-Conway, AR Metro Area
6319                                       Reno, NV Metro Area
6320                          Manchester-Nashua, NH Metro Area
6321                          Manchester-Nashua, NH Metro Area
6322                                    Bozeman, MT Micro Area
6323             San Francisco-Oakland-Berkeley, CA Metro Area
6324             Louisville/Jefferson County, KY-IN Metro Area
6325                           Cincinnati, OH-KY-IN Metro Area
6326                                    Midland, TX Metro Area
6327                                   Montrose, CO Micro Area
6328                 Des Moines-West Des Moines, IA Metro Area
6329          Hartford-East Hartford-Middletown, CT Metro Area
6330    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
6331                  San Antonio-New Braunfels, TX Metro Area
6332                                    Jackson, MS Metro Area
6333               Indianapolis-Carmel-Anderson, IN Metro Area
6334                                    Jackson, MS Metro Area
6335                                      Tulsa, OK Metro Area
6336               Austin-Round Rock-Georgetown, TX Metro Area
6337                         Milwaukee-Waukesha, WI Metro Area
6338             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
6339                             Salt Lake City, UT Metro Area
6340   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6341                                   Columbus, OH Metro Area
6342                              Oklahoma City, OK Metro Area
6343                      Grand Rapids-Kentwood, MI Metro Area
6344                           Cincinnati, OH-KY-IN Metro Area
6345                                Panama City, FL Metro Area
6346 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
6347                               St. Louis, MO-IL Metro Area
6348                             Kansas City, MO-KS Metro Area
6349                                    Bozeman, MT Micro Area
6350                             Salt Lake City, UT Metro Area
6351       Little Rock-North Little Rock-Conway, AR Metro Area
6352                 Des Moines-West Des Moines, IA Metro Area
6353          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6354             San Francisco-Oakland-Berkeley, CA Metro Area
6355                    San Juan-Bayamón-Caguas, PR Metro Area
6356                    Omaha-Council Bluffs, NE-IA Metro Area
6357                          Birmingham-Hoover, AL Metro Area
6358        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6359                          Manchester-Nashua, NH Metro Area
6360                             Urban Honolulu, HI Metro Area
6361                               Raleigh-Cary, NC Metro Area
6362                          Manchester-Nashua, NH Metro Area
6363                  San Antonio-New Braunfels, TX Metro Area
6364                         Milwaukee-Waukesha, WI Metro Area
6365                                      Tulsa, OK Metro Area
6366        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6367          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6368                                    Jackson, MS Metro Area
6369                       New Orleans-Metairie, LA Metro Area
6370                                Albuquerque, NM Metro Area
6371                Charleston-North Charleston, SC Metro Area
6372       Little Rock-North Little Rock-Conway, AR Metro Area
6373          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6374             Los Angeles-Long Beach-Anaheim, CA Metro Area
6375             Los Angeles-Long Beach-Anaheim, CA Metro Area
6376            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6377                                 Boise City, ID Metro Area
6378       Little Rock-North Little Rock-Conway, AR Metro Area
6379                                  Rochester, NY Metro Area
6380                                Panama City, FL Metro Area
6381                                   Savannah, GA Metro Area
6382             Louisville/Jefferson County, KY-IN Metro Area
6383                 Pensacola-Ferry Pass-Brent, FL Metro Area
6384                        Buffalo-Cheektowaga, NY Metro Area
6385               Indianapolis-Carmel-Anderson, IN Metro Area
6386                      Brownsville-Harlingen, TX Metro Area
6387                               Raleigh-Cary, NC Metro Area
6388                 Pensacola-Ferry Pass-Brent, FL Metro Area
6389               Austin-Round Rock-Georgetown, TX Metro Area
6390             Los Angeles-Long Beach-Anaheim, CA Metro Area
6391                Sacramento-Roseville-Folsom, CA Metro Area
6392                         Milwaukee-Waukesha, WI Metro Area
6393           Riverside-San Bernardino-Ontario, CA Metro Area
6394           Riverside-San Bernardino-Ontario, CA Metro Area
6395                                    Wichita, KS Metro Area
6396                                 Pittsburgh, PA Metro Area
6397                               Jacksonville, FL Metro Area
6398                         Milwaukee-Waukesha, WI Metro Area
6399                    Portland-South Portland, ME Metro Area
6400            Tampa-St. Petersburg-Clearwater, FL Metro Area
6401           Houston-The Woodlands-Sugar Land, TX Metro Area
6402          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6403        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6404        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6405                                Spartanburg, SC Metro Area
6406                 Boston-Cambridge-Newton, MA-NH Metro Area
6407                                    Midland, TX Metro Area
6408                                   Savannah, GA Metro Area
6409                        Buffalo-Cheektowaga, NY Metro Area
6410                                 Mason City, IA Micro Area
6411                                    Decatur, IL Metro Area
6412                                  Jamestown, ND Micro Area
6413                                Sioux Falls, SD Metro Area
6414                                 Boise City, ID Metro Area
6415                                       Reno, NV Metro Area
6416                Hilton Head Island-Bluffton, SC Metro Area
6417                                 Stillwater, OK Micro Area
6418                                 Charleston, WV Metro Area
6419                                                      <NA>
6420                    Portland-South Portland, ME Metro Area
6421                        Buffalo-Cheektowaga, NY Metro Area
6422                                 Twin Falls, ID Metro Area
6423          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6424                                  Kalispell, MT Micro Area
6425                               North Platte, NE Micro Area
6426        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6427                                    Bozeman, MT Micro Area
6428                              Traverse City, MI Micro Area
6429                                    Wichita, KS Metro Area
6430                                 Fort Dodge, IA Micro Area
6431                                     Hailey, ID Micro Area
6432                                   Missoula, MT Metro Area
6433                                  Fairbanks, AK Metro Area
6434                                     Laurel, MS Micro Area
6435                           Champaign-Urbana, IL Metro Area
6436                        Buffalo-Cheektowaga, NY Metro Area
6437                                 Eau Claire, WI Metro Area
6438        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6439                                  Asheville, NC Metro Area
6440                              Memphis, TN-MS-AR Metro Area
6441                 Boston-Cambridge-Newton, MA-NH Metro Area
6442                                   Billings, MT Metro Area
6443                                       Bend, OR Metro Area
6444                                  Johnstown, PA Metro Area
6445                                                      <NA>
6446                                  Green Bay, WI Metro Area
6447                                    Lubbock, TX Metro Area
6448        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6449                                Spartanburg, SC Metro Area
6450                                 Lebanon, NH-VT Micro Area
6451                                   Columbia, SC Metro Area
6452                      Grand Rapids-Kentwood, MI Metro Area
6453                                  Quincy, IL-MO Micro Area
6454                         Milwaukee-Waukesha, WI Metro Area
6455                      Cape Coral-Fort Myers, FL Metro Area
6456                                   Syracuse, NY Metro Area
6457                    Albany-Schenectady-Troy, NY Metro Area
6458                      Providence-Warwick, RI-MA Metro Area
6459                                    Lubbock, TX Metro Area
6460                                      Tulsa, OK Metro Area
6461                                    Madison, WI Metro Area
6462                                       Reno, NV Metro Area
6463                           Cleveland-Elyria, OH Metro Area
6464                           Colorado Springs, CO Metro Area
6465                               Worcester, MA-CT Metro Area
6466            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6467                                   Richmond, VA Metro Area
6468                    Atlantic City-Hammonton, NJ Metro Area
6469                                     Toledo, OH Metro Area
6470                             Corpus Christi, TX Metro Area
6471     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
6472                                                      <NA>
6473                                      Tulsa, OK Metro Area
6474                                      Akron, OH Metro Area
6475                                   Amarillo, TX Metro Area
6476                                Great Falls, MT Metro Area
6477                Sacramento-Roseville-Folsom, CA Metro Area
6478                                                      <NA>
6479                Burlington-South Burlington, VT Metro Area
6480                                                      <NA>
6481                    Seattle-Tacoma-Bellevue, WA Metro Area
6482                                  Owensboro, KY Metro Area
6483                                   Richmond, VA Metro Area
6484                Burlington-South Burlington, VT Metro Area
6485                    Atlantic City-Hammonton, NJ Metro Area
6486  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
6487           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
6488                        Buffalo-Cheektowaga, NY Metro Area
6489             Los Angeles-Long Beach-Anaheim, CA Metro Area
6490            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6491                          Steamboat Springs, CO Micro Area
6492                 Boston-Cambridge-Newton, MA-NH Metro Area
6493                    Seattle-Tacoma-Bellevue, WA Metro Area
6494          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6495                  Baltimore-Columbia-Towson, MD Metro Area
6496                             Kansas City, MO-KS Metro Area
6497                    San Juan-Bayamón-Caguas, PR Metro Area
6498                                Tallahassee, FL Metro Area
6499                          New Haven-Milford, CT Metro Area
6500                 Boston-Cambridge-Newton, MA-NH Metro Area
6501          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6502                           Cleveland-Elyria, OH Metro Area
6503          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6504                                    Madison, WI Metro Area
6505           Poughkeepsie-Newburgh-Middletown, NY Metro Area
6506                                   Syracuse, NY Metro Area
6507             Fayetteville-Springdale-Rogers, AR Metro Area
6508                               Raleigh-Cary, NC Metro Area
6509                                   Amarillo, TX Metro Area
6510               Austin-Round Rock-Georgetown, TX Metro Area
6511                          Birmingham-Hoover, AL Metro Area
6512 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
6513             Los Angeles-Long Beach-Anaheim, CA Metro Area
6514   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6515                                    El Paso, TX Metro Area
6516                                Spartanburg, SC Metro Area
6517                      Brownsville-Harlingen, TX Metro Area
6518                                    Lubbock, TX Metro Area
6519             Los Angeles-Long Beach-Anaheim, CA Metro Area
6520                             Kansas City, MO-KS Metro Area
6521                             Kansas City, MO-KS Metro Area
6522             San Francisco-Oakland-Berkeley, CA Metro Area
6523        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6524    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
6525                                   Savannah, GA Metro Area
6526                Sacramento-Roseville-Folsom, CA Metro Area
6527                Sacramento-Roseville-Folsom, CA Metro Area
6528             Los Angeles-Long Beach-Anaheim, CA Metro Area
6529             Los Angeles-Long Beach-Anaheim, CA Metro Area
6530                                     Tucson, AZ Metro Area
6531         Crestview-Fort Walton Beach-Destin, FL Metro Area
6532                        Santa Rosa-Petaluma, CA Metro Area
6533                 Boston-Cambridge-Newton, MA-NH Metro Area
6534                      Brownsville-Harlingen, TX Metro Area
6535                              Oklahoma City, OK Metro Area
6536                    Omaha-Council Bluffs, NE-IA Metro Area
6537          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6538                                  Green Bay, WI Metro Area
6539                          Trenton-Princeton, NJ Metro Area
6540             Los Angeles-Long Beach-Anaheim, CA Metro Area
6541                                    Bozeman, MT Micro Area
6542        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6543                                   Columbus, OH Metro Area
6544        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6545           Riverside-San Bernardino-Ontario, CA Metro Area
6546                    San Juan-Bayamón-Caguas, PR Metro Area
6547                                  Rochester, NY Metro Area
6548                Dallas-Fort Worth-Arlington, TX Metro Area
6549               Indianapolis-Carmel-Anderson, IN Metro Area
6550          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6551                  Orlando-Kissimmee-Sanford, FL Metro Area
6552             San Francisco-Oakland-Berkeley, CA Metro Area
6553        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6554             San Jose-Sunnyvale-Santa Clara, CA Metro Area
6555                                    Edwards, CO Micro Area
6556                         Milwaukee-Waukesha, WI Metro Area
6557             Los Angeles-Long Beach-Anaheim, CA Metro Area
6558                    Albany-Schenectady-Troy, NY Metro Area
6559                                   Amarillo, TX Metro Area
6560               Austin-Round Rock-Georgetown, TX Metro Area
6561                          Birmingham-Hoover, AL Metro Area
6562                                   Columbus, OH Metro Area
6563                                     Fresno, CA Metro Area
6564           Houston-The Woodlands-Sugar Land, TX Metro Area
6565                                    Jackson, MS Metro Area
6566             Los Angeles-Long Beach-Anaheim, CA Metro Area
6567                                    Midland, TX Metro Area
6568                         Milwaukee-Waukesha, WI Metro Area
6569                         Milwaukee-Waukesha, WI Metro Area
6570                    Omaha-Council Bluffs, NE-IA Metro Area
6571           Riverside-San Bernardino-Ontario, CA Metro Area
6572        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6573             San Diego-Chula Vista-Carlsbad, CA Metro Area
6574                  San Antonio-New Braunfels, TX Metro Area
6575                  Santa Maria-Santa Barbara, CA Metro Area
6576                  Santa Maria-Santa Barbara, CA Metro Area
6577                               St. Louis, MO-IL Metro Area
6578                                     Tucson, AZ Metro Area
6579                    Omaha-Council Bluffs, NE-IA Metro Area
6580                                 Pittsburgh, PA Metro Area
6581        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6582                  Baltimore-Columbia-Towson, MD Metro Area
6583                           Colorado Springs, CO Metro Area
6584       Little Rock-North Little Rock-Conway, AR Metro Area
6585          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6586          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6587               Indianapolis-Carmel-Anderson, IN Metro Area
6588                                  Duluth, MN-WI Metro Area
6589                    Albany-Schenectady-Troy, NY Metro Area
6590                      Phoenix-Mesa-Chandler, AZ Metro Area
6591        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6592          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6593                     Denver-Aurora-Lakewood, CO Metro Area
6594                                    Bozeman, MT Micro Area
6595                           Cincinnati, OH-KY-IN Metro Area
6596           Riverside-San Bernardino-Ontario, CA Metro Area
6597                               Raleigh-Cary, NC Metro Area
6598             San Francisco-Oakland-Berkeley, CA Metro Area
6599                    Omaha-Council Bluffs, NE-IA Metro Area
6600                                   Richmond, VA Metro Area
6601                  Santa Maria-Santa Barbara, CA Metro Area
6602                 Des Moines-West Des Moines, IA Metro Area
6603            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6604                          Birmingham-Hoover, AL Metro Area
6605               Las Vegas-Henderson-Paradise, NV Metro Area
6606          New York-Newark-Jersey City, NY-NJ-PA Metro Area
6607        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6608        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6609                       New Orleans-Metairie, LA Metro Area
6610                 Pensacola-Ferry Pass-Brent, FL Metro Area
6611                                       Reno, NV Metro Area
6612                    Seattle-Tacoma-Bellevue, WA Metro Area
6613                Sacramento-Roseville-Folsom, CA Metro Area
6614              North Port-Sarasota-Bradenton, FL Metro Area
6615                                Albuquerque, NM Metro Area
6616                                Albuquerque, NM Metro Area
6617                                   Amarillo, TX Metro Area
6618           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
6619               Austin-Round Rock-Georgetown, TX Metro Area
6620          Hartford-East Hartford-Middletown, CT Metro Area
6621                        Buffalo-Cheektowaga, NY Metro Area
6622             Los Angeles-Long Beach-Anaheim, CA Metro Area
6623                           Colorado Springs, CO Metro Area
6624                           Colorado Springs, CO Metro Area
6625                           Colorado Springs, CO Metro Area
6626                                Panama City, FL Metro Area
6627                                    El Paso, TX Metro Area
6628                                     Fresno, CA Metro Area
6629                                    Wichita, KS Metro Area
6630                                    Lubbock, TX Metro Area
6631                                    Midland, TX Metro Area
6632                         Milwaukee-Waukesha, WI Metro Area
6633        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
6634             San Francisco-Oakland-Berkeley, CA Metro Area
6635                              Oklahoma City, OK Metro Area
6636                              Oklahoma City, OK Metro Area
6637                    Omaha-Council Bluffs, NE-IA Metro Area
6638           Riverside-San Bernardino-Ontario, CA Metro Area
6639                      Providence-Warwick, RI-MA Metro Area
6640                      Cape Coral-Fort Myers, FL Metro Area
6641             San Diego-Chula Vista-Carlsbad, CA Metro Area
6642                  San Antonio-New Braunfels, TX Metro Area
6643                  Santa Maria-Santa Barbara, CA Metro Area
6644             Louisville/Jefferson County, KY-IN Metro Area
6645                 Boston-Cambridge-Newton, MA-NH Metro Area
6646                                   Missoula, MT Metro Area
6647                 Boston-Cambridge-Newton, MA-NH Metro Area
6648             San Diego-Chula Vista-Carlsbad, CA Metro Area
6649                                Albuquerque, NM Metro Area
6650                                    El Paso, TX Metro Area
6651               Indianapolis-Carmel-Anderson, IN Metro Area
6652                       New Orleans-Metairie, LA Metro Area
6653                    Omaha-Council Bluffs, NE-IA Metro Area
6654        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6655            Portland-Vancouver-Hillsboro, OR-WA Metro Area
6656                                 Pittsburgh, PA Metro Area
6657                    San Juan-Bayamón-Caguas, PR Metro Area
6658                                      Tulsa, OK Metro Area
6659                           Colorado Springs, CO Metro Area
6660                       New Orleans-Metairie, LA Metro Area
6661               Austin-Round Rock-Georgetown, TX Metro Area
6662                               Jacksonville, FL Metro Area
6663                               St. Louis, MO-IL Metro Area
6664   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
6665            Tampa-St. Petersburg-Clearwater, FL Metro Area
6666                              Eureka-Arcata, CA Micro Area
     total_populationE total_populationM age_distributionE age_distributionM
1             19908595                NA           9713298               650
2              6123949                NA           3001027               195
3              1613587                NA            790463               387
4             13111917                NA           6515114                NA
5             13111917                NA           6515114                NA
6             13111917                NA           6515114                NA
7             19908595                NA           9713298               650
8             19908595                NA           9713298               650
9              2679298                NA           1318555               326
10             6123949                NA           3001027               195
11             1264357                NA            612537               452
12              772902                NA            380685                73
13             4001701                NA           2024424                73
14             4001701                NA           2024424                73
15             4001701                NA           2024424                73
16             1254675                NA            635422               145
17             3194310                NA           1562880               249
18             6094752                NA           2965233               880
19             6094752                NA           2965233               880
20             6094752                NA           2965233               880
21             6094752                NA           2965233               880
22             6094752                NA           2965233               880
23             6094752                NA           2965233               880
24             6094752                NA           2965233               880
25             6094752                NA           2965233               880
26             6094752                NA           2965233               880
27             6094752                NA           2965233               880
28             6094752                NA           2965233               880
29             6094752                NA           2965233               880
30             6094752                NA           2965233               880
31             6094752                NA           2965233               880
32             6094752                NA           2965233               880
33             6094752                NA           2965233               880
34             4375604                NA           2148947               188
35             4375604                NA           2148947               188
36             3678328                NA           1837913               458
37             3678328                NA           1837913               458
38             3678328                NA           1837913               458
39             3678328                NA           1837913               458
40             1254675                NA            635422               145
41             1254675                NA            635422               145
42             1254675                NA            635422               145
43             6094752                NA           2965233               880
44             6094752                NA           2965233               880
45             3678328                NA           1837913               458
46             3678328                NA           1837913               458
47             6094752                NA           2965233               880
48             6094752                NA           2965233               880
49             6094752                NA           2965233               880
50             6094752                NA           2965233               880
51             6094752                NA           2965233               880
52             6094752                NA           2965233               880
53             6094752                NA           2965233               880
54            19908595                NA           9713298               650
55            13111917                NA           6515114                NA
56            19908595                NA           9713298               650
57             3678328                NA           1837913               458
58             1254675                NA            635422               145
59             1254675                NA            635422               145
60             3678328                NA           1837913               458
61             3678328                NA           1837913               458
62             3678328                NA           1837913               458
63             3678328                NA           1837913               458
64             1254675                NA            635422               145
65             1254675                NA            635422               145
66             1254675                NA            635422               145
67             1254675                NA            635422               145
68             1254675                NA            635422               145
69             1254675                NA            635422               145
70             1254675                NA            635422               145
71             1254675                NA            635422               145
72             1254675                NA            635422               145
73             6094752                NA           2965233               880
74             6094752                NA           2965233               880
75             6094752                NA           2965233               880
76             4375604                NA           2148947               188
77             6094752                NA           2965233               880
78             6094752                NA           2965233               880
79             6094752                NA           2965233               880
80             6094752                NA           2965233               880
81             6094752                NA           2965233               880
82             6094752                NA           2965233               880
83             6094752                NA           2965233               880
84             6094752                NA           2965233               880
85             6094752                NA           2965233               880
86             6094752                NA           2965233               880
87             6094752                NA           2965233               880
88            13111917                NA           6515114                NA
89            13111917                NA           6515114                NA
90            13111917                NA           6515114                NA
91            13111917                NA           6515114                NA
92            13111917                NA           6515114                NA
93             3678328                NA           1837913               458
94             3678328                NA           1837913               458
95             4001701                NA           2024424                73
96             1254675                NA            635422               145
97             6094752                NA           2965233               880
98             6094752                NA           2965233               880
99             6094752                NA           2965233               880
100            6094752                NA           2965233               880
101            6094752                NA           2965233               880
102            6094752                NA           2965233               880
103            6094752                NA           2965233               880
104            4375604                NA           2148947               188
105           13111917                NA           6515114                NA
106           13111917                NA           6515114                NA
107            3678328                NA           1837913               458
108            1254675                NA            635422               145
109            6094752                NA           2965233               880
110            6094752                NA           2965233               880
111            6094752                NA           2965233               880
112            6094752                NA           2965233               880
113            6094752                NA           2965233               880
114            6094752                NA           2965233               880
115            6094752                NA           2965233               880
116            4375604                NA           2148947               188
117            4375604                NA           2148947               188
118            2265926                NA           1137581                NA
119           13111917                NA           6515114                NA
120           13111917                NA           6515114                NA
121            2679298                NA           1318555               326
122            2679298                NA           1318555               326
123            6123949                NA           3001027               195
124            6123949                NA           3001027               195
125             772902                NA            380685                73
126            4001701                NA           2024424                73
127            4001701                NA           2024424                73
128            4001701                NA           2024424                73
129            4001701                NA           2024424                73
130            1254675                NA            635422               145
131            1254675                NA            635422               145
132            1254675                NA            635422               145
133            1254675                NA            635422               145
134            3194310                NA           1562880               249
135            3289701                NA           1667851                NA
136           13111917                NA           6515114                NA
137            4001701                NA           2024424                73
138            6094752                NA           2965233               880
139            4375604                NA           2148947               188
140            4375604                NA           2148947               188
141            4375604                NA           2148947               188
142            4375604                NA           2148947               188
143           19908595                NA           9713298               650
144           19908595                NA           9713298               650
145            3678328                NA           1837913               458
146            3678328                NA           1837913               458
147            1420825                NA            698689               221
148            1254675                NA            635422               145
149            1254675                NA            635422               145
150            6094752                NA           2965233               880
151            6094752                NA           2965233               880
152            6094752                NA           2965233               880
153            1990873                NA            978574               496
154            2253528                NA           1113732               640
155            2253528                NA           1113732               640
156            7673379                NA           3806912               442
157            4375604                NA           2148947               188
158            4375604                NA           2148947               188
159            4375604                NA           2148947               188
160            4375604                NA           2148947               188
161            1010100                NA            512085                30
162           19908595                NA           9713298               650
163           19908595                NA           9713298               650
164            1420825                NA            698689               221
165            2570862                NA           1280273               338
166            4001701                NA           2024424                73
167            1254675                NA            635422               145
168            1254675                NA            635422               145
169            1254675                NA            635422               145
170            1254675                NA            635422               145
171            6094752                NA           2965233               880
172            4375604                NA           2148947               188
173            4375604                NA           2148947               188
174            4375604                NA           2148947               188
175            4375604                NA           2148947               188
176            4375604                NA           2148947               188
177            6123949                NA           3001027               195
178            3678328                NA           1837913               458
179            3678328                NA           1837913               458
180            3678328                NA           1837913               458
181            3678328                NA           1837913               458
182            3678328                NA           1837913               458
183            9566955                NA           4718471               425
184             844461                NA            407362               124
185            3194310                NA           1562880               249
186           13111917                NA           6515114                NA
187            6094752                NA           2965233               880
188            6094752                NA           2965233               880
189            3678328                NA           1837913               458
190            6094752                NA           2965233               880
191            6094752                NA           2965233               880
192            6094752                NA           2965233               880
193            6094752                NA           2965233               880
194            4375604                NA           2148947               188
195            4375604                NA           2148947               188
196           19908595                NA           9713298               650
197           19908595                NA           9713298               650
198            3678328                NA           1837913               458
199            6094752                NA           2965233               880
200            6094752                NA           2965233               880
201            6094752                NA           2965233               880
202            6094752                NA           2965233               880
203            6094752                NA           2965233               880
204            3678328                NA           1837913               458
205            1254675                NA            635422               145
206            6094752                NA           2965233               880
207            6094752                NA           2965233               880
208            6094752                NA           2965233               880
209            3678328                NA           1837913               458
210            6094752                NA           2965233               880
211            6094752                NA           2965233               880
212            6094752                NA           2965233               880
213            6094752                NA           2965233               880
214            2296377                NA           1160944               432
215            1990873                NA            978574               496
216            4912449                NA           2407307               403
217            6346083                NA           3128067               735
218            2959386                NA           1493164               389
219            7673379                NA           3806912               442
220            4375604                NA           2148947               188
221            4375604                NA           2148947               188
222            4375604                NA           2148947               188
223           19908595                NA           9713298               650
224            2265926                NA           1137581                NA
225           13111917                NA           6515114                NA
226           19908595                NA           9713298               650
227           19908595                NA           9713298               650
228            2679298                NA           1318555               326
229            1264357                NA            612537               452
230            9566955                NA           4718471               425
231            2505312                NA           1250855               406
232            6232894                NA           3033772               332
233            1420825                NA            698689               221
234             772902                NA            380685                73
235            4001701                NA           2024424                73
236            3194310                NA           1562880               249
237            4375604                NA           2148947               188
238            4375604                NA           2148947               188
239            3678328                NA           1837913               458
240            3678328                NA           1837913               458
241            6094752                NA           2965233               880
242            6094752                NA           2965233               880
243            1254675                NA            635422               145
244            1254675                NA            635422               145
245            6094752                NA           2965233               880
246            3678328                NA           1837913               458
247            1254675                NA            635422               145
248            6094752                NA           2965233               880
249            4912449                NA           2407307               403
250            4375604                NA           2148947               188
251           19908595                NA           9713298               650
252           19908595                NA           9713298               650
253            3678328                NA           1837913               458
254            3678328                NA           1837913               458
255            4001701                NA           2024424                73
256            6094752                NA           2965233               880
257            6094752                NA           2965233               880
258            3678328                NA           1837913               458
259            4001701                NA           2024424                73
260            1254675                NA            635422               145
261            1254675                NA            635422               145
262            1254675                NA            635422               145
263            1254675                NA            635422               145
264            6094752                NA           2965233               880
265            6094752                NA           2965233               880
266            4375604                NA           2148947               188
267            3678328                NA           1837913               458
268            6094752                NA           2965233               880
269           19908595                NA           9713298               650
270            3678328                NA           1837913               458
271            6094752                NA           2965233               880
272            6094752                NA           2965233               880
273            6094752                NA           2965233               880
274            4375604                NA           2148947               188
275            6123949                NA           3001027               195
276            2265926                NA           1137581                NA
277           13111917                NA           6515114                NA
278           13111917                NA           6515114                NA
279            2679298                NA           1318555               326
280            4001701                NA           2024424                73
281            6094752                NA           2965233               880
282            6094752                NA           2965233               880
283           19908595                NA           9713298               650
284            4375604                NA           2148947               188
285            4001701                NA           2024424                73
286            1254675                NA            635422               145
287            1254675                NA            635422               145
288            6094752                NA           2965233               880
289            6094752                NA           2965233               880
290            4375604                NA           2148947               188
291            4375604                NA           2148947               188
292            2265926                NA           1137581                NA
293           13111917                NA           6515114                NA
294            3678328                NA           1837913               458
295            4864209                NA           2434382               157
296            3289701                NA           1667851                NA
297            1254675                NA            635422               145
298           13111917                NA           6515114                NA
299            4001701                NA           2024424                73
300            1254675                NA            635422               145
301            1254675                NA            635422               145
302            3678328                NA           1837913               458
303            1254675                NA            635422               145
304             771602                NA            388362               230
305            7673379                NA           3806912               442
306            4375604                NA           2148947               188
307            4375604                NA           2148947               188
308            4375604                NA           2148947               188
309           19908595                NA           9713298               650
310             585485                NA            292820               126
311           19908595                NA           9713298               650
312            2265926                NA           1137581                NA
313           13111917                NA           6515114                NA
314            3678328                NA           1837913               458
315            4610050                NA           2315218               243
316            3289701                NA           1667851                NA
317            4692242                NA           2342253               320
318            1981584                NA           1011796               354
319           13111917                NA           6515114                NA
320            3678328                NA           1837913               458
321            1254675                NA            635422               145
322            6094752                NA           2965233               880
323            3678328                NA           1837913               458
324            4001701                NA           2024424                73
325            1254675                NA            635422               145
326            6094752                NA           2965233               880
327            3678328                NA           1837913               458
328            6094752                NA           2965233               880
329            6094752                NA           2965233               880
330            6094752                NA           2965233               880
331            4375604                NA           2148947               188
332            4375604                NA           2148947               188
333           19908595                NA           9713298               650
334           19908595                NA           9713298               650
335            3678328                NA           1837913               458
336            2265926                NA           1137581                NA
337            4610050                NA           2315218               243
338            2265926                NA           1137581                NA
339            2679298                NA           1318555               326
340            2679298                NA           1318555               326
341            2959386                NA           1493164               389
342            2265926                NA           1137581                NA
343            6232894                NA           3033772               332
344            1008280                NA            506526                56
345            9566955                NA           4718471               425
346            3194310                NA           1562880               249
347            3194310                NA           1562880               249
348             383732                NA            189495                92
349            2959386                NA           1493164               389
350            2265926                NA           1137581                NA
351            6232894                NA           3033772               332
352            2265926                NA           1137581                NA
353            2265926                NA           1137581                NA
354            2679298                NA           1318555               326
355            3194310                NA           1562880               249
356            3289701                NA           1667851                NA
357            2073546                NA            975289               435
358            2265926                NA           1137581                NA
359            2265926                NA           1137581                NA
360           19908595                NA           9713298               650
361            6346083                NA           3128067               735
362           19908595                NA           9713298               650
363            9566955                NA           4718471               425
364            6346083                NA           3128067               735
365            9566955                NA           4718471               425
366            9566955                NA           4718471               425
367           19908595                NA           9713298               650
368            2079759                NA           1012336               195
369            2668688                NA           1305000               381
370            6346083                NA           3128067               735
371             775169                NA            372915               218
372            2109957                NA           1038760               572
373            1086859                NA            532509               342
374            6346083                NA           3128067               735
375           19908595                NA           9713298               650
376            9566955                NA           4718471               425
377             218515                NA            108665               349
378            2109957                NA           1038760               572
379            6346083                NA           3128067               735
380            9566955                NA           4718471               425
381            9566955                NA           4718471               425
382            9566955                NA           4718471               425
383           19908595                NA           9713298               650
384           19908595                NA           9713298               650
385            6346083                NA           3128067               735
386            6346083                NA           3128067               735
387           19908595                NA           9713298               650
388           19908595                NA           9713298               650
389           19908595                NA           9713298               650
390            9566955                NA           4718471               425
391            9566955                NA           4718471               425
392           19908595                NA           9713298               650
393           19908595                NA           9713298               650
394            6346083                NA           3128067               735
395            9566955                NA           4718471               425
396            9566955                NA           4718471               425
397            9566955                NA           4718471               425
398            9566955                NA           4718471               425
399            2668688                NA           1305000               381
400            6123949                NA           3001027               195
401            9566955                NA           4718471               425
402            1990873                NA            978574               496
403            2253528                NA           1113732               640
404            1428923                NA            708697               296
405            9566955                NA           4718471               425
406            2296377                NA           1160944               432
407            9566955                NA           4718471               425
408            9566955                NA           4718471               425
409            9566955                NA           4718471               425
410            9566955                NA           4718471               425
411            7673379                NA           3806912               442
412            9566955                NA           4718471               425
413            7673379                NA           3806912               442
414            7673379                NA           3806912               442
415            7673379                NA           3806912               442
416            9566955                NA           4718471               425
417            6346083                NA           3128067               735
418            6346083                NA           3128067               735
419            6123949                NA           3001027               195
420            6123949                NA           3001027               195
421            6123949                NA           3001027               195
422            9566955                NA           4718471               425
423            7673379                NA           3806912               442
424            4375604                NA           2148947               188
425            1335804                NA            641128               280
426             216217                NA            106627               251
427              47759                NA             23950               207
428            7673379                NA           3806912               442
429            9566955                NA           4718471               425
430            7673379                NA           3806912               442
431            9566955                NA           4718471               425
432            9566955                NA           4718471               425
433            7673379                NA           3806912               442
434            9566955                NA           4718471               425
435            7673379                NA           3806912               442
436            7673379                NA           3806912               442
437            7673379                NA           3806912               442
438            7673379                NA           3806912               442
439            7673379                NA           3806912               442
440            2668688                NA           1305000               381
441            6123949                NA           3001027               195
442            9566955                NA           4718471               425
443            9566955                NA           4718471               425
444            9566955                NA           4718471               425
445            7673379                NA           3806912               442
446            7673379                NA           3806912               442
447            7673379                NA           3806912               442
448            7673379                NA           3806912               442
449            7673379                NA           3806912               442
450            2668688                NA           1305000               381
451            9566955                NA           4718471               425
452            7673379                NA           3806912               442
453            9566955                NA           4718471               425
454            2365501                NA           1162773               204
455            7673379                NA           3806912               442
456            9566955                NA           4718471               425
457            7673379                NA           3806912               442
458            9566955                NA           4718471               425
459            9566955                NA           4718471               425
460            7673379                NA           3806912               442
461            9566955                NA           4718471               425
462            2296377                NA           1160944               432
463            2253528                NA           1113732               640
464            1420825                NA            698689               221
465            9566955                NA           4718471               425
466            9566955                NA           4718471               425
467            7673379                NA           3806912               442
468            9566955                NA           4718471               425
469            6123949                NA           3001027               195
470            6123949                NA           3001027               195
471            6123949                NA           3001027               195
472            7673379                NA           3806912               442
473            7673379                NA           3806912               442
474            9566955                NA           4718471               425
475            7673379                NA           3806912               442
476            7673379                NA           3806912               442
477            6123949                NA           3001027               195
478            9566955                NA           4718471               425
479            7673379                NA           3806912               442
480            7673379                NA           3806912               442
481            7673379                NA           3806912               442
482            6123949                NA           3001027               195
483             496299                NA            240510               173
484             772902                NA            380685                73
485           19908595                NA           9713298               650
486            6123949                NA           3001027               195
487            7142603                NA           3563435               532
488            2265926                NA           1137581                NA
489            1264357                NA            612537               452
490           13111917                NA           6515114                NA
491            3194310                NA           1562880               249
492            6123949                NA           3001027               195
493            2265926                NA           1137581                NA
494           13111917                NA           6515114                NA
495           19908595                NA           9713298               650
496            2840005                NA           1374325               218
497            6123949                NA           3001027               195
498            2265926                NA           1137581                NA
499            2073546                NA            975289               435
500            3194310                NA           1562880               249
501            2265926                NA           1137581                NA
502            6123949                NA           3001027               195
503            6123949                NA           3001027               195
504            2265926                NA           1137581                NA
505            1264357                NA            612537               452
506            3194310                NA           1562880               249
507            4912449                NA           2407307               403
508            2265926                NA           1137581                NA
509            2265926                NA           1137581                NA
510             772902                NA            380685                73
511            3194310                NA           1562880               249
512            2679298                NA           1318555               326
513            2679298                NA           1318555               326
514            2679298                NA           1318555               326
515            7142603                NA           3563435               532
516            6123949                NA           3001027               195
517            2265926                NA           1137581                NA
518            1264357                NA            612537               452
519            9566955                NA           4718471               425
520            3194310                NA           1562880               249
521            2265926                NA           1137581                NA
522            1990873                NA            978574               496
523            6123949                NA           3001027               195
524            7142603                NA           3563435               532
525            2679298                NA           1318555               326
526            2296377                NA           1160944               432
527            1990873                NA            978574               496
528            4912449                NA           2407307               403
529            2840005                NA           1374325               218
530            2959386                NA           1493164               389
531           19908595                NA           9713298               650
532            2109957                NA           1038760               572
533            2265926                NA           1137581                NA
534           19908595                NA           9713298               650
535           19908595                NA           9713298               650
536            2265926                NA           1137581                NA
537            6123949                NA           3001027               195
538            2265926                NA           1137581                NA
539            3194310                NA           1562880               249
540            1990873                NA            978574               496
541            4912449                NA           2407307               403
542            4375604                NA           2148947               188
543            2679298                NA           1318555               326
544            1264357                NA            612537               452
545            2365501                NA           1162773               204
546            4001701                NA           2024424                73
547            6123949                NA           3001027               195
548            2190750                NA           1084347               492
549            1264357                NA            612537               452
550            6232894                NA           3033772               332
551            1282588                NA            630858               398
552            2679298                NA           1318555               326
553             772902                NA            380685                73
554            2265926                NA           1137581                NA
555           13111917                NA           6515114                NA
556            1990873                NA            978574               496
557             308919                NA            149938                90
558            2668688                NA           1305000               381
559            2265926                NA           1137581                NA
560            2365501                NA           1162773               204
561            2073546                NA            975289               435
562            2265926                NA           1137581                NA
563            6123949                NA           3001027               195
564            2265926                NA           1137581                NA
565            2265926                NA           1137581                NA
566            2265926                NA           1137581                NA
567            2679298                NA           1318555               326
568            1264357                NA            612537               452
569             772902                NA            380685                73
570            2265926                NA           1137581                NA
571           13111917                NA           6515114                NA
572            2679298                NA           1318555               326
573            9566955                NA           4718471               425
574            4912449                NA           2407307               403
575            3194310                NA           1562880               249
576            6123949                NA           3001027               195
577            4912449                NA           2407307               403
578            2840005                NA           1374325               218
579            2137223                NA           1061042               342
580            2265926                NA           1137581                NA
581            2668688                NA           1305000               381
582            2668688                NA           1305000               381
583            6346083                NA           3128067               735
584            6232894                NA           3033772               332
585            6346083                NA           3128067               735
586            2668688                NA           1305000               381
587            2668688                NA           1305000               381
588            2668688                NA           1305000               381
589            2668688                NA           1305000               381
590            2668688                NA           1305000               381
591            2668688                NA           1305000               381
592            6346083                NA           3128067               735
593            6346083                NA           3128067               735
594            6346083                NA           3128067               735
595            2668688                NA           1305000               381
596            2668688                NA           1305000               381
597            2668688                NA           1305000               381
598            2668688                NA           1305000               381
599            6232894                NA           3033772               332
600            2668688                NA           1305000               381
601             863166                NA            427343               249
602            1990873                NA            978574               496
603           19908595                NA           9713298               650
604            6346083                NA           3128067               735
605             401702                NA            198867               193
606            2668688                NA           1305000               381
607            2668688                NA           1305000               381
608            6232894                NA           3033772               332
609            2668688                NA           1305000               381
610            2668688                NA           1305000               381
611            2668688                NA           1305000               381
612            2668688                NA           1305000               381
613            2668688                NA           1305000               381
614            6346083                NA           3128067               735
615            2668688                NA           1305000               381
616             591397                NA            285117               421
617            1613587                NA            790463               387
618            1264357                NA            612537               452
619            6232894                NA           3033772               332
620             384740                NA            183928               283
621            2668688                NA           1305000               381
622            6346083                NA           3128067               735
623            6346083                NA           3128067               735
624            2668688                NA           1305000               381
625            6232894                NA           3033772               332
626            6232894                NA           3033772               332
627            2668688                NA           1305000               381
628            2668688                NA           1305000               381
629            2668688                NA           1305000               381
630            2668688                NA           1305000               381
631            2668688                NA           1305000               381
632            2668688                NA           1305000               381
633            2668688                NA           1305000               381
634            2668688                NA           1305000               381
635            2668688                NA           1305000               381
636            6346083                NA           3128067               735
637            6346083                NA           3128067               735
638            2668688                NA           1305000               381
639            2668688                NA           1305000               381
640            2668688                NA           1305000               381
641            6346083                NA           3128067               735
642            6346083                NA           3128067               735
643            2668688                NA           1305000               381
644            2668688                NA           1305000               381
645            2668688                NA           1305000               381
646            2668688                NA           1305000               381
647            2668688                NA           1305000               381
648            2668688                NA           1305000               381
649            2668688                NA           1305000               381
650            6346083                NA           3128067               735
651            6346083                NA           3128067               735
652            6232894                NA           3033772               332
653            6232894                NA           3033772               332
654            2668688                NA           1305000               381
655            2668688                NA           1305000               381
656            2668688                NA           1305000               381
657            2668688                NA           1305000               381
658            2668688                NA           1305000               381
659            2668688                NA           1305000               381
660            2668688                NA           1305000               381
661            2668688                NA           1305000               381
662            2668688                NA           1305000               381
663            2668688                NA           1305000               381
664            6346083                NA           3128067               735
665            2668688                NA           1305000               381
666            2668688                NA           1305000               381
667            6346083                NA           3128067               735
668            6232894                NA           3033772               332
669            1990873                NA            978574               496
670             803398                NA            394257               163
671            6346083                NA           3128067               735
672             289726                NA            140509               212
673            1613587                NA            790463               387
674            3678328                NA           1837913               458
675            1420825                NA            698689               221
676            2668688                NA           1305000               381
677            2668688                NA           1305000               381
678            6232894                NA           3033772               332
679            6232894                NA           3033772               332
680            6232894                NA           3033772               332
681            6232894                NA           3033772               332
682            6232894                NA           3033772               332
683            2668688                NA           1305000               381
684            2668688                NA           1305000               381
685            6346083                NA           3128067               735
686            6346083                NA           3128067               735
687            6346083                NA           3128067               735
688            6346083                NA           3128067               735
689           13111917                NA           6515114                NA
690            2959386                NA           1493164               389
691            9566955                NA           4718471               425
692            9566955                NA           4718471               425
693            9566955                NA           4718471               425
694           13111917                NA           6515114                NA
695            3289701                NA           1667851                NA
696            2959386                NA           1493164               389
697            9566955                NA           4718471               425
698            9566955                NA           4718471               425
699            2959386                NA           1493164               389
700            4692242                NA           2342253               320
701            2959386                NA           1493164               389
702            9566955                NA           4718471               425
703            2959386                NA           1493164               389
704            7142603                NA           3563435               532
705             585485                NA            292820               126
706           13111917                NA           6515114                NA
707            2505312                NA           1250855               406
708            4001701                NA           2024424                73
709            4692242                NA           2342253               320
710            1981584                NA           1011796               354
711            4001701                NA           2024424                73
712            1254675                NA            635422               145
713            2959386                NA           1493164               389
714            4864209                NA           2434382               157
715            4864209                NA           2434382               157
716            2505312                NA           1250855               406
717            4692242                NA           2342253               320
718           13111917                NA           6515114                NA
719            9566955                NA           4718471               425
720            2959386                NA           1493164               389
721            9566955                NA           4718471               425
722            7673379                NA           3806912               442
723            2959386                NA           1493164               389
724            2959386                NA           1493164               389
725           13111917                NA           6515114                NA
726            2959386                NA           1493164               389
727           13111917                NA           6515114                NA
728            2296377                NA           1160944               432
729             771602                NA            388362               230
730             119685                NA             62534               190
731             711490                NA            355020               278
732            1335804                NA            641128               280
733             966688                NA            483251               270
734            2959386                NA           1493164               389
735            2959386                NA           1493164               389
736            3678328                NA           1837913               458
737            2959386                NA           1493164               389
738            2959386                NA           1493164               389
739            9566955                NA           4718471               425
740            4692242                NA           2342253               320
741            4692242                NA           2342253               320
742            4864209                NA           2434382               157
743            2505312                NA           1250855               406
744            3289701                NA           1667851                NA
745            4001701                NA           2024424                73
746            4692242                NA           2342253               320
747            4692242                NA           2342253               320
748            3678328                NA           1837913               458
749            1254675                NA            635422               145
750            9566955                NA           4718471               425
751            9566955                NA           4718471               425
752            4375604                NA           2148947               188
753             771602                NA            388362               230
754             771602                NA            388362               230
755           13111917                NA           6515114                NA
756            4001701                NA           2024424                73
757            4692242                NA           2342253               320
758            7142603                NA           3563435               532
759            7142603                NA           3563435               532
760            7142603                NA           3563435               532
761            9566955                NA           4718471               425
762            2959386                NA           1493164               389
763            4375604                NA           2148947               188
764            3678328                NA           1837913               458
765            4375604                NA           2148947               188
766             867161                NA            431851               177
767            1254675                NA            635422               145
768            2959386                NA           1493164               389
769            2959386                NA           1493164               389
770            9566955                NA           4718471               425
771            6346083                NA           3128067               735
772           13111917                NA           6515114                NA
773            4864209                NA           2434382               157
774            1042393                NA            516095               117
775             771602                NA            388362               230
776             119685                NA             62534               190
777             585485                NA            292820               126
778             488436                NA            240478               204
779            1981584                NA           1011796               354
780              79008                NA             40763               308
781            7142603                NA           3563435               532
782            7142603                NA           3563435               532
783            9566955                NA           4718471               425
784            9566955                NA           4718471               425
785            7673379                NA           3806912               442
786            9566955                NA           4718471               425
787            4864209                NA           2434382               157
788            4692242                NA           2342253               320
789            2959386                NA           1493164               389
790            2959386                NA           1493164               389
791            2959386                NA           1493164               389
792            3289701                NA           1667851                NA
793            3678328                NA           1837913               458
794             242972                NA            122440               180
795            6346083                NA           3128067               735
796            2959386                NA           1493164               389
797            9566955                NA           4718471               425
798            2505312                NA           1250855               406
799            7673379                NA           3806912               442
800           13111917                NA           6515114                NA
801            9566955                NA           4718471               425
802            2959386                NA           1493164               389
803            7142603                NA           3563435               532
804           13111917                NA           6515114                NA
805            4375604                NA           2148947               188
806            3678328                NA           1837913               458
807            4864209                NA           2434382               157
808            4864209                NA           2434382               157
809            4692242                NA           2342253               320
810            2079759                NA           1012336               195
811             211078                NA            103187               195
812             646794                NA            322648               249
813             330119                NA            161252               101
814             884359                NA            435364               356
815            4375604                NA           2148947               188
816           13111917                NA           6515114                NA
817            1008280                NA            506526                56
818             222604                NA            109360               231
819            4692242                NA           2342253               320
820            3289701                NA           1667851                NA
821            4692242                NA           2342253               320
822            2394673                NA           1181313               252
823           13111917                NA           6515114                NA
824            4001701                NA           2024424                73
825            4692242                NA           2342253               320
826            1008280                NA            506526                56
827            2959386                NA           1493164               389
828            4375604                NA           2148947               188
829            9566955                NA           4718471               425
830            7142603                NA           3563435               532
831            4864209                NA           2434382               157
832            1981584                NA           1011796               354
833            1254675                NA            635422               145
834            4375604                NA           2148947               188
835            2959386                NA           1493164               389
836            4864209                NA           2434382               157
837            4001701                NA           2024424                73
838            1254675                NA            635422               145
839            2959386                NA           1493164               389
840            2959386                NA           1493164               389
841            2959386                NA           1493164               389
842            4001701                NA           2024424                73
843            4864209                NA           2434382               157
844            2394673                NA           1181313               252
845            2296377                NA           1160944               432
846            1008280                NA            506526                56
847             437609                NA            223186               110
848            2505312                NA           1250855               406
849            1981584                NA           1011796               354
850             488436                NA            240478               204
851           13111917                NA           6515114                NA
852           13111917                NA           6515114                NA
853           13111917                NA           6515114                NA
854            4864209                NA           2434382               157
855            4692242                NA           2342253               320
856            4375604                NA           2148947               188
857            2505312                NA           1250855               406
858            3678328                NA           1837913               458
859           13111917                NA           6515114                NA
860             771602                NA            388362               230
861            1008280                NA            506526                56
862             585485                NA            292820               126
863            1981584                NA           1011796               354
864            4610050                NA           2315218               243
865            7673379                NA           3806912               442
866            2505312                NA           1250855               406
867            4864209                NA           2434382               157
868           13111917                NA           6515114                NA
869             771602                NA            388362               230
870            7673379                NA           3806912               442
871             585485                NA            292820               126
872            2296377                NA           1160944               432
873             585485                NA            292820               126
874           13111917                NA           6515114                NA
875            2505312                NA           1250855               406
876            3289701                NA           1667851                NA
877            2959386                NA           1493164               389
878            7673379                NA           3806912               442
879            3289701                NA           1667851                NA
880           13111917                NA           6515114                NA
881            2959386                NA           1493164               389
882            2959386                NA           1493164               389
883            4692242                NA           2342253               320
884            4692242                NA           2342253               320
885            4692242                NA           2342253               320
886             771602                NA            388362               230
887            2505312                NA           1250855               406
888            3289701                NA           1667851                NA
889            4001701                NA           2024424                73
890            4001701                NA           2024424                73
891            4692242                NA           2342253               320
892            4692242                NA           2342253               320
893            9566955                NA           4718471               425
894            9566955                NA           4718471               425
895            4864209                NA           2434382               157
896           13111917                NA           6515114                NA
897            2505312                NA           1250855               406
898            3289701                NA           1667851                NA
899            9566955                NA           4718471               425
900            4375604                NA           2148947               188
901           13111917                NA           6515114                NA
902            4001701                NA           2024424                73
903            7142603                NA           3563435               532
904            4692242                NA           2342253               320
905            2505312                NA           1250855               406
906            4001701                NA           2024424                73
907            4001701                NA           2024424                73
908            4001701                NA           2024424                73
909              47141                NA             23954               106
910            2394673                NA           1181313               252
911            4001701                NA           2024424                73
912            4001701                NA           2024424                73
913            4001701                NA           2024424                73
914            4001701                NA           2024424                73
915            4001701                NA           2024424                73
916            4001701                NA           2024424                73
917            4001701                NA           2024424                73
918            4001701                NA           2024424                73
919            2505312                NA           1250855               406
920            2505312                NA           1250855               406
921            4001701                NA           2024424                73
922            4692242                NA           2342253               320
923            4001701                NA           2024424                73
924            4001701                NA           2024424                73
925            4001701                NA           2024424                73
926            4692242                NA           2342253               320
927           13111917                NA           6515114                NA
928            2505312                NA           1250855               406
929            4001701                NA           2024424                73
930             771602                NA            388362               230
931             585485                NA            292820               126
932            2265926                NA           1137581                NA
933           13111917                NA           6515114                NA
934             585485                NA            292820               126
935            1981584                NA           1011796               354
936            4692242                NA           2342253               320
937            4001701                NA           2024424                73
938            4001701                NA           2024424                73
939           13111917                NA           6515114                NA
940            4001701                NA           2024424                73
941            4001701                NA           2024424                73
942             119685                NA             62534               190
943             382218                NA            189292                38
944             105950                NA             53095               130
945              84423                NA             43002               119
946             158478                NA             79833               230
947             222604                NA            109360               231
948             437609                NA            223186               110
949             118541                NA             59633               128
950            4692242                NA           2342253               320
951            2505312                NA           1250855               406
952              47141                NA             23954               106
953             181852                NA             89879               141
954             199352                NA             99597               226
955             490769                NA            249622               187
956            2394673                NA           1181313               252
957            2265926                NA           1137581                NA
958             771602                NA            388362               230
959             488436                NA            240478               204
960            4001701                NA           2024424                73
961            4001701                NA           2024424                73
962            7142603                NA           3563435               532
963            9566955                NA           4718471               425
964            9566955                NA           4718471               425
965            2959386                NA           1493164               389
966            2959386                NA           1493164               389
967            6346083                NA           3128067               735
968            9566955                NA           4718471               425
969            9566955                NA           4718471               425
970            4912449                NA           2407307               403
971            2959386                NA           1493164               389
972            2959386                NA           1493164               389
973           19908595                NA           9713298               650
974            7142603                NA           3563435               532
975            7142603                NA           3563435               532
976            7142603                NA           3563435               532
977            7142603                NA           3563435               532
978            2959386                NA           1493164               389
979            6346083                NA           3128067               735
980            6346083                NA           3128067               735
981            6346083                NA           3128067               735
982            6346083                NA           3128067               735
983            6346083                NA           3128067               735
984            6346083                NA           3128067               735
985             269418                NA            135977               189
986            2959386                NA           1493164               389
987            2959386                NA           1493164               389
988            9566955                NA           4718471               425
989            2959386                NA           1493164               389
990            2959386                NA           1493164               389
991           19908595                NA           9713298               650
992           19908595                NA           9713298               650
993           19908595                NA           9713298               650
994           19908595                NA           9713298               650
995           19908595                NA           9713298               650
996            6346083                NA           3128067               735
997            7142603                NA           3563435               532
998           13111917                NA           6515114                NA
999            9566955                NA           4718471               425
1000           4692242                NA           2342253               320
1001          19908595                NA           9713298               650
1002           6346083                NA           3128067               735
1003           2959386                NA           1493164               389
1004           9566955                NA           4718471               425
1005           9566955                NA           4718471               425
1006           4692242                NA           2342253               320
1007           2959386                NA           1493164               389
1008           2959386                NA           1493164               389
1009           9566955                NA           4718471               425
1010           9566955                NA           4718471               425
1011           2959386                NA           1493164               389
1012          19908595                NA           9713298               650
1013           6123949                NA           3001027               195
1014           6346083                NA           3128067               735
1015           2959386                NA           1493164               389
1016           9566955                NA           4718471               425
1017           9566955                NA           4718471               425
1018           4912449                NA           2407307               403
1019          19908595                NA           9713298               650
1020           6346083                NA           3128067               735
1021           7142603                NA           3563435               532
1022           7142603                NA           3563435               532
1023          13111917                NA           6515114                NA
1024          13111917                NA           6515114                NA
1025           2190750                NA           1084347               492
1026           9566955                NA           4718471               425
1027           9566955                NA           4718471               425
1028           9566955                NA           4718471               425
1029           2505312                NA           1250855               406
1030           4864209                NA           2434382               157
1031           2570862                NA           1280273               338
1032           2394673                NA           1181313               252
1033          19908595                NA           9713298               650
1034           9566955                NA           4718471               425
1035           4692242                NA           2342253               320
1036           2079759                NA           1012336               195
1037           2079759                NA           1012336               195
1038           2079759                NA           1012336               195
1039           2959386                NA           1493164               389
1040           2959386                NA           1493164               389
1041           6346083                NA           3128067               735
1042           7142603                NA           3563435               532
1043           7142603                NA           3563435               532
1044           1613587                NA            790463               387
1045           2679298                NA           1318555               326
1046           6123949                NA           3001027               195
1047           9566955                NA           4718471               425
1048           9566955                NA           4718471               425
1049           6123949                NA           3001027               195
1050           4864209                NA           2434382               157
1051           1420825                NA            698689               221
1052            772902                NA            380685                73
1053           3289701                NA           1667851                NA
1054            406575                NA            197548               414
1055           4692242                NA           2342253               320
1056           2073546                NA            975289               435
1057           1254675                NA            635422               145
1058            844461                NA            407362               124
1059           3194310                NA           1562880               249
1060           2959386                NA           1493164               389
1061           2959386                NA           1493164               389
1062          19908595                NA           9713298               650
1063           6346083                NA           3128067               735
1064           7142603                NA           3563435               532
1065           4692242                NA           2342253               320
1066           2959386                NA           1493164               389
1067           2959386                NA           1493164               389
1068           9566955                NA           4718471               425
1069          19908595                NA           9713298               650
1070          19908595                NA           9713298               650
1071          19908595                NA           9713298               650
1072           7142603                NA           3563435               532
1073           7142603                NA           3563435               532
1074           7142603                NA           3563435               532
1075           4692242                NA           2342253               320
1076           4692242                NA           2342253               320
1077           4692242                NA           2342253               320
1078           1990873                NA            978574               496
1079           4912449                NA           2407307               403
1080           6123949                NA           3001027               195
1081           1613587                NA            790463               387
1082          13111917                NA           6515114                NA
1083           2679298                NA           1318555               326
1084           6123949                NA           3001027               195
1085           1420825                NA            698689               221
1086           4692242                NA           2342253               320
1087           3194310                NA           1562880               249
1088           2959386                NA           1493164               389
1089           1613587                NA            790463               387
1090          13111917                NA           6515114                NA
1091          19908595                NA           9713298               650
1092           1264357                NA            612537               452
1093           9566955                NA           4718471               425
1094           4864209                NA           2434382               157
1095            772902                NA            380685                73
1096           3194310                NA           1562880               249
1097           2959386                NA           1493164               389
1098           2959386                NA           1493164               389
1099           2959386                NA           1493164               389
1100          19908595                NA           9713298               650
1101           6346083                NA           3128067               735
1102           6346083                NA           3128067               735
1103           7142603                NA           3563435               532
1104           4692242                NA           2342253               320
1105           2959386                NA           1493164               389
1106           2959386                NA           1493164               389
1107          19908595                NA           9713298               650
1108          19908595                NA           9713298               650
1109           6346083                NA           3128067               735
1110           6346083                NA           3128067               735
1111           7142603                NA           3563435               532
1112           7142603                NA           3563435               532
1113           7142603                NA           3563435               532
1114           7142603                NA           3563435               532
1115           7142603                NA           3563435               532
1116           7142603                NA           3563435               532
1117           9566955                NA           4718471               425
1118           9566955                NA           4718471               425
1119           2959386                NA           1493164               389
1120          19908595                NA           9713298               650
1121           7142603                NA           3563435               532
1122           7142603                NA           3563435               532
1123           7142603                NA           3563435               532
1124           2265926                NA           1137581                NA
1125           2679298                NA           1318555               326
1126           9566955                NA           4718471               425
1127           2959386                NA           1493164               389
1128           2959386                NA           1493164               389
1129           6346083                NA           3128067               735
1130           9566955                NA           4718471               425
1131           2959386                NA           1493164               389
1132          13111917                NA           6515114                NA
1133           2959386                NA           1493164               389
1134          19908595                NA           9713298               650
1135           6346083                NA           3128067               735
1136           7142603                NA           3563435               532
1137           7142603                NA           3563435               532
1138           9566955                NA           4718471               425
1139           7142603                NA           3563435               532
1140           7142603                NA           3563435               532
1141           2959386                NA           1493164               389
1142           2959386                NA           1493164               389
1143           2959386                NA           1493164               389
1144           2959386                NA           1493164               389
1145           6346083                NA           3128067               735
1146           7142603                NA           3563435               532
1147           2959386                NA           1493164               389
1148           2959386                NA           1493164               389
1149           2959386                NA           1493164               389
1150           2959386                NA           1493164               389
1151           2840005                NA           1374325               218
1152           2079759                NA           1012336               195
1153           6346083                NA           3128067               735
1154           2959386                NA           1493164               389
1155          19908595                NA           9713298               650
1156           6123949                NA           3001027               195
1157           1087068                NA            546278               323
1158           6346083                NA           3128067               735
1159           7142603                NA           3563435               532
1160           2365501                NA           1162773               204
1161           1316145                NA            640643               629
1162           1086859                NA            532509               342
1163           3289701                NA           1667851                NA
1164           2959386                NA           1493164               389
1165           9566955                NA           4718471               425
1166          19908595                NA           9713298               650
1167           2959386                NA           1493164               389
1168          19908595                NA           9713298               650
1169           4692242                NA           2342253               320
1170           4692242                NA           2342253               320
1171           6346083                NA           3128067               735
1172           9566955                NA           4718471               425
1173           9566955                NA           4718471               425
1174           2959386                NA           1493164               389
1175           2959386                NA           1493164               389
1176           9566955                NA           4718471               425
1177           4692242                NA           2342253               320
1178          19908595                NA           9713298               650
1179           7142603                NA           3563435               532
1180           7142603                NA           3563435               532
1181           2959386                NA           1493164               389
1182           2959386                NA           1493164               389
1183           6346083                NA           3128067               735
1184           9566955                NA           4718471               425
1185           9566955                NA           4718471               425
1186           9566955                NA           4718471               425
1187           2296377                NA           1160944               432
1188           6346083                NA           3128067               735
1189          19908595                NA           9713298               650
1190           6123949                NA           3001027               195
1191           6346083                NA           3128067               735
1192           6346083                NA           3128067               735
1193           7142603                NA           3563435               532
1194            164765                21             82304               124
1195           9566955                NA           4718471               425
1196           9566955                NA           4718471               425
1197           9566955                NA           4718471               425
1198          19908595                NA           9713298               650
1199           7142603                NA           3563435               532
1200           6346083                NA           3128067               735
1201           2079759                NA           1012336               195
1202           6346083                NA           3128067               735
1203           7142603                NA           3563435               532
1204           7142603                NA           3563435               532
1205           7673379                NA           3806912               442
1206           7673379                NA           3806912               442
1207           2265926                NA           1137581                NA
1208           2296377                NA           1160944               432
1209           2265926                NA           1137581                NA
1210           4864209                NA           2434382               157
1211           2840005                NA           1374325               218
1212           2840005                NA           1374325               218
1213           2840005                NA           1374325               218
1214           2840005                NA           1374325               218
1215           2679298                NA           1318555               326
1216           9566955                NA           4718471               425
1217           9566955                NA           4718471               425
1218           2840005                NA           1374325               218
1219           2679298                NA           1318555               326
1220           2265926                NA           1137581                NA
1221           7673379                NA           3806912               442
1222           2840005                NA           1374325               218
1223           7673379                NA           3806912               442
1224           7673379                NA           3806912               442
1225           7673379                NA           3806912               442
1226           7673379                NA           3806912               442
1227           7673379                NA           3806912               442
1228           7142603                NA           3563435               532
1229          19908595                NA           9713298               650
1230           2679298                NA           1318555               326
1231           9566955                NA           4718471               425
1232           1568940                NA            770847               201
1233           4864209                NA           2434382               157
1234           4864209                NA           2434382               157
1235           4864209                NA           2434382               157
1236           2813523                NA           1375126               423
1237           2296377                NA           1160944               432
1238           1990873                NA            978574               496
1239           2079759                NA           1012336               195
1240            181055                NA             90237               148
1241           6123949                NA           3001027               195
1242           7142603                NA           3563435               532
1243           2109957                NA           1038760               572
1244            591397                NA            285117               421
1245           2265926                NA           1137581                NA
1246            749290                NA            363653               316
1247           2190750                NA           1084347               492
1248           1335804                NA            641128               280
1249            496299                NA            240510               173
1250           6232894                NA           3033772               332
1251           4864209                NA           2434382               157
1252           2365501                NA           1162773               204
1253           1316145                NA            640643               629
1254            772902                NA            380685                73
1255           3194310                NA           1562880               249
1256           1990873                NA            978574               496
1257           7673379                NA           3806912               442
1258           7673379                NA           3806912               442
1259           7673379                NA           3806912               442
1260            867161                NA            431851               177
1261           7142603                NA           3563435               532
1262           7142603                NA           3563435               532
1263          13111917                NA           6515114                NA
1264           9566955                NA           4718471               425
1265           4864209                NA           2434382               157
1266           4864209                NA           2434382               157
1267           4864209                NA           2434382               157
1268           3289701                NA           1667851                NA
1269          13111917                NA           6515114                NA
1270           2840005                NA           1374325               218
1271           7673379                NA           3806912               442
1272           6346083                NA           3128067               735
1273           7142603                NA           3563435               532
1274            421854                NA            208182               136
1275          13111917                NA           6515114                NA
1276          13111917                NA           6515114                NA
1277           2190750                NA           1084347               492
1278           9566955                NA           4718471               425
1279           3678328                NA           1837913               458
1280           1264357                NA            612537               452
1281           4692242                NA           2342253               320
1282           1420825                NA            698689               221
1283          13111917                NA           6515114                NA
1284           2813523                NA           1375126               423
1285           3194310                NA           1562880               249
1286           9566955                NA           4718471               425
1287           9566955                NA           4718471               425
1288           2840005                NA           1374325               218
1289           2679298                NA           1318555               326
1290           2840005                NA           1374325               218
1291           7673379                NA           3806912               442
1292           7142603                NA           3563435               532
1293           2679298                NA           1318555               326
1294           9566955                NA           4718471               425
1295           3194310                NA           1562880               249
1296           2265926                NA           1137581                NA
1297           2296377                NA           1160944               432
1298           1215703               422            594920               926
1299           7673379                NA           3806912               442
1300           2959386                NA           1493164               389
1301           7142603                NA           3563435               532
1302          19908595                NA           9713298               650
1303           2190750                NA           1084347               492
1304           2679298                NA           1318555               326
1305           1798025                NA            886709               642
1306           4864209                NA           2434382               157
1307            772902                NA            380685                73
1308           1981584                NA           1011796               354
1309            844461                NA            407362               124
1310           3194310                NA           1562880               249
1311           4912449                NA           2407307               403
1312           2840005                NA           1374325               218
1313            803398                NA            394257               163
1314           2079759                NA           1012336               195
1315           2668688                NA           1305000               381
1316           2137223                NA           1061042               342
1317           4375604                NA           2148947               188
1318            181055                NA             90237               148
1319           1613587                NA            790463               387
1320           9566955                NA           4718471               425
1321           6123949                NA           3001027               195
1322           1568940                NA            770847               201
1323           1264357                NA            612537               452
1324            496299                NA            240510               173
1325           4692242                NA           2342253               320
1326           4692242                NA           2342253               320
1327           6232894                NA           3033772               332
1328           2365501                NA           1162773               204
1329            510290                NA            256202               214
1330           1420825                NA            698689               221
1331            406575                NA            197548               414
1332            288639                NA            146836               223
1333           2959386                NA           1493164               389
1334           2959386                NA           1493164               389
1335           2265926                NA           1137581                NA
1336           4692242                NA           2342253               320
1337           4864209                NA           2434382               157
1338           3289701                NA           1667851                NA
1339           2265926                NA           1137581                NA
1340           1990873                NA            978574               496
1341           1990873                NA            978574               496
1342           2840005                NA           1374325               218
1343           2840005                NA           1374325               218
1344           2840005                NA           1374325               218
1345           2840005                NA           1374325               218
1346           2840005                NA           1374325               218
1347           2840005                NA           1374325               218
1348           9566955                NA           4718471               425
1349           9566955                NA           4718471               425
1350           9566955                NA           4718471               425
1351           9566955                NA           4718471               425
1352           9566955                NA           4718471               425
1353           9566955                NA           4718471               425
1354           2840005                NA           1374325               218
1355           6123949                NA           3001027               195
1356           2679298                NA           1318555               326
1357           9566955                NA           4718471               425
1358           7673379                NA           3806912               442
1359           7673379                NA           3806912               442
1360           7673379                NA           3806912               442
1361           7673379                NA           3806912               442
1362           2265926                NA           1137581                NA
1363           2394673                NA           1181313               252
1364           2296377                NA           1160944               432
1365           2959386                NA           1493164               389
1366           7142603                NA           3563435               532
1367           4692242                NA           2342253               320
1368           1981584                NA           1011796               354
1369           1114368                NA            538428               383
1370           1990873                NA            978574               496
1371           1990873                NA            978574               496
1372           2253528                NA           1113732               640
1373           1087068                NA            546278               323
1374           2109957                NA           1038760               572
1375           9566955                NA           4718471               425
1376            406575                NA            197548               414
1377            288639                NA            146836               223
1378           1215703               422            594920               926
1379           1163462                NA            568061               155
1380            803398                NA            394257               163
1381           2079759                NA           1012336               195
1382           6123949                NA           3001027               195
1383            330119                NA            161252               101
1384           7142603                NA           3563435               532
1385          19908595                NA           9713298               650
1386           2265926                NA           1137581                NA
1387          19908595                NA           9713298               650
1388           9566955                NA           4718471               425
1389           6123949                NA           3001027               195
1390            496299                NA            240510               173
1391           1798025                NA            886709               642
1392           4864209                NA           2434382               157
1393           2365501                NA           1162773               204
1394           1670949                NA            818990               468
1395            552916                NA            270938               223
1396           1420825                NA            698689               221
1397           1086859                NA            532509               342
1398            772902                NA            380685                73
1399           1282588                NA            630858               398
1400           2959386                NA           1493164               389
1401           2265926                NA           1137581                NA
1402           1990873                NA            978574               496
1403           1990873                NA            978574               496
1404           1990873                NA            978574               496
1405           7673379                NA           3806912               442
1406           9566955                NA           4718471               425
1407           2813523                NA           1375126               423
1408           1990873                NA            978574               496
1409           1990873                NA            978574               496
1410           2840005                NA           1374325               218
1411           2265926                NA           1137581                NA
1412           9566955                NA           4718471               425
1413           2813523                NA           1375126               423
1414           1990873                NA            978574               496
1415           9566955                NA           4718471               425
1416           9566955                NA           4718471               425
1417            844461                NA            407362               124
1418           2813523                NA           1375126               423
1419           1990873                NA            978574               496
1420           2840005                NA           1374325               218
1421           6346083                NA           3128067               735
1422           2265926                NA           1137581                NA
1423           4864209                NA           2434382               157
1424           2813523                NA           1375126               423
1425           3194310                NA           1562880               249
1426           2265926                NA           1137581                NA
1427           2265926                NA           1137581                NA
1428           4864209                NA           2434382               157
1429           7142603                NA           3563435               532
1430           7142603                NA           3563435               532
1431           2959386                NA           1493164               389
1432           9566955                NA           4718471               425
1433           2840005                NA           1374325               218
1434           2679298                NA           1318555               326
1435           9566955                NA           4718471               425
1436           9566955                NA           4718471               425
1437           3194310                NA           1562880               249
1438            915968                NA            453044               376
1439           2296377                NA           1160944               432
1440           1114368                NA            538428               383
1441           2959386                NA           1493164               389
1442           2959386                NA           1493164               389
1443            867161                NA            431851               177
1444           7142603                NA           3563435               532
1445          19908595                NA           9713298               650
1446          13111917                NA           6515114                NA
1447           2679298                NA           1318555               326
1448           4692242                NA           2342253               320
1449            966688                NA            483251               270
1450           1981584                NA           1011796               354
1451           1254675                NA            635422               145
1452          13111917                NA           6515114                NA
1453           2813523                NA           1375126               423
1454           3194310                NA           1562880               249
1455            269278               239            135933               280
1456           2296377                NA           1160944               432
1457           2137223                NA           1061042               342
1458            755081                NA            384572               211
1459           6346083                NA           3128067               735
1460            181055                NA             90237               148
1461           6123949                NA           3001027               195
1462           7142603                NA           3563435               532
1463            322285                NA            159719                88
1464            749290                NA            363653               316
1465            174621                NA             89435               316
1466           2190750                NA           1084347               492
1467           9566955                NA           4718471               425
1468           3678328                NA           1837913               458
1469           1264357                NA            612537               452
1470           9566955                NA           4718471               425
1471           4864209                NA           2434382               157
1472            510290                NA            256202               214
1473           2570862                NA           1280273               338
1474           1017724                NA            503252               211
1475            288639                NA            146836               223
1476           1990873                NA            978574               496
1477           1990873                NA            978574               496
1478           1990873                NA            978574               496
1479           6123949                NA           3001027               195
1480           9566955                NA           4718471               425
1481           2813523                NA           1375126               423
1482           2813523                NA           1375126               423
1483           2137223                NA           1061042               342
1484           7673379                NA           3806912               442
1485           2679298                NA           1318555               326
1486           1568940                NA            770847               201
1487            966688                NA            483251               270
1488            772902                NA            380685                73
1489           2813523                NA           1375126               423
1490           3194310                NA           1562880               249
1491           1114368                NA            538428               383
1492           1990873                NA            978574               496
1493          13111917                NA           6515114                NA
1494           2840005                NA           1374325               218
1495           2253528                NA           1113732               640
1496           7673379                NA           3806912               442
1497           7673379                NA           3806912               442
1498            867161                NA            431851               177
1499            585485                NA            292820               126
1500           7142603                NA           3563435               532
1501           2109957                NA           1038760               572
1502           2265926                NA           1137581                NA
1503          19908595                NA           9713298               650
1504           9566955                NA           4718471               425
1505           9566955                NA           4718471               425
1506           1568940                NA            770847               201
1507            445213                NA            223753               185
1508          13111917                NA           6515114                NA
1509           2813523                NA           1375126               423
1510           1017724                NA            503252               211
1511           1042393                NA            516095               117
1512            915968                NA            453044               376
1513           1163462                NA            568061               155
1514            803398                NA            394257               163
1515             24944                NA             13144               156
1516           7142603                NA           3563435               532
1517            646794                NA            322648               249
1518           2265926                NA           1137581                NA
1519          13111917                NA           6515114                NA
1520            749290                NA            363653               316
1521           6123949                NA           3001027               195
1522           1264357                NA            612537               452
1523           4692242                NA           2342253               320
1524           1428923                NA            708697               296
1525            490769                NA            249622               187
1526           3289701                NA           1667851                NA
1527           3194310                NA           1562880               249
1528           2813523                NA           1375126               423
1529           1990873                NA            978574               496
1530           9566955                NA           4718471               425
1531           9566955                NA           4718471               425
1532           1990873                NA            978574               496
1533           2840005                NA           1374325               218
1534           2813523                NA           1375126               423
1535           7142603                NA           3563435               532
1536           2813523                NA           1375126               423
1537           2296377                NA           1160944               432
1538           2959386                NA           1493164               389
1539           7142603                NA           3563435               532
1540           2265926                NA           1137581                NA
1541          13111917                NA           6515114                NA
1542           4864209                NA           2434382               157
1543           2296377                NA           1160944               432
1544           7142603                NA           3563435               532
1545           7142603                NA           3563435               532
1546           4864209                NA           2434382               157
1547           2570862                NA           1280273               338
1548           4692242                NA           2342253               320
1549           2265926                NA           1137581                NA
1550           4692242                NA           2342253               320
1551           2265926                NA           1137581                NA
1552           2840005                NA           1374325               218
1553           7142603                NA           3563435               532
1554           7142603                NA           3563435               532
1555           7142603                NA           3563435               532
1556           2679298                NA           1318555               326
1557           1264357                NA            612537               452
1558           1420825                NA            698689               221
1559           2840005                NA           1374325               218
1560           7673379                NA           3806912               442
1561           6346083                NA           3128067               735
1562           9566955                NA           4718471               425
1563           4864209                NA           2434382               157
1564           4864209                NA           2434382               157
1565           2365501                NA           1162773               204
1566           2570862                NA           1280273               338
1567           3194310                NA           1562880               249
1568           2959386                NA           1493164               389
1569           2959386                NA           1493164               389
1570           2265926                NA           1137581                NA
1571           9566955                NA           4718471               425
1572           4864209                NA           2434382               157
1573           2394673                NA           1181313               252
1574           2265926                NA           1137581                NA
1575           4692242                NA           2342253               320
1576           2840005                NA           1374325               218
1577           7142603                NA           3563435               532
1578             73511                NA             36809               115
1579           4692242                NA           2342253               320
1580           4692242                NA           2342253               320
1581           4864209                NA           2434382               157
1582           6094752                NA           2965233               880
1583           1990873                NA            978574               496
1584           2840005                NA           1374325               218
1585           7673379                NA           3806912               442
1586           2959386                NA           1493164               389
1587            867161                NA            431851               177
1588            330119                NA            161252               101
1589           6123949                NA           3001027               195
1590           3678328                NA           1837913               458
1591           1264357                NA            612537               452
1592           4864209                NA           2434382               157
1593           2813523                NA           1375126               423
1594           2813523                NA           1375126               423
1595           2296377                NA           1160944               432
1596          13111917                NA           6515114                NA
1597            181055                NA             90237               148
1598           6123949                NA           3001027               195
1599            421854                NA            208182               136
1600           2265926                NA           1137581                NA
1601          13111917                NA           6515114                NA
1602            322285                NA            159719                88
1603          19908595                NA           9713298               650
1604          13111917                NA           6515114                NA
1605            174621                NA             89435               316
1606           2679298                NA           1318555               326
1607           1335804                NA            641128               280
1608           4692242                NA           2342253               320
1609           1428923                NA            708697               296
1610           4610050                NA           2315218               243
1611           6232894                NA           3033772               332
1612            510290                NA            256202               214
1613            772902                NA            380685                73
1614           2570862                NA           1280273               338
1615           2570862                NA           1280273               338
1616            406575                NA            197548               414
1617           1981584                NA           1011796               354
1618           3194310                NA           1562880               249
1619           1017724                NA            503252               211
1620           7142603                NA           3563435               532
1621           7142603                NA           3563435               532
1622           9566955                NA           4718471               425
1623           9566955                NA           4718471               425
1624           7673379                NA           3806912               442
1625           7673379                NA           3806912               442
1626           9566955                NA           4718471               425
1627           7673379                NA           3806912               442
1628           7673379                NA           3806912               442
1629           9566955                NA           4718471               425
1630           2959386                NA           1493164               389
1631           2813523                NA           1375126               423
1632           2840005                NA           1374325               218
1633           7673379                NA           3806912               442
1634           7142603                NA           3563435               532
1635           2679298                NA           1318555               326
1636            772902                NA            380685                73
1637            844461                NA            407362               124
1638           1990873                NA            978574               496
1639           2840005                NA           1374325               218
1640           2840005                NA           1374325               218
1641           2840005                NA           1374325               218
1642           2813523                NA           1375126               423
1643           1990873                NA            978574               496
1644           9566955                NA           4718471               425
1645           4864209                NA           2434382               157
1646           4864209                NA           2434382               157
1647           4864209                NA           2434382               157
1648            915968                NA            453044               376
1649            269278               239            135933               280
1650           2296377                NA           1160944               432
1651           2296377                NA           1160944               432
1652           7673379                NA           3806912               442
1653            585485                NA            292820               126
1654           9566955                NA           4718471               425
1655           1568940                NA            770847               201
1656           4692242                NA           2342253               320
1657           2505312                NA           1250855               406
1658           2570862                NA           1280273               338
1659           1254675                NA            635422               145
1660           2394673                NA           1181313               252
1661          13111917                NA           6515114                NA
1662           2813523                NA           1375126               423
1663            771602                NA            388362               230
1664          13111917                NA           6515114                NA
1665           2840005                NA           1374325               218
1666            119685                NA             62534               190
1667            755081                NA            384572               211
1668            382218                NA            189292                38
1669          13111917                NA           6515114                NA
1670           1568940                NA            770847               201
1671           4610050                NA           2315218               243
1672           4610050                NA           2315218               243
1673            490769                NA            249622               187
1674           3289701                NA           1667851                NA
1675            445213                NA            223753               185
1676           1981584                NA           1011796               354
1677           1017724                NA            503252               211
1678           1042393                NA            516095               117
1679            915968                NA            453044               376
1680            867161                NA            431851               177
1681           1010100                NA            512085                30
1682           9566955                NA           4718471               425
1683           1264357                NA            612537               452
1684           1264357                NA            612537               452
1685           4864209                NA           2434382               157
1686           4864209                NA           2434382               157
1687           2296377                NA           1160944               432
1688           2296377                NA           1160944               432
1689           7142603                NA           3563435               532
1690            490769                NA            249622               187
1691           2394673                NA           1181313               252
1692           2394673                NA           1181313               252
1693           2296377                NA           1160944               432
1694           7673379                NA           3806912               442
1695           2840005                NA           1374325               218
1696           2840005                NA           1374325               218
1697           7142603                NA           3563435               532
1698           2813523                NA           1375126               423
1699           2813523                NA           1375126               423
1700           9566955                NA           4718471               425
1701           1264357                NA            612537               452
1702           2959386                NA           1493164               389
1703           2265926                NA           1137581                NA
1704           4692242                NA           2342253               320
1705           2394673                NA           1181313               252
1706           2813523                NA           1375126               423
1707           1010100                NA            512085                30
1708           7142603                NA           3563435               532
1709           7142603                NA           3563435               532
1710           2265926                NA           1137581                NA
1711           9566955                NA           4718471               425
1712            164765                21             82304               124
1713            490769                NA            249622               187
1714           2394673                NA           1181313               252
1715           7673379                NA           3806912               442
1716           7673379                NA           3806912               442
1717           7142603                NA           3563435               532
1718           2296377                NA           1160944               432
1719           7673379                NA           3806912               442
1720           9566955                NA           4718471               425
1721           9566955                NA           4718471               425
1722           2840005                NA           1374325               218
1723           6123949                NA           3001027               195
1724          19908595                NA           9713298               650
1725           2679298                NA           1318555               326
1726           1264357                NA            612537               452
1727            772902                NA            380685                73
1728           2840005                NA           1374325               218
1729           7673379                NA           3806912               442
1730           7673379                NA           3806912               442
1731           7673379                NA           3806912               442
1732           2959386                NA           1493164               389
1733           7142603                NA           3563435               532
1734           2190750                NA           1084347               492
1735           2813523                NA           1375126               423
1736           2813523                NA           1375126               423
1737           2813523                NA           1375126               423
1738            901729                NA            444836               160
1739           1215703               422            594920               926
1740           1114368                NA            538428               383
1741           1163462                NA            568061               155
1742           2253528                NA           1113732               640
1743           6123949                NA           3001027               195
1744           2109957                NA           1038760               572
1745           1335804                NA            641128               280
1746           1264357                NA            612537               452
1747           1798025                NA            886709               642
1748           4864209                NA           2434382               157
1749           1282588                NA            630858               398
1750           2813523                NA           1375126               423
1751           2296377                NA           1160944               432
1752           1114368                NA            538428               383
1753           1990873                NA            978574               496
1754           2840005                NA           1374325               218
1755            803398                NA            394257               163
1756           2137223                NA           1061042               342
1757           7673379                NA           3806912               442
1758           6346083                NA           3128067               735
1759           2959386                NA           1493164               389
1760           6123949                NA           3001027               195
1761           1087068                NA            546278               323
1762           6346083                NA           3128067               735
1763           1613587                NA            790463               387
1764          19908595                NA           9713298               650
1765           2190750                NA           1084347               492
1766           2679298                NA           1318555               326
1767           3678328                NA           1837913               458
1768           1264357                NA            612537               452
1769            966688                NA            483251               270
1770           1798025                NA            886709               642
1771           4864209                NA           2434382               157
1772           1670949                NA            818990               468
1773           1316145                NA            640643               629
1774           3289701                NA           1667851                NA
1775           1282588                NA            630858               398
1776           4001701                NA           2024424                73
1777           4692242                NA           2342253               320
1778           3194310                NA           1562880               249
1779           4912449                NA           2407307               403
1780           1163462                NA            568061               155
1781           2079759                NA           1012336               195
1782           2079759                NA           1012336               195
1783           2253528                NA           1113732               640
1784           7142603                NA           3563435               532
1785           7142603                NA           3563435               532
1786          13111917                NA           6515114                NA
1787           1335804                NA            641128               280
1788           6123949                NA           3001027               195
1789            496299                NA            240510               173
1790           4692242                NA           2342253               320
1791           1428923                NA            708697               296
1792           6232894                NA           3033772               332
1793           2365501                NA           1162773               204
1794           1420825                NA            698689               221
1795            772902                NA            380685                73
1796           2394673                NA           1181313               252
1797          13111917                NA           6515114                NA
1798            844461                NA            407362               124
1799           2813523                NA           1375126               423
1800           1042393                NA            516095               117
1801           2679298                NA           1318555               326
1802           9566955                NA           4718471               425
1803           7673379                NA           3806912               442
1804           2959386                NA           1493164               389
1805           7142603                NA           3563435               532
1806           2840005                NA           1374325               218
1807           2813523                NA           1375126               423
1808           9566955                NA           4718471               425
1809           1264357                NA            612537               452
1810           2813523                NA           1375126               423
1811           2840005                NA           1374325               218
1812           6346083                NA           3128067               735
1813           4864209                NA           2434382               157
1814            772902                NA            380685                73
1815           2813523                NA           1375126               423
1816           7142603                NA           3563435               532
1817           2813523                NA           1375126               423
1818           7142603                NA           3563435               532
1819           7142603                NA           3563435               532
1820           2190750                NA           1084347               492
1821           1990873                NA            978574               496
1822           2840005                NA           1374325               218
1823           6123949                NA           3001027               195
1824          13111917                NA           6515114                NA
1825          19908595                NA           9713298               650
1826           2679298                NA           1318555               326
1827           2679298                NA           1318555               326
1828           6123949                NA           3001027               195
1829           2570862                NA           1280273               338
1830           3194310                NA           1562880               249
1831           7673379                NA           3806912               442
1832           2840005                NA           1374325               218
1833           9566955                NA           4718471               425
1834           2296377                NA           1160944               432
1835            226523                NA            112654               110
1836          13111917                NA           6515114                NA
1837           1010100                NA            512085                30
1838             73511                NA             36809               115
1839           4610050                NA           2315218               243
1840           4864209                NA           2434382               157
1841           4610050                NA           2315218               243
1842           3289701                NA           1667851                NA
1843            771602                NA            388362               230
1844          13111917                NA           6515114                NA
1845            382218                NA            189292                38
1846            585485                NA            292820               126
1847            202163                NA            100828                55
1848            445213                NA            223753               185
1849          13111917                NA           6515114                NA
1850           1010100                NA            512085                30
1851           2296377                NA           1160944               432
1852           7142603                NA           3563435               532
1853           9566955                NA           4718471               425
1854           4864209                NA           2434382               157
1855           2813523                NA           1375126               423
1856           2265926                NA           1137581                NA
1857           9566955                NA           4718471               425
1858           2813523                NA           1375126               423
1859           7142603                NA           3563435               532
1860           4692242                NA           2342253               320
1861           1981584                NA           1011796               354
1862           1990873                NA            978574               496
1863           4864209                NA           2434382               157
1864           1990873                NA            978574               496
1865           7673379                NA           3806912               442
1866           1990873                NA            978574               496
1867           9566955                NA           4718471               425
1868           2840005                NA           1374325               218
1869           2679298                NA           1318555               326
1870           9566955                NA           4718471               425
1871           4864209                NA           2434382               157
1872           4864209                NA           2434382               157
1873           4864209                NA           2434382               157
1874           1981584                NA           1011796               354
1875           9566955                NA           4718471               425
1876           2959386                NA           1493164               389
1877           2296377                NA           1160944               432
1878            585485                NA            292820               126
1879           7142603                NA           3563435               532
1880           4692242                NA           2342253               320
1881           1428923                NA            708697               296
1882           2505312                NA           1250855               406
1883            490769                NA            249622               187
1884           2570862                NA           1280273               338
1885           1981584                NA           1011796               354
1886           1254675                NA            635422               145
1887           2394673                NA           1181313               252
1888            915968                NA            453044               376
1889           2296377                NA           1160944               432
1890          13111917                NA           6515114                NA
1891           2137223                NA           1061042               342
1892            755081                NA            384572               211
1893            867161                NA            431851               177
1894           6123949                NA           3001027               195
1895          13111917                NA           6515114                NA
1896             73511                NA             36809               115
1897           1568940                NA            770847               201
1898            966688                NA            483251               270
1899           4610050                NA           2315218               243
1900           4610050                NA           2315218               243
1901          13111917                NA           6515114                NA
1902           3194310                NA           1562880               249
1903           4864209                NA           2434382               157
1904            772902                NA            380685                73
1905            844461                NA            407362               124
1906           1990873                NA            978574               496
1907           2840005                NA           1374325               218
1908           6123949                NA           3001027               195
1909           1990873                NA            978574               496
1910           7673379                NA           3806912               442
1911           7142603                NA           3563435               532
1912           2394673                NA           1181313               252
1913           2265926                NA           1137581                NA
1914           9566955                NA           4718471               425
1915           2813523                NA           1375126               423
1916           2840005                NA           1374325               218
1917           2840005                NA           1374325               218
1918           2679298                NA           1318555               326
1919           3194310                NA           1562880               249
1920           9566955                NA           4718471               425
1921          13111917                NA           6515114                NA
1922          13111917                NA           6515114                NA
1923           3289701                NA           1667851                NA
1924           1981584                NA           1011796               354
1925           2679298                NA           1318555               326
1926           3194310                NA           1562880               249
1927           9566955                NA           4718471               425
1928           1568940                NA            770847               201
1929           6346083                NA           3128067               735
1930           2190750                NA           1084347               492
1931           9566955                NA           4718471               425
1932           1282588                NA            630858               398
1933            771602                NA            388362               230
1934           7673379                NA           3806912               442
1935           7142603                NA           3563435               532
1936           1981584                NA           1011796               354
1937           1010100                NA            512085                30
1938            164765                21             82304               124
1939           1042393                NA            516095               117
1940           7673379                NA           3806912               442
1941           7142603                NA           3563435               532
1942           1990873                NA            978574               496
1943           7673379                NA           3806912               442
1944            867161                NA            431851               177
1945          13111917                NA           6515114                NA
1946           2265926                NA           1137581                NA
1947           4692242                NA           2342253               320
1948           2679298                NA           1318555               326
1949           9566955                NA           4718471               425
1950           2840005                NA           1374325               218
1951            772902                NA            380685                73
1952           3194310                NA           1562880               249
1953           4692242                NA           2342253               320
1954           1981584                NA           1011796               354
1955           4864209                NA           2434382               157
1956          13111917                NA           6515114                NA
1957           3289701                NA           1667851                NA
1958           7673379                NA           3806912               442
1959           2265926                NA           1137581                NA
1960            164765                21             82304               124
1961            164765                21             82304               124
1962           1010100                NA            512085                30
1963            202163                NA            100828                55
1964          13111917                NA           6515114                NA
1965           4610050                NA           2315218               243
1966            490769                NA            249622               187
1967          13111917                NA           6515114                NA
1968           2679298                NA           1318555               326
1969           7673379                NA           3806912               442
1970          13111917                NA           6515114                NA
1971           2679298                NA           1318555               326
1972           2394673                NA           1181313               252
1973            585485                NA            292820               126
1974           3289701                NA           1667851                NA
1975           4001701                NA           2024424                73
1976          13111917                NA           6515114                NA
1977           1010100                NA            512085                30
1978          13111917                NA           6515114                NA
1979           4610050                NA           2315218               243
1980           4610050                NA           2315218               243
1981          13111917                NA           6515114                NA
1982           7673379                NA           3806912               442
1983           4864209                NA           2434382               157
1984           2296377                NA           1160944               432
1985           2137223                NA           1061042               342
1986           2296377                NA           1160944               432
1987           2109957                NA           1038760               572
1988          19908595                NA           9713298               650
1989           2840005                NA           1374325               218
1990           7673379                NA           3806912               442
1991           6123949                NA           3001027               195
1992           7142603                NA           3563435               532
1993           1613587                NA            790463               387
1994          19908595                NA           9713298               650
1995          13111917                NA           6515114                NA
1996           9566955                NA           4718471               425
1997           1264357                NA            612537               452
1998           4001701                NA           2024424                73
1999           2296377                NA           1160944               432
2000           1990873                NA            978574               496
2001           1990873                NA            978574               496
2002           2137223                NA           1061042               342
2003            711490                NA            355020               278
2004            181055                NA             90237               148
2005            646794                NA            322648               249
2006          13111917                NA           6515114                NA
2007            749290                NA            363653               316
2008           2190750                NA           1084347               492
2009           2679298                NA           1318555               326
2010           6123949                NA           3001027               195
2011           1568940                NA            770847               201
2012           1428923                NA            708697               296
2013            966688                NA            483251               270
2014           4864209                NA           2434382               157
2015            510290                NA            256202               214
2016            844461                NA            407362               124
2017           1990873                NA            978574               496
2018           2840005                NA           1374325               218
2019           2137223                NA           1061042               342
2020           6346083                NA           3128067               735
2021           9566955                NA           4718471               425
2022           1420825                NA            698689               221
2023           1282588                NA            630858               398
2024           1215703               422            594920               926
2025           1114368                NA            538428               383
2026           1163462                NA            568061               155
2027           2253528                NA           1113732               640
2028           6123949                NA           3001027               195
2029           3289701                NA           1667851                NA
2030           2265926                NA           1137581                NA
2031           1990873                NA            978574               496
2032           7673379                NA           3806912               442
2033           7142603                NA           3563435               532
2034           4864209                NA           2434382               157
2035           6346083                NA           3128067               735
2036           2813523                NA           1375126               423
2037           7673379                NA           3806912               442
2038           4864209                NA           2434382               157
2039           7673379                NA           3806912               442
2040           7673379                NA           3806912               442
2041           7673379                NA           3806912               442
2042          19908595                NA           9713298               650
2043           2365501                NA           1162773               204
2044            406575                NA            197548               414
2045           1017724                NA            503252               211
2046           7673379                NA           3806912               442
2047           4864209                NA           2434382               157
2048            906883                NA            464093               104
2049            382218                NA            189292                38
2050           7673379                NA           3806912               442
2051           7673379                NA           3806912               442
2052           7142603                NA           3563435               532
2053           7142603                NA           3563435               532
2054           7142603                NA           3563435               532
2055           6346083                NA           3128067               735
2056           6346083                NA           3128067               735
2057           6232894                NA           3033772               332
2058          19908595                NA           9713298               650
2059           2109957                NA           1038760               572
2060          19908595                NA           9713298               650
2061           2137223                NA           1061042               342
2062          19908595                NA           9713298               650
2063          19908595                NA           9713298               650
2064          19908595                NA           9713298               650
2065          19908595                NA           9713298               650
2066          19908595                NA           9713298               650
2067          19908595                NA           9713298               650
2068          19908595                NA           9713298               650
2069           2365501                NA           1162773               204
2070           1420825                NA            698689               221
2071          19908595                NA           9713298               650
2072          19908595                NA           9713298               650
2073          19908595                NA           9713298               650
2074           2668688                NA           1305000               381
2075          19908595                NA           9713298               650
2076          19908595                NA           9713298               650
2077          19908595                NA           9713298               650
2078          19908595                NA           9713298               650
2079          19908595                NA           9713298               650
2080          19908595                NA           9713298               650
2081           4912449                NA           2407307               403
2082           6232894                NA           3033772               332
2083          19908595                NA           9713298               650
2084           2668688                NA           1305000               381
2085          19908595                NA           9713298               650
2086           1420825                NA            698689               221
2087           1282588                NA            630858               398
2088           4912449                NA           2407307               403
2089          19908595                NA           9713298               650
2090            803398                NA            394257               163
2091           4375604                NA           2148947               188
2092             82044                NA             42677               177
2093           1568940                NA            770847               201
2094           1264357                NA            612537               452
2095            552916                NA            270938               223
2096           2668688                NA           1305000               381
2097          19908595                NA           9713298               650
2098           1264357                NA            612537               452
2099            844461                NA            407362               124
2100          19908595                NA           9713298               650
2101           4912449                NA           2407307               403
2102           2668688                NA           1305000               381
2103           6346083                NA           3128067               735
2104          19908595                NA           9713298               650
2105           1990873                NA            978574               496
2106           2840005                NA           1374325               218
2107           2840005                NA           1374325               218
2108           6346083                NA           3128067               735
2109           1798025                NA            886709               642
2110           6232894                NA           3033772               332
2111           6232894                NA           3033772               332
2112           2365501                NA           1162773               204
2113           2079759                NA           1012336               195
2114           2137223                NA           1061042               342
2115           2109957                NA           1038760               572
2116           2109957                NA           1038760               572
2117           1316145                NA            640643               629
2118           2253528                NA           1113732               640
2119           2668688                NA           1305000               381
2120           1613587                NA            790463               387
2121           4912449                NA           2407307               403
2122           1420825                NA            698689               221
2123           2137223                NA           1061042               342
2124           6346083                NA           3128067               735
2125           6346083                NA           3128067               735
2126          19908595                NA           9713298               650
2127          19908595                NA           9713298               650
2128           4912449                NA           2407307               403
2129          19908595                NA           9713298               650
2130          19908595                NA           9713298               650
2131           9566955                NA           4718471               425
2132           4912449                NA           2407307               403
2133           6346083                NA           3128067               735
2134          19908595                NA           9713298               650
2135           6346083                NA           3128067               735
2136           6232894                NA           3033772               332
2137          19908595                NA           9713298               650
2138           6346083                NA           3128067               735
2139           2668688                NA           1305000               381
2140          19908595                NA           9713298               650
2141           2668688                NA           1305000               381
2142           6346083                NA           3128067               735
2143           9566955                NA           4718471               425
2144           6346083                NA           3128067               735
2145           6346083                NA           3128067               735
2146           6346083                NA           3128067               735
2147           1163462                NA            568061               155
2148           6346083                NA           3128067               735
2149           9566955                NA           4718471               425
2150            775169                NA            372915               218
2151          19908595                NA           9713298               650
2152           6346083                NA           3128067               735
2153           3678328                NA           1837913               458
2154           3678328                NA           1837913               458
2155            119685                NA             62534               190
2156           4692242                NA           2342253               320
2157           3678328                NA           1837913               458
2158           6232894                NA           3033772               332
2159           6232894                NA           3033772               332
2160           6232894                NA           3033772               332
2161           6232894                NA           3033772               332
2162           6232894                NA           3033772               332
2163           6232894                NA           3033772               332
2164           6232894                NA           3033772               332
2165           6232894                NA           3033772               332
2166           6232894                NA           3033772               332
2167           4912449                NA           2407307               403
2168           6232894                NA           3033772               332
2169            144705                NA             71707               113
2170           2959386                NA           1493164               389
2171           6346083                NA           3128067               735
2172            749290                NA            363653               316
2173          19908595                NA           9713298               650
2174             82044                NA             42677               177
2175           2679298                NA           1318555               326
2176           2679298                NA           1318555               326
2177           3194310                NA           1562880               249
2178           6123949                NA           3001027               195
2179           3194310                NA           1562880               249
2180            866377                58            420485               915
2181           4912449                NA           2407307               403
2182           7142603                NA           3563435               532
2183          19908595                NA           9713298               650
2184           1568940                NA            770847               201
2185          19908595                NA           9713298               650
2186           2265926                NA           1137581                NA
2187           6123949                NA           3001027               195
2188           4912449                NA           2407307               403
2189           4610050                NA           2315218               243
2190            164765                21             82304               124
2191           7673379                NA           3806912               442
2192           4864209                NA           2434382               157
2193           7673379                NA           3806912               442
2194                NA                NA                NA                NA
2195           3289701                NA           1667851                NA
2196           4692242                NA           2342253               320
2197           2190750                NA           1084347               492
2198           1420825                NA            698689               221
2199           6123949                NA           3001027               195
2200           4001701                NA           2024424                73
2201           1010100                NA            512085                30
2202            772902                NA            380685                73
2203           4692242                NA           2342253               320
2204            772902                NA            380685                73
2205          19908595                NA           9713298               650
2206           1215703               422            594920               926
2207            915968                NA            453044               376
2208           4912449                NA           2407307               403
2209             35159                NA             18160               188
2210            610723                NA            300904                75
2211           6123949                NA           3001027               195
2212           2505312                NA           1250855               406
2213           2679298                NA           1318555               326
2214          13111917                NA           6515114                NA
2215           2190750                NA           1084347               492
2216           4864209                NA           2434382               157
2217           7673379                NA           3806912               442
2218           2296377                NA           1160944               432
2219           2959386                NA           1493164               389
2220           6123949                NA           3001027               195
2221           2073546                NA            975289               435
2222           2253528                NA           1113732               640
2223          19908595                NA           9713298               650
2224           1420825                NA            698689               221
2225           6123949                NA           3001027               195
2226           3289701                NA           1667851                NA
2227           6094752                NA           2965233               880
2228           2296377                NA           1160944               432
2229           2190750                NA           1084347               492
2230           3678328                NA           1837913               458
2231          13111917                NA           6515114                NA
2232           4001701                NA           2024424                73
2233           2668688                NA           1305000               381
2234          19908595                NA           9713298               650
2235           4610050                NA           2315218               243
2236            772902                NA            380685                73
2237          13111917                NA           6515114                NA
2238           4912449                NA           2407307               403
2239             24944                NA             13144               156
2240            490769                NA            249622               187
2241           1254675                NA            635422               145
2242           4692242                NA           2342253               320
2243           3194310                NA           1562880               249
2244           1420825                NA            698689               221
2245           2137223                NA           1061042               342
2246           2190750                NA           1084347               492
2247            915968                NA            453044               376
2248          19908595                NA           9713298               650
2249           4001701                NA           2024424                73
2250           3678328                NA           1837913               458
2251           1254675                NA            635422               145
2252           3194310                NA           1562880               249
2253           2073546                NA            975289               435
2254           6123949                NA           3001027               195
2255            399335                NA            205955               208
2256           1010100                NA            512085                30
2257                NA                NA                NA                NA
2258           1010100                NA            512085                30
2259            202163                NA            100828                55
2260           1010100                NA            512085                30
2261            164765                21             82304               124
2262           2265926                NA           1137581                NA
2263           6094752                NA           2965233               880
2264            869755                NA            427134               671
2265            341067                NA            165567               165
2266            416839                NA            205169               299
2267            515954                NA            253400               455
2268            429312                NA            206306               228
2269            314708                NA            152116               417
2270            477056                NA            234726               332
2271           1017724                NA            503252               211
2272          19908595                NA           9713298               650
2273           1568940                NA            770847               201
2274           1316145                NA            640643               629
2275           6094752                NA           2965233               880
2276          19908595                NA           9713298               650
2277           4912449                NA           2407307               403
2278           4375604                NA           2148947               188
2279            225745                NA            112032               173
2280            803398                NA            394257               163
2281            330119                NA            161252               101
2282            552916                NA            270938               223
2283           1420825                NA            698689               221
2284           1086859                NA            532509               342
2285            884359                NA            435364               356
2286           2253528                NA           1113732               640
2287           6094752                NA           2965233               880
2288          19908595                NA           9713298               650
2289            152640                NA             75942               126
2290           1990873                NA            978574               496
2291            803398                NA            394257               163
2292            803398                NA            394257               163
2293           2365501                NA           1162773               204
2294            406575                NA            197548               414
2295           1114368                NA            538428               383
2296            775169                NA            372915               218
2297            330119                NA            161252               101
2298           1335804                NA            641128               280
2299            552916                NA            270938               223
2300            406575                NA            197548               414
2301           6094752                NA           2965233               880
2302           2253528                NA           1113732               640
2303            711490                NA            355020               278
2304          19908595                NA           9713298               650
2305          19908595                NA           9713298               650
2306           6094752                NA           2965233               880
2307           4375604                NA           2148947               188
2308          19908595                NA           9713298               650
2309           3194310                NA           1562880               249
2310           4912449                NA           2407307               403
2311           7673379                NA           3806912               442
2312          19908595                NA           9713298               650
2313           6123949                NA           3001027               195
2314           2296377                NA           1160944               432
2315           7673379                NA           3806912               442
2316           7673379                NA           3806912               442
2317           4864209                NA           2434382               157
2318           2668688                NA           1305000               381
2319           2137223                NA           1061042               342
2320           2265926                NA           1137581                NA
2321           3678328                NA           1837913               458
2322           1264357                NA            612537               452
2323           1798025                NA            886709               642
2324           4864209                NA           2434382               157
2325           2365501                NA           1162773               204
2326            552916                NA            270938               223
2327           3194310                NA           1562880               249
2328           2668688                NA           1305000               381
2329          19908595                NA           9713298               650
2330           1613587                NA            790463               387
2331           1335804                NA            641128               280
2332            915968                NA            453044               376
2333            152640                NA             75942               126
2334           2137223                NA           1061042               342
2335            775169                NA            372915               218
2336            646794                NA            322648               249
2337          13111917                NA           6515114                NA
2338            593318                NA            293750               186
2339            873167                NA            431639               200
2340           1568940                NA            770847               201
2341           4610050                NA           2315218               243
2342           6123949                NA           3001027               195
2343            552916                NA            270938               223
2344            772902                NA            380685                73
2345           4692242                NA           2342253               320
2346           9566955                NA           4718471               425
2347           9566955                NA           4718471               425
2348           2668688                NA           1305000               381
2349           6123949                NA           3001027               195
2350           7673379                NA           3806912               442
2351           7673379                NA           3806912               442
2352           6123949                NA           3001027               195
2353           7673379                NA           3806912               442
2354           2668688                NA           1305000               381
2355           7673379                NA           3806912               442
2356           2668688                NA           1305000               381
2357           9566955                NA           4718471               425
2358           2296377                NA           1160944               432
2359           7673379                NA           3806912               442
2360           2668688                NA           1305000               381
2361           7673379                NA           3806912               442
2362           7673379                NA           3806912               442
2363           3194310                NA           1562880               249
2364           2265926                NA           1137581                NA
2365           4864209                NA           2434382               157
2366           4692242                NA           2342253               320
2367           2073546                NA            975289               435
2368                NA                NA                NA                NA
2369           2668688                NA           1305000               381
2370           7673379                NA           3806912               442
2371           7673379                NA           3806912               442
2372             82044                NA             42677               177
2373           4610050                NA           2315218               243
2374           2073546                NA            975289               435
2375          13111917                NA           6515114                NA
2376            844461                NA            407362               124
2377           2668688                NA           1305000               381
2378           7673379                NA           3806912               442
2379            772902                NA            380685                73
2380           4912449                NA           2407307               403
2381          19908595                NA           9713298               650
2382          19908595                NA           9713298               650
2383           6123949                NA           3001027               195
2384           2668688                NA           1305000               381
2385           7673379                NA           3806912               442
2386           6123949                NA           3001027               195
2387           7673379                NA           3806912               442
2388           7673379                NA           3806912               442
2389           6232894                NA           3033772               332
2390           2668688                NA           1305000               381
2391           2668688                NA           1305000               381
2392           2668688                NA           1305000               381
2393           6123949                NA           3001027               195
2394           6123949                NA           3001027               195
2395           6232894                NA           3033772               332
2396           7673379                NA           3806912               442
2397           7673379                NA           3806912               442
2398           1010100                NA            512085                30
2399                NA                NA                NA                NA
2400            399335                NA            205955               208
2401           4001701                NA           2024424                73
2402           4001701                NA           2024424                73
2403            399335                NA            205955               208
2404            399335                NA            205955               208
2405             73511                NA             36809               115
2406           2505312                NA           1250855               406
2407           4001701                NA           2024424                73
2408            399335                NA            205955               208
2409             73511                NA             36809               115
2410           4001701                NA           2024424                73
2411           4610050                NA           2315218               243
2412           6123949                NA           3001027               195
2413             73511                NA             36809               115
2414           2679298                NA           1318555               326
2415           6346083                NA           3128067               735
2416          19908595                NA           9713298               650
2417           4912449                NA           2407307               403
2418           6123949                NA           3001027               195
2419           6123949                NA           3001027               195
2420           4692242                NA           2342253               320
2421           1163462                NA            568061               155
2422           6123949                NA           3001027               195
2423           3289701                NA           1667851                NA
2424            844461                NA            407362               124
2425          19908595                NA           9713298               650
2426           6123949                NA           3001027               195
2427           1316145                NA            640643               629
2428            915968                NA            453044               376
2429           4912449                NA           2407307               403
2430          13111917                NA           6515114                NA
2431           6123949                NA           3001027               195
2432           4610050                NA           2315218               243
2433           1215703               422            594920               926
2434           1163462                NA            568061               155
2435          19908595                NA           9713298               650
2436           2679298                NA           1318555               326
2437           6123949                NA           3001027               195
2438          19908595                NA           9713298               650
2439          19908595                NA           9713298               650
2440           3194310                NA           1562880               249
2441          19908595                NA           9713298               650
2442           4912449                NA           2407307               403
2443           2679298                NA           1318555               326
2444            901729                NA            444836               160
2445           1215703               422            594920               926
2446            771602                NA            388362               230
2447            119685                NA             62534               190
2448           2137223                NA           1061042               342
2449            812506                NA            397560               201
2450             55650                NA             29968               225
2451            775169                NA            372915               218
2452            493980                NA            244298               233
2453            289726                NA            140509               212
2454           1613587                NA            790463               387
2455            966688                NA            483251               270
2456           1798025                NA            886709               642
2457            510290                NA            256202               214
2458            552916                NA            270938               223
2459           1420825                NA            698689               221
2460           3289701                NA           1667851                NA
2461           4692242                NA           2342253               320
2462           2073546                NA            975289               435
2463          13111917                NA           6515114                NA
2464           1042393                NA            516095               117
2465            288639                NA            146836               223
2466           4375604                NA           2148947               188
2467           4001701                NA           2024424                73
2468           1254675                NA            635422               145
2469           6123949                NA           3001027               195
2470           3678328                NA           1837913               458
2471           1254675                NA            635422               145
2472           6123949                NA           3001027               195
2473           2265926                NA           1137581                NA
2474            772902                NA            380685                73
2475           4375604                NA           2148947               188
2476          19908595                NA           9713298               650
2477           2296377                NA           1160944               432
2478           4912449                NA           2407307               403
2479           1163462                NA            568061               155
2480           1568940                NA            770847               201
2481            496299                NA            240510               173
2482           3289701                NA           1667851                NA
2483           2570862                NA           1280273               338
2484           4692242                NA           2342253               320
2485            844461                NA            407362               124
2486           6094752                NA           2965233               880
2487           6094752                NA           2965233               880
2488           4001701                NA           2024424                73
2489           1254675                NA            635422               145
2490           1264357                NA            612537               452
2491           6123949                NA           3001027               195
2492           2109957                NA           1038760               572
2493           3194310                NA           1562880               249
2494           4912449                NA           2407307               403
2495           1254675                NA            635422               145
2496           4912449                NA           2407307               403
2497          19908595                NA           9713298               650
2498           1215703               422            594920               926
2499           2840005                NA           1374325               218
2500           4375604                NA           2148947               188
2501           6123949                NA           3001027               195
2502           2190750                NA           1084347               492
2503           1568940                NA            770847               201
2504            118541                NA             59633               128
2505           4610050                NA           2315218               243
2506           2570862                NA           1280273               338
2507           2394673                NA           1181313               252
2508          13111917                NA           6515114                NA
2509            844461                NA            407362               124
2510           4912449                NA           2407307               403
2511           4375604                NA           2148947               188
2512           2253528                NA           1113732               640
2513           4375604                NA           2148947               188
2514           2296377                NA           1160944               432
2515          19908595                NA           9713298               650
2516           3678328                NA           1837913               458
2517           3194310                NA           1562880               249
2518           4912449                NA           2407307               403
2519           6094752                NA           2965233               880
2520           1990873                NA            978574               496
2521           4912449                NA           2407307               403
2522           2840005                NA           1374325               218
2523           6346083                NA           3128067               735
2524           6123949                NA           3001027               195
2525           2109957                NA           1038760               572
2526           1264357                NA            612537               452
2527           2505312                NA           1250855               406
2528           1420825                NA            698689               221
2529            490769                NA            249622               187
2530           2570862                NA           1280273               338
2531           2813523                NA           1375126               423
2532           3194310                NA           1562880               249
2533           6094752                NA           2965233               880
2534          19908595                NA           9713298               650
2535            225745                NA            112032               173
2536           1163462                NA            568061               155
2537           1087068                NA            546278               323
2538            330119                NA            161252               101
2539            218515                NA            108665               349
2540           1316145                NA            640643               629
2541            225745                NA            112032               173
2542           2813523                NA           1375126               423
2543            202163                NA            100828                55
2544           7673379                NA           3806912               442
2545           7673379                NA           3806912               442
2546            421854                NA            208182               136
2547            831913                NA            404751               336
2548            223223                NA            111472               223
2549            422187                NA            211290               199
2550            208406                NA            100899               142
2551            884359                NA            435364               356
2552           6123949                NA           3001027               195
2553           6123949                NA           3001027               195
2554           7673379                NA           3806912               442
2555           7673379                NA           3806912               442
2556           7673379                NA           3806912               442
2557           7673379                NA           3806912               442
2558           7673379                NA           3806912               442
2559            966688                NA            483251               270
2560           6123949                NA           3001027               195
2561            966688                NA            483251               270
2562            711490                NA            355020               278
2563            225911                NA            111978               102
2564           7673379                NA           3806912               442
2565           6123949                NA           3001027               195
2566           2668688                NA           1305000               381
2567           2668688                NA           1305000               381
2568            678995                NA            341280               162
2569           2079759                NA           1012336               195
2570           4375604                NA           2148947               188
2571            479865                NA            235485               329
2572            749290                NA            363653               316
2573            593318                NA            293750               186
2574            812506                NA            397560               201
2575            884359                NA            435364               356
2576           6346083                NA           3128067               735
2577           6232894                NA           3033772               332
2578            422733                NA            212276                44
2579           6346083                NA           3128067               735
2580           6346083                NA           3128067               735
2581           3678328                NA           1837913               458
2582           2959386                NA           1493164               389
2583           7673379                NA           3806912               442
2584            242972                NA            122440               180
2585           1990873                NA            978574               496
2586             79506                NA             40147               166
2587            382218                NA            189292                38
2588            174621                NA             89435               316
2589           1798025                NA            886709               642
2590           1282588                NA            630858               398
2591                NA                NA                NA                NA
2592            901729                NA            444836               160
2593            966688                NA            483251               270
2594            323992                NA            159346               109
2595           7673379                NA           3806912               442
2596           9566955                NA           4718471               425
2597           3678328                NA           1837913               458
2598           2190750                NA           1084347               492
2599           1568940                NA            770847               201
2600           4610050                NA           2315218               243
2601            550596                NA            277195               287
2602           2959386                NA           1493164               389
2603           2959386                NA           1493164               389
2604           7142603                NA           3563435               532
2605            133467               110             67534               408
2606           1335804                NA            641128               280
2607           1428923                NA            708697               296
2608            966688                NA            483251               270
2609           2365501                NA           1162773               204
2610           1316145                NA            640643               629
2611           1282588                NA            630858               398
2612           3678328                NA           1837913               458
2613           1215703               422            594920               926
2614            901729                NA            444836               160
2615           1114368                NA            538428               383
2616           1335804                NA            641128               280
2617            140356                NA             72104               269
2618           4375604                NA           2148947               188
2619             55983                NA             28379                61
2620           3678328                NA           1837913               458
2621           2959386                NA           1493164               389
2622           4610050                NA           2315218               243
2623            915968                NA            453044               376
2624           1042393                NA            516095               117
2625            915968                NA            453044               376
2626           1008280                NA            506526                56
2627             83760                NA             42020               175
2628            304252                NA            154587               312
2629           4610050                NA           2315218               243
2630            140356                NA             72104               269
2631           1042393                NA            516095               117
2632           1254675                NA            635422               145
2633            771602                NA            388362               230
2634           4692242                NA           2342253               320
2635             73511                NA             36809               115
2636            678995                NA            341280               162
2637            118541                NA             59633               128
2638           7142603                NA           3563435               532
2639           2570862                NA           1280273               338
2640           2394673                NA           1181313               252
2641           2959386                NA           1493164               389
2642           7142603                NA           3563435               532
2643           2505312                NA           1250855               406
2644           4864209                NA           2434382               157
2645           3289701                NA           1667851                NA
2646           2073546                NA            975289               435
2647           2840005                NA           1374325               218
2648           2137223                NA           1061042               342
2649           2253528                NA           1113732               640
2650           1010100                NA            512085                30
2651             35159                NA             18160               188
2652           6232894                NA           3033772               332
2653           2365501                NA           1162773               204
2654           4001701                NA           2024424                73
2655          19908595                NA           9713298               650
2656           7142603                NA           3563435               532
2657           7142603                NA           3563435               532
2658           7142603                NA           3563435               532
2659          19908595                NA           9713298               650
2660           9566955                NA           4718471               425
2661           2840005                NA           1374325               218
2662           1010100                NA            512085                30
2663           2679298                NA           1318555               326
2664           4001701                NA           2024424                73
2665          19908595                NA           9713298               650
2666           2959386                NA           1493164               389
2667          19908595                NA           9713298               650
2668           1981584                NA           1011796               354
2669           1990873                NA            978574               496
2670           2073546                NA            975289               435
2671            772902                NA            380685                73
2672            181055                NA             90237               148
2673           7142603                NA           3563435               532
2674           1010100                NA            512085                30
2675           2190750                NA           1084347               492
2676           1990873                NA            978574               496
2677           1010100                NA            512085                30
2678           2109957                NA           1038760               572
2679           2570862                NA           1280273               338
2680           6123949                NA           3001027               195
2681           7142603                NA           3563435               532
2682           7673379                NA           3806912               442
2683            711490                NA            355020               278
2684             82044                NA             42677               177
2685           1282588                NA            630858               398
2686           6346083                NA           3128067               735
2687            803398                NA            394257               163
2688           2079759                NA           1012336               195
2689           1613587                NA            790463               387
2690           4912449                NA           2407307               403
2691          19908595                NA           9713298               650
2692            678995                NA            341280               162
2693           2137223                NA           1061042               342
2694           2190750                NA           1084347               492
2695           1335804                NA            641128               280
2696            678995                NA            341280               162
2697           1282588                NA            630858               398
2698          19908595                NA           9713298               650
2699            550596                NA            277195               287
2700             82044                NA             42677               177
2701           1282588                NA            630858               398
2702          19908595                NA           9713298               650
2703          19908595                NA           9713298               650
2704            803398                NA            394257               163
2705           1613587                NA            790463               387
2706           1282588                NA            630858               398
2707             82044                NA             42677               177
2708           1264357                NA            612537               452
2709           2668688                NA           1305000               381
2710           4912449                NA           2407307               403
2711          19908595                NA           9713298               650
2712           9566955                NA           4718471               425
2713            102555                NA             50314               236
2714            831913                NA            404751               336
2715            510290                NA            256202               214
2716           9566955                NA           4718471               425
2717            421854                NA            208182               136
2718           3678328                NA           1837913               458
2719            328011                NA            164852               168
2720            421982                NA            206161               308
2721           1282588                NA            630858               398
2722           6232894                NA           3033772               332
2723          19908595                NA           9713298               650
2724            406575                NA            197548               414
2725           7142603                NA           3563435               532
2726             33828               100             17746               253
2727            901729                NA            444836               160
2728            429312                NA            206306               228
2729           2813523                NA           1375126               423
2730           7142603                NA           3563435               532
2731           2959386                NA           1493164               389
2732            863166                NA            427343               249
2733          19908595                NA           9713298               650
2734          19908595                NA           9713298               650
2735          19908595                NA           9713298               650
2736           3678328                NA           1837913               458
2737          19908595                NA           9713298               650
2738          19908595                NA           9713298               650
2739            225745                NA            112032               173
2740            552916                NA            270938               223
2741            831913                NA            404751               336
2742           1087068                NA            546278               323
2743           1798025                NA            886709               642
2744           6094752                NA           2965233               880
2745          19908595                NA           9713298               650
2746           4912449                NA           2407307               403
2747          19908595                NA           9713298               650
2748          19908595                NA           9713298               650
2749          19908595                NA           9713298               650
2750          19908595                NA           9713298               650
2751           7673379                NA           3806912               442
2752           7673379                NA           3806912               442
2753           6123949                NA           3001027               195
2754           4864209                NA           2434382               157
2755           2668688                NA           1305000               381
2756           2668688                NA           1305000               381
2757           7673379                NA           3806912               442
2758           7673379                NA           3806912               442
2759           7673379                NA           3806912               442
2760           7673379                NA           3806912               442
2761           2668688                NA           1305000               381
2762           2668688                NA           1305000               381
2763           7673379                NA           3806912               442
2764           6123949                NA           3001027               195
2765           4864209                NA           2434382               157
2766           9566955                NA           4718471               425
2767           4912449                NA           2407307               403
2768           1163462                NA            568061               155
2769           2840005                NA           1374325               218
2770           2253528                NA           1113732               640
2771           7673379                NA           3806912               442
2772             82044                NA             42677               177
2773           6123949                NA           3001027               195
2774          13111917                NA           6515114                NA
2775           6123949                NA           3001027               195
2776           4864209                NA           2434382               157
2777            772902                NA            380685                73
2778           4692242                NA           2342253               320
2779           2813523                NA           1375126               423
2780            658694                NA            322943               249
2781           7673379                NA           3806912               442
2782           7673379                NA           3806912               442
2783            844461                NA            407362               124
2784           6232894                NA           3033772               332
2785           1990873                NA            978574               496
2786            771602                NA            388362               230
2787          13111917                NA           6515114                NA
2788            755081                NA            384572               211
2789           2253528                NA           1113732               640
2790           6346083                NA           3128067               735
2791             35159                NA             18160               188
2792            749290                NA            363653               316
2793           2190750                NA           1084347               492
2794           2679298                NA           1318555               326
2795           6123949                NA           3001027               195
2796           2365501                NA           1162773               204
2797           3289701                NA           1667851                NA
2798            406575                NA            197548               414
2799           2073546                NA            975289               435
2800           2394673                NA           1181313               252
2801          13111917                NA           6515114                NA
2802           7673379                NA           3806912               442
2803           2668688                NA           1305000               381
2804           2668688                NA           1305000               381
2805          13111917                NA           6515114                NA
2806           7673379                NA           3806912               442
2807           7673379                NA           3806912               442
2808           6123949                NA           3001027               195
2809           7673379                NA           3806912               442
2810           6123949                NA           3001027               195
2811           6123949                NA           3001027               195
2812           2668688                NA           1305000               381
2813           7673379                NA           3806912               442
2814           7673379                NA           3806912               442
2815           2296377                NA           1160944               432
2816           2668688                NA           1305000               381
2817           2668688                NA           1305000               381
2818           6346083                NA           3128067               735
2819           7673379                NA           3806912               442
2820           7673379                NA           3806912               442
2821           7673379                NA           3806912               442
2822           6232894                NA           3033772               332
2823           2668688                NA           1305000               381
2824           2668688                NA           1305000               381
2825           2668688                NA           1305000               381
2826           4864209                NA           2434382               157
2827           7673379                NA           3806912               442
2828           6123949                NA           3001027               195
2829           1420825                NA            698689               221
2830           1990873                NA            978574               496
2831            803398                NA            394257               163
2832           2668688                NA           1305000               381
2833           6346083                NA           3128067               735
2834           7673379                NA           3806912               442
2835           1613587                NA            790463               387
2836           4001701                NA           2024424                73
2837           4864209                NA           2434382               157
2838           2668688                NA           1305000               381
2839           7673379                NA           3806912               442
2840           6123949                NA           3001027               195
2841           1042393                NA            516095               117
2842           7673379                NA           3806912               442
2843           6232894                NA           3033772               332
2844           7673379                NA           3806912               442
2845           2668688                NA           1305000               381
2846           2668688                NA           1305000               381
2847           2679298                NA           1318555               326
2848            678995                NA            341280               162
2849           7673379                NA           3806912               442
2850           7673379                NA           3806912               442
2851           4864209                NA           2434382               157
2852           2668688                NA           1305000               381
2853           7673379                NA           3806912               442
2854           6123949                NA           3001027               195
2855           7673379                NA           3806912               442
2856           7673379                NA           3806912               442
2857           6123949                NA           3001027               195
2858           9566955                NA           4718471               425
2859           6232894                NA           3033772               332
2860           6123949                NA           3001027               195
2861           7673379                NA           3806912               442
2862           7673379                NA           3806912               442
2863           6232894                NA           3033772               332
2864           6232894                NA           3033772               332
2865           7673379                NA           3806912               442
2866           7673379                NA           3806912               442
2867           4912449                NA           2407307               403
2868           2668688                NA           1305000               381
2869           6232894                NA           3033772               332
2870           9566955                NA           4718471               425
2871           4001701                NA           2024424                73
2872           4001701                NA           2024424                73
2873           4001701                NA           2024424                73
2874           4001701                NA           2024424                73
2875           4001701                NA           2024424                73
2876           4001701                NA           2024424                73
2877                NA                NA                NA                NA
2878             32108                NA             16461               170
2879           3289701                NA           1667851                NA
2880           4001701                NA           2024424                73
2881            915968                NA            453044               376
2882           2679298                NA           1318555               326
2883           4001701                NA           2024424                73
2884          13111917                NA           6515114                NA
2885           2137223                NA           1061042               342
2886           2253528                NA           1113732               640
2887           2109957                NA           1038760               572
2888           1568940                NA            770847               201
2889            164765                21             82304               124
2890           1428923                NA            708697               296
2891            966688                NA            483251               270
2892           1420825                NA            698689               221
2893           2570862                NA           1280273               338
2894           2813523                NA           1375126               423
2895           1042393                NA            516095               117
2896           1010100                NA            512085                30
2897          13111917                NA           6515114                NA
2898           6123949                NA           3001027               195
2899            772902                NA            380685                73
2900             82044                NA             42677               177
2901           2570862                NA           1280273               338
2902            406575                NA            197548               414
2903           2679298                NA           1318555               326
2904           4912449                NA           2407307               403
2905          13111917                NA           6515114                NA
2906           4912449                NA           2407307               403
2907           4912449                NA           2407307               403
2908           2073546                NA            975289               435
2909                NA                NA                NA                NA
2910                NA                NA                NA                NA
2911           1613587                NA            790463               387
2912           1670949                NA            818990               468
2913           3289701                NA           1667851                NA
2914           2073546                NA            975289               435
2915           1254675                NA            635422               145
2916           2679298                NA           1318555               326
2917           3194310                NA           1562880               249
2918          19908595                NA           9713298               650
2919           4912449                NA           2407307               403
2920           6123949                NA           3001027               195
2921          13111917                NA           6515114                NA
2922          19908595                NA           9713298               650
2923            308919                NA            149938                90
2924             82044                NA             42677               177
2925           7142603                NA           3563435               532
2926           2570862                NA           1280273               338
2927            844461                NA            407362               124
2928           1670949                NA            818990               468
2929           1215703               422            594920               926
2930           1215703               422            594920               926
2931           4912449                NA           2407307               403
2932          19908595                NA           9713298               650
2933           1670949                NA            818990               468
2934           2679298                NA           1318555               326
2935           6123949                NA           3001027               195
2936          13111917                NA           6515114                NA
2937           2679298                NA           1318555               326
2938          19908595                NA           9713298               650
2939          19908595                NA           9713298               650
2940           6123949                NA           3001027               195
2941           4912449                NA           2407307               403
2942          19908595                NA           9713298               650
2943           1420825                NA            698689               221
2944          19908595                NA           9713298               650
2945          19908595                NA           9713298               650
2946           1254675                NA            635422               145
2947           1163462                NA            568061               155
2948            803398                NA            394257               163
2949           1087068                NA            546278               323
2950          19908595                NA           9713298               650
2951           1670949                NA            818990               468
2952            844461                NA            407362               124
2953           3678328                NA           1837913               458
2954           4375604                NA           2148947               188
2955           1254675                NA            635422               145
2956           6094752                NA           2965233               880
2957           6094752                NA           2965233               880
2958           1254675                NA            635422               145
2959           6346083                NA           3128067               735
2960           3678328                NA           1837913               458
2961           3678328                NA           1837913               458
2962           3678328                NA           1837913               458
2963           4375604                NA           2148947               188
2964           4375604                NA           2148947               188
2965           6094752                NA           2965233               880
2966           6094752                NA           2965233               880
2967           6094752                NA           2965233               880
2968           6094752                NA           2965233               880
2969           4375604                NA           2148947               188
2970          19908595                NA           9713298               650
2971           3678328                NA           1837913               458
2972           2253528                NA           1113732               640
2973           1254675                NA            635422               145
2974           1254675                NA            635422               145
2975           6346083                NA           3128067               735
2976           6094752                NA           2965233               880
2977           4375604                NA           2148947               188
2978            275693                NA            137408               125
2979            251635                NA            126980               301
2980           1420825                NA            698689               221
2981            550596                NA            277195               287
2982           6123949                NA           3001027               195
2983           1420825                NA            698689               221
2984            749290                NA            363653               316
2985           2679298                NA           1318555               326
2986            552916                NA            270938               223
2987            658694                NA            322943               249
2988           2265926                NA           1137581                NA
2989            383732                NA            189495                92
2990           2679298                NA           1318555               326
2991            772902                NA            380685                73
2992           2959386                NA           1493164               389
2993           2959386                NA           1493164               389
2994           6346083                NA           3128067               735
2995           9566955                NA           4718471               425
2996            330119                NA            161252               101
2997           1798025                NA            886709               642
2998          19908595                NA           9713298               650
2999           6346083                NA           3128067               735
3000           7673379                NA           3806912               442
3001           6123949                NA           3001027               195
3002           7673379                NA           3806912               442
3003           7673379                NA           3806912               442
3004           7673379                NA           3806912               442
3005           2109957                NA           1038760               572
3006            469484                NA            227358               262
3007            906883                NA            464093               104
3008           1114368                NA            538428               383
3009             42151                NA             21738               161
3010            267282                NA            132495               136
3011            496299                NA            240510               173
3012            288639                NA            146836               223
3013           6123949                NA           3001027               195
3014           2253528                NA           1113732               640
3015            406575                NA            197548               414
3016            884359                NA            435364               356
3017           2137223                NA           1061042               342
3018            313961                NA            153951               276
3019            749290                NA            363653               316
3020           2570862                NA           1280273               338
3021           2296377                NA           1160944               432
3022           6123949                NA           3001027               195
3023           7673379                NA           3806912               442
3024           2679298                NA           1318555               326
3025           2679298                NA           1318555               326
3026          13111917                NA           6515114                NA
3027           2109957                NA           1038760               572
3028           1568940                NA            770847               201
3029          13111917                NA           6515114                NA
3030          13111917                NA           6515114                NA
3031           6346083                NA           3128067               735
3032           6232894                NA           3033772               332
3033            181055                NA             90237               148
3034           1568940                NA            770847               201
3035            386064                NA            186619               280
3036            288639                NA            146836               223
3037           6232894                NA           3033772               332
3038            612898                NA            299409               472
3039            901729                NA            444836               160
3040            711490                NA            355020               278
3041            493980                NA            244298               233
3042            384740                NA            183928               283
3043            552916                NA            270938               223
3044           6346083                NA           3128067               735
3045           6232894                NA           3033772               332
3046           2668688                NA           1305000               381
3047           2668688                NA           1305000               381
3048           6346083                NA           3128067               735
3049           2668688                NA           1305000               381
3050           6346083                NA           3128067               735
3051           2253528                NA           1113732               640
3052           7673379                NA           3806912               442
3053           4610050                NA           2315218               243
3054           2959386                NA           1493164               389
3055           2959386                NA           1493164               389
3056           4692242                NA           2342253               320
3057           1613587                NA            790463               387
3058           4610050                NA           2315218               243
3059            406575                NA            197548               414
3060            322285                NA            159719                88
3061            308386                NA            152054               280
3062           1670949                NA            818990               468
3063           7673379                NA           3806912               442
3064           4001701                NA           2024424                73
3065           7142603                NA           3563435               532
3066           2959386                NA           1493164               389
3067           1428923                NA            708697               296
3068           1008280                NA            506526                56
3069            222604                NA            109360               231
3070           7142603                NA           3563435               532
3071           7142603                NA           3563435               532
3072           2137223                NA           1061042               342
3073           1428923                NA            708697               296
3074           4375604                NA           2148947               188
3075           4864209                NA           2434382               157
3076           9566955                NA           4718471               425
3077           9566955                NA           4718471               425
3078           2190750                NA           1084347               492
3079            382218                NA            189292                38
3080            222604                NA            109360               231
3081           4610050                NA           2315218               243
3082            445213                NA            223753               185
3083            711490                NA            355020               278
3084           1254675                NA            635422               145
3085           7142603                NA           3563435               532
3086           4001701                NA           2024424                73
3087             96299                NA             52279               219
3088            399335                NA            205955               208
3089           4001701                NA           2024424                73
3090           4610050                NA           2315218               243
3091             62150                NA             31276               269
3092           4692242                NA           2342253               320
3093          19908595                NA           9713298               650
3094           9566955                NA           4718471               425
3095           9566955                NA           4718471               425
3096           9566955                NA           4718471               425
3097           7142603                NA           3563435               532
3098           2365501                NA           1162773               204
3099           1981584                NA           1011796               354
3100            308919                NA            149938                90
3101          13111917                NA           6515114                NA
3102           2296377                NA           1160944               432
3103            772902                NA            380685                73
3104            873167                NA            431639               200
3105           2505312                NA           1250855               406
3106           3289701                NA           1667851                NA
3107           1981584                NA           1011796               354
3108           2394673                NA           1181313               252
3109          13111917                NA           6515114                NA
3110           7142603                NA           3563435               532
3111           4692242                NA           2342253               320
3112           2840005                NA           1374325               218
3113           2079759                NA           1012336               195
3114           6346083                NA           3128067               735
3115           6346083                NA           3128067               735
3116           7142603                NA           3563435               532
3117           2959386                NA           1493164               389
3118           2959386                NA           1493164               389
3119           7142603                NA           3563435               532
3120           2959386                NA           1493164               389
3121           4692242                NA           2342253               320
3122           3289701                NA           1667851                NA
3123            915968                NA            453044               376
3124            322285                NA            159719                88
3125           2265926                NA           1137581                NA
3126           2813523                NA           1375126               423
3127           4692242                NA           2342253               320
3128           2394673                NA           1181313               252
3129           1990873                NA            978574               496
3130           3194310                NA           1562880               249
3131            901729                NA            444836               160
3132           2296377                NA           1160944               432
3133           2137223                NA           1061042               342
3134           7673379                NA           3806912               442
3135           2190750                NA           1084347               492
3136            422733                NA            212276                44
3137            658694                NA            322943               249
3138           1568940                NA            770847               201
3139           6123949                NA           3001027               195
3140           2570862                NA           1280273               338
3141           7673379                NA           3806912               442
3142           6123949                NA           3001027               195
3143            496299                NA            240510               173
3144           2109957                NA           1038760               572
3145           1335804                NA            641128               280
3146           6123949                NA           3001027               195
3147           1568940                NA            770847               201
3148           3289701                NA           1667851                NA
3149            406575                NA            197548               414
3150            844461                NA            407362               124
3151            772902                NA            380685                73
3152           7142603                NA           3563435               532
3153           2190750                NA           1084347               492
3154            755081                NA            384572               211
3155             47759                NA             23950               207
3156          19908595                NA           9713298               650
3157            915968                NA            453044               376
3158            422187                NA            211290               199
3159           6346083                NA           3128067               735
3160            591397                NA            285117               421
3161           2679298                NA           1318555               326
3162           1008280                NA            506526                56
3163           1428923                NA            708697               296
3164           2265926                NA           1137581                NA
3165           7142603                NA           3563435               532
3166           7673379                NA           3806912               442
3167           2813523                NA           1375126               423
3168           2265926                NA           1137581                NA
3169           7142603                NA           3563435               532
3170           6346083                NA           3128067               735
3171           2570862                NA           1280273               338
3172           7142603                NA           3563435               532
3173          19908595                NA           9713298               650
3174           4375604                NA           2148947               188
3175            422733                NA            212276                44
3176            406575                NA            197548               414
3177            915968                NA            453044               376
3178           1215703               422            594920               926
3179          13111917                NA           6515114                NA
3180           2570862                NA           1280273               338
3181           3194310                NA           1562880               249
3182           6123949                NA           3001027               195
3183           1990873                NA            978574               496
3184           7142603                NA           3563435               532
3185           2190750                NA           1084347               492
3186           6346083                NA           3128067               735
3187           1990873                NA            978574               496
3188           1428923                NA            708697               296
3189            646794                NA            322648               249
3190           2109957                NA           1038760               572
3191           3194310                NA           1562880               249
3192           4692242                NA           2342253               320
3193           9566955                NA           4718471               425
3194           6123949                NA           3001027               195
3195           2813523                NA           1375126               423
3196           4692242                NA           2342253               320
3197          13111917                NA           6515114                NA
3198           2840005                NA           1374325               218
3199           2365501                NA           1162773               204
3200            490769                NA            249622               187
3201           7673379                NA           3806912               442
3202            755081                NA            384572               211
3203           2813523                NA           1375126               423
3204           7142603                NA           3563435               532
3205           2265926                NA           1137581                NA
3206           2296377                NA           1160944               432
3207            772902                NA            380685                73
3208           1017724                NA            503252               211
3209           1420825                NA            698689               221
3210           1981584                NA           1011796               354
3211          19908595                NA           9713298               650
3212           2365501                NA           1162773               204
3213           2109957                NA           1038760               572
3214           2265926                NA           1137581                NA
3215           2813523                NA           1375126               423
3216           7142603                NA           3563435               532
3217           7142603                NA           3563435               532
3218            867161                NA            431851               177
3219            386064                NA            186619               280
3220           4864209                NA           2434382               157
3221            437609                NA            223186               110
3222            445213                NA            223753               185
3223           7142603                NA           3563435               532
3224           6346083                NA           3128067               735
3225           2190750                NA           1084347               492
3226            152640                NA             75942               126
3227            803398                NA            394257               163
3228           2365501                NA           1162773               204
3229           2813523                NA           1375126               423
3230          19908595                NA           9713298               650
3231           2253528                NA           1113732               640
3232           6346083                NA           3128067               735
3233           2079759                NA           1012336               195
3234           1613587                NA            790463               387
3235            314708                NA            152116               417
3236            469484                NA            227358               262
3237            291491                NA            148126               172
3238            406575                NA            197548               414
3239           2137223                NA           1061042               342
3240           9566955                NA           4718471               425
3241           6346083                NA           3128067               735
3242           9566955                NA           4718471               425
3243           6346083                NA           3128067               735
3244           9566955                NA           4718471               425
3245           9566955                NA           4718471               425
3246           9566955                NA           4718471               425
3247           6346083                NA           3128067               735
3248           9566955                NA           4718471               425
3249            884359                NA            435364               356
3250           6346083                NA           3128067               735
3251            221648                NA            106730               331
3252           9566955                NA           4718471               425
3253           6346083                NA           3128067               735
3254           3678328                NA           1837913               458
3255            416839                NA            205169               299
3256           3678328                NA           1837913               458
3257           1086859                NA            532509               342
3258            564466                NA            276108               458
3259           6232894                NA           3033772               332
3260            469484                NA            227358               262
3261            314708                NA            152116               417
3262           4912449                NA           2407307               403
3263           7142603                NA           3563435               532
3264           6346083                NA           3128067               735
3265            181055                NA             90237               148
3266           2959386                NA           1493164               389
3267           7673379                NA           3806912               442
3268           2073546                NA            975289               435
3269           2079759                NA           1012336               195
3270                NA                NA                NA                NA
3271           7673379                NA           3806912               442
3272          13111917                NA           6515114                NA
3273           7673379                NA           3806912               442
3274            164765                21             82304               124
3275           6232894                NA           3033772               332
3276           7673379                NA           3806912               442
3277           9566955                NA           4718471               425
3278           2253528                NA           1113732               640
3279           7673379                NA           3806912               442
3280            202163                NA            100828                55
3281            164765                21             82304               124
3282                NA                NA                NA                NA
3283            399335                NA            205955               208
3284            399335                NA            205955               208
3285           4001701                NA           2024424                73
3286           6123949                NA           3001027               195
3287            772902                NA            380685                73
3288            772902                NA            380685                73
3289          19908595                NA           9713298               650
3290            242972                NA            122440               180
3291            275693                NA            137408               125
3292           2394673                NA           1181313               252
3293                NA                NA                NA                NA
3294                NA                NA                NA                NA
3295            406575                NA            197548               414
3296           6094752                NA           2965233               880
3297           6094752                NA           2965233               880
3298           6094752                NA           2965233               880
3299           3678328                NA           1837913               458
3300          19908595                NA           9713298               650
3301             82044                NA             42677               177
3302            812506                NA            397560               201
3303            147453                NA             73990               284
3304           7673379                NA           3806912               442
3305            700578                NA            343022               159
3306            676035                NA            330879               298
3307          19908595                NA           9713298               650
3308            386064                NA            186619               280
3309           2668688                NA           1305000               381
3310           2079759                NA           1012336               195
3311            658694                NA            322943               249
3312           4864209                NA           2434382               157
3313            105950                NA             53095               130
3314           4692242                NA           2342253               320
3315             35159                NA             18160               188
3316           1010100                NA            512085                30
3317          13111917                NA           6515114                NA
3318             55650                NA             29968               225
3319           7142603                NA           3563435               532
3320           6346083                NA           3128067               735
3321           2959386                NA           1493164               389
3322           1990873                NA            978574               496
3323           3289701                NA           1667851                NA
3324            915968                NA            453044               376
3325           3289701                NA           1667851                NA
3326          13111917                NA           6515114                NA
3327           4610050                NA           2315218               243
3328           2679298                NA           1318555               326
3329           9566955                NA           4718471               425
3330           2840005                NA           1374325               218
3331           1264357                NA            612537               452
3332           9566955                NA           4718471               425
3333           4692242                NA           2342253               320
3334           2073546                NA            975289               435
3335           7142603                NA           3563435               532
3336            401702                NA            198867               193
3337            510290                NA            256202               214
3338            140356                NA             72104               269
3339            119685                NA             62534               190
3340            803398                NA            394257               163
3341           1798025                NA            886709               642
3342           7673379                NA           3806912               442
3343            218515                NA            108665               349
3344            242972                NA            122440               180
3345            966688                NA            483251               270
3346          19908595                NA           9713298               650
3347           6123949                NA           3001027               195
3348           2073546                NA            975289               435
3349            152640                NA             75942               126
3350           1087068                NA            546278               323
3351             83760                NA             42020               175
3352            391957                NA            189194               244
3353           2959386                NA           1493164               389
3354           1254675                NA            635422               145
3355            164765                21             82304               124
3356            419715                NA            207197               118
3357           4864209                NA           2434382               157
3358           1316145                NA            640643               629
3359           3194310                NA           1562880               249
3360           7673379                NA           3806912               442
3361           4864209                NA           2434382               157
3362           7673379                NA           3806912               442
3363           9566955                NA           4718471               425
3364                NA                NA                NA                NA
3365           7673379                NA           3806912               442
3366             82044                NA             42677               177
3367            386064                NA            186619               280
3368           1254675                NA            635422               145
3369           6123949                NA           3001027               195
3370            277944                NA            140783               421
3371           7673379                NA           3806912               442
3372            118541                NA             59633               128
3373            510290                NA            256202               214
3374           1114368                NA            538428               383
3375            406575                NA            197548               414
3376            158478                NA             79833               230
3377           3678328                NA           1837913               458
3378            771602                NA            388362               230
3379           3678328                NA           1837913               458
3380             79008                NA             40763               308
3381           7142603                NA           3563435               532
3382           1010100                NA            512085                30
3383            119685                NA             62534               190
3384             55650                NA             29968               225
3385           2296377                NA           1160944               432
3386           4692242                NA           2342253               320
3387            772902                NA            380685                73
3388           4692242                NA           2342253               320
3389           2679298                NA           1318555               326
3390           7673379                NA           3806912               442
3391            181055                NA             90237               148
3392            289726                NA            140509               212
3393                NA                NA                NA                NA
3394           4912449                NA           2407307               403
3395            164765                21             82304               124
3396           3678328                NA           1837913               458
3397           6346083                NA           3128067               735
3398           1010100                NA            512085                30
3399           1010100                NA            512085                30
3400            202163                NA            100828                55
3401             47759                NA             23950               207
3402            479865                NA            235485               329
3403           6094752                NA           2965233               880
3404           6094752                NA           2965233               880
3405            166222                NA             84066               154
3406            711490                NA            355020               278
3407          19908595                NA           9713298               650
3408           6094752                NA           2965233               880
3409           3678328                NA           1837913               458
3410           6094752                NA           2965233               880
3411           2073546                NA            975289               435
3412           6346083                NA           3128067               735
3413           4864209                NA           2434382               157
3414           6123949                NA           3001027               195
3415           1215703               422            594920               926
3416           1086859                NA            532509               342
3417           3289701                NA           1667851                NA
3418           4001701                NA           2024424                73
3419                NA                NA                NA                NA
3420                NA                NA                NA                NA
3421            490769                NA            249622               187
3422             55650                NA             29968               225
3423           1008280                NA            506526                56
3424           1798025                NA            886709               642
3425           1420825                NA            698689               221
3426           7673379                NA           3806912               442
3427           7673379                NA           3806912               442
3428           7673379                NA           3806912               442
3429           7673379                NA           3806912               442
3430           2109957                NA           1038760               572
3431           4864209                NA           2434382               157
3432           7673379                NA           3806912               442
3433           7673379                NA           3806912               442
3434           4001701                NA           2024424                73
3435           2079759                NA           1012336               195
3436           6232894                NA           3033772               332
3437           9566955                NA           4718471               425
3438           7673379                NA           3806912               442
3439          19908595                NA           9713298               650
3440           4001701                NA           2024424                73
3441           4001701                NA           2024424                73
3442           4692242                NA           2342253               320
3443            399335                NA            205955               208
3444           2505312                NA           1250855               406
3445           2296377                NA           1160944               432
3446          13111917                NA           6515114                NA
3447           2679298                NA           1318555               326
3448            164765                21             82304               124
3449           4001701                NA           2024424                73
3450            202163                NA            100828                55
3451            915968                NA            453044               376
3452            803398                NA            394257               163
3453             32108                NA             16461               170
3454             13910                NA              7232                51
3455           1264357                NA            612537               452
3456           4001701                NA           2024424                73
3457            399335                NA            205955               208
3458            202163                NA            100828                55
3459           2505312                NA           1250855               406
3460           2073546                NA            975289               435
3461           1264357                NA            612537               452
3462           2505312                NA           1250855               406
3463           4610050                NA           2315218               243
3464           1613587                NA            790463               387
3465           6123949                NA           3001027               195
3466             20543                NA             10091               308
3467           1215703               422            594920               926
3468            676035                NA            330879               298
3469            646794                NA            322648               249
3470           3678328                NA           1837913               458
3471           1981584                NA           1011796               354
3472           6094752                NA           2965233               880
3473                NA                NA                NA                NA
3474           6094752                NA           2965233               880
3475           6094752                NA           2965233               880
3476           6094752                NA           2965233               880
3477           6094752                NA           2965233               880
3478           3678328                NA           1837913               458
3479           1254675                NA            635422               145
3480           1254675                NA            635422               145
3481           1335804                NA            641128               280
3482           4375604                NA           2148947               188
3483          13111917                NA           6515114                NA
3484           3678328                NA           1837913               458
3485           6094752                NA           2965233               880
3486            185147                NA             92047               125
3487           4375604                NA           2148947               188
3488           1254675                NA            635422               145
3489           6094752                NA           2965233               880
3490           9566955                NA           4718471               425
3491           7673379                NA           3806912               442
3492            185147                NA             92047               125
3493            869755                NA            427134               671
3494            591397                NA            285117               421
3495            844461                NA            407362               124
3496           6123949                NA           3001027               195
3497           1114368                NA            538428               383
3498           2679298                NA           1318555               326
3499            326159                NA            160906               371
3500            225745                NA            112032               173
3501           2668688                NA           1305000               381
3502           6232894                NA           3033772               332
3503            676035                NA            330879               298
3504           2959386                NA           1493164               389
3505           3678328                NA           1837913               458
3506            133467               110             67534               408
3507            156131                NA             77615               112
3508            281712                NA            142477               194
3509            884359                NA            435364               356
3510             79008                NA             40763               308
3511             55983                NA             28379                61
3512            156131                NA             77615               112
3513           3678328                NA           1837913               458
3514           3678328                NA           1837913               458
3515           4375604                NA           2148947               188
3516           2079759                NA           1012336               195
3517            105950                NA             53095               130
3518           1254675                NA            635422               145
3519            593318                NA            293750               186
3520             25381               138             13207               222
3521           4610050                NA           2315218               243
3522            488436                NA            240478               204
3523             55650                NA             29968               225
3524            488436                NA            240478               204
3525           9566955                NA           4718471               425
3526           7673379                NA           3806912               442
3527             35159                NA             18160               188
3528           3289701                NA           1667851                NA
3529            185147                NA             92047               125
3530            382218                NA            189292                38
3531            118541                NA             59633               128
3532           1428923                NA            708697               296
3533            966688                NA            483251               270
3534           4864209                NA           2434382               157
3535            771602                NA            388362               230
3536           3289701                NA           1667851                NA
3537            867161                NA            431851               177
3538            445213                NA            223753               185
3539           1316145                NA            640643               629
3540           2570862                NA           1280273               338
3541                NA                NA                NA                NA
3542           2073546                NA            975289               435
3543           7142603                NA           3563435               532
3544           2959386                NA           1493164               389
3545           2959386                NA           1493164               389
3546            225745                NA            112032               173
3547           7142603                NA           3563435               532
3548           4692242                NA           2342253               320
3549            202163                NA            100828                55
3550             73511                NA             36809               115
3551           1010100                NA            512085                30
3552           9566955                NA           4718471               425
3553           2959386                NA           1493164               389
3554           4001701                NA           2024424                73
3555            844461                NA            407362               124
3556           2137223                NA           1061042               342
3557           2679298                NA           1318555               326
3558           3289701                NA           1667851                NA
3559            867161                NA            431851               177
3560            164765                21             82304               124
3561           2296377                NA           1160944               432
3562            164765                21             82304               124
3563           6232894                NA           3033772               332
3564           3289701                NA           1667851                NA
3565           6346083                NA           3128067               735
3566           2190750                NA           1084347               492
3567           2109957                NA           1038760               572
3568            174621                NA             89435               316
3569           4864209                NA           2434382               157
3570           2109957                NA           1038760               572
3571           2668688                NA           1305000               381
3572           2190750                NA           1084347               492
3573            863166                NA            427343               249
3574           6232894                NA           3033772               332
3575           1163462                NA            568061               155
3576             55983                NA             28379                61
3577           7142603                NA           3563435               532
3578            477056                NA            234726               332
3579          13111917                NA           6515114                NA
3580            171284                NA             83922                37
3581            313961                NA            153951               276
3582           4375604                NA           2148947               188
3583            658694                NA            322943               249
3584            221648                NA            106730               331
3585            678995                NA            341280               162
3586            678995                NA            341280               162
3587            550596                NA            277195               287
3588           4375604                NA           2148947               188
3589           6094752                NA           2965233               880
3590           7673379                NA           3806912               442
3591           7673379                NA           3806912               442
3592           1316145                NA            640643               629
3593           7673379                NA           3806912               442
3594           7673379                NA           3806912               442
3595           2296377                NA           1160944               432
3596            119685                NA             62534               190
3597            966688                NA            483251               270
3598           4864209                NA           2434382               157
3599           7673379                NA           3806912               442
3600           7673379                NA           3806912               442
3601           7673379                NA           3806912               442
3602            202163                NA            100828                55
3603           9566955                NA           4718471               425
3604           7673379                NA           3806912               442
3605           2668688                NA           1305000               381
3606           4864209                NA           2434382               157
3607           2296377                NA           1160944               432
3608           2505312                NA           1250855               406
3609           2505312                NA           1250855               406
3610            399335                NA            205955               208
3611           1042393                NA            516095               117
3612            202163                NA            100828                55
3613           4610050                NA           2315218               243
3614            585485                NA            292820               126
3615                NA                NA                NA                NA
3616           2505312                NA           1250855               406
3617            119685                NA             62534               190
3618           2394673                NA           1181313               252
3619            658694                NA            322943               249
3620            550596                NA            277195               287
3621           4375604                NA           2148947               188
3622            771602                NA            388362               230
3623           6094752                NA           2965233               880
3624           6123949                NA           3001027               195
3625            564466                NA            276108               458
3626            269418                NA            135977               189
3627            313961                NA            153951               276
3628            429312                NA            206306               228
3629           6123949                NA           3001027               195
3630           6346083                NA           3128067               735
3631           1282588                NA            630858               398
3632           7673379                NA           3806912               442
3633           6123949                NA           3001027               195
3634           6346083                NA           3128067               735
3635            966688                NA            483251               270
3636            510290                NA            256202               214
3637           2668688                NA           1305000               381
3638           2668688                NA           1305000               381
3639            884359                NA            435364               356
3640           4692242                NA           2342253               320
3641           1254675                NA            635422               145
3642            323992                NA            159346               109
3643           1087068                NA            546278               323
3644           1335804                NA            641128               280
3645           1798025                NA            886709               642
3646           3289701                NA           1667851                NA
3647            140356                NA             72104               269
3648             79008                NA             40763               308
3649           2959386                NA           1493164               389
3650             47759                NA             23950               207
3651           4610050                NA           2315218               243
3652            222604                NA            109360               231
3653            199352                NA             99597               226
3654           1017724                NA            503252               211
3655           4001701                NA           2024424                73
3656            445213                NA            223753               185
3657            488436                NA            240478               204
3658             35159                NA             18160               188
3659          19908595                NA           9713298               650
3660           2505312                NA           1250855               406
3661           7142603                NA           3563435               532
3662           2959386                NA           1493164               389
3663          19908595                NA           9713298               650
3664           6346083                NA           3128067               735
3665           7142603                NA           3563435               532
3666            490769                NA            249622               187
3667           2296377                NA           1160944               432
3668           7142603                NA           3563435               532
3669           1568940                NA            770847               201
3670           1981584                NA           1011796               354
3671            164765                21             82304               124
3672            915968                NA            453044               376
3673             73511                NA             36809               115
3674           2365501                NA           1162773               204
3675           2265926                NA           1137581                NA
3676           9566955                NA           4718471               425
3677            202163                NA            100828                55
3678           2570862                NA           1280273               338
3679            493980                NA            244298               233
3680           4864209                NA           2434382               157
3681           4864209                NA           2434382               157
3682           1087068                NA            546278               323
3683            330119                NA            161252               101
3684           7673379                NA           3806912               442
3685           7142603                NA           3563435               532
3686           2079759                NA           1012336               195
3687            406575                NA            197548               414
3688            323992                NA            159346               109
3689          19908595                NA           9713298               650
3690           1215703               422            594920               926
3691            812506                NA            397560               201
3692            429312                NA            206306               228
3693            884359                NA            435364               356
3694            812506                NA            397560               201
3695           1798025                NA            886709               642
3696            884359                NA            435364               356
3697           7142603                NA           3563435               532
3698            831913                NA            404751               336
3699          19908595                NA           9713298               650
3700           7673379                NA           3806912               442
3701           7673379                NA           3806912               442
3702            711490                NA            355020               278
3703           3289701                NA           1667851                NA
3704           7673379                NA           3806912               442
3705            803398                NA            394257               163
3706             82044                NA             42677               177
3707            330119                NA            161252               101
3708                NA                NA                NA                NA
3709           1010100                NA            512085                30
3710           2109957                NA           1038760               572
3711           1428923                NA            708697               296
3712           2570862                NA           1280273               338
3713            445213                NA            223753               185
3714           7673379                NA           3806912               442
3715             35159                NA             18160               188
3716          13111917                NA           6515114                NA
3717           9566955                NA           4718471               425
3718           9566955                NA           4718471               425
3719           1215703               422            594920               926
3720           6123949                NA           3001027               195
3721           7673379                NA           3806912               442
3722           2296377                NA           1160944               432
3723           2668688                NA           1305000               381
3724           6232894                NA           3033772               332
3725                NA                NA                NA                NA
3726             32108                NA             16461               170
3727            399335                NA            205955               208
3728           1086859                NA            532509               342
3729           6123949                NA           3001027               195
3730           6346083                NA           3128067               735
3731          19908595                NA           9713298               650
3732            678995                NA            341280               162
3733           4375604                NA           2148947               188
3734           1670949                NA            818990               468
3735            658694                NA            322943               249
3736            479865                NA            235485               329
3737            386064                NA            186619               280
3738           6123949                NA           3001027               195
3739           2679298                NA           1318555               326
3740           2668688                NA           1305000               381
3741            275693                NA            137408               125
3742           1335804                NA            641128               280
3743           1163462                NA            568061               155
3744           1087068                NA            546278               323
3745           6346083                NA           3128067               735
3746           6346083                NA           3128067               735
3747            133834                NA             70614               269
3748           1042393                NA            516095               117
3749             47759                NA             23950               207
3750           2959386                NA           1493164               389
3751            567287                NA            281431               119
3752            658694                NA            322943               249
3753             35159                NA             18160               188
3754             64701                NA             32652               134
3755           2959386                NA           1493164               389
3756            119685                NA             62534               190
3757            156131                NA             77615               112
3758            399335                NA            205955               208
3759           9566955                NA           4718471               425
3760           7142603                NA           3563435               532
3761           2394673                NA           1181313               252
3762            915968                NA            453044               376
3763           1010100                NA            512085                30
3764           1420825                NA            698689               221
3765           2840005                NA           1374325               218
3766           3289701                NA           1667851                NA
3767           1981584                NA           1011796               354
3768            915968                NA            453044               376
3769            844461                NA            407362               124
3770            901729                NA            444836               160
3771           2959386                NA           1493164               389
3772           3194310                NA           1562880               249
3773           1254675                NA            635422               145
3774           1114368                NA            538428               383
3775           2137223                NA           1061042               342
3776           1282588                NA            630858               398
3777           1163462                NA            568061               155
3778           2570862                NA           1280273               338
3779           4864209                NA           2434382               157
3780           2137223                NA           1061042               342
3781           2505312                NA           1250855               406
3782           2679298                NA           1318555               326
3783           3194310                NA           1562880               249
3784           3194310                NA           1562880               249
3785           7673379                NA           3806912               442
3786           9566955                NA           4718471               425
3787           1163462                NA            568061               155
3788           1282588                NA            630858               398
3789           6123949                NA           3001027               195
3790           7673379                NA           3806912               442
3791           7142603                NA           3563435               532
3792           2813523                NA           1375126               423
3793           2394673                NA           1181313               252
3794            275693                NA            137408               125
3795            251635                NA            126980               301
3796           6346083                NA           3128067               735
3797           7142603                NA           3563435               532
3798            275693                NA            137408               125
3799            251635                NA            126980               301
3800           1087068                NA            546278               323
3801            812506                NA            397560               201
3802           2365501                NA           1162773               204
3803            314708                NA            152116               417
3804            493980                NA            244298               233
3805           6346083                NA           3128067               735
3806           6232894                NA           3033772               332
3807           9566955                NA           4718471               425
3808           2668688                NA           1305000               381
3809          19908595                NA           9713298               650
3810           2679298                NA           1318555               326
3811          19908595                NA           9713298               650
3812            975551               164            484741               608
3813            975551               164            484741               608
3814           6123949                NA           3001027               195
3815          19908595                NA           9713298               650
3816                NA                NA                NA                NA
3817           2073546                NA            975289               435
3818           6094752                NA           2965233               880
3819           2679298                NA           1318555               326
3820            772902                NA            380685                73
3821            277944                NA            140783               421
3822            421854                NA            208182               136
3823           4610050                NA           2315218               243
3824           2265926                NA           1137581                NA
3825           2265926                NA           1137581                NA
3826           2265926                NA           1137581                NA
3827           2679298                NA           1318555               326
3828           2679298                NA           1318555               326
3829            496299                NA            240510               173
3830            772902                NA            380685                73
3831           2813523                NA           1375126               423
3832           2079759                NA           1012336               195
3833           4610050                NA           2315218               243
3834            383732                NA            189495                92
3835          19908595                NA           9713298               650
3836           2679298                NA           1318555               326
3837            772902                NA            380685                73
3838           1215703               422            594920               926
3839            383732                NA            189495                92
3840          19908595                NA           9713298               650
3841           2679298                NA           1318555               326
3842           3194310                NA           1562880               249
3843           3194310                NA           1562880               249
3844           1087068                NA            546278               323
3845           6094752                NA           2965233               880
3846           9566955                NA           4718471               425
3847           6123949                NA           3001027               195
3848           3194310                NA           1562880               249
3849           6123949                NA           3001027               195
3850           6123949                NA           3001027               195
3851           3194310                NA           1562880               249
3852            772902                NA            380685                73
3853          13111917                NA           6515114                NA
3854            274339                NA            133897                52
3855           1282588                NA            630858               398
3856            510290                NA            256202               214
3857           2079759                NA           1012336               195
3858           2365501                NA           1162773               204
3859            496299                NA            240510               173
3860            496299                NA            240510               173
3861            274339                NA            133897                52
3862            422733                NA            212276                44
3863                NA                NA                NA                NA
3864          19908595                NA           9713298               650
3865           2365501                NA           1162773               204
3866          19908595                NA           9713298               650
3867           2679298                NA           1318555               326
3868            496299                NA            240510               173
3869            496299                NA            240510               173
3870            274339                NA            133897                52
3871           2365501                NA           1162773               204
3872           6123949                NA           3001027               195
3873           6346083                NA           3128067               735
3874            437609                NA            223186               110
3875            906883                NA            464093               104
3876            185147                NA             92047               125
3877           6346083                NA           3128067               735
3878           2190750                NA           1084347               492
3879           7142603                NA           3563435               532
3880           9566955                NA           4718471               425
3881           1010100                NA            512085                30
3882           1428923                NA            708697               296
3883          19908595                NA           9713298               650
3884           6346083                NA           3128067               735
3885           3678328                NA           1837913               458
3886            469484                NA            227358               262
3887           2109957                NA           1038760               572
3888           6123949                NA           3001027               195
3889           3678328                NA           1837913               458
3890           3678328                NA           1837913               458
3891            322285                NA            159719                88
3892                NA                NA                NA                NA
3893             55650                NA             29968               225
3894           2505312                NA           1250855               406
3895           1254675                NA            635422               145
3896           1316145                NA            640643               629
3897            202163                NA            100828                55
3898           2813523                NA           1375126               423
3899            225911                NA            111978               102
3900            328011                NA            164852               168
3901           2190750                NA           1084347               492
3902           1428923                NA            708697               296
3903            844461                NA            407362               124
3904            550596                NA            277195               287
3905            711490                NA            355020               278
3906                NA                NA                NA                NA
3907            399335                NA            205955               208
3908           6346083                NA           3128067               735
3909          19908595                NA           9713298               650
3910          19908595                NA           9713298               650
3911           2253528                NA           1113732               640
3912            867161                NA            431851               177
3913           1086859                NA            532509               342
3914           2253528                NA           1113732               640
3915           1254675                NA            635422               145
3916           3678328                NA           1837913               458
3917           1798025                NA            886709               642
3918           7673379                NA           3806912               442
3919           7673379                NA           3806912               442
3920           2668688                NA           1305000               381
3921           6346083                NA           3128067               735
3922           1798025                NA            886709               642
3923           6232894                NA           3033772               332
3924            330119                NA            161252               101
3925            678995                NA            341280               162
3926           1798025                NA            886709               642
3927           2959386                NA           1493164               389
3928             79008                NA             40763               308
3929            105950                NA             53095               130
3930            222604                NA            109360               231
3931             77140                NA             40384               211
3932            158478                NA             79833               230
3933            154481                NA             75375                58
3934            222604                NA            109360               231
3935           4692242                NA           2342253               320
3936          13111917                NA           6515114                NA
3937           2959386                NA           1493164               389
3938           7142603                NA           3563435               532
3939           2109957                NA           1038760               572
3940          13111917                NA           6515114                NA
3941           2265926                NA           1137581                NA
3942           4864209                NA           2434382               157
3943           1613587                NA            790463               387
3944           7142603                NA           3563435               532
3945           7673379                NA           3806912               442
3946             24944                NA             13144               156
3947           1420825                NA            698689               221
3948            772902                NA            380685                73
3949           1017724                NA            503252               211
3950           7142603                NA           3563435               532
3951           4864209                NA           2434382               157
3952           4864209                NA           2434382               157
3953            171284                NA             83922                37
3954           6123949                NA           3001027               195
3955            218515                NA            108665               349
3956          19908595                NA           9713298               650
3957             82044                NA             42677               177
3958           6346083                NA           3128067               735
3959           1568940                NA            770847               201
3960           6346083                NA           3128067               735
3961           6094752                NA           2965233               880
3962           7673379                NA           3806912               442
3963           2668688                NA           1305000               381
3964           2668688                NA           1305000               381
3965           6232894                NA           3033772               332
3966           6346083                NA           3128067               735
3967           7673379                NA           3806912               442
3968           2296377                NA           1160944               432
3969          19908595                NA           9713298               650
3970           6123949                NA           3001027               195
3971           1017724                NA            503252               211
3972           7673379                NA           3806912               442
3973           9566955                NA           4718471               425
3974           4864209                NA           2434382               157
3975           2668688                NA           1305000               381
3976           6232894                NA           3033772               332
3977           6232894                NA           3033772               332
3978           2668688                NA           1305000               381
3979           2668688                NA           1305000               381
3980           6346083                NA           3128067               735
3981           9566955                NA           4718471               425
3982           2137223                NA           1061042               342
3983           7673379                NA           3806912               442
3984           2668688                NA           1305000               381
3985           2668688                NA           1305000               381
3986           4001701                NA           2024424                73
3987           2505312                NA           1250855               406
3988           2505312                NA           1250855               406
3989           1163462                NA            568061               155
3990          19908595                NA           9713298               650
3991           6123949                NA           3001027               195
3992          19908595                NA           9713298               650
3993           1282588                NA            630858               398
3994           4375604                NA           2148947               188
3995           4375604                NA           2148947               188
3996           3678328                NA           1837913               458
3997           6094752                NA           2965233               880
3998           2253528                NA           1113732               640
3999           4375604                NA           2148947               188
4000           4375604                NA           2148947               188
4001           2073546                NA            975289               435
4002            658694                NA            322943               249
4003           1017724                NA            503252               211
4004           3289701                NA           1667851                NA
4005          13111917                NA           6515114                NA
4006            772902                NA            380685                73
4007           2394673                NA           1181313               252
4008            382983                NA            189968               213
4009           1114368                NA            538428               383
4010            884359                NA            435364               356
4011           1042393                NA            516095               117
4012           2505312                NA           1250855               406
4013           2109957                NA           1038760               572
4014           3289701                NA           1667851                NA
4015            612898                NA            299409               472
4016           1215703               422            594920               926
4017           1420825                NA            698689               221
4018            496299                NA            240510               173
4019             82044                NA             42677               177
4020           2109957                NA           1038760               572
4021            399335                NA            205955               208
4022            550596                NA            277195               287
4023            803398                NA            394257               163
4024           6346083                NA           3128067               735
4025            901729                NA            444836               160
4026            314708                NA            152116               417
4027           7142603                NA           3563435               532
4028           6123949                NA           3001027               195
4029           7142603                NA           3563435               532
4030           1981584                NA           1011796               354
4031           1990873                NA            978574               496
4032           7673379                NA           3806912               442
4033            202163                NA            100828                55
4034           2365501                NA           1162773               204
4035            391957                NA            189194               244
4036           3678328                NA           1837913               458
4037          19908595                NA           9713298               650
4038           6123949                NA           3001027               195
4039            144705                NA             71707               113
4040            119685                NA             62534               190
4041           2959386                NA           1493164               389
4042           2668688                NA           1305000               381
4043           2365501                NA           1162773               204
4044            803398                NA            394257               163
4045           1981584                NA           1011796               354
4046           2679298                NA           1318555               326
4047            222831                NA            106479                NA
4048            591397                NA            285117               421
4049           1087068                NA            546278               323
4050           2570862                NA           1280273               338
4051           2505312                NA           1250855               406
4052            399335                NA            205955               208
4053             32108                NA             16461               170
4054            330119                NA            161252               101
4055           1254675                NA            635422               145
4056            289726                NA            140509               212
4057           2073546                NA            975289               435
4058           2813523                NA           1375126               423
4059           1613587                NA            790463               387
4060            406575                NA            197548               414
4061            490769                NA            249622               187
4062           2813523                NA           1375126               423
4063            496299                NA            240510               173
4064            755081                NA            384572               211
4065           1981584                NA           1011796               354
4066           6123949                NA           3001027               195
4067                NA                NA                NA                NA
4068           4912449                NA           2407307               403
4069           6346083                NA           3128067               735
4070          13111917                NA           6515114                NA
4071           2840005                NA           1374325               218
4072          19908595                NA           9713298               650
4073           4912449                NA           2407307               403
4074             24944                NA             13144               156
4075          19908595                NA           9713298               650
4076           6094752                NA           2965233               880
4077           1335804                NA            641128               280
4078            496299                NA            240510               173
4079            477056                NA            234726               332
4080           6123949                NA           3001027               195
4081           1114368                NA            538428               383
4082            225745                NA            112032               173
4083           2668688                NA           1305000               381
4084            552916                NA            270938               223
4085           7673379                NA           3806912               442
4086            326159                NA            160906               371
4087           1017724                NA            503252               211
4088           7142603                NA           3563435               532
4089           2109957                NA           1038760               572
4090           2365501                NA           1162773               204
4091           4864209                NA           2434382               157
4092            552916                NA            270938               223
4093           2296377                NA           1160944               432
4094            844461                NA            407362               124
4095            646794                NA            322648               249
4096           3678328                NA           1837913               458
4097            171284                NA             83922                37
4098           2679298                NA           1318555               326
4099           6094752                NA           2965233               880
4100           1335804                NA            641128               280
4101            493980                NA            244298               233
4102            678995                NA            341280               162
4103            510290                NA            256202               214
4104            697704                NA            348873                85
4105           1670949                NA            818990               468
4106           2679298                NA           1318555               326
4107            772902                NA            380685                73
4108           4375604                NA           2148947               188
4109           2570862                NA           1280273               338
4110           6346083                NA           3128067               735
4111           6123949                NA           3001027               195
4112             13910                NA              7232                51
4113            399335                NA            205955               208
4114           4610050                NA           2315218               243
4115           4912449                NA           2407307               403
4116          13111917                NA           6515114                NA
4117           1254675                NA            635422               145
4118           6094752                NA           2965233               880
4119           1254675                NA            635422               145
4120           1254675                NA            635422               145
4121           6094752                NA           2965233               880
4122           2253528                NA           1113732               640
4123            477056                NA            234726               332
4124            591397                NA            285117               421
4125            510290                NA            256202               214
4126           1670949                NA            818990               468
4127           2109957                NA           1038760               572
4128           6346083                NA           3128067               735
4129            211078                NA            103187               195
4130             66376                NA             33782               113
4131           3678328                NA           1837913               458
4132             35159                NA             18160               188
4133           7673379                NA           3806912               442
4134           2959386                NA           1493164               389
4135           1087068                NA            546278               323
4136           3678328                NA           1837913               458
4137           2959386                NA           1493164               389
4138           7142603                NA           3563435               532
4139            164765                21             82304               124
4140            202163                NA            100828                55
4141            755081                NA            384572               211
4142           9566955                NA           4718471               425
4143           9566955                NA           4718471               425
4144           2394673                NA           1181313               252
4145          13111917                NA           6515114                NA
4146           1114368                NA            538428               383
4147           1613587                NA            790463               387
4148           1990873                NA            978574               496
4149           1670949                NA            818990               468
4150            277944                NA            140783               421
4151            515954                NA            253400               455
4152           7142603                NA           3563435               532
4153           7142603                NA           3563435               532
4154             35159                NA             18160               188
4155           1010100                NA            512085                30
4156           1798025                NA            886709               642
4157            152640                NA             75942               126
4158            225745                NA            112032               173
4159           1086859                NA            532509               342
4160            658694                NA            322943               249
4161           4912449                NA           2407307               403
4162           2668688                NA           1305000               381
4163            269278               239            135933               280
4164           9566955                NA           4718471               425
4165           7673379                NA           3806912               442
4166           2668688                NA           1305000               381
4167           2296377                NA           1160944               432
4168           6123949                NA           3001027               195
4169           2190750                NA           1084347               492
4170           1335804                NA            641128               280
4171           2813523                NA           1375126               423
4172           2668688                NA           1305000               381
4173           7673379                NA           3806912               442
4174            867161                NA            431851               177
4175           7673379                NA           3806912               442
4176           6232894                NA           3033772               332
4177           9566955                NA           4718471               425
4178           7673379                NA           3806912               442
4179           6232894                NA           3033772               332
4180           2668688                NA           1305000               381
4181           6232894                NA           3033772               332
4182           6232894                NA           3033772               332
4183           7673379                NA           3806912               442
4184           2505312                NA           1250855               406
4185           4001701                NA           2024424                73
4186            658694                NA            322943               249
4187            901729                NA            444836               160
4188            803398                NA            394257               163
4189           2505312                NA           1250855               406
4190           6123949                NA           3001027               195
4191            803398                NA            394257               163
4192           2265926                NA           1137581                NA
4193           1316145                NA            640643               629
4194           6123949                NA           3001027               195
4195           2265926                NA           1137581                NA
4196           4912449                NA           2407307               403
4197           4375604                NA           2148947               188
4198           3678328                NA           1837913               458
4199           3678328                NA           1837913               458
4200           4375604                NA           2148947               188
4201             96299                NA             52279               219
4202           4375604                NA           2148947               188
4203           6094752                NA           2965233               880
4204          19908595                NA           9713298               650
4205           1420825                NA            698689               221
4206           1087068                NA            546278               323
4207           6232894                NA           3033772               332
4208           6123949                NA           3001027               195
4209           2679298                NA           1318555               326
4210            658694                NA            322943               249
4211           6346083                NA           3128067               735
4212           9566955                NA           4718471               425
4213           2296377                NA           1160944               432
4214            416839                NA            205169               299
4215            174621                NA             89435               316
4216           7673379                NA           3806912               442
4217           7673379                NA           3806912               442
4218            515954                NA            253400               455
4219            156131                NA             77615               112
4220           6123949                NA           3001027               195
4221           2073546                NA            975289               435
4222                NA                NA                NA                NA
4223           3194310                NA           1562880               249
4224           2073546                NA            975289               435
4225          19908595                NA           9713298               650
4226            274339                NA            133897                52
4227           2668688                NA           1305000               381
4228           6346083                NA           3128067               735
4229            538985                NA            265985               207
4230           2365501                NA           1162773               204
4231           2668688                NA           1305000               381
4232           6346083                NA           3128067               735
4233           6346083                NA           3128067               735
4234           7142603                NA           3563435               532
4235           4864209                NA           2434382               157
4236           7142603                NA           3563435               532
4237           4692242                NA           2342253               320
4238           2959386                NA           1493164               389
4239            422187                NA            211290               199
4240            382218                NA            189292                38
4241            199352                NA             99597               226
4242           7142603                NA           3563435               532
4243           9566955                NA           4718471               425
4244            405280                NA            196717                99
4245            493980                NA            244298               233
4246           1670949                NA            818990               468
4247            281712                NA            142477               194
4248           4864209                NA           2434382               157
4249            199352                NA             99597               226
4250            490769                NA            249622               187
4251           7142603                NA           3563435               532
4252           4001701                NA           2024424                73
4253           4001701                NA           2024424                73
4254          13111917                NA           6515114                NA
4255          19908595                NA           9713298               650
4256           6346083                NA           3128067               735
4257          19908595                NA           9713298               650
4258           9566955                NA           4718471               425
4259           2079759                NA           1012336               195
4260           2959386                NA           1493164               389
4261           2959386                NA           1493164               389
4262           9566955                NA           4718471               425
4263           6346083                NA           3128067               735
4264           6346083                NA           3128067               735
4265           4692242                NA           2342253               320
4266           2959386                NA           1493164               389
4267           6346083                NA           3128067               735
4268           7142603                NA           3563435               532
4269           4692242                NA           2342253               320
4270           4692242                NA           2342253               320
4271           2959386                NA           1493164               389
4272           6346083                NA           3128067               735
4273           9566955                NA           4718471               425
4274           4864209                NA           2434382               157
4275           9566955                NA           4718471               425
4276           7673379                NA           3806912               442
4277           2668688                NA           1305000               381
4278           6123949                NA           3001027               195
4279           2813523                NA           1375126               423
4280           4375604                NA           2148947               188
4281           2813523                NA           1375126               423
4282            755081                NA            384572               211
4283           3289701                NA           1667851                NA
4284           9566955                NA           4718471               425
4285           7673379                NA           3806912               442
4286           7142603                NA           3563435               532
4287          13111917                NA           6515114                NA
4288           2959386                NA           1493164               389
4289           2840005                NA           1374325               218
4290          13111917                NA           6515114                NA
4291           7673379                NA           3806912               442
4292          13111917                NA           6515114                NA
4293          13111917                NA           6515114                NA
4294          13111917                NA           6515114                NA
4295           4864209                NA           2434382               157
4296          13111917                NA           6515114                NA
4297           2296377                NA           1160944               432
4298           6346083                NA           3128067               735
4299           7142603                NA           3563435               532
4300            496299                NA            240510               173
4301            591397                NA            285117               421
4302            844461                NA            407362               124
4303           6346083                NA           3128067               735
4304           7142603                NA           3563435               532
4305            119685                NA             62534               190
4306           7142603                NA           3563435               532
4307            288639                NA            146836               223
4308           6346083                NA           3128067               735
4309           1316145                NA            640643               629
4310            289726                NA            140509               212
4311           6232894                NA           3033772               332
4312           1420825                NA            698689               221
4313           6346083                NA           3128067               735
4314            469484                NA            227358               262
4315            812506                NA            397560               201
4316            270495                NA            134616                70
4317           1087068                NA            546278               323
4318            772902                NA            380685                73
4319            772902                NA            380685                73
4320           4864209                NA           2434382               157
4321            496299                NA            240510               173
4322            189900                NA             93505               124
4323           3194310                NA           1562880               249
4324           2265926                NA           1137581                NA
4325           6232894                NA           3033772               332
4326           4912449                NA           2407307               403
4327            493980                NA            244298               233
4328            550596                NA            277195               287
4329            866377                58            420485               915
4330            225745                NA            112032               173
4331           7673379                NA           3806912               442
4332            490769                NA            249622               187
4333           1010100                NA            512085                30
4334          19908595                NA           9713298               650
4335           1163462                NA            568061               155
4336           4375604                NA           2148947               188
4337           7673379                NA           3806912               442
4338           6346083                NA           3128067               735
4339           7673379                NA           3806912               442
4340           9566955                NA           4718471               425
4341           7673379                NA           3806912               442
4342           1163462                NA            568061               155
4343           2668688                NA           1305000               381
4344           7673379                NA           3806912               442
4345             32108                NA             16461               170
4346           1316145                NA            640643               629
4347           6094752                NA           2965233               880
4348           1254675                NA            635422               145
4349           1254675                NA            635422               145
4350           6094752                NA           2965233               880
4351            383732                NA            189495                92
4352            593318                NA            293750               186
4353            884359                NA            435364               356
4354            700578                NA            343022               159
4355           6346083                NA           3128067               735
4356            275693                NA            137408               125
4357            538985                NA            265985               207
4358           6346083                NA           3128067               735
4359           3194310                NA           1562880               249
4360            308919                NA            149938                90
4361           2137223                NA           1061042               342
4362           6123949                NA           3001027               195
4363           3194310                NA           1562880               249
4364           4912449                NA           2407307               403
4365            700578                NA            343022               159
4366           2137223                NA           1061042               342
4367           6346083                NA           3128067               735
4368            775169                NA            372915               218
4369            775169                NA            372915               218
4370            330119                NA            161252               101
4371            610723                NA            300904                75
4372           6232894                NA           3033772               332
4373           1670949                NA            818990               468
4374           1086859                NA            532509               342
4375            658694                NA            322943               249
4376           6232894                NA           3033772               332
4377           1670949                NA            818990               468
4378           7142603                NA           3563435               532
4379           3678328                NA           1837913               458
4380           1335804                NA            641128               280
4381            510290                NA            256202               214
4382           9566955                NA           4718471               425
4383             96846                NA             48894               150
4384            133467               110             67534               408
4385            140356                NA             72104               269
4386           2959386                NA           1493164               389
4387           9566955                NA           4718471               425
4388          13111917                NA           6515114                NA
4389           3678328                NA           1837913               458
4390             35159                NA             18160               188
4391           2505312                NA           1250855               406
4392            552916                NA            270938               223
4393           4692242                NA           2342253               320
4394           6346083                NA           3128067               735
4395           7142603                NA           3563435               532
4396           7673379                NA           3806912               442
4397           7673379                NA           3806912               442
4398           2840005                NA           1374325               218
4399           2190750                NA           1084347               492
4400           2296377                NA           1160944               432
4401           7142603                NA           3563435               532
4402           4864209                NA           2434382               157
4403           6232894                NA           3033772               332
4404            803398                NA            394257               163
4405           2137223                NA           1061042               342
4406           1086859                NA            532509               342
4407            775169                NA            372915               218
4408           6346083                NA           3128067               735
4409            289726                NA            140509               212
4410            422733                NA            212276                44
4411           1282588                NA            630858               398
4412            658694                NA            322943               249
4413            242972                NA            122440               180
4414            510290                NA            256202               214
4415           7673379                NA           3806912               442
4416           7673379                NA           3806912               442
4417           4864209                NA           2434382               157
4418           7673379                NA           3806912               442
4419           2668688                NA           1305000               381
4420            490769                NA            249622               187
4421           6094752                NA           2965233               880
4422           1254675                NA            635422               145
4423            225745                NA            112032               173
4424           2959386                NA           1493164               389
4425           1798025                NA            886709               642
4426           2265926                NA           1137581                NA
4427            772902                NA            380685                73
4428           6123949                NA           3001027               195
4429            496299                NA            240510               173
4430           2365501                NA           1162773               204
4431           1215703               422            594920               926
4432            405280                NA            196717                99
4433            493980                NA            244298               233
4434           6232894                NA           3033772               332
4435           6346083                NA           3128067               735
4436           4864209                NA           2434382               157
4437           9566955                NA           4718471               425
4438           9566955                NA           4718471               425
4439           4001701                NA           2024424                73
4440            281712                NA            142477               194
4441           4001701                NA           2024424                73
4442           9566955                NA           4718471               425
4443           4692242                NA           2342253               320
4444           2959386                NA           1493164               389
4445           2959386                NA           1493164               389
4446           7142603                NA           3563435               532
4447           7142603                NA           3563435               532
4448            422187                NA            211290               199
4449           2190750                NA           1084347               492
4450           2570862                NA           1280273               338
4451            164765                21             82304               124
4452           1990873                NA            978574               496
4453           4692242                NA           2342253               320
4454            119685                NA             62534               190
4455           1990873                NA            978574               496
4456            490769                NA            249622               187
4457           1335804                NA            641128               280
4458           6346083                NA           3128067               735
4459           6346083                NA           3128067               735
4460           1670949                NA            818990               468
4461          13111917                NA           6515114                NA
4462           2265926                NA           1137581                NA
4463            136132                NA             67729               200
4464            382218                NA            189292                38
4465            222604                NA            109360               231
4466            304252                NA            154587               312
4467            199352                NA             99597               226
4468            488436                NA            240478               204
4469            866377                58            420485               915
4470          13111917                NA           6515114                NA
4471           2679298                NA           1318555               326
4472            772902                NA            380685                73
4473          13111917                NA           6515114                NA
4474          13111917                NA           6515114                NA
4475            866377                58            420485               915
4476          13111917                NA           6515114                NA
4477           3194310                NA           1562880               249
4478            199352                NA             99597               226
4479          13111917                NA           6515114                NA
4480           1215703               422            594920               926
4481            202163                NA            100828                55
4482            277944                NA            140783               421
4483             73511                NA             36809               115
4484           3289701                NA           1667851                NA
4485           6094752                NA           2965233               880
4486           1981584                NA           1011796               354
4487             79008                NA             40763               308
4488            490769                NA            249622               187
4489           7142603                NA           3563435               532
4490             47759                NA             23950               207
4491             55650                NA             29968               225
4492             24944                NA             13144               156
4493           4001701                NA           2024424                73
4494           1042393                NA            516095               117
4495          19908595                NA           9713298               650
4496            391957                NA            189194               244
4497            288639                NA            146836               223
4498           1335804                NA            641128               280
4499            419715                NA            207197               118
4500             55650                NA             29968               225
4501           2394673                NA           1181313               252
4502           2959386                NA           1493164               389
4503           2959386                NA           1493164               389
4504           4692242                NA           2342253               320
4505           1282588                NA            630858               398
4506            242972                NA            122440               180
4507           4864209                NA           2434382               157
4508           6232894                NA           3033772               332
4509           6346083                NA           3128067               735
4510           1316145                NA            640643               629
4511          19908595                NA           9713298               650
4512           4912449                NA           2407307               403
4513           4375604                NA           2148947               188
4514           2679298                NA           1318555               326
4515            755081                NA            384572               211
4516           2679298                NA           1318555               326
4517           1613587                NA            790463               387
4518           2679298                NA           1318555               326
4519           6123949                NA           3001027               195
4520           2190750                NA           1084347               492
4521           6123949                NA           3001027               195
4522           2190750                NA           1084347               492
4523          13111917                NA           6515114                NA
4524           4001701                NA           2024424                73
4525           2959386                NA           1493164               389
4526           9566955                NA           4718471               425
4527           1428923                NA            708697               296
4528           4610050                NA           2315218               243
4529            202163                NA            100828                55
4530           7142603                NA           3563435               532
4531            591397                NA            285117               421
4532          13111917                NA           6515114                NA
4533            844461                NA            407362               124
4534           3194310                NA           1562880               249
4535           2190750                NA           1084347               492
4536          13111917                NA           6515114                NA
4537           1316145                NA            640643               629
4538           2079759                NA           1012336               195
4539           4864209                NA           2434382               157
4540           2668688                NA           1305000               381
4541            975551               164            484741               608
4542           7673379                NA           3806912               442
4543           2505312                NA           1250855               406
4544                NA                NA                NA                NA
4545          19908595                NA           9713298               650
4546          19908595                NA           9713298               650
4547            119685                NA             62534               190
4548          19908595                NA           9713298               650
4549           1254675                NA            635422               145
4550           4375604                NA           2148947               188
4551           4375604                NA           2148947               188
4552          19908595                NA           9713298               650
4553            421854                NA            208182               136
4554           7673379                NA           3806912               442
4555            496299                NA            240510               173
4556            700578                NA            343022               159
4557            564466                NA            276108               458
4558            289726                NA            140509               212
4559            755081                NA            384572               211
4560            771602                NA            388362               230
4561           2959386                NA           1493164               389
4562           2959386                NA           1493164               389
4563           2959386                NA           1493164               389
4564           2570862                NA           1280273               338
4565           2840005                NA           1374325               218
4566           1282588                NA            630858               398
4567            803398                NA            394257               163
4568           2190750                NA           1084347               492
4569           1568940                NA            770847               201
4570           2296377                NA           1160944               432
4571            711490                NA            355020               278
4572           4692242                NA           2342253               320
4573          13111917                NA           6515114                NA
4574           7142603                NA           3563435               532
4575            552916                NA            270938               223
4576           2296377                NA           1160944               432
4577            915968                NA            453044               376
4578           1981584                NA           1011796               354
4579           2296377                NA           1160944               432
4580            406575                NA            197548               414
4581           1428923                NA            708697               296
4582           2570862                NA           1280273               338
4583           1568940                NA            770847               201
4584           4864209                NA           2434382               157
4585            772902                NA            380685                73
4586            291491                NA            148126               172
4587            678995                NA            341280               162
4588           3194310                NA           1562880               249
4589           6123949                NA           3001027               195
4590          13111917                NA           6515114                NA
4591           1264357                NA            612537               452
4592           9566955                NA           4718471               425
4593            119685                NA             62534               190
4594           2073546                NA            975289               435
4595           1316145                NA            640643               629
4596           4610050                NA           2315218               243
4597           4864209                NA           2434382               157
4598           4864209                NA           2434382               157
4599           1981584                NA           1011796               354
4600           4001701                NA           2024424                73
4601           4375604                NA           2148947               188
4602           6094752                NA           2965233               880
4603            171284                NA             83922                37
4604            383732                NA            189495                92
4605            274339                NA            133897                52
4606                NA                NA                NA                NA
4607           2079759                NA           1012336               195
4608           6232894                NA           3033772               332
4609            422733                NA            212276                44
4610           2959386                NA           1493164               389
4611            711490                NA            355020               278
4612           9566955                NA           4718471               425
4613           2959386                NA           1493164               389
4614           2959386                NA           1493164               389
4615           2959386                NA           1493164               389
4616           9566955                NA           4718471               425
4617           6346083                NA           3128067               735
4618           2959386                NA           1493164               389
4619           6346083                NA           3128067               735
4620           2959386                NA           1493164               389
4621           2959386                NA           1493164               389
4622           2959386                NA           1493164               389
4623          13111917                NA           6515114                NA
4624           4692242                NA           2342253               320
4625           2840005                NA           1374325               218
4626           1428923                NA            708697               296
4627           7142603                NA           3563435               532
4628           1568940                NA            770847               201
4629           1163462                NA            568061               155
4630            966688                NA            483251               270
4631           2253528                NA           1113732               640
4632           7673379                NA           3806912               442
4633            322285                NA            159719                88
4634            174621                NA             89435               316
4635            646794                NA            322648               249
4636            510290                NA            256202               214
4637           9566955                NA           4718471               425
4638            901729                NA            444836               160
4639           1335804                NA            641128               280
4640           7673379                NA           3806912               442
4641            749290                NA            363653               316
4642           1087068                NA            546278               323
4643           2190750                NA           1084347               492
4644           3289701                NA           1667851                NA
4645           3194310                NA           1562880               249
4646           2190750                NA           1084347               492
4647           1568940                NA            770847               201
4648           6346083                NA           3128067               735
4649          13111917                NA           6515114                NA
4650           6346083                NA           3128067               735
4651           9566955                NA           4718471               425
4652           1798025                NA            886709               642
4653           3678328                NA           1837913               458
4654           3194310                NA           1562880               249
4655             82044                NA             42677               177
4656             24944                NA             13144               156
4657           4001701                NA           2024424                73
4658             47759                NA             23950               207
4659           1017724                NA            503252               211
4660          13111917                NA           6515114                NA
4661          13111917                NA           6515114                NA
4662           1010100                NA            512085                30
4663                NA                NA                NA                NA
4664           1215703               422            594920               926
4665           2365501                NA           1162773               204
4666           6094752                NA           2965233               880
4667           4375604                NA           2148947               188
4668           6094752                NA           2965233               880
4669           6094752                NA           2965233               880
4670            437609                NA            223186               110
4671             84423                NA             43002               119
4672           2109957                NA           1038760               572
4673            158665                NA             83943               173
4674            339707                NA            171627               120
4675            612898                NA            299409               472
4676            308386                NA            152054               280
4677            593318                NA            293750               186
4678            901729                NA            444836               160
4679            585485                NA            292820               126
4680          19908595                NA           9713298               650
4681            678995                NA            341280               162
4682             76726                NA             39209               176
4683            477056                NA            234726               332
4684            831913                NA            404751               336
4685            382983                NA            189968               213
4686             79008                NA             40763               308
4687             24944                NA             13144               156
4688          19908595                NA           9713298               650
4689            382983                NA            189968               213
4690            422733                NA            212276                44
4691           9566955                NA           4718471               425
4692            469484                NA            227358               262
4693            399335                NA            205955               208
4694           4001701                NA           2024424                73
4695                NA                NA                NA                NA
4696           2505312                NA           1250855               406
4697          13111917                NA           6515114                NA
4698           4912449                NA           2407307               403
4699          19908595                NA           9713298               650
4700           1254675                NA            635422               145
4701           1254675                NA            635422               145
4702           1613587                NA            790463               387
4703           2365501                NA           1162773               204
4704           1215703               422            594920               926
4705            869755                NA            427134               671
4706            102555                NA             50314               236
4707           1215703               422            594920               926
4708            181055                NA             90237               148
4709            437609                NA            223186               110
4710            966688                NA            483251               270
4711            154481                NA             75375                58
4712           2959386                NA           1493164               389
4713           9566955                NA           4718471               425
4714           9566955                NA           4718471               425
4715           2959386                NA           1493164               389
4716           2959386                NA           1493164               389
4717           3194310                NA           1562880               249
4718           7142603                NA           3563435               532
4719           9566955                NA           4718471               425
4720           2137223                NA           1061042               342
4721            755081                NA            384572               211
4722           1990873                NA            978574               496
4723            966688                NA            483251               270
4724           1086859                NA            532509               342
4725           6094752                NA           2965233               880
4726           2679298                NA           1318555               326
4727           2505312                NA           1250855               406
4728            901729                NA            444836               160
4729           1086859                NA            532509               342
4730           1282588                NA            630858               398
4731           6346083                NA           3128067               735
4732           6346083                NA           3128067               735
4733           1316145                NA            640643               629
4734            269278               239            135933               280
4735            421854                NA            208182               136
4736            421854                NA            208182               136
4737           2679298                NA           1318555               326
4738             82044                NA             42677               177
4739            113854                NA             53949               292
4740            158665                NA             83943               173
4741            550596                NA            277195               287
4742           1215703               422            594920               926
4743                NA                NA                NA                NA
4744           2505312                NA           1250855               406
4745            399335                NA            205955               208
4746             13910                NA              7232                51
4747           4912449                NA           2407307               403
4748            222831                NA            106479                NA
4749           2296377                NA           1160944               432
4750           6123949                NA           3001027               195
4751            422733                NA            212276                44
4752           1114368                NA            538428               383
4753           2668688                NA           1305000               381
4754           2959386                NA           1493164               389
4755            906883                NA            464093               104
4756            140356                NA             72104               269
4757            144705                NA             71707               113
4758            678995                NA            341280               162
4759           1282588                NA            630858               398
4760            269278               239            135933               280
4761           3678328                NA           1837913               458
4762            339707                NA            171627               120
4763                NA                NA                NA                NA
4764           2959386                NA           1493164               389
4765            158478                NA             79833               230
4766           3678328                NA           1837913               458
4767            304252                NA            154587               312
4768           9566955                NA           4718471               425
4769           6346083                NA           3128067               735
4770           2959386                NA           1493164               389
4771           2679298                NA           1318555               326
4772            844461                NA            407362               124
4773           1042393                NA            516095               117
4774           2394673                NA           1181313               252
4775            164765                21             82304               124
4776           2365501                NA           1162773               204
4777           2394673                NA           1181313               252
4778           2840005                NA           1374325               218
4779            288639                NA            146836               223
4780           2679298                NA           1318555               326
4781           1114368                NA            538428               383
4782             47759                NA             23950               207
4783          19908595                NA           9713298               650
4784            510290                NA            256202               214
4785            339707                NA            171627               120
4786            416839                NA            205169               299
4787            267282                NA            132495               136
4788           2505312                NA           1250855               406
4789           1215703               422            594920               926
4790            251635                NA            126980               301
4791           1163462                NA            568061               155
4792                NA                NA                NA                NA
4793            772902                NA            380685                73
4794            593318                NA            293750               186
4795            550596                NA            277195               287
4796            281712                NA            142477               194
4797           6346083                NA           3128067               735
4798            771602                NA            388362               230
4799           2505312                NA           1250855               406
4800            251635                NA            126980               301
4801            183297                NA             91287               232
4802          13111917                NA           6515114                NA
4803           1042393                NA            516095               117
4804           4001701                NA           2024424                73
4805          19908595                NA           9713298               650
4806           2365501                NA           1162773               204
4807           2959386                NA           1493164               389
4808           1428923                NA            708697               296
4809           2365501                NA           1162773               204
4810           1990873                NA            978574               496
4811           3289701                NA           1667851                NA
4812            564466                NA            276108               458
4813            313961                NA            153951               276
4814            221648                NA            106730               331
4815            382983                NA            189968               213
4816            391957                NA            189194               244
4817           1114368                NA            538428               383
4818            515954                NA            253400               455
4819            884359                NA            435364               356
4820           4912449                NA           2407307               403
4821            275693                NA            137408               125
4822           3678328                NA           1837913               458
4823           6232894                NA           3033772               332
4824           4864209                NA           2434382               157
4825           4864209                NA           2434382               157
4826           6123949                NA           3001027               195
4827           2668688                NA           1305000               381
4828           4001701                NA           2024424                73
4829            119685                NA             62534               190
4830           1981584                NA           1011796               354
4831          13111917                NA           6515114                NA
4832           1670949                NA            818990               468
4833            585485                NA            292820               126
4834            585485                NA            292820               126
4835           1254675                NA            635422               145
4836           1254675                NA            635422               145
4837            749290                NA            363653               316
4838            515954                NA            253400               455
4839            166222                NA             84066               154
4840            567287                NA            281431               119
4841           6346083                NA           3128067               735
4842          13111917                NA           6515114                NA
4843           2959386                NA           1493164               389
4844            493980                NA            244298               233
4845           2365501                NA           1162773               204
4846            277944                NA            140783               421
4847            104055                NA             53837               193
4848             77140                NA             40384               211
4849            323992                NA            159346               109
4850            185147                NA             92047               125
4851            136132                NA             67729               200
4852           1008280                NA            506526                56
4853           2959386                NA           1493164               389
4854            585485                NA            292820               126
4855          19908595                NA           9713298               650
4856           2265926                NA           1137581                NA
4857           9566955                NA           4718471               425
4858           9566955                NA           4718471               425
4859           7673379                NA           3806912               442
4860           2296377                NA           1160944               432
4861           7673379                NA           3806912               442
4862             73511                NA             36809               115
4863            966688                NA            483251               270
4864           1990873                NA            978574               496
4865           2959386                NA           1493164               389
4866           7142603                NA           3563435               532
4867           7142603                NA           3563435               532
4868           6346083                NA           3128067               735
4869           7142603                NA           3563435               532
4870           4692242                NA           2342253               320
4871            341067                NA            165567               165
4872            515954                NA            253400               455
4873            257927                NA            126314               210
4874            270495                NA            134616                70
4875           3678328                NA           1837913               458
4876            593318                NA            293750               186
4877           1798025                NA            886709               642
4878           6232894                NA           3033772               332
4879            225745                NA            112032               173
4880            419715                NA            207197               118
4881            515954                NA            253400               455
4882            869755                NA            427134               671
4883            151721                NA             75403               227
4884            206072                NA             99873               335
4885           4375604                NA           2148947               188
4886            863166                NA            427343               249
4887            564466                NA            276108               458
4888            275693                NA            137408               125
4889            775169                NA            372915               218
4890            102555                NA             50314               236
4891            153733                NA             76642               194
4892            328011                NA            164852               168
4893            884359                NA            435364               356
4894           3678328                NA           1837913               458
4895           9566955                NA           4718471               425
4896           6232894                NA           3033772               332
4897           7673379                NA           3806912               442
4898           1981584                NA           1011796               354
4899                NA                NA                NA                NA
4900                NA                NA                NA                NA
4901             20543                NA             10091               308
4902             20543                NA             10091               308
4903                NA                NA                NA                NA
4904            658694                NA            322943               249
4905            522537                NA            259930               196
4906            277944                NA            140783               421
4907            328011                NA            164852               168
4908             35159                NA             18160               188
4909           4375604                NA           2148947               188
4910           4375604                NA           2148947               188
4911           3678328                NA           1837913               458
4912           4375604                NA           2148947               188
4913                NA                NA                NA                NA
4914           7673379                NA           3806912               442
4915            396279                NA            201129               225
4916            419715                NA            207197               118
4917            133834                NA             70614               269
4918                NA                NA                NA                NA
4919             83584                NA             41704               155
4920          13111917                NA           6515114                NA
4921            755081                NA            384572               211
4922           9566955                NA           4718471               425
4923            136132                NA             67729               200
4924            181852                NA             89879               141
4925           4692242                NA           2342253               320
4926             66376                NA             33782               113
4927            445213                NA            223753               185
4928            281712                NA            142477               194
4929            158478                NA             79833               230
4930            399335                NA            205955               208
4931           7142603                NA           3563435               532
4932           4692242                NA           2342253               320
4933           6232894                NA           3033772               332
4934          13111917                NA           6515114                NA
4935           7142603                NA           3563435               532
4936           9566955                NA           4718471               425
4937           2394673                NA           1181313               252
4938           4610050                NA           2315218               243
4939          13111917                NA           6515114                NA
4940           2073546                NA            975289               435
4941           2190750                NA           1084347               492
4942          13111917                NA           6515114                NA
4943           4610050                NA           2315218               243
4944            490769                NA            249622               187
4945           1990873                NA            978574               496
4946           1990873                NA            978574               496
4947           2840005                NA           1374325               218
4948          19908595                NA           9713298               650
4949           6346083                NA           3128067               735
4950            831913                NA            404751               336
4951           3678328                NA           1837913               458
4952                NA                NA                NA                NA
4953          13111917                NA           6515114                NA
4954           2265926                NA           1137581                NA
4955             20543                NA             10091               308
4956            772902                NA            380685                73
4957           2394673                NA           1181313               252
4958           6094752                NA           2965233               880
4959            304252                NA            154587               312
4960           1568940                NA            770847               201
4961           2079759                NA           1012336               195
4962          13111917                NA           6515114                NA
4963            322285                NA            159719                88
4964             13910                NA              7232                51
4965            399335                NA            205955               208
4966             13910                NA              7232                51
4967            552916                NA            270938               223
4968           3194310                NA           1562880               249
4969            422733                NA            212276                44
4970            775169                NA            372915               218
4971             73103                NA             37934               180
4972            646794                NA            322648               249
4973           3289701                NA           1667851                NA
4974           7673379                NA           3806912               442
4975             47759                NA             23950               207
4976           6232894                NA           3033772               332
4977           3678328                NA           1837913               458
4978            270495                NA            134616                70
4979           4001701                NA           2024424                73
4980            164765                21             82304               124
4981           7673379                NA           3806912               442
4982            490769                NA            249622               187
4983           2296377                NA           1160944               432
4984           1981584                NA           1011796               354
4985            330119                NA            161252               101
4986            867161                NA            431851               177
4987           9566955                NA           4718471               425
4988            251635                NA            126980               301
4989            151721                NA             75403               227
4990            323992                NA            159346               109
4991           2668688                NA           1305000               381
4992             73103                NA             37934               180
4993             35306                NA             18120               201
4994            399335                NA            205955               208
4995           4001701                NA           2024424                73
4996             47759                NA             23950               207
4997            966688                NA            483251               270
4998           6123949                NA           3001027               195
4999            288639                NA            146836               223
5000           1798025                NA            886709               642
5001            152640                NA             75942               126
5002            510290                NA            256202               214
5003            288639                NA            146836               223
5004           6346083                NA           3128067               735
5005            490769                NA            249622               187
5006           7673379                NA           3806912               442
5007           4912449                NA           2407307               403
5008           2505312                NA           1250855               406
5009            257927                NA            126314               210
5010           2079759                NA           1012336               195
5011           2253528                NA           1113732               640
5012            399335                NA            205955               208
5013            612898                NA            299409               472
5014           1086859                NA            532509               342
5015            658694                NA            322943               249
5016           4375604                NA           2148947               188
5017            105950                NA             53095               130
5018           3289701                NA           1667851                NA
5019           2365501                NA           1162773               204
5020            831913                NA            404751               336
5021            183297                NA             91287               232
5022            391957                NA            189194               244
5023                NA                NA                NA                NA
5024                NA                NA                NA                NA
5025             79008                NA             40763               308
5026            812506                NA            397560               201
5027            522537                NA            259930               196
5028             25381               138             13207               222
5029            422733                NA            212276                44
5030            199352                NA             99597               226
5031             64908                NA             32219               162
5032            755081                NA            384572               211
5033                NA                NA                NA                NA
5034            399335                NA            205955               208
5035             24944                NA             13144               156
5036            711490                NA            355020               278
5037           2668688                NA           1305000               381
5038           1981584                NA           1011796               354
5039                NA                NA                NA                NA
5040                NA                NA                NA                NA
5041             84423                NA             43002               119
5042             79008                NA             40763               308
5043            153733                NA             76642               194
5044           2394673                NA           1181313               252
5045            915968                NA            453044               376
5046            867161                NA            431851               177
5047            510290                NA            256202               214
5048           6232894                NA           3033772               332
5049                NA                NA                NA                NA
5050            399335                NA            205955               208
5051           4610050                NA           2315218               243
5052           6123949                NA           3001027               195
5053           2679298                NA           1318555               326
5054            383732                NA            189495                92
5055            328011                NA            164852               168
5056           2679298                NA           1318555               326
5057           2679298                NA           1318555               326
5058           2959386                NA           1493164               389
5059           2265926                NA           1137581                NA
5060            277944                NA            140783               421
5061            749290                NA            363653               316
5062           2679298                NA           1318555               326
5063            225745                NA            112032               173
5064            711490                NA            355020               278
5065            867161                NA            431851               177
5066           6232894                NA           3033772               332
5067            550596                NA            277195               287
5068           6123949                NA           3001027               195
5069           6123949                NA           3001027               195
5070           6123949                NA           3001027               195
5071           1420825                NA            698689               221
5072           2265926                NA           1137581                NA
5073           2679298                NA           1318555               326
5074            422733                NA            212276                44
5075            422733                NA            212276                44
5076            359363                NA            180193                78
5077            696650                NA            354035               260
5078          13111917                NA           6515114                NA
5079          13111917                NA           6515114                NA
5080           3194310                NA           1562880               249
5081            610723                NA            300904                75
5082            416839                NA            205169               299
5083           1017724                NA            503252               211
5084          13111917                NA           6515114                NA
5085                NA                NA                NA                NA
5086            204374                NA            105162               131
5087            183297                NA             91287               232
5088           2570862                NA           1280273               338
5089             83760                NA             42020               175
5090           4610050                NA           2315218               243
5091           7142603                NA           3563435               532
5092            844461                NA            407362               124
5093            421854                NA            208182               136
5094           2570862                NA           1280273               338
5095           4692242                NA           2342253               320
5096           1420825                NA            698689               221
5097           7142603                NA           3563435               532
5098           1428923                NA            708697               296
5099            330119                NA            161252               101
5100           1568940                NA            770847               201
5101           2668688                NA           1305000               381
5102           7673379                NA           3806912               442
5103            382218                NA            189292                38
5104            550596                NA            277195               287
5105             66376                NA             33782               113
5106          13111917                NA           6515114                NA
5107           4692242                NA           2342253               320
5108           6346083                NA           3128067               735
5109           4610050                NA           2315218               243
5110           2570862                NA           1280273               338
5111            844461                NA            407362               124
5112           1798025                NA            886709               642
5113           2394673                NA           1181313               252
5114            289726                NA            140509               212
5115            488436                NA            240478               204
5116           7142603                NA           3563435               532
5117                NA                NA                NA                NA
5118            152640                NA             75942               126
5119           9566955                NA           4718471               425
5120            330119                NA            161252               101
5121           4692242                NA           2342253               320
5122           3289701                NA           1667851                NA
5123                NA                NA                NA                NA
5124            181852                NA             89879               141
5125           9566955                NA           4718471               425
5126           2190750                NA           1084347               492
5127            181055                NA             90237               148
5128           3678328                NA           1837913               458
5129           1042393                NA            516095               117
5130            328011                NA            164852               168
5131           6346083                NA           3128067               735
5132            772902                NA            380685                73
5133             79008                NA             40763               308
5134          13111917                NA           6515114                NA
5135                NA                NA                NA                NA
5136          19908595                NA           9713298               650
5137           6123949                NA           3001027               195
5138           3678328                NA           1837913               458
5139           9566955                NA           4718471               425
5140                NA                NA                NA                NA
5141             64570                NA             32031               282
5142          19908595                NA           9713298               650
5143           7142603                NA           3563435               532
5144           9566955                NA           4718471               425
5145           1613587                NA            790463               387
5146           2679298                NA           1318555               326
5147           7673379                NA           3806912               442
5148           7142603                NA           3563435               532
5149           7142603                NA           3563435               532
5150           4864209                NA           2434382               157
5151           2813523                NA           1375126               423
5152            221648                NA            106730               331
5153           3678328                NA           1837913               458
5154            323992                NA            159346               109
5155             24944                NA             13144               156
5156            152640                NA             75942               126
5157            304252                NA            154587               312
5158            399335                NA            205955               208
5159           2840005                NA           1374325               218
5160             47759                NA             23950               207
5161            399335                NA            205955               208
5162           1087068                NA            546278               323
5163             20543                NA             10091               308
5164            341067                NA            165567               165
5165            419715                NA            207197               118
5166           4692242                NA           2342253               320
5167           7142603                NA           3563435               532
5168            119685                NA             62534               190
5169            966688                NA            483251               270
5170            382218                NA            189292                38
5171            384740                NA            183928               283
5172           2679298                NA           1318555               326
5173           1568940                NA            770847               201
5174            226523                NA            112654               110
5175           1087068                NA            546278               323
5176            421854                NA            208182               136
5177            803398                NA            394257               163
5178            831913                NA            404751               336
5179           1316145                NA            640643               629
5180            496299                NA            240510               173
5181            330119                NA            161252               101
5182             39502                NA             21669                55
5183           2505312                NA           1250855               406
5184           2365501                NA           1162773               204
5185            419715                NA            207197               118
5186          13111917                NA           6515114                NA
5187            185147                NA             92047               125
5188           2137223                NA           1061042               342
5189           2505312                NA           1250855               406
5190           6094752                NA           2965233               880
5191            445213                NA            223753               185
5192           7142603                NA           3563435               532
5193             58547                NA             27946                92
5194           4375604                NA           2148947               188
5195           2365501                NA           1162773               204
5196           6232894                NA           3033772               332
5197            711490                NA            355020               278
5198            678995                NA            341280               162
5199            775169                NA            372915               218
5200            564466                NA            276108               458
5201           1264357                NA            612537               452
5202            257927                NA            126314               210
5203           2073546                NA            975289               435
5204            281712                NA            142477               194
5205            399335                NA            205955               208
5206            281712                NA            142477               194
5207            469484                NA            227358               262
5208             35159                NA             18160               188
5209          19908595                NA           9713298               650
5210            225911                NA            111978               102
5211             55650                NA             29968               225
5212            139042                NA             68498               143
5213           2505312                NA           1250855               406
5214          19908595                NA           9713298               650
5215            593318                NA            293750               186
5216            496299                NA            240510               173
5217             30511                NA             15556               130
5218           4610050                NA           2315218               243
5219            181055                NA             90237               148
5220          13111917                NA           6515114                NA
5221           1428923                NA            708697               296
5222           2813523                NA           1375126               423
5223            122265                NA             62244               220
5224           2505312                NA           1250855               406
5225            477056                NA            234726               332
5226          13111917                NA           6515114                NA
5227           1264357                NA            612537               452
5228            382983                NA            189968               213
5229            646794                NA            322648               249
5230            308386                NA            152054               280
5231           1215703               422            594920               926
5232            139042                NA             68498               143
5233           4375604                NA           2148947               188
5234            202163                NA            100828                55
5235           1114368                NA            538428               383
5236            771602                NA            388362               230
5237            359005                NA            177218               392
5238            863166                NA            427343               249
5239            844461                NA            407362               124
5240            421982                NA            206161               308
5241            399335                NA            205955               208
5242          19908595                NA           9713298               650
5243           3289701                NA           1667851                NA
5244           9566955                NA           4718471               425
5245            204374                NA            105162               131
5246           4912449                NA           2407307               403
5247            901729                NA            444836               160
5248           2073546                NA            975289               435
5249            479865                NA            235485               329
5250            771602                NA            388362               230
5251           4692242                NA           2342253               320
5252            133263                NA             66411                90
5253            437609                NA            223186               110
5254           2079759                NA           1012336               195
5255            171284                NA             83922                37
5256            221648                NA            106730               331
5257             64701                NA             32652               134
5258           2668688                NA           1305000               381
5259            122229               225             61221               230
5260           2679298                NA           1318555               326
5261             56758                NA             28464               138
5262                NA                NA                NA                NA
5263            164765                21             82304               124
5264                NA                NA                NA                NA
5265            749290                NA            363653               316
5266            148523                NA             76658               121
5267           7673379                NA           3806912               442
5268           2296377                NA           1160944               432
5269            700578                NA            343022               159
5270            488436                NA            240478               204
5271            322285                NA            159719                88
5272           2296377                NA           1160944               432
5273            496299                NA            240510               173
5274           6232894                NA           3033772               332
5275            711490                NA            355020               278
5276           7142603                NA           3563435               532
5277           2365501                NA           1162773               204
5278             56758                NA             28464               138
5279             35159                NA             18160               188
5280          13111917                NA           6515114                NA
5281          19908595                NA           9713298               650
5282          19908595                NA           9713298               650
5283             13910                NA              7232                51
5284            915968                NA            453044               376
5285            328011                NA            164852               168
5286           4864209                NA           2434382               157
5287             25381               138             13207               222
5288            323992                NA            159346               109
5289            181055                NA             90237               148
5290             55650                NA             29968               225
5291            567287                NA            281431               119
5292            206072                NA             99873               335
5293                NA                NA                NA                NA
5294                NA                NA                NA                NA
5295             25381               138             13207               222
5296           2813523                NA           1375126               423
5297             36670                NA             19879               216
5298            314708                NA            152116               417
5299            510290                NA            256202               214
5300           7673379                NA           3806912               442
5301           9566955                NA           4718471               425
5302           7142603                NA           3563435               532
5303           4692242                NA           2342253               320
5304           4375604                NA           2148947               188
5305            399335                NA            205955               208
5306           4375604                NA           2148947               188
5307           7673379                NA           3806912               442
5308           6123949                NA           3001027               195
5309           2296377                NA           1160944               432
5310           6232894                NA           3033772               332
5311           2668688                NA           1305000               381
5312           4864209                NA           2434382               157
5313           4864209                NA           2434382               157
5314           4864209                NA           2434382               157
5315             32108                NA             16461               170
5316           2505312                NA           1250855               406
5317           4001701                NA           2024424                73
5318           3289701                NA           1667851                NA
5319           3678328                NA           1837913               458
5320          19908595                NA           9713298               650
5321           4375604                NA           2148947               188
5322           1254675                NA            635422               145
5323           6346083                NA           3128067               735
5324           2668688                NA           1305000               381
5325           3678328                NA           1837913               458
5326           9566955                NA           4718471               425
5327           2505312                NA           1250855               406
5328          19908595                NA           9713298               650
5329           6346083                NA           3128067               735
5330           2959386                NA           1493164               389
5331           4692242                NA           2342253               320
5332           2959386                NA           1493164               389
5333           2959386                NA           1493164               389
5334           6346083                NA           3128067               735
5335           4692242                NA           2342253               320
5336           7673379                NA           3806912               442
5337           2959386                NA           1493164               389
5338           7142603                NA           3563435               532
5339           4864209                NA           2434382               157
5340           9566955                NA           4718471               425
5341           2840005                NA           1374325               218
5342           7673379                NA           3806912               442
5343           1264357                NA            612537               452
5344           7673379                NA           3806912               442
5345           7673379                NA           3806912               442
5346           2813523                NA           1375126               423
5347           2813523                NA           1375126               423
5348           7142603                NA           3563435               532
5349           2679298                NA           1318555               326
5350           1990873                NA            978574               496
5351           2840005                NA           1374325               218
5352           2813523                NA           1375126               423
5353           2190750                NA           1084347               492
5354           9566955                NA           4718471               425
5355           2840005                NA           1374325               218
5356           2813523                NA           1375126               423
5357           7142603                NA           3563435               532
5358           9566955                NA           4718471               425
5359           2570862                NA           1280273               338
5360           1990873                NA            978574               496
5361           2265926                NA           1137581                NA
5362           6094752                NA           2965233               880
5363           2813523                NA           1375126               423
5364           2679298                NA           1318555               326
5365            915968                NA            453044               376
5366           1264357                NA            612537               452
5367           7142603                NA           3563435               532
5368           2296377                NA           1160944               432
5369           7673379                NA           3806912               442
5370           6094752                NA           2965233               880
5371           2840005                NA           1374325               218
5372           2840005                NA           1374325               218
5373           2190750                NA           1084347               492
5374           7673379                NA           3806912               442
5375          13111917                NA           6515114                NA
5376           2813523                NA           1375126               423
5377           1981584                NA           1011796               354
5378           2265926                NA           1137581                NA
5379           4692242                NA           2342253               320
5380           1981584                NA           1011796               354
5381           2394673                NA           1181313               252
5382           2394673                NA           1181313               252
5383           7673379                NA           3806912               442
5384           4610050                NA           2315218               243
5385          13111917                NA           6515114                NA
5386           3194310                NA           1562880               249
5387           1990873                NA            978574               496
5388           2296377                NA           1160944               432
5389          13111917                NA           6515114                NA
5390          13111917                NA           6515114                NA
5391          13111917                NA           6515114                NA
5392           2109957                NA           1038760               572
5393           2296377                NA           1160944               432
5394           2265926                NA           1137581                NA
5395           6346083                NA           3128067               735
5396           2679298                NA           1318555               326
5397           7142603                NA           3563435               532
5398           2265926                NA           1137581                NA
5399           2959386                NA           1493164               389
5400          19908595                NA           9713298               650
5401           9566955                NA           4718471               425
5402           2296377                NA           1160944               432
5403          19908595                NA           9713298               650
5404           3194310                NA           1562880               249
5405           2296377                NA           1160944               432
5406           4692242                NA           2342253               320
5407           2190750                NA           1084347               492
5408           7673379                NA           3806912               442
5409          19908595                NA           9713298               650
5410          19908595                NA           9713298               650
5411           1254675                NA            635422               145
5412           1264357                NA            612537               452
5413            496299                NA            240510               173
5414           4692242                NA           2342253               320
5415           4912449                NA           2407307               403
5416           9566955                NA           4718471               425
5417           2679298                NA           1318555               326
5418           4912449                NA           2407307               403
5419           2296377                NA           1160944               432
5420          13111917                NA           6515114                NA
5421           2190750                NA           1084347               492
5422            384740                NA            183928               283
5423           2959386                NA           1493164               389
5424           3289701                NA           1667851                NA
5425           9566955                NA           4718471               425
5426           7142603                NA           3563435               532
5427            538985                NA            265985               207
5428           4692242                NA           2342253               320
5429           2813523                NA           1375126               423
5430             32108                NA             16461               170
5431           6123949                NA           3001027               195
5432            166222                NA             84066               154
5433            469484                NA            227358               262
5434            812506                NA            397560               201
5435            154481                NA             75375                58
5436            139042                NA             68498               143
5437            477577                NA            239362               248
5438            181807                NA             90224               217
5439           4001701                NA           2024424                73
5440           6346083                NA           3128067               735
5441                NA                NA                NA                NA
5442           6232894                NA           3033772               332
5443          13111917                NA           6515114                NA
5444            341067                NA            165567               165
5445           2959386                NA           1493164               389
5446             59928                NA             30012               172
5447            185147                NA             92047               125
5448           2679298                NA           1318555               326
5449           9566955                NA           4718471               425
5450           9566955                NA           4718471               425
5451             55983                NA             28379                61
5452            148203                NA             71801               403
5453            122678                NA             61536               236
5454            175947                NA             88360                81
5455             37525                NA             19594               176
5456             30511                NA             15556               130
5457            399335                NA            205955               208
5458             34598                NA             17590               141
5459            171196                NA             80857               190
5460            326159                NA            160906               371
5461            189821                NA             92665               101
5462            223223                NA            111472               223
5463            203686                NA            113368               208
5464            510290                NA            256202               214
5465            246709                NA            122218               196
5466            189821                NA             92665               101
5467            593318                NA            293750               186
5468            256143                NA            128661               105
5469            203686                NA            113368               208
5470            522537                NA            259930               196
5471                NA                NA                NA                NA
5472            261426                NA            128595                91
5473            208406                NA            100899               142
5474             64570                NA             32031               282
5475            136132                NA             67729               200
5476            158665                NA             83943               173
5477             49455                NA             24461               104
5478            216217                NA            106627               251
5479                NA                NA                NA                NA
5480             21942                NA             11564               166
5481                NA                NA                NA                NA
5482                NA                NA                NA                NA
5483            200040                NA             94821               166
5484            117445                NA             62226               152
5485             46274                NA             23299               143
5486             42292                NA             21066               257
5487            261426                NA            128595                91
5488            477577                NA            239362               248
5489             60985                NA             31578               240
5490             98301                NA             48462               179
5491             95352                NA             48019               204
5492             35951                NA             18211               149
5493            291491                NA            148126               172
5494             28921                NA             14463               132
5495            262124                NA            126417               337
5496             28911                NA             14366               101
5497             39402                NA             19959                76
5498             97274                NA             47217               187
5499            136132                NA             67729               200
5500             42079                NA             21793                94
5501            245475                NA            121109               337
5502            304252                NA            154587               312
5503            281712                NA            142477               194
5504             92044                NA             48073               146
5505            269418                NA            135977               189
5506            226523                NA            112654               110
5507            149113                NA             74782               229
5508            176656                NA             89507               216
5509             98812                NA             49036               180
5510            644547                NA            316451               198
5511            151721                NA             75403               227
5512                NA                NA                NA                NA
5513             90311                NA             45306               194
5514            225911                NA            111978               102
5515            237830                NA            117352               106
5516                NA                NA                NA                NA
5517             36839                NA             18645                89
5518            234667                NA            113874                95
5519            115066                NA             57649               153
5520             79839                NA             41064               159
5521             31176                NA             15564               151
5522            147716                NA             70170               349
5523             73511                NA             36809               115
5524             36839                NA             18645                89
5525            287359                NA            143576               285
5526            493980                NA            244298               233
5527            183297                NA             91287               232
5528            171284                NA             83922                37
5529                NA                NA                NA                NA
5530            206072                NA             99873               335
5531             20791                NA             10570               158
5532                NA                NA                NA                NA
5533                NA                NA                NA                NA
5534                NA                NA                NA                NA
5535           1990873                NA            978574               496
5536           6123949                NA           3001027               195
5537           3678328                NA           1837913               458
5538           1017724                NA            503252               211
5539           2570862                NA           1280273               338
5540            772902                NA            380685                73
5541           1613587                NA            790463               387
5542           2959386                NA           1493164               389
5543           4692242                NA           2342253               320
5544           6346083                NA           3128067               735
5545           2813523                NA           1375126               423
5546           1042393                NA            516095               117
5547           3289701                NA           1667851                NA
5548           2296377                NA           1160944               432
5549           1981584                NA           1011796               354
5550           1264357                NA            612537               452
5551           4610050                NA           2315218               243
5552           1990873                NA            978574               496
5553           4610050                NA           2315218               243
5554          13111917                NA           6515114                NA
5555          13111917                NA           6515114                NA
5556           2394673                NA           1181313               252
5557           3194310                NA           1562880               249
5558           9566955                NA           4718471               425
5559           6094752                NA           2965233               880
5560           7673379                NA           3806912               442
5561            422733                NA            212276                44
5562           9566955                NA           4718471               425
5563           9566955                NA           4718471               425
5564           1990873                NA            978574               496
5565           3289701                NA           1667851                NA
5566           2840005                NA           1374325               218
5567           1990873                NA            978574               496
5568           2840005                NA           1374325               218
5569           3194310                NA           1562880               249
5570           6123949                NA           3001027               195
5571            755081                NA            384572               211
5572           2296377                NA           1160944               432
5573           1264357                NA            612537               452
5574           2570862                NA           1280273               338
5575           4610050                NA           2315218               243
5576           2296377                NA           1160944               432
5577           2959386                NA           1493164               389
5578          13111917                NA           6515114                NA
5579           2394673                NA           1181313               252
5580           6123949                NA           3001027               195
5581           3194310                NA           1562880               249
5582           1264357                NA            612537               452
5583          13111917                NA           6515114                NA
5584           2394673                NA           1181313               252
5585           1264357                NA            612537               452
5586           4864209                NA           2434382               157
5587           7673379                NA           3806912               442
5588           1420825                NA            698689               221
5589           2570862                NA           1280273               338
5590          13111917                NA           6515114                NA
5591          13111917                NA           6515114                NA
5592          13111917                NA           6515114                NA
5593           6123949                NA           3001027               195
5594           3289701                NA           1667851                NA
5595           4692242                NA           2342253               320
5596           1990873                NA            978574               496
5597           1264357                NA            612537               452
5598          13111917                NA           6515114                NA
5599          13111917                NA           6515114                NA
5600           1990873                NA            978574               496
5601           2190750                NA           1084347               492
5602          13111917                NA           6515114                NA
5603           4610050                NA           2315218               243
5604           2137223                NA           1061042               342
5605            496299                NA            240510               173
5606           6123949                NA           3001027               195
5607           9566955                NA           4718471               425
5608           7142603                NA           3563435               532
5609           4864209                NA           2434382               157
5610           1990873                NA            978574               496
5611          13111917                NA           6515114                NA
5612           2813523                NA           1375126               423
5613           7142603                NA           3563435               532
5614          13111917                NA           6515114                NA
5615            772902                NA            380685                73
5616          13111917                NA           6515114                NA
5617           2190750                NA           1084347               492
5618           2109957                NA           1038760               572
5619           2570862                NA           1280273               338
5620           1613587                NA            790463               387
5621           2394673                NA           1181313               252
5622           2679298                NA           1318555               326
5623           1990873                NA            978574               496
5624          19908595                NA           9713298               650
5625           6232894                NA           3033772               332
5626           1428923                NA            708697               296
5627          19908595                NA           9713298               650
5628           2505312                NA           1250855               406
5629           2959386                NA           1493164               389
5630           2190750                NA           1084347               492
5631           2265926                NA           1137581                NA
5632           2813523                NA           1375126               423
5633           7673379                NA           3806912               442
5634           4001701                NA           2024424                73
5635           1981584                NA           1011796               354
5636          19908595                NA           9713298               650
5637           2137223                NA           1061042               342
5638           2190750                NA           1084347               492
5639           6123949                NA           3001027               195
5640           3289701                NA           1667851                NA
5641           1420825                NA            698689               221
5642           4864209                NA           2434382               157
5643           1008280                NA            506526                56
5644           7673379                NA           3806912               442
5645           2840005                NA           1374325               218
5646           7673379                NA           3806912               442
5647            772902                NA            380685                73
5648           1990873                NA            978574               496
5649           2668688                NA           1305000               381
5650           6346083                NA           3128067               735
5651           2570862                NA           1280273               338
5652           2137223                NA           1061042               342
5653           4692242                NA           2342253               320
5654           2813523                NA           1375126               423
5655           6123949                NA           3001027               195
5656          13111917                NA           6515114                NA
5657           6123949                NA           3001027               195
5658           2073546                NA            975289               435
5659            257927                NA            126314               210
5660            658694                NA            322943               249
5661           4610050                NA           2315218               243
5662                NA                NA                NA                NA
5663                NA                NA                NA                NA
5664                NA                NA                NA                NA
5665             58068                NA             29210               308
5666            152640                NA             75942               126
5667                NA                NA                NA                NA
5668                NA                NA                NA                NA
5669             34598                NA             17590               141
5670                NA                NA                NA                NA
5671            496299                NA            240510               173
5672            382218                NA            189292                38
5673            151721                NA             75403               227
5674            108670                NA             55702               147
5675            125355                NA             62257               279
5676            168404                NA             83312               139
5677             55222               265             28888               254
5678            174621                NA             89435               316
5679            700578                NA            343022               159
5680            421854                NA            208182               136
5681            149113                NA             74782               229
5682             53726                NA             29982               336
5683           1798025                NA            886709               642
5684            181807                NA             90224               217
5685           4610050                NA           2315218               243
5686            168135                NA             83410                93
5687            127314                NA             65959               122
5688            181807                NA             90224               217
5689           2253528                NA           1113732               640
5690            221648                NA            106730               331
5691            496299                NA            240510               173
5692            133467               110             67534               408
5693            401702                NA            198867               193
5694             47693                NA             24643               101
5695                NA                NA                NA                NA
5696             59928                NA             30012               172
5697             34212                NA             17709               192
5698            171951                NA             87139               155
5699            100316                NA             51152               225
5700            419715                NA            207197               118
5701            867161                NA            431851               177
5702             36670                NA             19879               216
5703            125355                NA             62257               279
5704            490769                NA            249622               187
5705            158665                NA             83943               173
5706            291491                NA            148126               172
5707            771602                NA            388362               230
5708             79506                NA             40147               166
5709            202163                NA            100828                55
5710            133609                NA             67870               249
5711             37880               187             18420               190
5712             73511                NA             36809               115
5713            133609                NA             67870               249
5714             75570                NA             37349               143
5715            237830                NA            117352               106
5716                NA                NA                NA                NA
5717             29365                NA             14123               132
5718             98430                NA             48073               167
5719            515954                NA            253400               455
5720             36986                NA             19367               130
5721            278103                NA            136234               143
5722            330119                NA            161252               101
5723           4610050                NA           2315218               243
5724           1264357                NA            612537               452
5725            422733                NA            212276                44
5726            585485                NA            292820               126
5727            119685                NA             62534               190
5728            966688                NA            483251               270
5729           4692242                NA           2342253               320
5730             24944                NA             13144               156
5731          13111917                NA           6515114                NA
5732           2073546                NA            975289               435
5733           2570862                NA           1280273               338
5734           3194310                NA           1562880               249
5735           3194310                NA           1562880               249
5736            772902                NA            380685                73
5737           2394673                NA           1181313               252
5738           2190750                NA           1084347               492
5739            676035                NA            330879               298
5740            153733                NA             76642               194
5741            339707                NA            171627               120
5742            844461                NA            407362               124
5743           1613587                NA            790463               387
5744           6123949                NA           3001027               195
5745           6346083                NA           3128067               735
5746            867161                NA            431851               177
5747          13111917                NA           6515114                NA
5748            749290                NA            363653               316
5749            844461                NA            407362               124
5750           2296377                NA           1160944               432
5751            585485                NA            292820               126
5752           3194310                NA           1562880               249
5753            915968                NA            453044               376
5754           1008280                NA            506526                56
5755           1042393                NA            516095               117
5756          19908595                NA           9713298               650
5757            867161                NA            431851               177
5758           1017724                NA            503252               211
5759            772902                NA            380685                73
5760            867161                NA            431851               177
5761           1264357                NA            612537               452
5762           1264357                NA            612537               452
5763            510290                NA            256202               214
5764           2570862                NA           1280273               338
5765            646794                NA            322648               249
5766            867161                NA            431851               177
5767            915968                NA            453044               376
5768            844461                NA            407362               124
5769           2296377                NA           1160944               432
5770           2073546                NA            975289               435
5771           2073546                NA            975289               435
5772           1316145                NA            640643               629
5773           1042393                NA            516095               117
5774           1042393                NA            516095               117
5775            915968                NA            453044               376
5776           4692242                NA           2342253               320
5777           2190750                NA           1084347               492
5778          13111917                NA           6515114                NA
5779           2073546                NA            975289               435
5780            867161                NA            431851               177
5781            966688                NA            483251               270
5782            490769                NA            249622               187
5783             24944                NA             13144               156
5784           1670949                NA            818990               468
5785            646794                NA            322648               249
5786           1428923                NA            708697               296
5787           4610050                NA           2315218               243
5788           2959386                NA           1493164               389
5789            445213                NA            223753               185
5790            901729                NA            444836               160
5791            772902                NA            380685                73
5792            119685                NA             62534               190
5793             25381               138             13207               222
5794            803398                NA            394257               163
5795          13111917                NA           6515114                NA
5796            771602                NA            388362               230
5797           4001701                NA           2024424                73
5798           2505312                NA           1250855               406
5799          13111917                NA           6515114                NA
5800             90311                NA             45306               194
5801           2265926                NA           1137581                NA
5802             24944                NA             13144               156
5803           1264357                NA            612537               452
5804           6346083                NA           3128067               735
5805           2137223                NA           1061042               342
5806           2570862                NA           1280273               338
5807            490769                NA            249622               187
5808           7142603                NA           3563435               532
5809           2840005                NA           1374325               218
5810            323992                NA            159346               109
5811           4692242                NA           2342253               320
5812           1114368                NA            538428               383
5813            119685                NA             62534               190
5814            915968                NA            453044               376
5815          13111917                NA           6515114                NA
5816            772902                NA            380685                73
5817            382218                NA            189292                38
5818           1670949                NA            818990               468
5819            330119                NA            161252               101
5820            711490                NA            355020               278
5821           1114368                NA            538428               383
5822            550596                NA            277195               287
5823            966688                NA            483251               270
5824            755081                NA            384572               211
5825           6123949                NA           3001027               195
5826           2073546                NA            975289               435
5827           2109957                NA           1038760               572
5828           1670949                NA            818990               468
5829            755081                NA            384572               211
5830           2570862                NA           1280273               338
5831           1042393                NA            516095               117
5832            269278               239            135933               280
5833           6123949                NA           3001027               195
5834             24944                NA             13144               156
5835          13111917                NA           6515114                NA
5836           3194310                NA           1562880               249
5837            322285                NA            159719                88
5838           1163462                NA            568061               155
5839           2137223                NA           1061042               342
5840            867161                NA            431851               177
5841           2073546                NA            975289               435
5842           2079759                NA           1012336               195
5843           4692242                NA           2342253               320
5844           1981584                NA           1011796               354
5845           3289701                NA           1667851                NA
5846           2394673                NA           1181313               252
5847            181055                NA             90237               148
5848           1316145                NA            640643               629
5849           3289701                NA           1667851                NA
5850            966688                NA            483251               270
5851            330119                NA            161252               101
5852           6123949                NA           3001027               195
5853           1335804                NA            641128               280
5854           4912449                NA           2407307               403
5855           1215703               422            594920               926
5856           7142603                NA           3563435               532
5857           1017724                NA            503252               211
5858            322285                NA            159719                88
5859            901729                NA            444836               160
5860            658694                NA            322943               249
5861           1254675                NA            635422               145
5862            966688                NA            483251               270
5863           1163462                NA            568061               155
5864           1428923                NA            708697               296
5865            421854                NA            208182               136
5866           4692242                NA           2342253               320
5867           1981584                NA           1011796               354
5868           2394673                NA           1181313               252
5869            445213                NA            223753               185
5870            901729                NA            444836               160
5871           4692242                NA           2342253               320
5872           3678328                NA           1837913               458
5873           1264357                NA            612537               452
5874          19908595                NA           9713298               650
5875           1798025                NA            886709               642
5876           2137223                NA           1061042               342
5877           1017724                NA            503252               211
5878           2190750                NA           1084347               492
5879           2265926                NA           1137581                NA
5880           3289701                NA           1667851                NA
5881          13111917                NA           6515114                NA
5882           4912449                NA           2407307               403
5883           2813523                NA           1375126               423
5884            269278               239            135933               280
5885           2570862                NA           1280273               338
5886          19908595                NA           9713298               650
5887           6123949                NA           3001027               195
5888           2137223                NA           1061042               342
5889            844461                NA            407362               124
5890           3289701                NA           1667851                NA
5891            490769                NA            249622               187
5892            585485                NA            292820               126
5893           4610050                NA           2315218               243
5894           6346083                NA           3128067               735
5895           4692242                NA           2342253               320
5896            490769                NA            249622               187
5897          13111917                NA           6515114                NA
5898           4610050                NA           2315218               243
5899            552916                NA            270938               223
5900            771602                NA            388362               230
5901           4692242                NA           2342253               320
5902           4692242                NA           2342253               320
5903           1264357                NA            612537               452
5904           1981584                NA           1011796               354
5905            181055                NA             90237               148
5906            322285                NA            159719                88
5907           1264357                NA            612537               452
5908           1428923                NA            708697               296
5909           2073546                NA            975289               435
5910           2840005                NA           1374325               218
5911            755081                NA            384572               211
5912          13111917                NA           6515114                NA
5913           3289701                NA           1667851                NA
5914           6123949                NA           3001027               195
5915           3194310                NA           1562880               249
5916           1017724                NA            503252               211
5917           2190750                NA           1084347               492
5918            772902                NA            380685                73
5919            510290                NA            256202               214
5920           1087068                NA            546278               323
5921            585485                NA            292820               126
5922          13111917                NA           6515114                NA
5923          13111917                NA           6515114                NA
5924           2570862                NA           1280273               338
5925            844461                NA            407362               124
5926           1254675                NA            635422               145
5927           2679298                NA           1318555               326
5928            966688                NA            483251               270
5929          13111917                NA           6515114                NA
5930           2394673                NA           1181313               252
5931            966688                NA            483251               270
5932           2137223                NA           1061042               342
5933           1428923                NA            708697               296
5934           6123949                NA           3001027               195
5935           1613587                NA            790463               387
5936           2570862                NA           1280273               338
5937           1613587                NA            790463               387
5938            322285                NA            159719                88
5939           1990873                NA            978574               496
5940            277944                NA            140783               421
5941           1990873                NA            978574               496
5942           2570862                NA           1280273               338
5943           1981584                NA           1011796               354
5944            490769                NA            249622               187
5945          13111917                NA           6515114                NA
5946            915968                NA            453044               376
5947           1215703               422            594920               926
5948           1017724                NA            503252               211
5949            771602                NA            388362               230
5950           1042393                NA            516095               117
5951           1420825                NA            698689               221
5952            406575                NA            197548               414
5953           1017724                NA            503252               211
5954           6123949                NA           3001027               195
5955           1981584                NA           1011796               354
5956           2570862                NA           1280273               338
5957           1981584                NA           1011796               354
5958           1042393                NA            516095               117
5959           1568940                NA            770847               201
5960           3289701                NA           1667851                NA
5961            755081                NA            384572               211
5962           4912449                NA           2407307               403
5963           1798025                NA            886709               642
5964            421854                NA            208182               136
5965           4610050                NA           2315218               243
5966            771602                NA            388362               230
5967            510290                NA            256202               214
5968          13111917                NA           6515114                NA
5969          13111917                NA           6515114                NA
5970           1428923                NA            708697               296
5971           4912449                NA           2407307               403
5972            496299                NA            240510               173
5973           2137223                NA           1061042               342
5974           4610050                NA           2315218               243
5975           1282588                NA            630858               398
5976           1017724                NA            503252               211
5977           1215703               422            594920               926
5978            844461                NA            407362               124
5979           1264357                NA            612537               452
5980           1316145                NA            640643               629
5981           2570862                NA           1280273               338
5982           1008280                NA            506526                56
5983           2079759                NA           1012336               195
5984           1114368                NA            538428               383
5985           2394673                NA           1181313               252
5986          19908595                NA           9713298               650
5987           1798025                NA            886709               642
5988           4375604                NA           2148947               188
5989          19908595                NA           9713298               650
5990           1215703               422            594920               926
5991           1428923                NA            708697               296
5992           2679298                NA           1318555               326
5993           4692242                NA           2342253               320
5994            339707                NA            171627               120
5995           2813523                NA           1375126               423
5996            181055                NA             90237               148
5997            915968                NA            453044               376
5998           4610050                NA           2315218               243
5999          13111917                NA           6515114                NA
6000             55650                NA             29968               225
6001           1981584                NA           1011796               354
6002           2265926                NA           1137581                NA
6003            119685                NA             62534               190
6004          19908595                NA           9713298               650
6005           4692242                NA           2342253               320
6006            496299                NA            240510               173
6007           2190750                NA           1084347               492
6008           6123949                NA           3001027               195
6009           1114368                NA            538428               383
6010           1670949                NA            818990               468
6011           1282588                NA            630858               398
6012            322285                NA            159719                88
6013            966688                NA            483251               270
6014           2190750                NA           1084347               492
6015            585485                NA            292820               126
6016            749290                NA            363653               316
6017           1087068                NA            546278               323
6018           3289701                NA           1667851                NA
6019            421854                NA            208182               136
6020           6123949                NA           3001027               195
6021           4692242                NA           2342253               320
6022           1568940                NA            770847               201
6023            915968                NA            453044               376
6024           2137223                NA           1061042               342
6025           1215703               422            594920               926
6026            755081                NA            384572               211
6027           1981584                NA           1011796               354
6028            288639                NA            146836               223
6029           7142603                NA           3563435               532
6030          13111917                NA           6515114                NA
6031            867161                NA            431851               177
6032          19908595                NA           9713298               650
6033           1254675                NA            635422               145
6034           2813523                NA           1375126               423
6035           2137223                NA           1061042               342
6036           2079759                NA           1012336               195
6037           1420825                NA            698689               221
6038           3289701                NA           1667851                NA
6039           1613587                NA            790463               387
6040           1086859                NA            532509               342
6041            585485                NA            292820               126
6042            490769                NA            249622               187
6043           6123949                NA           3001027               195
6044           2813523                NA           1375126               423
6045           1163462                NA            568061               155
6046           2265926                NA           1137581                NA
6047           1264357                NA            612537               452
6048           4375604                NA           2148947               188
6049           2840005                NA           1374325               218
6050           1613587                NA            790463               387
6051            382218                NA            189292                38
6052           1008280                NA            506526                56
6053           2296377                NA           1160944               432
6054            771602                NA            388362               230
6055            269278               239            135933               280
6056           6123949                NA           3001027               195
6057            490769                NA            249622               187
6058             55983                NA             28379                61
6059            915968                NA            453044               376
6060            288639                NA            146836               223
6061            803398                NA            394257               163
6062           2570862                NA           1280273               338
6063            844461                NA            407362               124
6064          13111917                NA           6515114                NA
6065            445213                NA            223753               185
6066           1017724                NA            503252               211
6067            844461                NA            407362               124
6068          13111917                NA           6515114                NA
6069            496299                NA            240510               173
6070            119685                NA             62534               190
6071           1087068                NA            546278               323
6072           2679298                NA           1318555               326
6073           2296377                NA           1160944               432
6074           1042393                NA            516095               117
6075           1613587                NA            790463               387
6076            119685                NA             62534               190
6077            915968                NA            453044               376
6078           1428923                NA            708697               296
6079            406575                NA            197548               414
6080            749290                NA            363653               316
6081           1428923                NA            708697               296
6082           1420825                NA            698689               221
6083           1008280                NA            506526                56
6084           1264357                NA            612537               452
6085           1087068                NA            546278               323
6086           2073546                NA            975289               435
6087           1264357                NA            612537               452
6088           7142603                NA           3563435               532
6089           1086859                NA            532509               342
6090            510290                NA            256202               214
6091            119685                NA             62534               190
6092           6346083                NA           3128067               735
6093            803398                NA            394257               163
6094           1990873                NA            978574               496
6095           2394673                NA           1181313               252
6096             24944                NA             13144               156
6097           3194310                NA           1562880               249
6098           2073546                NA            975289               435
6099          13111917                NA           6515114                NA
6100           6123949                NA           3001027               195
6101           1420825                NA            698689               221
6102           4375604                NA           2148947               188
6103            406575                NA            197548               414
6104           4610050                NA           2315218               243
6105            585485                NA            292820               126
6106           6123949                NA           3001027               195
6107           2109957                NA           1038760               572
6108           9566955                NA           4718471               425
6109            585485                NA            292820               126
6110           1798025                NA            886709               642
6111          13111917                NA           6515114                NA
6112            288639                NA            146836               223
6113           7673379                NA           3806912               442
6114           1335804                NA            641128               280
6115           2668688                NA           1305000               381
6116            585485                NA            292820               126
6117          13111917                NA           6515114                NA
6118           6094752                NA           2965233               880
6119            490769                NA            249622               187
6120            585485                NA            292820               126
6121            867161                NA            431851               177
6122            915968                NA            453044               376
6123            406575                NA            197548               414
6124            174621                NA             89435               316
6125          13111917                NA           6515114                NA
6126            901729                NA            444836               160
6127            490769                NA            249622               187
6128            901729                NA            444836               160
6129            755081                NA            384572               211
6130          19908595                NA           9713298               650
6131            755081                NA            384572               211
6132           1568940                NA            770847               201
6133            901729                NA            444836               160
6134           6123949                NA           3001027               195
6135           1254675                NA            635422               145
6136           2137223                NA           1061042               342
6137           2959386                NA           1493164               389
6138           1420825                NA            698689               221
6139            330119                NA            161252               101
6140            269278               239            135933               280
6141            966688                NA            483251               270
6142          13111917                NA           6515114                NA
6143            901729                NA            444836               160
6144            803398                NA            394257               163
6145          13111917                NA           6515114                NA
6146            181055                NA             90237               148
6147            646794                NA            322648               249
6148           6232894                NA           3033772               332
6149            966688                NA            483251               270
6150           9566955                NA           4718471               425
6151           2073546                NA            975289               435
6152           1428923                NA            708697               296
6153            966688                NA            483251               270
6154            901729                NA            444836               160
6155           1335804                NA            641128               280
6156           1428923                NA            708697               296
6157           1335804                NA            641128               280
6158           1613587                NA            790463               387
6159            755081                NA            384572               211
6160            490769                NA            249622               187
6161            771602                NA            388362               230
6162           3678328                NA           1837913               458
6163           4912449                NA           2407307               403
6164            490769                NA            249622               187
6165           3194310                NA           1562880               249
6166           6123949                NA           3001027               195
6167           1335804                NA            641128               280
6168          13111917                NA           6515114                NA
6169           1215703               422            594920               926
6170            646794                NA            322648               249
6171           1670949                NA            818990               468
6172           1282588                NA            630858               398
6173           6094752                NA           2965233               880
6174            915968                NA            453044               376
6175          13111917                NA           6515114                NA
6176           4692242                NA           2342253               320
6177          19908595                NA           9713298               650
6178           1042393                NA            516095               117
6179            915968                NA            453044               376
6180           2079759                NA           1012336               195
6181           4864209                NA           2434382               157
6182           3678328                NA           1837913               458
6183           2813523                NA           1375126               423
6184           1264357                NA            612537               452
6185           2505312                NA           1250855               406
6186           1990873                NA            978574               496
6187           1798025                NA            886709               642
6188           9566955                NA           4718471               425
6189           2190750                NA           1084347               492
6190            771602                NA            388362               230
6191           1017724                NA            503252               211
6192           2137223                NA           1061042               342
6193            181055                NA             90237               148
6194           6123949                NA           3001027               195
6195           2505312                NA           1250855               406
6196           1798025                NA            886709               642
6197           4610050                NA           2315218               243
6198             32108                NA             16461               170
6199            274339                NA            133897                52
6200          19908595                NA           9713298               650
6201           1042393                NA            516095               117
6202           6123949                NA           3001027               195
6203           4692242                NA           2342253               320
6204           4692242                NA           2342253               320
6205           2296377                NA           1160944               432
6206           2109957                NA           1038760               572
6207           6123949                NA           3001027               195
6208            490769                NA            249622               187
6209            771602                NA            388362               230
6210            867161                NA            431851               177
6211           4610050                NA           2315218               243
6212            382218                NA            189292                38
6213            382218                NA            189292                38
6214           1163462                NA            568061               155
6215           1017724                NA            503252               211
6216           2190750                NA           1084347               492
6217            406575                NA            197548               414
6218           1087068                NA            546278               323
6219           1981584                NA           1011796               354
6220          19908595                NA           9713298               650
6221           4001701                NA           2024424                73
6222                NA                NA                NA                NA
6223           1114368                NA            538428               383
6224           4001701                NA           2024424                73
6225           1335804                NA            641128               280
6226           1264357                NA            612537               452
6227            421854                NA            208182               136
6228            803398                NA            394257               163
6229           1990873                NA            978574               496
6230            867161                NA            431851               177
6231           2668688                NA           1305000               381
6232          13111917                NA           6515114                NA
6233            496299                NA            240510               173
6234            406575                NA            197548               414
6235            490769                NA            249622               187
6236           4610050                NA           2315218               243
6237            772902                NA            380685                73
6238           2265926                NA           1137581                NA
6239           2394673                NA           1181313               252
6240           1420825                NA            698689               221
6241           1420825                NA            698689               221
6242            772902                NA            380685                73
6243            867161                NA            431851               177
6244            496299                NA            240510               173
6245            382218                NA            189292                38
6246           1042393                NA            516095               117
6247          13111917                NA           6515114                NA
6248           2190750                NA           1084347               492
6249            174621                NA             89435               316
6250            772902                NA            380685                73
6251           4610050                NA           2315218               243
6252            288639                NA            146836               223
6253           1420825                NA            698689               221
6254             38055                NA             18523               202
6255            915968                NA            453044               376
6256           2365501                NA           1162773               204
6257           1254675                NA            635422               145
6258           1568940                NA            770847               201
6259            966688                NA            483251               270
6260            844461                NA            407362               124
6261           2570862                NA           1280273               338
6262            915968                NA            453044               376
6263           2079759                NA           1012336               195
6264           1798025                NA            886709               642
6265           2190750                NA           1084347               492
6266           2073546                NA            975289               435
6267           1163462                NA            568061               155
6268            226523                NA            112654               110
6269           1568940                NA            770847               201
6270            867161                NA            431851               177
6271           7142603                NA           3563435               532
6272           1568940                NA            770847               201
6273            700578                NA            343022               159
6274            119685                NA             62534               190
6275           2365501                NA           1162773               204
6276           4692242                NA           2342253               320
6277           1008280                NA            506526                56
6278            421854                NA            208182               136
6279            591397                NA            285117               421
6280            901729                NA            444836               160
6281           1428923                NA            708697               296
6282           1428923                NA            708697               296
6283           4610050                NA           2315218               243
6284            181055                NA             90237               148
6285           2570862                NA           1280273               338
6286            174621                NA             89435               316
6287           4692242                NA           2342253               320
6288            585485                NA            292820               126
6289            181055                NA             90237               148
6290           6346083                NA           3128067               735
6291            966688                NA            483251               270
6292           1670949                NA            818990               468
6293           2109957                NA           1038760               572
6294           2079759                NA           1012336               195
6295            510290                NA            256202               214
6296           2679298                NA           1318555               326
6297           1087068                NA            546278               323
6298          13111917                NA           6515114                NA
6299            749290                NA            363653               316
6300           4610050                NA           2315218               243
6301            445213                NA            223753               185
6302           1335804                NA            641128               280
6303           4375604                NA           2148947               188
6304            966688                NA            483251               270
6305            966688                NA            483251               270
6306            966688                NA            483251               270
6307            901729                NA            444836               160
6308           2365501                NA           1162773               204
6309           1087068                NA            546278               323
6310            844461                NA            407362               124
6311           3678328                NA           1837913               458
6312            421854                NA            208182               136
6313           1017724                NA            503252               211
6314          19908595                NA           9713298               650
6315           6346083                NA           3128067               735
6316            181055                NA             90237               148
6317           4375604                NA           2148947               188
6318            749290                NA            363653               316
6319            490769                NA            249622               187
6320            422733                NA            212276                44
6321            422733                NA            212276                44
6322            119685                NA             62534               190
6323           4692242                NA           2342253               320
6324           1282588                NA            630858               398
6325           2253528                NA           1113732               640
6326            174621                NA             89435               316
6327             47759                NA             23950               207
6328            711490                NA            355020               278
6329           1215703               422            594920               926
6330           6232894                NA           3033772               332
6331           2570862                NA           1280273               338
6332            591397                NA            285117               421
6333           2109957                NA           1038760               572
6334            591397                NA            285117               421
6335           1017724                NA            503252               211
6336           2296377                NA           1160944               432
6337           1568940                NA            770847               201
6338           9566955                NA           4718471               425
6339           1254675                NA            635422               145
6340           6346083                NA           3128067               735
6341           2137223                NA           1061042               342
6342           1428923                NA            708697               296
6343           1087068                NA            546278               323
6344           2253528                NA           1113732               640
6345            181055                NA             90237               148
6346           1990873                NA            978574               496
6347           2813523                NA           1375126               423
6348           2190750                NA           1084347               492
6349            119685                NA             62534               190
6350           1254675                NA            635422               145
6351            749290                NA            363653               316
6352            711490                NA            355020               278
6353          19908595                NA           9713298               650
6354           4692242                NA           2342253               320
6355           2073546                NA            975289               435
6356            966688                NA            483251               270
6357           1114368                NA            538428               383
6358           3678328                NA           1837913               458
6359            422733                NA            212276                44
6360           1010100                NA            512085                30
6361           1420825                NA            698689               221
6362            422733                NA            212276                44
6363           2570862                NA           1280273               338
6364           1568940                NA            770847               201
6365           1017724                NA            503252               211
6366           6123949                NA           3001027               195
6367          19908595                NA           9713298               650
6368            591397                NA            285117               421
6369           1264357                NA            612537               452
6370            915968                NA            453044               376
6371            803398                NA            394257               163
6372            749290                NA            363653               316
6373          19908595                NA           9713298               650
6374          13111917                NA           6515114                NA
6375          13111917                NA           6515114                NA
6376           2505312                NA           1250855               406
6377            771602                NA            388362               230
6378            749290                NA            363653               316
6379           1086859                NA            532509               342
6380            181055                NA             90237               148
6381            406575                NA            197548               414
6382           1282588                NA            630858               398
6383            510290                NA            256202               214
6384           1163462                NA            568061               155
6385           2109957                NA           1038760               572
6386            421854                NA            208182               136
6387           1420825                NA            698689               221
6388            510290                NA            256202               214
6389           2296377                NA           1160944               432
6390          13111917                NA           6515114                NA
6391           2394673                NA           1181313               252
6392           1568940                NA            770847               201
6393           4610050                NA           2315218               243
6394           4610050                NA           2315218               243
6395            646794                NA            322648               249
6396           2365501                NA           1162773               204
6397           1613587                NA            790463               387
6398           1568940                NA            770847               201
6399            552916                NA            270938               223
6400           3194310                NA           1562880               249
6401           7142603                NA           3563435               532
6402          19908595                NA           9713298               650
6403           6123949                NA           3001027               195
6404           6123949                NA           3001027               195
6405            330119                NA            161252               101
6406           4912449                NA           2407307               403
6407            174621                NA             89435               316
6408            406575                NA            197548               414
6409           1163462                NA            568061               155
6410             50396                NA             25247               160
6411            103542                NA             49921                87
6412             21609                NA             10985               127
6413            277944                NA            140783               421
6414            771602                NA            388362               230
6415            490769                NA            249622               187
6416            218515                NA            108665               349
6417             82058                NA             42359               212
6418            257927                NA            126314               210
6419                NA                NA                NA                NA
6420            552916                NA            270938               223
6421           1163462                NA            568061               155
6422            115066                NA             57649               153
6423          19908595                NA           9713298               650
6424            105950                NA             53095               130
6425             35827               103             17945               136
6426           6123949                NA           3001027               195
6427            119685                NA             62534               190
6428            153733                NA             76642               194
6429            646794                NA            322648               249
6430             36986                NA             19367               130
6431             25381               138             13207               222
6432            118541                NA             59633               128
6433             96299                NA             52279               219
6434             83472                NA             40947               296
6435            223223                NA            111472               223
6436           1163462                NA            568061               155
6437            171951                NA             87139               155
6438           6123949                NA           3001027               195
6439            469484                NA            227358               262
6440           1335804                NA            641128               280
6441           4912449                NA           2407307               403
6442            185147                NA             92047               125
6443            199352                NA             99597               226
6444            133263                NA             66411                90
6445                NA                NA                NA                NA
6446            328011                NA            164852               168
6447            322285                NA            159719                88
6448           6123949                NA           3001027               195
6449            330119                NA            161252               101
6450            221463                NA            110289               246
6451            831913                NA            404751               336
6452           1087068                NA            546278               323
6453             75570                NA             37349               143
6454           1568940                NA            770847               201
6455            772902                NA            380685                73
6456            658694                NA            322943               249
6457            901729                NA            444836               160
6458           1670949                NA            818990               468
6459            322285                NA            159719                88
6460           1017724                NA            503252               211
6461            678995                NA            341280               162
6462            490769                NA            249622               187
6463           2079759                NA           1012336               195
6464            755081                NA            384572               211
6465            975551               164            484741               608
6466           2505312                NA           1250855               406
6467           1316145                NA            640643               629
6468            274339                NA            133897                52
6469            644547                NA            316451               198
6470            422187                NA            211290               199
6471           1798025                NA            886709               642
6472                NA                NA                NA                NA
6473           1017724                NA            503252               211
6474            700578                NA            343022               159
6475            269278               239            135933               280
6476             84423                NA             43002               119
6477           2394673                NA           1181313               252
6478                NA                NA                NA                NA
6479            225745                NA            112032               173
6480                NA                NA                NA                NA
6481           4001701                NA           2024424                73
6482            121147                NA             59791               169
6483           1316145                NA            640643               629
6484            225745                NA            112032               173
6485            274339                NA            133897                52
6486            496299                NA            240510               173
6487           6094752                NA           2965233               880
6488           1163462                NA            568061               155
6489          13111917                NA           6515114                NA
6490           2505312                NA           1250855               406
6491             24944                NA             13144               156
6492           4912449                NA           2407307               403
6493           4001701                NA           2024424                73
6494          19908595                NA           9713298               650
6495           2840005                NA           1374325               218
6496           2190750                NA           1084347               492
6497           2073546                NA            975289               435
6498            386064                NA            186619               280
6499            866377                58            420485               915
6500           4912449                NA           2407307               403
6501          19908595                NA           9713298               650
6502           2079759                NA           1012336               195
6503          19908595                NA           9713298               650
6504            678995                NA            341280               162
6505            697704                NA            348873                85
6506            658694                NA            322943               249
6507            550596                NA            277195               287
6508           1420825                NA            698689               221
6509            269278               239            135933               280
6510           2296377                NA           1160944               432
6511           1114368                NA            538428               383
6512           1990873                NA            978574               496
6513          13111917                NA           6515114                NA
6514           6346083                NA           3128067               735
6515            867161                NA            431851               177
6516            330119                NA            161252               101
6517            421854                NA            208182               136
6518            322285                NA            159719                88
6519          13111917                NA           6515114                NA
6520           2190750                NA           1084347               492
6521           2190750                NA           1084347               492
6522           4692242                NA           2342253               320
6523           6123949                NA           3001027               195
6524           6232894                NA           3033772               332
6525            406575                NA            197548               414
6526           2394673                NA           1181313               252
6527           2394673                NA           1181313               252
6528          13111917                NA           6515114                NA
6529          13111917                NA           6515114                NA
6530           1042393                NA            516095               117
6531            288639                NA            146836               223
6532            488436                NA            240478               204
6533           4912449                NA           2407307               403
6534            421854                NA            208182               136
6535           1428923                NA            708697               296
6536            966688                NA            483251               270
6537          19908595                NA           9713298               650
6538            328011                NA            164852               168
6539            383732                NA            189495                92
6540          13111917                NA           6515114                NA
6541            119685                NA             62534               190
6542           6123949                NA           3001027               195
6543           2137223                NA           1061042               342
6544           6123949                NA           3001027               195
6545           4610050                NA           2315218               243
6546           2073546                NA            975289               435
6547           1086859                NA            532509               342
6548           7673379                NA           3806912               442
6549           2109957                NA           1038760               572
6550          19908595                NA           9713298               650
6551           2679298                NA           1318555               326
6552           4692242                NA           2342253               320
6553           6123949                NA           3001027               195
6554           1981584                NA           1011796               354
6555             55650                NA             29968               225
6556           1568940                NA            770847               201
6557          13111917                NA           6515114                NA
6558            901729                NA            444836               160
6559            269278               239            135933               280
6560           2296377                NA           1160944               432
6561           1114368                NA            538428               383
6562           2137223                NA           1061042               342
6563           1008280                NA            506526                56
6564           7142603                NA           3563435               532
6565            591397                NA            285117               421
6566          13111917                NA           6515114                NA
6567            174621                NA             89435               316
6568           1568940                NA            770847               201
6569           1568940                NA            770847               201
6570            966688                NA            483251               270
6571           4610050                NA           2315218               243
6572           6123949                NA           3001027               195
6573           3289701                NA           1667851                NA
6574           2570862                NA           1280273               338
6575            445213                NA            223753               185
6576            445213                NA            223753               185
6577           2813523                NA           1375126               423
6578           1042393                NA            516095               117
6579            966688                NA            483251               270
6580           2365501                NA           1162773               204
6581           6123949                NA           3001027               195
6582           2840005                NA           1374325               218
6583            755081                NA            384572               211
6584            749290                NA            363653               316
6585          19908595                NA           9713298               650
6586          19908595                NA           9713298               650
6587           2109957                NA           1038760               572
6588            291491                NA            148126               172
6589            901729                NA            444836               160
6590           4864209                NA           2434382               157
6591           6123949                NA           3001027               195
6592          19908595                NA           9713298               650
6593           2959386                NA           1493164               389
6594            119685                NA             62534               190
6595           2253528                NA           1113732               640
6596           4610050                NA           2315218               243
6597           1420825                NA            698689               221
6598           4692242                NA           2342253               320
6599            966688                NA            483251               270
6600           1316145                NA            640643               629
6601            445213                NA            223753               185
6602            711490                NA            355020               278
6603           2505312                NA           1250855               406
6604           1114368                NA            538428               383
6605           2265926                NA           1137581                NA
6606          19908595                NA           9713298               650
6607           6123949                NA           3001027               195
6608           3678328                NA           1837913               458
6609           1264357                NA            612537               452
6610            510290                NA            256202               214
6611            490769                NA            249622               187
6612           4001701                NA           2024424                73
6613           2394673                NA           1181313               252
6614            844461                NA            407362               124
6615            915968                NA            453044               376
6616            915968                NA            453044               376
6617            269278               239            135933               280
6618           6094752                NA           2965233               880
6619           2296377                NA           1160944               432
6620           1215703               422            594920               926
6621           1163462                NA            568061               155
6622          13111917                NA           6515114                NA
6623            755081                NA            384572               211
6624            755081                NA            384572               211
6625            755081                NA            384572               211
6626            181055                NA             90237               148
6627            867161                NA            431851               177
6628           1008280                NA            506526                56
6629            646794                NA            322648               249
6630            322285                NA            159719                88
6631            174621                NA             89435               316
6632           1568940                NA            770847               201
6633           3678328                NA           1837913               458
6634           4692242                NA           2342253               320
6635           1428923                NA            708697               296
6636           1428923                NA            708697               296
6637            966688                NA            483251               270
6638           4610050                NA           2315218               243
6639           1670949                NA            818990               468
6640            772902                NA            380685                73
6641           3289701                NA           1667851                NA
6642           2570862                NA           1280273               338
6643            445213                NA            223753               185
6644           1282588                NA            630858               398
6645           4912449                NA           2407307               403
6646            118541                NA             59633               128
6647           4912449                NA           2407307               403
6648           3289701                NA           1667851                NA
6649            915968                NA            453044               376
6650            867161                NA            431851               177
6651           2109957                NA           1038760               572
6652           1264357                NA            612537               452
6653            966688                NA            483251               270
6654           6123949                NA           3001027               195
6655           2505312                NA           1250855               406
6656           2365501                NA           1162773               204
6657           2073546                NA            975289               435
6658           1017724                NA            503252               211
6659            755081                NA            384572               211
6660           1264357                NA            612537               452
6661           2296377                NA           1160944               432
6662           1613587                NA            790463               387
6663           2813523                NA           1375126               423
6664           6346083                NA           3128067               735
6665           3194310                NA           1562880               249
6666            136132                NA             67729               200
 [ reached 'max' / getOption("max.print") -- omitted 2836 rows ]

#joining dest_cbsa to geoid

join_2 = join_1 |>
  left_join(census, by = c("dest_cbsa" = "GEOID"))
print(join_2)
     origin dest passengers distancemiles
1       EWR  DTW     205100           488
2       FLL  DTW     378280          1127
3       JAX  DTW      68740           813
4       LAX  DTW     422730          1979
5       LAX  OAK     418340           337
6       LAX  PHX     662760           370
7       LGA  DTW     382450           502
8       LGA  MIA     750650          1096
9       MCO  DTW     576280           957
10      MIA  DTW     204770          1145
11      MSY  DTW     116190           926
12      RSW  DTW     337790          1084
13      SEA  PDX     511400           129
14      SEA  PHX     795450          1107
15      SEA  SJC     455450           696
16      SLC  SJC     170090           584
17      TPA  DTW     327990           983
18      ATL  DAY     104470           432
19      ATL  BUF     166580           712
20      ATL  ECP     260070           240
21      ATL  MSP     488860           907
22      ATL  ONT     143830          1900
23      ATL  PVD     133160           903
24      ATL  JAX     615330           270
25      ATL  PBI     556290           545
26      ATL  AVL     136170           164
27      ATL  EWR     665820           746
28      ATL  EYW     156910           646
29      ATL  JAN     228330           341
30      ATL  LAX     796790          1947
31      ATL  PDX     195350          2172
32      ATL  RDU     537720           356
33      ATL  SMF     138670          2092
34      DTW  FLL     379710          1127
35      DTW  SFO     198170          2079
36      MSP  DEN     717630           680
37      MSP  EWR     203530          1008
38      MSP  SAN     237560          1532
39      MSP  SEA     428250          1399
40      SLC  SAN     308880           626
41      SLC  SMF     201930           532
42      SLC  PSC      58870           521
43      ATL  HPN     118010           780
44      ATL  LGA     911360           762
45      MSP  ATL     487210           907
46      MSP  DFW     378840           852
47      ATL  LFT      47170           503
48      ATL  AUS     475980           813
49      ATL  CVG     292510           373
50      ATL  MCI     335950           692
51      ATL  ORD     592170           606
52      ATL  SAN     313120          1892
53      ATL  SYR     124930           794
54      JFK  FLL     588470          1069
55      LAX  HNL     797610          2556
56      LGA  BUF      71730           292
57      MSP  FSD      95530           196
58      SLC  BZN     111160           347
59      SLC  SEA     424050           689
60      MSP  DSM      57090           232
61      MSP  BOS     299520          1124
62      MSP  LGA     250120          1020
63      MSP  FAR     127590           223
64      SLC  ATL     464470          1590
65      SLC  DCA      61750          1851
66      SLC  JFK     280840          1990
67      SLC  MSY      52980          1428
68      SLC  SAT      91220          1087
69      SLC  SNA     226830           588
70      SLC  FAT      74330           501
71      SLC  IDA      82980           188
72      SLC  PSP      62640           541
73      ATL  GPT      99980           352
74      ATL  BOS     577460           946
75      ATL  MCO    1143930           404
76      DTW  GSP      32370           508
77      ATL  ALB     125600           853
78      ATL  BDL     265460           859
79      ATL  DTW     609260           594
80      ATL  MKE     276270           669
81      ATL  DAL     353130           721
82      ATL  MEM     376700           332
83      ATL  BWI     631380           577
84      ATL  CMH     324310           447
85      ATL  MSY     525540           425
86      ATL  ORF     337330           516
87      ATL  PIT     304270           526
88      LAX  FLL     297470          2343
89      LAX  MCO     454250          2218
90      LAX  LAS    1046680           236
91      LAX  SAN      49300           109
92      LAX  SMF     349900           373
93      MSP  RDU     126900           980
94      MSP  CMH      79600           626
95      SEA  MCO     260490          2554
96      SLC  PDX     280140           630
97      ATL  OMA     196310           821
98      ATL  DAB     172330           366
99      ATL  IND     397560           432
100     ATL  JFK     344030           760
101     ATL  SLC     468780          1590
102     ATL  SRQ     349790           444
103     ATL  VPS     226580           250
104     DTW  BOS     264470           632
105     LAX  IND      80390          1814
106     LAX  TUS     147880           451
107     MSP  LAX     472490          1535
108     SLC  LAX     597950           590
109     ATL  MDW     363690           591
110     ATL  GSO     229550           306
111     ATL  CLE     363070           554
112     ATL  GRR     175370           640
113     ATL  PHL     640040           666
114     ATL  SNA     139330          1919
115     ATL  IAH     450090           689
116     DTW  AZO      36720           113
117     DTW  JFK      89350           509
118     LAS  JFK     408930          2248
119     LAX  DEN     790700           862
120     LAX  KOA     241250          2504
121     MCO  JFK     620540           944
122     MCO  LGA     638260           950
123     MIA  JFK     736430          1089
124     MIA  LGA     767670          1096
125     RSW  JFK     168630          1074
126     SEA  LIH     132790          2701
127     SEA  SLC     424580           689
128     SEA  SNA     409810           978
129     SEA  GEG     432600           224
130     SLC  GEG     148960           546
131     SLC  JAC      76580           205
132     SLC  OAK     231730           588
133     SLC  COS      44620           411
134     TPA  JFK     265210          1005
135     SAN  JFK     304560          2446
136     LAX  RNO     214400           391
137     SEA  BOI     301640           399
138     ATL  OAJ      56390           399
139     DTW  CVG      71580           229
140     DTW  SYR      64510           374
141     DTW  CLE      82190            95
142     DTW  TPA     334470           983
143     JFK  SYR      60720           209
144     JFK  LAS     391010          2248
145     MSP  DLH      77650           144
146     MSP  BDL     102230          1050
147     RDU  JFK     183080           427
148     SLC  AUS     167430          1086
149     SLC  LAS     500620           368
150     ATL  AGS     122800           143
151     ATL  RIC     415870           481
152     ATL  SAT     361450           874
153     BNA  LAX     276900          1797
154     CVG  LGA     114670           585
155     CVG  BOS      90330           752
156     DFW  LAX     922130          1235
157     DTW  BDL     109560           549
158     DTW  BUF     104490           241
159     DTW  LGA     386380           502
160     DTW  RIC      54910           456
161     HNL  LAX     810630          2556
162     JFK  BUF     143910           301
163     JFK  RIC      63770           288
164     RDU  MCO     259640           534
165     SAT  LAX     160300          1211
166     SEA  ANC     926610          1448
167     SLC  FCA      84770           531
168     SLC  LGB      89230           588
169     SLC  MSO      71240           436
170     SLC  SUN      44060           222
171     ATL  OKC     208440           761
172     DTW  GRR     125570           120
173     DTW  LAX     415560          1979
174     DTW  PHX     323680          1671
175     DTW  SAN     149480          1956
176     DTW  SEA     293100          1927
177     FLL  LGA     614620          1076
178     MSP  BOI      91780          1142
179     MSP  GEG     102350          1175
180     MSP  PHX     622720          1276
181     MSP  SFO     281270          1589
182     MSP  SMF      76560          1517
183     ORD  LGA    1049510           733
184     SRQ  LGA      58400          1047
185     TPA  LGA     353540          1010
186     LAX  BOS     571010          2611
187     ATL  LIT     219160           453
188     ATL  BTR     100670           448
189     MSP  PDX     231840          1426
190     ATL  LEX     162920           304
191     ATL  HNL      82300          4502
192     ATL  IAD     272690           534
193     ATL  STL     349720           484
194     DTW  MCO     592530           957
195     DTW  LSE       3940           416
196     JFK  MCO     612830           944
197     LGA  MCO     630040           950
198     MSP  GRB      50530           252
199     ATL  TPA     851260           406
200     ATL  TUS     117330          1541
201     ATL  DEN     800470          1199
202     ATL  SFO     363180          2139
203     ATL  TYS     194700           152
204     MSP  CID      28630           220
205     SLC  DEN     709950           391
206     ATL  BQK      35430           238
207     ATL  RSW     486050           515
208     ATL  GSP     310880           153
209     MSP  DCA     234830           931
210     ATL  FLL    1020520           581
211     ATL  MYR     141230           317
212     ATL  SAV     339340           214
213     ATL  TUL     110620           674
214     AUS  MSP     136110          1042
215     BNA  MSP     189690           695
216     BOS  MSP     296190          1124
217     DCA  MSP     235600           931
218     DEN  MSP     730620           680
219     DFW  MSP     379400           852
220     DTW  DFW     359950           986
221     DTW  MIA     211190          1145
222     DTW  RSW     340660          1084
223     EWR  MSP     209200          1008
224     LAS  MSP     560980          1299
225     LAX  MSP     469880          1535
226     LGA  PWM      79570           269
227     LGA  MSP     239110          1020
228     MCO  MSP     500880          1310
229     MSY  MSP      57240          1039
230     ORD  MSP     461170           334
231     PDX  MSP     231140          1426
232     PHL  MSP     152970           980
233     RDU  MSP     123300           980
234     RSW  MSP     362870          1416
235     SEA  MSP     421790          1399
236     TPA  MSP     266030          1306
237     DTW  LAN      34510            74
238     DTW  MSY     117390           926
239     MSP  MSY      56220          1039
240     MSP  SNA      90030          1522
241     ATL  BHM     315480           134
242     ATL  CLT     383000           226
243     SLC  RDU      58390          1823
244     SLC  SFO     266060           599
245     ATL  PNS     354230           271
246     MSP  MCO     506460          1310
247     SLC  ONT     137530           558
248     ATL  HHH      31830           238
249     BOS  ORD     671890           867
250     DTW  SDF      49240           306
251     LGA  SYR      52060           198
252     LGA  ORD    1033110           733
253     MSP  ORD     481950           334
254     MSP  HIB      13420           174
255     SEA  LAX     729000           954
256     ATL  DSM      91410           743
257     ATL  CHS     384440           259
258     MSP  IND     131980           503
259     SEA  PSP     180730           987
260     SLC  BOS     167120          2105
261     SLC  MCI     110110           920
262     SLC  ABQ      64360           493
263     SLC  RNO     119190           422
264     ATL  ABQ     152080          1269
265     ATL  MIA     817720           594
266     DTW  PHL     172800           453
267     MSP  RST      42770            76
268     ATL  PWM      74110          1027
269     JFK  BOS     312700           187
270     MSP  SBN      20420           411
271     ATL  BNA     471810           214
272     ATL  DCA     641730           547
273     ATL  LAS     739940          1747
274     DTW  RDU     124700           501
275     FLL  RDU      97440           680
276     LAS  RDU      94100          2026
277     LAX  RDU     104750          2239
278     LAX  SFO     949530           337
279     MCO  RDU     259570           534
280     SEA  RDU     110710          2354
281     ATL  DFW     781170           731
282     ATL  BTV      34280           961
283     LGA  RSW     132660          1080
284     DTW  GRB      49380           287
285     SEA  SAN     538340          1050
286     SLC  MCO     318030          1931
287     SLC  TPA      59460          1888
288     ATL  FAY      48590           331
289     ATL  SEA     491550          2182
290     DTW  BWI     196210           409
291     DTW  IAD     114470           383
292     LAS  SEA     849910           867
293     LAX  SEA     740440           954
294     MSP  MKE     137210           297
295     PHX  SEA     796950          1107
296     SAN  SEA     541490          1050
297     SLC  SGU      59310           272
298     SNA  SEA     411270           978
299     SEA  BNA     142310          1978
300     SLC  CVG      79400          1450
301     SLC  MIA      71270          2088
302     MSP  DTW     252630           528
303     SLC  DTW     227150          1481
304     BOI  SLC     142450           290
305     DFW  SLC     450160           989
306     DTW  CID      22070           430
307     DTW  MKE     106640           237
308     DTW  CMH      70810           155
309     EWR  SLC     101530          1969
310     GEG  SLC     148900           546
311     JFK  SLC     277250          1990
312     LAS  SLC     481120           368
313     LAX  SLC     594160           590
314     MSP  JFK      88060          1029
315     ONT  SLC     130560           558
316     SAN  SLC     310710           626
317     SFO  SLC     266780           599
318     SJC  SLC     169040           584
319     SNA  SLC     228840           588
320     MSP  BNA     197320           695
321     SLC  MSP     256980           991
322     ATL  CHA     173700           106
323     MSP  GRR     117170           408
324     SEA  EUG     159000           234
325     SLC  RDM      49740           525
326     ATL  SDF     285220           321
327     MSP  STL     147900           448
328     ATL  GEG      57000          1969
329     ATL  GRB      37500           774
330     ATL  FSD      32410           954
331     DTW  MBS      38930            98
332     DTW  LAS     507640          1749
333     JFK  TPA     265120          1005
334     LGA  TPA     343460          1010
335     MSP  TPA     263590          1306
336     LAS  ATL     744000          1747
337     ONT  ATL     146200          1900
338     LAS  AUS     399400          1090
339     MCO  BWI     649380           787
340     MCO  CLE     317690           895
341     DEN  SAN     678240           853
342     LAS  ONT     248060           197
343     PHL  CLT     356980           449
344     FAT  DEN     120220           844
345     ORD  DEN     906020           888
346     TPA  ISP      78410          1034
347     TPA  LAS     151140          1984
348     TTN  MCO     115060           896
349     DEN  ONT     283320           819
350     LAS  MEM      36460          1416
351     PHL  MIA     366980          1013
352     LAS  PDX     434240           763
353     LAS  PHL     264790          2176
354     MCO  PHL     865350           861
355     TPA  PHL     343200           920
356     SAN  PHX     617170           304
357     SJU  RDU      37840          1433
358     LAS  SAN     685770           258
359     LAS  SAT     198810          1069
360     EWR  SJU     332700          1608
361     IAD  LGA      95370           229
362     EWR  CLT     384930           529
363     ORD  CLT     452110           599
364     IAD  HNL      26940          4817
365     ORD  LAS     741580          1514
366     ORD  PHX     777970          1440
367     EWR  PBI     392820          1023
368     CLE  IAH      84410          1091
369     CLT  EWR     395740           529
370     DCA  DEN     217890          1476
371     GSO  EWR      37070           445
372     IND  EWR      92770           645
373     ROC  EWR      53170           246
374     IAD  AVL       9730           370
375     EWR  GSO      38360           445
376     ORD  SPI      16300           174
377     HHH  IAD      12420           498
378     IND  IAD      59540           476
379     IAD  TYS      24540           420
380     ORD  RSW     408390          1120
381     ORD  IAH     520970           925
382     ORD  SFO     706430          1846
383     EWR  BNA     171930           748
384     EWR  SFO     725590          2565
385     IAD  SFO     325210          2419
386     IAD  TPA     101050           811
387     EWR  JAX     125160           820
388     EWR  SEA     264120          2402
389     EWR  ROC      56390           246
390     ORD  SEA     634720          1721
391     ORD  STL     161270           258
392     EWR  SYR      36090           195
393     EWR  IND      91900           645
394     IAD  PHX      62340          1956
395     ORD  LIT      65730           552
396     ORD  EWR     613040           719
397     ORD  TYS      75270           475
398     ORD  PIT     209740           413
399     CLT  BDL     237770           644
400     MIA  STX      91470          1139
401     ORD  MCO     781340          1005
402     BNA  AUS     213440           756
403     CVG  AUS      47620           958
404     OKC  AUS      48750           358
405     ORD  SDF      96290           286
406     AUS  LAS     388970          1090
407     ORD  ATL     582040           606
408     ORD  SYR     125730           607
409     ORD  BOS     688500           867
410     ORD  FAR      64540           557
411     DFW  EWR     387260          1372
412     ORD  SNA     288370          1726
413     DFW  OKC     256360           175
414     DFW  FAT     158660          1313
415     DFW  XNA     155510           280
416     ORD  PDX     252220          1739
417     DCA  MCO     482830           759
418     DCA  CVG      99020           411
419     MIA  MCO     308320           192
420     MIA  TPA     182120           204
421     MIA  CVG      54390           948
422     ORD  ICT      72330           588
423     DFW  MLU      40860           293
424     DTW  DCA     233870           405
425     MEM  DCA      60870           762
426     LCH  DFW      35700           295
427     MTJ  DFW      55950           722
428     DFW  BHM     129870           597
429     ORD  SJC      30600          1829
430     DFW  MCO     657430           985
431     ORD  MIA     493050          1197
432     ORD  RIC     112050           642
433     DFW  TUL     241460           237
434     ORD  LAX    1026760          1744
435     DFW  PHX     593600           868
436     DFW  MIA     491540          1121
437     DFW  COS     180400           592
438     DFW  GEG      43660          1477
439     DFW  GCK      27370           404
440     CLT  LYH      73900           175
441     MIA  ORD     485330          1197
442     ORD  BGR      20300           978
443     ORD  JAX     105830           864
444     ORD  FSD      76840           463
445     DFW  SDF     121650           733
446     DFW  SYR      35200          1336
447     DFW  AUS     443610           190
448     DFW  ONT     308710          1188
449     DFW  LFT      64170           351
450     CLT  IAD     157030           322
451     ORD  AUS     336610           977
452     DFW  SJC     121400          1438
453     ORD  MCI     199940           403
454     PIT  MIA      53540          1013
455     DFW  BNA     337180           631
456     ORD  CLE     273780           315
457     DFW  MCI     250780           460
458     ORD  FWA      67390           157
459     ORD  MSY     182000           836
460     DFW  CAE      56760           922
461     ORD  LEX      68950           323
462     AUS  ORD     341420           977
463     CVG  ORD     144330           264
464     RDU  ORD     201390           646
465     ORD  RNO      21410          1671
466     ORD  GRR     148010           137
467     DFW  ORD     680380           801
468     ORD  XNA      88780           522
469     MIA  LAX     483190          2342
470     MIA  EYW      64800           126
471     MIA  SDF      27450           910
472     DFW  IAH     458700           224
473     DFW  AGS      21570           874
474     ORD  RDU     208960           646
475     DFW  MSY     302870           447
476     DFW  ABQ     286170           569
477     MIA  ATL     804300           594
478     ORD  LAN      32090           179
479     DFW  DEN     709240           641
480     DFW  LAS     864160          1055
481     DFW  SEA     515930          1660
482     MIA  ACY      23970           998
483     MYR  ACY      47990           466
484     RSW  ACY      59160           982
485     EWR  ATL     662630           746
486     FLL  AUS     143240          1105
487     IAH  ATL     453220           689
488     LAS  SNA     510450           226
489     MSY  ATL     538210           425
490     LAX  ATL     795360          1947
491     TPA  BDL      97450          1111
492     FLL  BNA     184870           793
493     LAS  BNA     198190          1587
494     LAX  BNA     275590          1797
495     LGA  BNA     377650           764
496     BWI  BOS     259980           369
497     FLL  BOS     365040          1237
498     LAS  BOS     215250          2381
499     SJU  BOS     215070          1674
500     TPA  BOS     307990          1185
501     LAS  BUR     408340           223
502     FLL  BWI     407020           925
503     FLL  DEN     278960          1703
504     LAS  BWI     236950          2106
505     MSY  BWI     138500           998
506     TPA  BWI     315870           842
507     BOS  BWI     257920           369
508     LAS  CLE     141620          1824
509     LAS  MCO     197860          2039
510     RSW  CLE     158200          1025
511     TPA  CLE     163880           927
512     MCO  IAH     485940           854
513     MCO  CLT     673680           468
514     MCO  CMH     221870           802
515     IAH  BWI     123760          1235
516     FLL  DFW     369480          1119
517     LAS  DFW     863420          1055
518     MSY  DFW     311110           447
519     ORD  DFW     667620           801
520     TPA  ORD     450750          1011
521     LAS  DTW     502190          1749
522     BNA  EWR     173770           748
523     FLL  EWR     669740          1065
524     IAH  EWR     420390          1400
525     MCO  EWR     925000           937
526     AUS  EWR     204470          1504
527     BNA  FLL     176790           793
528     BOS  FLL     364770          1237
529     BWI  FLL     414510           925
530     DEN  FLL     287330          1703
531     EWR  FLL     672010          1065
532     IND  FLL      85790          1005
533     LAS  FLL     116320          2173
534     LGA  FLL     597140          1076
535     EWR  IAH     403220          1400
536     LAS  IAH     511480          1222
537     FLL  IND      84930          1005
538     LAS  IND     185210          1590
539     TPA  IND     125650           837
540     BNA  LAS     205000          1587
541     BOS  LAS     211870          2381
542     DTW  ATL     592890           594
543     MCO  GSO       1840           535
544     MSY  LAS     147870          1500
545     PIT  LAS     109100          1910
546     SEA  LAS     844720           867
547     FLL  LAX     286200          2343
548     MCI  LAX     134110          1363
549     MSY  TPA     121940           488
550     PHL  LAX     340410          2402
551     SDF  LAX      31190          1843
552     MCO  LBE      51400           823
553     RSW  LBE       6840           956
554     LAS  MCI     208490          1139
555     LAX  MCI     142850          1363
556     BNA  MCO     317540           616
557     BQN  MCO     138520          1129
558     CLT  MCO     664450           468
559     LAS  OAK     598700           407
560     PIT  MCO     239840           834
561     SJU  MCO     914420          1189
562     LAS  MKE     171640          1524
563     FLL  PHL     336670           992
564     LAS  MSY     145170          1500
565     LAS  EWR     393300          2227
566     LAS  ORD     741240          1514
567     MCO  ORD     766710          1005
568     MSY  ORD     176200           836
569     RSW  ORD     408830          1120
570     LAS  PIT      99510          1910
571     LAX  PIT      40860          2136
572     MCO  PIT     244060           834
573     ORD  SAN     343770          1723
574     BOS  SJU     208980          1674
575     TPA  STL     121140           869
576     FLL  IAH     256240           966
577     BOS  TPA     302520          1185
578     BWI  TPA     330650           842
579     CMH  TPA     120990           829
580     LAS  TPA     152650          1984
581     CLT  SRQ     125900           547
582     CLT  SDF     121430           335
583     DCA  VPS      25460           789
584     PHL  LAS     264180          2176
585     DCA  PHX     175100          1979
586     CLT  ALB     113810           646
587     CLT  LAS     393500          1916
588     CLT  LGA     446700           544
589     CLT  MSP     226910           930
590     CLT  PHL     387840           449
591     CLT  PBI     246290           590
592     DCA  BNA     236750           562
593     DCA  JFK      81620           213
594     DCA  LGA     335100           214
595     CLT  TPA     432960           507
596     CLT  VPS     102230           460
597     CLT  STL     218240           575
598     CLT  SAT     157980          1095
599     PHL  CHS      74020           550
600     CLT  BWI     328250           361
601     ABE  CLT      59470           481
602     BNA  CLT     309970           328
603     HPN  CLT      67370           564
604     IAD  CLT     158290           322
605     PIA  CLT      34270           607
606     CLT  FLL     379430           632
607     CLT  OKC      71980           940
608     PHL  MCO     871340           861
609     CLT  IND     172270           427
610     CLT  MEM     182340           511
611     CLT  PHX     389020          1773
612     CLT  CAK      66940           394
613     CLT  CLE     160400           430
614     DCA  DAY      51150           391
615     CLT  AUS     252560          1032
616     JAN  DCA      18350           860
617     JAX  DCA     104690           634
618     MSY  DCA     151540           969
619     PHL  SFO     154510          2521
620     MGM  DFW      43840           622
621     CLT  DCA     279500           331
622     DCA  HPN      57610           234
623     DCA  PVD     152160           356
624     CLT  ATL     387660           226
625     PHL  DTW     176800           453
626     PHL  PWM      70980           364
627     CLT  SAV     182890           213
628     CLT  LIT      73050           640
629     CLT  MLB      60050           490
630     CLT  DTW     279850           500
631     CLT  MCI     139160           808
632     CLT  ORD     463030           599
633     CLT  MKE      86970           651
634     CLT  FNT      38150           555
635     CLT  DAY      77330           370
636     DCA  BOS     749190           399
637     DCA  PIT      73540           204
638     CLT  DFW     490140           936
639     CLT  OMA      78250           913
640     CLT  HPN      63150           564
641     DCA  PBI     143340           857
642     DCA  ATL     640780           547
643     CLT  RSW     261320           600
644     CLT  BUF     116850           546
645     CLT  PIT     220710           366
646     CLT  ABE      58310           481
647     CLT  ORF     227420           290
648     CLT  PHF      73730           282
649     CLT  JAX     249150           328
650     DCA  JAX     102530           634
651     DCA  MHT      57630           406
652     PHL  BOS     412720           280
653     PHL  JAX      87280           742
654     CLT  AVL     134970            91
655     CLT  RDU     378130           130
656     CLT  FAY      90440           118
657     CLT  OAJ      86830           191
658     CLT  MDT     122770           413
659     CLT  MIA     280400           650
660     CLT  CHS     222330           168
661     CLT  IAH     244240           912
662     CLT  DSM      62460           815
663     CLT  GSP     147130            75
664     DCA  PWM      85160           482
665     CLT  MSY     202240           651
666     CLT  JAN      60180           562
667     DCA  MSY     149130           969
668     PHL  LEX      12570           520
669     BNA  PHL     226160           675
670     CHS  PHL      74970           550
671     DCA  BHM      43310           653
672     ILM  PHL      32410           413
673     JAX  PHL      87640           742
674     MSP  PHL     156400           980
675     RDU  PHL     153970           337
676     CLT  DEN     378710          1337
677     CLT  SAN     196240          2077
678     PHL  SEA     142310          2378
679     PHL  IND      72460           588
680     PHL  ISP      23700           130
681     PHL  ORD     484390           678
682     PHL  BDL      64970           196
683     CLT  TYS     115730           177
684     CLT  PVD     148190           683
685     DCA  RDU     128190           227
686     DCA  STL     182230           719
687     DCA  SYR      59180           298
688     DCA  SDF      53190           474
689     LAX  ABQ     148090           677
690     DEN  IAH     640350           862
691     ORD  LNK      37540           466
692     ORD  ALB     140030           723
693     ORD  ONT       8140          1700
694     LAX  ASE      40390           737
695     SAN  HNL     155760          2614
696     DEN  SEA     754890          1024
697     ORD  ABQ      69910          1118
698     ORD  BNA     349350           409
699     DEN  MCI     391950           533
700     SFO  BIH       4930           221
701     DEN  MFR      72810           964
702     ORD  PSP      53720          1652
703     DEN  SBA     129340           916
704     IAH  LAX     605510          1379
705     GEG  BOI      51570           287
706     LAX  BOI      99200           674
707     PDX  BOI      81040           344
708     SEA  ATL     501710          2182
709     SFO  BOI      93730           522
710     SJC  BOI      68260           523
711     SEA  KOA     174780          2688
712     SLC  BUR     129250           574
713     DEN  BOI     228250           649
714     PHX  STS      28050           699
715     PHX  BUR     329820           369
716     PDX  BUR      71560           817
717     SFO  OGG     261320          2338
718     LAX  BZN      32920           902
719     ORD  BWI     265780           621
720     DEN  BZN     283600           524
721     ORD  OKC      76300           693
722     DFW  GRK      99920           134
723     DEN  BOS     403540          1754
724     DEN  EWR     369030          1605
725     LAX  COS      14600           833
726     DEN  LAX     807770           862
727     LAX  DAL     197350          1246
728     AUS  DEN     489110           775
729     BOI  DEN     244520           649
730     BZN  DEN     281420           524
731     DSM  DEN     204430           589
732     MEM  DEN     104340           872
733     OMA  DEN     291000           472
734     DEN  TUS     191010           639
735     DEN  SLC     724190           391
736     MSP  PIT      75180           726
737     DEN  DSM     207490           589
738     DEN  PSC      29700           852
739     ORD  MDT      96560           594
740     SFO  EUG      69090           451
741     SFO  DEN     659770           967
742     PHX  FAT      91850           493
743     PDX  FAT      27380           626
744     SAN  FAT      35090           314
745     SEA  FAT      71410           748
746     SFO  RDM      79600           462
747     SFO  ORD     714510          1846
748     MSP  FCA      45720          1026
749     SLC  ORD     275330          1250
750     ORD  FLL     410700          1182
751     ORD  SRQ      57630          1050
752     DTW  JAX      67140           813
753     BOI  PHX     153940           735
754     BOI  GEG      52140           287
755     LAX  GEG      47770           945
756     SEA  BOS     326650          2496
757     SFO  BNA      40570          1969
758     IAH  FLL     258150           966
759     IAH  MIA     326910           964
760     IAH  SJC      45440          1608
761     ORD  ABE      52090           654
762     DEN  HDN     113480           141
763     DTW  SLC     229940          1481
764     MSP  LSE      30000           119
765     DTW  IAH     219950          1075
766     ELP  IAH      78010           667
767     SLC  PIH      13370           150
768     DEN  CLE     272020          1201
769     DEN  FAR      74300           627
770     ORD  DCA     576940           612
771     IAD  PIT      55790           182
772     LAX  ORD    1047770          1744
773     PHX  LAX     676260           370
774     TUS  LAX     159140           451
775     BOI  LAX      94200           674
776     BZN  LAX      32480           902
777     GEG  LAX      50270           945
778     STS  LAX      32030           400
779     SJC  LAX     400480           308
780     ASE  LAX      39680           737
781     IAH  BTR      61690           253
782     IAH  SFO     352040          1635
783     ORD  IND     160010           177
784     ORD  AZO      36420           122
785     DFW  SAT     419980           247
786     ORD  MSN     150140           109
787     PHX  MSP     625350          1276
788     SFO  SAN     522370           447
789     DEN  MKE     227660           896
790     DEN  LAS    1028700           628
791     DEN  EUG      74040           996
792     SAN  MRY      20080           375
793     MSP  MSN      91790           228
794     ATW  MSP      48210           236
795     IAD  MSP      72850           908
796     DEN  GTF      48150           623
797     ORD  GRB      98880           174
798     PDX  OAK     196830           543
799     DFW  ROW      38170           435
800     LAX  OGG     430470          2486
801     ORD  AVP      54800           632
802     DEN  LGA     588630          1620
803     IAH  JAX      77780           817
804     LAX  OMA      21890          1330
805     DTW  PVD      55660           615
806     MSP  CIU      12540           435
807     PHX  ONT     288160           325
808     PHX  SAT     272840           843
809     SFO  ONT     102290           363
810     CLE  MIA      85750          1080
811     COU  ORD      34780           315
812     ICT  ORD      70940           588
813     GSP  ORD      62590           577
814     TYS  ORD      76340           475
815     DTW  DEN     383260          1123
816     BUR  PDX      73300           817
817     FAT  PDX      27910           626
818     MFR  PDX      26590           222
819     OAK  PDX     204640           543
820     SAN  PDX     194840           933
821     SFO  PDX     351220           550
822     SMF  PDX     176540           479
823     LAX  PDX     399550           834
824     SEA  MCI     117360          1489
825     SFO  KOA     166800          2367
826     FAT  PHX      91700           493
827     DEN  PHX    1037230           602
828     DTW  PIT      76720           201
829     ORD  MKE     131220            67
830     IAH  LAS     522440          1222
831     PHX  RDM      36820           893
832     SJC  PSP      15920           390
833     SLC  BOI     141000           290
834     DTW  MSN      80480           311
835     DEN  RAP      94560           300
836     PHX  MEM      55320          1264
837     SEA  ONT     231730           956
838     SLC  HLN      37050           402
839     DEN  ATW      15950           883
840     DEN  CLT     377220          1337
841     DEN  RIC      81960          1482
842     SEA  RNO     113340           564
843     PHX  SMF     377240           647
844     SMF  SAN     555330           480
845     AUS  SAN     209110          1164
846     FAT  SAN      35570           314
847     MRY  SAN      19520           375
848     PDX  SAN     195180           933
849     SJC  SAN     538830           417
850     STS  SAN      34170           508
851     LAX  MRY      28650           266
852     LAX  PRC       2420           346
853     LAX  SBP      17730           156
854     PHX  LAS     750310           255
855     SFO  SBA      80160           262
856     DTW  STL     140360           440
857     PDX  SBP      17890           722
858     MSP  LAS     549330          1299
859     LAX  MIA     480820          2342
860     BOI  SEA     302120           399
861     FAT  SEA      69480           748
862     GEG  SEA     430270           224
863     SJC  SEA     455150           696
864     PSP  SFO     157190           421
865     DAL  SFO      35180          1476
866     PDX  SFO     354140           550
867     PHX  SFO     462190           651
868     SNA  SFO     276710           372
869     BOI  SFO      96800           522
870     DFW  SFO     417720          1464
871     GEG  SFO      47660           733
872     AUS  SJC     140790          1476
873     GEG  SJC      47720           742
874     LAX  SJC     405420           308
875     PDX  SJC     240540           569
876     SAN  SJC     552300           417
877     DEN  DTW     372830          1123
878     DFW  TUS     309820           813
879     SAN  KOA      55920          2556
880     LGB  SLC      89730           588
881     DEN  DRO      88740           251
882     DEN  MCO     609380          1546
883     SFO  BFL      15270           238
884     SFO  SBP      39530           190
885     SFO  HNL     424250          2398
886     BOI  SMF      79310           437
887     PDX  SMF     173420           479
888     SAN  SMF     554030           480
889     SEA  HNL     284980          2677
890     SEA  RDM     165400           228
891     SFO  SEA     625070           679
892     SFO  SNA     278200           372
893     ORD  BHM      41220           583
894     ORD  SBN      66290            84
895     PHX  DFW     599400           868
896     LAX  STS      34730           400
897     PDX  STS      23120           489
898     SAN  STS      34500           508
899     ORD  OMA     148840           416
900     DTW  OMA      46940           651
901     LAX  ANC      40080          2345
902     SEA  TUS     103220          1216
903     IAH  DCA     176230          1208
904     SFO  BUR     193800           326
905     PDX  ABQ      28950          1111
906     SEA  BIL      45240           664
907     SEA  ORD     631010          1721
908     PAE  BOI      23970           419
909     PUW  BOI      12620           224
910     SMF  BOI      78540           437
911     SEA  BZN      89000           543
912     SEA  PSC     155600           172
913     SEA  DTW     291110          1927
914     SEA  JFK     414300          2422
915     SEA  MSY      61320          2086
916     SEA  MSO      65000           389
917     SEA  FCA      59690           379
918     PAE  GEG      22460           222
919     PDX  JFK     129440          2454
920     PDX  SBA      19440           784
921     SEA  EWR     274000          2402
922     SFO  GEG      48040           733
923     SEA  MFR     135050           352
924     SEA  HLN      21360           491
925     SEA  IDA      23200           566
926     SFO  LAX     931340           337
927     LAX  MFR      32630           630
928     PDX  MFR      23090           222
929     SEA  OAK     290000           672
930     BOI  PAE      22230           419
931     GEG  PAE      22170           222
932     LAS  PAE      40530           894
933     SNA  PAE      26100          1008
934     GEG  PDX      74860           279
935     SJC  PDX     247070           569
936     SFO  PSP     149350           421
937     SEA  ELP      37430          1368
938     SEA  PUW      52560           250
939     LAX  RDM      37430           726
940     PAE  SAN      19170          1080
941     SEA  SBA      38850           908
942     BZN  SEA      89700           543
943     EUG  SEA     160710           234
944     FCA  SEA      61720           379
945     GTF  SEA      22810           512
946     IDA  SEA      24750           566
947     MFR  SEA     134370           352
948     MRY  SEA      19130           750
949     MSO  SEA      66030           389
950     OAK  SEA     291230           672
951     PDX  SEA     504200           129
952     PUW  SEA      51450           250
953     RDD  SEA      20330           479
954     RDM  SEA     168190           228
955     RNO  SEA     116000           564
956     SMF  SEA     423510           605
957     LAS  SFO     620980           414
958     BOI  SJC      66440           523
959     STS  SNA      24270           433
960     SEA  STS      49420           618
961     SEA  DEN     751560          1024
962     IAH  AUS     167500           140
963     ORD  BDL     192390           783
964     ORD  PHL     491250           678
965     DEN  FCA     104460           752
966     DEN  MSO      93550           679
967     IAD  ATL     272450           534
968     ORD  LWB       5630           489
969     ORD  ATW      96120           161
970     BOS  DEN     412590          1754
971     DEN  AUS     505270           775
972     DEN  OMA     300040           472
973     EWR  AUS     207700          1504
974     IAH  MEI      10820           422
975     IAH  SEA     220560          1874
976     IAH  SNA     148790          1346
977     IAH  LGA     373400          1416
978     DEN  SNA     506420           846
979     IAD  AUS      95540          1297
980     IAD  BDL     115020           326
981     IAD  LAX     332730          2288
982     IAD  RDU      80640           224
983     IAD  SAV      34790           515
984     IAD  GSO       6780           239
985     CLL  BHM        190           600
986     DEN  CVG     221430          1069
987     DEN  ATL     792990          1199
988     ORD  BOI      79380          1437
989     DEN  JAC      89480           406
990     DEN  RDM      59300           898
991     EWR  BOS     314030           200
992     EWR  DEN     374430          1605
993     EWR  MCO     923020           937
994     EWR  MSY     165990          1167
995     EWR  TPA     363300           997
996     IAD  HHH      12000           498
997     IAH  BOS     195000          1597
998     LAX  LIH     216840          2615
999     ORD  DSM     131120           299
1000    SFO  LIH      92730          2447
1001    EWR  BUF      72080           282
1002    IAD  EWR     105790           212
1003    DEN  HNL     102290          3365
1004    ORD  HNL      95010          4243
1005    ORD  OGG      61410          4184
1006    SFO  LAS     616990           414
1007    DEN  MSY     277290          1062
1008    DEN  PIT     184680          1290
1009    ORD  MBS      29630           222
1010    ORD  PWM      84570           900
1011    DEN  LNK      43240           423
1012    EWR  CLE     134580           404
1013    FLL  CLE     136010          1062
1014    IAD  RSW      73820           891
1015    DEN  RNO     238960           804
1016    ORD  COS      57370           911
1017    ORD  SLN       5350           559
1018    BOS  EWR     297570           200
1019    EWR  MIA     548470          1085
1020    IAD  BOS     150390           413
1021    IAH  VPS      10210           528
1022    IAH  DEN     634840           862
1023    LAX  SBA      19690            89
1024    LAX  EWR     815750          2454
1025    MCI  DEN     400860           533
1026    ORD  IAD     162990           588
1027    ORD  ORF     109610           717
1028    ORD  DLH      30980           397
1029    PDX  DEN     474230           991
1030    PHX  DEN    1056610           602
1031    SAT  DEN     348530           794
1032    SMF  DEN     443410           909
1033    EWR  DFW     386740          1372
1034    ORD  JLN       6270           484
1035    SFO  IAH     350880          1635
1036    CLE  DEN     273400          1201
1037    CLE  RSW     161370          1025
1038    CLE  EWR     133080           404
1039    DEN  COS     277410            73
1040    DEN  SMF     453110           909
1041    IAD  BNA      68490           542
1042    IAH  COS      35020           809
1043    IAH  OKC     108730           395
1044    JAX  EWR     127780           820
1045    MCO  FLL     136660           177
1046    MIA  EWR     548920          1085
1047    ORD  SLC     275010          1250
1048    ORD  JAC      54440          1162
1049    PBI  EWR     395660          1023
1050    PHX  EWR     352900          2133
1051    RDU  EWR     195890           416
1052    RSW  EWR     297330          1068
1053    SAN  EWR     218790          2425
1054    SAV  EWR      64950           708
1055    SFO  EWR     728880          2565
1056    SJU  EWR     333830          1608
1057    SLC  EWR     103240          1969
1058    SRQ  EWR     101350          1034
1059    TPA  EWR     366080           997
1060    DEN  FSD     105460           483
1061    DEN  SFO     697100           967
1062    EWR  PQI      13770           515
1063    IAD  FLL     102090           901
1064    IAH  GRK       5640           166
1065    SFO  FLL     120150          2584
1066    DEN  TPA     377210          1506
1067    DEN  SAT     325580           794
1068    ORD  GSP      63480           577
1069    EWR  PIT      99010           319
1070    EWR  SDF      32880           642
1071    EWR  SRQ     101900          1034
1072    IAH  ECP      30990           572
1073    IAH  MSY     301870           305
1074    IAH  SDF      40000           788
1075    SFO  SMF      38490            86
1076    SFO  BWI      40520          2457
1077    SFO  MCO     160410          2446
1078    BNA  IAD      72320           542
1079    BOS  IAD     145230           413
1080    FLL  IAD     100400           901
1081    JAX  IAD      71760           630
1082    LAX  IAD     336730          2288
1083    MCO  IAD     196710           758
1084    PBI  IAD      25090           859
1085    RDU  IAD      78870           224
1086    SFO  PSC      14770           620
1087    TPA  IAD     105790           811
1088    DEN  ABQ     236050           349
1089    JAX  IAH      80410           817
1090    LAX  IAH     584590          1379
1091    LGA  IAH     359890          1416
1092    MSY  IAH     300970           305
1093    ORD  PAH      11570           342
1094    PHX  IAH     252910          1009
1095    RSW  IAH      75740           861
1096    TPA  IAH     176230           787
1097    DEN  CHS      78300          1449
1098    DEN  OKC     225600           495
1099    DEN  DCA     213650          1476
1100    EWR  PWM      74340           284
1101    IAD  ROC      40680           288
1102    IAD  JAX      73390           630
1103    IAH  SAT     198680           191
1104    SFO  JFK     855410          2586
1105    DEN  BWI     349370          1491
1106    DEN  CMH     194210          1154
1107    EWR  RIC      56630           277
1108    EWR  LAS     393420          2227
1109    IAD  BGR       5520           601
1110    IAD  MHT       4410           418
1111    IAH  BNA     218390           657
1112    IAH  MKE      37670           984
1113    IAH  CLE      89970          1091
1114    IAH  IND      62050           844
1115    IAH  MCO     493060           854
1116    IAH  TPA     175930           787
1117    ORD  CMH     170850           296
1118    ORD  CVG     144680           264
1119    DEN  MSN     118550           826
1120    EWR  CVG      86340           569
1121    IAH  DTW     214480          1075
1122    IAH  CVG      57820           871
1123    IAH  RSW      74990           861
1124    LAS  LAX    1039680           236
1125    MCO  LAX     455390          2218
1126    ORD  DTW     271920           235
1127    DEN  SJC     304810           948
1128    DEN  PDX     476960           991
1129    IAD  DEN     385420          1452
1130    ORD  SMF     143750          1781
1131    DEN  RDU     220540          1436
1132    LAX  BWI     178190          2329
1133    DEN  OGG      97550          3302
1134    EWR  RSW     290150          1068
1135    IAD  ORF      67470           157
1136    IAH  PHX     246550          1009
1137    IAH  SAN     202920          1303
1138    ORD  FNT      63100           223
1139    IAH  PBI      17430           956
1140    IAH  LFT      58870           201
1141    DEN  IAD     397950          1452
1142    DEN  BHM      89240          1083
1143    DEN  BIL      95860           455
1144    DEN  KOA      52450          3329
1145    IAD  SYR      54540           296
1146    IAH  SLC     181700          1195
1147    DEN  STL     395270           770
1148    DEN  BDL      86860          1671
1149    DEN  IND     275430           977
1150    DEN  ORD     916180           888
1151    BWI  ORD     277710           621
1152    CLE  ORD     274400           315
1153    DCA  ORD     571520           612
1154    DEN  PSP     146010           776
1155    EWR  ORD     606000           719
1156    FLL  ORD     405990          1182
1157    GRR  DEN     143870          1015
1158    IAD  ORD     175150           588
1159    IAH  ORD     529540           925
1160    PIT  ORD     208570           413
1161    RIC  ORD     113760           642
1162    ROC  ORD     140830           528
1163    SAN  ORD     351540          1723
1164    DEN  LIH      51940          3414
1165    ORD  MEM      88050           491
1166    EWR  CMH      79240           463
1167    DEN  CID     101470           692
1168    EWR  PDX     108340          2434
1169    SFO  IAD     335090          2419
1170    SFO  PHX     446950           651
1171    IAD  BUF      45740           283
1172    ORD  CHA      28990           500
1173    ORD  BZN      83800          1186
1174    DEN  SDF      98220          1024
1175    DEN  BNA     381320          1014
1176    ORD  PIA      53630           130
1177    SFO  MFR      55740           329
1178    EWR  SAT      62550          1569
1179    IAH  DFW     458750           224
1180    IAH  PSP      17580          1269
1181    DEN  MLI      31000           752
1182    DEN  DFW     712270           641
1183    IAD  ITH      10700           250
1184    ORD  BTV      83670           763
1185    ORD  CID     101750           196
1186    ORD  DAY      95740           240
1187    AUS  SFO     218470          1504
1188    DCA  EWR     107850           199
1189    EWR  PVD      49500           160
1190    FLL  SFO     119810          2584
1191    IAD  PWM      42160           493
1192    IAD  PHL      23160           135
1193    IAH  STL      59100           667
1194    OGG  SFO     256520          2338
1195    ORD  PVD      71440           849
1196    ORD  ROC     140970           528
1197    ORD  MLI      60930           139
1198    EWR  DCA     111770           199
1199    IAH  BDL      27180          1507
1200    IAD  MIA      52840           921
1201    CLE  TPA     168980           927
1202    IAD  CVG      39870           388
1203    IAH  ONT      32730          1334
1204    IAH  TUS      49160           936
1205    DAL  ECP      73700           674
1206    DAL  ABQ     162310           580
1207    LAS  LIH      32780          2818
1208    AUS  ABQ      67180           619
1209    LAS  ABQ     145850           486
1210    PHX  ABQ     247770           328
1211    BWI  ALB     174650           289
1212    BWI  MCO     651950           787
1213    BWI  PBI     120770           883
1214    BWI  RSW     154540           919
1215    MCO  RSW      40990           133
1216    MDW  SMF      56540          1790
1217    MDW  ALB      94850           717
1218    BWI  SMF       3010          2395
1219    MCO  ALB     120380          1073
1220    LAS  AMA      37600           758
1221    DAL  AMA     106030           323
1222    BWI  ATL     633670           577
1223    DAL  ATL     338830           721
1224    DAL  ELP     166980           562
1225    DAL  LAS     297050          1067
1226    DAL  LAX     205070          1246
1227    DAL  PHX     348590           879
1228    HOU  ATL     321530           696
1229    LGA  ATL     898100           762
1230    MCO  ATL    1137640           404
1231    MDW  ATL     353430           591
1232    MKE  ATL     282690           669
1233    PHX  LGB     190070           355
1234    PHX  OAK     266980           646
1235    PHX  SLC     528340           507
1236    STL  ATL     339570           484
1237    AUS  ATL     477050           813
1238    BNA  ATL     457750           214
1239    CLE  ATL     366130           554
1240    ECP  ATL     261440           240
1241    FLL  ATL    1015960           581
1242    HOU  TUL      63590           453
1243    IND  ATL     394950           432
1244    JAN  ATL     223610           341
1245    LAS  OGG      57120          2695
1246    LIT  ATL     219340           453
1247    MCI  ATL     341710           692
1248    MEM  ATL     378710           332
1249    MYR  ATL     147200           317
1250    PHL  ATL     635510           666
1251    PHX  HNL     172070          2917
1252    PIT  ATL     313180           526
1253    RIC  ATL     419640           481
1254    RSW  ATL     497710           515
1255    TPA  ATL     850170           406
1256    BNA  BOS     214300           942
1257    DAL  LGA     175140          1381
1258    DAL  OMA      39220           586
1259    DAL  SAV      42990           914
1260    ELP  AUS     157020           528
1261    HOU  MIA     127600           955
1262    HOU  OMA      38870           804
1263    LGB  OAK     165870           353
1264    MDW  SEA      70710          1733
1265    PHX  PSP     146650           261
1266    PHX  SAN     628240           304
1267    PHX  AUS     339670           872
1268    SAN  AUS     219480          1164
1269    BUR  AUS      49660          1241
1270    BWI  AUS     133950          1342
1271    DAL  AUS     220890           189
1272    DCA  AUS      45540          1315
1273    HOU  AUS     141730           148
1274    HRL  AUS      56590           273
1275    LAX  AUS     522100          1242
1276    LGB  AUS      67040          1226
1277    MCI  AUS      95550           650
1278    MDW  AUS     169270           972
1279    MSP  AUS     133670          1042
1280    MSY  AUS     157080           444
1281    OAK  AUS      56480          1497
1282    RDU  AUS     101110          1162
1283    SNA  AUS      60090          1209
1284    STL  AUS     130530           721
1285    TPA  PVD      71510          1136
1286    MDW  LAS     358740          1521
1287    MDW  ONT      47920          1706
1288    BWI  BDL     171510           283
1289    MCO  BDL     307940          1050
1290    BWI  BHM      40710           682
1291    DAL  BHM      88080           587
1292    HOU  BHM      50630           570
1293    MCO  BHM      57340           479
1294    MDW  BHM      52330           570
1295    TPA  BHM      38880           459
1296    LAS  BLI      34700           954
1297    AUS  BNA     225690           756
1298    BDL  BNA      44140           852
1299    DAL  BNA     231670           623
1300    DEN  MTJ     114710           196
1301    HOU  BNA     142000           670
1302    ISP  BNA      32330           803
1303    MCI  BNA     122920           491
1304    MCO  BNA     315080           616
1305    ORF  BNA      43320           585
1306    PHX  RNO     219780           601
1307    RSW  BNA      47340           722
1308    SJC  LGB      94660           324
1309    SRQ  BNA      76740           648
1310    TPA  BNA     190520           612
1311    BOS  BNA     214170           942
1312    BWI  BNA     174830           587
1313    CHS  BNA      74200           439
1314    CLE  BNA      88490           448
1315    CLT  BNA     311980           328
1316    CMH  BNA      70780           337
1317    DTW  BNA     217430           456
1318    ECP  BNA     108760           401
1319    JAX  BNA      89360           483
1320    MDW  BNA     205990           395
1321    MIA  BNA     196750           806
1322    MKE  BNA      83720           475
1323    MSY  BNA     117380           471
1324    MYR  BNA      59650           471
1325    OAK  HNL     127750          2409
1326    OAK  OGG      90980          2349
1327    PHL  BNA     220700           675
1328    PIT  BNA      80910           462
1329    PNS  BNA      83940           391
1330    RDU  BNA     141990           442
1331    SAV  BNA      46260           417
1332    VPS  BNA      79350           389
1333    DEN  BUF      66890          1359
1334    DEN  MIA     299070          1709
1335    LAS  BOI     102090           519
1336    OAK  BOI      85530           512
1337    PHX  BOI     160570           735
1338    SAN  BOI      56320           749
1339    LAS  RNO     348130           345
1340    BNA  DAL     232490           623
1341    BNA  HOU     146480           670
1342    BWI  CHS     122120           472
1343    BWI  GSP      38780           426
1344    BWI  IND      88920           516
1345    BWI  JAX     137550           663
1346    BWI  PHX     129510          1999
1347    BWI  SAV      80260           549
1348    MDW  DEN     367810           895
1349    MDW  LAX     174020          1750
1350    MDW  MSP     268720           349
1351    MDW  PHX     367880          1444
1352    MDW  SJC      60310          1838
1353    MDW  BOS     143840           861
1354    BWI  SRQ     130270           880
1355    FLL  BUF      65580          1166
1356    MCO  BUF     204450          1011
1357    MDW  BUF     112790           468
1358    DAL  BUR      25170          1243
1359    DAL  MSY     252900           436
1360    DAL  RDU      45370          1052
1361    DAL  TPA     145240           917
1362    LAS  OKC      87800           986
1363    SMF  BUR     251690           358
1364    AUS  BUR      51190          1241
1365    DEN  BUR     193030           850
1366    HOU  BUR      19420          1389
1367    OAK  BUR     301650           325
1368    SJC  BUR     236870           296
1369    BHM  BWI      37800           682
1370    BNA  BWI     166400           587
1371    BNA  SEA     146690          1978
1372    CVG  BWI      80020           430
1373    GRR  BWI      46640           528
1374    IND  BWI      94220           516
1375    MDW  BWI     180460           611
1376    SAV  BWI      77980           549
1377    VPS  BWI      36650           819
1378    BDL  BWI     172810           283
1379    BUF  BWI     164180           281
1380    CHS  BWI     122420           472
1381    CLE  BWI      89210           314
1382    FLL  SJU     345700          1046
1383    GSP  BWI      37960           426
1384    HOU  BWI     151910          1246
1385    ISP  BWI     130550           220
1386    LAS  KOA      29160          2717
1387    LGA  BWI      68520           185
1388    MDW  IAD      81120           577
1389    MIA  BWI     279100           946
1390    MYR  BWI     138330           399
1391    ORF  BWI     163750           159
1392    PHX  KOA      72100          2860
1393    PIT  BWI     101720           210
1394    PVD  BWI     176670           327
1395    PWM  BWI     126330           452
1396    RDU  BWI     130900           255
1397    ROC  BWI     122000           277
1398    RSW  BWI     156870           919
1399    SDF  BWI      76860           495
1400    DEN  RSW     152510          1607
1401    LAS  BZN      65790           701
1402    BNA  MCI     130620           491
1403    BNA  MKE      88800           475
1404    BNA  CHS      75940           439
1405    DAL  COS     104570           602
1406    MDW  CHS      61160           745
1407    STL  LAX     123180          1592
1408    BNA  RSW      49970           722
1409    BNA  CLE      87460           448
1410    BWI  CLE      91820           314
1411    LAS  HNL      88370          2762
1412    MDW  CLE     127550           307
1413    STL  CLE      50290           487
1414    BNA  CMH      78640           337
1415    MDW  CMH     133580           283
1416    MDW  TUS      28790          1440
1417    SRQ  CMH      23700           869
1418    STL  PHX     245520          1262
1419    BNA  ECP     104990           401
1420    BWI  CMH      95430           337
1421    DCA  CMH     111880           323
1422    LAS  CMH     131180          1771
1423    PHX  CMH     146330          1670
1424    STL  CMH      57270           409
1425    TPA  CMH     122650           829
1426    LAS  SBA      85620           289
1427    LAS  COS     127670           604
1428    PHX  COS     131770           551
1429    HOU  CRP      87150           187
1430    HOU  RSW      10380           853
1431    DEN  GEG     204250           836
1432    MDW  OAK      92230          1844
1433    BWI  CVG      79500           430
1434    MCO  CVG     230230           757
1435    MDW  CVG      97450           249
1436    MDW  TPA     224940           997
1437    TPA  CVG     104660           773
1438    ABQ  DAL     166250           580
1439    AUS  LGB      66330          1226
1440    BHM  DAL      86230           587
1441    DEN  OAK     255070           957
1442    DEN  DAL     373420           651
1443    ELP  DAL     167630           562
1444    HOU  DAL     330610           239
1445    LGA  DAL     169540          1381
1446    LGB  DAL      44190          1232
1447    MCO  DAL     268980           973
1448    OAK  DAL      93190          1468
1449    OMA  DAL      40340           586
1450    SJC  DAL      80340          1450
1451    SLC  DAL      79250           999
1452    SNA  DAL      41770          1216
1453    STL  DAL     185240           546
1454    TPA  DAL     146920           917
1455    AMA  DAL     110770           323
1456    AUS  DAL     224520           189
1457    CMH  DAL      48680           919
1458    COS  DAL     112490           602
1459    DCA  DAL     170500          1184
1460    ECP  DAL      75760           674
1461    FLL  DAL      94200          1108
1462    IAH  DAL     112030           216
1463    LBB  DAL     163100           293
1464    LIT  DAL      90640           296
1465    MAF  DAL     118770           319
1466    MCI  DAL     193630           461
1467    MDW  DAL     283100           793
1468    MSP  DAL       9090           853
1469    MSY  DAL     246160           436
1470    ORD  DAL     142660           798
1471    PHX  DAL     350330           879
1472    PNS  DAL      49190           592
1473    SAT  DAL     277840           247
1474    TUL  DAL     106360           238
1475    VPS  DAL      44500           630
1476    BNA  OAK      27650          1959
1477    BNA  SRQ      71310           648
1478    BNA  DCA     231320           562
1479    FLL  DCA     244730           899
1480    MDW  DCA     180450           601
1481    STL  DEN     402300           770
1482    STL  DCA     181260           719
1483    CMH  DCA     110650           323
1484    DAL  DCA     174580          1184
1485    MCO  DCA     496070           759
1486    MKE  DCA      56390           634
1487    OMA  DCA      42950          1012
1488    RSW  DCA     106820           892
1489    STL  BWI     110120           738
1490    TPA  DCA     238860           814
1491    BHM  DEN      85970          1083
1492    BNA  LGA     370250           764
1493    BUR  DEN     191920           850
1494    BWI  ISP     132790           220
1495    CVG  DEN     214950          1069
1496    DAL  SRQ      20390           934
1497    DAL  DEN     360880           651
1498    ELP  DEN     135400           563
1499    GEG  DEN     210010           836
1500    HOU  SRQ      34540           789
1501    IND  DEN     270060           977
1502    LAS  DEN    1031750           628
1503    LGA  DEN     577590          1620
1504    MDW  MCO     353770           990
1505    MDW  PHL     167820           668
1506    MKE  DEN     228930           896
1507    SBA  DEN     130540           916
1508    SNA  DEN     488960           846
1509    STL  FLL     109620          1057
1510    TUL  DEN     166230           541
1511    TUS  DEN     203990           639
1512    ABQ  DEN     241760           349
1513    BUF  DEN      70050          1359
1514    CHS  DEN      77220          1449
1515    HDN  DEN     115390           141
1516    HOU  DEN     279930           883
1517    ICT  DEN     137650           420
1518    LAS  SMF     537440           397
1519    LGB  DEN     120810           854
1520    LIT  DEN      93500           771
1521    MIA  DEN     296910          1709
1522    MSY  DEN     275790          1062
1523    OAK  DEN     250420           957
1524    OKC  DEN     228640           495
1525    RNO  DEN     252020           804
1526    SAN  DEN     667220           853
1527    TPA  DEN     387310          1506
1528    STL  TPA     121560           869
1529    BNA  IAH     207440           657
1530    MDW  HOU     215170           937
1531    MDW  SAN     154680          1728
1532    BNA  DTW     219550           456
1533    BWI  DTW     208200           409
1534    STL  DTW     132460           440
1535    HOU  ABQ      77710           759
1536    STL  PHL     112780           814
1537    AUS  ELP     143790           528
1538    DEN  ELP     129650           563
1539    HOU  ELP     104140           677
1540    LAS  ELP     103190           583
1541    LAX  ELP      81870           715
1542    PHX  SJC     305790           621
1543    AUS  TPA     135110           928
1544    HOU  JAX      36860           816
1545    HOU  TPA     124500           781
1546    PHX  ELP     217990           347
1547    SAT  ELP      60410           496
1548    OAK  SAN     342510           446
1549    LAS  EUG      45780           700
1550    OAK  EUG      76720           445
1551    LAS  FAT     120360           259
1552    BWI  DEN     346890          1491
1553    HOU  LAS     223600          1235
1554    HOU  SJC      47990          1621
1555    HOU  FLL     105270           957
1556    MCO  AUS     314670           994
1557    MSY  FLL     154190           674
1558    RDU  FLL      94610           680
1559    BWI  PVD     176540           327
1560    DAL  FLL      98170          1108
1561    DCA  FLL     228950           899
1562    MDW  FLL     163510          1167
1563    PHX  FLL      51320          1972
1564    PHX  SNA     487090           338
1565    PIT  FLL     111660           994
1566    SAT  FLL       6300          1145
1567    TPA  FLL     102890           197
1568    DEN  ORF      74180          1553
1569    DEN  TUL     169430           541
1570    LAS  GEG     103610           806
1571    MDW  MHT      61690           838
1572    PHX  GEG     105170          1020
1573    SMF  GEG      55540           649
1574    LAS  PHX     725740           255
1575    OAK  GEG      76630           723
1576    BWI  GRR      42560           528
1577    HOU  GSP      20550           845
1578    LIH  SJC      57680          2466
1579    OAK  LAX     411480           337
1580    OAK  SLC     233110           588
1581    PHX  BNA     216210          1449
1582    ATL  HOU     322810           696
1583    BNA  RDU     149660           442
1584    BWI  LGA      70880           185
1585    DAL  HOU     339930           239
1586    DEN  HOU     257970           883
1587    ELP  HOU     106340           677
1588    GSP  HOU      19440           845
1589    MIA  HOU     123770           955
1590    MSP  HOU      10220          1057
1591    MSY  HOU     198520           302
1592    PHX  HOU     206500          1020
1593    STL  HOU     127330           687
1594    STL  LGA     259480           888
1595    AUS  HOU     143500           148
1596    BUR  HOU      19930          1389
1597    ECP  HOU      59190           571
1598    FLL  HOU     110250           957
1599    HRL  HOU     143220           277
1600    LAS  HOU     228800          1235
1601    LAX  HOU     146730          1390
1602    LBB  HOU       4220           474
1603    LGA  HOU     123490          1428
1604    LGB  HOU      57140          1374
1605    MAF  HOU     102980           441
1606    MCO  HOU     240350           849
1607    MEM  HOU      41440           484
1608    OAK  HOU      82400          1642
1609    OKC  HOU     114060           419
1610    ONT  HOU      11410          1345
1611    PHL  HOU       3610          1336
1612    PNS  HOU      41600           488
1613    RSW  HOU      15200           853
1614    SAT  HOU     160720           192
1615    SAT  ISP         90          1624
1616    SAV  HOU      36130           853
1617    SJC  HOU      50090          1621
1618    TPA  HOU     128670           781
1619    TUL  HOU      67330           453
1620    HOU  JAN      75840           359
1621    HOU  HRL     135850           277
1622    MDW  COS      51760           917
1623    MDW  SLC      86710          1259
1624    DAL  OAK      91770          1468
1625    DAL  SMF      71810          1442
1626    MDW  GRR     109280           137
1627    DAL  IAH     114920           216
1628    DAL  MCO     253700           973
1629    MDW  IAH      80380           917
1630    DEN  ICT     142400           420
1631    STL  ICT      43110           392
1632    BWI  PWM     126240           452
1633    DAL  IND      63720           755
1634    HOU  IND      37110           861
1635    MCO  IND     242930           829
1636    RSW  IND     123690           945
1637    SRQ  IND      25520           876
1638    BNA  ISP      33770           803
1639    BWI  MIA     279780           946
1640    BWI  VPS      35900           819
1641    BWI  MHT     164550           377
1642    STL  JAX      42910           753
1643    BNA  JAX      90080           483
1644    MDW  JAX      47400           849
1645    PHX  ATL     512350          1587
1646    PHX  BWI     123070          1999
1647    PHX  OKC     139040           833
1648    ABQ  LAS     136810           486
1649    AMA  LAS      35570           758
1650    AUS  IND      80250           919
1651    AUS  MSY     163970           444
1652    DAL  PIT      14890          1060
1653    GEG  LAS     104090           806
1654    MDW  PIT     137430           402
1655    MKE  TPA      84380          1075
1656    OAK  LAS     607610           407
1657    PDX  LAS     441990           763
1658    SAT  ATL     380670           874
1659    SLC  MDW      92290          1259
1660    SMF  LAS     540530           397
1661    SNA  LAS     517190           226
1662    STL  PIT      46310           554
1663    BOI  LAS      97590           519
1664    BUR  LAS     417860           223
1665    BWI  LAS     226220          2106
1666    BZN  LAS      66190           701
1667    COS  LAS     125940           604
1668    EUG  LAS      47070           700
1669    LGB  LAS     187670           231
1670    MKE  LAS     174790          1524
1671    ONT  LAS     236440           197
1672    PSP  LAS      40530           173
1673    RNO  LAS     340660           345
1674    SAN  LAS     686560           258
1675    SBA  LAS      85080           289
1676    SJC  LAS     332880           386
1677    TUL  LAS      45160          1076
1678    TUS  LAS     105080           365
1679    ABQ  LAX     154950           677
1680    ELP  LAX      93150           715
1681    HNL  LIH     160190           102
1682    MDW  MSY     124290           825
1683    MSY  SAT      36080           494
1684    MSY  LAX     176780          1670
1685    PHX  TUL      69200           935
1686    PHX  MCO     264530          1849
1687    AUS  FLL     142410          1105
1688    AUS  LAX     527950          1242
1689    HOU  LAX     144390          1390
1690    RNO  LAX     213720           391
1691    SMF  LAX     348030           373
1692    SMF  ONT     206530           390
1693    AUS  RDU      95450          1162
1694    DAL  LBB     161190           293
1695    BWI  DAL     193120          1209
1696    BWI  HOU     139360          1246
1697    HOU  LGA     127500          1428
1698    STL  MSY      70180           604
1699    STL  OKC      53220           462
1700    MDW  LGA     211690           725
1701    MSY  LGA     121340          1183
1702    DEN  LGB     120530           854
1703    LAS  MDW     382590          1521
1704    OAK  LGB     166060           353
1705    SMF  SNA     271480           404
1706    STL  LGB      34780          1581
1707    HNL  LGB      52390          2569
1708    HOU  LGB      58650          1374
1709    HOU  ONT      10780          1345
1710    LAS  LGB     195860           231
1711    MDW  LGB      40910          1741
1712    OGG  LGB      33030          2498
1713    RNO  LGB      68950           402
1714    SMF  LGB     150830           387
1715    DAL  LIT      95650           296
1716    DAL  MAF     124560           319
1717    HOU  MAF      89320           441
1718    AUS  MCI      96870           650
1719    DAL  MCI     191990           461
1720    MDW  SRQ      65430          1035
1721    MDW  MCI     207870           405
1722    BWI  MCI      75940           967
1723    FLL  MCI      53560          1242
1724    LGA  MCI     150210          1107
1725    MCO  MCI     196840          1072
1726    MSY  MCI      30960           689
1727    RSW  MCI      33160          1155
1728    BWI  BUF     151300           281
1729    DAL  BZN       4600          1172
1730    DAL  ONT      38400          1200
1731    DAL  SEA      53890          1670
1732    DEN  FAT     116920           844
1733    HOU  PHX     210810          1020
1734    MCI  MCO     196490          1072
1735    STL  BOS     136380          1047
1736    STL  DSM      51600           259
1737    STL  SAN      52110          1557
1738    ALB  MCO     121660          1073
1739    BDL  MCO     306350          1050
1740    BHM  MCO      55280           479
1741    BUF  MCO     200620          1011
1742    CVG  MCO     234050           757
1743    FLL  MCO     136870           177
1744    IND  MCO     249430           829
1745    MEM  MCO      77650           684
1746    MSY  MCO     244650           551
1747    ORF  MCO      63310           655
1748    PHX  LIH      71970          2979
1749    SDF  MCO     103710           719
1750    STL  MCO     304110           882
1751    AUS  MDW     172550           972
1752    BHM  MDW      53230           570
1753    BNA  MDW     207930           395
1754    BWI  MDW     198130           611
1755    CHS  MDW      63160           745
1756    CMH  MDW     142900           283
1757    DAL  MDW     278260           793
1758    DCA  MDW     181400           601
1759    DEN  MDW     354270           895
1760    FLL  MDW     157960          1167
1761    GRR  MDW     106030           137
1762    IAD  MDW      86440           577
1763    JAX  MDW      42910           849
1764    LGA  MDW     212540           725
1765    MCI  MDW     213280           405
1766    MCO  MDW     351830           990
1767    MSP  MDW     260760           349
1768    MSY  MDW     123990           825
1769    OMA  MDW     149810           423
1770    ORF  MDW      59750           704
1771    PHX  MDW     342880          1444
1772    PVD  MDW      67610           842
1773    RIC  MDW      50900           629
1774    SAN  MDW     153910          1728
1775    SDF  MDW     106060           271
1776    SEA  MDW      73460          1733
1777    SFO  MDW      21760          1855
1778    TPA  MDW     227690           997
1779    BOS  MDW     145560           861
1780    BUF  MDW     107640           468
1781    CLE  MDW     130140           307
1782    CLE  STL      53060           487
1783    CVG  MDW      91110           249
1784    HOU  MDW     218500           937
1785    IAH  MDW      80310           917
1786    LAX  MDW     173980          1750
1787    MEM  MDW      86300           480
1788    MIA  MDW     120500          1182
1789    MYR  MDW      57200           738
1790    OAK  MDW      99150          1844
1791    OKC  MDW      48880           691
1792    PHL  MDW     169670           668
1793    PIT  MDW     146640           402
1794    RDU  MDW     118840           632
1795    RSW  MDW     167720          1105
1796    SMF  MDW      51720          1790
1797    SNA  MDW      33110          1731
1798    SRQ  MDW      72520          1035
1799    STL  MDW     177160           251
1800    TUS  MDW      30860          1440
1801    MCO  MEM      78050           684
1802    MDW  MEM      76030           480
1803    DAL  MEM      43480           423
1804    DEN  MEM     110130           872
1805    HOU  MEM      48840           484
1806    BWI  SAT      79340          1407
1807    STL  MSP     151230           448
1808    MDW  MIA     119820          1182
1809    MSY  MIA     154180           675
1810    STL  MCI      81380           237
1811    BWI  MKE      73550           641
1812    DCA  MKE      59300           634
1813    PHX  MKE     176210          1460
1814    RSW  MKE      81240          1183
1815    STL  MKE      61270           317
1816    HOU  MSP       7910          1057
1817    STL  RSW     103150           979
1818    HOU  SAN      91040          1313
1819    HOU  MSY     181310           302
1820    MCI  MSY      34320           689
1821    BNA  MSY     120260           471
1822    BWI  MSY     129260           998
1823    FLL  MSY     154720           674
1824    LAX  MSY     186010          1670
1825    LGA  MSY     121090          1183
1826    MCO  MSY     241480           551
1827    MCO  COS       6630          1520
1828    MIA  MSY     153990           675
1829    SAT  MSY      37830           494
1830    TPA  MSY     121360           488
1831    DAL  TUL     114160           238
1832    BWI  MYR     138100           399
1833    MDW  MYR      61870           738
1834    AUS  OAK      52510          1497
1835    BLI  OAK      51420           764
1836    BUR  OAK     296520           325
1837    HNL  OAK     128300          2409
1838    LIH  SAN      50420          2676
1839    ONT  OAK     169570           362
1840    PHX  IND     193560          1488
1841    PSP  OAK      65610           418
1842    SAN  OAK     356100           446
1843    BOI  OAK      79670           512
1844    BUR  SJC     230000           296
1845    EUG  OAK      75280           445
1846    GEG  OAK      67490           723
1847    KOA  OAK      51010          2378
1848    SBA  OAK      30370           263
1849    SNA  OAK     306740           371
1850    HNL  SMF      56790          2462
1851    AUS  OKC      48080           358
1852    HOU  OKC     117040           419
1853    MDW  OKC      50370           691
1854    PHX  OGG     137230          2845
1855    STL  SRQ      32170           903
1856    LAS  OMA     120200          1099
1857    MDW  OMA     154350           423
1858    STL  OMA      66860           342
1859    HOU  SAT     160370           192
1860    OAK  ONT     158690           362
1861    SJC  ONT     136880           333
1862    BNA  SAV      47440           417
1863    PHX  ORD     775390          1440
1864    BNA  ORD     338220           409
1865    DAL  ORD     142510           798
1866    BNA  ORF      46030           585
1867    MDW  ORF      64250           704
1868    BWI  ORF     159000           159
1869    MCO  ORF      60190           655
1870    MDW  BDL      82770           777
1871    PHX  OMA     176020          1037
1872    PHX  PDX     378980          1009
1873    PHX  TPA     117800          1788
1874    SJC  LIH      66700          2466
1875    MDW  SFO      18040          1855
1876    DEN  PHL     331900          1558
1877    AUS  MIA     213460          1103
1878    GEG  PHX     102430          1020
1879    HOU  MKE      13530          1004
1880    OAK  PHX     251160           646
1881    OKC  ATL     206540           761
1882    PDX  PHX     374630          1009
1883    RNO  PHX     214500           601
1884    SAT  PHX     281650           843
1885    SJC  PHX     301210           621
1886    SLC  PHX     523740           507
1887    SMF  PHX     368000           647
1888    ABQ  PHX     247990           328
1889    AUS  PHX     330280           872
1890    BUR  PHX     319390           369
1891    CMH  PHX     141590          1670
1892    COS  PHX     133720           551
1893    ELP  PHX     227050           347
1894    FLL  PHX      51020          1972
1895    LGB  PHX     189690           355
1896    LIH  HNL     166520           102
1897    MKE  PHX     174060          1460
1898    OMA  PHX     178800          1037
1899    ONT  PHX     273010           325
1900    PSP  PHX     151880           261
1901    SNA  PHX     468580           338
1902    TPA  PHX     118280          1788
1903    PHX  PIT      81680          1814
1904    RSW  PIT      74870           966
1905    SRQ  PIT      21660           912
1906    BNA  PIT      83390           462
1907    BWI  PIT     103120           210
1908    FLL  PIT     113040           994
1909    BNA  PNS      81360           391
1910    DAL  PNS      46250           592
1911    HOU  PNS      42450           488
1912    SMF  PSP      47270           439
1913    LAS  PSP      43000           173
1914    MDW  RDU     120530           632
1915    STL  OAK      16640          1725
1916    BWI  RDU     125660           255
1917    BWI  SJU     172010          1565
1918    MCO  SAT      93960          1041
1919    TPA  RDU     146790           587
1920    MDW  RIC      51720           629
1921    BUR  RNO      34690           374
1922    LGB  RNO      68760           402
1923    SAN  RNO      80120           488
1924    SJC  RNO      29010           188
1925    MCO  ROC      45190          1033
1926    TPA  ROC      14020          1079
1927    MDW  DTW     161610           228
1928    MKE  RSW      83750          1183
1929    DCA  RSW      96740           892
1930    MCI  RSW      32100          1155
1931    MDW  RSW     163070          1105
1932    SDF  RSW      19550           835
1933    BOI  SAN      57980           749
1934    DAL  VPS      45430           630
1935    HOU  CHS      27440           928
1936    SJC  GEG      47330           742
1937    HNL  SAN     150340          2614
1938    OGG  SAN      71240          2541
1939    TUS  SAN      42610           368
1940    DAL  MSP      12450           853
1941    HOU  TUS      36270           945
1942    BNA  SAT      71690           822
1943    DAL  SAT     292030           247
1944    ELP  SAT      66370           496
1945    LAX  SAT     157880          1211
1946    LAS  DAL     300690          1067
1947    OAK  SBA      29690           263
1948    MCO  SDF     101880           719
1949    MDW  SDF     116410           271
1950    BWI  SDF      70790           495
1951    RSW  SDF      18980           835
1952    TPA  SDF      53450           727
1953    OAK  SNA     299800           371
1954    SJC  SNA     290770           342
1955    PHX  RDU      51880          1891
1956    BUR  SFO     195390           326
1957    SAN  SFO     538260           447
1958    DAL  SJC      85050          1450
1959    LAS  SJC     344370           386
1960    OGG  HNL     256530           100
1961    OGG  SJC     111020          2355
1962    HNL  OGG     274070           100
1963    KOA  OGG      32720            84
1964    LGB  SJC     100340           324
1965    ONT  SJC     136980           333
1966    RNO  SJC      31370           188
1967    SNA  SJC     298720           342
1968    MCO  SJU     904050          1189
1969    DAL  SLC      77160           999
1970    BUR  SLC     130550           574
1971    MCO  SLC     321400          1931
1972    SMF  SLC     205270           532
1973    GEG  SMF      55070           649
1974    SAN  MCI      37000          1334
1975    SEA  SMF     433120           605
1976    BUR  SMF     248860           358
1977    HNL  KOA     145970           163
1978    LGB  SMF     153700           387
1979    ONT  SMF     203700           390
1980    PSP  SMF      47420           439
1981    SNA  SMF     275180           404
1982    DAL  SNA      41230          1216
1983    PHX  MSY      77020          1300
1984    AUS  SNA      58030          1209
1985    CMH  SRQ      23120           869
1986    AUS  SRQ       2000           936
1987    IND  SRQ      27530           876
1988    LGA  SRQ      56320          1047
1989    BWI  STL     115470           738
1990    DAL  STL     194160           546
1991    FLL  STL     104120          1057
1992    HOU  STL     126570           687
1993    JAX  STL      43260           753
1994    LGA  STL     266440           888
1995    LGB  STL      40140          1581
1996    MDW  STL     179550           251
1997    MSY  STL      70480           604
1998    SEA  STL      85030          1709
1999    AUS  STL     129080           721
2000    BNA  BDL      46820           852
2001    BNA  STL     112220           272
2002    CMH  STL      54690           409
2003    DSM  STL      53180           259
2004    ECP  STL      35370           634
2005    ICT  STL      48480           392
2006    LAX  STL     117510          1592
2007    LIT  STL      53570           296
2008    MCI  STL      82750           237
2009    MCO  STL     305360           882
2010    MIA  STL      98300          1068
2011    MKE  STL      56090           317
2012    OKC  STL      60340           462
2013    OMA  STL      67900           342
2014    PHX  STL     244100          1262
2015    PNS  STL      18770           598
2016    SRQ  STL      30960           903
2017    BNA  TPA     187610           612
2018    BWI  SYR      73020           273
2019    CMH  DEN     196120          1154
2020    DCA  TPA     226450           814
2021    ORD  TPA     457090          1011
2022    RDU  TPA     146550           587
2023    SDF  TPA      53110           727
2024    BDL  TPA      95470          1111
2025    BHM  TPA      40080           459
2026    BUF  TPA      93500          1053
2027    CVG  TPA     107020           773
2028    FLL  TPA     106160           197
2029    SAN  TUS      43390           368
2030    LAS  TUS     116680           365
2031    BNA  VPS      78380           389
2032    DAL  MKE      44140           850
2033    IAH  SHV      31870           192
2034    PHX  MFR      33990           854
2035    IAD  MCO     194250           758
2036    STL  DFW     211700           550
2037    DFW  SMF     208900          1431
2038    PHX  CVG      38970          1569
2039    DFW  JAX     219370           918
2040    DFW  SAN     476300          1171
2041    DFW  RDU     223120          1061
2042    LGA  IAD      89640           229
2043    PIT  IAD      53410           182
2044    SAV  IAH      29960           851
2045    TUL  IAH      85890           429
2046    DFW  LGA     742200          1389
2047    PHX  PHL     298260          2075
2048    BFL  PHX      56640           425
2049    EUG  PHX      37760           952
2050    DFW  SNA     409090          1205
2051    DFW  PNS     154530           604
2052    IAH  MSP     163230          1034
2053    IAH  SJU     129690          2007
2054    IAH  IAD     142840          1190
2055    DCA  BGR      58570           590
2056    DCA  BUF      55930           296
2057    PHL  MDT      49440            84
2058    JFK  JAX     159640           828
2059    IND  BOS      85120           818
2060    LGA  CVG     113960           585
2061    CMH  BOS      70830           640
2062    JFK  DEN     137640          1626
2063    JFK  MSY     123840          1182
2064    LGA  DSM      16750          1031
2065    LGA  ORF     106470           296
2066    LGA  DFW     727730          1389
2067    LGA  PBI     253180          1035
2068    LGA  BOS     432440           184
2069    PIT  BOS     115330           496
2070    RDU  BOS     215960           612
2071    JFK  SFO     830530          2586
2072    EWR  MHT      26450           209
2073    EWR  CHS     122220           628
2074    CLT  TUL      68580           842
2075    LGA  CLE     128330           419
2076    JFK  CLE      62780           425
2077    JFK  CLT     240930           541
2078    LGA  CLT     438570           544
2079    LGA  IND     132300           660
2080    LGA  CMH     154310           479
2081    BOS  CMH      69350           640
2082    PHL  CMH      60550           406
2083    JFK  CVG      23110           589
2084    CLT  SMF      39150          2244
2085    JFK  DCA      81780           213
2086    RDU  DCA     129930           227
2087    SDF  DCA      53990           474
2088    BOS  DCA     743410           399
2089    LGA  MSN      39680           812
2090    CHS  EWR     120790           628
2091    DTW  EWR     201160           488
2092    EYW  EWR      41890          1196
2093    MKE  EWR      49380           725
2094    MSY  EWR     157690          1167
2095    PWM  EWR      73590           284
2096    CLT  PNS     103880           488
2097    LGA  GSO      88980           461
2098    MSY  IAD      50690           955
2099    SRQ  IAD      14710           849
2100    LGA  ILM      63900           500
2101    BOS  IND      86400           818
2102    CLT  DAB      88710           416
2103    IAD  IND      60310           476
2104    EWR  MKE      50650           725
2105    BNA  MWA        470           171
2106    BWI  DFW     188990          1217
2107    BWI  JFK      54440           184
2108    DCA  ECP      21210           769
2109    ORF  JFK      71700           290
2110    PHL  PHX     303310          2075
2111    PHL  TYS      26040           554
2112    PIT  LGA     167630           335
2113    CLE  JFK      59700           425
2114    CMH  JFK      41350           483
2115    IND  JFK      51310           665
2116    IND  LGA     129780           660
2117    RIC  LGA     101090           292
2118    CVG  JFK      21320           589
2119    CLT  JFK     235220           541
2120    JAX  JFK     160610           828
2121    BOS  LGA     425410           184
2122    RDU  LGA     272810           431
2123    CMH  LGA     151830           479
2124    IAD  GSP      11630           384
2125    DCA  ORF      70350           142
2126    LGA  OMA      47860          1148
2127    JFK  ORF      75770           290
2128    BOS  PHL     396560           280
2129    JFK  PIT      62580           340
2130    LGA  PIT     166370           335
2131    ORD  FAI      13660          2785
2132    BOS  PIT     116640           496
2133    DCA  SAV      40460           519
2134    EWR  SAV      65390           708
2135    IAD  SDF      23780           451
2136    PHL  RDU     152980           337
2137    EWR  RDU     196960           416
2138    IAD  PVD      32390           371
2139    CLT  BOS     490360           728
2140    LGA  SDF      72440           659
2141    CLT  CMH     155470           347
2142    DCA  CLT     268420           331
2143    ORD  CHS      97260           760
2144    IAD  CLE      88930           288
2145    IAD  CHO      25660            77
2146    IAD  CAK       5750           251
2147    BUF  IAD      44250           283
2148    IAD  SEA     185200          2306
2149    ORD  SUX       9150           436
2150    GSO  ORD      54640           589
2151    HPN  ORD      79410           738
2152    IAD  LAS      89650          2065
2153    MSP  SAT      78830          1097
2154    MSP  AZA      12710          1267
2155    BZN  MSP     117540           874
2156    SFO  MSP     276700          1589
2157    MSP  EAU         90            85
2158    PHL  ALB      44320           212
2159    PHL  ILM      30910           413
2160    PHL  DEN     316840          1558
2161    PHL  DCA      44830           119
2162    PHL  SAN      90220          2370
2163    PHL  MYR      72060           473
2164    PHL  RSW     210180           993
2165    PHL  RIC      41980           198
2166    PHL  GSO      31120           365
2167    BOS  SYR      24480           265
2168    PHL  MCI      44730          1038
2169    FLG  DEN      22000           503
2170    DEN  GRR     143240          1015
2171    IAD  HSV      14580           596
2172    LIT  IAH      47480           374
2173    EWR  LAX     803750          2454
2174    EYW  FLL       5370           145
2175    MCO  PNS      30790           381
2176    MCO  DEN     602000          1546
2177    TPA  PNS       4450           330
2178    FLL  HVN      34580          1127
2179    TPA  HVN      26140          1067
2180    HVN  MCO      62910          1005
2181    BOS  LAX     560640          2611
2182    IAH  ASE      24320           913
2183    LGA  BHM      27850           866
2184    MKE  LGA      60370           738
2185    LGA  MKE      61860           738
2186    LAS  DCA      59280          2089
2187    MIA  DCA     315170           919
2188    BOS  DFW     409970          1562
2189    PSP  DFW     138700          1126
2190    OGG  DFW     153160          3711
2191    DFW  HNL     163900          3784
2192    PHX  JFK     312710          2153
2193    DFW  ATL     772690           731
2194    STT  ORD       8990          2115
2195    SAN  PHL      85840          2370
2196    SFO  PHL     160820          2521
2197    MCI  PHX     231390          1044
2198    RDU  PHX      50940          1891
2199    MIA  SAN      45540          2267
2200    SEA  FAI     232160          1533
2201    HNL  PDX      52600          2603
2202    RSW  BOS     250150          1249
2203    SFO  BOS     502000          2704
2204    RSW  LGA     139600          1080
2205    JFK  ONT      48230          2429
2206    BDL  SFO      11170          2625
2207    ABQ  ATL     152180          1269
2208    BOS  ATL     568900           946
2209    JAC  ATL      27200          1572
2210    MLB  ATL     128560           442
2211    PBI  ATL     560700           545
2212    PDX  ATL     197620          2172
2213    MCO  BOS     603310          1121
2214    LAX  DCA     230060          2311
2215    MCI  DTW      97660           629
2216    PHX  DTW     322850          1671
2217    DFW  DTW     355010           986
2218    AUS  JFK     250740          1521
2219    DEN  JFK     136420          1626
2220    FLL  JFK     603990          1069
2221    SJU  JFK     459370          1598
2222    CVG  LAX      42830          1900
2223    JFK  LAX    1252310          2475
2224    RDU  LAX     101210          2239
2225    MIA  MSP     148850          1501
2226    SAN  MSP     236620          1532
2227    ATL  SJC      82820          2116
2228    AUS  SLC     165250          1086
2229    MCI  SLC     107100           920
2230    MSP  SLC     250120           991
2231    LAX  TPA     145670          2158
2232    SEA  TPA     132890          2520
2233    CLT  LAX     366120          2125
2234    HPN  DTW      32220           505
2235    PSP  ORD      55430          1652
2236    RSW  DEN     153200          1607
2237    LAX  JFK    1256120          2475
2238    BOS  IAH     192930          1597
2239    HDN  IAH       8210           985
2240    RNO  IAH      22540          1530
2241    SLC  IAH     177560          1195
2242    SFO  RDU      50750          2400
2243    TPA  SFO      66680          2393
2244    RDU  IAH      60860          1042
2245    CMH  EWR      80640           463
2246    MCI  LGA     148090          1107
2247    ABQ  ORD      67980          1118
2248    LGA  RIC     101400           292
2249    SEA  PHL     147050          2378
2250    MSP  MCI      93040           393
2251    SLC  DFW     453590           989
2252    TPA  GRR      12000          1041
2253    SJU  PHL     300130          1576
2254    FLL  MYR      55400           529
2255    ANC  FAI     184100           261
2256    HNL  GUM      68890          3801
2257    GUM  SPN      26920           129
2258    HNL  SEA     293440          2677
2259    KOA  SEA     181850          2688
2260    HNL  SLC      82340          2994
2261    OGG  DEN     101370          3302
2262    LAS  IAD      90400          2065
2263    ATL  ABE      56460           692
2264    BTR  ATL     101020           448
2265    GNV  ATL     126620           300
2266    GPT  ATL     102330           352
2267    LEX  ATL     163620           304
2268    MOB  ATL      86380           302
2269    ROA  ATL      71640           357
2270    SGF  ATL      66210           563
2271    TUL  ATL     108590           674
2272    LGA  BGR      50190           378
2273    MKE  BOS      58450           860
2274    RIC  BOS     105510           474
2275    ATL  CHO      50630           457
2276    LGA  CHS     127520           641
2277    BOS  CVG      83130           752
2278    DTW  MDT      32790           371
2279    BTV  DTW      29040           537
2280    CHS  DTW      43580           667
2281    GSP  DTW      32710           508
2282    PWM  DTW      44570           668
2283    RDU  DTW     130110           501
2284    ROC  DTW      71990           296
2285    TYS  DTW      37480           443
2286    CVG  EWR      87590           569
2287    ATL  PHX     503560          1587
2288    JFK  IND      50730           665
2289    BGR  JFK      21370           382
2290    BNA  JFK     106860           765
2291    CHS  JFK     134230           636
2292    CHS  LGA     126180           641
2293    PIT  JFK      59190           340
2294    SAV  JFK     104080           718
2295    BHM  LGA      27700           866
2296    GSO  LGA      87970           461
2297    GSP  LGA      44700           610
2298    MEM  LGA      63780           963
2299    PWM  LGA      78050           269
2300    SAV  LGA      85320           722
2301    ATL  MDT      80600           620
2302    CVG  MSP      96220           596
2303    DSM  MSP      57110           232
2304    JFK  MSP      88160          1029
2305    LGA  RDU     274490           431
2306    ATL  ROA      70270           357
2307    DTW  ROC      65480           296
2308    LGA  TYS      35670           648
2309    TPA  AUS     137270           928
2310    BOS  AUS     163920          1698
2311    DFW  MSN      88220           821
2312    JFK  AUS     250420          1521
2313    MIA  BDL     122250          1194
2314    AUS  BOS     165430          1698
2315    DFW  BOS     414310          1562
2316    DFW  IND     194920           761
2317    PHX  BOS     251530          2300
2318    CLT  SFO     183110          2296
2319    CMH  CLT     151920           347
2320    LAS  CLT     401720          1916
2321    MSP  CLT     226560           930
2322    MSY  CLT     208980           651
2323    ORF  CLT     215040           290
2324    PHX  MRY      60040           598
2325    PIT  CLT     221870           366
2326    PWM  CLT      93090           813
2327    TPA  CLT     433860           507
2328    CLT  CVG     122100           335
2329    LGA  DCA     341730           214
2330    JAX  DFW     220980           918
2331    MEM  DFW     239980           431
2332    ABQ  DFW     290990           569
2333    BGR  DFW       1970          1717
2334    CMH  DFW     170780           926
2335    GSO  DFW      58320           999
2336    ICT  DFW     146740           328
2337    LAX  DFW     924080          1235
2338    MDT  DFW      37370          1231
2339    MFE  DFW     207090           469
2340    MKE  DFW     117230           853
2341    ONT  DFW     311440          1188
2342    PBI  DFW     116250          1102
2343    PWM  DFW       8210          1622
2344    RSW  DFW     190160          1017
2345    SFO  DFW     411610          1464
2346    ORD  SGF      57340           438
2347    ORD  COU      34260           315
2348    CLT  SEA     151840          2279
2349    MIA  IAH     320140           964
2350    DFW  FLL     373310          1119
2351    DFW  JFK     171400          1391
2352    MIA  LAS     231790          2174
2353    DFW  SHV      89090           190
2354    CLT  ILM     188250           185
2355    DFW  RIC     112220          1158
2356    CLT  BTV      54250           761
2357    ORD  JFK     158410           740
2358    AUS  MCO     315460           994
2359    DFW  MDT      36670          1231
2360    CLT  PWM      94470           813
2361    DFW  LIT     162300           304
2362    DFW  MFE     189060           469
2363    TPA  MIA     173050           204
2364    LAS  MIA     237140          2174
2365    PHX  MIA     164740          1972
2366    SFO  MIA     139220          2585
2367    SJU  MIA     389780          1045
2368    STT  MIA     138810          1107
2369    CLT  TLH      71450           386
2370    DFW  PBI     122120          1102
2371    DFW  CHS     113670           987
2372    EYW  ORD      37980          1251
2373    ONT  ORD       7520          1700
2374    SJU  ORD     118890          2072
2375    SNA  ORD     275440          1726
2376    SRQ  ORD      58220          1050
2377    CLT  CHO      99210           245
2378    DFW  PHL     399610          1303
2379    RSW  PHL     214510           993
2380    BOS  PHX     241940          2300
2381    EWR  PHX     345520          2133
2382    JFK  PHX     296470          2153
2383    MIA  PHX     157880          1972
2384    CLT  PDX      41730          2282
2385    DFW  BTR      84770           383
2386    MIA  RDU     200900           700
2387    DFW  RSW     189240          1017
2388    DFW  TRI      31400           868
2389    PHL  PIT      76580           268
2390    CLT  GSO     138100            83
2391    CLT  ROA      93210           155
2392    CLT  BHM     109970           350
2393    MIA  SJU     386580          1045
2394    MIA  CMH      36420           990
2395    PHL  SDF      31250           576
2396    DFW  FAR      38760           968
2397    DFW  YUM      21160          1022
2398    HNL  ANC      30590          2777
2399    BRW  ANC      30050           725
2400    ANC  BRW      30190           725
2401    SEA  DCA     105620          2329
2402    SEA  KTN      86220           680
2403    ANC  HNL      29830          2777
2404    ANC  KTN      13390           775
2405    LIH  LAX     219650          2615
2406    PDX  LAX     394570           834
2407    SEA  OMA      46880          1368
2408    ANC  OTZ      31920           548
2409    LIH  PDX      24440          2631
2410    SEA  OGG     195840          2640
2411    PSP  SEA     181570           987
2412    FLL  SEA      85170          2717
2413    LIH  SEA     140020          2701
2414    MCO  SEA     260360          2554
2415    DCA  SFO      95760          2442
2416    JFK  ABQ      40090          1826
2417    BOS  RSW     242510          1249
2418    FLL  ALB      51920          1204
2419    FLL  BDL      81380          1173
2420    SFO  BDL      11910          2625
2421    BUF  BOS      32020           395
2422    PBI  BOS     215780          1197
2423    SAN  BOS     168130          2588
2424    SRQ  BOS      34590          1220
2425    JFK  BUR      76460          2465
2426    PBI  DCA     153120           857
2427    RIC  FLL      67910           805
2428    ABQ  JFK      40830          1826
2429    BOS  SEA     326550          2496
2430    BUR  JFK      74740          2465
2431    PBI  JFK     254830          1028
2432    PSP  JFK      21600          2378
2433    BDL  LAX      29030          2527
2434    BUF  LAX      27650          2218
2435    JFK  PSP      22160          2378
2436    MCO  PVD     202960          1072
2437    PBI  PVD      26930          1148
2438    JFK  SAN     292370          2446
2439    JFK  SJU     451540          1598
2440    TPA  SJU     172530          1237
2441    JFK  SMF      41360          2521
2442    BOS  SRQ      33550          1220
2443    MCO  SYR      72000          1053
2444    ALB  ATL     122990           853
2445    BDL  ATL     264230           859
2446    BOI  ATL      56910          1838
2447    BZN  ATL      59650          1640
2448    CMH  ATL     316580           447
2449    DAY  ATL     102510           432
2450    EGE  ATL      15180          1312
2451    GSO  ATL     227430           306
2452    HSV  ATL     177410           151
2453    ILM  ATL      78430           377
2454    JAX  ATL     616980           270
2455    OMA  ATL     202420           821
2456    ORF  ATL     341020           516
2457    PNS  ATL     358330           271
2458    PWM  ATL      75530          1027
2459    RDU  ATL     540190           356
2460    SAN  ATL     319790          1892
2461    SFO  ATL     369910          2139
2462    SJU  ATL     210960          1547
2463    SNA  ATL     134240          1919
2464    TUS  ATL     118840          1541
2465    VPS  ATL     225830           250
2466    DTW  AUS     131150          1149
2467    SEA  AUS     192880          1770
2468    SLC  BNA      92550          1404
2469    MIA  BOS     442550          1258
2470    MSP  JAC       5990           872
2471    SLC  CLT     126220          1727
2472    FLL  CVG      37640           932
2473    LAS  CVG     116920          1678
2474    RSW  CVG     117590           879
2475    DTW  TVC      68580           207
2476    JFK  DFW     173890          1391
2477    AUS  DTW     124840          1149
2478    BOS  DTW     265770           632
2479    BUF  DTW     111030           241
2480    MKE  DTW     101970           237
2481    MYR  DTW      81640           636
2482    SAN  DTW     152810          1956
2483    SAT  DTW      63990          1214
2484    SFO  DTW     195790          2079
2485    SRQ  DTW      14400          1022
2486    ATL  ELP      88920          1282
2487    ATL  MLB     128060           442
2488    SEA  IAD     192200          2306
2489    SLC  IND       4510          1355
2490    MSY  JFK     126240          1182
2491    PBI  LGA     260700          1035
2492    IND  LAX      80170          1814
2493    TPA  LAX     139490          2158
2494    BOS  MCO     606680          1121
2495    SLC  MEM      49260          1262
2496    BOS  MIA     449030          1258
2497    JFK  MIA     729110          1089
2498    BDL  MSP     101690          1050
2499    BWI  MSP     180770           936
2500    DTW  MSP     264880           528
2501    FLL  MSP     124330          1487
2502    MCI  MSP      95600           393
2503    MKE  MSP     139840           297
2504    MSO  MSP      49950          1013
2505    PSP  MSP      45440          1454
2506    SAT  MSP      81870          1097
2507    SMF  MSP      78480          1517
2508    SNA  MSP      80090          1522
2509    SRQ  MSP      34040          1342
2510    BOS  JFK     281490           187
2511    DTW  GSO      14830           460
2512    CVG  RSW     116070           879
2513    DTW  SAT      62190          1214
2514    AUS  SEA     195780          1770
2515    JFK  SEA     409190          2422
2516    MSP  RAP      58710           489
2517    TPA  SEA     133400          2520
2518    BOS  SFO     493060          2704
2519    ATL  SJU     207670          1547
2520    BNA  SLC      91510          1404
2521    BOS  SLC     162250          2105
2522    BWI  SLC      72750          1865
2523    DCA  SLC      57690          1851
2524    FLL  SLC      93180          2084
2525    IND  SLC       4440          1355
2526    MSY  SLC      51260          1428
2527    PDX  SLC     279390           630
2528    RDU  SLC      55170          1823
2529    RNO  SLC     118080           422
2530    SAT  SLC      96310          1087
2531    STL  SLC     116740          1156
2532    TPA  SLC      59520          1888
2533    ATL  TRI      64760           227
2534    EWR  BTV      49800           266
2535    BTV  EWR      49520           266
2536    BUF  EWR      67160           282
2537    GRR  EWR      25390           605
2538    GSP  EWR      36910           594
2539    HHH  EWR       9730           687
2540    RIC  EWR      55640           277
2541    BTV  IAD      51920           441
2542    STL  IAD      19600           696
2543    KOA  LAX     234590          2504
2544    DFW  TLH      52970           767
2545    DFW  BRO      58830           482
2546    BRO  DFW      72370           482
2547    CAE  DFW      55860           922
2548    CMI  DFW      26770           692
2549    CRP  DFW     109380           354
2550    SPI  DFW      26910           630
2551    TYS  DFW      96850           771
2552    MIA  DSM       5690          1327
2553    MIA  PHL     375280          1013
2554    DFW  FSM      53030           227
2555    DFW  GJT      55270           773
2556    DFW  ICT     148000           328
2557    DFW  JAN      97020           408
2558    DFW  LCH      35540           295
2559    OMA  MIA       5670          1393
2560    MIA  OMA       4860          1393
2561    OMA  ORD     149660           416
2562    DSM  ORD     130960           299
2563    RST  ORD      33310           268
2564    DFW  SPI      27580           630
2565    MIA  TLH      52450           402
2566    CLT  SLC     117390          1727
2567    CLT  ELP       8050          1482
2568    MSN  CLT      63690           708
2569    CLE  CLT     161090           430
2570    DTW  CLT     280970           500
2571    LFT  CLT      31220           729
2572    LIT  CLT      74630           640
2573    MDT  CLT     121330           413
2574    DAY  DCA      51620           391
2575    TYS  DCA      43390           437
2576    DCA  GSO      35570           248
2577    PHL  MSN      17060           764
2578    MHT  PHL      44900           289
2579    DCA  PNS      45150           816
2580    DCA  HSV      57980           613
2581    MSP  BIS      86430           386
2582    DEN  CPR      54770           230
2583    DFW  CRP     107260           354
2584    ATW  DEN      16080           883
2585    BNA  DEN     380210          1014
2586    CPR  DEN      54230           230
2587    EUG  DEN      73690           996
2588    MAF  DEN      54340           563
2589    ORF  DEN      76180          1553
2590    SDF  DEN      94880          1024
2591    XWA  DEN      37790           582
2592    ALB  DTW      74430           489
2593    OMA  DTW      48370           651
2594    SBN  DTW      22720           157
2595    DFW  STL     218200           550
2596    ORD  HPN      80200           738
2597    MSP  IAH     165080          1034
2598    MCI  IAH      64060           643
2599    MKE  IAH      38020           984
2600    PSP  IAH      19140          1269
2601    XNA  LAX      17160          1371
2602    DEN  LBB      33600           456
2603    DEN  MAF      55520           563
2604    IAH  MCI      64530           643
2605    BIS  MSP      86710           386
2606    MEM  MSP      55800           700
2607    OKC  MSP      25310           694
2608    OMA  MSP      80100           282
2609    PIT  MSP      71340           726
2610    RIC  MSP       4970           970
2611    SDF  MSP      37300           604
2612    MSP  OMA      83890           282
2613    BDL  ORD     181640           783
2614    ALB  ORD     137780           723
2615    BHM  ORD      38280           583
2616    MEM  ORD      90450           491
2617    RAP  ORD      38900           780
2618    DTW  ORF      57480           529
2619    DRO  PHX      29410           351
2620    MSP  RIC       5480           970
2621    DEN  SAV      30830          1414
2622    ONT  SEA     237710           956
2623    ABQ  SFO      34510           896
2624    TUS  SFO      37540           751
2625    ABQ  SLC      65890           493
2626    FAT  SLC      73220           501
2627    HLN  SLC      37230           402
2628    PSC  SLC      56830           521
2629    PSP  SLC      62500           541
2630    RAP  SLC       8330           508
2631    TUS  SLC      68300           601
2632    SLC  TUS      64480           601
2633    BOI  PDX      81790           344
2634    SFO  DCA     101970          2442
2635    LIH  DEN      52090          3414
2636    MSN  DEN     117600           826
2637    MSO  DEN      95710           679
2638    IAH  DSM      37110           802
2639    SAT  EWR      65780          1569
2640    SMF  EWR      40530          2500
2641    DEN  ANC      68150          2405
2642    IAH  SMF      55630          1609
2643    PDX  IAD      39970          2327
2644    PHX  IAD      66530          1956
2645    SAN  IAD     119260          2253
2646    SJU  IAD      69580          1571
2647    BWI  IAH     121200          1235
2648    CMH  IAH      49220           986
2649    CVG  IAH      57270           871
2650    HNL  IAH      84810          3904
2651    JAC  IAH      12180          1265
2652    PHL  IAH     172490          1325
2653    PIT  IAH      89030          1117
2654    SEA  IAH     215880          1874
2655    EWR  MCI      54500          1092
2656    IAH  MFE     104690           316
2657    IAH  OMA      44350           781
2658    IAH  PIT      90560          1117
2659    EWR  SAN     203570          2425
2660    ORD  ASE      39220          1013
2661    BWI  SFO      38580          2457
2662    HNL  SFO     428870          2398
2663    MCO  SFO     158910          2446
2664    SEA  SFO     629450           679
2665    EWR  SMF      40290          2500
2666    DEN  ASE     111570           125
2667    EWR  SNA      96500          2434
2668    SJC  AUS     140970          1476
2669    BNA  BUR      27500          1791
2670    SJU  BWI     169200          1565
2671    RSW  CMH     101880           930
2672    ECP  DEN       7660          1250
2673    HOU  PDX       2110          1843
2674    HNL  LAS      93470          2762
2675    MCI  LAS     202010          1139
2676    BNA  SAN      76280          1751
2677    HNL  PHX     179430          2917
2678    IND  RSW     130080           945
2679    SAT  SAN      42680          1129
2680    FLL  MKE      26210          1243
2681    IAH  ELP      73340           667
2682    DFW  FSD      45890           737
2683    DSM  IAH      35940           802
2684    EYW  IAH       9270           915
2685    SDF  IAH      38380           788
2686    IAD  MCI      17570           926
2687    CHS  BOS      86700           818
2688    CLE  BOS     101670           563
2689    JAX  BOS     108470          1010
2690    BOS  CHS      88500           818
2691    JFK  CMH      42350           483
2692    MSN  DCA      13620           707
2693    CMH  DTW      68430           155
2694    MCI  EWR      49080          1092
2695    MEM  EWR      27230           946
2696    MSN  EWR      17990           799
2697    SDF  EWR      32300           642
2698    EWR  GSP      37800           594
2699    XNA  LGA      40820          1147
2700    EYW  LGA      14900          1207
2701    SDF  LGA      69700           659
2702    LGA  OKC      21350          1341
2703    JFK  ORD     163060           740
2704    CHS  ORD     100230           760
2705    JAX  ORD     105210           864
2706    SDF  ORD      97480           286
2707    EYW  PHL      35860          1121
2708    MSY  PHL      97100          1089
2709    CLT  SHV      37190           764
2710    BOS  RDU     216900           612
2711    LGA  XNA      42290          1147
2712    ORD  EVV      15100           272
2713    ITH  IAD      10710           250
2714    CAE  ORD      25370           666
2715    PNS  ORD      27040           794
2716    ORD  PNS      28070           794
2717    HRL  MSP      17570          1310
2718    MSP  PSP      46530          1454
2719    GRB  RSW       5050          1287
2720    SBY  CLT      30920           371
2721    SDF  CLT     123780           335
2722    PHL  MHT      43460           289
2723    ISP  PHL      23380           130
2724    SAV  PHL      46220           629
2725    IAH  BHM      48250           562
2726    DIK  DEN      20890           488
2727    ALB  IAD      40470           325
2728    MOB  IAH      39660           427
2729    STL  IAH      59390           667
2730    IAH  ICT      37770           542
2731    DEN  LIT      96300           771
2732    ABE  ATL      57290           692
2733    JFK  BGR      20680           382
2734    JFK  BNA     108520           765
2735    LGA  BTV      41860           258
2736    MSP  BWI     184510           936
2737    LGA  GRR      43440           618
2738    LGA  GSP      45140           610
2739    BTV  JFK      73480           266
2740    PWM  JFK      57670           273
2741    CAE  LGA      13990           617
2742    GRR  LGA      43150           618
2743    ORF  LGA     104880           296
2744    ATL  XNA      90120           589
2745    JFK  RDU     185520           427
2746    BOS  RIC     108410           474
2747    JFK  ROC      86330           264
2748    LGA  ROC      47860           254
2749    JFK  SAV      99740           718
2750    LGA  SAV      89150           722
2751    DFW  TPA     393830           929
2752    DFW  HSV      92680           603
2753    MIA  AUS     212280          1103
2754    PHX  TUS     142570           110
2755    CLT  CHA      84470           241
2756    CLT  PGV      33690           203
2757    DFW  BOI      76360          1272
2758    DFW  OGG     138090          3711
2759    DFW  MAF     114980           309
2760    DFW  BUR     107490          1231
2761    CLT  HNL      19730          4678
2762    CLT  LFT      30330           729
2763    DFW  CLE     180530          1021
2764    MIA  CLE      83840          1080
2765    PHX  CLE     119730          1737
2766    ORD  ANC     101360          2846
2767    BOS  CLT     491160           728
2768    BUF  CLT     115030           546
2769    BWI  CLT     328460           361
2770    CVG  CLT     122940           335
2771    DFW  CLT     496790           936
2772    EYW  CLT     116110           736
2773    FLL  CLT     377460           632
2774    LAX  CLT     379700          2125
2775    MIA  CLT     279810           650
2776    PHX  CLT     397310          1773
2777    RSW  CLT     262320           600
2778    SFO  CLT     187700          2296
2779    STL  CLT     220160           575
2780    SYR  CLT     125670           603
2781    DFW  CVG     160120           812
2782    DFW  DCA     393400          1192
2783    SRQ  DCA      47700           851
2784    PHL  DFW     393350          1303
2785    BNA  DFW     332400           631
2786    BOI  DFW      77810          1272
2787    BUR  DFW     105750          1231
2788    COS  DFW     180800           592
2789    CVG  DFW     156690           812
2790    DCA  DFW     392710          1192
2791    JAC  DFW      44760          1047
2792    LIT  DFW     160770           304
2793    MCI  DFW     241290           460
2794    MCO  DFW     660530           985
2795    MIA  DFW     467760          1121
2796    PIT  DFW     165020          1067
2797    SAN  DFW     487700          1171
2798    SAV  DFW      85240           925
2799    SJU  DFW      68040          2165
2800    SMF  DFW     213470          1431
2801    SNA  DFW     404790          1205
2802    DFW  OMA     133880           583
2803    CLT  LEX      68580           281
2804    CLT  SYR     126450           603
2805    LAX  OKC      35630          1187
2806    DFW  COU      44330           489
2807    DFW  RNO     144470          1345
2808    MIA  STT     133890          1107
2809    DFW  CMH     175380           926
2810    MIA  IND      61970          1020
2811    MIA  JAX     112960           335
2812    CLT  AVP     110510           509
2813    DFW  GPT      47230           500
2814    DFW  VPS     115540           641
2815    AUS  TUL      34750           426
2816    CLT  BGR      28270           921
2817    CLT  AGS      82970           140
2818    DCA  LAX     220750          2311
2819    DFW  SRQ      46170           945
2820    DFW  GRI      26960           561
2821    DFW  MEM     245590           431
2822    PHL  PVD      60170           237
2823    CLT  CAE     111880            88
2824    CLT  MYR     182250           157
2825    CLT  MOB      56800           526
2826    PHX  MCI     235880          1044
2827    DFW  HDN      17940           769
2828    MIA  MEM      40230           859
2829    RDU  MIA     196350           700
2830    BNA  MIA     194690           806
2831    CHS  MIA      40840           489
2832    CLT  RNO        370          2141
2833    DCA  MIA     308330           919
2834    DFW  DSM      94650           624
2835    JAX  MIA     109240           335
2836    SEA  MIA      55600          2724
2837    PHX  MSN      44120          1396
2838    CLT  RIC     268770           257
2839    DFW  ACT      50130            89
2840    PBI  ORD      80400          1143
2841    TUS  ORD      82670          1437
2842    DFW  PSP     139300          1126
2843    PHL  PBI     162110           951
2844    DFW  ELP     292500           551
2845    CLT  EWN      71460           221
2846    CLT  SJU     122140          1475
2847    MCO  PHX     259950          1849
2848    MSN  PHX      46530          1396
2849    DFW  PIT     164160          1067
2850    DFW  BWI     192750          1217
2851    PHX  GJT      41090           438
2852    CLT  ROC      99840           573
2853    DFW  ORF     113700          1212
2854    MIA  PNS      46970           530
2855    DFW  LGB       9090          1221
2856    DFW  HRL      62830           461
2857    MIA  SEA      59180          2724
2858    ORD  MHT      19220           843
2859    PHL  AVL      10050           504
2860    MIA  SFO     136260          2585
2861    DFW  HOU     123200           247
2862    DFW  PDX     273890          1616
2863    PHL  SJU     295860          1576
2864    PHL  CAE      19150           523
2865    DFW  AVL      36650           848
2866    DFW  LEX      57310           785
2867    BOS  STL     127350          1047
2868    CLT  CSG      26220           295
2869    PHL  TPA     348430           920
2870    ORD  TUS      78620          1437
2871    SEA  ABQ      55500          1180
2872    SEA  DFW     513830          1660
2873    SEA  OKC      50780          1519
2874    SEA  CHS      46700          2415
2875    SEA  BWI      66350          2335
2876    SEA  IND      65670          1866
2877    PSG  KTN       1920           111
2878    JNU  KTN      15920           234
2879    SAN  MCO      59230          2149
2880    SEA  MKE      49750          1694
2881    ABQ  PDX      28790          1111
2882    MCO  SAN      56760          2149
2883    SEA  SAT      57970          1774
2884    BUR  SEA     160880           937
2885    CMH  SEA      44980          2016
2886    CVG  SEA      81030          1965
2887    IND  SEA      63890          1866
2888    MKE  SEA      49980          1694
2889    OGG  SEA     208140          2640
2890    OKC  SEA      51040          1519
2891    OMA  SEA      48580          1368
2892    RDU  SEA     109050          2354
2893    SAT  SEA      59600          1774
2894    STL  SEA      83710          1709
2895    TUS  SEA     102460          1216
2896    HNL  SJC     142280          2417
2897    LAX  BDL      30880          2527
2898    PBI  BDL      38640          1133
2899    RSW  BDL      46940          1180
2900    EYW  BOS      11700          1373
2901    SAT  BOS      32430          1764
2902    SAV  BOS      56370           901
2903    MCO  BQN     139170          1129
2904    BOS  BUF      32180           395
2905    LAX  CHS      19400          2206
2906    BOS  CLE     102510           563
2907    BOS  SAN     164080          2588
2908    SJU  DCA      50120          1554
2909    STT  EWR      41260          1634
2910    STT  JFK      77970          1623
2911    JAX  FLL      35460           319
2912    PVD  FLL      54790          1188
2913    SAN  FLL      38210          2269
2914    SJU  FLL     346850          1046
2915    SLC  FLL      98130          2084
2916    MCO  HPN      92450           972
2917    TPA  HPN      39160          1032
2918    JFK  IAH      42040          1417
2919    BOS  JAX     108920          1010
2920    FLL  JAX      35440           319
2921    LAX  JAX      25630          2153
2922    LGA  JAX     131290           833
2923    BQN  JFK      77020          1576
2924    EYW  JFK      13120          1201
2925    IAH  JFK      42890          1417
2926    SAT  JFK      46670          1587
2927    SRQ  JFK      51410          1041
2928    PVD  MCO     206880          1072
2929    BDL  FLL      75490          1173
2930    BDL  PBI      40530          1133
2931    BOS  PBI     212490          1197
2932    JFK  PBI     247300          1028
2933    PVD  PBI      23790          1148
2934    MCO  PSE      67180          1179
2935    FLL  RIC      66930           805
2936    LAX  RIC       1490          2305
2937    MCO  RIC      92070           667
2938    JFK  RNO      33000          2411
2939    JFK  RSW     164250          1074
2940    FLL  SAN      35500          2269
2941    BOS  SAT      30060          1764
2942    JFK  SJC      37990          2569
2943    RDU  SJU      36860          1433
2944    JFK  BTV      72550           266
2945    JFK  SRQ      47420          1041
2946    SLC  OKC      43340           866
2947    BUF  ATL     160190           712
2948    CHS  ATL     383710           259
2949    GRR  ATL     177140           640
2950    JFK  ATL     336420           760
2951    PVD  ATL     129450           903
2952    SRQ  ATL     349700           444
2953    MSP  BIL      45420           748
2954    DTW  FWA      16310           128
2955    SLC  HNL      84960          2994
2956    ATL  HSV     177450           151
2957    ATL  STT     105880          1599
2958    SLC  IAD      46610          1828
2959    DCA  DTW     236870           405
2960    MSP  MLI      22610           274
2961    MSP  FLL     122920          1487
2962    MSP  CLE      83390           622
2963    DTW  LEX      47600           296
2964    DTW  ELM      38130           332
2965    ATL  CSG      32490            83
2966    ATL  FWA      42100           508
2967    ATL  ILM      78810           377
2968    ATL  ABY      33350           145
2969    DTW  ORD     281770           235
2970    JFK  PDX     126360          2454
2971    MSP  RSW     363180          1416
2972    CVG  DCA      98910           411
2973    SLC  STL     115750          1156
2974    SLC  GJT      13010           216
2975    IAD  SLC      45380          1828
2976    ATL  ROC     125100           749
2977    DTW  IND      87340           231
2978    CID  DEN     102370           692
2979    FAR  DEN      71890           627
2980    RDU  DEN     226520          1436
2981    XNA  DEN      64350           616
2982    PBI  ISP      93670          1052
2983    RDU  LAS      94810          2026
2984    LIT  MCO       4210           776
2985    MCO  ONT      37550          2171
2986    PWM  RSW       9220          1343
2987    SYR  RSW      11980          1186
2988    LAS  STL     288500          1371
2989    TTN  TPA      41710           955
2990    MCO  TTN     116890           896
2991    RSW  TTN      20570          1028
2992    DEN  TYS      64380          1162
2993    DEN  XNA      62530           616
2994    IAD  GRR       5660           501
2995    ORD  GSO      52600           589
2996    GSP  IAD      10820           384
2997    ORF  ORD     111570           717
2998    EWR  BQN      55900          1585
2999    IAD  STL      19750           696
3000    DFW  MOB      58220           539
3001    MIA  BHM      22950           661
3002    DFW  LAW      42530           140
3003    DFW  CHA      55870           695
3004    DFW  CID      58990           685
3005    IND  DCA      99160           500
3006    AVL  DFW      37290           848
3007    BFL  DFW      44100          1271
3008    BHM  DFW     126630           597
3009    GCK  DFW      26670           404
3010    LRD  DFW      61760           396
3011    MYR  DFW      27360          1048
3012    VPS  DFW     115900           641
3013    MIA  GRR       5390          1214
3014    CVG  MIA      52700           948
3015    SAV  MIA      23100           440
3016    TYS  MIA      12790           724
3017    CMH  ORD     170670           296
3018    EVV  ORD      14120           272
3019    LIT  ORD      62640           552
3020    SAT  ORD     140030          1041
3021    AUS  CLT     253540          1032
3022    MIA  SAV      23770           440
3023    DFW  TYS      96820           771
3024    MCO  ACY     104560           852
3025    MCO  CAK      23480           861
3026    LAX  CLE      95670          2052
3027    IND  LAS     186560          1590
3028    MKE  LAX      23350          1756
3029    LAX  MKE      21470          1756
3030    LAX  SDF      31350          1843
3031    DCA  AGS      18900           468
3032    PHL  CLE      55890           363
3033    ECP  CLT      45930           437
3034    MKE  CLT      87590           651
3035    TLH  CLT      70920           386
3036    VPS  CLT     101520           460
3037    PHL  CVG      60330           507
3038    AGS  DCA      17410           468
3039    ALB  DCA      57680           318
3040    DSM  DCA      34210           897
3041    HSV  DCA      58650           613
3042    MGM  DCA      11710           693
3043    PWM  DCA      79070           482
3044    DCA  DSM      38860           897
3045    PHL  BHM      26060           772
3046    CLT  ECP      44260           437
3047    CLT  GNV      71570           388
3048    DCA  GRR      30820           524
3049    CLT  ERI      32610           476
3050    DCA  IND      95920           500
3051    CVG  PHL      60090           507
3052    DFW  SBN      41240           846
3053    PSP  AUS       7950          1132
3054    DEN  BFL      20070           845
3055    DEN  PRC       7560           557
3056    SFO  STS      10130            66
3057    JAX  DEN      80510          1447
3058    PSP  DEN     146260           776
3059    SAV  DEN      30830          1414
3060    LBB  DFW     127080           282
3061    TRI  DFW      30630           868
3062    PVD  DTW      57600           615
3063    DFW  FWA      42240           859
3064    SEA  JNU     172470           909
3065    IAH  HOB      13160           501
3066    DEN  IDA      64050           458
3067    OKC  LAX      36640          1187
3068    FAT  LAX      42480           209
3069    MFR  LAX      29730           630
3070    IAH  AEX      13250           190
3071    IAH  VCT       5960           123
3072    CMH  MSP      79280           626
3073    OKC  ORD      75860           693
3074    DTW  PWM      45210           668
3075    PHX  SAF      26750           370
3076    ORD  SAV      56710           773
3077    ORD  ROA      30930           530
3078    MCI  SEA     122270          1489
3079    EUG  SFO      71080           451
3080    MFR  SFO      55350           329
3081    ONT  SFO     107110           363
3082    SBA  SFO      80790           262
3083    DSM  SLC       7190           955
3084    SLC  EUG      49650           618
3085    IAH  ORF      24010          1201
3086    SEA  ALW      37750           213
3087    FAI  ANC     178960           261
3088    ANC  LAX      42800          2345
3089    SEA  MRY      19980           750
3090    PSP  PAE      13390          1017
3091    ALW  SEA      38090           213
3092    SFO  AUS     217600          1504
3093    EWR  HNL      63350          4962
3094    ORD  CGI       6640           339
3095    ORD  TUL      68400           585
3096    ORD  SJU     116680          2072
3097    IAH  CMH      50430           986
3098    PIT  DEN     175530          1290
3099    SJC  DEN     292130           948
3100    BQN  EWR      55080          1585
3101    LAX  FAT      41940           209
3102    AUS  IAD      97230          1297
3103    RSW  IAD      74820           891
3104    MFE  IAH     132280           316
3105    PDX  IAH      80760          1825
3106    SAN  IAH     208810          1303
3107    SJC  IAH      42400          1608
3108    SMF  IAH      55530          1609
3109    SNA  IAH     150770          1346
3110    IAH  PDX      82110          1825
3111    SFO  RDD      39970           199
3112    BWI  LAX     171710          2329
3113    CLE  LAX      95500          2052
3114    IAD  STT      33850          1606
3115    IAD  SJU      70660          1571
3116    IAH  PHL     176540          1325
3117    DEN  SLN       7750           383
3118    DEN  SRQ      24170          1531
3119    IAH  CRP      71260           201
3120    DEN  LBL       5920           280
3121    OAK  ABQ      44780           889
3122    SAN  ABQ      45250           628
3123    ABQ  AUS      62650           619
3124    LBB  AUS      30980           341
3125    LAS  BHM      17630          1618
3126    STL  BNA     120790           272
3127    OAK  BNA      23170          1959
3128    SMF  BNA       7940          1917
3129    BNA  PHX     228770          1449
3130    TPA  BUF      97600          1053
3131    ALB  BWI     179310           289
3132    AUS  BWI     137380          1342
3133    CMH  BWI      88580           337
3134    DAL  BWI     186820          1209
3135    MCI  BWI      74090           967
3136    MHT  BWI     173800           377
3137    SYR  BWI      73340           273
3138    MKE  BWI      73800           641
3139    PBI  BWI     121610           883
3140    SAT  BWI      78850          1407
3141    DAL  CHS      41770           977
3142    FLL  CMH      99010           973
3143    MYR  CMH       6440           488
3144    IND  DAL      62750           755
3145    MEM  DAL      41170           423
3146    MIA  DAL      77700          1109
3147    MKE  DAL      44290           850
3148    SAN  DAL     156230          1182
3149    SAV  DAL      41640           914
3150    SRQ  DAL      21330           934
3151    RSW  DAL      24710          1005
3152    HOU  DCA     100750          1218
3153    MCI  DCA     114730           949
3154    COS  DEN     262700            73
3155    MTJ  DEN     113420           196
3156    ISP  FLL      32730          1092
3157    ABQ  HOU      85450           759
3158    CRP  HOU      89320           187
3159    DCA  HOU      98060          1218
3160    JAN  HOU      75200           359
3161    MCO  ISP     171520           971
3162    FAT  LAS     119980           259
3163    OKC  LAS      87460           986
3164    LAS  LBB      42810           775
3165    HOU  LBB       4360           474
3166    DAL  LGB      42540          1232
3167    STL  LIT      50060           296
3168    LAS  MAF      37500           795
3169    HOU  MCI      73470           666
3170    DCA  MCI     119110           949
3171    SAT  MCO     101710          1041
3172    HOU  MCO     231840           849
3173    ISP  MCO     176390           971
3174    DTW  MDW     173080           228
3175    MHT  MDW      55180           838
3176    SAV  MDW      45820           758
3177    ABQ  MDW      55740          1121
3178    BDL  MDW      79740           777
3179    BUR  MDW      27990          1740
3180    SAT  MDW      77560          1036
3181    TPA  MEM       9650           655
3182    MIA  MKE       6900          1258
3183    BNA  MYR      61880           471
3184    HOU  OAK      81520          1642
3185    MCI  OAK      37410          1489
3186    DCA  OMA      45780          1012
3187    BNA  OMA       2470           612
3188    OKC  PHX     129280           833
3189    ICT  PHX      20330           870
3190    IND  PHX     191700          1488
3191    TPA  PIT     100860           873
3192    OAK  PSP      64420           418
3193    MDW  PVD      65490           842
3194    FLL  PVD      60210          1188
3195    STL  RDU      41630           667
3196    OAK  RNO      46360           181
3197    SNA  RNO       2650           415
3198    BWI  ROC     118480           277
3199    PIT  RSW      73530           966
3200    RNO  SAN      77450           488
3201    DAL  SAN     151870          1182
3202    COS  SAT       3420           732
3203    STL  SAT      42150           786
3204    HOU  SAV      34210           853
3205    LAS  SDF      57630          1624
3206    AUS  SMF      62160          1481
3207    RSW  STL     105280           979
3208    TUL  STL      49310           351
3209    RDU  STL      41960           667
3210    SJC  STL      14100          1715
3211    ISP  TPA      79540          1034
3212    PIT  TPA      98920           873
3213    IND  TPA     124730           837
3214    LAS  TUL      46910          1076
3215    STL  TUL      41690           351
3216    IAH  SAV      30230           851
3217    IAH  CLT     249570           912
3218    ELP  DFW     319900           551
3219    TLH  DFW      50650           767
3220    PHX  YUM      64030           160
3221    MRY  PHX      59750           598
3222    SBA  PHX      72420           455
3223    IAH  RIC      22060          1157
3224    DCA  BDL     103720           313
3225    MCI  BOS      60100          1256
3226    BGR  DCA      57130           590
3227    CHS  DCA     103150           444
3228    PIT  EWR      98750           319
3229    STL  EWR      45280           872
3230    JFK  IAD      21570           228
3231    CVG  IAD      37990           388
3232    IAD  CMH      43720           299
3233    CLE  LGA     122710           419
3234    JAX  LGA     134220           833
3235    ROA  LGA      16830           405
3236    AVL  ORD      40470           536
3237    DLH  ORD      31130           397
3238    SAV  ORD      58190           773
3239    CMH  PHL      58580           406
3240    ORD  CAK      40040           343
3241    DCA  SRQ      46910           851
3242    ORD  AVL      39290           536
3243    IAD  PDX      36370          2327
3244    ORD  FAT      13270          1730
3245    ORD  CAE      26100           666
3246    ORD  CWA      34820           213
3247    IAD  IAH     140220          1190
3248    ORD  ERI      24450           398
3249    TYS  IAD      24230           420
3250    IAD  MKE       5360           611
3251    CHO  ORD      13980           566
3252    ORD  SCE      31190           528
3253    IAD  AVP       7540           189
3254    MSP  CVG      98810           596
3255    GPT  MSP       1570          1024
3256    MSP  MIA     150700          1501
3257    ROC  BOS      41770           343
3258    CHA  CLT      85180           241
3259    PHL  GRR      22020           573
3260    AVL  PHL       9120           504
3261    ROA  PHL      13240           311
3262    BOS  ROC      40670           343
3263    IAH  GSP      21200           837
3264    IAD  MSY      49660           955
3265    ECP  IAH      30550           572
3266    DEN  SAF      29520           303
3267    DFW  BDL      73050          1471
3268    SJU  CLT     122820          1475
3269    CLE  DFW     177190          1021
3270    STT  DFW       7440          2225
3271    DFW  MGM      43870           622
3272    LAX  PHL     345870          2402
3273    DFW  KOA      17460          3724
3274    OGG  LAX     452880          2486
3275    PHL  SBY      14440           107
3276    DFW  SJT      52550           229
3277    ORD  MQT      17430           303
3278    CVG  PHX      36910          1569
3279    DFW  BPT      22850           270
3280    KOA  ANC       9250          2874
3281    OGG  ANC      11000          2797
3282    OME  ANC      34340           539
3283    ANC  SEA     906400          1448
3284    ANC  OME      34740           539
3285    SEA  PSG       7320           787
3286    PBI  HPN     163480          1056
3287    RSW  HPN      63760          1102
3288    RSW  PVD      36490          1200
3289    JFK  SAT      42760          1587
3290    ATW  ATL      30320           765
3291    CID  ATL      39320           694
3292    SMF  ATL     140470          2092
3293    STT  ATL     106840          1599
3294    STX  ATL      14090          1638
3295    SAV  ATL     338790           214
3296    ATL  GNV     122480           300
3297    ATL  ANC      31280          3417
3298    ATL  SHV      53160           551
3299    MSP  BZN     110670           874
3300    EWR  STL      46400           872
3301    EYW  DCA      21030          1023
3302    DAY  DFW      63590           861
3303    TXK  DFW      30720           181
3304    DFW  MRY      40310          1430
3305    CAK  CLT      65430           394
3306    DAB  CLT      89690           416
3307    HPN  DCA      50560           234
3308    TLH  DCA      18470           716
3309    CLT  SBY      37160           371
3310    CLE  PHL      56330           363
3311    SYR  DEN      46120          1492
3312    PHX  LBB      20200           588
3313    FCA  ORD      34560          1352
3314    SFO  SAT      25560          1482
3315    JAC  SFO      18090           737
3316    HNL  EWR      63760          4962
3317    SNA  EWR      96990          2434
3318    EGE  IAH       7710           934
3319    IAH  HNL      81320          3904
3320    IAD  SAN     116080          2253
3321    DEN  MOT      29190           604
3322    BNA  SFO      39590          1969
3323    SAN  BWI      69610          2295
3324    ABQ  DCA       4990          1650
3325    SAN  EUG        920           850
3326    SNA  GEG        810           962
3327    ONT  MDW      51650          1706
3328    MCO  OMA      28640          1211
3329    MDW  BUR      33310          1740
3330    BWI  SAN      64060          2295
3331    MSY  SAN      17120          1599
3332    MDW  SNA      39220          1731
3333    OAK  STL      10270          1725
3334    SJU  TPA     169040          1237
3335    IAH  CHS      32850           925
3336    PIA  DFW      38880           672
3337    PNS  DFW     154750           604
3338    RAP  DFW      51000           835
3339    BZN  IAH       8560          1385
3340    CHS  IAH      33430           925
3341    ORF  IAH      25030          1201
3342    DFW  RAP      48770           835
3343    HHH  CLT      53030           207
3344    ATW  CLT      10410           742
3345    OMA  LGA      47060          1148
3346    EWR  ORF      60430           284
3347    PBI  PHL     162820           951
3348    SJU  MSP      23390          2404
3349    BGR  PHL      53180           473
3350    GRR  PHL      21070           573
3351    HLN  DEN      21410           594
3352    SHV  DEN      13570           792
3353    DEN  SHV      13760           792
3354    SLC  PHL      65000          1927
3355    OGG  ORD      63470          4184
3356    FWA  ATL      40190           508
3357    PHX  DCA     178800          1979
3358    RIC  DFW     114390          1158
3359    TPA  DFW     386270           929
3360    DFW  PIA      40790           672
3361    PHX  SBP      51860           509
3362    DFW  CLL      49080           164
3363    ORD  PBI      79750          1143
3364    STT  PHL      15670          1605
3365    DFW  CMI      27300           692
3366    EYW  ATL     160200           646
3367    TLH  ATL     163310           223
3368    SLC  BWI      77620          1865
3369    PBI  DTW      31660          1086
3370    FSD  ORD      75970           463
3371    DFW  BFL      43260          1271
3372    MSO  DFW      44030          1320
3373    PNS  MIA      42260           530
3374    BHM  DCA      45610           653
3375    SAV  DCA      39740           519
3376    IDA  DEN      64000           458
3377    MSP  XWA      26870           553
3378    BOI  ORD      75990          1437
3379    MSP  PSC      26110          1254
3380    ASE  SFO      13530           848
3381    IAH  RNO      23720          1530
3382    HNL  DEN     102800          3365
3383    BZN  EWR      24670          1882
3384    EGE  EWR      11390          1725
3385    AUS  IAH     161580           140
3386    SFO  IND      39910          1943
3387    RSW  SFO      12320          2481
3388    SFO  RSW      12730          2481
3389    MCO  LAS     198120          2039
3390    DFW  AMA     113140           312
3391    ECP  DFW      51020           685
3392    ILM  DFW      38310          1106
3393    GUC  IAH       6170           886
3394    BOS  MCI      58340          1256
3395    OGG  SLC      25350          2935
3396    MSP  SDF      39750           604
3397    DCA  IAH     162530          1208
3398    HNL  CLT      18490          4678
3399    HNL  ATL      81670          4502
3400    KOA  DFW      16650          3724
3401    MTJ  LGA        760          1810
3402    LFT  ATL      47400           503
3403    ATL  BMI      46310           533
3404    ATL  CID      39820           694
3405    CWA  DTW      17060           363
3406    DSM  LGA      17390          1031
3407    LGA  MEM      63150           963
3408    ATL  MLI      40910           633
3409    MSP  HNL      60550          3972
3410    ATL  SBN      41260           566
3411    SJU  AUS      48470          2146
3412    DCA  GSP      48240           396
3413    PHX  DRO      29470           351
3414    PBI  CLT     249100           590
3415    BDL  CLT     236050           644
3416    ROC  CLT     102280           573
3417    SAN  CLT     198110          2077
3418    SEA  CLT     152770          2279
3419    STT  CLT      58460          1520
3420    STX  CLT       8180          1562
3421    RNO  DFW     150380          1345
3422    EGE  DFW      71240           721
3423    FAT  DFW     156100          1313
3424    ORF  DFW     107340          1212
3425    RDU  DFW     215960          1061
3426    DFW  JAC      40840          1047
3427    DFW  SGF     122050           364
3428    DFW  ABI      67510           158
3429    DFW  SJU      66470          2165
3430    IND  MIA      62060          1020
3431    PHX  BIS       5460          1094
3432    DFW  GRR      69440           931
3433    DFW  SBA      63460          1316
3434    SEA  BLI      81410            93
3435    CLE  PHX     113430          1737
3436    PHL  BTV      43370           335
3437    ORD  SAT     132650          1041
3438    DFW  SPS      24040           113
3439    JFK  SNA      28170          2454
3440    SEA  PIT      59200          2125
3441    SEA  BUR     161450           937
3442    SFO  DAL      37370          1476
3443    ANC  PHX      38930          2552
3444    PDX  ONT      53440           838
3445    AUS  PDX      45370          1715
3446    SNA  PDX     132380           859
3447    MCO  PDX      55660          2534
3448    OGG  PDX      47780          2562
3449    SEA  SBP      29050           847
3450    KOA  SAN      48640          2556
3451    ABQ  SEA      57040          1180
3452    CHS  SEA      45640          2415
3453    JNU  SEA     174200           909
3454    KTN  SEA      84610           680
3455    MSY  SEA      60050          2086
3456    SEA  SIT      44620           861
3457    ANC  SIT      15020           592
3458    KOA  SJC      73800          2384
3459    PDX  SNA     131180           859
3460    SJU  BDL      90830          1666
3461    MSY  BOS      75940          1368
3462    PDX  BOS      59440          2537
3463    ONT  JFK      49850          2429
3464    JAX  LAX      25690          2153
3465    PBI  LAX      10590          2330
3466    MVY  LGA      14970           175
3467    BDL  SJU      84430          1666
3468    DAB  ATL     170740           366
3469    ICT  ATL      89780           782
3470    MSP  GFK      56950           284
3471    SJC  ATL      86530          2116
3472    ATL  ICT      90330           782
3473    STT  BOS      17280          1693
3474    ATL  BZN      60840          1640
3475    ATL  BOI      58740          1838
3476    ATL  TLH     161630           223
3477    ATL  CAE     177510           192
3478    MSP  MOT      70340           449
3479    SLC  LWS      29780           461
3480    SLC  MFR      43590           575
3481    MEM  LAX      23890          1619
3482    DTW  MCI     103800           629
3483    LAX  MEM      25100          1619
3484    MSP  MSO      50220          1013
3485    ATL  ASE       4800          1304
3486    BIL  MSP      44430           748
3487    DTW  PDX      52630          1953
3488    SLC  TUL      41460           926
3489    ATL  MOB      85150           302
3490    ORD  TVC     108900           224
3491    DFW  DAY      66230           861
3492    BIL  DFW      31440          1081
3493    BTR  DFW      85050           383
3494    JAN  DFW      97220           408
3495    SRQ  DFW      42710           945
3496    MIA  GNV      17910           294
3497    BHM  MIA      22640           661
3498    MCO  CRW      16700           686
3499    CSG  CLT      27560           295
3500    BTV  DCA      56770           437
3501    CLT  MSN      64800           708
3502    PHL  ORF      57250           212
3503    DAB  PHL       3920           808
3504    DEN  BIS      43450           516
3505    MSP  BRD      21930           114
3506    BIS  DEN      41600           516
3507    GJT  DEN      85850           212
3508    SBP  DEN      33410           931
3509    TYS  DEN      63840          1162
3510    ASE  DFW      43890           701
3511    DRO  DFW      53610           674
3512    GJT  DFW      55990           773
3513    MSP  IAD      72110           908
3514    MSP  ATW      49840           236
3515    DTW  MQT      25650           349
3516    CLE  MSP      81540           622
3517    FCA  MSP      46190          1026
3518    SLC  OMA      59040           840
3519    MDT  ORD      95660           594
3520    SUN  ORD       3870          1341
3521    PSP  PDX      51610           873
3522    STS  PDX      23240           489
3523    EGE  PHX       1520           513
3524    STS  PHX      26620           699
3525    ORD  GEG      24390          1498
3526    DFW  IAD     137240          1172
3527    JAC  SAN       3650           828
3528    SAN  SBP      13970           263
3529    BIL  SLC      76140           387
3530    EUG  SLC      49940           618
3531    MSO  SLC      72290           436
3532    OKC  SLC      43640           866
3533    OMA  SLC      59980           840
3534    PHX  PAE      54040          1133
3535    BOI  PUW      12470           224
3536    SAN  SBA       9170           192
3537    ELP  SEA      37400          1368
3538    SBA  SEA      39270           908
3539    RIC  DEN      83570          1482
3540    SAT  IAD      58990          1362
3541    STT  IAD      32580          1606
3542    SJU  IAH     134430          2007
3543    IAH  TYS      39370           771
3544    DEN  GUC      33080           152
3545    DEN  SYR      49180          1492
3546    BTV  ORD      81760           763
3547    IAH  JAN      38060           351
3548    SFO  RNO      72080           192
3549    KOA  SFO     164490          2367
3550    LIH  SFO      91490          2447
3551    HNL  SNA      34780          2584
3552    ORD  CRW      24210           416
3553    DEN  GJT      84750           212
3554    SEA  DAL      56590          1670
3555    SRQ  DEN      23570          1531
3556    CMH  FLL      99850           973
3557    MCO  GRR      41670          1024
3558    SAN  HOU      85850          1313
3559    ELP  LAS     106140           583
3560    OGG  PHX     127030          2845
3561    AUS  PIT       3390          1210
3562    OGG  SMF      43550          2404
3563    PHL  STL     116990           814
3564    SAN  STL      55690          1557
3565    IAD  SMF      37380          2358
3566    MCI  IAD      23070           926
3567    IND  IAH      60050           844
3568    MAF  IAH     117810           429
3569    PHX  SBA      71820           455
3570    IND  CLT     169470           427
3571    CLT  GRR      82370           583
3572    MCI  PHL      42920          1038
3573    ABE  ORD      48360           654
3574    PHL  DAY      20710           477
3575    BUF  PHL      46570           279
3576    DRO  DEN      88670           251
3577    IAH  BOI      17060          1482
3578    SGF  IAH      23000           513
3579    BUR  EUG      36940           732
3580    BMI  ATL      46690           533
3581    EVV  ATL      43340           350
3582    DTW  DSM      47720           534
3583    SYR  DTW      70750           374
3584    CHO  LGA      55830           305
3585    MSN  LGA      39700           812
3586    MSN  MSP      90970           228
3587    XNA  MSP      11620           596
3588    DTW  TYS      36000           443
3589    ATL  SGF      66460           563
3590    DFW  BZN      73510          1163
3591    DFW  SBP      40720          1360
3592    RIC  CLT     258090           257
3593    DFW  MSO      42520          1320
3594    DFW  ECP      49360           685
3595    AUS  DFW     435680           190
3596    BZN  DFW      76250          1163
3597    OMA  DFW     130640           583
3598    PHX  DSM      83080          1149
3599    DFW  EUG      39650          1606
3600    DFW  BUF      53150          1212
3601    DFW  EGE      64010           721
3602    KOA  PHX      80530          2860
3603    ORD  BMI      27940           116
3604    DFW  EYW      56830          1089
3605    CLT  STT      56490          1520
3606    PHX  ANC      37420          2552
3607    AUS  BOI      15240          1375
3608    PDX  DFW     276680          1616
3609    PDX  HNL      55380          2603
3610    ANC  ORD     107390          2846
3611    TUS  PDX      21160          1119
3612    KOA  PDX      30000          2607
3613    ONT  PDX      51430           838
3614    GEG  SAN      40990          1027
3615    SIT  SEA      46240           861
3616    PDX  TUS      21020          1119
3617    BZN  BOS       4440          1991
3618    SMF  JFK      40560          2521
3619    SYR  ATL     124790           794
3620    XNA  ATL      90250           589
3621    DTW  SBN      23520           157
3622    BOI  MSP      95370          1142
3623    ATL  GTR      37420           241
3624    MIA  SLC      68820          2088
3625    CHA  DFW      56260           695
3626    CLL  DFW      48310           164
3627    EVV  DFW      44430           642
3628    MOB  DFW      57500           539
3629    MIA  SAT      35930          1143
3630    DCA  LIT      19780           888
3631    SDF  MIA      26280           910
3632    DFW  MYR      28380          1048
3633    FLL  BQN      53250           982
3634    DCA  CAE      43750           408
3635    OMA  CLT      75030           913
3636    PNS  DCA      45780           816
3637    CLT  FSD       4850          1021
3638    CLT  MHT      70460           737
3639    TYS  PHL      26400           554
3640    SFO  ABQ      35340           896
3641    SLC  BIL      73120           387
3642    SBN  DFW      39390           846
3643    GRR  DFW      67450           931
3644    MEM  DTW      51560           610
3645    ORF  DTW      60270           529
3646    SAN  GEG      41660          1027
3647    RAP  MSP      61380           489
3648    ASE  ORD      37960          1013
3649    DEN  EGE      54930           120
3650    MTJ  SFO       2030           791
3651    PSP  SJC      16220           390
3652    MFR  SLC      42470           575
3653    RDM  SLC      47040           525
3654    TUL  SLC      41670           926
3655    PAE  LAS      39480           894
3656    SBA  SAN       8900           192
3657    STS  SEA      49910           618
3658    JAC  DEN      94940           406
3659    EWR  HHH      10040           687
3660    PDX  ORD     252910          1739
3661    IAH  PNS      69880           489
3662    DEN  HLN      21060           594
3663    EWR  EYW      44390          1196
3664    IAD  SAT      54310          1362
3665    IAH  GPT      25900           376
3666    RNO  BUR      32930           374
3667    AUS  DCA      52080          1315
3668    HOU  ISP        180          1465
3669    MKE  MCO     194060          1066
3670    SJC  MDW      67930          1838
3671    OGG  OAK      85460          2349
3672    ABQ  OAK      40800           889
3673    LIH  OAK      47700          2457
3674    PIT  PHX      86560          1814
3675    LAS  ICT      13570           986
3676    MDW  CLT      79010           584
3677    KOA  SMF      10610          2435
3678    SAT  STL      39080           786
3679    HSV  DFW      91000           603
3680    PHX  FAR       7350          1225
3681    PHX  FSD      25520          1081
3682    GRR  IAH      17490          1042
3683    GSP  IAH      22060           837
3684    DFW  MLI      40380           691
3685    IAH  RDU      62470          1042
3686    CLE  DCA      58640           310
3687    SAV  IAD      34730           515
3688    SBN  LGA        890           651
3689    EWR  MEM      26850           946
3690    BDL  PHL      64210           196
3691    DAY  ORD      96850           240
3692    MOB  CLT      57850           526
3693    TYS  CLT     117030           177
3694    DAY  PHL      22010           477
3695    PHF  PHL       8410           201
3696    TYS  IAH      39620           771
3697    IAH  MOB      39430           427
3698    CAE  ATL     174550           192
3699    JFK  DTW      88030           509
3700    DFW  ANC      40800          3043
3701    DFW  BGR       2930          1717
3702    DSM  CLT      66120           815
3703    SAN  MIA      45070          2267
3704    DFW  LBB     128320           282
3705    CHS  DFW     112340           987
3706    EYW  DFW      62840          1089
3707    GSP  DFW      71530           862
3708    GUC  DFW      10900           678
3709    HNL  DFW     170950          3784
3710    IND  DFW     189330           761
3711    OKC  DFW     249540           175
3712    SAT  DFW     447170           247
3713    SBA  DFW      61670          1316
3714    DFW  MKE     121580           853
3715    JAC  JFK       5180          1894
3716    SNA  JFK      26810          2454
3717    ORD  BUF     163000           473
3718    ORD  HDN      15060          1009
3719    BDL  MIA     122890          1194
3720    MIA  ORF      45730           802
3721    DFW  SAV      85130           925
3722    AUS  SJU      50340          2146
3723    CLT  SGF      54160           708
3724    PHL  SLC      62220          1927
3725    CDV  ANC      13400           160
3726    JNU  PSG       9060           123
3727    ANC  BET      73000           399
3728    ROC  JFK      83330           264
3729    FLL  LAS     113380          2173
3730    DCA  SJU      49220          1554
3731    HPN  TPA      36360          1032
3732    MSN  ATL      87550           707
3733    DTW  MEM      49070           610
3734    PVD  EWR      44890           160
3735    SYR  DFW      34130          1336
3736    LFT  DFW      64950           351
3737    TLH  MIA      52550           402
3738    MIA  OKC      11580          1222
3739    MCO  MKE     194420          1066
3740    CLT  CID      45000           742
3741    CID  CLT      44280           742
3742    MEM  CLT     178450           511
3743    BUF  DCA      54220           296
3744    GRR  DCA      28120           524
3745    DCA  MEM      60270           762
3746    DCA  ALB      67910           318
3747    MHK  DFW      45410           431
3748    TUS  IAH      51240           936
3749    MTJ  LAX       1940           666
3750    DEN  LWS      12320           768
3751    AVP  ORD      53220           632
3752    SYR  ORD     128140           607
3753    JAC  ORD      46750          1162
3754    ROW  PHX      14880           433
3755    DEN  SBP      33970           931
3756    BZN  SFO      32660           807
3757    GJT  SLC      12770           216
3758    ANC  ADQ      71340           253
3759    ORD  HSV      27300           510
3760    IAH  BRO      36340           308
3761    SMF  IAD      39980          2358
3762    ABQ  IAH      62360           744
3763    HNL  ORD      98660          4243
3764    RDU  SFO      47820          2400
3765    BWI  ABQ      12990          1670
3766    SAN  BNA      68070          1751
3767    SJC  BNA      27780          1947
3768    ABQ  BWI      11030          1670
3769    SRQ  BWI     130920           880
3770    ALB  DEN      21430          1610
3771    DEN  JAX      75880          1447
3772    TPA  HDN         50          1647
3773    SLC  HOU      43800          1214
3774    BHM  LAS      20600          1618
3775    CMH  LAS     138470          1771
3776    SDF  LAS      63040          1624
3777    BUF  LAS      17560          1986
3778    SAT  LAS     194520          1069
3779    PHX  LIT       2470          1136
3780    CMH  MCO     224870           802
3781    PDX  MDW      65430          1751
3782    MCO  MHT     106430          1142
3783    TPA  MHT      18360          1204
3784    TPA  MKE      83580          1075
3785    DAL  PDX       6060          1626
3786    MDW  PDX      65310          1751
3787    BUF  PHX      10480          1912
3788    SDF  PHX      20320          1506
3789    FLL  SAT       7190          1145
3790    DAL  SDF      15030           725
3791    HOU  SMF      42540          1624
3792    STL  SMF      30150          1679
3793    SMF  STL      32390          1679
3794    CID  DFW      57810           685
3795    FAR  DFW      38280           968
3796    IAD  DTW     115090           383
3797    IAH  HSV      30850           595
3798    CID  PHX      20870          1252
3799    FAR  PHX       7620          1225
3800    GRR  CLT      80400           583
3801    DAY  LGA      14310           549
3802    PIT  RDU      29840           328
3803    ROA  ORD      30670           530
3804    HSV  IAD      13850           596
3805    DCA  OKC      45780          1158
3806    PHL  ORH       1040           241
3807    ORD  BIL       3920          1061
3808    CLT  HHH      52990           207
3809    JFK  BWI      54580           184
3810    MCO  MIA     301180           192
3811    JFK  CHS     128670           636
3812    ORH  FLL      27140          1211
3813    ORH  JFK      27660           150
3814    FLL  ORH      28570          1211
3815    JFK  ORH      30720           150
3816    STT  SJU      39990            68
3817    SJU  STT      34100            68
3818    ATL  MSN      91700           707
3819    MCO  BMI       6510           936
3820    RSW  BUF      26120          1144
3821    FSD  DEN     104880           483
3822    HRL  DEN      10430          1023
3823    ONT  DEN     292380           819
3824    LAS  DSM      41350          1216
3825    LAS  DRO       3680           418
3826    LAS  FSD       7580          1104
3827    MCO  HRL       3950          1016
3828    MCO  ILG       7570           841
3829    MYR  ISP      12250           586
3830    RSW  ISP      31110          1101
3831    STL  LAS     281200          1371
3832    CLE  MCO     321840           895
3833    ONT  MCO      40100          2171
3834    TTN  ORD       2770           692
3835    ISP  PBI      96520          1052
3836    MCO  PWM      20320          1214
3837    RSW  PWM       9580          1343
3838    BDL  RDU       8660           532
3839    TTN  RDU      18120           373
3840    ISP  RSW      30560          1101
3841    MCO  SWF      24640           989
3842    TPA  SWF      17180          1047
3843    TPA  SYR      14110          1104
3844    GRR  TPA      12130          1041
3845    ATL  TTN      47880           701
3846    ORD  TTN       2530           692
3847    PBI  TTN      50200           985
3848    TPA  TTN      41670           955
3849    MIA  CHS      39240           489
3850    PBI  ACY      24570           936
3851    TPA  ACY      42940           913
3852    RSW  CAK       6990           991
3853    LAX  CMH      36190          1995
3854    ACY  PBI      25670           936
3855    SDF  FLL      21430           895
3856    PNS  IND       1430           639
3857    CLE  LAS     140090          1824
3858    PIT  LAX      41350          2136
3859    MYR  LBE      28500           455
3860    MYR  LGA     111270           563
3861    ACY  MCO     106780           852
3862    MHT  MCO     102340          1142
3863    STT  MCO      56440          1246
3864    EWR  MYR     108440           550
3865    LBE  MYR      29660           455
3866    LGA  MYR     110790           563
3867    MCO  STT      53410          1246
3868    MYR  ORD      64760           753
3869    MYR  PHL      72550           473
3870    ACY  RSW      60890           982
3871    LBE  RSW       7960           956
3872    FLL  SDF      21100           895
3873    DCA  TYS      42880           437
3874    MRY  LAX      27740           266
3875    BFL  SFO      14860           238
3876    BIL  DEN      94900           455
3877    IAD  ABE       6120           159
3878    MCI  ORD     189870           403
3879    HOU  DTW      13470          1092
3880    MDW  SAV      42550           758
3881    HNL  ITO     140910           216
3882    OKC  IAH     104690           395
3883    LGA  ORH       7960           146
3884    DCA  CLE      57380           310
3885    MSP  AVL      18870           861
3886    AVL  MSP      18350           861
3887    IND  MSP     128600           503
3888    PBI  MSP      11140          1451
3889    MSP  PBI      11470          1451
3890    MSP  PGD      12270          1386
3891    LBB  IAH      27560           458
3892    GUM  HNL      75820          3801
3893    EGE  JFK       9840          1746
3894    PDX  ANC      59640          1542
3895    SLC  ANC      28340          2125
3896    RIC  IAH      22010          1157
3897    KOA  ORD      15060          4213
3898    STL  SJC      17420          1715
3899    RST  ATL       1860           831
3900    GRB  DTW      51390           287
3901    MCI  CLT     138040           808
3902    OKC  CLT      71050           940
3903    SRQ  CLT     130470           547
3904    XNA  DFW     150720           280
3905    DSM  PHX      80010          1149
3906    OTZ  ANC      31610           548
3907    ANC  AKN      20490           288
3908    DCA  SEA     106470          2329
3909    HPN  PBI     158320          1056
3910    JFK  STT      76560          1623
3911    CVG  ATL     290370           373
3912    ELP  ATL      98170          1282
3913    ROC  ATL     118460           749
3914    CVG  LAS     112040          1678
3915    SLC  CPR      14850           320
3916    MSP  ABR      25970           257
3917    ORF  EWR      52450           284
3918    DFW  GSO      60230           999
3919    DFW  BIL      31010          1081
3920    CLT  BTR      47800           675
3921    DCA  CRW      13080           249
3922    ORF  DCA      68180           142
3923    PHL  GSP      34220           515
3924    GSP  PHL      36420           515
3925    MSN  PHL      16170           764
3926    ORF  PHL      58560           212
3927    DEN  GCC      21540           313
3928    ASE  DEN     115630           125
3929    FCA  DEN     104790           752
3930    MFR  DEN      74010           964
3931    MOT  DEN      28710           604
3932    IDA  DFW      34510          1095
3933    SAF  DFW      65000           551
3934    MFR  PHX      33220           854
3935    SFO  SUN       8280           587
3936    LAX  EUG      35090           748
3937    DEN  TWF       1740           542
3938    IAH  ABQ      61920           744
3939    IND  SFO      41170          1943
3940    BUR  ATL       1390          1941
3941    LAS  BUF      17840          1986
3942    PHX  BUF       9240          1912
3943    JAX  BWI     136110           663
3944    HOU  CMH      33650          1001
3945    DAL  CMH      44500           919
3946    HDN  DAL       4230           779
3947    RDU  DAL      46530          1052
3948    RSW  GRR      21730          1147
3949    TUL  PHX      67430           935
3950    HOU  ECP      59940           571
3951    PHX  SDF      16690          1506
3952    PHX  CID      24430          1252
3953    BMI  DFW      38350           690
3954    PBI  IAH      17750           956
3955    HHH  ATL      32170           238
3956    LGA  DAY      16060           549
3957    EYW  IAD      14440          1023
3958    IAD  BTV      51390           441
3959    MKE  PHL      43520           690
3960    IAD  JFK      22290           228
3961    ATL  MGM      57130           147
3962    DFW  DRO      52960           674
3963    CLT  FLO      31200            99
3964    CLT  HSV      61590           333
3965    PHL  FLL     343130           992
3966    DCA  CHS     108920           444
3967    DFW  LRD      59750           396
3968    AUS  CVG      50970           958
3969    JFK  PHL       8930            94
3970    MIA  GSO      10910           710
3971    TUL  DFW     230060           237
3972    DFW  BMI      40300           690
3973    ORD  LSE      36190           215
3974    PHX  BFL      58910           425
3975    CLT  SBN      41450           534
3976    PHL  ROC      39300           257
3977    PHL  JFK       8060            94
3978    CLT  ONT      30040          2078
3979    CLT  TRI      57600           119
3980    DCA  BTV      58140           437
3981    ORD  RST      30990           268
3982    CMH  MIA      36100           990
3983    DFW  DRT      22630           335
3984    CLT  CRW      59290           221
3985    CLT  EVV      30200           414
3986    SEA  GTF      23060           512
3987    PDX  PSP      49350           873
3988    PDX  RNO      39370           444
3989    BUF  JFK     137250           301
3990    JFK  PWM      55460           273
3991    FLL  CHS      24590           470
3992    JFK  ACK      23860           199
3993    SDF  ATL     277260           321
3994    DTW  ATW      37450           296
3995    DTW  ALB      65770           489
3996    MSP  ICT      25350           545
3997    ATL  RST       2340           831
3998    CVG  FLL      36050           932
3999    DTW  CWA      16910           363
4000    DTW  CHA      13900           505
4001    SJU  JAX      20920          1288
4002    SYR  JFK      58300           209
4003    TUL  CLT      69010           842
4004    SAN  MSY      15600          1599
4005    SNA  HOU      20510          1357
4006    RSW  MCO      43090           133
4007    SMF  SFO      39330            86
4008    MLI  MSP      22050           274
4009    BHM  ATL     316340           134
4010    TYS  ATL     194120           152
4011    TUS  PHX     146690           110
4012    PDX  GEG      74320           279
4013    IND  DTW      85940           231
4014    SAN  LIH      51380          2676
4015    AGS  CLT      87360           140
4016    BDL  IAD     114230           326
4017    RDU  CLT     370480           130
4018    MYR  FLL      54910           529
4019    EYW  MIA      73140           126
4020    IND  ORD     153760           177
4021    ANC  PDX      67120          1542
4022    XNA  ORD      88300           522
4023    CHS  CLT     221320           168
4024    DCA  PHL      39710           119
4025    ALB  PHL      44870           212
4026    ROA  IAD      14510           177
4027    IAH  MLU       4030           262
4028    MIA  IAD      49850           921
4029    HOU  SLC      46330          1214
4030    SJC  HNL     148740          2417
4031    BNA  SJC      29100          1947
4032    DAL  RSW      23290          1005
4033    KOA  HNL     156650           163
4034    PIT  HOU       3310          1131
4035    SHV  IAH      32190           192
4036    MSP  ESC       8790           304
4037    EWR  IAD      97830           212
4038    FLL  STT      51530          1107
4039    FLG  PHX      49980           119
4040    BZN  SLC     113410           347
4041    DEN  ATY       1450           519
4042    CLT  MDW      78800           584
4043    PIT  STL      44020           554
4044    CHS  DAL      40360           977
4045    SJC  OGG     119930          2355
4046    MCO  BUR       1390          2215
4047    PSE  MCO      65760          1179
4048    JAN  BWI      26420           888
4049    GRR  ORD     151160           137
4050    SAT  IAH     217290           191
4051    PDX  KOA      31200          2607
4052    ANC  SLC      33260          2125
4053    JNU  ANC      76270           571
4054    GSP  ATL     305850           153
4055    SLC  OGG      26760          2935
4056    ILM  CLT     187290           185
4057    SJU  MDW      11150          2057
4058    STL  ORD     160470           258
4059    JAX  CLT     246090           328
4060    SAV  CLT     186750           213
4061    RNO  AUS      23610          1405
4062    STL  SNA      16580          1569
4063    MYR  PIT      28580           475
4064    COS  MDW      56850           917
4065    SJC  DFW     122530          1438
4066    MIA  PIT      54710          1013
4067    SIT  ANC      15400           592
4068    BOS  PDX      57670          2537
4069    DCA  PDX      41570          2350
4070    LAX  RSW      17700          2238
4071    BWI  SEA      68570          2335
4072    HPN  MCO      89110           972
4073    BOS  MSY      76640          1368
4074    HDN  ATL      14170          1340
4075    HPN  ATL     117390           780
4076    ATL  RNO       3320          1993
4077    MEM  SLC      47680          1262
4078    MYR  EWR     107660           550
4079    SGF  CLT      56110           708
4080    MIA  RIC      27180           825
4081    BHM  CLT     111220           350
4082    BTV  CLT      54340           761
4083    CLT  ITH      16390           557
4084    PWM  PHL      71090           364
4085    DFW  ASE      43080           701
4086    CSG  DFW      15670           705
4087    TUL  LAX      21300          1283
4088    IAH  STT      24230          2070
4089    IND  AUS      75290           919
4090    PIT  SRQ      20570           912
4091    PHX  SGU      30260           262
4092    PWM  ORD      87070           900
4093    AUS  PHL      65060          1430
4094    SRQ  PHL      34320           957
4095    ICT  IAH      36600           542
4096    MSP  ANC     101830          2519
4097    BMI  DEN      10120           834
4098    MCO  GRB       8110          1169
4099    ATL  ISP      34490           795
4100    MEM  LAS      38090          1416
4101    HSV  MCO       8100           535
4102    MSN  MCO       8630          1109
4103    PNS  MCO      32970           381
4104    SWF  MCO      26810           989
4105    PVD  MIA       1970          1209
4106    MCO  MSN       8970          1109
4107    RSW  SYR      12630          1186
4108    DTW  PLN      27890           243
4109    SAT  CLT     167650          1095
4110    IAD  DFW     137710          1172
4111    MIA  GSP      12780           637
4112    KTN  SIT       4730           183
4113    ANC  YAK       3520           373
4114    PSP  BOS        670          2517
4115    BOS  SJC       5560          2689
4116    LAX  CVG      45410          1900
4117    SLC  TWF      18500           175
4118    ATL  DHN      39250           170
4119    SLC  GTF      35030           463
4120    SLC  BTM      16330           358
4121    ATL  CRW      35630           363
4122    CVG  SLC      78260          1450
4123    SGF  DFW     120220           364
4124    JAN  CLT      60740           562
4125    PNS  CLT     104970           488
4126    PVD  CLT     143100           683
4127    IND  PHL      69820           588
4128    DCA  TLH      17470           716
4129    COU  DFW      41880           489
4130    MQT  DTW      27500           349
4131    MSP  MQT       4690           300
4132    JAC  LAX      17390           784
4133    DFW  STS      20020          1495
4134    DEN  XWA      37120           582
4135    GRR  MSP     117100           408
4136    MSP  OKC      24570           694
4137    DEN  SGU      18790           517
4138    IAH  HRL      42570           295
4139    OGG  EWR      13670          4904
4140    ITO  LAX      35420          2449
4141    COS  ORD      57390           911
4142    MDW  ABQ      50030          1121
4143    MDW  SJU       8160          2057
4144    SMF  AUS      59700          1481
4145    BUR  DAL      26290          1243
4146    BHM  HOU      49060           570
4147    JAX  HOU      33920           816
4148    BNA  SNA      40030          1772
4149    PVD  TPA      71340          1136
4150    FSD  DFW      46880           737
4151    LEX  CLT      66640           281
4152    IAH  BZN       8060          1385
4153    IAH  XNA      27500           438
4154    JAC  EWR      11740          1874
4155    HNL  MSP      61040          3972
4156    ORF  BOS      10280           468
4157    BGR  LGA      51210           378
4158    BTV  LGA      38910           258
4159    ROC  LGA      46390           254
4160    SYR  LGA      47750           198
4161    BOS  ORF      11290           468
4162    CLT  JAC       1920          1685
4163    AMA  DFW     115160           312
4164    ORD  ELP      53020          1236
4165    DFW  GSP      72290           862
4166    CLT  MGM      30540           372
4167    AUS  JAX      21740           954
4168    MIA  MCI      31990          1251
4169    MCI  MIA      35330          1251
4170    MEM  MIA      38090           859
4171    STL  MIA      99120          1068
4172    CLT  GPT      46980           577
4173    DFW  CSG      14890           705
4174    ELP  ORD      53980          1236
4175    DFW  PWM       9760          1622
4176    PHL  ART      22400           287
4177    ORD  TOL      21510           213
4178    DFW  AEX      36340           285
4179    PHL  BUF      48860           279
4180    CLT  EYW     107010           736
4181    PHL  SAV      43830           629
4182    PHL  SYR      42100           228
4183    DFW  GNV      28140           900
4184    PDX  AUS      45210          1715
4185    SEA  CVG      85570          1965
4186    SYR  BOS      21790           265
4187    ALB  FLL      48700          1204
4188    CHS  FLL      23600           470
4189    PDX  FLL      10810          2694
4190    FLL  HPN      87980          1097
4191    CHS  LAX      18780          2206
4192    LAS  BDL      21300          2297
4193    RIC  LAX       1150          2305
4194    FLL  PDX      11000          2694
4195    LAS  RIC       3450          2086
4196    BOS  SAV      55950           901
4197    DTW  BTV      29410           537
4198    MSP  SJC      37820          1575
4199    MSP  LNK       6940           331
4200    DTW  ABE      27570           425
4201    FAI  SEA     229850          1533
4202    DTW  BHM      13610           625
4203    ATL  EVV      44140           350
4204    ISP  ATL      32730           795
4205    RDU  BDL       8840           532
4206    GRR  MCO      42180          1024
4207    PHL  MSY      98440          1089
4208    MIA  PVD       2580          1209
4209    MCO  FSD       3710          1351
4210    SYR  EWR      32170           195
4211    IAD  ALB      39350           325
4212    ORD  ALO      15370           234
4213    AUS  RNO      22570          1405
4214    GPT  DFW      47050           500
4215    MAF  DFW     118260           309
4216    DFW  IDA      33710          1095
4217    DFW  EVV      44380           642
4218    LEX  ORD      67450           323
4219    GJT  PHX      40870           438
4220    MIA  TYS      13540           724
4221    SJU  ACY      12670          1536
4222    STX  FLL      42200          1140
4223    TPA  LBE       6260           866
4224    SJU  LGA       3510          1608
4225    LGA  SJU       3360          1608
4226    ACY  TPA      46780           913
4227    CLT  BZN       2770          1736
4228    DCA  TUL      13520          1049
4229    LAN  DCA      12870           479
4230    PIT  DCA      69870           204
4231    CLT  HTS      27620           235
4232    DCA  ILM      37090           319
4233    DCA  LAN      14320           479
4234    IAH  CLL       5460            74
4235    PHX  GRR      14070          1574
4236    IAH  AMA      24060           517
4237    SFO  CLE      47900          2161
4238    DEN  FLG      22540           503
4239    CRP  IAH      73980           201
4240    EUG  LAX      33740           748
4241    RDM  LAX      36680           726
4242    IAH  MAF     112640           429
4243    ORD  MYR      64950           753
4244    FNT  ORD      64150           223
4245    HSV  ORD      28210           510
4246    PVD  ORD      71630           849
4247    SBP  PHX      51640           509
4248    PHX  ROW      14720           433
4249    RDM  SFO      79290           462
4250    RNO  SFO      73840           192
4251    IAH  TUL      83810           429
4252    SEA  RSW      23770          2623
4253    SEA  RDD      19650           479
4254    SNA  STS      24180           433
4255    EWR  ALB      33800           143
4256    IAD  RIC      39880           100
4257    EWR  GRR      26890           605
4258    ORD  EAU      15130           269
4259    CLE  FLL     140740          1062
4260    DEN  GSP      24360          1278
4261    DEN  LBF      10030           228
4262    ORD  CHO      14160           566
4263    IAD  MDT       6170            94
4264    IAD  DAY      22410           368
4265    SFO  TUS      35500           751
4266    DEN  AMA      25990           359
4267    IAD  ERI       5030           259
4268    IAH  MEM      69020           468
4269    SFO  TPA      70010          2393
4270    SFO  MRY      20240            77
4271    DEN  RST        770           686
4272    IAD  ILM       6380           323
4273    MDW  SAT      73370          1036
4274    PHX  ICT      19830           870
4275    MDW  RNO       4630          1680
4276    DAL  BOI        890          1282
4277    CLT  DAL      38600           926
4278    FLL  ISP      34620          1092
4279    STL  ECP      36430           634
4280    DTW  HOU       9620          1092
4281    STL  PDX       8320          1708
4282    COS  BUF        170          1384
4283    SAN  ORF       2990          2330
4284    MDW  GSP        200           562
4285    DAL  HDN       3730           779
4286    HOU  SNA      24740          1357
4287    SNA  OMA        640          1312
4288    DEN  ALB      20050          1610
4289    BWI  OAK       6130          2447
4290    LGB  MDW      38550          1741
4291    DAL  MIA      79540          1109
4292    BUR  BNA      28520          1791
4293    LGB  OKC        200          1174
4294    SNA  BNA      46200          1772
4295    PHX  MHT        150          2280
4296    LGB  GEG       1190           953
4297    AUS  LBB      32210           341
4298    IAD  SCE       9500           133
4299    HOU  DFW     119360           247
4300    MYR  IAD      13840           372
4301    JAN  IAH      37410           351
4302    SRQ  IAH       9810           796
4303    IAD  MYR      13700           372
4304    IAH  LBB      27970           458
4305    BZN  PHX        240           853
4306    IAH  SRQ       9130           796
4307    VPS  AUS       5030           666
4308    IAD  CHS      68180           441
4309    RIC  JFK      65060           288
4310    ILM  LGA      65700           500
4311    PHL  SCE      33450           153
4312    RDU  PIT      30750           328
4313    IAD  PBI      25350           859
4314    AVL  IAD      10040           370
4315    DAY  IAD      20440           368
4316    ERI  IAD       6630           259
4317    GRR  IAD       5670           501
4318    RSW  DLH       5680          1512
4319    RSW  GRB       5460          1287
4320    AZA  MSP      11750          1267
4321    MYR  MSP      28270          1085
4322    PGD  MSP      12320          1386
4323    PIE  MSP      10330          1307
4324    LAS  XWA       1810          1022
4325    PHL  AUS      60670          1430
4326    BOS  MDT      10320           335
4327    HSV  IAH      31090           595
4328    XNA  IAH      26470           438
4329    HVN  TPA      26470          1067
4330    BTV  ATL      35470           961
4331    DFW  ILM      39520          1106
4332    RNO  JFK      30190          2411
4333    HNL  JFK       1310          4983
4334    LGA  CHO      57610           305
4335    BUF  LGA      69400           292
4336    DTW  IMT       8780           344
4337    DFW  SWO      23930           225
4338    DCA  JAN      16240           860
4339    DFW  FAY      22150          1051
4340    ORD  DBQ      20500           147
4341    DFW  MHK      43850           431
4342    BUF  ORD     163810           473
4343    CLT  XNA      66400           754
4344    DFW  MTJ      51790           722
4345    JNU  SIT      20540            95
4346    RIC  MCO      93010           667
4347    ATL  ATW      31770           765
4348    SLC  CNY       6160           183
4349    SLC  MKE      27300          1247
4350    ATL  MTJ       6950          1352
4351    TTN  ATL      49590           701
4352    MDT  MCO      12010           851
4353    TYS  MCO       6060           532
4354    CAK  ORD      38900           343
4355    IAD  CAE      20530           401
4356    CID  ORD     100890           196
4357    LAN  ORD      32440           179
4358    DCA  CAK      14780           274
4359    TPA  CAK       9500           894
4360    BQN  FLL      53280           982
4361    CMH  LAX      35770          1995
4362    FLL  LBE      29370           980
4363    TPA  MCI      90210          1048
4364    BOS  MYR      64940           738
4365    CAK  RSW       7620           991
4366    CMH  RSW      98950           930
4367    DCA  ROC      55740           296
4368    GSO  CLT     132090            83
4369    GSO  DCA      36070           248
4370    GSP  DCA      49160           396
4371    MLB  DCA       2160           769
4372    PHL  PHF       8680           201
4373    PVD  DCA     152220           356
4374    ROC  DCA      49990           296
4375    SYR  DCA      56910           298
4376    PHL  CAK       4980           335
4377    PVD  PHL      59160           237
4378    IAH  LIT      47250           374
4379    MSP  MEM      53880           700
4380    MEM  IAH      68270           468
4381    PNS  IAH      70920           489
4382    ORD  EAR       7940           583
4383    BRD  MSP      22200           114
4384    BIS  PHX       5360          1094
4385    RAP  PHX       7470           876
4386    DEN  JLN       8290           582
4387    ORD  MHK      24850           501
4388    LAX  PSP       5670           110
4389    MSP  RHI      22540           190
4390    JAC  SEA      10200           621
4391    PDX  EWR     109160          2434
4392    PWM  IAD      40090           493
4393    SFO  FAT      48030           158
4394    IAD  ROA      15620           177
4395    IAH  PIB       8780           372
4396    DAL  CLT      36230           926
4397    DAL  CRP      19670           352
4398    BWI  MEM       2650           787
4399    MCI  PDX      12250          1482
4400    AUS  HRL      46090           273
4401    HOU  PIT       4500          1131
4402    PHX  MAF      17940           581
4403    PHL  MKE      41150           690
4404    CHS  IAD      69330           441
4405    CMH  IAD      41090           299
4406    ROC  IAD      39630           288
4407    GSO  PHL      31490           365
4408    DCA  CHA      16200           523
4409    ILM  IAD       6650           323
4410    MHT  IAD       5130           418
4411    SDF  IAD      23610           451
4412    SYR  IAD      55740           296
4413    ATW  ORD      94930           161
4414    PNS  TPA       4700           330
4415    DFW  FAI        410          3056
4416    DFW  SGU      12250           976
4417    PHX  IDA      19060           695
4418    DFW  SAF      67110           551
4419    CLT  FWA      32800           460
4420    RNO  PDX      38320           444
4421    ATL  MLU      34070           448
4422    SLC  EKO      12680           200
4423    BTV  DEN      20220          1639
4424    DEN  HRL       7380          1023
4425    ORF  MIA      43350           802
4426    LAS  MSN       8410          1454
4427    RSW  OMA       6810          1299
4428    FLL  ACY      69430           977
4429    MYR  BDL      55240           664
4430    LBE  FLL      30700           980
4431    BDL  MYR      55890           664
4432    FNT  CLT      38420           555
4433    HSV  CLT      57440           333
4434    PHL  CHO       1440           210
4435    DCA  MYR      16220           372
4436    PHX  RAP       7550           876
4437    ORD  MKG      11620           119
4438    ORD  MCW       5130           289
4439    PAE  PSP      13300          1017
4440    SBP  SEA      28290           847
4441    SEA  EAT      38800            99
4442    ORD  DEC       7380           156
4443    SFO  ACV      47040           250
4444    DEN  RKS      13350           260
4445    DEN  COD      35520           391
4446    IAH  LRD      22850           301
4447    HOU  PHL       4770          1336
4448    CRP  DAL      20060           352
4449    MCI  PNS      13050           743
4450    SAT  SJC       2850          1454
4451    OGG  KOA      37890            84
4452    BNA  ABQ       1100          1123
4453    OAK  BLI      55920           764
4454    BZN  SAN       3990           956
4455    BNA  RIC        140           527
4456    RNO  SNA       4070           415
4457    MEM  TPA       7320           655
4458    IAD  JST       3100           120
4459    IAD  SHD       4790            91
4460    PVD  IAD      31780           371
4461    BUR  ACV      22900           564
4462    LAS  ACV       5220           591
4463    ACV  BUR      23730           564
4464    EUG  BUR      33570           732
4465    MFR  BUR      13920           615
4466    PSC  BUR      20690           833
4467    RDM  BUR      19590           709
4468    STS  BUR      54390           387
4469    HVN  FLL      35190          1127
4470    BUR  FNL       6730           851
4471    MCO  HVN      62630          1005
4472    RSW  HVN      30790          1134
4473    BUR  MFR      13120           615
4474    BUR  OGD      13360           594
4475    HVN  PBI      28660          1086
4476    BUR  STS      53250           387
4477    TPA  PDX       2270          2497
4478    RDM  DEN      61930           898
4479    LAX  TUL      23860          1283
4480    BDL  DEN      91670          1671
4481    KOA  DEN      51060          3329
4482    FSD  PHX      23870          1081
4483    LIH  PHX      74150          2979
4484    SAN  OGG      74480          2541
4485    ATL  EGE      15620          1312
4486    SJC  MSP      37310          1575
4487    ASE  AUS       3420           812
4488    RNO  ORD      19980          1671
4489    IAH  JAC      10350          1265
4490    MTJ  IAH      11200           927
4491    EGE  MIA      11150          1810
4492    HDN  ORD      15230          1009
4493    SEA  FLL      86740          2717
4494    TUS  DFW     317270           813
4495    EWR  STT      45690          1634
4496    SHV  DFW      89010           190
4497    VPS  DCA      28720           789
4498    MEM  PHL      18840           875
4499    FWA  DFW      39850           859
4500    EGE  ORD      16300          1007
4501    SMF  ORD     139220          1781
4502    DEN  HSV      37670          1048
4503    DEN  SGF      46810           637
4504    OAK  MCI      39410          1489
4505    SDF  PHL      31980           576
4506    ATW  DTW      37530           296
4507    PHX  FLG      50700           119
4508    PHL  BGR      52660           473
4509    DCA  LAS      64410          2089
4510    RIC  MIA      26740           825
4511    JFK  BQN      74060          1576
4512    BOS  BGR      10760           201
4513    DTW  BMI       3970           313
4514    MCO  BTV       8490          1194
4515    COS  MCO       4840          1520
4516    MCO  MDT      12010           851
4517    JAX  SJU      19620          1288
4518    MCO  TYS       6220           532
4519    FLL  STX      42050          1140
4520    MCI  FLL      49940          1242
4521    FLL  MHT      30560          1262
4522    MCI  TPA      87420          1048
4523    LAX  RDD      13350           501
4524    PAE  SNA      26560          1008
4525    DEN  SUN      17130           557
4526    MDW  PWM      28100           895
4527    OKC  BNA       4940           616
4528    ONT  DAL      40410          1200
4529    ITO  HNL     141440           216
4530    HOU  BOI        150          1501
4531    JAN  MCO       7260           588
4532    BUR  ORD        760          1734
4533    SRQ  PVD       2500          1171
4534    TPA  RIC       4410           723
4535    MCI  SAT       2340           706
4536    SNA  DCA        450          2288
4537    RIC  TPA       4670           723
4538    CLE  IAD      85550           288
4539    PHX  GRB       5390          1487
4540    CLT  AEX       7920           722
4541    ORH  LGA       7690           146
4542    DFW  BIS      27800           977
4543    PDX  RDM       1000           116
4544    SIT  JNU      20090            95
4545    JFK  EYW      13580          1201
4546    HPN  FLL      86040          1097
4547    BZN  JFK      11490          1902
4548    JFK  PSE      28170          1617
4549    SLC  WYS       6840           273
4550    DTW  BGM      11310           378
4551    DTW  MYR      85120           636
4552    EWR  XNA       3000          1131
4553    HRL  DFW      72450           461
4554    DFW  TYR      40310           102
4555    MYR  BOS      65730           738
4556    CAK  DCA      14960           274
4557    CHA  DCA      15090           523
4558    ILM  DCA      34790           319
4559    COS  LAX      14100           833
4560    BOI  AUS      15000          1375
4561    DEN  HOB       4750           501
4562    DEN  DDC       5100           292
4563    DEN  SUX       7180           466
4564    SAT  BNA      88940           822
4565    BWI  PDX        530          2358
4566    SDF  DAL      16280           725
4567    CHS  HOU      29560           928
4568    MCI  HOU      65160           666
4569    MKE  HOU       9430          1004
4570    AUS  ECP      14860           710
4571    DSM  LAS      39910          1216
4572    OAK  LIH      43930          2457
4573    BUR  MCI       1200          1354
4574    HOU  RNO       5630          1546
4575    PWM  MDW      30190           895
4576    AUS  LGA       2970          1520
4577    ABQ  SAN      40660           628
4578    SJC  COS       1040           943
4579    AUS  GRR        190          1103
4580    SAV  STL        110           689
4581    OKC  TPA       3290          1023
4582    SAT  TPA      41930           972
4583    MKE  IAD       5330           611
4584    PHX  DLH       5220          1392
4585    RSW  MSN      12030          1222
4586    DLH  PHX       4420          1392
4587    MSN  RSW      13000          1222
4588    TPA  TLH       1540           200
4589    PBI  HVN      29040          1086
4590    BUR  RDM      19650           709
4591    MSY  PHX      72400          1300
4592    ORD  SUN       3890          1341
4593    BZN  ORD      86520          1186
4594    SJU  STX       3340            94
4595    RIC  DTW      57120           456
4596    PSP  MDW       1840          1657
4597    PHX  EUG      38860           952
4598    PHX  BIL       7790           873
4599    SJC  ORD      32030          1829
4600    SEA  YKM      37620           103
4601    DTW  APN      13730           198
4602    ATL  PSP      16000          1840
4603    BMI  MCO       7740           936
4604    TTN  PBI      51090           985
4605    ACY  FLL      72180           977
4606    STT  FLL      53160          1107
4607    CLE  MYR      34670           557
4608    PHL  MEM      20300           875
4609    MHT  CLT      68400           737
4610    DEN  CYS      13940            90
4611    DSM  DFW      93370           624
4612    ORD  ATY        570           507
4613    DEN  VEL       9010           259
4614    DEN  LAR      14770           113
4615    DEN  CNY      10690           283
4616    ORD  CMX      18030           360
4617    IAD  OGS       5620           409
4618    DEN  ACV      19090          1026
4619    IAD  SRQ      15360           849
4620    DEN  BFF       9720           150
4621    DEN  EAR      12440           305
4622    DEN  HYS       7410           298
4623    LAX  ALB        120          2468
4624    OAK  BWI       3430          2447
4625    BWI  JAN      21070           888
4626    OKC  DCA      44920          1158
4627    HOU  MTJ        400           945
4628    MKE  FLL      27110          1243
4629    BUF  FLL      63070          1166
4630    OMA  HOU      35500           804
4631    CVG  HOU      13670           886
4632    DAL  PHL       4380          1295
4633    LBB  LAS      44740           775
4634    MAF  LAS      37160           795
4635    ICT  LAS      12980           986
4636    PNS  MCI      12450           743
4637    MDW  VPS       2340           782
4638    ALB  MDW      89180           717
4639    MEM  PHX      55620          1264
4640    DAL  HRL      20460           458
4641    LIT  PHX       4520          1136
4642    GRR  RSW      22100          1147
4643    MCI  SAN      44390          1334
4644    SAN  SAT      39540          1129
4645    TPA  SAT      36890           972
4646    MCI  SRQ       3520          1078
4647    MKE  SRQ       1410          1113
4648    DCA  SAT       6450          1380
4649    LGB  DFW       9530          1221
4650    IAD  CKB       5530           151
4651    ORD  TBN       5830           369
4652    ORF  IAD      72080           157
4653    MSP  SRQ      33020          1342
4654    TPA  EYW       8050           240
4655    EYW  TPA       8170           240
4656    HDN  DFW      18800           769
4657    SEA  JAC      10140           621
4658    MTJ  ATL       7080          1352
4659    TUL  ORD      66630           585
4660    LAX  SUN      10290           696
4661    SNA  HNL      30510          2584
4662    HNL  IAD      27970          4817
4663    STT  IAH      22380          2070
4664    BDL  IAH      27630          1507
4665    PIT  SEA      57640          2125
4666    ATL  STX      14400          1638
4667    DTW  SCE      13740           301
4668    ATL  VLD      36320           208
4669    ATL  AEX      30920           500
4670    MRY  DFW      40050          1430
4671    GTF  SLC      35640           463
4672    IND  HOU      37720           861
4673    SCE  ORD      31120           528
4674    LNK  DEN      42530           423
4675    AGS  ATL     123840           143
4676    TRI  ATL      66060           227
4677    MDT  DTW      33040           371
4678    ALB  CLT     112920           646
4679    GEG  DFW      47020          1477
4680    HPN  RSW      59820          1102
4681    MSN  DFW      83940           821
4682    GRI  DFW      25770           561
4683    SGF  ORD      57800           438
4684    CAE  DCA      43050           408
4685    MLI  DEN      29770           752
4686    ASE  IAH      22650           913
4687    HDN  EWR       3070          1728
4688    LGA  LAS       1740          2242
4689    MLI  DFW      39960           691
4690    MHT  DCA      55440           406
4691    ORD  EYW      39580          1251
4692    AVL  EWR      14570           583
4693    ANC  KOA       9980          2874
4694    SEA  CMH      46090          2016
4695    PSG  JNU       7310           123
4696    PDX  MCO      57470          2534
4697    LAX  BUF      27690          2218
4698    BOS  PVC        860            45
4699    JFK  MVY      25060           173
4700    SLC  DRO       1320           339
4701    SLC  CDC      14820           221
4702    JAX  AUS      22700           954
4703    PIT  MYR      29200           475
4704    BDL  RSW      47200          1180
4705    BTR  CLT      47820           675
4706    ITH  CLT      15960           557
4707    BDL  DCA      96420           313
4708    ECP  DCA      21470           769
4709    MRY  DEN      21580           959
4710    OMA  IAH      42680           781
4711    SAF  PHX      27990           370
4712    DEN  DVL       4440           638
4713    ORD  KOA      15060          4213
4714    ORD  JST       2430           487
4715    DEN  JMS       8690           573
4716    DEN  ALS       4960           179
4717    TPA  ALB      20360          1130
4718    HOU  BUF       1580          1297
4719    MDW  PSP       1640          1657
4720    CMH  HOU      36270          1001
4721    COS  HOU       2100           829
4722    BNA  DSM        570           530
4723    OMA  MCO      30290          1211
4724    ROC  MCO      43050          1033
4725    ATL  OAK       2810          2130
4726    MCO  OKC      14960          1069
4727    PDX  STL       8150          1708
4728    ALB  TPA      19160          1130
4729    ROC  TPA      14360          1079
4730    SDF  DFW     117900           733
4731    IAD  EYW      13950          1023
4732    DCA  LEX       7880           414
4733    RIC  PHL      43330           198
4734    AMA  DEN      24630           359
4735    BRO  IAH      47820           308
4736    HRL  IAH      49010           295
4737    MCO  EYW       6770           268
4738    EYW  MCO       7850           268
4739    BQK  ATL      34950           238
4740    SCE  DTW      13250           301
4741    XNA  CLT      66700           754
4742    BDL  DFW      68380          1471
4743    ADQ  ANC      70770           253
4744    PDX  DCA      44410          2350
4745    ANC  JNU      83170           571
4746    KTN  JNU      14720           234
4747    BOS  RKD        660           152
4748    PSE  JFK      29240          1617
4749    AUS  RSW       1980          1001
4750    MIA  XNA       5270          1099
4751    MHT  TPA      18190          1204
4752    BHM  PHL      25170           772
4753    CLT  PIA      34890           607
4754    DEN  SHR      18790           359
4755    BFL  DEN      20800           845
4756    RAP  DEN      92610           300
4757    FLG  DFW      26800           853
4758    MSN  DTW      79770           311
4759    SDF  DTW      49360           306
4760    AMA  IAH      23380           517
4761    MSP  CWA      28190           175
4762    LNK  MSP       7130           331
4763    RHI  MSP      22840           190
4764    DEN  DIK      21280           488
4765    IDA  PHX      17500           695
4766    MSP  TUS      12970          1298
4767    PSC  SEA     157690           172
4768    ORD  SHD       3700           541
4769    IAD  PBG       8790           444
4770    DEN  RIW      12220           296
4771    MCO  ELP      14000          1516
4772    SRQ  HOU      32350           789
4773    TUS  HOU      36710           945
4774    SMF  HOU      43340          1624
4775    OGG  LAS      76200          2695
4776    PIT  MCI        860           773
4777    SMF  OGG      53860          2404
4778    BWI  SJC       2060          2439
4779    VPS  STL       5360           610
4780    MCO  TUL       1760          1005
4781    BHM  IAH      46710           562
4782    MTJ  PHX       4860           419
4783    JFK  JAC       4900          1894
4784    PNS  LGA      16700          1030
4785    LNK  ORD      37580           466
4786    GPT  IAH      26250           376
4787    LRD  IAH      24740           301
4788    PDX  CLT      40490          2282
4789    BDL  DTW     115540           549
4790    FAR  ORD      63520           557
4791    BUF  DFW      52550          1212
4792    STX  MIA      92070          1139
4793    RSW  LAX      16980          2238
4794    MDT  ATL      79810           620
4795    XNA  DCA      15700           963
4796    SBP  DFW      41060          1360
4797    DCA  XNA      17190           963
4798    BOI  IAH      16460          1482
4799    PDX  MCI      12330          1482
4800    FAR  MSP     128820           223
4801    SGU  SLC      59020           272
4802    LAX  XNA      17190          1371
4803    TUS  PAE       6750          1241
4804    PAE  TUS       7030          1241
4805    EWR  BZN      23010          1882
4806    PIT  DAL      19650          1060
4807    DEN  ECP       7190          1250
4808    OKC  MCO      14560          1069
4809    PIT  SAT       1240          1276
4810    BNA  SMF      11250          1917
4811    SAN  TUL        540          1237
4812    CHA  ORD      29000           500
4813    EVV  CLT      30060           414
4814    CHO  ATL      50210           457
4815    MLI  ATL      40270           633
4816    SHV  ATL      54560           551
4817    BHM  DTW      11990           625
4818    LEX  DTW      46520           296
4819    TYS  LGA      34730           648
4820    BOS  MKE      58010           860
4821    CID  MSP      28580           220
4822    MSP  XNA      11020           596
4823    PHL  STT      14930          1605
4824    PHX  ACV      14010           845
4825    PHX  MTJ       3970           419
4826    MIA  LIT       5320           941
4827    CLT  ATW       9820           742
4828    SEA  ICT      18620          1430
4829    BZN  FLL       1740          2183
4830    SJC  JFK      38950          2569
4831    LAX  PBI      11790          2330
4832    PVD  RSW      39030          1200
4833    GEG  ATL      57120          1969
4834    GEG  MSP     104940          1175
4835    SLC  DSM       6480           955
4836    SLC  CLE       1610          1565
4837    LIT  DCA      18330           888
4838    LEX  DFW      57090           785
4839    CWA  ORD      34980           213
4840    AVP  CLT     107440           509
4841    DCA  MGM      12720           693
4842    LAX  ACV      13010           577
4843    DEN  MRY      20170           959
4844    HSV  DEN      38280          1048
4845    PIT  DTW      76770           201
4846    FSD  MSP      96140           196
4847    GFK  MSP      56940           284
4848    MOT  MSP      69310           449
4849    SBN  MSP      19570           411
4850    BIL  PHX       6880           873
4851    ACV  SFO      48890           250
4852    FAT  SFO      45570           158
4853    DEN  PIR       2300           385
4854    GEG  ORD      24240          1498
4855    EWR  MSN      16840           799
4856    LAS  LIT      19970          1294
4857    ORD  BUR       1200          1734
4858    MDW  PBI       4350          1128
4859    DAL  PSP       2080          1137
4860    AUS  GSP        340           957
4861    DAL  MTJ       3560           733
4862    LIH  LAS      36120          2818
4863    OMA  LAX      19050          1330
4864    BNA  OKC       4150           616
4865    DEN  PVD       7710          1737
4866    HOU  CLT       1220           920
4867    HOU  COS       2550           829
4868    DCA  SAN       8280          2276
4869    HOU  CVG       9330           886
4870    OAK  TUS       8620           747
4871    GNV  DFW      27550           900
4872    LEX  DCA       7810           414
4873    CRW  ORD      24500           416
4874    ERI  ORD      23470           398
4875    MSP  HRL      17240          1310
4876    MDT  BOS       9180           335
4877    PHF  CLT      73040           282
4878    PHL  FWA       9670           530
4879    BTV  PHL      42040           335
4880    FWA  PHL      11400           530
4881    LEX  PHL      10860           520
4882    BTR  IAH      62210           253
4883    AEX  ATL      31890           500
4884    MLU  ATL      34350           448
4885    DTW  CHS      43730           667
4886    ABE  DTW      27880           425
4887    CHA  DTW      12320           505
4888    CID  DTW      21360           430
4889    GSO  DTW      15120           460
4890    ITH  DTW      13190           353
4891    TVC  DTW      70600           207
4892    GRB  MSP      49240           252
4893    TYS  MSP       3190           792
4894    MSP  TYS       3360           792
4895    ORD  STT      11160          2115
4896    PHL  ROA      11330           311
4897    DFW  TXK      30180           181
4898    SJC  KOA      81490          2384
4899    ACK  BOS      12030            91
4900    ACK  JFK      26880           199
4901    MVY  EWR        340           192
4902    MVY  JFK      25540           173
4903    ACK  LGA      20380           202
4904    SYR  MCO      70870          1053
4905    FAY  ATL      49420           331
4906    FSD  ATL      32120           954
4907    GRB  ATL      35640           774
4908    JAC  MSP       5560           872
4909    DTW  ITH      13400           353
4910    DTW  DAY      24710           166
4911    MSP  BJI      30480           199
4912    DTW  SRQ      15500          1022
4913    ACK  EWR      14440           218
4914    DFW  GGG      23470           140
4915    BPT  DFW      23190           270
4916    FWA  ORD      65680           157
4917    MHK  ORD      22320           501
4918    GUC  DEN      33770           152
4919    ELM  DTW      38070           332
4920    LAX  EGE       5240           748
4921    COS  IAH      36180           809
4922    ORD  EGE      16290          1007
4923    ACV  LAX      12920           577
4924    RDD  LAX      12660           501
4925    SFO  OTH      14790           412
4926    MQT  MSP       3070           300
4927    SBA  PDX      20190           784
4928    SBP  SAN      14230           263
4929    IDA  SLC      84250           188
4930    ANC  OGG      11070          2797
4931    IAH  SGF      23380           513
4932    SFO  BZN      33950           807
4933    PHL  IAD      21410           135
4934    LAX  ITO      33870          2449
4935    IAH  LCH      22770           127
4936    ORD  RAP      37550           780
4937    SMF  DAL      64680          1442
4938    ONT  ELP        730           670
4939    LGB  HNL      52340          2569
4940    SJU  HOU       8890          1997
4941    MCI  VPS       1900           764
4942    BUR  ELP        760           715
4943    ONT  TUS        130           409
4944    RNO  OAK      45370           181
4945    BNA  TUL       1610           515
4946    BNA  SJU       7370          1753
4947    BWI  LIT        640           912
4948    LGA  CAE      14630           617
4949    DCA  EYW      22900          1023
4950    CAE  IAD      19440           401
4951    MSP  SJU      23820          2404
4952    PQI  EWR      13780           515
4953    BUR  PSC      20350           833
4954    LAS  STS      23660           454
4955    MVY  DCA      11650           383
4956    RSW  MHT      12180          1271
4957    SMF  CLT      37240          2244
4958    ATL  JAC      30960          1572
4959    PSC  DEN      30340           852
4960    MKE  SLC      25420          1247
4961    CLE  SFO      48520          2161
4962    SNA  STL      19910          1569
4963    LBB  DEN      30640           456
4964    KTN  ANC      13470           775
4965    ANC  CDV      12810           160
4966    KTN  PSG       1730           111
4967    PWM  MCO      20800          1214
4968    TPA  PWM      10030          1277
4969    MHT  EWR      25210           209
4970    GSO  MIA      10430           710
4971    HOB  IAH      13740           501
4972    ICT  SEA      19200          1430
4973    SAN  ELP      14470           636
4974    DAL  CLE        780          1015
4975    MTJ  DAL       3980           733
4976    PHL  CRW        630           356
4977    MSP  FWA      14400           488
4978    ERI  CLT      32710           476
4979    SEA  WRG       4240           756
4980    OGG  LIH      16460           201
4981    DAL  RNO       5610          1356
4982    RNO  HOU       4350          1546
4983    AUS  ONT      24140          1196
4984    SJC  MSY       2610          1884
4985    GSP  BOS         90           795
4986    ELP  CLT      10180          1482
4987    ORD  CMI      29940           135
4988    FAR  MCO       5710          1526
4989    AEX  CLT       7770           722
4990    SBN  CLT      41550           534
4991    CLT  FCA        270          1923
4992    HOB  DEN       4120           501
4993    BTM  SLC      16110           358
4994    ANC  DLG      21630           329
4995    PAE  PHX      51510          1133
4996    MTJ  ORD      19180          1081
4997    OMA  BNA       4060           612
4998    PBI  MDW       4590          1128
4999    VPS  MDW       2050           782
                                      origin_name origin_cbsa
1                    Newark Liberty International       35620
2         Fort Lauderdale-Hollywood International       33100
3                      Jacksonville International       27260
4                       Los Angeles International       31080
5                       Los Angeles International       31080
6                       Los Angeles International       31080
7                                       LaGuardia       35620
8                                       LaGuardia       35620
9                           Orlando International       36740
10                            Miami International       33100
11      Louis Armstrong New Orleans International       35380
12                Southwest Florida International       15980
13                   Seattle/Tacoma International       42660
14                   Seattle/Tacoma International       42660
15                   Seattle/Tacoma International       42660
16                   Salt Lake City International       41620
17                            Tampa International       45300
18       Hartsfield-Jackson Atlanta International       12060
19       Hartsfield-Jackson Atlanta International       12060
20       Hartsfield-Jackson Atlanta International       12060
21       Hartsfield-Jackson Atlanta International       12060
22       Hartsfield-Jackson Atlanta International       12060
23       Hartsfield-Jackson Atlanta International       12060
24       Hartsfield-Jackson Atlanta International       12060
25       Hartsfield-Jackson Atlanta International       12060
26       Hartsfield-Jackson Atlanta International       12060
27       Hartsfield-Jackson Atlanta International       12060
28       Hartsfield-Jackson Atlanta International       12060
29       Hartsfield-Jackson Atlanta International       12060
30       Hartsfield-Jackson Atlanta International       12060
31       Hartsfield-Jackson Atlanta International       12060
32       Hartsfield-Jackson Atlanta International       12060
33       Hartsfield-Jackson Atlanta International       12060
34                     Detroit Metro Wayne County       19820
35                     Detroit Metro Wayne County       19820
36              Minneapolis-St Paul International       33460
37              Minneapolis-St Paul International       33460
38              Minneapolis-St Paul International       33460
39              Minneapolis-St Paul International       33460
40                   Salt Lake City International       41620
41                   Salt Lake City International       41620
42                   Salt Lake City International       41620
43       Hartsfield-Jackson Atlanta International       12060
44       Hartsfield-Jackson Atlanta International       12060
45              Minneapolis-St Paul International       33460
46              Minneapolis-St Paul International       33460
47       Hartsfield-Jackson Atlanta International       12060
48       Hartsfield-Jackson Atlanta International       12060
49       Hartsfield-Jackson Atlanta International       12060
50       Hartsfield-Jackson Atlanta International       12060
51       Hartsfield-Jackson Atlanta International       12060
52       Hartsfield-Jackson Atlanta International       12060
53       Hartsfield-Jackson Atlanta International       12060
54                  John F. Kennedy International       35620
55                      Los Angeles International       31080
56                                      LaGuardia       35620
57              Minneapolis-St Paul International       33460
58                   Salt Lake City International       41620
59                   Salt Lake City International       41620
60              Minneapolis-St Paul International       33460
61              Minneapolis-St Paul International       33460
62              Minneapolis-St Paul International       33460
63              Minneapolis-St Paul International       33460
64                   Salt Lake City International       41620
65                   Salt Lake City International       41620
66                   Salt Lake City International       41620
67                   Salt Lake City International       41620
68                   Salt Lake City International       41620
69                   Salt Lake City International       41620
70                   Salt Lake City International       41620
71                   Salt Lake City International       41620
72                   Salt Lake City International       41620
73       Hartsfield-Jackson Atlanta International       12060
74       Hartsfield-Jackson Atlanta International       12060
75       Hartsfield-Jackson Atlanta International       12060
76                     Detroit Metro Wayne County       19820
77       Hartsfield-Jackson Atlanta International       12060
78       Hartsfield-Jackson Atlanta International       12060
79       Hartsfield-Jackson Atlanta International       12060
80       Hartsfield-Jackson Atlanta International       12060
81       Hartsfield-Jackson Atlanta International       12060
82       Hartsfield-Jackson Atlanta International       12060
83       Hartsfield-Jackson Atlanta International       12060
84       Hartsfield-Jackson Atlanta International       12060
85       Hartsfield-Jackson Atlanta International       12060
86       Hartsfield-Jackson Atlanta International       12060
87       Hartsfield-Jackson Atlanta International       12060
88                      Los Angeles International       31080
89                      Los Angeles International       31080
90                      Los Angeles International       31080
91                      Los Angeles International       31080
92                      Los Angeles International       31080
93              Minneapolis-St Paul International       33460
94              Minneapolis-St Paul International       33460
95                   Seattle/Tacoma International       42660
96                   Salt Lake City International       41620
97       Hartsfield-Jackson Atlanta International       12060
98       Hartsfield-Jackson Atlanta International       12060
99       Hartsfield-Jackson Atlanta International       12060
100      Hartsfield-Jackson Atlanta International       12060
101      Hartsfield-Jackson Atlanta International       12060
102      Hartsfield-Jackson Atlanta International       12060
103      Hartsfield-Jackson Atlanta International       12060
104                    Detroit Metro Wayne County       19820
105                     Los Angeles International       31080
106                     Los Angeles International       31080
107             Minneapolis-St Paul International       33460
108                  Salt Lake City International       41620
109      Hartsfield-Jackson Atlanta International       12060
110      Hartsfield-Jackson Atlanta International       12060
111      Hartsfield-Jackson Atlanta International       12060
112      Hartsfield-Jackson Atlanta International       12060
113      Hartsfield-Jackson Atlanta International       12060
114      Hartsfield-Jackson Atlanta International       12060
115      Hartsfield-Jackson Atlanta International       12060
116                    Detroit Metro Wayne County       19820
117                    Detroit Metro Wayne County       19820
118                        McCarran International       29820
119                     Los Angeles International       31080
120                     Los Angeles International       31080
121                         Orlando International       36740
122                         Orlando International       36740
123                           Miami International       33100
124                           Miami International       33100
125               Southwest Florida International       15980
126                  Seattle/Tacoma International       42660
127                  Seattle/Tacoma International       42660
128                  Seattle/Tacoma International       42660
129                  Seattle/Tacoma International       42660
130                  Salt Lake City International       41620
131                  Salt Lake City International       41620
132                  Salt Lake City International       41620
133                  Salt Lake City International       41620
134                           Tampa International       45300
135                       San Diego International       41740
136                     Los Angeles International       31080
137                  Seattle/Tacoma International       42660
138      Hartsfield-Jackson Atlanta International       12060
139                    Detroit Metro Wayne County       19820
140                    Detroit Metro Wayne County       19820
141                    Detroit Metro Wayne County       19820
142                    Detroit Metro Wayne County       19820
143                 John F. Kennedy International       35620
144                 John F. Kennedy International       35620
145             Minneapolis-St Paul International       33460
146             Minneapolis-St Paul International       33460
147                  Raleigh-Durham International       39580
148                  Salt Lake City International       41620
149                  Salt Lake City International       41620
150      Hartsfield-Jackson Atlanta International       12060
151      Hartsfield-Jackson Atlanta International       12060
152      Hartsfield-Jackson Atlanta International       12060
153                       Nashville International       34980
154    Cincinnati/Northern Kentucky International       17140
155    Cincinnati/Northern Kentucky International       17140
156               Dallas/Fort Worth International       19100
157                    Detroit Metro Wayne County       19820
158                    Detroit Metro Wayne County       19820
159                    Detroit Metro Wayne County       19820
160                    Detroit Metro Wayne County       19820
161                 Daniel K Inouye International       46520
162                 John F. Kennedy International       35620
163                 John F. Kennedy International       35620
164                  Raleigh-Durham International       39580
165                     San Antonio International       41700
166                  Seattle/Tacoma International       42660
167                  Salt Lake City International       41620
168                  Salt Lake City International       41620
169                  Salt Lake City International       41620
170                  Salt Lake City International       41620
171      Hartsfield-Jackson Atlanta International       12060
172                    Detroit Metro Wayne County       19820
173                    Detroit Metro Wayne County       19820
174                    Detroit Metro Wayne County       19820
175                    Detroit Metro Wayne County       19820
176                    Detroit Metro Wayne County       19820
177       Fort Lauderdale-Hollywood International       33100
178             Minneapolis-St Paul International       33460
179             Minneapolis-St Paul International       33460
180             Minneapolis-St Paul International       33460
181             Minneapolis-St Paul International       33460
182             Minneapolis-St Paul International       33460
183                  Chicago O'Hare International       16980
184              Sarasota/Bradenton International       35840
185                           Tampa International       45300
186                     Los Angeles International       31080
187      Hartsfield-Jackson Atlanta International       12060
188      Hartsfield-Jackson Atlanta International       12060
189             Minneapolis-St Paul International       33460
190      Hartsfield-Jackson Atlanta International       12060
191      Hartsfield-Jackson Atlanta International       12060
192      Hartsfield-Jackson Atlanta International       12060
193      Hartsfield-Jackson Atlanta International       12060
194                    Detroit Metro Wayne County       19820
195                    Detroit Metro Wayne County       19820
196                 John F. Kennedy International       35620
197                                     LaGuardia       35620
198             Minneapolis-St Paul International       33460
199      Hartsfield-Jackson Atlanta International       12060
200      Hartsfield-Jackson Atlanta International       12060
201      Hartsfield-Jackson Atlanta International       12060
202      Hartsfield-Jackson Atlanta International       12060
203      Hartsfield-Jackson Atlanta International       12060
204             Minneapolis-St Paul International       33460
205                  Salt Lake City International       41620
206      Hartsfield-Jackson Atlanta International       12060
207      Hartsfield-Jackson Atlanta International       12060
208      Hartsfield-Jackson Atlanta International       12060
209             Minneapolis-St Paul International       33460
210      Hartsfield-Jackson Atlanta International       12060
211      Hartsfield-Jackson Atlanta International       12060
212      Hartsfield-Jackson Atlanta International       12060
213      Hartsfield-Jackson Atlanta International       12060
214              Austin - Bergstrom International       12420
215                       Nashville International       34980
216                           Logan International       14460
217             Ronald Reagan Washington National       47900
218                          Denver International       19740
219               Dallas/Fort Worth International       19100
220                    Detroit Metro Wayne County       19820
221                    Detroit Metro Wayne County       19820
222                    Detroit Metro Wayne County       19820
223                  Newark Liberty International       35620
224                        McCarran International       29820
225                     Los Angeles International       31080
226                                     LaGuardia       35620
227                                     LaGuardia       35620
228                         Orlando International       36740
229     Louis Armstrong New Orleans International       35380
230                  Chicago O'Hare International       16980
231                        Portland International       38900
232                    Philadelphia International       37980
233                  Raleigh-Durham International       39580
234               Southwest Florida International       15980
235                  Seattle/Tacoma International       42660
236                           Tampa International       45300
237                    Detroit Metro Wayne County       19820
238                    Detroit Metro Wayne County       19820
239             Minneapolis-St Paul International       33460
240             Minneapolis-St Paul International       33460
241      Hartsfield-Jackson Atlanta International       12060
242      Hartsfield-Jackson Atlanta International       12060
243                  Salt Lake City International       41620
244                  Salt Lake City International       41620
245      Hartsfield-Jackson Atlanta International       12060
246             Minneapolis-St Paul International       33460
247                  Salt Lake City International       41620
248      Hartsfield-Jackson Atlanta International       12060
249                           Logan International       14460
250                    Detroit Metro Wayne County       19820
251                                     LaGuardia       35620
252                                     LaGuardia       35620
253             Minneapolis-St Paul International       33460
254             Minneapolis-St Paul International       33460
255                  Seattle/Tacoma International       42660
256      Hartsfield-Jackson Atlanta International       12060
257      Hartsfield-Jackson Atlanta International       12060
258             Minneapolis-St Paul International       33460
259                  Seattle/Tacoma International       42660
260                  Salt Lake City International       41620
261                  Salt Lake City International       41620
262                  Salt Lake City International       41620
263                  Salt Lake City International       41620
264      Hartsfield-Jackson Atlanta International       12060
265      Hartsfield-Jackson Atlanta International       12060
266                    Detroit Metro Wayne County       19820
267             Minneapolis-St Paul International       33460
268      Hartsfield-Jackson Atlanta International       12060
269                 John F. Kennedy International       35620
270             Minneapolis-St Paul International       33460
271      Hartsfield-Jackson Atlanta International       12060
272      Hartsfield-Jackson Atlanta International       12060
273      Hartsfield-Jackson Atlanta International       12060
274                    Detroit Metro Wayne County       19820
275       Fort Lauderdale-Hollywood International       33100
276                        McCarran International       29820
277                     Los Angeles International       31080
278                     Los Angeles International       31080
279                         Orlando International       36740
280                  Seattle/Tacoma International       42660
281      Hartsfield-Jackson Atlanta International       12060
282      Hartsfield-Jackson Atlanta International       12060
283                                     LaGuardia       35620
284                    Detroit Metro Wayne County       19820
285                  Seattle/Tacoma International       42660
286                  Salt Lake City International       41620
287                  Salt Lake City International       41620
288      Hartsfield-Jackson Atlanta International       12060
289      Hartsfield-Jackson Atlanta International       12060
290                    Detroit Metro Wayne County       19820
291                    Detroit Metro Wayne County       19820
292                        McCarran International       29820
293                     Los Angeles International       31080
294             Minneapolis-St Paul International       33460
295              Phoenix Sky Harbor International       38060
296                       San Diego International       41740
297                  Salt Lake City International       41620
298              John Wayne Airport-Orange County       31080
299                  Seattle/Tacoma International       42660
300                  Salt Lake City International       41620
301                  Salt Lake City International       41620
302             Minneapolis-St Paul International       33460
303                  Salt Lake City International       41620
304                            Boise Air Terminal       14260
305               Dallas/Fort Worth International       19100
306                    Detroit Metro Wayne County       19820
307                    Detroit Metro Wayne County       19820
308                    Detroit Metro Wayne County       19820
309                  Newark Liberty International       35620
310                         Spokane International       44060
311                 John F. Kennedy International       35620
312                        McCarran International       29820
313                     Los Angeles International       31080
314             Minneapolis-St Paul International       33460
315                         Ontario International       40140
316                       San Diego International       41740
317                   San Francisco International       41860
318       Norman Y. Mineta San Jose International       41940
319              John Wayne Airport-Orange County       31080
320             Minneapolis-St Paul International       33460
321                  Salt Lake City International       41620
322      Hartsfield-Jackson Atlanta International       12060
323             Minneapolis-St Paul International       33460
324                  Seattle/Tacoma International       42660
325                  Salt Lake City International       41620
326      Hartsfield-Jackson Atlanta International       12060
327             Minneapolis-St Paul International       33460
328      Hartsfield-Jackson Atlanta International       12060
329      Hartsfield-Jackson Atlanta International       12060
330      Hartsfield-Jackson Atlanta International       12060
331                    Detroit Metro Wayne County       19820
332                    Detroit Metro Wayne County       19820
333                 John F. Kennedy International       35620
334                                     LaGuardia       35620
335             Minneapolis-St Paul International       33460
336                        McCarran International       29820
337                         Ontario International       40140
338                        McCarran International       29820
339                         Orlando International       36740
340                         Orlando International       36740
341                          Denver International       19740
342                        McCarran International       29820
343                    Philadelphia International       37980
344                 Fresno Yosemite International       23420
345                  Chicago O'Hare International       16980
346                           Tampa International       45300
347                           Tampa International       45300
348                                Trenton Mercer       45940
349                          Denver International       19740
350                        McCarran International       29820
351                    Philadelphia International       37980
352                        McCarran International       29820
353                        McCarran International       29820
354                         Orlando International       36740
355                           Tampa International       45300
356                       San Diego International       41740
357                Luis Munoz Marin International       41980
358                        McCarran International       29820
359                        McCarran International       29820
360                  Newark Liberty International       35620
361               Washington Dulles International       47900
362                  Newark Liberty International       35620
363                  Chicago O'Hare International       16980
364               Washington Dulles International       47900
365                  Chicago O'Hare International       16980
366                  Chicago O'Hare International       16980
367                  Newark Liberty International       35620
368               Cleveland-Hopkins International       17460
369               Charlotte Douglas International       16740
370             Ronald Reagan Washington National       47900
371                  Piedmont Triad International       24660
372                    Indianapolis International       26900
373               Greater Rochester International       40380
374               Washington Dulles International       47900
375                  Newark Liberty International       35620
376                  Chicago O'Hare International       16980
377                           Hilton Head Airport       25940
378                    Indianapolis International       26900
379               Washington Dulles International       47900
380                  Chicago O'Hare International       16980
381                  Chicago O'Hare International       16980
382                  Chicago O'Hare International       16980
383                  Newark Liberty International       35620
384                  Newark Liberty International       35620
385               Washington Dulles International       47900
386               Washington Dulles International       47900
387                  Newark Liberty International       35620
388                  Newark Liberty International       35620
389                  Newark Liberty International       35620
390                  Chicago O'Hare International       16980
391                  Chicago O'Hare International       16980
392                  Newark Liberty International       35620
393                  Newark Liberty International       35620
394               Washington Dulles International       47900
395                  Chicago O'Hare International       16980
396                  Chicago O'Hare International       16980
397                  Chicago O'Hare International       16980
398                  Chicago O'Hare International       16980
399               Charlotte Douglas International       16740
400                           Miami International       33100
401                  Chicago O'Hare International       16980
402                       Nashville International       34980
403    Cincinnati/Northern Kentucky International       17140
404                             Will Rogers World       36420
405                  Chicago O'Hare International       16980
406              Austin - Bergstrom International       12420
407                  Chicago O'Hare International       16980
408                  Chicago O'Hare International       16980
409                  Chicago O'Hare International       16980
410                  Chicago O'Hare International       16980
411               Dallas/Fort Worth International       19100
412                  Chicago O'Hare International       16980
413               Dallas/Fort Worth International       19100
414               Dallas/Fort Worth International       19100
415               Dallas/Fort Worth International       19100
416                  Chicago O'Hare International       16980
417             Ronald Reagan Washington National       47900
418             Ronald Reagan Washington National       47900
419                           Miami International       33100
420                           Miami International       33100
421                           Miami International       33100
422                  Chicago O'Hare International       16980
423               Dallas/Fort Worth International       19100
424                    Detroit Metro Wayne County       19820
425                         Memphis International       32820
426                         Lake Charles Regional       29340
427                             Montrose Regional       33940
428               Dallas/Fort Worth International       19100
429                  Chicago O'Hare International       16980
430               Dallas/Fort Worth International       19100
431                  Chicago O'Hare International       16980
432                  Chicago O'Hare International       16980
433               Dallas/Fort Worth International       19100
434                  Chicago O'Hare International       16980
435               Dallas/Fort Worth International       19100
436               Dallas/Fort Worth International       19100
437               Dallas/Fort Worth International       19100
438               Dallas/Fort Worth International       19100
439               Dallas/Fort Worth International       19100
440               Charlotte Douglas International       16740
441                           Miami International       33100
442                  Chicago O'Hare International       16980
443                  Chicago O'Hare International       16980
444                  Chicago O'Hare International       16980
445               Dallas/Fort Worth International       19100
446               Dallas/Fort Worth International       19100
447               Dallas/Fort Worth International       19100
448               Dallas/Fort Worth International       19100
449               Dallas/Fort Worth International       19100
450               Charlotte Douglas International       16740
451                  Chicago O'Hare International       16980
452               Dallas/Fort Worth International       19100
453                  Chicago O'Hare International       16980
454                      Pittsburgh International       38300
455               Dallas/Fort Worth International       19100
456                  Chicago O'Hare International       16980
457               Dallas/Fort Worth International       19100
458                  Chicago O'Hare International       16980
459                  Chicago O'Hare International       16980
460               Dallas/Fort Worth International       19100
461                  Chicago O'Hare International       16980
462              Austin - Bergstrom International       12420
463    Cincinnati/Northern Kentucky International       17140
464                  Raleigh-Durham International       39580
465                  Chicago O'Hare International       16980
466                  Chicago O'Hare International       16980
467               Dallas/Fort Worth International       19100
468                  Chicago O'Hare International       16980
469                           Miami International       33100
470                           Miami International       33100
471                           Miami International       33100
472               Dallas/Fort Worth International       19100
473               Dallas/Fort Worth International       19100
474                  Chicago O'Hare International       16980
475               Dallas/Fort Worth International       19100
476               Dallas/Fort Worth International       19100
477                           Miami International       33100
478                  Chicago O'Hare International       16980
479               Dallas/Fort Worth International       19100
480               Dallas/Fort Worth International       19100
481               Dallas/Fort Worth International       19100
482                           Miami International       33100
483                    Myrtle Beach International       34820
484               Southwest Florida International       15980
485                  Newark Liberty International       35620
486       Fort Lauderdale-Hollywood International       33100
487          George Bush Intercontinental/Houston       26420
488                        McCarran International       29820
489     Louis Armstrong New Orleans International       35380
490                     Los Angeles International       31080
491                           Tampa International       45300
492       Fort Lauderdale-Hollywood International       33100
493                        McCarran International       29820
494                     Los Angeles International       31080
495                                     LaGuardia       35620
496            Baltimore/Washington International       12580
497       Fort Lauderdale-Hollywood International       33100
498                        McCarran International       29820
499                Luis Munoz Marin International       41980
500                           Tampa International       45300
501                        McCarran International       29820
502       Fort Lauderdale-Hollywood International       33100
503       Fort Lauderdale-Hollywood International       33100
504                        McCarran International       29820
505     Louis Armstrong New Orleans International       35380
506                           Tampa International       45300
507                           Logan International       14460
508                        McCarran International       29820
509                        McCarran International       29820
510               Southwest Florida International       15980
511                           Tampa International       45300
512                         Orlando International       36740
513                         Orlando International       36740
514                         Orlando International       36740
515          George Bush Intercontinental/Houston       26420
516       Fort Lauderdale-Hollywood International       33100
517                        McCarran International       29820
518     Louis Armstrong New Orleans International       35380
519                  Chicago O'Hare International       16980
520                           Tampa International       45300
521                        McCarran International       29820
522                       Nashville International       34980
523       Fort Lauderdale-Hollywood International       33100
524          George Bush Intercontinental/Houston       26420
525                         Orlando International       36740
526              Austin - Bergstrom International       12420
527                       Nashville International       34980
528                           Logan International       14460
529            Baltimore/Washington International       12580
530                          Denver International       19740
531                  Newark Liberty International       35620
532                    Indianapolis International       26900
533                        McCarran International       29820
534                                     LaGuardia       35620
535                  Newark Liberty International       35620
536                        McCarran International       29820
537       Fort Lauderdale-Hollywood International       33100
538                        McCarran International       29820
539                           Tampa International       45300
540                       Nashville International       34980
541                           Logan International       14460
542                    Detroit Metro Wayne County       19820
543                         Orlando International       36740
544     Louis Armstrong New Orleans International       35380
545                      Pittsburgh International       38300
546                  Seattle/Tacoma International       42660
547       Fort Lauderdale-Hollywood International       33100
548                     Kansas City International       28140
549     Louis Armstrong New Orleans International       35380
550                    Philadelphia International       37980
551         Louisville Muhammad Ali International       31140
552                         Orlando International       36740
553               Southwest Florida International       15980
554                        McCarran International       29820
555                     Los Angeles International       31080
556                       Nashville International       34980
557                              Rafael Hernandez       10380
558               Charlotte Douglas International       16740
559                        McCarran International       29820
560                      Pittsburgh International       38300
561                Luis Munoz Marin International       41980
562                        McCarran International       29820
563       Fort Lauderdale-Hollywood International       33100
564                        McCarran International       29820
565                        McCarran International       29820
566                        McCarran International       29820
567                         Orlando International       36740
568     Louis Armstrong New Orleans International       35380
569               Southwest Florida International       15980
570                        McCarran International       29820
571                     Los Angeles International       31080
572                         Orlando International       36740
573                  Chicago O'Hare International       16980
574                           Logan International       14460
575                           Tampa International       45300
576       Fort Lauderdale-Hollywood International       33100
577                           Logan International       14460
578            Baltimore/Washington International       12580
579             John Glenn Columbus International       18140
580                        McCarran International       29820
581               Charlotte Douglas International       16740
582               Charlotte Douglas International       16740
583             Ronald Reagan Washington National       47900
584                    Philadelphia International       37980
585             Ronald Reagan Washington National       47900
586               Charlotte Douglas International       16740
587               Charlotte Douglas International       16740
588               Charlotte Douglas International       16740
589               Charlotte Douglas International       16740
590               Charlotte Douglas International       16740
591               Charlotte Douglas International       16740
592             Ronald Reagan Washington National       47900
593             Ronald Reagan Washington National       47900
594             Ronald Reagan Washington National       47900
595               Charlotte Douglas International       16740
596               Charlotte Douglas International       16740
597               Charlotte Douglas International       16740
598               Charlotte Douglas International       16740
599                    Philadelphia International       37980
600               Charlotte Douglas International       16740
601                   Lehigh Valley International       10900
602                       Nashville International       34980
603                            Westchester County       35620
604               Washington Dulles International       47900
605        General Downing - Peoria International       37900
606               Charlotte Douglas International       16740
607               Charlotte Douglas International       16740
608                    Philadelphia International       37980
609               Charlotte Douglas International       16740
610               Charlotte Douglas International       16740
611               Charlotte Douglas International       16740
612               Charlotte Douglas International       16740
613               Charlotte Douglas International       16740
614             Ronald Reagan Washington National       47900
615               Charlotte Douglas International       16740
616      Jackson Medgar Wiley Evers International       27140
617                    Jacksonville International       27260
618     Louis Armstrong New Orleans International       35380
619                    Philadelphia International       37980
620                           Montgomery Regional       33860
621               Charlotte Douglas International       16740
622             Ronald Reagan Washington National       47900
623             Ronald Reagan Washington National       47900
624               Charlotte Douglas International       16740
625                    Philadelphia International       37980
626                    Philadelphia International       37980
627               Charlotte Douglas International       16740
628               Charlotte Douglas International       16740
629               Charlotte Douglas International       16740
630               Charlotte Douglas International       16740
631               Charlotte Douglas International       16740
632               Charlotte Douglas International       16740
633               Charlotte Douglas International       16740
634               Charlotte Douglas International       16740
635               Charlotte Douglas International       16740
636             Ronald Reagan Washington National       47900
637             Ronald Reagan Washington National       47900
638               Charlotte Douglas International       16740
639               Charlotte Douglas International       16740
640               Charlotte Douglas International       16740
641             Ronald Reagan Washington National       47900
642             Ronald Reagan Washington National       47900
643               Charlotte Douglas International       16740
644               Charlotte Douglas International       16740
645               Charlotte Douglas International       16740
646               Charlotte Douglas International       16740
647               Charlotte Douglas International       16740
648               Charlotte Douglas International       16740
649               Charlotte Douglas International       16740
650             Ronald Reagan Washington National       47900
651             Ronald Reagan Washington National       47900
652                    Philadelphia International       37980
653                    Philadelphia International       37980
654               Charlotte Douglas International       16740
655               Charlotte Douglas International       16740
656               Charlotte Douglas International       16740
657               Charlotte Douglas International       16740
658               Charlotte Douglas International       16740
659               Charlotte Douglas International       16740
660               Charlotte Douglas International       16740
661               Charlotte Douglas International       16740
662               Charlotte Douglas International       16740
663               Charlotte Douglas International       16740
664             Ronald Reagan Washington National       47900
665               Charlotte Douglas International       16740
666               Charlotte Douglas International       16740
667             Ronald Reagan Washington National       47900
668                    Philadelphia International       37980
669                       Nashville International       34980
670                  Charleston AFB/International       16700
671             Ronald Reagan Washington National       47900
672                      Wilmington International       48900
673                    Jacksonville International       27260
674             Minneapolis-St Paul International       33460
675                  Raleigh-Durham International       39580
676               Charlotte Douglas International       16740
677               Charlotte Douglas International       16740
678                    Philadelphia International       37980
679                    Philadelphia International       37980
680                    Philadelphia International       37980
681                    Philadelphia International       37980
682                    Philadelphia International       37980
683               Charlotte Douglas International       16740
684               Charlotte Douglas International       16740
685             Ronald Reagan Washington National       47900
686             Ronald Reagan Washington National       47900
687             Ronald Reagan Washington National       47900
688             Ronald Reagan Washington National       47900
689                     Los Angeles International       31080
690                          Denver International       19740
691                  Chicago O'Hare International       16980
692                  Chicago O'Hare International       16980
693                  Chicago O'Hare International       16980
694                     Los Angeles International       31080
695                       San Diego International       41740
696                          Denver International       19740
697                  Chicago O'Hare International       16980
698                  Chicago O'Hare International       16980
699                          Denver International       19740
700                   San Francisco International       41860
701                          Denver International       19740
702                  Chicago O'Hare International       16980
703                          Denver International       19740
704          George Bush Intercontinental/Houston       26420
705                         Spokane International       44060
706                     Los Angeles International       31080
707                        Portland International       38900
708                  Seattle/Tacoma International       42660
709                   San Francisco International       41860
710       Norman Y. Mineta San Jose International       41940
711                  Seattle/Tacoma International       42660
712                  Salt Lake City International       41620
713                          Denver International       19740
714              Phoenix Sky Harbor International       38060
715              Phoenix Sky Harbor International       38060
716                        Portland International       38900
717                   San Francisco International       41860
718                     Los Angeles International       31080
719                  Chicago O'Hare International       16980
720                          Denver International       19740
721                  Chicago O'Hare International       16980
722               Dallas/Fort Worth International       19100
723                          Denver International       19740
724                          Denver International       19740
725                     Los Angeles International       31080
726                          Denver International       19740
727                     Los Angeles International       31080
728              Austin - Bergstrom International       12420
729                            Boise Air Terminal       14260
730             Bozeman Yellowstone International       14580
731                      Des Moines International       19780
732                         Memphis International       32820
733                               Eppley Airfield       36540
734                          Denver International       19740
735                          Denver International       19740
736             Minneapolis-St Paul International       33460
737                          Denver International       19740
738                          Denver International       19740
739                  Chicago O'Hare International       16980
740                   San Francisco International       41860
741                   San Francisco International       41860
742              Phoenix Sky Harbor International       38060
743                        Portland International       38900
744                       San Diego International       41740
745                  Seattle/Tacoma International       42660
746                   San Francisco International       41860
747                   San Francisco International       41860
748             Minneapolis-St Paul International       33460
749                  Salt Lake City International       41620
750                  Chicago O'Hare International       16980
751                  Chicago O'Hare International       16980
752                    Detroit Metro Wayne County       19820
753                            Boise Air Terminal       14260
754                            Boise Air Terminal       14260
755                     Los Angeles International       31080
756                  Seattle/Tacoma International       42660
757                   San Francisco International       41860
758          George Bush Intercontinental/Houston       26420
759          George Bush Intercontinental/Houston       26420
760          George Bush Intercontinental/Houston       26420
761                  Chicago O'Hare International       16980
762                          Denver International       19740
763                    Detroit Metro Wayne County       19820
764             Minneapolis-St Paul International       33460
765                    Detroit Metro Wayne County       19820
766                         El Paso International       21340
767                  Salt Lake City International       41620
768                          Denver International       19740
769                          Denver International       19740
770                  Chicago O'Hare International       16980
771               Washington Dulles International       47900
772                     Los Angeles International       31080
773              Phoenix Sky Harbor International       38060
774                          Tucson International       46060
775                            Boise Air Terminal       14260
776             Bozeman Yellowstone International       14580
777                         Spokane International       44060
778             Charles M. Schulz - Sonoma County       42220
779       Norman Y. Mineta San Jose International       41940
780               Aspen Pitkin County Sardy Field       24060
781          George Bush Intercontinental/Houston       26420
782          George Bush Intercontinental/Houston       26420
783                  Chicago O'Hare International       16980
784                  Chicago O'Hare International       16980
785               Dallas/Fort Worth International       19100
786                  Chicago O'Hare International       16980
787              Phoenix Sky Harbor International       38060
788                   San Francisco International       41860
789                          Denver International       19740
790                          Denver International       19740
791                          Denver International       19740
792                       San Diego International       41740
793             Minneapolis-St Paul International       33460
794                        Appleton International       11540
795               Washington Dulles International       47900
796                          Denver International       19740
797                  Chicago O'Hare International       16980
798                        Portland International       38900
799               Dallas/Fort Worth International       19100
800                     Los Angeles International       31080
801                  Chicago O'Hare International       16980
802                          Denver International       19740
803          George Bush Intercontinental/Houston       26420
804                     Los Angeles International       31080
805                    Detroit Metro Wayne County       19820
806             Minneapolis-St Paul International       33460
807              Phoenix Sky Harbor International       38060
808              Phoenix Sky Harbor International       38060
809                   San Francisco International       41860
810               Cleveland-Hopkins International       17460
811                             Columbia Regional       17860
812                         Wichita Mid-Continent       48620
813          Greenville-Spartanburg International       43900
814                                  McGhee Tyson       28940
815                    Detroit Metro Wayne County       19820
816                                      Bob Hope       31080
817                 Fresno Yosemite International       23420
818          Rogue Valley International - Medford       32780
819            Metropolitan Oakland International       41860
820                       San Diego International       41740
821                   San Francisco International       41860
822                      Sacramento International       40900
823                     Los Angeles International       31080
824                  Seattle/Tacoma International       42660
825                   San Francisco International       41860
826                 Fresno Yosemite International       23420
827                          Denver International       19740
828                    Detroit Metro Wayne County       19820
829                  Chicago O'Hare International       16980
830          George Bush Intercontinental/Houston       26420
831              Phoenix Sky Harbor International       38060
832       Norman Y. Mineta San Jose International       41940
833                  Salt Lake City International       41620
834                    Detroit Metro Wayne County       19820
835                          Denver International       19740
836              Phoenix Sky Harbor International       38060
837                  Seattle/Tacoma International       42660
838                  Salt Lake City International       41620
839                          Denver International       19740
840                          Denver International       19740
841                          Denver International       19740
842                  Seattle/Tacoma International       42660
843              Phoenix Sky Harbor International       38060
844                      Sacramento International       40900
845              Austin - Bergstrom International       12420
846                 Fresno Yosemite International       23420
847                            Monterey Peninsula       41500
848                        Portland International       38900
849       Norman Y. Mineta San Jose International       41940
850             Charles M. Schulz - Sonoma County       42220
851                     Los Angeles International       31080
852                     Los Angeles International       31080
853                     Los Angeles International       31080
854              Phoenix Sky Harbor International       38060
855                   San Francisco International       41860
856                    Detroit Metro Wayne County       19820
857                        Portland International       38900
858             Minneapolis-St Paul International       33460
859                     Los Angeles International       31080
860                            Boise Air Terminal       14260
861                 Fresno Yosemite International       23420
862                         Spokane International       44060
863       Norman Y. Mineta San Jose International       41940
864                    Palm Springs International       40140
865                             Dallas Love Field       19100
866                        Portland International       38900
867              Phoenix Sky Harbor International       38060
868              John Wayne Airport-Orange County       31080
869                            Boise Air Terminal       14260
870               Dallas/Fort Worth International       19100
871                         Spokane International       44060
872              Austin - Bergstrom International       12420
873                         Spokane International       44060
874                     Los Angeles International       31080
875                        Portland International       38900
876                       San Diego International       41740
877                          Denver International       19740
878               Dallas/Fort Worth International       19100
879                       San Diego International       41740
880                            Long Beach Airport       31080
881                          Denver International       19740
882                          Denver International       19740
883                   San Francisco International       41860
884                   San Francisco International       41860
885                   San Francisco International       41860
886                            Boise Air Terminal       14260
887                        Portland International       38900
888                       San Diego International       41740
889                  Seattle/Tacoma International       42660
890                  Seattle/Tacoma International       42660
891                   San Francisco International       41860
892                   San Francisco International       41860
893                  Chicago O'Hare International       16980
894                  Chicago O'Hare International       16980
895              Phoenix Sky Harbor International       38060
896                     Los Angeles International       31080
897                        Portland International       38900
898                       San Diego International       41740
899                  Chicago O'Hare International       16980
900                    Detroit Metro Wayne County       19820
901                     Los Angeles International       31080
902                  Seattle/Tacoma International       42660
903          George Bush Intercontinental/Houston       26420
904                   San Francisco International       41860
905                        Portland International       38900
906                  Seattle/Tacoma International       42660
907                  Seattle/Tacoma International       42660
908                              Snohomish County       42660
909                       Pullman Moscow Regional       39420
910                      Sacramento International       40900
911                  Seattle/Tacoma International       42660
912                  Seattle/Tacoma International       42660
913                  Seattle/Tacoma International       42660
914                  Seattle/Tacoma International       42660
915                  Seattle/Tacoma International       42660
916                  Seattle/Tacoma International       42660
917                  Seattle/Tacoma International       42660
918                              Snohomish County       42660
919                        Portland International       38900
920                        Portland International       38900
921                  Seattle/Tacoma International       42660
922                   San Francisco International       41860
923                  Seattle/Tacoma International       42660
924                  Seattle/Tacoma International       42660
925                  Seattle/Tacoma International       42660
926                   San Francisco International       41860
927                     Los Angeles International       31080
928                        Portland International       38900
929                  Seattle/Tacoma International       42660
930                            Boise Air Terminal       14260
931                         Spokane International       44060
932                        McCarran International       29820
933              John Wayne Airport-Orange County       31080
934                         Spokane International       44060
935       Norman Y. Mineta San Jose International       41940
936                   San Francisco International       41860
937                  Seattle/Tacoma International       42660
938                  Seattle/Tacoma International       42660
939                     Los Angeles International       31080
940                              Snohomish County       42660
941                  Seattle/Tacoma International       42660
942             Bozeman Yellowstone International       14580
943                            Mahlon Sweet Field       21660
944                    Glacier Park International       28060
945                     Great Falls International       24500
946                          Idaho Falls Regional       26820
947          Rogue Valley International - Medford       32780
948                            Monterey Peninsula       41500
949                        Missoula International       33540
950            Metropolitan Oakland International       41860
951                        Portland International       38900
952                       Pullman Moscow Regional       39420
953                             Redding Municipal       39820
954                                 Roberts Field       13460
955                      Reno/Tahoe International       39900
956                      Sacramento International       40900
957                        McCarran International       29820
958                            Boise Air Terminal       14260
959             Charles M. Schulz - Sonoma County       42220
960                  Seattle/Tacoma International       42660
961                  Seattle/Tacoma International       42660
962          George Bush Intercontinental/Houston       26420
963                  Chicago O'Hare International       16980
964                  Chicago O'Hare International       16980
965                          Denver International       19740
966                          Denver International       19740
967               Washington Dulles International       47900
968                  Chicago O'Hare International       16980
969                  Chicago O'Hare International       16980
970                           Logan International       14460
971                          Denver International       19740
972                          Denver International       19740
973                  Newark Liberty International       35620
974          George Bush Intercontinental/Houston       26420
975          George Bush Intercontinental/Houston       26420
976          George Bush Intercontinental/Houston       26420
977          George Bush Intercontinental/Houston       26420
978                          Denver International       19740
979               Washington Dulles International       47900
980               Washington Dulles International       47900
981               Washington Dulles International       47900
982               Washington Dulles International       47900
983               Washington Dulles International       47900
984               Washington Dulles International       47900
985                              Easterwood Field       17780
986                          Denver International       19740
987                          Denver International       19740
988                  Chicago O'Hare International       16980
989                          Denver International       19740
990                          Denver International       19740
991                  Newark Liberty International       35620
992                  Newark Liberty International       35620
993                  Newark Liberty International       35620
994                  Newark Liberty International       35620
995                  Newark Liberty International       35620
996               Washington Dulles International       47900
997          George Bush Intercontinental/Houston       26420
998                     Los Angeles International       31080
999                  Chicago O'Hare International       16980
1000                  San Francisco International       41860
1001                 Newark Liberty International       35620
1002              Washington Dulles International       47900
1003                         Denver International       19740
1004                 Chicago O'Hare International       16980
1005                 Chicago O'Hare International       16980
1006                  San Francisco International       41860
1007                         Denver International       19740
1008                         Denver International       19740
1009                 Chicago O'Hare International       16980
1010                 Chicago O'Hare International       16980
1011                         Denver International       19740
1012                 Newark Liberty International       35620
1013      Fort Lauderdale-Hollywood International       33100
1014              Washington Dulles International       47900
1015                         Denver International       19740
1016                 Chicago O'Hare International       16980
1017                 Chicago O'Hare International       16980
1018                          Logan International       14460
1019                 Newark Liberty International       35620
1020              Washington Dulles International       47900
1021         George Bush Intercontinental/Houston       26420
1022         George Bush Intercontinental/Houston       26420
1023                    Los Angeles International       31080
1024                    Los Angeles International       31080
1025                    Kansas City International       28140
1026                 Chicago O'Hare International       16980
1027                 Chicago O'Hare International       16980
1028                 Chicago O'Hare International       16980
1029                       Portland International       38900
1030             Phoenix Sky Harbor International       38060
1031                    San Antonio International       41700
1032                     Sacramento International       40900
1033                 Newark Liberty International       35620
1034                 Chicago O'Hare International       16980
1035                  San Francisco International       41860
1036              Cleveland-Hopkins International       17460
1037              Cleveland-Hopkins International       17460
1038              Cleveland-Hopkins International       17460
1039                         Denver International       19740
1040                         Denver International       19740
1041              Washington Dulles International       47900
1042         George Bush Intercontinental/Houston       26420
1043         George Bush Intercontinental/Houston       26420
1044                   Jacksonville International       27260
1045                        Orlando International       36740
1046                          Miami International       33100
1047                 Chicago O'Hare International       16980
1048                 Chicago O'Hare International       16980
1049                     Palm Beach International       33100
1050             Phoenix Sky Harbor International       38060
1051                 Raleigh-Durham International       39580
1052              Southwest Florida International       15980
1053                      San Diego International       41740
1054           Savannah/Hilton Head International       42340
1055                  San Francisco International       41860
1056               Luis Munoz Marin International       41980
1057                 Salt Lake City International       41620
1058             Sarasota/Bradenton International       35840
1059                          Tampa International       45300
1060                         Denver International       19740
1061                         Denver International       19740
1062                 Newark Liberty International       35620
1063              Washington Dulles International       47900
1064         George Bush Intercontinental/Houston       26420
1065                  San Francisco International       41860
1066                         Denver International       19740
1067                         Denver International       19740
1068                 Chicago O'Hare International       16980
1069                 Newark Liberty International       35620
1070                 Newark Liberty International       35620
1071                 Newark Liberty International       35620
1072         George Bush Intercontinental/Houston       26420
1073         George Bush Intercontinental/Houston       26420
1074         George Bush Intercontinental/Houston       26420
1075                  San Francisco International       41860
1076                  San Francisco International       41860
1077                  San Francisco International       41860
1078                      Nashville International       34980
1079                          Logan International       14460
1080      Fort Lauderdale-Hollywood International       33100
1081                   Jacksonville International       27260
1082                    Los Angeles International       31080
1083                        Orlando International       36740
1084                     Palm Beach International       33100
1085                 Raleigh-Durham International       39580
1086                  San Francisco International       41860
1087                          Tampa International       45300
1088                         Denver International       19740
1089                   Jacksonville International       27260
1090                    Los Angeles International       31080
1091                                    LaGuardia       35620
1092    Louis Armstrong New Orleans International       35380
1093                 Chicago O'Hare International       16980
1094             Phoenix Sky Harbor International       38060
1095              Southwest Florida International       15980
1096                          Tampa International       45300
1097                         Denver International       19740
1098                         Denver International       19740
1099                         Denver International       19740
1100                 Newark Liberty International       35620
1101              Washington Dulles International       47900
1102              Washington Dulles International       47900
1103         George Bush Intercontinental/Houston       26420
1104                  San Francisco International       41860
1105                         Denver International       19740
1106                         Denver International       19740
1107                 Newark Liberty International       35620
1108                 Newark Liberty International       35620
1109              Washington Dulles International       47900
1110              Washington Dulles International       47900
1111         George Bush Intercontinental/Houston       26420
1112         George Bush Intercontinental/Houston       26420
1113         George Bush Intercontinental/Houston       26420
1114         George Bush Intercontinental/Houston       26420
1115         George Bush Intercontinental/Houston       26420
1116         George Bush Intercontinental/Houston       26420
1117                 Chicago O'Hare International       16980
1118                 Chicago O'Hare International       16980
1119                         Denver International       19740
1120                 Newark Liberty International       35620
1121         George Bush Intercontinental/Houston       26420
1122         George Bush Intercontinental/Houston       26420
1123         George Bush Intercontinental/Houston       26420
1124                       McCarran International       29820
1125                        Orlando International       36740
1126                 Chicago O'Hare International       16980
1127                         Denver International       19740
1128                         Denver International       19740
1129              Washington Dulles International       47900
1130                 Chicago O'Hare International       16980
1131                         Denver International       19740
1132                    Los Angeles International       31080
1133                         Denver International       19740
1134                 Newark Liberty International       35620
1135              Washington Dulles International       47900
1136         George Bush Intercontinental/Houston       26420
1137         George Bush Intercontinental/Houston       26420
1138                 Chicago O'Hare International       16980
1139         George Bush Intercontinental/Houston       26420
1140         George Bush Intercontinental/Houston       26420
1141                         Denver International       19740
1142                         Denver International       19740
1143                         Denver International       19740
1144                         Denver International       19740
1145              Washington Dulles International       47900
1146         George Bush Intercontinental/Houston       26420
1147                         Denver International       19740
1148                         Denver International       19740
1149                         Denver International       19740
1150                         Denver International       19740
1151           Baltimore/Washington International       12580
1152              Cleveland-Hopkins International       17460
1153            Ronald Reagan Washington National       47900
1154                         Denver International       19740
1155                 Newark Liberty International       35620
1156      Fort Lauderdale-Hollywood International       33100
1157                 Gerald R. Ford International       24340
1158              Washington Dulles International       47900
1159         George Bush Intercontinental/Houston       26420
1160                     Pittsburgh International       38300
1161                       Richmond International       40060
1162              Greater Rochester International       40380
1163                      San Diego International       41740
1164                         Denver International       19740
1165                 Chicago O'Hare International       16980
1166                 Newark Liberty International       35620
1167                         Denver International       19740
1168                 Newark Liberty International       35620
1169                  San Francisco International       41860
1170                  San Francisco International       41860
1171              Washington Dulles International       47900
1172                 Chicago O'Hare International       16980
1173                 Chicago O'Hare International       16980
1174                         Denver International       19740
1175                         Denver International       19740
1176                 Chicago O'Hare International       16980
1177                  San Francisco International       41860
1178                 Newark Liberty International       35620
1179         George Bush Intercontinental/Houston       26420
1180         George Bush Intercontinental/Houston       26420
1181                         Denver International       19740
1182                         Denver International       19740
1183              Washington Dulles International       47900
1184                 Chicago O'Hare International       16980
1185                 Chicago O'Hare International       16980
1186                 Chicago O'Hare International       16980
1187             Austin - Bergstrom International       12420
1188            Ronald Reagan Washington National       47900
1189                 Newark Liberty International       35620
1190      Fort Lauderdale-Hollywood International       33100
1191              Washington Dulles International       47900
1192              Washington Dulles International       47900
1193         George Bush Intercontinental/Houston       26420
1194                              Kahului Airport       27980
1195                 Chicago O'Hare International       16980
1196                 Chicago O'Hare International       16980
1197                 Chicago O'Hare International       16980
1198                 Newark Liberty International       35620
1199         George Bush Intercontinental/Houston       26420
1200              Washington Dulles International       47900
1201              Cleveland-Hopkins International       17460
1202              Washington Dulles International       47900
1203         George Bush Intercontinental/Houston       26420
1204         George Bush Intercontinental/Houston       26420
1205                            Dallas Love Field       19100
1206                            Dallas Love Field       19100
1207                       McCarran International       29820
1208             Austin - Bergstrom International       12420
1209                       McCarran International       29820
1210             Phoenix Sky Harbor International       38060
1211           Baltimore/Washington International       12580
1212           Baltimore/Washington International       12580
1213           Baltimore/Washington International       12580
1214           Baltimore/Washington International       12580
1215                        Orlando International       36740
1216                 Chicago Midway International       16980
1217                 Chicago Midway International       16980
1218           Baltimore/Washington International       12580
1219                        Orlando International       36740
1220                       McCarran International       29820
1221                            Dallas Love Field       19100
1222           Baltimore/Washington International       12580
1223                            Dallas Love Field       19100
1224                            Dallas Love Field       19100
1225                            Dallas Love Field       19100
1226                            Dallas Love Field       19100
1227                            Dallas Love Field       19100
1228                              William P Hobby       26420
1229                                    LaGuardia       35620
1230                        Orlando International       36740
1231                 Chicago Midway International       16980
1232               General Mitchell International       33340
1233             Phoenix Sky Harbor International       38060
1234             Phoenix Sky Harbor International       38060
1235             Phoenix Sky Harbor International       38060
1236               St Louis Lambert International       41180
1237             Austin - Bergstrom International       12420
1238                      Nashville International       34980
1239              Cleveland-Hopkins International       17460
1240      Northwest Florida Beaches International       37460
1241      Fort Lauderdale-Hollywood International       33100
1242                              William P Hobby       26420
1243                   Indianapolis International       26900
1244     Jackson Medgar Wiley Evers International       27140
1245                       McCarran International       29820
1246                                  Adams Field       30780
1247                    Kansas City International       28140
1248                        Memphis International       32820
1249                   Myrtle Beach International       34820
1250                   Philadelphia International       37980
1251             Phoenix Sky Harbor International       38060
1252                     Pittsburgh International       38300
1253                       Richmond International       40060
1254              Southwest Florida International       15980
1255                          Tampa International       45300
1256                      Nashville International       34980
1257                            Dallas Love Field       19100
1258                            Dallas Love Field       19100
1259                            Dallas Love Field       19100
1260                        El Paso International       21340
1261                              William P Hobby       26420
1262                              William P Hobby       26420
1263                           Long Beach Airport       31080
1264                 Chicago Midway International       16980
1265             Phoenix Sky Harbor International       38060
1266             Phoenix Sky Harbor International       38060
1267             Phoenix Sky Harbor International       38060
1268                      San Diego International       41740
1269                                     Bob Hope       31080
1270           Baltimore/Washington International       12580
1271                            Dallas Love Field       19100
1272            Ronald Reagan Washington National       47900
1273                              William P Hobby       26420
1274                         Valley International       15180
1275                    Los Angeles International       31080
1276                           Long Beach Airport       31080
1277                    Kansas City International       28140
1278                 Chicago Midway International       16980
1279            Minneapolis-St Paul International       33460
1280    Louis Armstrong New Orleans International       35380
1281           Metropolitan Oakland International       41860
1282                 Raleigh-Durham International       39580
1283             John Wayne Airport-Orange County       31080
1284               St Louis Lambert International       41180
1285                          Tampa International       45300
1286                 Chicago Midway International       16980
1287                 Chicago Midway International       16980
1288           Baltimore/Washington International       12580
1289                        Orlando International       36740
1290           Baltimore/Washington International       12580
1291                            Dallas Love Field       19100
1292                              William P Hobby       26420
1293                        Orlando International       36740
1294                 Chicago Midway International       16980
1295                          Tampa International       45300
1296                       McCarran International       29820
1297             Austin - Bergstrom International       12420
1298                        Bradley International       25540
1299                            Dallas Love Field       19100
1300                         Denver International       19740
1301                              William P Hobby       26420
1302                        Long Island MacArthur       35620
1303                    Kansas City International       28140
1304                        Orlando International       36740
1305                        Norfolk International       47260
1306             Phoenix Sky Harbor International       38060
1307              Southwest Florida International       15980
1308      Norman Y. Mineta San Jose International       41940
1309             Sarasota/Bradenton International       35840
1310                          Tampa International       45300
1311                          Logan International       14460
1312           Baltimore/Washington International       12580
1313                 Charleston AFB/International       16700
1314              Cleveland-Hopkins International       17460
1315              Charlotte Douglas International       16740
1316            John Glenn Columbus International       18140
1317                   Detroit Metro Wayne County       19820
1318      Northwest Florida Beaches International       37460
1319                   Jacksonville International       27260
1320                 Chicago Midway International       16980
1321                          Miami International       33100
1322               General Mitchell International       33340
1323    Louis Armstrong New Orleans International       35380
1324                   Myrtle Beach International       34820
1325           Metropolitan Oakland International       41860
1326           Metropolitan Oakland International       41860
1327                   Philadelphia International       37980
1328                     Pittsburgh International       38300
1329                Pensacola Gulf Coast Regional       37860
1330                 Raleigh-Durham International       39580
1331           Savannah/Hilton Head International       42340
1332           Eglin AFB Destin Fort Walton Beach       18880
1333                         Denver International       19740
1334                         Denver International       19740
1335                       McCarran International       29820
1336           Metropolitan Oakland International       41860
1337             Phoenix Sky Harbor International       38060
1338                      San Diego International       41740
1339                       McCarran International       29820
1340                      Nashville International       34980
1341                      Nashville International       34980
1342           Baltimore/Washington International       12580
1343           Baltimore/Washington International       12580
1344           Baltimore/Washington International       12580
1345           Baltimore/Washington International       12580
1346           Baltimore/Washington International       12580
1347           Baltimore/Washington International       12580
1348                 Chicago Midway International       16980
1349                 Chicago Midway International       16980
1350                 Chicago Midway International       16980
1351                 Chicago Midway International       16980
1352                 Chicago Midway International       16980
1353                 Chicago Midway International       16980
1354           Baltimore/Washington International       12580
1355      Fort Lauderdale-Hollywood International       33100
1356                        Orlando International       36740
1357                 Chicago Midway International       16980
1358                            Dallas Love Field       19100
1359                            Dallas Love Field       19100
1360                            Dallas Love Field       19100
1361                            Dallas Love Field       19100
1362                       McCarran International       29820
1363                     Sacramento International       40900
1364             Austin - Bergstrom International       12420
1365                         Denver International       19740
1366                              William P Hobby       26420
1367           Metropolitan Oakland International       41860
1368      Norman Y. Mineta San Jose International       41940
1369       Birmingham-Shuttlesworth International       13820
1370                      Nashville International       34980
1371                      Nashville International       34980
1372   Cincinnati/Northern Kentucky International       17140
1373                 Gerald R. Ford International       24340
1374                   Indianapolis International       26900
1375                 Chicago Midway International       16980
1376           Savannah/Hilton Head International       42340
1377           Eglin AFB Destin Fort Walton Beach       18880
1378                        Bradley International       25540
1379                Buffalo Niagara International       15380
1380                 Charleston AFB/International       16700
1381              Cleveland-Hopkins International       17460
1382      Fort Lauderdale-Hollywood International       33100
1383         Greenville-Spartanburg International       43900
1384                              William P Hobby       26420
1385                        Long Island MacArthur       35620
1386                       McCarran International       29820
1387                                    LaGuardia       35620
1388                 Chicago Midway International       16980
1389                          Miami International       33100
1390                   Myrtle Beach International       34820
1391                        Norfolk International       47260
1392             Phoenix Sky Harbor International       38060
1393                     Pittsburgh International       38300
1394                 Theodore Francis Green State       39300
1395               Portland International Jetport       38860
1396                 Raleigh-Durham International       39580
1397              Greater Rochester International       40380
1398              Southwest Florida International       15980
1399        Louisville Muhammad Ali International       31140
1400                         Denver International       19740
1401                       McCarran International       29820
1402                      Nashville International       34980
1403                      Nashville International       34980
1404                      Nashville International       34980
1405                            Dallas Love Field       19100
1406                 Chicago Midway International       16980
1407               St Louis Lambert International       41180
1408                      Nashville International       34980
1409                      Nashville International       34980
1410           Baltimore/Washington International       12580
1411                       McCarran International       29820
1412                 Chicago Midway International       16980
1413               St Louis Lambert International       41180
1414                      Nashville International       34980
1415                 Chicago Midway International       16980
1416                 Chicago Midway International       16980
1417             Sarasota/Bradenton International       35840
1418               St Louis Lambert International       41180
1419                      Nashville International       34980
1420           Baltimore/Washington International       12580
1421            Ronald Reagan Washington National       47900
1422                       McCarran International       29820
1423             Phoenix Sky Harbor International       38060
1424               St Louis Lambert International       41180
1425                          Tampa International       45300
1426                       McCarran International       29820
1427                       McCarran International       29820
1428             Phoenix Sky Harbor International       38060
1429                              William P Hobby       26420
1430                              William P Hobby       26420
1431                         Denver International       19740
1432                 Chicago Midway International       16980
1433           Baltimore/Washington International       12580
1434                        Orlando International       36740
1435                 Chicago Midway International       16980
1436                 Chicago Midway International       16980
1437                          Tampa International       45300
1438            Albuquerque International Sunport       10740
1439             Austin - Bergstrom International       12420
1440       Birmingham-Shuttlesworth International       13820
1441                         Denver International       19740
1442                         Denver International       19740
1443                        El Paso International       21340
1444                              William P Hobby       26420
1445                                    LaGuardia       35620
1446                           Long Beach Airport       31080
1447                        Orlando International       36740
1448           Metropolitan Oakland International       41860
1449                              Eppley Airfield       36540
1450      Norman Y. Mineta San Jose International       41940
1451                 Salt Lake City International       41620
1452             John Wayne Airport-Orange County       31080
1453               St Louis Lambert International       41180
1454                          Tampa International       45300
1455          Rick Husband Amarillo International       11100
1456             Austin - Bergstrom International       12420
1457            John Glenn Columbus International       18140
1458           City of Colorado Springs Municipal       17820
1459            Ronald Reagan Washington National       47900
1460      Northwest Florida Beaches International       37460
1461      Fort Lauderdale-Hollywood International       33100
1462         George Bush Intercontinental/Houston       26420
1463          Lubbock Preston Smith International       31180
1464                                  Adams Field       30780
1465     Midland International Air and Space Port       33260
1466                    Kansas City International       28140
1467                 Chicago Midway International       16980
1468            Minneapolis-St Paul International       33460
1469    Louis Armstrong New Orleans International       35380
1470                 Chicago O'Hare International       16980
1471             Phoenix Sky Harbor International       38060
1472                Pensacola Gulf Coast Regional       37860
1473                    San Antonio International       41700
1474                          Tulsa International       46140
1475           Eglin AFB Destin Fort Walton Beach       18880
1476                      Nashville International       34980
1477                      Nashville International       34980
1478                      Nashville International       34980
1479      Fort Lauderdale-Hollywood International       33100
1480                 Chicago Midway International       16980
1481               St Louis Lambert International       41180
1482               St Louis Lambert International       41180
1483            John Glenn Columbus International       18140
1484                            Dallas Love Field       19100
1485                        Orlando International       36740
1486               General Mitchell International       33340
1487                              Eppley Airfield       36540
1488              Southwest Florida International       15980
1489               St Louis Lambert International       41180
1490                          Tampa International       45300
1491       Birmingham-Shuttlesworth International       13820
1492                      Nashville International       34980
1493                                     Bob Hope       31080
1494           Baltimore/Washington International       12580
1495   Cincinnati/Northern Kentucky International       17140
1496                            Dallas Love Field       19100
1497                            Dallas Love Field       19100
1498                        El Paso International       21340
1499                        Spokane International       44060
1500                              William P Hobby       26420
1501                   Indianapolis International       26900
1502                       McCarran International       29820
1503                                    LaGuardia       35620
1504                 Chicago Midway International       16980
1505                 Chicago Midway International       16980
1506               General Mitchell International       33340
1507                      Santa Barbara Municipal       42200
1508             John Wayne Airport-Orange County       31080
1509               St Louis Lambert International       41180
1510                          Tulsa International       46140
1511                         Tucson International       46060
1512            Albuquerque International Sunport       10740
1513                Buffalo Niagara International       15380
1514                 Charleston AFB/International       16700
1515                                 Yampa Valley       44460
1516                              William P Hobby       26420
1517                        Wichita Mid-Continent       48620
1518                       McCarran International       29820
1519                           Long Beach Airport       31080
1520                                  Adams Field       30780
1521                          Miami International       33100
1522    Louis Armstrong New Orleans International       35380
1523           Metropolitan Oakland International       41860
1524                            Will Rogers World       36420
1525                     Reno/Tahoe International       39900
1526                      San Diego International       41740
1527                          Tampa International       45300
1528               St Louis Lambert International       41180
1529                      Nashville International       34980
1530                 Chicago Midway International       16980
1531                 Chicago Midway International       16980
1532                      Nashville International       34980
1533           Baltimore/Washington International       12580
1534               St Louis Lambert International       41180
1535                              William P Hobby       26420
1536               St Louis Lambert International       41180
1537             Austin - Bergstrom International       12420
1538                         Denver International       19740
1539                              William P Hobby       26420
1540                       McCarran International       29820
1541                    Los Angeles International       31080
1542             Phoenix Sky Harbor International       38060
1543             Austin - Bergstrom International       12420
1544                              William P Hobby       26420
1545                              William P Hobby       26420
1546             Phoenix Sky Harbor International       38060
1547                    San Antonio International       41700
1548           Metropolitan Oakland International       41860
1549                       McCarran International       29820
1550           Metropolitan Oakland International       41860
1551                       McCarran International       29820
1552           Baltimore/Washington International       12580
1553                              William P Hobby       26420
1554                              William P Hobby       26420
1555                              William P Hobby       26420
1556                        Orlando International       36740
1557    Louis Armstrong New Orleans International       35380
1558                 Raleigh-Durham International       39580
1559           Baltimore/Washington International       12580
1560                            Dallas Love Field       19100
1561            Ronald Reagan Washington National       47900
1562                 Chicago Midway International       16980
1563             Phoenix Sky Harbor International       38060
1564             Phoenix Sky Harbor International       38060
1565                     Pittsburgh International       38300
1566                    San Antonio International       41700
1567                          Tampa International       45300
1568                         Denver International       19740
1569                         Denver International       19740
1570                       McCarran International       29820
1571                 Chicago Midway International       16980
1572             Phoenix Sky Harbor International       38060
1573                     Sacramento International       40900
1574                       McCarran International       29820
1575           Metropolitan Oakland International       41860
1576           Baltimore/Washington International       12580
1577                              William P Hobby       26420
1578                                Lihue Airport       28180
1579           Metropolitan Oakland International       41860
1580           Metropolitan Oakland International       41860
1581             Phoenix Sky Harbor International       38060
1582     Hartsfield-Jackson Atlanta International       12060
1583                      Nashville International       34980
1584           Baltimore/Washington International       12580
1585                            Dallas Love Field       19100
1586                         Denver International       19740
1587                        El Paso International       21340
1588         Greenville-Spartanburg International       43900
1589                          Miami International       33100
1590            Minneapolis-St Paul International       33460
1591    Louis Armstrong New Orleans International       35380
1592             Phoenix Sky Harbor International       38060
1593               St Louis Lambert International       41180
1594               St Louis Lambert International       41180
1595             Austin - Bergstrom International       12420
1596                                     Bob Hope       31080
1597      Northwest Florida Beaches International       37460
1598      Fort Lauderdale-Hollywood International       33100
1599                         Valley International       15180
1600                       McCarran International       29820
1601                    Los Angeles International       31080
1602          Lubbock Preston Smith International       31180
1603                                    LaGuardia       35620
1604                           Long Beach Airport       31080
1605     Midland International Air and Space Port       33260
1606                        Orlando International       36740
1607                        Memphis International       32820
1608           Metropolitan Oakland International       41860
1609                            Will Rogers World       36420
1610                        Ontario International       40140
1611                   Philadelphia International       37980
1612                Pensacola Gulf Coast Regional       37860
1613              Southwest Florida International       15980
1614                    San Antonio International       41700
1615                    San Antonio International       41700
1616           Savannah/Hilton Head International       42340
1617      Norman Y. Mineta San Jose International       41940
1618                          Tampa International       45300
1619                          Tulsa International       46140
1620                              William P Hobby       26420
1621                              William P Hobby       26420
1622                 Chicago Midway International       16980
1623                 Chicago Midway International       16980
1624                            Dallas Love Field       19100
1625                            Dallas Love Field       19100
1626                 Chicago Midway International       16980
1627                            Dallas Love Field       19100
1628                            Dallas Love Field       19100
1629                 Chicago Midway International       16980
1630                         Denver International       19740
1631               St Louis Lambert International       41180
1632           Baltimore/Washington International       12580
1633                            Dallas Love Field       19100
1634                              William P Hobby       26420
1635                        Orlando International       36740
1636              Southwest Florida International       15980
1637             Sarasota/Bradenton International       35840
1638                      Nashville International       34980
1639           Baltimore/Washington International       12580
1640           Baltimore/Washington International       12580
1641           Baltimore/Washington International       12580
1642               St Louis Lambert International       41180
1643                      Nashville International       34980
1644                 Chicago Midway International       16980
1645             Phoenix Sky Harbor International       38060
1646             Phoenix Sky Harbor International       38060
1647             Phoenix Sky Harbor International       38060
1648            Albuquerque International Sunport       10740
1649          Rick Husband Amarillo International       11100
1650             Austin - Bergstrom International       12420
1651             Austin - Bergstrom International       12420
1652                            Dallas Love Field       19100
1653                        Spokane International       44060
1654                 Chicago Midway International       16980
1655               General Mitchell International       33340
1656           Metropolitan Oakland International       41860
1657                       Portland International       38900
1658                    San Antonio International       41700
1659                 Salt Lake City International       41620
1660                     Sacramento International       40900
1661             John Wayne Airport-Orange County       31080
1662               St Louis Lambert International       41180
1663                           Boise Air Terminal       14260
1664                                     Bob Hope       31080
1665           Baltimore/Washington International       12580
1666            Bozeman Yellowstone International       14580
1667           City of Colorado Springs Municipal       17820
1668                           Mahlon Sweet Field       21660
1669                           Long Beach Airport       31080
1670               General Mitchell International       33340
1671                        Ontario International       40140
1672                   Palm Springs International       40140
1673                     Reno/Tahoe International       39900
1674                      San Diego International       41740
1675                      Santa Barbara Municipal       42200
1676      Norman Y. Mineta San Jose International       41940
1677                          Tulsa International       46140
1678                         Tucson International       46060
1679            Albuquerque International Sunport       10740
1680                        El Paso International       21340
1681                Daniel K Inouye International       46520
1682                 Chicago Midway International       16980
1683    Louis Armstrong New Orleans International       35380
1684    Louis Armstrong New Orleans International       35380
1685             Phoenix Sky Harbor International       38060
1686             Phoenix Sky Harbor International       38060
1687             Austin - Bergstrom International       12420
1688             Austin - Bergstrom International       12420
1689                              William P Hobby       26420
1690                     Reno/Tahoe International       39900
1691                     Sacramento International       40900
1692                     Sacramento International       40900
1693             Austin - Bergstrom International       12420
1694                            Dallas Love Field       19100
1695           Baltimore/Washington International       12580
1696           Baltimore/Washington International       12580
1697                              William P Hobby       26420
1698               St Louis Lambert International       41180
1699               St Louis Lambert International       41180
1700                 Chicago Midway International       16980
1701    Louis Armstrong New Orleans International       35380
1702                         Denver International       19740
1703                       McCarran International       29820
1704           Metropolitan Oakland International       41860
1705                     Sacramento International       40900
1706               St Louis Lambert International       41180
1707                Daniel K Inouye International       46520
1708                              William P Hobby       26420
1709                              William P Hobby       26420
1710                       McCarran International       29820
1711                 Chicago Midway International       16980
1712                              Kahului Airport       27980
1713                     Reno/Tahoe International       39900
1714                     Sacramento International       40900
1715                            Dallas Love Field       19100
1716                            Dallas Love Field       19100
1717                              William P Hobby       26420
1718             Austin - Bergstrom International       12420
1719                            Dallas Love Field       19100
1720                 Chicago Midway International       16980
1721                 Chicago Midway International       16980
1722           Baltimore/Washington International       12580
1723      Fort Lauderdale-Hollywood International       33100
1724                                    LaGuardia       35620
1725                        Orlando International       36740
1726    Louis Armstrong New Orleans International       35380
1727              Southwest Florida International       15980
1728           Baltimore/Washington International       12580
1729                            Dallas Love Field       19100
1730                            Dallas Love Field       19100
1731                            Dallas Love Field       19100
1732                         Denver International       19740
1733                              William P Hobby       26420
1734                    Kansas City International       28140
1735               St Louis Lambert International       41180
1736               St Louis Lambert International       41180
1737               St Louis Lambert International       41180
1738                         Albany International       10580
1739                        Bradley International       25540
1740       Birmingham-Shuttlesworth International       13820
1741                Buffalo Niagara International       15380
1742   Cincinnati/Northern Kentucky International       17140
1743      Fort Lauderdale-Hollywood International       33100
1744                   Indianapolis International       26900
1745                        Memphis International       32820
1746    Louis Armstrong New Orleans International       35380
1747                        Norfolk International       47260
1748             Phoenix Sky Harbor International       38060
1749        Louisville Muhammad Ali International       31140
1750               St Louis Lambert International       41180
1751             Austin - Bergstrom International       12420
1752       Birmingham-Shuttlesworth International       13820
1753                      Nashville International       34980
1754           Baltimore/Washington International       12580
1755                 Charleston AFB/International       16700
1756            John Glenn Columbus International       18140
1757                            Dallas Love Field       19100
1758            Ronald Reagan Washington National       47900
1759                         Denver International       19740
1760      Fort Lauderdale-Hollywood International       33100
1761                 Gerald R. Ford International       24340
1762              Washington Dulles International       47900
1763                   Jacksonville International       27260
1764                                    LaGuardia       35620
1765                    Kansas City International       28140
1766                        Orlando International       36740
1767            Minneapolis-St Paul International       33460
1768    Louis Armstrong New Orleans International       35380
1769                              Eppley Airfield       36540
1770                        Norfolk International       47260
1771             Phoenix Sky Harbor International       38060
1772                 Theodore Francis Green State       39300
1773                       Richmond International       40060
1774                      San Diego International       41740
1775        Louisville Muhammad Ali International       31140
1776                 Seattle/Tacoma International       42660
1777                  San Francisco International       41860
1778                          Tampa International       45300
1779                          Logan International       14460
1780                Buffalo Niagara International       15380
1781              Cleveland-Hopkins International       17460
1782              Cleveland-Hopkins International       17460
1783   Cincinnati/Northern Kentucky International       17140
1784                              William P Hobby       26420
1785         George Bush Intercontinental/Houston       26420
1786                    Los Angeles International       31080
1787                        Memphis International       32820
1788                          Miami International       33100
1789                   Myrtle Beach International       34820
1790           Metropolitan Oakland International       41860
1791                            Will Rogers World       36420
1792                   Philadelphia International       37980
1793                     Pittsburgh International       38300
1794                 Raleigh-Durham International       39580
1795              Southwest Florida International       15980
1796                     Sacramento International       40900
1797             John Wayne Airport-Orange County       31080
1798             Sarasota/Bradenton International       35840
1799               St Louis Lambert International       41180
1800                         Tucson International       46060
1801                        Orlando International       36740
1802                 Chicago Midway International       16980
1803                            Dallas Love Field       19100
1804                         Denver International       19740
1805                              William P Hobby       26420
1806           Baltimore/Washington International       12580
1807               St Louis Lambert International       41180
1808                 Chicago Midway International       16980
1809    Louis Armstrong New Orleans International       35380
1810               St Louis Lambert International       41180
1811           Baltimore/Washington International       12580
1812            Ronald Reagan Washington National       47900
1813             Phoenix Sky Harbor International       38060
1814              Southwest Florida International       15980
1815               St Louis Lambert International       41180
1816                              William P Hobby       26420
1817               St Louis Lambert International       41180
1818                              William P Hobby       26420
1819                              William P Hobby       26420
1820                    Kansas City International       28140
1821                      Nashville International       34980
1822           Baltimore/Washington International       12580
1823      Fort Lauderdale-Hollywood International       33100
1824                    Los Angeles International       31080
1825                                    LaGuardia       35620
1826                        Orlando International       36740
1827                        Orlando International       36740
1828                          Miami International       33100
1829                    San Antonio International       41700
1830                          Tampa International       45300
1831                            Dallas Love Field       19100
1832           Baltimore/Washington International       12580
1833                 Chicago Midway International       16980
1834             Austin - Bergstrom International       12420
1835                     Bellingham International       13380
1836                                     Bob Hope       31080
1837                Daniel K Inouye International       46520
1838                                Lihue Airport       28180
1839                        Ontario International       40140
1840             Phoenix Sky Harbor International       38060
1841                   Palm Springs International       40140
1842                      San Diego International       41740
1843                           Boise Air Terminal       14260
1844                                     Bob Hope       31080
1845                           Mahlon Sweet Field       21660
1846                        Spokane International       44060
1847        Kona International Airport at Keahole       25900
1848                      Santa Barbara Municipal       42200
1849             John Wayne Airport-Orange County       31080
1850                Daniel K Inouye International       46520
1851             Austin - Bergstrom International       12420
1852                              William P Hobby       26420
1853                 Chicago Midway International       16980
1854             Phoenix Sky Harbor International       38060
1855               St Louis Lambert International       41180
1856                       McCarran International       29820
1857                 Chicago Midway International       16980
1858               St Louis Lambert International       41180
1859                              William P Hobby       26420
1860           Metropolitan Oakland International       41860
1861      Norman Y. Mineta San Jose International       41940
1862                      Nashville International       34980
1863             Phoenix Sky Harbor International       38060
1864                      Nashville International       34980
1865                            Dallas Love Field       19100
1866                      Nashville International       34980
1867                 Chicago Midway International       16980
1868           Baltimore/Washington International       12580
1869                        Orlando International       36740
1870                 Chicago Midway International       16980
1871             Phoenix Sky Harbor International       38060
1872             Phoenix Sky Harbor International       38060
1873             Phoenix Sky Harbor International       38060
1874      Norman Y. Mineta San Jose International       41940
1875                 Chicago Midway International       16980
1876                         Denver International       19740
1877             Austin - Bergstrom International       12420
1878                        Spokane International       44060
1879                              William P Hobby       26420
1880           Metropolitan Oakland International       41860
1881                            Will Rogers World       36420
1882                       Portland International       38900
1883                     Reno/Tahoe International       39900
1884                    San Antonio International       41700
1885      Norman Y. Mineta San Jose International       41940
1886                 Salt Lake City International       41620
1887                     Sacramento International       40900
1888            Albuquerque International Sunport       10740
1889             Austin - Bergstrom International       12420
1890                                     Bob Hope       31080
1891            John Glenn Columbus International       18140
1892           City of Colorado Springs Municipal       17820
1893                        El Paso International       21340
1894      Fort Lauderdale-Hollywood International       33100
1895                           Long Beach Airport       31080
1896                                Lihue Airport       28180
1897               General Mitchell International       33340
1898                              Eppley Airfield       36540
1899                        Ontario International       40140
1900                   Palm Springs International       40140
1901             John Wayne Airport-Orange County       31080
1902                          Tampa International       45300
1903             Phoenix Sky Harbor International       38060
1904              Southwest Florida International       15980
1905             Sarasota/Bradenton International       35840
1906                      Nashville International       34980
1907           Baltimore/Washington International       12580
1908      Fort Lauderdale-Hollywood International       33100
1909                      Nashville International       34980
1910                            Dallas Love Field       19100
1911                              William P Hobby       26420
1912                     Sacramento International       40900
1913                       McCarran International       29820
1914                 Chicago Midway International       16980
1915               St Louis Lambert International       41180
1916           Baltimore/Washington International       12580
1917           Baltimore/Washington International       12580
1918                        Orlando International       36740
1919                          Tampa International       45300
1920                 Chicago Midway International       16980
1921                                     Bob Hope       31080
1922                           Long Beach Airport       31080
1923                      San Diego International       41740
1924      Norman Y. Mineta San Jose International       41940
1925                        Orlando International       36740
1926                          Tampa International       45300
1927                 Chicago Midway International       16980
1928               General Mitchell International       33340
1929            Ronald Reagan Washington National       47900
1930                    Kansas City International       28140
1931                 Chicago Midway International       16980
1932        Louisville Muhammad Ali International       31140
1933                           Boise Air Terminal       14260
1934                            Dallas Love Field       19100
1935                              William P Hobby       26420
1936      Norman Y. Mineta San Jose International       41940
1937                Daniel K Inouye International       46520
1938                              Kahului Airport       27980
1939                         Tucson International       46060
1940                            Dallas Love Field       19100
1941                              William P Hobby       26420
1942                      Nashville International       34980
1943                            Dallas Love Field       19100
1944                        El Paso International       21340
1945                    Los Angeles International       31080
1946                       McCarran International       29820
1947           Metropolitan Oakland International       41860
1948                        Orlando International       36740
1949                 Chicago Midway International       16980
1950           Baltimore/Washington International       12580
1951              Southwest Florida International       15980
1952                          Tampa International       45300
1953           Metropolitan Oakland International       41860
1954      Norman Y. Mineta San Jose International       41940
1955             Phoenix Sky Harbor International       38060
1956                                     Bob Hope       31080
1957                      San Diego International       41740
1958                            Dallas Love Field       19100
1959                       McCarran International       29820
1960                              Kahului Airport       27980
1961                              Kahului Airport       27980
1962                Daniel K Inouye International       46520
1963        Kona International Airport at Keahole       25900
1964                           Long Beach Airport       31080
1965                        Ontario International       40140
1966                     Reno/Tahoe International       39900
1967             John Wayne Airport-Orange County       31080
1968                        Orlando International       36740
1969                            Dallas Love Field       19100
1970                                     Bob Hope       31080
1971                        Orlando International       36740
1972                     Sacramento International       40900
1973                        Spokane International       44060
1974                      San Diego International       41740
1975                 Seattle/Tacoma International       42660
1976                                     Bob Hope       31080
1977                Daniel K Inouye International       46520
1978                           Long Beach Airport       31080
1979                        Ontario International       40140
1980                   Palm Springs International       40140
1981             John Wayne Airport-Orange County       31080
1982                            Dallas Love Field       19100
1983             Phoenix Sky Harbor International       38060
1984             Austin - Bergstrom International       12420
1985            John Glenn Columbus International       18140
1986             Austin - Bergstrom International       12420
1987                   Indianapolis International       26900
1988                                    LaGuardia       35620
1989           Baltimore/Washington International       12580
1990                            Dallas Love Field       19100
1991      Fort Lauderdale-Hollywood International       33100
1992                              William P Hobby       26420
1993                   Jacksonville International       27260
1994                                    LaGuardia       35620
1995                           Long Beach Airport       31080
1996                 Chicago Midway International       16980
1997    Louis Armstrong New Orleans International       35380
1998                 Seattle/Tacoma International       42660
1999             Austin - Bergstrom International       12420
2000                      Nashville International       34980
2001                      Nashville International       34980
2002            John Glenn Columbus International       18140
2003                     Des Moines International       19780
2004      Northwest Florida Beaches International       37460
2005                        Wichita Mid-Continent       48620
2006                    Los Angeles International       31080
2007                                  Adams Field       30780
2008                    Kansas City International       28140
2009                        Orlando International       36740
2010                          Miami International       33100
2011               General Mitchell International       33340
2012                            Will Rogers World       36420
2013                              Eppley Airfield       36540
2014             Phoenix Sky Harbor International       38060
2015                Pensacola Gulf Coast Regional       37860
2016             Sarasota/Bradenton International       35840
2017                      Nashville International       34980
2018           Baltimore/Washington International       12580
2019            John Glenn Columbus International       18140
2020            Ronald Reagan Washington National       47900
2021                 Chicago O'Hare International       16980
2022                 Raleigh-Durham International       39580
2023        Louisville Muhammad Ali International       31140
2024                        Bradley International       25540
2025       Birmingham-Shuttlesworth International       13820
2026                Buffalo Niagara International       15380
2027   Cincinnati/Northern Kentucky International       17140
2028      Fort Lauderdale-Hollywood International       33100
2029                      San Diego International       41740
2030                       McCarran International       29820
2031                      Nashville International       34980
2032                            Dallas Love Field       19100
2033         George Bush Intercontinental/Houston       26420
2034             Phoenix Sky Harbor International       38060
2035              Washington Dulles International       47900
2036               St Louis Lambert International       41180
2037              Dallas/Fort Worth International       19100
2038             Phoenix Sky Harbor International       38060
2039              Dallas/Fort Worth International       19100
2040              Dallas/Fort Worth International       19100
2041              Dallas/Fort Worth International       19100
2042                                    LaGuardia       35620
2043                     Pittsburgh International       38300
2044           Savannah/Hilton Head International       42340
2045                          Tulsa International       46140
2046              Dallas/Fort Worth International       19100
2047             Phoenix Sky Harbor International       38060
2048                                Meadows Field       12540
2049                           Mahlon Sweet Field       21660
2050              Dallas/Fort Worth International       19100
2051              Dallas/Fort Worth International       19100
2052         George Bush Intercontinental/Houston       26420
2053         George Bush Intercontinental/Houston       26420
2054         George Bush Intercontinental/Houston       26420
2055            Ronald Reagan Washington National       47900
2056            Ronald Reagan Washington National       47900
2057                   Philadelphia International       37980
2058                John F. Kennedy International       35620
2059                   Indianapolis International       26900
2060                                    LaGuardia       35620
2061            John Glenn Columbus International       18140
2062                John F. Kennedy International       35620
2063                John F. Kennedy International       35620
2064                                    LaGuardia       35620
2065                                    LaGuardia       35620
2066                                    LaGuardia       35620
2067                                    LaGuardia       35620
2068                                    LaGuardia       35620
2069                     Pittsburgh International       38300
2070                 Raleigh-Durham International       39580
2071                John F. Kennedy International       35620
2072                 Newark Liberty International       35620
2073                 Newark Liberty International       35620
2074              Charlotte Douglas International       16740
2075                                    LaGuardia       35620
2076                John F. Kennedy International       35620
2077                John F. Kennedy International       35620
2078                                    LaGuardia       35620
2079                                    LaGuardia       35620
2080                                    LaGuardia       35620
2081                          Logan International       14460
2082                   Philadelphia International       37980
2083                John F. Kennedy International       35620
2084              Charlotte Douglas International       16740
2085                John F. Kennedy International       35620
2086                 Raleigh-Durham International       39580
2087        Louisville Muhammad Ali International       31140
2088                          Logan International       14460
2089                                    LaGuardia       35620
2090                 Charleston AFB/International       16700
2091                   Detroit Metro Wayne County       19820
2092                       Key West International       28580
2093               General Mitchell International       33340
2094    Louis Armstrong New Orleans International       35380
2095               Portland International Jetport       38860
2096              Charlotte Douglas International       16740
2097                                    LaGuardia       35620
2098    Louis Armstrong New Orleans International       35380
2099             Sarasota/Bradenton International       35840
2100                                    LaGuardia       35620
2101                          Logan International       14460
2102              Charlotte Douglas International       16740
2103              Washington Dulles International       47900
2104                 Newark Liberty International       35620
2105                      Nashville International       34980
2106           Baltimore/Washington International       12580
2107           Baltimore/Washington International       12580
2108            Ronald Reagan Washington National       47900
2109                        Norfolk International       47260
2110                   Philadelphia International       37980
2111                   Philadelphia International       37980
2112                     Pittsburgh International       38300
2113              Cleveland-Hopkins International       17460
2114            John Glenn Columbus International       18140
2115                   Indianapolis International       26900
2116                   Indianapolis International       26900
2117                       Richmond International       40060
2118   Cincinnati/Northern Kentucky International       17140
2119              Charlotte Douglas International       16740
2120                   Jacksonville International       27260
2121                          Logan International       14460
2122                 Raleigh-Durham International       39580
2123            John Glenn Columbus International       18140
2124              Washington Dulles International       47900
2125            Ronald Reagan Washington National       47900
2126                                    LaGuardia       35620
2127                John F. Kennedy International       35620
2128                          Logan International       14460
2129                John F. Kennedy International       35620
2130                                    LaGuardia       35620
2131                 Chicago O'Hare International       16980
2132                          Logan International       14460
2133            Ronald Reagan Washington National       47900
2134                 Newark Liberty International       35620
2135              Washington Dulles International       47900
2136                   Philadelphia International       37980
2137                 Newark Liberty International       35620
2138              Washington Dulles International       47900
2139              Charlotte Douglas International       16740
2140                                    LaGuardia       35620
2141              Charlotte Douglas International       16740
2142            Ronald Reagan Washington National       47900
2143                 Chicago O'Hare International       16980
2144              Washington Dulles International       47900
2145              Washington Dulles International       47900
2146              Washington Dulles International       47900
2147                Buffalo Niagara International       15380
2148              Washington Dulles International       47900
2149                 Chicago O'Hare International       16980
2150                 Piedmont Triad International       24660
2151                           Westchester County       35620
2152              Washington Dulles International       47900
2153            Minneapolis-St Paul International       33460
2154            Minneapolis-St Paul International       33460
2155            Bozeman Yellowstone International       14580
2156                  San Francisco International       41860
2157            Minneapolis-St Paul International       33460
2158                   Philadelphia International       37980
2159                   Philadelphia International       37980
2160                   Philadelphia International       37980
2161                   Philadelphia International       37980
2162                   Philadelphia International       37980
2163                   Philadelphia International       37980
2164                   Philadelphia International       37980
2165                   Philadelphia International       37980
2166                   Philadelphia International       37980
2167                          Logan International       14460
2168                   Philadelphia International       37980
2169                            Flagstaff Pulliam       22380
2170                         Denver International       19740
2171              Washington Dulles International       47900
2172                                  Adams Field       30780
2173                 Newark Liberty International       35620
2174                       Key West International       28580
2175                        Orlando International       36740
2176                        Orlando International       36740
2177                          Tampa International       45300
2178      Fort Lauderdale-Hollywood International       33100
2179                          Tampa International       45300
2180                              Tweed New Haven       35300
2181                          Logan International       14460
2182         George Bush Intercontinental/Houston       26420
2183                                    LaGuardia       35620
2184               General Mitchell International       33340
2185                                    LaGuardia       35620
2186                       McCarran International       29820
2187                          Miami International       33100
2188                          Logan International       14460
2189                   Palm Springs International       40140
2190                              Kahului Airport       27980
2191              Dallas/Fort Worth International       19100
2192             Phoenix Sky Harbor International       38060
2193              Dallas/Fort Worth International       19100
2194                                 Cyril E King        <NA>
2195                      San Diego International       41740
2196                  San Francisco International       41860
2197                    Kansas City International       28140
2198                 Raleigh-Durham International       39580
2199                          Miami International       33100
2200                 Seattle/Tacoma International       42660
2201                Daniel K Inouye International       46520
2202              Southwest Florida International       15980
2203                  San Francisco International       41860
2204              Southwest Florida International       15980
2205                John F. Kennedy International       35620
2206                        Bradley International       25540
2207            Albuquerque International Sunport       10740
2208                          Logan International       14460
2209                                 Jackson Hole       27220
2210                      Melbourne International       37340
2211                     Palm Beach International       33100
2212                       Portland International       38900
2213                        Orlando International       36740
2214                    Los Angeles International       31080
2215                    Kansas City International       28140
2216             Phoenix Sky Harbor International       38060
2217              Dallas/Fort Worth International       19100
2218             Austin - Bergstrom International       12420
2219                         Denver International       19740
2220      Fort Lauderdale-Hollywood International       33100
2221               Luis Munoz Marin International       41980
2222   Cincinnati/Northern Kentucky International       17140
2223                John F. Kennedy International       35620
2224                 Raleigh-Durham International       39580
2225                          Miami International       33100
2226                      San Diego International       41740
2227     Hartsfield-Jackson Atlanta International       12060
2228             Austin - Bergstrom International       12420
2229                    Kansas City International       28140
2230            Minneapolis-St Paul International       33460
2231                    Los Angeles International       31080
2232                 Seattle/Tacoma International       42660
2233              Charlotte Douglas International       16740
2234                           Westchester County       35620
2235                   Palm Springs International       40140
2236              Southwest Florida International       15980
2237                    Los Angeles International       31080
2238                          Logan International       14460
2239                                 Yampa Valley       44460
2240                     Reno/Tahoe International       39900
2241                 Salt Lake City International       41620
2242                  San Francisco International       41860
2243                          Tampa International       45300
2244                 Raleigh-Durham International       39580
2245            John Glenn Columbus International       18140
2246                    Kansas City International       28140
2247            Albuquerque International Sunport       10740
2248                                    LaGuardia       35620
2249                 Seattle/Tacoma International       42660
2250            Minneapolis-St Paul International       33460
2251                 Salt Lake City International       41620
2252                          Tampa International       45300
2253               Luis Munoz Marin International       41980
2254      Fort Lauderdale-Hollywood International       33100
2255          Ted Stevens Anchorage International       11260
2256                Daniel K Inouye International       46520
2257                                  Agana Field        <NA>
2258                Daniel K Inouye International       46520
2259        Kona International Airport at Keahole       25900
2260                Daniel K Inouye International       46520
2261                              Kahului Airport       27980
2262                       McCarran International       29820
2263     Hartsfield-Jackson Atlanta International       12060
2264          Baton Rouge Metropolitan/Ryan Field       12940
2265                         Gainesville Regional       23540
2266                Gulfport-Biloxi International       25060
2267                                   Blue Grass       30460
2268                              Mobile Regional       33660
2269               Roanoke Regional/Woodrum Field       40220
2270                 Springfield-Branson National       44180
2271                          Tulsa International       46140
2272                                    LaGuardia       35620
2273               General Mitchell International       33340
2274                       Richmond International       40060
2275     Hartsfield-Jackson Atlanta International       12060
2276                                    LaGuardia       35620
2277                          Logan International       14460
2278                   Detroit Metro Wayne County       19820
2279                     Burlington International       15540
2280                 Charleston AFB/International       16700
2281         Greenville-Spartanburg International       43900
2282               Portland International Jetport       38860
2283                 Raleigh-Durham International       39580
2284              Greater Rochester International       40380
2285                                 McGhee Tyson       28940
2286   Cincinnati/Northern Kentucky International       17140
2287     Hartsfield-Jackson Atlanta International       12060
2288                John F. Kennedy International       35620
2289                         Bangor International       12620
2290                      Nashville International       34980
2291                 Charleston AFB/International       16700
2292                 Charleston AFB/International       16700
2293                     Pittsburgh International       38300
2294           Savannah/Hilton Head International       42340
2295       Birmingham-Shuttlesworth International       13820
2296                 Piedmont Triad International       24660
2297         Greenville-Spartanburg International       43900
2298                        Memphis International       32820
2299               Portland International Jetport       38860
2300           Savannah/Hilton Head International       42340
2301     Hartsfield-Jackson Atlanta International       12060
2302   Cincinnati/Northern Kentucky International       17140
2303                     Des Moines International       19780
2304                John F. Kennedy International       35620
2305                                    LaGuardia       35620
2306     Hartsfield-Jackson Atlanta International       12060
2307                   Detroit Metro Wayne County       19820
2308                                    LaGuardia       35620
2309                          Tampa International       45300
2310                          Logan International       14460
2311              Dallas/Fort Worth International       19100
2312                John F. Kennedy International       35620
2313                          Miami International       33100
2314             Austin - Bergstrom International       12420
2315              Dallas/Fort Worth International       19100
2316              Dallas/Fort Worth International       19100
2317             Phoenix Sky Harbor International       38060
2318              Charlotte Douglas International       16740
2319            John Glenn Columbus International       18140
2320                       McCarran International       29820
2321            Minneapolis-St Paul International       33460
2322    Louis Armstrong New Orleans International       35380
2323                        Norfolk International       47260
2324             Phoenix Sky Harbor International       38060
2325                     Pittsburgh International       38300
2326               Portland International Jetport       38860
2327                          Tampa International       45300
2328              Charlotte Douglas International       16740
2329                                    LaGuardia       35620
2330                   Jacksonville International       27260
2331                        Memphis International       32820
2332            Albuquerque International Sunport       10740
2333                         Bangor International       12620
2334            John Glenn Columbus International       18140
2335                 Piedmont Triad International       24660
2336                        Wichita Mid-Continent       48620
2337                    Los Angeles International       31080
2338                     Harrisburg International       25420
2339                 McAllen Miller International       32580
2340               General Mitchell International       33340
2341                        Ontario International       40140
2342                     Palm Beach International       33100
2343               Portland International Jetport       38860
2344              Southwest Florida International       15980
2345                  San Francisco International       41860
2346                 Chicago O'Hare International       16980
2347                 Chicago O'Hare International       16980
2348              Charlotte Douglas International       16740
2349                          Miami International       33100
2350              Dallas/Fort Worth International       19100
2351              Dallas/Fort Worth International       19100
2352                          Miami International       33100
2353              Dallas/Fort Worth International       19100
2354              Charlotte Douglas International       16740
2355              Dallas/Fort Worth International       19100
2356              Charlotte Douglas International       16740
2357                 Chicago O'Hare International       16980
2358             Austin - Bergstrom International       12420
2359              Dallas/Fort Worth International       19100
2360              Charlotte Douglas International       16740
2361              Dallas/Fort Worth International       19100
2362              Dallas/Fort Worth International       19100
2363                          Tampa International       45300
2364                       McCarran International       29820
2365             Phoenix Sky Harbor International       38060
2366                  San Francisco International       41860
2367               Luis Munoz Marin International       41980
2368                                 Cyril E King        <NA>
2369              Charlotte Douglas International       16740
2370              Dallas/Fort Worth International       19100
2371              Dallas/Fort Worth International       19100
2372                       Key West International       28580
2373                        Ontario International       40140
2374               Luis Munoz Marin International       41980
2375             John Wayne Airport-Orange County       31080
2376             Sarasota/Bradenton International       35840
2377              Charlotte Douglas International       16740
2378              Dallas/Fort Worth International       19100
2379              Southwest Florida International       15980
2380                          Logan International       14460
2381                 Newark Liberty International       35620
2382                John F. Kennedy International       35620
2383                          Miami International       33100
2384              Charlotte Douglas International       16740
2385              Dallas/Fort Worth International       19100
2386                          Miami International       33100
2387              Dallas/Fort Worth International       19100
2388              Dallas/Fort Worth International       19100
2389                   Philadelphia International       37980
2390              Charlotte Douglas International       16740
2391              Charlotte Douglas International       16740
2392              Charlotte Douglas International       16740
2393                          Miami International       33100
2394                          Miami International       33100
2395                   Philadelphia International       37980
2396              Dallas/Fort Worth International       19100
2397              Dallas/Fort Worth International       19100
2398                Daniel K Inouye International       46520
2399              Wiley Post/Will Rogers Memorial        <NA>
2400          Ted Stevens Anchorage International       11260
2401                 Seattle/Tacoma International       42660
2402                 Seattle/Tacoma International       42660
2403          Ted Stevens Anchorage International       11260
2404          Ted Stevens Anchorage International       11260
2405                                Lihue Airport       28180
2406                       Portland International       38900
2407                 Seattle/Tacoma International       42660
2408          Ted Stevens Anchorage International       11260
2409                                Lihue Airport       28180
2410                 Seattle/Tacoma International       42660
2411                   Palm Springs International       40140
2412      Fort Lauderdale-Hollywood International       33100
2413                                Lihue Airport       28180
2414                        Orlando International       36740
2415            Ronald Reagan Washington National       47900
2416                John F. Kennedy International       35620
2417                          Logan International       14460
2418      Fort Lauderdale-Hollywood International       33100
2419      Fort Lauderdale-Hollywood International       33100
2420                  San Francisco International       41860
2421                Buffalo Niagara International       15380
2422                     Palm Beach International       33100
2423                      San Diego International       41740
2424             Sarasota/Bradenton International       35840
2425                John F. Kennedy International       35620
2426                     Palm Beach International       33100
2427                       Richmond International       40060
2428            Albuquerque International Sunport       10740
2429                          Logan International       14460
2430                                     Bob Hope       31080
2431                     Palm Beach International       33100
2432                   Palm Springs International       40140
2433                        Bradley International       25540
2434                Buffalo Niagara International       15380
2435                John F. Kennedy International       35620
2436                        Orlando International       36740
2437                     Palm Beach International       33100
2438                John F. Kennedy International       35620
2439                John F. Kennedy International       35620
2440                          Tampa International       45300
2441                John F. Kennedy International       35620
2442                          Logan International       14460
2443                        Orlando International       36740
2444                         Albany International       10580
2445                        Bradley International       25540
2446                           Boise Air Terminal       14260
2447            Bozeman Yellowstone International       14580
2448            John Glenn Columbus International       18140
2449             James M Cox/Dayton International       19430
2450                        Eagle County Regional       20780
2451                 Piedmont Triad International       24660
2452  Huntsville International-Carl T Jones Field       26620
2453                     Wilmington International       48900
2454                   Jacksonville International       27260
2455                              Eppley Airfield       36540
2456                        Norfolk International       47260
2457                Pensacola Gulf Coast Regional       37860
2458               Portland International Jetport       38860
2459                 Raleigh-Durham International       39580
2460                      San Diego International       41740
2461                  San Francisco International       41860
2462               Luis Munoz Marin International       41980
2463             John Wayne Airport-Orange County       31080
2464                         Tucson International       46060
2465           Eglin AFB Destin Fort Walton Beach       18880
2466                   Detroit Metro Wayne County       19820
2467                 Seattle/Tacoma International       42660
2468                 Salt Lake City International       41620
2469                          Miami International       33100
2470            Minneapolis-St Paul International       33460
2471                 Salt Lake City International       41620
2472      Fort Lauderdale-Hollywood International       33100
2473                       McCarran International       29820
2474              Southwest Florida International       15980
2475                   Detroit Metro Wayne County       19820
2476                John F. Kennedy International       35620
2477             Austin - Bergstrom International       12420
2478                          Logan International       14460
2479                Buffalo Niagara International       15380
2480               General Mitchell International       33340
2481                   Myrtle Beach International       34820
2482                      San Diego International       41740
2483                    San Antonio International       41700
2484                  San Francisco International       41860
2485             Sarasota/Bradenton International       35840
2486     Hartsfield-Jackson Atlanta International       12060
2487     Hartsfield-Jackson Atlanta International       12060
2488                 Seattle/Tacoma International       42660
2489                 Salt Lake City International       41620
2490    Louis Armstrong New Orleans International       35380
2491                     Palm Beach International       33100
2492                   Indianapolis International       26900
2493                          Tampa International       45300
2494                          Logan International       14460
2495                 Salt Lake City International       41620
2496                          Logan International       14460
2497                John F. Kennedy International       35620
2498                        Bradley International       25540
2499           Baltimore/Washington International       12580
2500                   Detroit Metro Wayne County       19820
2501      Fort Lauderdale-Hollywood International       33100
2502                    Kansas City International       28140
2503               General Mitchell International       33340
2504                       Missoula International       33540
2505                   Palm Springs International       40140
2506                    San Antonio International       41700
2507                     Sacramento International       40900
2508             John Wayne Airport-Orange County       31080
2509             Sarasota/Bradenton International       35840
2510                          Logan International       14460
2511                   Detroit Metro Wayne County       19820
2512   Cincinnati/Northern Kentucky International       17140
2513                   Detroit Metro Wayne County       19820
2514             Austin - Bergstrom International       12420
2515                John F. Kennedy International       35620
2516            Minneapolis-St Paul International       33460
2517                          Tampa International       45300
2518                          Logan International       14460
2519     Hartsfield-Jackson Atlanta International       12060
2520                      Nashville International       34980
2521                          Logan International       14460
2522           Baltimore/Washington International       12580
2523            Ronald Reagan Washington National       47900
2524      Fort Lauderdale-Hollywood International       33100
2525                   Indianapolis International       26900
2526    Louis Armstrong New Orleans International       35380
2527                       Portland International       38900
2528                 Raleigh-Durham International       39580
2529                     Reno/Tahoe International       39900
2530                    San Antonio International       41700
2531               St Louis Lambert International       41180
2532                          Tampa International       45300
2533     Hartsfield-Jackson Atlanta International       12060
2534                 Newark Liberty International       35620
2535                     Burlington International       15540
2536                Buffalo Niagara International       15380
2537                 Gerald R. Ford International       24340
2538         Greenville-Spartanburg International       43900
2539                          Hilton Head Airport       25940
2540                       Richmond International       40060
2541                     Burlington International       15540
2542               St Louis Lambert International       41180
2543        Kona International Airport at Keahole       25900
2544              Dallas/Fort Worth International       19100
2545              Dallas/Fort Worth International       19100
2546 Brownsville South Padre Island International       15180
2547                        Columbia Metropolitan       17900
2548               University of Illinois/Willard       16580
2549                 Corpus Christi International       18580
2550                      Abraham Lincoln Capital       44100
2551                                 McGhee Tyson       28940
2552                          Miami International       33100
2553                          Miami International       33100
2554              Dallas/Fort Worth International       19100
2555              Dallas/Fort Worth International       19100
2556              Dallas/Fort Worth International       19100
2557              Dallas/Fort Worth International       19100
2558              Dallas/Fort Worth International       19100
2559                              Eppley Airfield       36540
2560                          Miami International       33100
2561                              Eppley Airfield       36540
2562                     Des Moines International       19780
2563                      Rochester International       40340
2564              Dallas/Fort Worth International       19100
2565                          Miami International       33100
2566              Charlotte Douglas International       16740
2567              Charlotte Douglas International       16740
2568             Dane County Regional-Truax Field       31540
2569              Cleveland-Hopkins International       17460
2570                   Detroit Metro Wayne County       19820
2571                           Lafayette Regional       29180
2572                                  Adams Field       30780
2573                     Harrisburg International       25420
2574             James M Cox/Dayton International       19430
2575                                 McGhee Tyson       28940
2576            Ronald Reagan Washington National       47900
2577                   Philadelphia International       37980
2578                   Manchester-Boston Regional       31700
2579            Ronald Reagan Washington National       47900
2580            Ronald Reagan Washington National       47900
2581            Minneapolis-St Paul International       33460
2582                         Denver International       19740
2583              Dallas/Fort Worth International       19100
2584                       Appleton International       11540
2585                      Nashville International       34980
2586          Casper/Natrona County International       16220
2587                           Mahlon Sweet Field       21660
2588     Midland International Air and Space Port       33260
2589                        Norfolk International       47260
2590        Louisville Muhammad Ali International       31140
2591                            Granite Point Ndb        <NA>
2592                         Albany International       10580
2593                              Eppley Airfield       36540
2594                          South Bend Regional       43780
2595              Dallas/Fort Worth International       19100
2596                 Chicago O'Hare International       16980
2597            Minneapolis-St Paul International       33460
2598                    Kansas City International       28140
2599               General Mitchell International       33340
2600                   Palm Springs International       40140
2601                  Northwest Arkansas Regional       22220
2602                         Denver International       19740
2603                         Denver International       19740
2604         George Bush Intercontinental/Houston       26420
2605                           Bismarck Municipal       13900
2606                        Memphis International       32820
2607                            Will Rogers World       36420
2608                              Eppley Airfield       36540
2609                     Pittsburgh International       38300
2610                       Richmond International       40060
2611        Louisville Muhammad Ali International       31140
2612            Minneapolis-St Paul International       33460
2613                        Bradley International       25540
2614                         Albany International       10580
2615       Birmingham-Shuttlesworth International       13820
2616                        Memphis International       32820
2617                          Rapid City Regional       39660
2618                   Detroit Metro Wayne County       19820
2619                      Durango La Plata County       20420
2620            Minneapolis-St Paul International       33460
2621                         Denver International       19740
2622                        Ontario International       40140
2623            Albuquerque International Sunport       10740
2624                         Tucson International       46060
2625            Albuquerque International Sunport       10740
2626                Fresno Yosemite International       23420
2627                              Helena Regional       25740
2628                                   Tri Cities       28420
2629                   Palm Springs International       40140
2630                          Rapid City Regional       39660
2631                         Tucson International       46060
2632                 Salt Lake City International       41620
2633                           Boise Air Terminal       14260
2634                  San Francisco International       41860
2635                                Lihue Airport       28180
2636             Dane County Regional-Truax Field       31540
2637                       Missoula International       33540
2638         George Bush Intercontinental/Houston       26420
2639                    San Antonio International       41700
2640                     Sacramento International       40900
2641                         Denver International       19740
2642         George Bush Intercontinental/Houston       26420
2643                       Portland International       38900
2644             Phoenix Sky Harbor International       38060
2645                      San Diego International       41740
2646               Luis Munoz Marin International       41980
2647           Baltimore/Washington International       12580
2648            John Glenn Columbus International       18140
2649   Cincinnati/Northern Kentucky International       17140
2650                Daniel K Inouye International       46520
2651                                 Jackson Hole       27220
2652                   Philadelphia International       37980
2653                     Pittsburgh International       38300
2654                 Seattle/Tacoma International       42660
2655                 Newark Liberty International       35620
2656         George Bush Intercontinental/Houston       26420
2657         George Bush Intercontinental/Houston       26420
2658         George Bush Intercontinental/Houston       26420
2659                 Newark Liberty International       35620
2660                 Chicago O'Hare International       16980
2661           Baltimore/Washington International       12580
2662                Daniel K Inouye International       46520
2663                        Orlando International       36740
2664                 Seattle/Tacoma International       42660
2665                 Newark Liberty International       35620
2666                         Denver International       19740
2667                 Newark Liberty International       35620
2668      Norman Y. Mineta San Jose International       41940
2669                      Nashville International       34980
2670               Luis Munoz Marin International       41980
2671              Southwest Florida International       15980
2672      Northwest Florida Beaches International       37460
2673                              William P Hobby       26420
2674                Daniel K Inouye International       46520
2675                    Kansas City International       28140
2676                      Nashville International       34980
2677                Daniel K Inouye International       46520
2678                   Indianapolis International       26900
2679                    San Antonio International       41700
2680      Fort Lauderdale-Hollywood International       33100
2681         George Bush Intercontinental/Houston       26420
2682              Dallas/Fort Worth International       19100
2683                     Des Moines International       19780
2684                       Key West International       28580
2685        Louisville Muhammad Ali International       31140
2686              Washington Dulles International       47900
2687                 Charleston AFB/International       16700
2688              Cleveland-Hopkins International       17460
2689                   Jacksonville International       27260
2690                          Logan International       14460
2691                John F. Kennedy International       35620
2692             Dane County Regional-Truax Field       31540
2693            John Glenn Columbus International       18140
2694                    Kansas City International       28140
2695                        Memphis International       32820
2696             Dane County Regional-Truax Field       31540
2697        Louisville Muhammad Ali International       31140
2698                 Newark Liberty International       35620
2699                  Northwest Arkansas Regional       22220
2700                       Key West International       28580
2701        Louisville Muhammad Ali International       31140
2702                                    LaGuardia       35620
2703                John F. Kennedy International       35620
2704                 Charleston AFB/International       16700
2705                   Jacksonville International       27260
2706        Louisville Muhammad Ali International       31140
2707                       Key West International       28580
2708    Louis Armstrong New Orleans International       35380
2709              Charlotte Douglas International       16740
2710                          Logan International       14460
2711                                    LaGuardia       35620
2712                 Chicago O'Hare International       16980
2713                     Ithaca Tompkins Regional       27060
2714                        Columbia Metropolitan       17900
2715                Pensacola Gulf Coast Regional       37860
2716                 Chicago O'Hare International       16980
2717                         Valley International       15180
2718            Minneapolis-St Paul International       33460
2719      Green Bay Austin Straubel International       24580
2720       Salisbury-Ocean City/Wicomico Regional       41540
2721        Louisville Muhammad Ali International       31140
2722                   Philadelphia International       37980
2723                        Long Island MacArthur       35620
2724           Savannah/Hilton Head International       42340
2725         George Bush Intercontinental/Houston       26420
2726      Dickinson - Theodore Roosevelt Regional       19860
2727                         Albany International       10580
2728                              Mobile Regional       33660
2729               St Louis Lambert International       41180
2730         George Bush Intercontinental/Houston       26420
2731                         Denver International       19740
2732                  Lehigh Valley International       10900
2733                John F. Kennedy International       35620
2734                John F. Kennedy International       35620
2735                                    LaGuardia       35620
2736            Minneapolis-St Paul International       33460
2737                                    LaGuardia       35620
2738                                    LaGuardia       35620
2739                     Burlington International       15540
2740               Portland International Jetport       38860
2741                        Columbia Metropolitan       17900
2742                 Gerald R. Ford International       24340
2743                        Norfolk International       47260
2744     Hartsfield-Jackson Atlanta International       12060
2745                John F. Kennedy International       35620
2746                          Logan International       14460
2747                John F. Kennedy International       35620
2748                                    LaGuardia       35620
2749                John F. Kennedy International       35620
2750                                    LaGuardia       35620
2751              Dallas/Fort Worth International       19100
2752              Dallas/Fort Worth International       19100
2753                          Miami International       33100
2754             Phoenix Sky Harbor International       38060
2755              Charlotte Douglas International       16740
2756              Charlotte Douglas International       16740
2757              Dallas/Fort Worth International       19100
2758              Dallas/Fort Worth International       19100
2759              Dallas/Fort Worth International       19100
2760              Dallas/Fort Worth International       19100
2761              Charlotte Douglas International       16740
2762              Charlotte Douglas International       16740
2763              Dallas/Fort Worth International       19100
2764                          Miami International       33100
2765             Phoenix Sky Harbor International       38060
2766                 Chicago O'Hare International       16980
2767                          Logan International       14460
2768                Buffalo Niagara International       15380
2769           Baltimore/Washington International       12580
2770   Cincinnati/Northern Kentucky International       17140
2771              Dallas/Fort Worth International       19100
2772                       Key West International       28580
2773      Fort Lauderdale-Hollywood International       33100
2774                    Los Angeles International       31080
2775                          Miami International       33100
2776             Phoenix Sky Harbor International       38060
2777              Southwest Florida International       15980
2778                  San Francisco International       41860
2779               St Louis Lambert International       41180
2780               Syracuse Hancock International       45060
2781              Dallas/Fort Worth International       19100
2782              Dallas/Fort Worth International       19100
2783             Sarasota/Bradenton International       35840
2784                   Philadelphia International       37980
2785                      Nashville International       34980
2786                           Boise Air Terminal       14260
2787                                     Bob Hope       31080
2788           City of Colorado Springs Municipal       17820
2789   Cincinnati/Northern Kentucky International       17140
2790            Ronald Reagan Washington National       47900
2791                                 Jackson Hole       27220
2792                                  Adams Field       30780
2793                    Kansas City International       28140
2794                        Orlando International       36740
2795                          Miami International       33100
2796                     Pittsburgh International       38300
2797                      San Diego International       41740
2798           Savannah/Hilton Head International       42340
2799               Luis Munoz Marin International       41980
2800                     Sacramento International       40900
2801             John Wayne Airport-Orange County       31080
2802              Dallas/Fort Worth International       19100
2803              Charlotte Douglas International       16740
2804              Charlotte Douglas International       16740
2805                    Los Angeles International       31080
2806              Dallas/Fort Worth International       19100
2807              Dallas/Fort Worth International       19100
2808                          Miami International       33100
2809              Dallas/Fort Worth International       19100
2810                          Miami International       33100
2811                          Miami International       33100
2812              Charlotte Douglas International       16740
2813              Dallas/Fort Worth International       19100
2814              Dallas/Fort Worth International       19100
2815             Austin - Bergstrom International       12420
2816              Charlotte Douglas International       16740
2817              Charlotte Douglas International       16740
2818            Ronald Reagan Washington National       47900
2819              Dallas/Fort Worth International       19100
2820              Dallas/Fort Worth International       19100
2821              Dallas/Fort Worth International       19100
2822                   Philadelphia International       37980
2823              Charlotte Douglas International       16740
2824              Charlotte Douglas International       16740
2825              Charlotte Douglas International       16740
2826             Phoenix Sky Harbor International       38060
2827              Dallas/Fort Worth International       19100
2828                          Miami International       33100
2829                 Raleigh-Durham International       39580
2830                      Nashville International       34980
2831                 Charleston AFB/International       16700
2832              Charlotte Douglas International       16740
2833            Ronald Reagan Washington National       47900
2834              Dallas/Fort Worth International       19100
2835                   Jacksonville International       27260
2836                 Seattle/Tacoma International       42660
2837             Phoenix Sky Harbor International       38060
2838              Charlotte Douglas International       16740
2839              Dallas/Fort Worth International       19100
2840                     Palm Beach International       33100
2841                         Tucson International       46060
2842              Dallas/Fort Worth International       19100
2843                   Philadelphia International       37980
2844              Dallas/Fort Worth International       19100
2845              Charlotte Douglas International       16740
2846              Charlotte Douglas International       16740
2847                        Orlando International       36740
2848             Dane County Regional-Truax Field       31540
2849              Dallas/Fort Worth International       19100
2850              Dallas/Fort Worth International       19100
2851             Phoenix Sky Harbor International       38060
2852              Charlotte Douglas International       16740
2853              Dallas/Fort Worth International       19100
2854                          Miami International       33100
2855              Dallas/Fort Worth International       19100
2856              Dallas/Fort Worth International       19100
2857                          Miami International       33100
2858                 Chicago O'Hare International       16980
2859                   Philadelphia International       37980
2860                          Miami International       33100
2861              Dallas/Fort Worth International       19100
2862              Dallas/Fort Worth International       19100
2863                   Philadelphia International       37980
2864                   Philadelphia International       37980
2865              Dallas/Fort Worth International       19100
2866              Dallas/Fort Worth International       19100
2867                          Logan International       14460
2868              Charlotte Douglas International       16740
2869                   Philadelphia International       37980
2870                 Chicago O'Hare International       16980
2871                 Seattle/Tacoma International       42660
2872                 Seattle/Tacoma International       42660
2873                 Seattle/Tacoma International       42660
2874                 Seattle/Tacoma International       42660
2875                 Seattle/Tacoma International       42660
2876                 Seattle/Tacoma International       42660
2877                   Petersburg James A Johnson        <NA>
2878                         Juneau International       27940
2879                      San Diego International       41740
2880                 Seattle/Tacoma International       42660
2881            Albuquerque International Sunport       10740
2882                        Orlando International       36740
2883                 Seattle/Tacoma International       42660
2884                                     Bob Hope       31080
2885            John Glenn Columbus International       18140
2886   Cincinnati/Northern Kentucky International       17140
2887                   Indianapolis International       26900
2888               General Mitchell International       33340
2889                              Kahului Airport       27980
2890                            Will Rogers World       36420
2891                              Eppley Airfield       36540
2892                 Raleigh-Durham International       39580
2893                    San Antonio International       41700
2894               St Louis Lambert International       41180
2895                         Tucson International       46060
2896                Daniel K Inouye International       46520
2897                    Los Angeles International       31080
2898                     Palm Beach International       33100
2899              Southwest Florida International       15980
2900                       Key West International       28580
2901                    San Antonio International       41700
2902           Savannah/Hilton Head International       42340
2903                        Orlando International       36740
2904                          Logan International       14460
2905                    Los Angeles International       31080
2906                          Logan International       14460
2907                          Logan International       14460
2908               Luis Munoz Marin International       41980
2909                                 Cyril E King        <NA>
2910                                 Cyril E King        <NA>
2911                   Jacksonville International       27260
2912                 Theodore Francis Green State       39300
2913                      San Diego International       41740
2914               Luis Munoz Marin International       41980
2915                 Salt Lake City International       41620
2916                        Orlando International       36740
2917                          Tampa International       45300
2918                John F. Kennedy International       35620
2919                          Logan International       14460
2920      Fort Lauderdale-Hollywood International       33100
2921                    Los Angeles International       31080
2922                                    LaGuardia       35620
2923                             Rafael Hernandez       10380
2924                       Key West International       28580
2925         George Bush Intercontinental/Houston       26420
2926                    San Antonio International       41700
2927             Sarasota/Bradenton International       35840
2928                 Theodore Francis Green State       39300
2929                        Bradley International       25540
2930                        Bradley International       25540
2931                          Logan International       14460
2932                John F. Kennedy International       35620
2933                 Theodore Francis Green State       39300
2934                        Orlando International       36740
2935      Fort Lauderdale-Hollywood International       33100
2936                    Los Angeles International       31080
2937                        Orlando International       36740
2938                John F. Kennedy International       35620
2939                John F. Kennedy International       35620
2940      Fort Lauderdale-Hollywood International       33100
2941                          Logan International       14460
2942                John F. Kennedy International       35620
2943                 Raleigh-Durham International       39580
2944                John F. Kennedy International       35620
2945                John F. Kennedy International       35620
2946                 Salt Lake City International       41620
2947                Buffalo Niagara International       15380
2948                 Charleston AFB/International       16700
2949                 Gerald R. Ford International       24340
2950                John F. Kennedy International       35620
2951                 Theodore Francis Green State       39300
2952             Sarasota/Bradenton International       35840
2953            Minneapolis-St Paul International       33460
2954                   Detroit Metro Wayne County       19820
2955                 Salt Lake City International       41620
2956     Hartsfield-Jackson Atlanta International       12060
2957     Hartsfield-Jackson Atlanta International       12060
2958                 Salt Lake City International       41620
2959            Ronald Reagan Washington National       47900
2960            Minneapolis-St Paul International       33460
2961            Minneapolis-St Paul International       33460
2962            Minneapolis-St Paul International       33460
2963                   Detroit Metro Wayne County       19820
2964                   Detroit Metro Wayne County       19820
2965     Hartsfield-Jackson Atlanta International       12060
2966     Hartsfield-Jackson Atlanta International       12060
2967     Hartsfield-Jackson Atlanta International       12060
2968     Hartsfield-Jackson Atlanta International       12060
2969                   Detroit Metro Wayne County       19820
2970                John F. Kennedy International       35620
2971            Minneapolis-St Paul International       33460
2972   Cincinnati/Northern Kentucky International       17140
2973                 Salt Lake City International       41620
2974                 Salt Lake City International       41620
2975              Washington Dulles International       47900
2976     Hartsfield-Jackson Atlanta International       12060
2977                   Detroit Metro Wayne County       19820
2978                             The Eastern Iowa       16300
2979                         Hector International       22020
2980                 Raleigh-Durham International       39580
2981                  Northwest Arkansas Regional       22220
2982                     Palm Beach International       33100
2983                 Raleigh-Durham International       39580
2984                                  Adams Field       30780
2985                        Orlando International       36740
2986               Portland International Jetport       38860
2987               Syracuse Hancock International       45060
2988                       McCarran International       29820
2989                               Trenton Mercer       45940
2990                        Orlando International       36740
2991              Southwest Florida International       15980
2992                         Denver International       19740
2993                         Denver International       19740
2994              Washington Dulles International       47900
2995                 Chicago O'Hare International       16980
2996         Greenville-Spartanburg International       43900
2997                        Norfolk International       47260
2998                 Newark Liberty International       35620
2999              Washington Dulles International       47900
3000              Dallas/Fort Worth International       19100
3001                          Miami International       33100
3002              Dallas/Fort Worth International       19100
3003              Dallas/Fort Worth International       19100
3004              Dallas/Fort Worth International       19100
3005                   Indianapolis International       26900
3006                           Asheville Regional       11700
3007                                Meadows Field       12540
3008       Birmingham-Shuttlesworth International       13820
3009                         Garden City Regional       23780
3010                         Laredo International       29700
3011                   Myrtle Beach International       34820
3012           Eglin AFB Destin Fort Walton Beach       18880
3013                          Miami International       33100
3014   Cincinnati/Northern Kentucky International       17140
3015           Savannah/Hilton Head International       42340
3016                                 McGhee Tyson       28940
3017            John Glenn Columbus International       18140
3018                          Evansville Regional       21780
3019                                  Adams Field       30780
3020                    San Antonio International       41700
3021             Austin - Bergstrom International       12420
3022                          Miami International       33100
3023              Dallas/Fort Worth International       19100
3024                        Orlando International       36740
3025                        Orlando International       36740
3026                    Los Angeles International       31080
3027                   Indianapolis International       26900
3028               General Mitchell International       33340
3029                    Los Angeles International       31080
3030                    Los Angeles International       31080
3031            Ronald Reagan Washington National       47900
3032                   Philadelphia International       37980
3033      Northwest Florida Beaches International       37460
3034               General Mitchell International       33340
3035                         Tallahassee Regional       45220
3036           Eglin AFB Destin Fort Walton Beach       18880
3037                   Philadelphia International       37980
3038               Augusta Regional at Bush Field       12260
3039                         Albany International       10580
3040                     Des Moines International       19780
3041  Huntsville International-Carl T Jones Field       26620
3042                          Montgomery Regional       33860
3043               Portland International Jetport       38860
3044            Ronald Reagan Washington National       47900
3045                   Philadelphia International       37980
3046              Charlotte Douglas International       16740
3047              Charlotte Douglas International       16740
3048            Ronald Reagan Washington National       47900
3049              Charlotte Douglas International       16740
3050            Ronald Reagan Washington National       47900
3051   Cincinnati/Northern Kentucky International       17140
3052              Dallas/Fort Worth International       19100
3053                   Palm Springs International       40140
3054                         Denver International       19740
3055                         Denver International       19740
3056                  San Francisco International       41860
3057                   Jacksonville International       27260
3058                   Palm Springs International       40140
3059           Savannah/Hilton Head International       42340
3060          Lubbock Preston Smith International       31180
3061                                   Tri Cities       28700
3062                 Theodore Francis Green State       39300
3063              Dallas/Fort Worth International       19100
3064                 Seattle/Tacoma International       42660
3065         George Bush Intercontinental/Houston       26420
3066                         Denver International       19740
3067                            Will Rogers World       36420
3068                Fresno Yosemite International       23420
3069         Rogue Valley International - Medford       32780
3070         George Bush Intercontinental/Houston       26420
3071         George Bush Intercontinental/Houston       26420
3072            John Glenn Columbus International       18140
3073                            Will Rogers World       36420
3074                   Detroit Metro Wayne County       19820
3075             Phoenix Sky Harbor International       38060
3076                 Chicago O'Hare International       16980
3077                 Chicago O'Hare International       16980
3078                    Kansas City International       28140
3079                           Mahlon Sweet Field       21660
3080         Rogue Valley International - Medford       32780
3081                        Ontario International       40140
3082                      Santa Barbara Municipal       42200
3083                     Des Moines International       19780
3084                 Salt Lake City International       41620
3085         George Bush Intercontinental/Houston       26420
3086                 Seattle/Tacoma International       42660
3087                      Fairbanks International       21820
3088          Ted Stevens Anchorage International       11260
3089                 Seattle/Tacoma International       42660
3090                   Palm Springs International       40140
3091                         Walla Walla Regional       47460
3092                  San Francisco International       41860
3093                 Newark Liberty International       35620
3094                 Chicago O'Hare International       16980
3095                 Chicago O'Hare International       16980
3096                 Chicago O'Hare International       16980
3097         George Bush Intercontinental/Houston       26420
3098                     Pittsburgh International       38300
3099      Norman Y. Mineta San Jose International       41940
3100                             Rafael Hernandez       10380
3101                    Los Angeles International       31080
3102             Austin - Bergstrom International       12420
3103              Southwest Florida International       15980
3104                 McAllen Miller International       32580
3105                       Portland International       38900
3106                      San Diego International       41740
3107      Norman Y. Mineta San Jose International       41940
3108                     Sacramento International       40900
3109             John Wayne Airport-Orange County       31080
3110         George Bush Intercontinental/Houston       26420
3111                  San Francisco International       41860
3112           Baltimore/Washington International       12580
3113              Cleveland-Hopkins International       17460
3114              Washington Dulles International       47900
3115              Washington Dulles International       47900
3116         George Bush Intercontinental/Houston       26420
3117                         Denver International       19740
3118                         Denver International       19740
3119         George Bush Intercontinental/Houston       26420
3120                         Denver International       19740
3121           Metropolitan Oakland International       41860
3122                      San Diego International       41740
3123            Albuquerque International Sunport       10740
3124          Lubbock Preston Smith International       31180
3125                       McCarran International       29820
3126               St Louis Lambert International       41180
3127           Metropolitan Oakland International       41860
3128                     Sacramento International       40900
3129                      Nashville International       34980
3130                          Tampa International       45300
3131                         Albany International       10580
3132             Austin - Bergstrom International       12420
3133            John Glenn Columbus International       18140
3134                            Dallas Love Field       19100
3135                    Kansas City International       28140
3136                   Manchester-Boston Regional       31700
3137               Syracuse Hancock International       45060
3138               General Mitchell International       33340
3139                     Palm Beach International       33100
3140                    San Antonio International       41700
3141                            Dallas Love Field       19100
3142      Fort Lauderdale-Hollywood International       33100
3143                   Myrtle Beach International       34820
3144                   Indianapolis International       26900
3145                        Memphis International       32820
3146                          Miami International       33100
3147               General Mitchell International       33340
3148                      San Diego International       41740
3149           Savannah/Hilton Head International       42340
3150             Sarasota/Bradenton International       35840
3151              Southwest Florida International       15980
3152                              William P Hobby       26420
3153                    Kansas City International       28140
3154           City of Colorado Springs Municipal       17820
3155                            Montrose Regional       33940
3156                        Long Island MacArthur       35620
3157            Albuquerque International Sunport       10740
3158                 Corpus Christi International       18580
3159            Ronald Reagan Washington National       47900
3160     Jackson Medgar Wiley Evers International       27140
3161                        Orlando International       36740
3162                Fresno Yosemite International       23420
3163                            Will Rogers World       36420
3164                       McCarran International       29820
3165                              William P Hobby       26420
3166                            Dallas Love Field       19100
3167               St Louis Lambert International       41180
3168                       McCarran International       29820
3169                              William P Hobby       26420
3170            Ronald Reagan Washington National       47900
3171                    San Antonio International       41700
3172                              William P Hobby       26420
3173                        Long Island MacArthur       35620
3174                   Detroit Metro Wayne County       19820
3175                   Manchester-Boston Regional       31700
3176           Savannah/Hilton Head International       42340
3177            Albuquerque International Sunport       10740
3178                        Bradley International       25540
3179                                     Bob Hope       31080
3180                    San Antonio International       41700
3181                          Tampa International       45300
3182                          Miami International       33100
3183                      Nashville International       34980
3184                              William P Hobby       26420
3185                    Kansas City International       28140
3186            Ronald Reagan Washington National       47900
3187                      Nashville International       34980
3188                            Will Rogers World       36420
3189                        Wichita Mid-Continent       48620
3190                   Indianapolis International       26900
3191                          Tampa International       45300
3192           Metropolitan Oakland International       41860
3193                 Chicago Midway International       16980
3194      Fort Lauderdale-Hollywood International       33100
3195               St Louis Lambert International       41180
3196           Metropolitan Oakland International       41860
3197             John Wayne Airport-Orange County       31080
3198           Baltimore/Washington International       12580
3199                     Pittsburgh International       38300
3200                     Reno/Tahoe International       39900
3201                            Dallas Love Field       19100
3202           City of Colorado Springs Municipal       17820
3203               St Louis Lambert International       41180
3204                              William P Hobby       26420
3205                       McCarran International       29820
3206             Austin - Bergstrom International       12420
3207              Southwest Florida International       15980
3208                          Tulsa International       46140
3209                 Raleigh-Durham International       39580
3210      Norman Y. Mineta San Jose International       41940
3211                        Long Island MacArthur       35620
3212                     Pittsburgh International       38300
3213                   Indianapolis International       26900
3214                       McCarran International       29820
3215               St Louis Lambert International       41180
3216         George Bush Intercontinental/Houston       26420
3217         George Bush Intercontinental/Houston       26420
3218                        El Paso International       21340
3219                         Tallahassee Regional       45220
3220             Phoenix Sky Harbor International       38060
3221                           Monterey Peninsula       41500
3222                      Santa Barbara Municipal       42200
3223         George Bush Intercontinental/Houston       26420
3224            Ronald Reagan Washington National       47900
3225                    Kansas City International       28140
3226                         Bangor International       12620
3227                 Charleston AFB/International       16700
3228                     Pittsburgh International       38300
3229               St Louis Lambert International       41180
3230                John F. Kennedy International       35620
3231   Cincinnati/Northern Kentucky International       17140
3232              Washington Dulles International       47900
3233              Cleveland-Hopkins International       17460
3234                   Jacksonville International       27260
3235               Roanoke Regional/Woodrum Field       40220
3236                           Asheville Regional       11700
3237                         Duluth International       20260
3238           Savannah/Hilton Head International       42340
3239            John Glenn Columbus International       18140
3240                 Chicago O'Hare International       16980
3241            Ronald Reagan Washington National       47900
3242                 Chicago O'Hare International       16980
3243              Washington Dulles International       47900
3244                 Chicago O'Hare International       16980
3245                 Chicago O'Hare International       16980
3246                 Chicago O'Hare International       16980
3247              Washington Dulles International       47900
3248                 Chicago O'Hare International       16980
3249                                 McGhee Tyson       28940
3250              Washington Dulles International       47900
3251                    Charlottesville Albemarle       16820
3252                 Chicago O'Hare International       16980
3253              Washington Dulles International       47900
3254            Minneapolis-St Paul International       33460
3255                Gulfport-Biloxi International       25060
3256            Minneapolis-St Paul International       33460
3257              Greater Rochester International       40380
3258                                 Lovell Field       16860
3259                   Philadelphia International       37980
3260                           Asheville Regional       11700
3261               Roanoke Regional/Woodrum Field       40220
3262                          Logan International       14460
3263         George Bush Intercontinental/Houston       26420
3264              Washington Dulles International       47900
3265      Northwest Florida Beaches International       37460
3266                         Denver International       19740
3267              Dallas/Fort Worth International       19100
3268               Luis Munoz Marin International       41980
3269              Cleveland-Hopkins International       17460
3270                                 Cyril E King        <NA>
3271              Dallas/Fort Worth International       19100
3272                    Los Angeles International       31080
3273              Dallas/Fort Worth International       19100
3274                              Kahului Airport       27980
3275                   Philadelphia International       37980
3276              Dallas/Fort Worth International       19100
3277                 Chicago O'Hare International       16980
3278   Cincinnati/Northern Kentucky International       17140
3279              Dallas/Fort Worth International       19100
3280        Kona International Airport at Keahole       25900
3281                              Kahului Airport       27980
3282                                 Nome Airport        <NA>
3283          Ted Stevens Anchorage International       11260
3284          Ted Stevens Anchorage International       11260
3285                 Seattle/Tacoma International       42660
3286                     Palm Beach International       33100
3287              Southwest Florida International       15980
3288              Southwest Florida International       15980
3289                John F. Kennedy International       35620
3290                       Appleton International       11540
3291                             The Eastern Iowa       16300
3292                     Sacramento International       40900
3293                                 Cyril E King        <NA>
3294                             Henry E. Rohlsen        <NA>
3295           Savannah/Hilton Head International       42340
3296     Hartsfield-Jackson Atlanta International       12060
3297     Hartsfield-Jackson Atlanta International       12060
3298     Hartsfield-Jackson Atlanta International       12060
3299            Minneapolis-St Paul International       33460
3300                 Newark Liberty International       35620
3301                       Key West International       28580
3302             James M Cox/Dayton International       19430
3303                Texarkana Regional-Webb Field       45500
3304              Dallas/Fort Worth International       19100
3305                        Akron-Canton Regional       10420
3306                  Daytona Beach International       19660
3307                           Westchester County       35620
3308                         Tallahassee Regional       45220
3309              Charlotte Douglas International       16740
3310              Cleveland-Hopkins International       17460
3311               Syracuse Hancock International       45060
3312             Phoenix Sky Harbor International       38060
3313                   Glacier Park International       28060
3314                  San Francisco International       41860
3315                                 Jackson Hole       27220
3316                Daniel K Inouye International       46520
3317             John Wayne Airport-Orange County       31080
3318                        Eagle County Regional       20780
3319         George Bush Intercontinental/Houston       26420
3320              Washington Dulles International       47900
3321                         Denver International       19740
3322                      Nashville International       34980
3323                      San Diego International       41740
3324            Albuquerque International Sunport       10740
3325                      San Diego International       41740
3326             John Wayne Airport-Orange County       31080
3327                        Ontario International       40140
3328                        Orlando International       36740
3329                 Chicago Midway International       16980
3330           Baltimore/Washington International       12580
3331    Louis Armstrong New Orleans International       35380
3332                 Chicago Midway International       16980
3333           Metropolitan Oakland International       41860
3334               Luis Munoz Marin International       41980
3335         George Bush Intercontinental/Houston       26420
3336       General Downing - Peoria International       37900
3337                Pensacola Gulf Coast Regional       37860
3338                          Rapid City Regional       39660
3339            Bozeman Yellowstone International       14580
3340                 Charleston AFB/International       16700
3341                        Norfolk International       47260
3342              Dallas/Fort Worth International       19100
3343                          Hilton Head Airport       25940
3344                       Appleton International       11540
3345                              Eppley Airfield       36540
3346                 Newark Liberty International       35620
3347                     Palm Beach International       33100
3348               Luis Munoz Marin International       41980
3349                         Bangor International       12620
3350                 Gerald R. Ford International       24340
3351                              Helena Regional       25740
3352                          Shreveport Regional       43340
3353                         Denver International       19740
3354                 Salt Lake City International       41620
3355                              Kahului Airport       27980
3356                     Fort Wayne International       23060
3357             Phoenix Sky Harbor International       38060
3358                       Richmond International       40060
3359                          Tampa International       45300
3360              Dallas/Fort Worth International       19100
3361             Phoenix Sky Harbor International       38060
3362              Dallas/Fort Worth International       19100
3363                 Chicago O'Hare International       16980
3364                                 Cyril E King        <NA>
3365              Dallas/Fort Worth International       19100
3366                       Key West International       28580
3367                         Tallahassee Regional       45220
3368                 Salt Lake City International       41620
3369                     Palm Beach International       33100
3370                               Joe Foss Field       43620
3371              Dallas/Fort Worth International       19100
3372                       Missoula International       33540
3373                Pensacola Gulf Coast Regional       37860
3374       Birmingham-Shuttlesworth International       13820
3375           Savannah/Hilton Head International       42340
3376                         Idaho Falls Regional       26820
3377            Minneapolis-St Paul International       33460
3378                           Boise Air Terminal       14260
3379            Minneapolis-St Paul International       33460
3380              Aspen Pitkin County Sardy Field       24060
3381         George Bush Intercontinental/Houston       26420
3382                Daniel K Inouye International       46520
3383            Bozeman Yellowstone International       14580
3384                        Eagle County Regional       20780
3385             Austin - Bergstrom International       12420
3386                  San Francisco International       41860
3387              Southwest Florida International       15980
3388                  San Francisco International       41860
3389                        Orlando International       36740
3390              Dallas/Fort Worth International       19100
3391      Northwest Florida Beaches International       37460
3392                     Wilmington International       48900
3393              Gunnison-Crested Butte Regional        <NA>
3394                          Logan International       14460
3395                              Kahului Airport       27980
3396            Minneapolis-St Paul International       33460
3397            Ronald Reagan Washington National       47900
3398                Daniel K Inouye International       46520
3399                Daniel K Inouye International       46520
3400        Kona International Airport at Keahole       25900
3401                            Montrose Regional       33940
3402                           Lafayette Regional       29180
3403     Hartsfield-Jackson Atlanta International       12060
3404     Hartsfield-Jackson Atlanta International       12060
3405                            Central Wisconsin       48140
3406                     Des Moines International       19780
3407                                    LaGuardia       35620
3408     Hartsfield-Jackson Atlanta International       12060
3409            Minneapolis-St Paul International       33460
3410     Hartsfield-Jackson Atlanta International       12060
3411               Luis Munoz Marin International       41980
3412            Ronald Reagan Washington National       47900
3413             Phoenix Sky Harbor International       38060
3414                     Palm Beach International       33100
3415                        Bradley International       25540
3416              Greater Rochester International       40380
3417                      San Diego International       41740
3418                 Seattle/Tacoma International       42660
3419                                 Cyril E King        <NA>
3420                             Henry E. Rohlsen        <NA>
3421                     Reno/Tahoe International       39900
3422                        Eagle County Regional       20780
3423                Fresno Yosemite International       23420
3424                        Norfolk International       47260
3425                 Raleigh-Durham International       39580
3426              Dallas/Fort Worth International       19100
3427              Dallas/Fort Worth International       19100
3428              Dallas/Fort Worth International       19100
3429              Dallas/Fort Worth International       19100
3430                   Indianapolis International       26900
3431             Phoenix Sky Harbor International       38060
3432              Dallas/Fort Worth International       19100
3433              Dallas/Fort Worth International       19100
3434                 Seattle/Tacoma International       42660
3435              Cleveland-Hopkins International       17460
3436                   Philadelphia International       37980
3437                 Chicago O'Hare International       16980
3438              Dallas/Fort Worth International       19100
3439                John F. Kennedy International       35620
3440                 Seattle/Tacoma International       42660
3441                 Seattle/Tacoma International       42660
3442                  San Francisco International       41860
3443          Ted Stevens Anchorage International       11260
3444                       Portland International       38900
3445             Austin - Bergstrom International       12420
3446             John Wayne Airport-Orange County       31080
3447                        Orlando International       36740
3448                              Kahului Airport       27980
3449                 Seattle/Tacoma International       42660
3450        Kona International Airport at Keahole       25900
3451            Albuquerque International Sunport       10740
3452                 Charleston AFB/International       16700
3453                         Juneau International       27940
3454                      Ketchikan International       28540
3455    Louis Armstrong New Orleans International       35380
3456                 Seattle/Tacoma International       42660
3457          Ted Stevens Anchorage International       11260
3458        Kona International Airport at Keahole       25900
3459                       Portland International       38900
3460               Luis Munoz Marin International       41980
3461    Louis Armstrong New Orleans International       35380
3462                       Portland International       38900
3463                        Ontario International       40140
3464                   Jacksonville International       27260
3465                     Palm Beach International       33100
3466                    Martha's Vineyard Airport       47240
3467                        Bradley International       25540
3468                  Daytona Beach International       19660
3469                        Wichita Mid-Continent       48620
3470            Minneapolis-St Paul International       33460
3471      Norman Y. Mineta San Jose International       41940
3472     Hartsfield-Jackson Atlanta International       12060
3473                                 Cyril E King        <NA>
3474     Hartsfield-Jackson Atlanta International       12060
3475     Hartsfield-Jackson Atlanta International       12060
3476     Hartsfield-Jackson Atlanta International       12060
3477     Hartsfield-Jackson Atlanta International       12060
3478            Minneapolis-St Paul International       33460
3479                 Salt Lake City International       41620
3480                 Salt Lake City International       41620
3481                        Memphis International       32820
3482                   Detroit Metro Wayne County       19820
3483                    Los Angeles International       31080
3484            Minneapolis-St Paul International       33460
3485     Hartsfield-Jackson Atlanta International       12060
3486                 Billings Logan International       13740
3487                   Detroit Metro Wayne County       19820
3488                 Salt Lake City International       41620
3489     Hartsfield-Jackson Atlanta International       12060
3490                 Chicago O'Hare International       16980
3491              Dallas/Fort Worth International       19100
3492                 Billings Logan International       13740
3493          Baton Rouge Metropolitan/Ryan Field       12940
3494     Jackson Medgar Wiley Evers International       27140
3495             Sarasota/Bradenton International       35840
3496                          Miami International       33100
3497       Birmingham-Shuttlesworth International       13820
3498                        Orlando International       36740
3499                        Columbus Metropolitan       17980
3500                     Burlington International       15540
3501              Charlotte Douglas International       16740
3502                   Philadelphia International       37980
3503                  Daytona Beach International       19660
3504                         Denver International       19740
3505            Minneapolis-St Paul International       33460
3506                           Bismarck Municipal       13900
3507                      Grand Junction Regional       24300
3508                     San Luis County Regional       42020
3509                                 McGhee Tyson       28940
3510              Aspen Pitkin County Sardy Field       24060
3511                      Durango La Plata County       20420
3512                      Grand Junction Regional       24300
3513            Minneapolis-St Paul International       33460
3514            Minneapolis-St Paul International       33460
3515                   Detroit Metro Wayne County       19820
3516              Cleveland-Hopkins International       17460
3517                   Glacier Park International       28060
3518                 Salt Lake City International       41620
3519                     Harrisburg International       25420
3520                            Friedman Memorial       25200
3521                   Palm Springs International       40140
3522            Charles M. Schulz - Sonoma County       42220
3523                        Eagle County Regional       20780
3524            Charles M. Schulz - Sonoma County       42220
3525                 Chicago O'Hare International       16980
3526              Dallas/Fort Worth International       19100
3527                                 Jackson Hole       27220
3528                      San Diego International       41740
3529                 Billings Logan International       13740
3530                           Mahlon Sweet Field       21660
3531                       Missoula International       33540
3532                            Will Rogers World       36420
3533                              Eppley Airfield       36540
3534             Phoenix Sky Harbor International       38060
3535                           Boise Air Terminal       14260
3536                      San Diego International       41740
3537                        El Paso International       21340
3538                      Santa Barbara Municipal       42200
3539                       Richmond International       40060
3540                    San Antonio International       41700
3541                                 Cyril E King        <NA>
3542               Luis Munoz Marin International       41980
3543         George Bush Intercontinental/Houston       26420
3544                         Denver International       19740
3545                         Denver International       19740
3546                     Burlington International       15540
3547         George Bush Intercontinental/Houston       26420
3548                  San Francisco International       41860
3549        Kona International Airport at Keahole       25900
3550                                Lihue Airport       28180
3551                Daniel K Inouye International       46520
3552                 Chicago O'Hare International       16980
3553                         Denver International       19740
3554                 Seattle/Tacoma International       42660
3555             Sarasota/Bradenton International       35840
3556            John Glenn Columbus International       18140
3557                        Orlando International       36740
3558                      San Diego International       41740
3559                        El Paso International       21340
3560                              Kahului Airport       27980
3561             Austin - Bergstrom International       12420
3562                              Kahului Airport       27980
3563                   Philadelphia International       37980
3564                      San Diego International       41740
3565              Washington Dulles International       47900
3566                    Kansas City International       28140
3567                   Indianapolis International       26900
3568     Midland International Air and Space Port       33260
3569             Phoenix Sky Harbor International       38060
3570                   Indianapolis International       26900
3571              Charlotte Douglas International       16740
3572                    Kansas City International       28140
3573                  Lehigh Valley International       10900
3574                   Philadelphia International       37980
3575                Buffalo Niagara International       15380
3576                      Durango La Plata County       20420
3577         George Bush Intercontinental/Houston       26420
3578                 Springfield-Branson National       44180
3579                                     Bob Hope       31080
3580   Central Il Regional Airport at Bloomington       14010
3581                          Evansville Regional       21780
3582                   Detroit Metro Wayne County       19820
3583               Syracuse Hancock International       45060
3584                    Charlottesville Albemarle       16820
3585             Dane County Regional-Truax Field       31540
3586             Dane County Regional-Truax Field       31540
3587                  Northwest Arkansas Regional       22220
3588                   Detroit Metro Wayne County       19820
3589     Hartsfield-Jackson Atlanta International       12060
3590              Dallas/Fort Worth International       19100
3591              Dallas/Fort Worth International       19100
3592                       Richmond International       40060
3593              Dallas/Fort Worth International       19100
3594              Dallas/Fort Worth International       19100
3595             Austin - Bergstrom International       12420
3596            Bozeman Yellowstone International       14580
3597                              Eppley Airfield       36540
3598             Phoenix Sky Harbor International       38060
3599              Dallas/Fort Worth International       19100
3600              Dallas/Fort Worth International       19100
3601              Dallas/Fort Worth International       19100
3602        Kona International Airport at Keahole       25900
3603                 Chicago O'Hare International       16980
3604              Dallas/Fort Worth International       19100
3605              Charlotte Douglas International       16740
3606             Phoenix Sky Harbor International       38060
3607             Austin - Bergstrom International       12420
3608                       Portland International       38900
3609                       Portland International       38900
3610          Ted Stevens Anchorage International       11260
3611                         Tucson International       46060
3612        Kona International Airport at Keahole       25900
3613                        Ontario International       40140
3614                        Spokane International       44060
3615                        Sitka Rocky Gutierrez        <NA>
3616                       Portland International       38900
3617            Bozeman Yellowstone International       14580
3618                     Sacramento International       40900
3619               Syracuse Hancock International       45060
3620                  Northwest Arkansas Regional       22220
3621                   Detroit Metro Wayne County       19820
3622                           Boise Air Terminal       14260
3623     Hartsfield-Jackson Atlanta International       12060
3624                          Miami International       33100
3625                                 Lovell Field       16860
3626                             Easterwood Field       17780
3627                          Evansville Regional       21780
3628                              Mobile Regional       33660
3629                          Miami International       33100
3630            Ronald Reagan Washington National       47900
3631        Louisville Muhammad Ali International       31140
3632              Dallas/Fort Worth International       19100
3633      Fort Lauderdale-Hollywood International       33100
3634            Ronald Reagan Washington National       47900
3635                              Eppley Airfield       36540
3636                Pensacola Gulf Coast Regional       37860
3637              Charlotte Douglas International       16740
3638              Charlotte Douglas International       16740
3639                                 McGhee Tyson       28940
3640                  San Francisco International       41860
3641                 Salt Lake City International       41620
3642                          South Bend Regional       43780
3643                 Gerald R. Ford International       24340
3644                        Memphis International       32820
3645                        Norfolk International       47260
3646                      San Diego International       41740
3647                          Rapid City Regional       39660
3648              Aspen Pitkin County Sardy Field       24060
3649                         Denver International       19740
3650                            Montrose Regional       33940
3651                   Palm Springs International       40140
3652         Rogue Valley International - Medford       32780
3653                                Roberts Field       13460
3654                          Tulsa International       46140
3655                             Snohomish County       42660
3656                      Santa Barbara Municipal       42200
3657            Charles M. Schulz - Sonoma County       42220
3658                                 Jackson Hole       27220
3659                 Newark Liberty International       35620
3660                       Portland International       38900
3661         George Bush Intercontinental/Houston       26420
3662                         Denver International       19740
3663                 Newark Liberty International       35620
3664              Washington Dulles International       47900
3665         George Bush Intercontinental/Houston       26420
3666                     Reno/Tahoe International       39900
3667             Austin - Bergstrom International       12420
3668                              William P Hobby       26420
3669               General Mitchell International       33340
3670      Norman Y. Mineta San Jose International       41940
3671                              Kahului Airport       27980
3672            Albuquerque International Sunport       10740
3673                                Lihue Airport       28180
3674                     Pittsburgh International       38300
3675                       McCarran International       29820
3676                 Chicago Midway International       16980
3677        Kona International Airport at Keahole       25900
3678                    San Antonio International       41700
3679  Huntsville International-Carl T Jones Field       26620
3680             Phoenix Sky Harbor International       38060
3681             Phoenix Sky Harbor International       38060
3682                 Gerald R. Ford International       24340
3683         Greenville-Spartanburg International       43900
3684              Dallas/Fort Worth International       19100
3685         George Bush Intercontinental/Houston       26420
3686              Cleveland-Hopkins International       17460
3687           Savannah/Hilton Head International       42340
3688                          South Bend Regional       43780
3689                 Newark Liberty International       35620
3690                        Bradley International       25540
3691             James M Cox/Dayton International       19430
3692                              Mobile Regional       33660
3693                                 McGhee Tyson       28940
3694             James M Cox/Dayton International       19430
3695      Newport News/Williamsburg International       47260
3696                                 McGhee Tyson       28940
3697         George Bush Intercontinental/Houston       26420
3698                        Columbia Metropolitan       17900
3699                John F. Kennedy International       35620
3700              Dallas/Fort Worth International       19100
3701              Dallas/Fort Worth International       19100
3702                     Des Moines International       19780
3703                      San Diego International       41740
3704              Dallas/Fort Worth International       19100
3705                 Charleston AFB/International       16700
3706                       Key West International       28580
3707         Greenville-Spartanburg International       43900
3708              Gunnison-Crested Butte Regional        <NA>
3709                Daniel K Inouye International       46520
3710                   Indianapolis International       26900
3711                            Will Rogers World       36420
3712                    San Antonio International       41700
3713                      Santa Barbara Municipal       42200
3714              Dallas/Fort Worth International       19100
3715                                 Jackson Hole       27220
3716             John Wayne Airport-Orange County       31080
3717                 Chicago O'Hare International       16980
3718                 Chicago O'Hare International       16980
3719                        Bradley International       25540
3720                          Miami International       33100
3721              Dallas/Fort Worth International       19100
3722             Austin - Bergstrom International       12420
3723              Charlotte Douglas International       16740
3724                   Philadelphia International       37980
3725                                Mile 13 Field        <NA>
3726                         Juneau International       27940
3727          Ted Stevens Anchorage International       11260
3728              Greater Rochester International       40380
3729      Fort Lauderdale-Hollywood International       33100
3730            Ronald Reagan Washington National       47900
3731                           Westchester County       35620
3732             Dane County Regional-Truax Field       31540
3733                   Detroit Metro Wayne County       19820
3734                 Theodore Francis Green State       39300
3735               Syracuse Hancock International       45060
3736                           Lafayette Regional       29180
3737                         Tallahassee Regional       45220
3738                          Miami International       33100
3739                        Orlando International       36740
3740              Charlotte Douglas International       16740
3741                             The Eastern Iowa       16300
3742                        Memphis International       32820
3743                Buffalo Niagara International       15380
3744                 Gerald R. Ford International       24340
3745            Ronald Reagan Washington National       47900
3746            Ronald Reagan Washington National       47900
3747                           Manhattan Regional       31740
3748                         Tucson International       46060
3749                            Montrose Regional       33940
3750                         Denver International       19740
3751          Wilkes Barre Scranton International       42540
3752               Syracuse Hancock International       45060
3753                                 Jackson Hole       27220
3754             Roswell International Air Center       40740
3755                         Denver International       19740
3756            Bozeman Yellowstone International       14580
3757                      Grand Junction Regional       24300
3758          Ted Stevens Anchorage International       11260
3759                 Chicago O'Hare International       16980
3760         George Bush Intercontinental/Houston       26420
3761                     Sacramento International       40900
3762            Albuquerque International Sunport       10740
3763                Daniel K Inouye International       46520
3764                 Raleigh-Durham International       39580
3765           Baltimore/Washington International       12580
3766                      San Diego International       41740
3767      Norman Y. Mineta San Jose International       41940
3768            Albuquerque International Sunport       10740
3769             Sarasota/Bradenton International       35840
3770                         Albany International       10580
3771                         Denver International       19740
3772                          Tampa International       45300
3773                 Salt Lake City International       41620
3774       Birmingham-Shuttlesworth International       13820
3775            John Glenn Columbus International       18140
3776        Louisville Muhammad Ali International       31140
3777                Buffalo Niagara International       15380
3778                    San Antonio International       41700
3779             Phoenix Sky Harbor International       38060
3780            John Glenn Columbus International       18140
3781                       Portland International       38900
3782                        Orlando International       36740
3783                          Tampa International       45300
3784                          Tampa International       45300
3785                            Dallas Love Field       19100
3786                 Chicago Midway International       16980
3787                Buffalo Niagara International       15380
3788        Louisville Muhammad Ali International       31140
3789      Fort Lauderdale-Hollywood International       33100
3790                            Dallas Love Field       19100
3791                              William P Hobby       26420
3792               St Louis Lambert International       41180
3793                     Sacramento International       40900
3794                             The Eastern Iowa       16300
3795                         Hector International       22020
3796              Washington Dulles International       47900
3797         George Bush Intercontinental/Houston       26420
3798                             The Eastern Iowa       16300
3799                         Hector International       22020
3800                 Gerald R. Ford International       24340
3801             James M Cox/Dayton International       19430
3802                     Pittsburgh International       38300
3803               Roanoke Regional/Woodrum Field       40220
3804  Huntsville International-Carl T Jones Field       26620
3805            Ronald Reagan Washington National       47900
3806                   Philadelphia International       37980
3807                 Chicago O'Hare International       16980
3808              Charlotte Douglas International       16740
3809                John F. Kennedy International       35620
3810                        Orlando International       36740
3811                John F. Kennedy International       35620
3812                           Worcester Regional       49340
3813                           Worcester Regional       49340
3814      Fort Lauderdale-Hollywood International       33100
3815                John F. Kennedy International       35620
3816                                 Cyril E King        <NA>
3817               Luis Munoz Marin International       41980
3818     Hartsfield-Jackson Atlanta International       12060
3819                        Orlando International       36740
3820              Southwest Florida International       15980
3821                               Joe Foss Field       43620
3822                         Valley International       15180
3823                        Ontario International       40140
3824                       McCarran International       29820
3825                       McCarran International       29820
3826                       McCarran International       29820
3827                        Orlando International       36740
3828                        Orlando International       36740
3829                   Myrtle Beach International       34820
3830              Southwest Florida International       15980
3831               St Louis Lambert International       41180
3832              Cleveland-Hopkins International       17460
3833                        Ontario International       40140
3834                               Trenton Mercer       45940
3835                        Long Island MacArthur       35620
3836                        Orlando International       36740
3837              Southwest Florida International       15980
3838                        Bradley International       25540
3839                               Trenton Mercer       45940
3840                        Long Island MacArthur       35620
3841                        Orlando International       36740
3842                          Tampa International       45300
3843                          Tampa International       45300
3844                 Gerald R. Ford International       24340
3845     Hartsfield-Jackson Atlanta International       12060
3846                 Chicago O'Hare International       16980
3847                     Palm Beach International       33100
3848                          Tampa International       45300
3849                          Miami International       33100
3850                     Palm Beach International       33100
3851                          Tampa International       45300
3852              Southwest Florida International       15980
3853                    Los Angeles International       31080
3854                  Atlantic City International       12100
3855        Louisville Muhammad Ali International       31140
3856                Pensacola Gulf Coast Regional       37860
3857              Cleveland-Hopkins International       17460
3858                     Pittsburgh International       38300
3859                   Myrtle Beach International       34820
3860                   Myrtle Beach International       34820
3861                  Atlantic City International       12100
3862                   Manchester-Boston Regional       31700
3863                                 Cyril E King        <NA>
3864                 Newark Liberty International       35620
3865                       Arnold Palmer Regional       38300
3866                                    LaGuardia       35620
3867                        Orlando International       36740
3868                   Myrtle Beach International       34820
3869                   Myrtle Beach International       34820
3870                  Atlantic City International       12100
3871                       Arnold Palmer Regional       38300
3872      Fort Lauderdale-Hollywood International       33100
3873            Ronald Reagan Washington National       47900
3874                           Monterey Peninsula       41500
3875                                Meadows Field       12540
3876                 Billings Logan International       13740
3877              Washington Dulles International       47900
3878                    Kansas City International       28140
3879                              William P Hobby       26420
3880                 Chicago Midway International       16980
3881                Daniel K Inouye International       46520
3882                            Will Rogers World       36420
3883                                    LaGuardia       35620
3884            Ronald Reagan Washington National       47900
3885            Minneapolis-St Paul International       33460
3886                           Asheville Regional       11700
3887                   Indianapolis International       26900
3888                     Palm Beach International       33100
3889            Minneapolis-St Paul International       33460
3890            Minneapolis-St Paul International       33460
3891          Lubbock Preston Smith International       31180
3892                                  Agana Field        <NA>
3893                        Eagle County Regional       20780
3894                       Portland International       38900
3895                 Salt Lake City International       41620
3896                       Richmond International       40060
3897        Kona International Airport at Keahole       25900
3898               St Louis Lambert International       41180
3899                      Rochester International       40340
3900      Green Bay Austin Straubel International       24580
3901                    Kansas City International       28140
3902                            Will Rogers World       36420
3903             Sarasota/Bradenton International       35840
3904                  Northwest Arkansas Regional       22220
3905                     Des Moines International       19780
3906                          Ralph Wien Memorial        <NA>
3907          Ted Stevens Anchorage International       11260
3908            Ronald Reagan Washington National       47900
3909                           Westchester County       35620
3910                John F. Kennedy International       35620
3911   Cincinnati/Northern Kentucky International       17140
3912                        El Paso International       21340
3913              Greater Rochester International       40380
3914   Cincinnati/Northern Kentucky International       17140
3915                 Salt Lake City International       41620
3916            Minneapolis-St Paul International       33460
3917                        Norfolk International       47260
3918              Dallas/Fort Worth International       19100
3919              Dallas/Fort Worth International       19100
3920              Charlotte Douglas International       16740
3921            Ronald Reagan Washington National       47900
3922                        Norfolk International       47260
3923                   Philadelphia International       37980
3924         Greenville-Spartanburg International       43900
3925             Dane County Regional-Truax Field       31540
3926                        Norfolk International       47260
3927                         Denver International       19740
3928              Aspen Pitkin County Sardy Field       24060
3929                   Glacier Park International       28060
3930         Rogue Valley International - Medford       32780
3931                          Minot International       33500
3932                         Idaho Falls Regional       26820
3933                           Santa Fe Municipal       42140
3934         Rogue Valley International - Medford       32780
3935                  San Francisco International       41860
3936                    Los Angeles International       31080
3937                         Denver International       19740
3938         George Bush Intercontinental/Houston       26420
3939                   Indianapolis International       26900
3940                                     Bob Hope       31080
3941                       McCarran International       29820
3942             Phoenix Sky Harbor International       38060
3943                   Jacksonville International       27260
3944                              William P Hobby       26420
3945                            Dallas Love Field       19100
3946                                 Yampa Valley       44460
3947                 Raleigh-Durham International       39580
3948              Southwest Florida International       15980
3949                          Tulsa International       46140
3950                              William P Hobby       26420
3951             Phoenix Sky Harbor International       38060
3952             Phoenix Sky Harbor International       38060
3953   Central Il Regional Airport at Bloomington       14010
3954                     Palm Beach International       33100
3955                          Hilton Head Airport       25940
3956                                    LaGuardia       35620
3957                       Key West International       28580
3958              Washington Dulles International       47900
3959               General Mitchell International       33340
3960              Washington Dulles International       47900
3961     Hartsfield-Jackson Atlanta International       12060
3962              Dallas/Fort Worth International       19100
3963              Charlotte Douglas International       16740
3964              Charlotte Douglas International       16740
3965                   Philadelphia International       37980
3966            Ronald Reagan Washington National       47900
3967              Dallas/Fort Worth International       19100
3968             Austin - Bergstrom International       12420
3969                John F. Kennedy International       35620
3970                          Miami International       33100
3971                          Tulsa International       46140
3972              Dallas/Fort Worth International       19100
3973                 Chicago O'Hare International       16980
3974             Phoenix Sky Harbor International       38060
3975              Charlotte Douglas International       16740
3976                   Philadelphia International       37980
3977                   Philadelphia International       37980
3978              Charlotte Douglas International       16740
3979              Charlotte Douglas International       16740
3980            Ronald Reagan Washington National       47900
3981                 Chicago O'Hare International       16980
3982            John Glenn Columbus International       18140
3983              Dallas/Fort Worth International       19100
3984              Charlotte Douglas International       16740
3985              Charlotte Douglas International       16740
3986                 Seattle/Tacoma International       42660
3987                       Portland International       38900
3988                       Portland International       38900
3989                Buffalo Niagara International       15380
3990                John F. Kennedy International       35620
3991      Fort Lauderdale-Hollywood International       33100
3992                John F. Kennedy International       35620
3993        Louisville Muhammad Ali International       31140
3994                   Detroit Metro Wayne County       19820
3995                   Detroit Metro Wayne County       19820
3996            Minneapolis-St Paul International       33460
3997     Hartsfield-Jackson Atlanta International       12060
3998   Cincinnati/Northern Kentucky International       17140
3999                   Detroit Metro Wayne County       19820
4000                   Detroit Metro Wayne County       19820
4001               Luis Munoz Marin International       41980
4002               Syracuse Hancock International       45060
4003                          Tulsa International       46140
4004                      San Diego International       41740
4005             John Wayne Airport-Orange County       31080
4006              Southwest Florida International       15980
4007                     Sacramento International       40900
4008                      Quad City International       19340
4009       Birmingham-Shuttlesworth International       13820
4010                                 McGhee Tyson       28940
4011                         Tucson International       46060
4012                       Portland International       38900
4013                   Indianapolis International       26900
4014                      San Diego International       41740
4015               Augusta Regional at Bush Field       12260
4016                        Bradley International       25540
4017                 Raleigh-Durham International       39580
4018                   Myrtle Beach International       34820
4019                       Key West International       28580
4020                   Indianapolis International       26900
4021          Ted Stevens Anchorage International       11260
4022                  Northwest Arkansas Regional       22220
4023                 Charleston AFB/International       16700
4024            Ronald Reagan Washington National       47900
4025                         Albany International       10580
4026               Roanoke Regional/Woodrum Field       40220
4027         George Bush Intercontinental/Houston       26420
4028                          Miami International       33100
4029                              William P Hobby       26420
4030      Norman Y. Mineta San Jose International       41940
4031                      Nashville International       34980
4032                            Dallas Love Field       19100
4033        Kona International Airport at Keahole       25900
4034                     Pittsburgh International       38300
4035                          Shreveport Regional       43340
4036            Minneapolis-St Paul International       33460
4037                 Newark Liberty International       35620
4038      Fort Lauderdale-Hollywood International       33100
4039                            Flagstaff Pulliam       22380
4040            Bozeman Yellowstone International       14580
4041                         Denver International       19740
4042              Charlotte Douglas International       16740
4043                     Pittsburgh International       38300
4044                 Charleston AFB/International       16700
4045      Norman Y. Mineta San Jose International       41940
4046                        Orlando International       36740
4047                                    Mercedita       38660
4048     Jackson Medgar Wiley Evers International       27140
4049                 Gerald R. Ford International       24340
4050                    San Antonio International       41700
4051                       Portland International       38900
4052          Ted Stevens Anchorage International       11260
4053                         Juneau International       27940
4054         Greenville-Spartanburg International       43900
4055                 Salt Lake City International       41620
4056                     Wilmington International       48900
4057               Luis Munoz Marin International       41980
4058               St Louis Lambert International       41180
4059                   Jacksonville International       27260
4060           Savannah/Hilton Head International       42340
4061                     Reno/Tahoe International       39900
4062               St Louis Lambert International       41180
4063                   Myrtle Beach International       34820
4064           City of Colorado Springs Municipal       17820
4065      Norman Y. Mineta San Jose International       41940
4066                          Miami International       33100
4067                        Sitka Rocky Gutierrez        <NA>
4068                          Logan International       14460
4069            Ronald Reagan Washington National       47900
4070                    Los Angeles International       31080
4071           Baltimore/Washington International       12580
4072                           Westchester County       35620
4073                          Logan International       14460
4074                                 Yampa Valley       44460
4075                           Westchester County       35620
4076     Hartsfield-Jackson Atlanta International       12060
4077                        Memphis International       32820
4078                   Myrtle Beach International       34820
4079                 Springfield-Branson National       44180
4080                          Miami International       33100
4081       Birmingham-Shuttlesworth International       13820
4082                     Burlington International       15540
4083              Charlotte Douglas International       16740
4084               Portland International Jetport       38860
4085              Dallas/Fort Worth International       19100
4086                        Columbus Metropolitan       17980
4087                          Tulsa International       46140
4088         George Bush Intercontinental/Houston       26420
4089                   Indianapolis International       26900
4090                     Pittsburgh International       38300
4091             Phoenix Sky Harbor International       38060
4092               Portland International Jetport       38860
4093             Austin - Bergstrom International       12420
4094             Sarasota/Bradenton International       35840
4095                        Wichita Mid-Continent       48620
4096            Minneapolis-St Paul International       33460
4097   Central Il Regional Airport at Bloomington       14010
4098                        Orlando International       36740
4099     Hartsfield-Jackson Atlanta International       12060
4100                        Memphis International       32820
4101  Huntsville International-Carl T Jones Field       26620
4102             Dane County Regional-Truax Field       31540
4103                Pensacola Gulf Coast Regional       37860
4104               New York Stewart International       39100
4105                 Theodore Francis Green State       39300
4106                        Orlando International       36740
4107              Southwest Florida International       15980
4108                   Detroit Metro Wayne County       19820
4109                    San Antonio International       41700
4110              Washington Dulles International       47900
4111                          Miami International       33100
4112                      Ketchikan International       28540
4113          Ted Stevens Anchorage International       11260
4114                   Palm Springs International       40140
4115                          Logan International       14460
4116                    Los Angeles International       31080
4117                 Salt Lake City International       41620
4118     Hartsfield-Jackson Atlanta International       12060
4119                 Salt Lake City International       41620
4120                 Salt Lake City International       41620
4121     Hartsfield-Jackson Atlanta International       12060
4122   Cincinnati/Northern Kentucky International       17140
4123                 Springfield-Branson National       44180
4124     Jackson Medgar Wiley Evers International       27140
4125                Pensacola Gulf Coast Regional       37860
4126                 Theodore Francis Green State       39300
4127                   Indianapolis International       26900
4128            Ronald Reagan Washington National       47900
4129                            Columbia Regional       17860
4130                         Sawyer International       32100
4131            Minneapolis-St Paul International       33460
4132                                 Jackson Hole       27220
4133              Dallas/Fort Worth International       19100
4134                         Denver International       19740
4135                 Gerald R. Ford International       24340
4136            Minneapolis-St Paul International       33460
4137                         Denver International       19740
4138         George Bush Intercontinental/Houston       26420
4139                              Kahului Airport       27980
4140                           Hilo International       25900
4141           City of Colorado Springs Municipal       17820
4142                 Chicago Midway International       16980
4143                 Chicago Midway International       16980
4144                     Sacramento International       40900
4145                                     Bob Hope       31080
4146       Birmingham-Shuttlesworth International       13820
4147                   Jacksonville International       27260
4148                      Nashville International       34980
4149                 Theodore Francis Green State       39300
4150                               Joe Foss Field       43620
4151                                   Blue Grass       30460
4152         George Bush Intercontinental/Houston       26420
4153         George Bush Intercontinental/Houston       26420
4154                                 Jackson Hole       27220
4155                Daniel K Inouye International       46520
4156                        Norfolk International       47260
4157                         Bangor International       12620
4158                     Burlington International       15540
4159              Greater Rochester International       40380
4160               Syracuse Hancock International       45060
4161                          Logan International       14460
4162              Charlotte Douglas International       16740
4163          Rick Husband Amarillo International       11100
4164                 Chicago O'Hare International       16980
4165              Dallas/Fort Worth International       19100
4166              Charlotte Douglas International       16740
4167             Austin - Bergstrom International       12420
4168                          Miami International       33100
4169                    Kansas City International       28140
4170                        Memphis International       32820
4171               St Louis Lambert International       41180
4172              Charlotte Douglas International       16740
4173              Dallas/Fort Worth International       19100
4174                        El Paso International       21340
4175              Dallas/Fort Worth International       19100
4176                   Philadelphia International       37980
4177                 Chicago O'Hare International       16980
4178              Dallas/Fort Worth International       19100
4179                   Philadelphia International       37980
4180              Charlotte Douglas International       16740
4181                   Philadelphia International       37980
4182                   Philadelphia International       37980
4183              Dallas/Fort Worth International       19100
4184                       Portland International       38900
4185                 Seattle/Tacoma International       42660
4186               Syracuse Hancock International       45060
4187                         Albany International       10580
4188                 Charleston AFB/International       16700
4189                       Portland International       38900
4190      Fort Lauderdale-Hollywood International       33100
4191                 Charleston AFB/International       16700
4192                       McCarran International       29820
4193                       Richmond International       40060
4194      Fort Lauderdale-Hollywood International       33100
4195                       McCarran International       29820
4196                          Logan International       14460
4197                   Detroit Metro Wayne County       19820
4198            Minneapolis-St Paul International       33460
4199            Minneapolis-St Paul International       33460
4200                   Detroit Metro Wayne County       19820
4201                      Fairbanks International       21820
4202                   Detroit Metro Wayne County       19820
4203     Hartsfield-Jackson Atlanta International       12060
4204                        Long Island MacArthur       35620
4205                 Raleigh-Durham International       39580
4206                 Gerald R. Ford International       24340
4207                   Philadelphia International       37980
4208                          Miami International       33100
4209                        Orlando International       36740
4210               Syracuse Hancock International       45060
4211              Washington Dulles International       47900
4212                 Chicago O'Hare International       16980
4213             Austin - Bergstrom International       12420
4214                Gulfport-Biloxi International       25060
4215     Midland International Air and Space Port       33260
4216              Dallas/Fort Worth International       19100
4217              Dallas/Fort Worth International       19100
4218                                   Blue Grass       30460
4219                      Grand Junction Regional       24300
4220                          Miami International       33100
4221               Luis Munoz Marin International       41980
4222                             Henry E. Rohlsen        <NA>
4223                          Tampa International       45300
4224               Luis Munoz Marin International       41980
4225                                    LaGuardia       35620
4226                  Atlantic City International       12100
4227              Charlotte Douglas International       16740
4228            Ronald Reagan Washington National       47900
4229                 Capital Region International       29620
4230                     Pittsburgh International       38300
4231              Charlotte Douglas International       16740
4232            Ronald Reagan Washington National       47900
4233            Ronald Reagan Washington National       47900
4234         George Bush Intercontinental/Houston       26420
4235             Phoenix Sky Harbor International       38060
4236         George Bush Intercontinental/Houston       26420
4237                  San Francisco International       41860
4238                         Denver International       19740
4239                 Corpus Christi International       18580
4240                           Mahlon Sweet Field       21660
4241                                Roberts Field       13460
4242         George Bush Intercontinental/Houston       26420
4243                 Chicago O'Hare International       16980
4244                         Bishop International       22420
4245  Huntsville International-Carl T Jones Field       26620
4246                 Theodore Francis Green State       39300
4247                     San Luis County Regional       42020
4248             Phoenix Sky Harbor International       38060
4249                                Roberts Field       13460
4250                     Reno/Tahoe International       39900
4251         George Bush Intercontinental/Houston       26420
4252                 Seattle/Tacoma International       42660
4253                 Seattle/Tacoma International       42660
4254             John Wayne Airport-Orange County       31080
4255                 Newark Liberty International       35620
4256              Washington Dulles International       47900
4257                 Newark Liberty International       35620
4258                 Chicago O'Hare International       16980
4259              Cleveland-Hopkins International       17460
4260                         Denver International       19740
4261                         Denver International       19740
4262                 Chicago O'Hare International       16980
4263              Washington Dulles International       47900
4264              Washington Dulles International       47900
4265                  San Francisco International       41860
4266                         Denver International       19740
4267              Washington Dulles International       47900
4268         George Bush Intercontinental/Houston       26420
4269                  San Francisco International       41860
4270                  San Francisco International       41860
4271                         Denver International       19740
4272              Washington Dulles International       47900
4273                 Chicago Midway International       16980
4274             Phoenix Sky Harbor International       38060
4275                 Chicago Midway International       16980
4276                            Dallas Love Field       19100
4277              Charlotte Douglas International       16740
4278      Fort Lauderdale-Hollywood International       33100
4279               St Louis Lambert International       41180
4280                   Detroit Metro Wayne County       19820
4281               St Louis Lambert International       41180
4282           City of Colorado Springs Municipal       17820
4283                      San Diego International       41740
4284                 Chicago Midway International       16980
4285                            Dallas Love Field       19100
4286                              William P Hobby       26420
4287             John Wayne Airport-Orange County       31080
4288                         Denver International       19740
4289           Baltimore/Washington International       12580
4290                           Long Beach Airport       31080
4291                            Dallas Love Field       19100
4292                                     Bob Hope       31080
4293                           Long Beach Airport       31080
4294             John Wayne Airport-Orange County       31080
4295             Phoenix Sky Harbor International       38060
4296                           Long Beach Airport       31080
4297             Austin - Bergstrom International       12420
4298              Washington Dulles International       47900
4299                              William P Hobby       26420
4300                   Myrtle Beach International       34820
4301     Jackson Medgar Wiley Evers International       27140
4302             Sarasota/Bradenton International       35840
4303              Washington Dulles International       47900
4304         George Bush Intercontinental/Houston       26420
4305            Bozeman Yellowstone International       14580
4306         George Bush Intercontinental/Houston       26420
4307           Eglin AFB Destin Fort Walton Beach       18880
4308              Washington Dulles International       47900
4309                       Richmond International       40060
4310                     Wilmington International       48900
4311                   Philadelphia International       37980
4312                 Raleigh-Durham International       39580
4313              Washington Dulles International       47900
4314                           Asheville Regional       11700
4315             James M Cox/Dayton International       19430
4316           Erie International/Tom Ridge Field       21500
4317                 Gerald R. Ford International       24340
4318              Southwest Florida International       15980
4319              Southwest Florida International       15980
4320                       Phoenix - Mesa Gateway       38060
4321                   Myrtle Beach International       34820
4322                          Punta Gorda Airport       39460
4323      St. Petersburg-Clearwater International       45300
4324                       McCarran International       29820
4325                   Philadelphia International       37980
4326                          Logan International       14460
4327  Huntsville International-Carl T Jones Field       26620
4328                  Northwest Arkansas Regional       22220
4329                              Tweed New Haven       35300
4330                     Burlington International       15540
4331              Dallas/Fort Worth International       19100
4332                     Reno/Tahoe International       39900
4333                Daniel K Inouye International       46520
4334                                    LaGuardia       35620
4335                Buffalo Niagara International       15380
4336                   Detroit Metro Wayne County       19820
4337              Dallas/Fort Worth International       19100
4338            Ronald Reagan Washington National       47900
4339              Dallas/Fort Worth International       19100
4340                 Chicago O'Hare International       16980
4341              Dallas/Fort Worth International       19100
4342                Buffalo Niagara International       15380
4343              Charlotte Douglas International       16740
4344              Dallas/Fort Worth International       19100
4345                         Juneau International       27940
4346                       Richmond International       40060
4347     Hartsfield-Jackson Atlanta International       12060
4348                 Salt Lake City International       41620
4349                 Salt Lake City International       41620
4350     Hartsfield-Jackson Atlanta International       12060
4351                               Trenton Mercer       45940
4352                     Harrisburg International       25420
4353                                 McGhee Tyson       28940
4354                        Akron-Canton Regional       10420
4355              Washington Dulles International       47900
4356                             The Eastern Iowa       16300
4357                 Capital Region International       29620
4358            Ronald Reagan Washington National       47900
4359                          Tampa International       45300
4360                             Rafael Hernandez       10380
4361            John Glenn Columbus International       18140
4362      Fort Lauderdale-Hollywood International       33100
4363                          Tampa International       45300
4364                          Logan International       14460
4365                        Akron-Canton Regional       10420
4366            John Glenn Columbus International       18140
4367            Ronald Reagan Washington National       47900
4368                 Piedmont Triad International       24660
4369                 Piedmont Triad International       24660
4370         Greenville-Spartanburg International       43900
4371                      Melbourne International       37340
4372                   Philadelphia International       37980
4373                 Theodore Francis Green State       39300
4374              Greater Rochester International       40380
4375               Syracuse Hancock International       45060
4376                   Philadelphia International       37980
4377                 Theodore Francis Green State       39300
4378         George Bush Intercontinental/Houston       26420
4379            Minneapolis-St Paul International       33460
4380                        Memphis International       32820
4381                Pensacola Gulf Coast Regional       37860
4382                 Chicago O'Hare International       16980
4383                      Brainerd Lakes Regional       14660
4384                           Bismarck Municipal       13900
4385                          Rapid City Regional       39660
4386                         Denver International       19740
4387                 Chicago O'Hare International       16980
4388                    Los Angeles International       31080
4389            Minneapolis-St Paul International       33460
4390                                 Jackson Hole       27220
4391                       Portland International       38900
4392               Portland International Jetport       38860
4393                  San Francisco International       41860
4394              Washington Dulles International       47900
4395         George Bush Intercontinental/Houston       26420
4396                            Dallas Love Field       19100
4397                            Dallas Love Field       19100
4398           Baltimore/Washington International       12580
4399                    Kansas City International       28140
4400             Austin - Bergstrom International       12420
4401                              William P Hobby       26420
4402             Phoenix Sky Harbor International       38060
4403                   Philadelphia International       37980
4404                 Charleston AFB/International       16700
4405            John Glenn Columbus International       18140
4406              Greater Rochester International       40380
4407                 Piedmont Triad International       24660
4408            Ronald Reagan Washington National       47900
4409                     Wilmington International       48900
4410                   Manchester-Boston Regional       31700
4411        Louisville Muhammad Ali International       31140
4412               Syracuse Hancock International       45060
4413                       Appleton International       11540
4414                Pensacola Gulf Coast Regional       37860
4415              Dallas/Fort Worth International       19100
4416              Dallas/Fort Worth International       19100
4417             Phoenix Sky Harbor International       38060
4418              Dallas/Fort Worth International       19100
4419              Charlotte Douglas International       16740
4420                     Reno/Tahoe International       39900
4421     Hartsfield-Jackson Atlanta International       12060
4422                 Salt Lake City International       41620
4423                     Burlington International       15540
4424                         Denver International       19740
4425                        Norfolk International       47260
4426                       McCarran International       29820
4427              Southwest Florida International       15980
4428      Fort Lauderdale-Hollywood International       33100
4429                   Myrtle Beach International       34820
4430                       Arnold Palmer Regional       38300
4431                        Bradley International       25540
4432                         Bishop International       22420
4433  Huntsville International-Carl T Jones Field       26620
4434                   Philadelphia International       37980
4435            Ronald Reagan Washington National       47900
4436             Phoenix Sky Harbor International       38060
4437                 Chicago O'Hare International       16980
4438                 Chicago O'Hare International       16980
4439                             Snohomish County       42660
4440                     San Luis County Regional       42020
4441                 Seattle/Tacoma International       42660
4442                 Chicago O'Hare International       16980
4443                  San Francisco International       41860
4444                         Denver International       19740
4445                         Denver International       19740
4446         George Bush Intercontinental/Houston       26420
4447                              William P Hobby       26420
4448                 Corpus Christi International       18580
4449                    Kansas City International       28140
4450                    San Antonio International       41700
4451                              Kahului Airport       27980
4452                      Nashville International       34980
4453           Metropolitan Oakland International       41860
4454            Bozeman Yellowstone International       14580
4455                      Nashville International       34980
4456                     Reno/Tahoe International       39900
4457                        Memphis International       32820
4458              Washington Dulles International       47900
4459              Washington Dulles International       47900
4460                 Theodore Francis Green State       39300
4461                                     Bob Hope       31080
4462                       McCarran International       29820
4463     California Redwood Coast Humboldt County       21700
4464                           Mahlon Sweet Field       21660
4465         Rogue Valley International - Medford       32780
4466                                   Tri Cities       28420
4467                                Roberts Field       13460
4468            Charles M. Schulz - Sonoma County       42220
4469                              Tweed New Haven       35300
4470                                     Bob Hope       31080
4471                        Orlando International       36740
4472              Southwest Florida International       15980
4473                                     Bob Hope       31080
4474                                     Bob Hope       31080
4475                              Tweed New Haven       35300
4476                                     Bob Hope       31080
4477                          Tampa International       45300
4478                                Roberts Field       13460
4479                    Los Angeles International       31080
4480                        Bradley International       25540
4481        Kona International Airport at Keahole       25900
4482                               Joe Foss Field       43620
4483                                Lihue Airport       28180
4484                      San Diego International       41740
4485     Hartsfield-Jackson Atlanta International       12060
4486      Norman Y. Mineta San Jose International       41940
4487              Aspen Pitkin County Sardy Field       24060
4488                     Reno/Tahoe International       39900
4489         George Bush Intercontinental/Houston       26420
4490                            Montrose Regional       33940
4491                        Eagle County Regional       20780
4492                                 Yampa Valley       44460
4493                 Seattle/Tacoma International       42660
4494                         Tucson International       46060
4495                 Newark Liberty International       35620
4496                          Shreveport Regional       43340
4497           Eglin AFB Destin Fort Walton Beach       18880
4498                        Memphis International       32820
4499                     Fort Wayne International       23060
4500                        Eagle County Regional       20780
4501                     Sacramento International       40900
4502                         Denver International       19740
4503                         Denver International       19740
4504           Metropolitan Oakland International       41860
4505        Louisville Muhammad Ali International       31140
4506                       Appleton International       11540
4507             Phoenix Sky Harbor International       38060
4508                   Philadelphia International       37980
4509            Ronald Reagan Washington National       47900
4510                       Richmond International       40060
4511                John F. Kennedy International       35620
4512                          Logan International       14460
4513                   Detroit Metro Wayne County       19820
4514                        Orlando International       36740
4515           City of Colorado Springs Municipal       17820
4516                        Orlando International       36740
4517                   Jacksonville International       27260
4518                        Orlando International       36740
4519      Fort Lauderdale-Hollywood International       33100
4520                    Kansas City International       28140
4521      Fort Lauderdale-Hollywood International       33100
4522                    Kansas City International       28140
4523                    Los Angeles International       31080
4524                             Snohomish County       42660
4525                         Denver International       19740
4526                 Chicago Midway International       16980
4527                            Will Rogers World       36420
4528                        Ontario International       40140
4529                           Hilo International       25900
4530                              William P Hobby       26420
4531     Jackson Medgar Wiley Evers International       27140
4532                                     Bob Hope       31080
4533             Sarasota/Bradenton International       35840
4534                          Tampa International       45300
4535                    Kansas City International       28140
4536             John Wayne Airport-Orange County       31080
4537                       Richmond International       40060
4538              Cleveland-Hopkins International       17460
4539             Phoenix Sky Harbor International       38060
4540              Charlotte Douglas International       16740
4541                           Worcester Regional       49340
4542              Dallas/Fort Worth International       19100
4543                       Portland International       38900
4544                        Sitka Rocky Gutierrez        <NA>
4545                John F. Kennedy International       35620
4546                           Westchester County       35620
4547            Bozeman Yellowstone International       14580
4548                John F. Kennedy International       35620
4549                 Salt Lake City International       41620
4550                   Detroit Metro Wayne County       19820
4551                   Detroit Metro Wayne County       19820
4552                 Newark Liberty International       35620
4553                         Valley International       15180
4554              Dallas/Fort Worth International       19100
4555                   Myrtle Beach International       34820
4556                        Akron-Canton Regional       10420
4557                                 Lovell Field       16860
4558                     Wilmington International       48900
4559           City of Colorado Springs Municipal       17820
4560                           Boise Air Terminal       14260
4561                         Denver International       19740
4562                         Denver International       19740
4563                         Denver International       19740
4564                    San Antonio International       41700
4565           Baltimore/Washington International       12580
4566        Louisville Muhammad Ali International       31140
4567                 Charleston AFB/International       16700
4568                    Kansas City International       28140
4569               General Mitchell International       33340
4570             Austin - Bergstrom International       12420
4571                     Des Moines International       19780
4572           Metropolitan Oakland International       41860
4573                                     Bob Hope       31080
4574                              William P Hobby       26420
4575               Portland International Jetport       38860
4576             Austin - Bergstrom International       12420
4577            Albuquerque International Sunport       10740
4578      Norman Y. Mineta San Jose International       41940
4579             Austin - Bergstrom International       12420
4580           Savannah/Hilton Head International       42340
4581                            Will Rogers World       36420
4582                    San Antonio International       41700
4583               General Mitchell International       33340
4584             Phoenix Sky Harbor International       38060
4585              Southwest Florida International       15980
4586                         Duluth International       20260
4587             Dane County Regional-Truax Field       31540
4588                          Tampa International       45300
4589                     Palm Beach International       33100
4590                                     Bob Hope       31080
4591    Louis Armstrong New Orleans International       35380
4592                 Chicago O'Hare International       16980
4593            Bozeman Yellowstone International       14580
4594               Luis Munoz Marin International       41980
4595                       Richmond International       40060
4596                   Palm Springs International       40140
4597             Phoenix Sky Harbor International       38060
4598             Phoenix Sky Harbor International       38060
4599      Norman Y. Mineta San Jose International       41940
4600                 Seattle/Tacoma International       42660
4601                   Detroit Metro Wayne County       19820
4602     Hartsfield-Jackson Atlanta International       12060
4603   Central Il Regional Airport at Bloomington       14010
4604                               Trenton Mercer       45940
4605                  Atlantic City International       12100
4606                                 Cyril E King        <NA>
4607              Cleveland-Hopkins International       17460
4608                   Philadelphia International       37980
4609                   Manchester-Boston Regional       31700
4610                         Denver International       19740
4611                     Des Moines International       19780
4612                 Chicago O'Hare International       16980
4613                         Denver International       19740
4614                         Denver International       19740
4615                         Denver International       19740
4616                 Chicago O'Hare International       16980
4617              Washington Dulles International       47900
4618                         Denver International       19740
4619              Washington Dulles International       47900
4620                         Denver International       19740
4621                         Denver International       19740
4622                         Denver International       19740
4623                    Los Angeles International       31080
4624           Metropolitan Oakland International       41860
4625           Baltimore/Washington International       12580
4626                            Will Rogers World       36420
4627                              William P Hobby       26420
4628               General Mitchell International       33340
4629                Buffalo Niagara International       15380
4630                              Eppley Airfield       36540
4631   Cincinnati/Northern Kentucky International       17140
4632                            Dallas Love Field       19100
4633          Lubbock Preston Smith International       31180
4634     Midland International Air and Space Port       33260
4635                        Wichita Mid-Continent       48620
4636                Pensacola Gulf Coast Regional       37860
4637                 Chicago Midway International       16980
4638                         Albany International       10580
4639                        Memphis International       32820
4640                            Dallas Love Field       19100
4641                                  Adams Field       30780
4642                 Gerald R. Ford International       24340
4643                    Kansas City International       28140
4644                      San Diego International       41740
4645                          Tampa International       45300
4646                    Kansas City International       28140
4647               General Mitchell International       33340
4648            Ronald Reagan Washington National       47900
4649                           Long Beach Airport       31080
4650              Washington Dulles International       47900
4651                 Chicago O'Hare International       16980
4652                        Norfolk International       47260
4653            Minneapolis-St Paul International       33460
4654                          Tampa International       45300
4655                       Key West International       28580
4656                                 Yampa Valley       44460
4657                 Seattle/Tacoma International       42660
4658                            Montrose Regional       33940
4659                          Tulsa International       46140
4660                    Los Angeles International       31080
4661             John Wayne Airport-Orange County       31080
4662                Daniel K Inouye International       46520
4663                                 Cyril E King        <NA>
4664                        Bradley International       25540
4665                     Pittsburgh International       38300
4666     Hartsfield-Jackson Atlanta International       12060
4667                   Detroit Metro Wayne County       19820
4668     Hartsfield-Jackson Atlanta International       12060
4669     Hartsfield-Jackson Atlanta International       12060
4670                           Monterey Peninsula       41500
4671                    Great Falls International       24500
4672                   Indianapolis International       26900
4673                              University Park       44300
4674                              Lincoln Airport       30700
4675               Augusta Regional at Bush Field       12260
4676                                   Tri Cities       28700
4677                     Harrisburg International       25420
4678                         Albany International       10580
4679                        Spokane International       44060
4680                           Westchester County       35620
4681             Dane County Regional-Truax Field       31540
4682                    Central Nebraska Regional       24260
4683                 Springfield-Branson National       44180
4684                        Columbia Metropolitan       17900
4685                      Quad City International       19340
4686              Aspen Pitkin County Sardy Field       24060
4687                                 Yampa Valley       44460
4688                                    LaGuardia       35620
4689                      Quad City International       19340
4690                   Manchester-Boston Regional       31700
4691                 Chicago O'Hare International       16980
4692                           Asheville Regional       11700
4693          Ted Stevens Anchorage International       11260
4694                 Seattle/Tacoma International       42660
4695                   Petersburg James A Johnson        <NA>
4696                       Portland International       38900
4697                    Los Angeles International       31080
4698                          Logan International       14460
4699                John F. Kennedy International       35620
4700                 Salt Lake City International       41620
4701                 Salt Lake City International       41620
4702                   Jacksonville International       27260
4703                     Pittsburgh International       38300
4704                        Bradley International       25540
4705          Baton Rouge Metropolitan/Ryan Field       12940
4706                     Ithaca Tompkins Regional       27060
4707                        Bradley International       25540
4708      Northwest Florida Beaches International       37460
4709                           Monterey Peninsula       41500
4710                              Eppley Airfield       36540
4711                           Santa Fe Municipal       42140
4712                         Denver International       19740
4713                 Chicago O'Hare International       16980
4714                 Chicago O'Hare International       16980
4715                         Denver International       19740
4716                         Denver International       19740
4717                          Tampa International       45300
4718                              William P Hobby       26420
4719                 Chicago Midway International       16980
4720            John Glenn Columbus International       18140
4721           City of Colorado Springs Municipal       17820
4722                      Nashville International       34980
4723                              Eppley Airfield       36540
4724              Greater Rochester International       40380
4725     Hartsfield-Jackson Atlanta International       12060
4726                        Orlando International       36740
4727                       Portland International       38900
4728                         Albany International       10580
4729              Greater Rochester International       40380
4730        Louisville Muhammad Ali International       31140
4731              Washington Dulles International       47900
4732            Ronald Reagan Washington National       47900
4733                       Richmond International       40060
4734          Rick Husband Amarillo International       11100
4735 Brownsville South Padre Island International       15180
4736                         Valley International       15180
4737                        Orlando International       36740
4738                       Key West International       28580
4739                       Brunswick Golden Isles       15260
4740                              University Park       44300
4741                  Northwest Arkansas Regional       22220
4742                        Bradley International       25540
4743                               Kodiak Airport        <NA>
4744                       Portland International       38900
4745          Ted Stevens Anchorage International       11260
4746                      Ketchikan International       28540
4747                          Logan International       14460
4748                                    Mercedita       38660
4749             Austin - Bergstrom International       12420
4750                          Miami International       33100
4751                   Manchester-Boston Regional       31700
4752       Birmingham-Shuttlesworth International       13820
4753              Charlotte Douglas International       16740
4754                         Denver International       19740
4755                                Meadows Field       12540
4756                          Rapid City Regional       39660
4757                            Flagstaff Pulliam       22380
4758             Dane County Regional-Truax Field       31540
4759        Louisville Muhammad Ali International       31140
4760          Rick Husband Amarillo International       11100
4761            Minneapolis-St Paul International       33460
4762                              Lincoln Airport       30700
4763                    Rhinelander/Oneida County        <NA>
4764                         Denver International       19740
4765                         Idaho Falls Regional       26820
4766            Minneapolis-St Paul International       33460
4767                                   Tri Cities       28420
4768                 Chicago O'Hare International       16980
4769              Washington Dulles International       47900
4770                         Denver International       19740
4771                        Orlando International       36740
4772             Sarasota/Bradenton International       35840
4773                         Tucson International       46060
4774                     Sacramento International       40900
4775                              Kahului Airport       27980
4776                     Pittsburgh International       38300
4777                     Sacramento International       40900
4778           Baltimore/Washington International       12580
4779           Eglin AFB Destin Fort Walton Beach       18880
4780                        Orlando International       36740
4781       Birmingham-Shuttlesworth International       13820
4782                            Montrose Regional       33940
4783                John F. Kennedy International       35620
4784                Pensacola Gulf Coast Regional       37860
4785                              Lincoln Airport       30700
4786                Gulfport-Biloxi International       25060
4787                         Laredo International       29700
4788                       Portland International       38900
4789                        Bradley International       25540
4790                         Hector International       22020
4791                Buffalo Niagara International       15380
4792                             Henry E. Rohlsen        <NA>
4793              Southwest Florida International       15980
4794                     Harrisburg International       25420
4795                  Northwest Arkansas Regional       22220
4796                     San Luis County Regional       42020
4797            Ronald Reagan Washington National       47900
4798                           Boise Air Terminal       14260
4799                       Portland International       38900
4800                         Hector International       22020
4801                           St George Regional       41100
4802                    Los Angeles International       31080
4803                         Tucson International       46060
4804                             Snohomish County       42660
4805                 Newark Liberty International       35620
4806                     Pittsburgh International       38300
4807                         Denver International       19740
4808                            Will Rogers World       36420
4809                     Pittsburgh International       38300
4810                      Nashville International       34980
4811                      San Diego International       41740
4812                                 Lovell Field       16860
4813                          Evansville Regional       21780
4814                    Charlottesville Albemarle       16820
4815                      Quad City International       19340
4816                          Shreveport Regional       43340
4817       Birmingham-Shuttlesworth International       13820
4818                                   Blue Grass       30460
4819                                 McGhee Tyson       28940
4820                          Logan International       14460
4821                             The Eastern Iowa       16300
4822            Minneapolis-St Paul International       33460
4823                   Philadelphia International       37980
4824             Phoenix Sky Harbor International       38060
4825             Phoenix Sky Harbor International       38060
4826                          Miami International       33100
4827              Charlotte Douglas International       16740
4828                 Seattle/Tacoma International       42660
4829            Bozeman Yellowstone International       14580
4830      Norman Y. Mineta San Jose International       41940
4831                    Los Angeles International       31080
4832                 Theodore Francis Green State       39300
4833                        Spokane International       44060
4834                        Spokane International       44060
4835                 Salt Lake City International       41620
4836                 Salt Lake City International       41620
4837                                  Adams Field       30780
4838                                   Blue Grass       30460
4839                            Central Wisconsin       48140
4840          Wilkes Barre Scranton International       42540
4841            Ronald Reagan Washington National       47900
4842                    Los Angeles International       31080
4843                         Denver International       19740
4844  Huntsville International-Carl T Jones Field       26620
4845                     Pittsburgh International       38300
4846                               Joe Foss Field       43620
4847                    Grand Forks International       24220
4848                          Minot International       33500
4849                          South Bend Regional       43780
4850                 Billings Logan International       13740
4851     California Redwood Coast Humboldt County       21700
4852                Fresno Yosemite International       23420
4853                         Denver International       19740
4854                        Spokane International       44060
4855                 Newark Liberty International       35620
4856                       McCarran International       29820
4857                 Chicago O'Hare International       16980
4858                 Chicago Midway International       16980
4859                            Dallas Love Field       19100
4860             Austin - Bergstrom International       12420
4861                            Dallas Love Field       19100
4862                                Lihue Airport       28180
4863                              Eppley Airfield       36540
4864                      Nashville International       34980
4865                         Denver International       19740
4866                              William P Hobby       26420
4867                              William P Hobby       26420
4868            Ronald Reagan Washington National       47900
4869                              William P Hobby       26420
4870           Metropolitan Oakland International       41860
4871                         Gainesville Regional       23540
4872                                   Blue Grass       30460
4873                                       Yeager       16620
4874           Erie International/Tom Ridge Field       21500
4875            Minneapolis-St Paul International       33460
4876                     Harrisburg International       25420
4877      Newport News/Williamsburg International       47260
4878                   Philadelphia International       37980
4879                     Burlington International       15540
4880                     Fort Wayne International       23060
4881                                   Blue Grass       30460
4882          Baton Rouge Metropolitan/Ryan Field       12940
4883                     Alexandria International       10780
4884                              Monroe Regional       33740
4885                   Detroit Metro Wayne County       19820
4886                  Lehigh Valley International       10900
4887                                 Lovell Field       16860
4888                             The Eastern Iowa       16300
4889                 Piedmont Triad International       24660
4890                     Ithaca Tompkins Regional       27060
4891                               Cherry Capital       45900
4892      Green Bay Austin Straubel International       24580
4893                                 McGhee Tyson       28940
4894            Minneapolis-St Paul International       33460
4895                 Chicago O'Hare International       16980
4896                   Philadelphia International       37980
4897              Dallas/Fort Worth International       19100
4898      Norman Y. Mineta San Jose International       41940
4899                           Nantucket Memorial        <NA>
4900                           Nantucket Memorial        <NA>
4901                    Martha's Vineyard Airport       47240
4902                    Martha's Vineyard Airport       47240
4903                           Nantucket Memorial        <NA>
4904               Syracuse Hancock International       45060
4905          Fayetteville Regional/Grannis Field       22180
4906                               Joe Foss Field       43620
4907      Green Bay Austin Straubel International       24580
4908                                 Jackson Hole       27220
4909                   Detroit Metro Wayne County       19820
4910                   Detroit Metro Wayne County       19820
4911            Minneapolis-St Paul International       33460
4912                   Detroit Metro Wayne County       19820
4913                           Nantucket Memorial        <NA>
4914              Dallas/Fort Worth International       19100
4915                         Jack Brooks Regional       13140
4916                     Fort Wayne International       23060
4917                           Manhattan Regional       31740
4918              Gunnison-Crested Butte Regional        <NA>
4919                      Elmira/Corning Regional       21300
4920                    Los Angeles International       31080
4921           City of Colorado Springs Municipal       17820
4922                 Chicago O'Hare International       16980
4923     California Redwood Coast Humboldt County       21700
4924                            Redding Municipal       39820
4925                  San Francisco International       41860
4926                         Sawyer International       32100
4927                      Santa Barbara Municipal       42200
4928                     San Luis County Regional       42020
4929                         Idaho Falls Regional       26820
4930          Ted Stevens Anchorage International       11260
4931         George Bush Intercontinental/Houston       26420
4932                  San Francisco International       41860
4933                   Philadelphia International       37980
4934                    Los Angeles International       31080
4935         George Bush Intercontinental/Houston       26420
4936                 Chicago O'Hare International       16980
4937                     Sacramento International       40900
4938                        Ontario International       40140
4939                           Long Beach Airport       31080
4940               Luis Munoz Marin International       41980
4941                    Kansas City International       28140
4942                                     Bob Hope       31080
4943                        Ontario International       40140
4944                     Reno/Tahoe International       39900
4945                      Nashville International       34980
4946                      Nashville International       34980
4947           Baltimore/Washington International       12580
4948                                    LaGuardia       35620
4949            Ronald Reagan Washington National       47900
4950                        Columbia Metropolitan       17900
4951            Minneapolis-St Paul International       33460
4952                   Presque Isle International        <NA>
4953                                     Bob Hope       31080
4954                       McCarran International       29820
4955                    Martha's Vineyard Airport       47240
4956              Southwest Florida International       15980
4957                     Sacramento International       40900
4958     Hartsfield-Jackson Atlanta International       12060
4959                                   Tri Cities       28420
4960               General Mitchell International       33340
4961              Cleveland-Hopkins International       17460
4962             John Wayne Airport-Orange County       31080
4963          Lubbock Preston Smith International       31180
4964                      Ketchikan International       28540
4965          Ted Stevens Anchorage International       11260
4966                      Ketchikan International       28540
4967               Portland International Jetport       38860
4968                          Tampa International       45300
4969                   Manchester-Boston Regional       31700
4970                 Piedmont Triad International       24660
4971                          Lea County Regional       26020
4972                        Wichita Mid-Continent       48620
4973                      San Diego International       41740
4974                            Dallas Love Field       19100
4975                            Montrose Regional       33940
4976                   Philadelphia International       37980
4977            Minneapolis-St Paul International       33460
4978           Erie International/Tom Ridge Field       21500
4979                 Seattle/Tacoma International       42660
4980                              Kahului Airport       27980
4981                            Dallas Love Field       19100
4982                     Reno/Tahoe International       39900
4983             Austin - Bergstrom International       12420
4984      Norman Y. Mineta San Jose International       41940
4985         Greenville-Spartanburg International       43900
4986                        El Paso International       21340
4987                 Chicago O'Hare International       16980
4988                         Hector International       22020
4989                     Alexandria International       10780
4990                          South Bend Regional       43780
4991              Charlotte Douglas International       16740
4992                          Lea County Regional       26020
4993                                  Bert Mooney       15580
4994          Ted Stevens Anchorage International       11260
4995                             Snohomish County       42660
4996                            Montrose Regional       33940
4997                              Eppley Airfield       36540
4998                     Palm Beach International       33100
4999           Eglin AFB Destin Fort Walton Beach       18880
                                   origin_cbsa_name
1             New York-Newark-Jersey City, NY-NJ-PA
2           Miami-Fort Lauderdale-Pompano Beach, FL
3                                  Jacksonville, FL
4                Los Angeles-Long Beach-Anaheim, CA
5                Los Angeles-Long Beach-Anaheim, CA
6                Los Angeles-Long Beach-Anaheim, CA
7             New York-Newark-Jersey City, NY-NJ-PA
8             New York-Newark-Jersey City, NY-NJ-PA
9                     Orlando-Kissimmee-Sanford, FL
10          Miami-Fort Lauderdale-Pompano Beach, FL
11                         New Orleans-Metairie, LA
12                        Cape Coral-Fort Myers, FL
13                      Seattle-Tacoma-Bellevue, WA
14                      Seattle-Tacoma-Bellevue, WA
15                      Seattle-Tacoma-Bellevue, WA
16                               Salt Lake City, UT
17              Tampa-St. Petersburg-Clearwater, FL
18             Atlanta-Sandy Springs-Alpharetta, GA
19             Atlanta-Sandy Springs-Alpharetta, GA
20             Atlanta-Sandy Springs-Alpharetta, GA
21             Atlanta-Sandy Springs-Alpharetta, GA
22             Atlanta-Sandy Springs-Alpharetta, GA
23             Atlanta-Sandy Springs-Alpharetta, GA
24             Atlanta-Sandy Springs-Alpharetta, GA
25             Atlanta-Sandy Springs-Alpharetta, GA
26             Atlanta-Sandy Springs-Alpharetta, GA
27             Atlanta-Sandy Springs-Alpharetta, GA
28             Atlanta-Sandy Springs-Alpharetta, GA
29             Atlanta-Sandy Springs-Alpharetta, GA
30             Atlanta-Sandy Springs-Alpharetta, GA
31             Atlanta-Sandy Springs-Alpharetta, GA
32             Atlanta-Sandy Springs-Alpharetta, GA
33             Atlanta-Sandy Springs-Alpharetta, GA
34                      Detroit-Warren-Dearborn, MI
35                      Detroit-Warren-Dearborn, MI
36          Minneapolis-St. Paul-Bloomington, MN-WI
37          Minneapolis-St. Paul-Bloomington, MN-WI
38          Minneapolis-St. Paul-Bloomington, MN-WI
39          Minneapolis-St. Paul-Bloomington, MN-WI
40                               Salt Lake City, UT
41                               Salt Lake City, UT
42                               Salt Lake City, UT
43             Atlanta-Sandy Springs-Alpharetta, GA
44             Atlanta-Sandy Springs-Alpharetta, GA
45          Minneapolis-St. Paul-Bloomington, MN-WI
46          Minneapolis-St. Paul-Bloomington, MN-WI
47             Atlanta-Sandy Springs-Alpharetta, GA
48             Atlanta-Sandy Springs-Alpharetta, GA
49             Atlanta-Sandy Springs-Alpharetta, GA
50             Atlanta-Sandy Springs-Alpharetta, GA
51             Atlanta-Sandy Springs-Alpharetta, GA
52             Atlanta-Sandy Springs-Alpharetta, GA
53             Atlanta-Sandy Springs-Alpharetta, GA
54            New York-Newark-Jersey City, NY-NJ-PA
55               Los Angeles-Long Beach-Anaheim, CA
56            New York-Newark-Jersey City, NY-NJ-PA
57          Minneapolis-St. Paul-Bloomington, MN-WI
58                               Salt Lake City, UT
59                               Salt Lake City, UT
60          Minneapolis-St. Paul-Bloomington, MN-WI
61          Minneapolis-St. Paul-Bloomington, MN-WI
62          Minneapolis-St. Paul-Bloomington, MN-WI
63          Minneapolis-St. Paul-Bloomington, MN-WI
64                               Salt Lake City, UT
65                               Salt Lake City, UT
66                               Salt Lake City, UT
67                               Salt Lake City, UT
68                               Salt Lake City, UT
69                               Salt Lake City, UT
70                               Salt Lake City, UT
71                               Salt Lake City, UT
72                               Salt Lake City, UT
73             Atlanta-Sandy Springs-Alpharetta, GA
74             Atlanta-Sandy Springs-Alpharetta, GA
75             Atlanta-Sandy Springs-Alpharetta, GA
76                      Detroit-Warren-Dearborn, MI
77             Atlanta-Sandy Springs-Alpharetta, GA
78             Atlanta-Sandy Springs-Alpharetta, GA
79             Atlanta-Sandy Springs-Alpharetta, GA
80             Atlanta-Sandy Springs-Alpharetta, GA
81             Atlanta-Sandy Springs-Alpharetta, GA
82             Atlanta-Sandy Springs-Alpharetta, GA
83             Atlanta-Sandy Springs-Alpharetta, GA
84             Atlanta-Sandy Springs-Alpharetta, GA
85             Atlanta-Sandy Springs-Alpharetta, GA
86             Atlanta-Sandy Springs-Alpharetta, GA
87             Atlanta-Sandy Springs-Alpharetta, GA
88               Los Angeles-Long Beach-Anaheim, CA
89               Los Angeles-Long Beach-Anaheim, CA
90               Los Angeles-Long Beach-Anaheim, CA
91               Los Angeles-Long Beach-Anaheim, CA
92               Los Angeles-Long Beach-Anaheim, CA
93          Minneapolis-St. Paul-Bloomington, MN-WI
94          Minneapolis-St. Paul-Bloomington, MN-WI
95                      Seattle-Tacoma-Bellevue, WA
96                               Salt Lake City, UT
97             Atlanta-Sandy Springs-Alpharetta, GA
98             Atlanta-Sandy Springs-Alpharetta, GA
99             Atlanta-Sandy Springs-Alpharetta, GA
100            Atlanta-Sandy Springs-Alpharetta, GA
101            Atlanta-Sandy Springs-Alpharetta, GA
102            Atlanta-Sandy Springs-Alpharetta, GA
103            Atlanta-Sandy Springs-Alpharetta, GA
104                     Detroit-Warren-Dearborn, MI
105              Los Angeles-Long Beach-Anaheim, CA
106              Los Angeles-Long Beach-Anaheim, CA
107         Minneapolis-St. Paul-Bloomington, MN-WI
108                              Salt Lake City, UT
109            Atlanta-Sandy Springs-Alpharetta, GA
110            Atlanta-Sandy Springs-Alpharetta, GA
111            Atlanta-Sandy Springs-Alpharetta, GA
112            Atlanta-Sandy Springs-Alpharetta, GA
113            Atlanta-Sandy Springs-Alpharetta, GA
114            Atlanta-Sandy Springs-Alpharetta, GA
115            Atlanta-Sandy Springs-Alpharetta, GA
116                     Detroit-Warren-Dearborn, MI
117                     Detroit-Warren-Dearborn, MI
118                Las Vegas-Henderson-Paradise, NV
119              Los Angeles-Long Beach-Anaheim, CA
120              Los Angeles-Long Beach-Anaheim, CA
121                   Orlando-Kissimmee-Sanford, FL
122                   Orlando-Kissimmee-Sanford, FL
123         Miami-Fort Lauderdale-Pompano Beach, FL
124         Miami-Fort Lauderdale-Pompano Beach, FL
125                       Cape Coral-Fort Myers, FL
126                     Seattle-Tacoma-Bellevue, WA
127                     Seattle-Tacoma-Bellevue, WA
128                     Seattle-Tacoma-Bellevue, WA
129                     Seattle-Tacoma-Bellevue, WA
130                              Salt Lake City, UT
131                              Salt Lake City, UT
132                              Salt Lake City, UT
133                              Salt Lake City, UT
134             Tampa-St. Petersburg-Clearwater, FL
135              San Diego-Chula Vista-Carlsbad, CA
136              Los Angeles-Long Beach-Anaheim, CA
137                     Seattle-Tacoma-Bellevue, WA
138            Atlanta-Sandy Springs-Alpharetta, GA
139                     Detroit-Warren-Dearborn, MI
140                     Detroit-Warren-Dearborn, MI
141                     Detroit-Warren-Dearborn, MI
142                     Detroit-Warren-Dearborn, MI
143           New York-Newark-Jersey City, NY-NJ-PA
144           New York-Newark-Jersey City, NY-NJ-PA
145         Minneapolis-St. Paul-Bloomington, MN-WI
146         Minneapolis-St. Paul-Bloomington, MN-WI
147                                Raleigh-Cary, NC
148                              Salt Lake City, UT
149                              Salt Lake City, UT
150            Atlanta-Sandy Springs-Alpharetta, GA
151            Atlanta-Sandy Springs-Alpharetta, GA
152            Atlanta-Sandy Springs-Alpharetta, GA
153  Nashville-Davidson--Murfreesboro--Franklin, TN
154                            Cincinnati, OH-KY-IN
155                            Cincinnati, OH-KY-IN
156                 Dallas-Fort Worth-Arlington, TX
157                     Detroit-Warren-Dearborn, MI
158                     Detroit-Warren-Dearborn, MI
159                     Detroit-Warren-Dearborn, MI
160                     Detroit-Warren-Dearborn, MI
161                              Urban Honolulu, HI
162           New York-Newark-Jersey City, NY-NJ-PA
163           New York-Newark-Jersey City, NY-NJ-PA
164                                Raleigh-Cary, NC
165                   San Antonio-New Braunfels, TX
166                     Seattle-Tacoma-Bellevue, WA
167                              Salt Lake City, UT
168                              Salt Lake City, UT
169                              Salt Lake City, UT
170                              Salt Lake City, UT
171            Atlanta-Sandy Springs-Alpharetta, GA
172                     Detroit-Warren-Dearborn, MI
173                     Detroit-Warren-Dearborn, MI
174                     Detroit-Warren-Dearborn, MI
175                     Detroit-Warren-Dearborn, MI
176                     Detroit-Warren-Dearborn, MI
177         Miami-Fort Lauderdale-Pompano Beach, FL
178         Minneapolis-St. Paul-Bloomington, MN-WI
179         Minneapolis-St. Paul-Bloomington, MN-WI
180         Minneapolis-St. Paul-Bloomington, MN-WI
181         Minneapolis-St. Paul-Bloomington, MN-WI
182         Minneapolis-St. Paul-Bloomington, MN-WI
183              Chicago-Naperville-Elgin, IL-IN-WI
184               North Port-Sarasota-Bradenton, FL
185             Tampa-St. Petersburg-Clearwater, FL
186              Los Angeles-Long Beach-Anaheim, CA
187            Atlanta-Sandy Springs-Alpharetta, GA
188            Atlanta-Sandy Springs-Alpharetta, GA
189         Minneapolis-St. Paul-Bloomington, MN-WI
190            Atlanta-Sandy Springs-Alpharetta, GA
191            Atlanta-Sandy Springs-Alpharetta, GA
192            Atlanta-Sandy Springs-Alpharetta, GA
193            Atlanta-Sandy Springs-Alpharetta, GA
194                     Detroit-Warren-Dearborn, MI
195                     Detroit-Warren-Dearborn, MI
196           New York-Newark-Jersey City, NY-NJ-PA
197           New York-Newark-Jersey City, NY-NJ-PA
198         Minneapolis-St. Paul-Bloomington, MN-WI
199            Atlanta-Sandy Springs-Alpharetta, GA
200            Atlanta-Sandy Springs-Alpharetta, GA
201            Atlanta-Sandy Springs-Alpharetta, GA
202            Atlanta-Sandy Springs-Alpharetta, GA
203            Atlanta-Sandy Springs-Alpharetta, GA
204         Minneapolis-St. Paul-Bloomington, MN-WI
205                              Salt Lake City, UT
206            Atlanta-Sandy Springs-Alpharetta, GA
207            Atlanta-Sandy Springs-Alpharetta, GA
208            Atlanta-Sandy Springs-Alpharetta, GA
209         Minneapolis-St. Paul-Bloomington, MN-WI
210            Atlanta-Sandy Springs-Alpharetta, GA
211            Atlanta-Sandy Springs-Alpharetta, GA
212            Atlanta-Sandy Springs-Alpharetta, GA
213            Atlanta-Sandy Springs-Alpharetta, GA
214                Austin-Round Rock-Georgetown, TX
215  Nashville-Davidson--Murfreesboro--Franklin, TN
216                  Boston-Cambridge-Newton, MA-NH
217    Washington-Arlington-Alexandria, DC-VA-MD-WV
218                      Denver-Aurora-Lakewood, CO
219                 Dallas-Fort Worth-Arlington, TX
220                     Detroit-Warren-Dearborn, MI
221                     Detroit-Warren-Dearborn, MI
222                     Detroit-Warren-Dearborn, MI
223           New York-Newark-Jersey City, NY-NJ-PA
224                Las Vegas-Henderson-Paradise, NV
225              Los Angeles-Long Beach-Anaheim, CA
226           New York-Newark-Jersey City, NY-NJ-PA
227           New York-Newark-Jersey City, NY-NJ-PA
228                   Orlando-Kissimmee-Sanford, FL
229                        New Orleans-Metairie, LA
230              Chicago-Naperville-Elgin, IL-IN-WI
231             Portland-Vancouver-Hillsboro, OR-WA
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
233                                Raleigh-Cary, NC
234                       Cape Coral-Fort Myers, FL
235                     Seattle-Tacoma-Bellevue, WA
236             Tampa-St. Petersburg-Clearwater, FL
237                     Detroit-Warren-Dearborn, MI
238                     Detroit-Warren-Dearborn, MI
239         Minneapolis-St. Paul-Bloomington, MN-WI
240         Minneapolis-St. Paul-Bloomington, MN-WI
241            Atlanta-Sandy Springs-Alpharetta, GA
242            Atlanta-Sandy Springs-Alpharetta, GA
243                              Salt Lake City, UT
244                              Salt Lake City, UT
245            Atlanta-Sandy Springs-Alpharetta, GA
246         Minneapolis-St. Paul-Bloomington, MN-WI
247                              Salt Lake City, UT
248            Atlanta-Sandy Springs-Alpharetta, GA
249                  Boston-Cambridge-Newton, MA-NH
250                     Detroit-Warren-Dearborn, MI
251           New York-Newark-Jersey City, NY-NJ-PA
252           New York-Newark-Jersey City, NY-NJ-PA
253         Minneapolis-St. Paul-Bloomington, MN-WI
254         Minneapolis-St. Paul-Bloomington, MN-WI
255                     Seattle-Tacoma-Bellevue, WA
256            Atlanta-Sandy Springs-Alpharetta, GA
257            Atlanta-Sandy Springs-Alpharetta, GA
258         Minneapolis-St. Paul-Bloomington, MN-WI
259                     Seattle-Tacoma-Bellevue, WA
260                              Salt Lake City, UT
261                              Salt Lake City, UT
262                              Salt Lake City, UT
263                              Salt Lake City, UT
264            Atlanta-Sandy Springs-Alpharetta, GA
265            Atlanta-Sandy Springs-Alpharetta, GA
266                     Detroit-Warren-Dearborn, MI
267         Minneapolis-St. Paul-Bloomington, MN-WI
268            Atlanta-Sandy Springs-Alpharetta, GA
269           New York-Newark-Jersey City, NY-NJ-PA
270         Minneapolis-St. Paul-Bloomington, MN-WI
271            Atlanta-Sandy Springs-Alpharetta, GA
272            Atlanta-Sandy Springs-Alpharetta, GA
273            Atlanta-Sandy Springs-Alpharetta, GA
274                     Detroit-Warren-Dearborn, MI
275         Miami-Fort Lauderdale-Pompano Beach, FL
276                Las Vegas-Henderson-Paradise, NV
277              Los Angeles-Long Beach-Anaheim, CA
278              Los Angeles-Long Beach-Anaheim, CA
279                   Orlando-Kissimmee-Sanford, FL
280                     Seattle-Tacoma-Bellevue, WA
281            Atlanta-Sandy Springs-Alpharetta, GA
282            Atlanta-Sandy Springs-Alpharetta, GA
283           New York-Newark-Jersey City, NY-NJ-PA
284                     Detroit-Warren-Dearborn, MI
285                     Seattle-Tacoma-Bellevue, WA
286                              Salt Lake City, UT
287                              Salt Lake City, UT
288            Atlanta-Sandy Springs-Alpharetta, GA
289            Atlanta-Sandy Springs-Alpharetta, GA
290                     Detroit-Warren-Dearborn, MI
291                     Detroit-Warren-Dearborn, MI
292                Las Vegas-Henderson-Paradise, NV
293              Los Angeles-Long Beach-Anaheim, CA
294         Minneapolis-St. Paul-Bloomington, MN-WI
295                       Phoenix-Mesa-Chandler, AZ
296              San Diego-Chula Vista-Carlsbad, CA
297                              Salt Lake City, UT
298              Los Angeles-Long Beach-Anaheim, CA
299                     Seattle-Tacoma-Bellevue, WA
300                              Salt Lake City, UT
301                              Salt Lake City, UT
302         Minneapolis-St. Paul-Bloomington, MN-WI
303                              Salt Lake City, UT
304                                  Boise City, ID
305                 Dallas-Fort Worth-Arlington, TX
306                     Detroit-Warren-Dearborn, MI
307                     Detroit-Warren-Dearborn, MI
308                     Detroit-Warren-Dearborn, MI
309           New York-Newark-Jersey City, NY-NJ-PA
310                      Spokane-Spokane Valley, WA
311           New York-Newark-Jersey City, NY-NJ-PA
312                Las Vegas-Henderson-Paradise, NV
313              Los Angeles-Long Beach-Anaheim, CA
314         Minneapolis-St. Paul-Bloomington, MN-WI
315            Riverside-San Bernardino-Ontario, CA
316              San Diego-Chula Vista-Carlsbad, CA
317              San Francisco-Oakland-Berkeley, CA
318              San Jose-Sunnyvale-Santa Clara, CA
319              Los Angeles-Long Beach-Anaheim, CA
320         Minneapolis-St. Paul-Bloomington, MN-WI
321                              Salt Lake City, UT
322            Atlanta-Sandy Springs-Alpharetta, GA
323         Minneapolis-St. Paul-Bloomington, MN-WI
324                     Seattle-Tacoma-Bellevue, WA
325                              Salt Lake City, UT
326            Atlanta-Sandy Springs-Alpharetta, GA
327         Minneapolis-St. Paul-Bloomington, MN-WI
328            Atlanta-Sandy Springs-Alpharetta, GA
329            Atlanta-Sandy Springs-Alpharetta, GA
330            Atlanta-Sandy Springs-Alpharetta, GA
331                     Detroit-Warren-Dearborn, MI
332                     Detroit-Warren-Dearborn, MI
333           New York-Newark-Jersey City, NY-NJ-PA
334           New York-Newark-Jersey City, NY-NJ-PA
335         Minneapolis-St. Paul-Bloomington, MN-WI
336                Las Vegas-Henderson-Paradise, NV
337            Riverside-San Bernardino-Ontario, CA
338                Las Vegas-Henderson-Paradise, NV
339                   Orlando-Kissimmee-Sanford, FL
340                   Orlando-Kissimmee-Sanford, FL
341                      Denver-Aurora-Lakewood, CO
342                Las Vegas-Henderson-Paradise, NV
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
344                                      Fresno, CA
345              Chicago-Naperville-Elgin, IL-IN-WI
346             Tampa-St. Petersburg-Clearwater, FL
347             Tampa-St. Petersburg-Clearwater, FL
348                           Trenton-Princeton, NJ
349                      Denver-Aurora-Lakewood, CO
350                Las Vegas-Henderson-Paradise, NV
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
352                Las Vegas-Henderson-Paradise, NV
353                Las Vegas-Henderson-Paradise, NV
354                   Orlando-Kissimmee-Sanford, FL
355             Tampa-St. Petersburg-Clearwater, FL
356              San Diego-Chula Vista-Carlsbad, CA
357                     San Juan-Bayamón-Caguas, PR
358                Las Vegas-Henderson-Paradise, NV
359                Las Vegas-Henderson-Paradise, NV
360           New York-Newark-Jersey City, NY-NJ-PA
361    Washington-Arlington-Alexandria, DC-VA-MD-WV
362           New York-Newark-Jersey City, NY-NJ-PA
363              Chicago-Naperville-Elgin, IL-IN-WI
364    Washington-Arlington-Alexandria, DC-VA-MD-WV
365              Chicago-Naperville-Elgin, IL-IN-WI
366              Chicago-Naperville-Elgin, IL-IN-WI
367           New York-Newark-Jersey City, NY-NJ-PA
368                            Cleveland-Elyria, OH
369               Charlotte-Concord-Gastonia, NC-SC
370    Washington-Arlington-Alexandria, DC-VA-MD-WV
371                       Greensboro-High Point, NC
372                Indianapolis-Carmel-Anderson, IN
373                                   Rochester, NY
374    Washington-Arlington-Alexandria, DC-VA-MD-WV
375           New York-Newark-Jersey City, NY-NJ-PA
376              Chicago-Naperville-Elgin, IL-IN-WI
377                 Hilton Head Island-Bluffton, SC
378                Indianapolis-Carmel-Anderson, IN
379    Washington-Arlington-Alexandria, DC-VA-MD-WV
380              Chicago-Naperville-Elgin, IL-IN-WI
381              Chicago-Naperville-Elgin, IL-IN-WI
382              Chicago-Naperville-Elgin, IL-IN-WI
383           New York-Newark-Jersey City, NY-NJ-PA
384           New York-Newark-Jersey City, NY-NJ-PA
385    Washington-Arlington-Alexandria, DC-VA-MD-WV
386    Washington-Arlington-Alexandria, DC-VA-MD-WV
387           New York-Newark-Jersey City, NY-NJ-PA
388           New York-Newark-Jersey City, NY-NJ-PA
389           New York-Newark-Jersey City, NY-NJ-PA
390              Chicago-Naperville-Elgin, IL-IN-WI
391              Chicago-Naperville-Elgin, IL-IN-WI
392           New York-Newark-Jersey City, NY-NJ-PA
393           New York-Newark-Jersey City, NY-NJ-PA
394    Washington-Arlington-Alexandria, DC-VA-MD-WV
395              Chicago-Naperville-Elgin, IL-IN-WI
396              Chicago-Naperville-Elgin, IL-IN-WI
397              Chicago-Naperville-Elgin, IL-IN-WI
398              Chicago-Naperville-Elgin, IL-IN-WI
399               Charlotte-Concord-Gastonia, NC-SC
400         Miami-Fort Lauderdale-Pompano Beach, FL
401              Chicago-Naperville-Elgin, IL-IN-WI
402  Nashville-Davidson--Murfreesboro--Franklin, TN
403                            Cincinnati, OH-KY-IN
404                               Oklahoma City, OK
405              Chicago-Naperville-Elgin, IL-IN-WI
406                Austin-Round Rock-Georgetown, TX
407              Chicago-Naperville-Elgin, IL-IN-WI
408              Chicago-Naperville-Elgin, IL-IN-WI
409              Chicago-Naperville-Elgin, IL-IN-WI
410              Chicago-Naperville-Elgin, IL-IN-WI
411                 Dallas-Fort Worth-Arlington, TX
412              Chicago-Naperville-Elgin, IL-IN-WI
413                 Dallas-Fort Worth-Arlington, TX
414                 Dallas-Fort Worth-Arlington, TX
415                 Dallas-Fort Worth-Arlington, TX
416              Chicago-Naperville-Elgin, IL-IN-WI
417    Washington-Arlington-Alexandria, DC-VA-MD-WV
418    Washington-Arlington-Alexandria, DC-VA-MD-WV
419         Miami-Fort Lauderdale-Pompano Beach, FL
420         Miami-Fort Lauderdale-Pompano Beach, FL
421         Miami-Fort Lauderdale-Pompano Beach, FL
422              Chicago-Naperville-Elgin, IL-IN-WI
423                 Dallas-Fort Worth-Arlington, TX
424                     Detroit-Warren-Dearborn, MI
425                               Memphis, TN-MS-AR
426                                Lake Charles, LA
427                                    Montrose, CO
428                 Dallas-Fort Worth-Arlington, TX
429              Chicago-Naperville-Elgin, IL-IN-WI
430                 Dallas-Fort Worth-Arlington, TX
431              Chicago-Naperville-Elgin, IL-IN-WI
432              Chicago-Naperville-Elgin, IL-IN-WI
433                 Dallas-Fort Worth-Arlington, TX
434              Chicago-Naperville-Elgin, IL-IN-WI
435                 Dallas-Fort Worth-Arlington, TX
436                 Dallas-Fort Worth-Arlington, TX
437                 Dallas-Fort Worth-Arlington, TX
438                 Dallas-Fort Worth-Arlington, TX
439                 Dallas-Fort Worth-Arlington, TX
440               Charlotte-Concord-Gastonia, NC-SC
441         Miami-Fort Lauderdale-Pompano Beach, FL
442              Chicago-Naperville-Elgin, IL-IN-WI
443              Chicago-Naperville-Elgin, IL-IN-WI
444              Chicago-Naperville-Elgin, IL-IN-WI
445                 Dallas-Fort Worth-Arlington, TX
446                 Dallas-Fort Worth-Arlington, TX
447                 Dallas-Fort Worth-Arlington, TX
448                 Dallas-Fort Worth-Arlington, TX
449                 Dallas-Fort Worth-Arlington, TX
450               Charlotte-Concord-Gastonia, NC-SC
451              Chicago-Naperville-Elgin, IL-IN-WI
452                 Dallas-Fort Worth-Arlington, TX
453              Chicago-Naperville-Elgin, IL-IN-WI
454                                  Pittsburgh, PA
455                 Dallas-Fort Worth-Arlington, TX
456              Chicago-Naperville-Elgin, IL-IN-WI
457                 Dallas-Fort Worth-Arlington, TX
458              Chicago-Naperville-Elgin, IL-IN-WI
459              Chicago-Naperville-Elgin, IL-IN-WI
460                 Dallas-Fort Worth-Arlington, TX
461              Chicago-Naperville-Elgin, IL-IN-WI
462                Austin-Round Rock-Georgetown, TX
463                            Cincinnati, OH-KY-IN
464                                Raleigh-Cary, NC
465              Chicago-Naperville-Elgin, IL-IN-WI
466              Chicago-Naperville-Elgin, IL-IN-WI
467                 Dallas-Fort Worth-Arlington, TX
468              Chicago-Naperville-Elgin, IL-IN-WI
469         Miami-Fort Lauderdale-Pompano Beach, FL
470         Miami-Fort Lauderdale-Pompano Beach, FL
471         Miami-Fort Lauderdale-Pompano Beach, FL
472                 Dallas-Fort Worth-Arlington, TX
473                 Dallas-Fort Worth-Arlington, TX
474              Chicago-Naperville-Elgin, IL-IN-WI
475                 Dallas-Fort Worth-Arlington, TX
476                 Dallas-Fort Worth-Arlington, TX
477         Miami-Fort Lauderdale-Pompano Beach, FL
478              Chicago-Naperville-Elgin, IL-IN-WI
479                 Dallas-Fort Worth-Arlington, TX
480                 Dallas-Fort Worth-Arlington, TX
481                 Dallas-Fort Worth-Arlington, TX
482         Miami-Fort Lauderdale-Pompano Beach, FL
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
484                       Cape Coral-Fort Myers, FL
485           New York-Newark-Jersey City, NY-NJ-PA
486         Miami-Fort Lauderdale-Pompano Beach, FL
487            Houston-The Woodlands-Sugar Land, TX
488                Las Vegas-Henderson-Paradise, NV
489                        New Orleans-Metairie, LA
490              Los Angeles-Long Beach-Anaheim, CA
491             Tampa-St. Petersburg-Clearwater, FL
492         Miami-Fort Lauderdale-Pompano Beach, FL
493                Las Vegas-Henderson-Paradise, NV
494              Los Angeles-Long Beach-Anaheim, CA
495           New York-Newark-Jersey City, NY-NJ-PA
496                   Baltimore-Columbia-Towson, MD
497         Miami-Fort Lauderdale-Pompano Beach, FL
498                Las Vegas-Henderson-Paradise, NV
499                     San Juan-Bayamón-Caguas, PR
500             Tampa-St. Petersburg-Clearwater, FL
501                Las Vegas-Henderson-Paradise, NV
502         Miami-Fort Lauderdale-Pompano Beach, FL
503         Miami-Fort Lauderdale-Pompano Beach, FL
504                Las Vegas-Henderson-Paradise, NV
505                        New Orleans-Metairie, LA
506             Tampa-St. Petersburg-Clearwater, FL
507                  Boston-Cambridge-Newton, MA-NH
508                Las Vegas-Henderson-Paradise, NV
509                Las Vegas-Henderson-Paradise, NV
510                       Cape Coral-Fort Myers, FL
511             Tampa-St. Petersburg-Clearwater, FL
512                   Orlando-Kissimmee-Sanford, FL
513                   Orlando-Kissimmee-Sanford, FL
514                   Orlando-Kissimmee-Sanford, FL
515            Houston-The Woodlands-Sugar Land, TX
516         Miami-Fort Lauderdale-Pompano Beach, FL
517                Las Vegas-Henderson-Paradise, NV
518                        New Orleans-Metairie, LA
519              Chicago-Naperville-Elgin, IL-IN-WI
520             Tampa-St. Petersburg-Clearwater, FL
521                Las Vegas-Henderson-Paradise, NV
522  Nashville-Davidson--Murfreesboro--Franklin, TN
523         Miami-Fort Lauderdale-Pompano Beach, FL
524            Houston-The Woodlands-Sugar Land, TX
525                   Orlando-Kissimmee-Sanford, FL
526                Austin-Round Rock-Georgetown, TX
527  Nashville-Davidson--Murfreesboro--Franklin, TN
528                  Boston-Cambridge-Newton, MA-NH
529                   Baltimore-Columbia-Towson, MD
530                      Denver-Aurora-Lakewood, CO
531           New York-Newark-Jersey City, NY-NJ-PA
532                Indianapolis-Carmel-Anderson, IN
533                Las Vegas-Henderson-Paradise, NV
534           New York-Newark-Jersey City, NY-NJ-PA
535           New York-Newark-Jersey City, NY-NJ-PA
536                Las Vegas-Henderson-Paradise, NV
537         Miami-Fort Lauderdale-Pompano Beach, FL
538                Las Vegas-Henderson-Paradise, NV
539             Tampa-St. Petersburg-Clearwater, FL
540  Nashville-Davidson--Murfreesboro--Franklin, TN
541                  Boston-Cambridge-Newton, MA-NH
542                     Detroit-Warren-Dearborn, MI
543                   Orlando-Kissimmee-Sanford, FL
544                        New Orleans-Metairie, LA
545                                  Pittsburgh, PA
546                     Seattle-Tacoma-Bellevue, WA
547         Miami-Fort Lauderdale-Pompano Beach, FL
548                              Kansas City, MO-KS
549                        New Orleans-Metairie, LA
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
551              Louisville/Jefferson County, KY-IN
552                   Orlando-Kissimmee-Sanford, FL
553                       Cape Coral-Fort Myers, FL
554                Las Vegas-Henderson-Paradise, NV
555              Los Angeles-Long Beach-Anaheim, CA
556  Nashville-Davidson--Murfreesboro--Franklin, TN
557                           Aguadilla-Isabela, PR
558               Charlotte-Concord-Gastonia, NC-SC
559                Las Vegas-Henderson-Paradise, NV
560                                  Pittsburgh, PA
561                     San Juan-Bayamón-Caguas, PR
562                Las Vegas-Henderson-Paradise, NV
563         Miami-Fort Lauderdale-Pompano Beach, FL
564                Las Vegas-Henderson-Paradise, NV
565                Las Vegas-Henderson-Paradise, NV
566                Las Vegas-Henderson-Paradise, NV
567                   Orlando-Kissimmee-Sanford, FL
568                        New Orleans-Metairie, LA
569                       Cape Coral-Fort Myers, FL
570                Las Vegas-Henderson-Paradise, NV
571              Los Angeles-Long Beach-Anaheim, CA
572                   Orlando-Kissimmee-Sanford, FL
573              Chicago-Naperville-Elgin, IL-IN-WI
574                  Boston-Cambridge-Newton, MA-NH
575             Tampa-St. Petersburg-Clearwater, FL
576         Miami-Fort Lauderdale-Pompano Beach, FL
577                  Boston-Cambridge-Newton, MA-NH
578                   Baltimore-Columbia-Towson, MD
579                                    Columbus, OH
580                Las Vegas-Henderson-Paradise, NV
581               Charlotte-Concord-Gastonia, NC-SC
582               Charlotte-Concord-Gastonia, NC-SC
583    Washington-Arlington-Alexandria, DC-VA-MD-WV
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
585    Washington-Arlington-Alexandria, DC-VA-MD-WV
586               Charlotte-Concord-Gastonia, NC-SC
587               Charlotte-Concord-Gastonia, NC-SC
588               Charlotte-Concord-Gastonia, NC-SC
589               Charlotte-Concord-Gastonia, NC-SC
590               Charlotte-Concord-Gastonia, NC-SC
591               Charlotte-Concord-Gastonia, NC-SC
592    Washington-Arlington-Alexandria, DC-VA-MD-WV
593    Washington-Arlington-Alexandria, DC-VA-MD-WV
594    Washington-Arlington-Alexandria, DC-VA-MD-WV
595               Charlotte-Concord-Gastonia, NC-SC
596               Charlotte-Concord-Gastonia, NC-SC
597               Charlotte-Concord-Gastonia, NC-SC
598               Charlotte-Concord-Gastonia, NC-SC
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
600               Charlotte-Concord-Gastonia, NC-SC
601               Allentown-Bethlehem-Easton, PA-NJ
602  Nashville-Davidson--Murfreesboro--Franklin, TN
603           New York-Newark-Jersey City, NY-NJ-PA
604    Washington-Arlington-Alexandria, DC-VA-MD-WV
605                                      Peoria, IL
606               Charlotte-Concord-Gastonia, NC-SC
607               Charlotte-Concord-Gastonia, NC-SC
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
609               Charlotte-Concord-Gastonia, NC-SC
610               Charlotte-Concord-Gastonia, NC-SC
611               Charlotte-Concord-Gastonia, NC-SC
612               Charlotte-Concord-Gastonia, NC-SC
613               Charlotte-Concord-Gastonia, NC-SC
614    Washington-Arlington-Alexandria, DC-VA-MD-WV
615               Charlotte-Concord-Gastonia, NC-SC
616                                     Jackson, MS
617                                Jacksonville, FL
618                        New Orleans-Metairie, LA
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
620                                  Montgomery, AL
621               Charlotte-Concord-Gastonia, NC-SC
622    Washington-Arlington-Alexandria, DC-VA-MD-WV
623    Washington-Arlington-Alexandria, DC-VA-MD-WV
624               Charlotte-Concord-Gastonia, NC-SC
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
627               Charlotte-Concord-Gastonia, NC-SC
628               Charlotte-Concord-Gastonia, NC-SC
629               Charlotte-Concord-Gastonia, NC-SC
630               Charlotte-Concord-Gastonia, NC-SC
631               Charlotte-Concord-Gastonia, NC-SC
632               Charlotte-Concord-Gastonia, NC-SC
633               Charlotte-Concord-Gastonia, NC-SC
634               Charlotte-Concord-Gastonia, NC-SC
635               Charlotte-Concord-Gastonia, NC-SC
636    Washington-Arlington-Alexandria, DC-VA-MD-WV
637    Washington-Arlington-Alexandria, DC-VA-MD-WV
638               Charlotte-Concord-Gastonia, NC-SC
639               Charlotte-Concord-Gastonia, NC-SC
640               Charlotte-Concord-Gastonia, NC-SC
641    Washington-Arlington-Alexandria, DC-VA-MD-WV
642    Washington-Arlington-Alexandria, DC-VA-MD-WV
643               Charlotte-Concord-Gastonia, NC-SC
644               Charlotte-Concord-Gastonia, NC-SC
645               Charlotte-Concord-Gastonia, NC-SC
646               Charlotte-Concord-Gastonia, NC-SC
647               Charlotte-Concord-Gastonia, NC-SC
648               Charlotte-Concord-Gastonia, NC-SC
649               Charlotte-Concord-Gastonia, NC-SC
650    Washington-Arlington-Alexandria, DC-VA-MD-WV
651    Washington-Arlington-Alexandria, DC-VA-MD-WV
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
654               Charlotte-Concord-Gastonia, NC-SC
655               Charlotte-Concord-Gastonia, NC-SC
656               Charlotte-Concord-Gastonia, NC-SC
657               Charlotte-Concord-Gastonia, NC-SC
658               Charlotte-Concord-Gastonia, NC-SC
659               Charlotte-Concord-Gastonia, NC-SC
660               Charlotte-Concord-Gastonia, NC-SC
661               Charlotte-Concord-Gastonia, NC-SC
662               Charlotte-Concord-Gastonia, NC-SC
663               Charlotte-Concord-Gastonia, NC-SC
664    Washington-Arlington-Alexandria, DC-VA-MD-WV
665               Charlotte-Concord-Gastonia, NC-SC
666               Charlotte-Concord-Gastonia, NC-SC
667    Washington-Arlington-Alexandria, DC-VA-MD-WV
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
669  Nashville-Davidson--Murfreesboro--Franklin, TN
670                 Charleston-North Charleston, SC
671    Washington-Arlington-Alexandria, DC-VA-MD-WV
672                                  Wilmington, NC
673                                Jacksonville, FL
674         Minneapolis-St. Paul-Bloomington, MN-WI
675                                Raleigh-Cary, NC
676               Charlotte-Concord-Gastonia, NC-SC
677               Charlotte-Concord-Gastonia, NC-SC
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
683               Charlotte-Concord-Gastonia, NC-SC
684               Charlotte-Concord-Gastonia, NC-SC
685    Washington-Arlington-Alexandria, DC-VA-MD-WV
686    Washington-Arlington-Alexandria, DC-VA-MD-WV
687    Washington-Arlington-Alexandria, DC-VA-MD-WV
688    Washington-Arlington-Alexandria, DC-VA-MD-WV
689              Los Angeles-Long Beach-Anaheim, CA
690                      Denver-Aurora-Lakewood, CO
691              Chicago-Naperville-Elgin, IL-IN-WI
692              Chicago-Naperville-Elgin, IL-IN-WI
693              Chicago-Naperville-Elgin, IL-IN-WI
694              Los Angeles-Long Beach-Anaheim, CA
695              San Diego-Chula Vista-Carlsbad, CA
696                      Denver-Aurora-Lakewood, CO
697              Chicago-Naperville-Elgin, IL-IN-WI
698              Chicago-Naperville-Elgin, IL-IN-WI
699                      Denver-Aurora-Lakewood, CO
700              San Francisco-Oakland-Berkeley, CA
701                      Denver-Aurora-Lakewood, CO
702              Chicago-Naperville-Elgin, IL-IN-WI
703                      Denver-Aurora-Lakewood, CO
704            Houston-The Woodlands-Sugar Land, TX
705                      Spokane-Spokane Valley, WA
706              Los Angeles-Long Beach-Anaheim, CA
707             Portland-Vancouver-Hillsboro, OR-WA
708                     Seattle-Tacoma-Bellevue, WA
709              San Francisco-Oakland-Berkeley, CA
710              San Jose-Sunnyvale-Santa Clara, CA
711                     Seattle-Tacoma-Bellevue, WA
712                              Salt Lake City, UT
713                      Denver-Aurora-Lakewood, CO
714                       Phoenix-Mesa-Chandler, AZ
715                       Phoenix-Mesa-Chandler, AZ
716             Portland-Vancouver-Hillsboro, OR-WA
717              San Francisco-Oakland-Berkeley, CA
718              Los Angeles-Long Beach-Anaheim, CA
719              Chicago-Naperville-Elgin, IL-IN-WI
720                      Denver-Aurora-Lakewood, CO
721              Chicago-Naperville-Elgin, IL-IN-WI
722                 Dallas-Fort Worth-Arlington, TX
723                      Denver-Aurora-Lakewood, CO
724                      Denver-Aurora-Lakewood, CO
725              Los Angeles-Long Beach-Anaheim, CA
726                      Denver-Aurora-Lakewood, CO
727              Los Angeles-Long Beach-Anaheim, CA
728                Austin-Round Rock-Georgetown, TX
729                                  Boise City, ID
730                                     Bozeman, MT
731                  Des Moines-West Des Moines, IA
732                               Memphis, TN-MS-AR
733                     Omaha-Council Bluffs, NE-IA
734                      Denver-Aurora-Lakewood, CO
735                      Denver-Aurora-Lakewood, CO
736         Minneapolis-St. Paul-Bloomington, MN-WI
737                      Denver-Aurora-Lakewood, CO
738                      Denver-Aurora-Lakewood, CO
739              Chicago-Naperville-Elgin, IL-IN-WI
740              San Francisco-Oakland-Berkeley, CA
741              San Francisco-Oakland-Berkeley, CA
742                       Phoenix-Mesa-Chandler, AZ
743             Portland-Vancouver-Hillsboro, OR-WA
744              San Diego-Chula Vista-Carlsbad, CA
745                     Seattle-Tacoma-Bellevue, WA
746              San Francisco-Oakland-Berkeley, CA
747              San Francisco-Oakland-Berkeley, CA
748         Minneapolis-St. Paul-Bloomington, MN-WI
749                              Salt Lake City, UT
750              Chicago-Naperville-Elgin, IL-IN-WI
751              Chicago-Naperville-Elgin, IL-IN-WI
752                     Detroit-Warren-Dearborn, MI
753                                  Boise City, ID
754                                  Boise City, ID
755              Los Angeles-Long Beach-Anaheim, CA
756                     Seattle-Tacoma-Bellevue, WA
757              San Francisco-Oakland-Berkeley, CA
758            Houston-The Woodlands-Sugar Land, TX
759            Houston-The Woodlands-Sugar Land, TX
760            Houston-The Woodlands-Sugar Land, TX
761              Chicago-Naperville-Elgin, IL-IN-WI
762                      Denver-Aurora-Lakewood, CO
763                     Detroit-Warren-Dearborn, MI
764         Minneapolis-St. Paul-Bloomington, MN-WI
765                     Detroit-Warren-Dearborn, MI
766                                     El Paso, TX
767                              Salt Lake City, UT
768                      Denver-Aurora-Lakewood, CO
769                      Denver-Aurora-Lakewood, CO
770              Chicago-Naperville-Elgin, IL-IN-WI
771    Washington-Arlington-Alexandria, DC-VA-MD-WV
772              Los Angeles-Long Beach-Anaheim, CA
773                       Phoenix-Mesa-Chandler, AZ
774                                      Tucson, AZ
775                                  Boise City, ID
776                                     Bozeman, MT
777                      Spokane-Spokane Valley, WA
778                         Santa Rosa-Petaluma, CA
779              San Jose-Sunnyvale-Santa Clara, CA
780                            Glenwood Springs, CO
781            Houston-The Woodlands-Sugar Land, TX
782            Houston-The Woodlands-Sugar Land, TX
783              Chicago-Naperville-Elgin, IL-IN-WI
784              Chicago-Naperville-Elgin, IL-IN-WI
785                 Dallas-Fort Worth-Arlington, TX
786              Chicago-Naperville-Elgin, IL-IN-WI
787                       Phoenix-Mesa-Chandler, AZ
788              San Francisco-Oakland-Berkeley, CA
789                      Denver-Aurora-Lakewood, CO
790                      Denver-Aurora-Lakewood, CO
791                      Denver-Aurora-Lakewood, CO
792              San Diego-Chula Vista-Carlsbad, CA
793         Minneapolis-St. Paul-Bloomington, MN-WI
794                                    Appleton, WI
795    Washington-Arlington-Alexandria, DC-VA-MD-WV
796                      Denver-Aurora-Lakewood, CO
797              Chicago-Naperville-Elgin, IL-IN-WI
798             Portland-Vancouver-Hillsboro, OR-WA
799                 Dallas-Fort Worth-Arlington, TX
800              Los Angeles-Long Beach-Anaheim, CA
801              Chicago-Naperville-Elgin, IL-IN-WI
802                      Denver-Aurora-Lakewood, CO
803            Houston-The Woodlands-Sugar Land, TX
804              Los Angeles-Long Beach-Anaheim, CA
805                     Detroit-Warren-Dearborn, MI
806         Minneapolis-St. Paul-Bloomington, MN-WI
807                       Phoenix-Mesa-Chandler, AZ
808                       Phoenix-Mesa-Chandler, AZ
809              San Francisco-Oakland-Berkeley, CA
810                            Cleveland-Elyria, OH
811                                    Columbia, MO
812                                     Wichita, KS
813                                 Spartanburg, SC
814                                   Knoxville, TN
815                     Detroit-Warren-Dearborn, MI
816              Los Angeles-Long Beach-Anaheim, CA
817                                      Fresno, CA
818                                     Medford, OR
819              San Francisco-Oakland-Berkeley, CA
820              San Diego-Chula Vista-Carlsbad, CA
821              San Francisco-Oakland-Berkeley, CA
822                 Sacramento-Roseville-Folsom, CA
823              Los Angeles-Long Beach-Anaheim, CA
824                     Seattle-Tacoma-Bellevue, WA
825              San Francisco-Oakland-Berkeley, CA
826                                      Fresno, CA
827                      Denver-Aurora-Lakewood, CO
828                     Detroit-Warren-Dearborn, MI
829              Chicago-Naperville-Elgin, IL-IN-WI
830            Houston-The Woodlands-Sugar Land, TX
831                       Phoenix-Mesa-Chandler, AZ
832              San Jose-Sunnyvale-Santa Clara, CA
833                              Salt Lake City, UT
834                     Detroit-Warren-Dearborn, MI
835                      Denver-Aurora-Lakewood, CO
836                       Phoenix-Mesa-Chandler, AZ
837                     Seattle-Tacoma-Bellevue, WA
838                              Salt Lake City, UT
839                      Denver-Aurora-Lakewood, CO
840                      Denver-Aurora-Lakewood, CO
841                      Denver-Aurora-Lakewood, CO
842                     Seattle-Tacoma-Bellevue, WA
843                       Phoenix-Mesa-Chandler, AZ
844                 Sacramento-Roseville-Folsom, CA
845                Austin-Round Rock-Georgetown, TX
846                                      Fresno, CA
847                                     Salinas, CA
848             Portland-Vancouver-Hillsboro, OR-WA
849              San Jose-Sunnyvale-Santa Clara, CA
850                         Santa Rosa-Petaluma, CA
851              Los Angeles-Long Beach-Anaheim, CA
852              Los Angeles-Long Beach-Anaheim, CA
853              Los Angeles-Long Beach-Anaheim, CA
854                       Phoenix-Mesa-Chandler, AZ
855              San Francisco-Oakland-Berkeley, CA
856                     Detroit-Warren-Dearborn, MI
857             Portland-Vancouver-Hillsboro, OR-WA
858         Minneapolis-St. Paul-Bloomington, MN-WI
859              Los Angeles-Long Beach-Anaheim, CA
860                                  Boise City, ID
861                                      Fresno, CA
862                      Spokane-Spokane Valley, WA
863              San Jose-Sunnyvale-Santa Clara, CA
864            Riverside-San Bernardino-Ontario, CA
865                 Dallas-Fort Worth-Arlington, TX
866             Portland-Vancouver-Hillsboro, OR-WA
867                       Phoenix-Mesa-Chandler, AZ
868              Los Angeles-Long Beach-Anaheim, CA
869                                  Boise City, ID
870                 Dallas-Fort Worth-Arlington, TX
871                      Spokane-Spokane Valley, WA
872                Austin-Round Rock-Georgetown, TX
873                      Spokane-Spokane Valley, WA
874              Los Angeles-Long Beach-Anaheim, CA
875             Portland-Vancouver-Hillsboro, OR-WA
876              San Diego-Chula Vista-Carlsbad, CA
877                      Denver-Aurora-Lakewood, CO
878                 Dallas-Fort Worth-Arlington, TX
879              San Diego-Chula Vista-Carlsbad, CA
880              Los Angeles-Long Beach-Anaheim, CA
881                      Denver-Aurora-Lakewood, CO
882                      Denver-Aurora-Lakewood, CO
883              San Francisco-Oakland-Berkeley, CA
884              San Francisco-Oakland-Berkeley, CA
885              San Francisco-Oakland-Berkeley, CA
886                                  Boise City, ID
887             Portland-Vancouver-Hillsboro, OR-WA
888              San Diego-Chula Vista-Carlsbad, CA
889                     Seattle-Tacoma-Bellevue, WA
890                     Seattle-Tacoma-Bellevue, WA
891              San Francisco-Oakland-Berkeley, CA
892              San Francisco-Oakland-Berkeley, CA
893              Chicago-Naperville-Elgin, IL-IN-WI
894              Chicago-Naperville-Elgin, IL-IN-WI
895                       Phoenix-Mesa-Chandler, AZ
896              Los Angeles-Long Beach-Anaheim, CA
897             Portland-Vancouver-Hillsboro, OR-WA
898              San Diego-Chula Vista-Carlsbad, CA
899              Chicago-Naperville-Elgin, IL-IN-WI
900                     Detroit-Warren-Dearborn, MI
901              Los Angeles-Long Beach-Anaheim, CA
902                     Seattle-Tacoma-Bellevue, WA
903            Houston-The Woodlands-Sugar Land, TX
904              San Francisco-Oakland-Berkeley, CA
905             Portland-Vancouver-Hillsboro, OR-WA
906                     Seattle-Tacoma-Bellevue, WA
907                     Seattle-Tacoma-Bellevue, WA
908                     Seattle-Tacoma-Bellevue, WA
909                                     Pullman, WA
910                 Sacramento-Roseville-Folsom, CA
911                     Seattle-Tacoma-Bellevue, WA
912                     Seattle-Tacoma-Bellevue, WA
913                     Seattle-Tacoma-Bellevue, WA
914                     Seattle-Tacoma-Bellevue, WA
915                     Seattle-Tacoma-Bellevue, WA
916                     Seattle-Tacoma-Bellevue, WA
917                     Seattle-Tacoma-Bellevue, WA
918                     Seattle-Tacoma-Bellevue, WA
919             Portland-Vancouver-Hillsboro, OR-WA
920             Portland-Vancouver-Hillsboro, OR-WA
921                     Seattle-Tacoma-Bellevue, WA
922              San Francisco-Oakland-Berkeley, CA
923                     Seattle-Tacoma-Bellevue, WA
924                     Seattle-Tacoma-Bellevue, WA
925                     Seattle-Tacoma-Bellevue, WA
926              San Francisco-Oakland-Berkeley, CA
927              Los Angeles-Long Beach-Anaheim, CA
928             Portland-Vancouver-Hillsboro, OR-WA
929                     Seattle-Tacoma-Bellevue, WA
930                                  Boise City, ID
931                      Spokane-Spokane Valley, WA
932                Las Vegas-Henderson-Paradise, NV
933              Los Angeles-Long Beach-Anaheim, CA
934                      Spokane-Spokane Valley, WA
935              San Jose-Sunnyvale-Santa Clara, CA
936              San Francisco-Oakland-Berkeley, CA
937                     Seattle-Tacoma-Bellevue, WA
938                     Seattle-Tacoma-Bellevue, WA
939              Los Angeles-Long Beach-Anaheim, CA
940                     Seattle-Tacoma-Bellevue, WA
941                     Seattle-Tacoma-Bellevue, WA
942                                     Bozeman, MT
943                          Eugene-Springfield, OR
944                                   Kalispell, MT
945                                 Great Falls, MT
946                                 Idaho Falls, ID
947                                     Medford, OR
948                                     Salinas, CA
949                                    Missoula, MT
950              San Francisco-Oakland-Berkeley, CA
951             Portland-Vancouver-Hillsboro, OR-WA
952                                     Pullman, WA
953                                     Redding, CA
954                                        Bend, OR
955                                        Reno, NV
956                 Sacramento-Roseville-Folsom, CA
957                Las Vegas-Henderson-Paradise, NV
958                                  Boise City, ID
959                         Santa Rosa-Petaluma, CA
960                     Seattle-Tacoma-Bellevue, WA
961                     Seattle-Tacoma-Bellevue, WA
962            Houston-The Woodlands-Sugar Land, TX
963              Chicago-Naperville-Elgin, IL-IN-WI
964              Chicago-Naperville-Elgin, IL-IN-WI
965                      Denver-Aurora-Lakewood, CO
966                      Denver-Aurora-Lakewood, CO
967    Washington-Arlington-Alexandria, DC-VA-MD-WV
968              Chicago-Naperville-Elgin, IL-IN-WI
969              Chicago-Naperville-Elgin, IL-IN-WI
970                  Boston-Cambridge-Newton, MA-NH
971                      Denver-Aurora-Lakewood, CO
972                      Denver-Aurora-Lakewood, CO
973           New York-Newark-Jersey City, NY-NJ-PA
974            Houston-The Woodlands-Sugar Land, TX
975            Houston-The Woodlands-Sugar Land, TX
976            Houston-The Woodlands-Sugar Land, TX
977            Houston-The Woodlands-Sugar Land, TX
978                      Denver-Aurora-Lakewood, CO
979    Washington-Arlington-Alexandria, DC-VA-MD-WV
980    Washington-Arlington-Alexandria, DC-VA-MD-WV
981    Washington-Arlington-Alexandria, DC-VA-MD-WV
982    Washington-Arlington-Alexandria, DC-VA-MD-WV
983    Washington-Arlington-Alexandria, DC-VA-MD-WV
984    Washington-Arlington-Alexandria, DC-VA-MD-WV
985                       College Station-Bryan, TX
986                      Denver-Aurora-Lakewood, CO
987                      Denver-Aurora-Lakewood, CO
988              Chicago-Naperville-Elgin, IL-IN-WI
989                      Denver-Aurora-Lakewood, CO
990                      Denver-Aurora-Lakewood, CO
991           New York-Newark-Jersey City, NY-NJ-PA
992           New York-Newark-Jersey City, NY-NJ-PA
993           New York-Newark-Jersey City, NY-NJ-PA
994           New York-Newark-Jersey City, NY-NJ-PA
995           New York-Newark-Jersey City, NY-NJ-PA
996    Washington-Arlington-Alexandria, DC-VA-MD-WV
997            Houston-The Woodlands-Sugar Land, TX
998              Los Angeles-Long Beach-Anaheim, CA
999              Chicago-Naperville-Elgin, IL-IN-WI
1000             San Francisco-Oakland-Berkeley, CA
1001          New York-Newark-Jersey City, NY-NJ-PA
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV
1003                     Denver-Aurora-Lakewood, CO
1004             Chicago-Naperville-Elgin, IL-IN-WI
1005             Chicago-Naperville-Elgin, IL-IN-WI
1006             San Francisco-Oakland-Berkeley, CA
1007                     Denver-Aurora-Lakewood, CO
1008                     Denver-Aurora-Lakewood, CO
1009             Chicago-Naperville-Elgin, IL-IN-WI
1010             Chicago-Naperville-Elgin, IL-IN-WI
1011                     Denver-Aurora-Lakewood, CO
1012          New York-Newark-Jersey City, NY-NJ-PA
1013        Miami-Fort Lauderdale-Pompano Beach, FL
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV
1015                     Denver-Aurora-Lakewood, CO
1016             Chicago-Naperville-Elgin, IL-IN-WI
1017             Chicago-Naperville-Elgin, IL-IN-WI
1018                 Boston-Cambridge-Newton, MA-NH
1019          New York-Newark-Jersey City, NY-NJ-PA
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV
1021           Houston-The Woodlands-Sugar Land, TX
1022           Houston-The Woodlands-Sugar Land, TX
1023             Los Angeles-Long Beach-Anaheim, CA
1024             Los Angeles-Long Beach-Anaheim, CA
1025                             Kansas City, MO-KS
1026             Chicago-Naperville-Elgin, IL-IN-WI
1027             Chicago-Naperville-Elgin, IL-IN-WI
1028             Chicago-Naperville-Elgin, IL-IN-WI
1029            Portland-Vancouver-Hillsboro, OR-WA
1030                      Phoenix-Mesa-Chandler, AZ
1031                  San Antonio-New Braunfels, TX
1032                Sacramento-Roseville-Folsom, CA
1033          New York-Newark-Jersey City, NY-NJ-PA
1034             Chicago-Naperville-Elgin, IL-IN-WI
1035             San Francisco-Oakland-Berkeley, CA
1036                           Cleveland-Elyria, OH
1037                           Cleveland-Elyria, OH
1038                           Cleveland-Elyria, OH
1039                     Denver-Aurora-Lakewood, CO
1040                     Denver-Aurora-Lakewood, CO
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV
1042           Houston-The Woodlands-Sugar Land, TX
1043           Houston-The Woodlands-Sugar Land, TX
1044                               Jacksonville, FL
1045                  Orlando-Kissimmee-Sanford, FL
1046        Miami-Fort Lauderdale-Pompano Beach, FL
1047             Chicago-Naperville-Elgin, IL-IN-WI
1048             Chicago-Naperville-Elgin, IL-IN-WI
1049        Miami-Fort Lauderdale-Pompano Beach, FL
1050                      Phoenix-Mesa-Chandler, AZ
1051                               Raleigh-Cary, NC
1052                      Cape Coral-Fort Myers, FL
1053             San Diego-Chula Vista-Carlsbad, CA
1054                                   Savannah, GA
1055             San Francisco-Oakland-Berkeley, CA
1056                    San Juan-Bayamón-Caguas, PR
1057                             Salt Lake City, UT
1058              North Port-Sarasota-Bradenton, FL
1059            Tampa-St. Petersburg-Clearwater, FL
1060                     Denver-Aurora-Lakewood, CO
1061                     Denver-Aurora-Lakewood, CO
1062          New York-Newark-Jersey City, NY-NJ-PA
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV
1064           Houston-The Woodlands-Sugar Land, TX
1065             San Francisco-Oakland-Berkeley, CA
1066                     Denver-Aurora-Lakewood, CO
1067                     Denver-Aurora-Lakewood, CO
1068             Chicago-Naperville-Elgin, IL-IN-WI
1069          New York-Newark-Jersey City, NY-NJ-PA
1070          New York-Newark-Jersey City, NY-NJ-PA
1071          New York-Newark-Jersey City, NY-NJ-PA
1072           Houston-The Woodlands-Sugar Land, TX
1073           Houston-The Woodlands-Sugar Land, TX
1074           Houston-The Woodlands-Sugar Land, TX
1075             San Francisco-Oakland-Berkeley, CA
1076             San Francisco-Oakland-Berkeley, CA
1077             San Francisco-Oakland-Berkeley, CA
1078 Nashville-Davidson--Murfreesboro--Franklin, TN
1079                 Boston-Cambridge-Newton, MA-NH
1080        Miami-Fort Lauderdale-Pompano Beach, FL
1081                               Jacksonville, FL
1082             Los Angeles-Long Beach-Anaheim, CA
1083                  Orlando-Kissimmee-Sanford, FL
1084        Miami-Fort Lauderdale-Pompano Beach, FL
1085                               Raleigh-Cary, NC
1086             San Francisco-Oakland-Berkeley, CA
1087            Tampa-St. Petersburg-Clearwater, FL
1088                     Denver-Aurora-Lakewood, CO
1089                               Jacksonville, FL
1090             Los Angeles-Long Beach-Anaheim, CA
1091          New York-Newark-Jersey City, NY-NJ-PA
1092                       New Orleans-Metairie, LA
1093             Chicago-Naperville-Elgin, IL-IN-WI
1094                      Phoenix-Mesa-Chandler, AZ
1095                      Cape Coral-Fort Myers, FL
1096            Tampa-St. Petersburg-Clearwater, FL
1097                     Denver-Aurora-Lakewood, CO
1098                     Denver-Aurora-Lakewood, CO
1099                     Denver-Aurora-Lakewood, CO
1100          New York-Newark-Jersey City, NY-NJ-PA
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV
1103           Houston-The Woodlands-Sugar Land, TX
1104             San Francisco-Oakland-Berkeley, CA
1105                     Denver-Aurora-Lakewood, CO
1106                     Denver-Aurora-Lakewood, CO
1107          New York-Newark-Jersey City, NY-NJ-PA
1108          New York-Newark-Jersey City, NY-NJ-PA
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV
1111           Houston-The Woodlands-Sugar Land, TX
1112           Houston-The Woodlands-Sugar Land, TX
1113           Houston-The Woodlands-Sugar Land, TX
1114           Houston-The Woodlands-Sugar Land, TX
1115           Houston-The Woodlands-Sugar Land, TX
1116           Houston-The Woodlands-Sugar Land, TX
1117             Chicago-Naperville-Elgin, IL-IN-WI
1118             Chicago-Naperville-Elgin, IL-IN-WI
1119                     Denver-Aurora-Lakewood, CO
1120          New York-Newark-Jersey City, NY-NJ-PA
1121           Houston-The Woodlands-Sugar Land, TX
1122           Houston-The Woodlands-Sugar Land, TX
1123           Houston-The Woodlands-Sugar Land, TX
1124               Las Vegas-Henderson-Paradise, NV
1125                  Orlando-Kissimmee-Sanford, FL
1126             Chicago-Naperville-Elgin, IL-IN-WI
1127                     Denver-Aurora-Lakewood, CO
1128                     Denver-Aurora-Lakewood, CO
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV
1130             Chicago-Naperville-Elgin, IL-IN-WI
1131                     Denver-Aurora-Lakewood, CO
1132             Los Angeles-Long Beach-Anaheim, CA
1133                     Denver-Aurora-Lakewood, CO
1134          New York-Newark-Jersey City, NY-NJ-PA
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV
1136           Houston-The Woodlands-Sugar Land, TX
1137           Houston-The Woodlands-Sugar Land, TX
1138             Chicago-Naperville-Elgin, IL-IN-WI
1139           Houston-The Woodlands-Sugar Land, TX
1140           Houston-The Woodlands-Sugar Land, TX
1141                     Denver-Aurora-Lakewood, CO
1142                     Denver-Aurora-Lakewood, CO
1143                     Denver-Aurora-Lakewood, CO
1144                     Denver-Aurora-Lakewood, CO
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV
1146           Houston-The Woodlands-Sugar Land, TX
1147                     Denver-Aurora-Lakewood, CO
1148                     Denver-Aurora-Lakewood, CO
1149                     Denver-Aurora-Lakewood, CO
1150                     Denver-Aurora-Lakewood, CO
1151                  Baltimore-Columbia-Towson, MD
1152                           Cleveland-Elyria, OH
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV
1154                     Denver-Aurora-Lakewood, CO
1155          New York-Newark-Jersey City, NY-NJ-PA
1156        Miami-Fort Lauderdale-Pompano Beach, FL
1157                      Grand Rapids-Kentwood, MI
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV
1159           Houston-The Woodlands-Sugar Land, TX
1160                                 Pittsburgh, PA
1161                                   Richmond, VA
1162                                  Rochester, NY
1163             San Diego-Chula Vista-Carlsbad, CA
1164                     Denver-Aurora-Lakewood, CO
1165             Chicago-Naperville-Elgin, IL-IN-WI
1166          New York-Newark-Jersey City, NY-NJ-PA
1167                     Denver-Aurora-Lakewood, CO
1168          New York-Newark-Jersey City, NY-NJ-PA
1169             San Francisco-Oakland-Berkeley, CA
1170             San Francisco-Oakland-Berkeley, CA
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV
1172             Chicago-Naperville-Elgin, IL-IN-WI
1173             Chicago-Naperville-Elgin, IL-IN-WI
1174                     Denver-Aurora-Lakewood, CO
1175                     Denver-Aurora-Lakewood, CO
1176             Chicago-Naperville-Elgin, IL-IN-WI
1177             San Francisco-Oakland-Berkeley, CA
1178          New York-Newark-Jersey City, NY-NJ-PA
1179           Houston-The Woodlands-Sugar Land, TX
1180           Houston-The Woodlands-Sugar Land, TX
1181                     Denver-Aurora-Lakewood, CO
1182                     Denver-Aurora-Lakewood, CO
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV
1184             Chicago-Naperville-Elgin, IL-IN-WI
1185             Chicago-Naperville-Elgin, IL-IN-WI
1186             Chicago-Naperville-Elgin, IL-IN-WI
1187               Austin-Round Rock-Georgetown, TX
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV
1189          New York-Newark-Jersey City, NY-NJ-PA
1190        Miami-Fort Lauderdale-Pompano Beach, FL
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV
1193           Houston-The Woodlands-Sugar Land, TX
1194                    Kahului-Wailuku-Lahaina, HI
1195             Chicago-Naperville-Elgin, IL-IN-WI
1196             Chicago-Naperville-Elgin, IL-IN-WI
1197             Chicago-Naperville-Elgin, IL-IN-WI
1198          New York-Newark-Jersey City, NY-NJ-PA
1199           Houston-The Woodlands-Sugar Land, TX
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV
1201                           Cleveland-Elyria, OH
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV
1203           Houston-The Woodlands-Sugar Land, TX
1204           Houston-The Woodlands-Sugar Land, TX
1205                Dallas-Fort Worth-Arlington, TX
1206                Dallas-Fort Worth-Arlington, TX
1207               Las Vegas-Henderson-Paradise, NV
1208               Austin-Round Rock-Georgetown, TX
1209               Las Vegas-Henderson-Paradise, NV
1210                      Phoenix-Mesa-Chandler, AZ
1211                  Baltimore-Columbia-Towson, MD
1212                  Baltimore-Columbia-Towson, MD
1213                  Baltimore-Columbia-Towson, MD
1214                  Baltimore-Columbia-Towson, MD
1215                  Orlando-Kissimmee-Sanford, FL
1216             Chicago-Naperville-Elgin, IL-IN-WI
1217             Chicago-Naperville-Elgin, IL-IN-WI
1218                  Baltimore-Columbia-Towson, MD
1219                  Orlando-Kissimmee-Sanford, FL
1220               Las Vegas-Henderson-Paradise, NV
1221                Dallas-Fort Worth-Arlington, TX
1222                  Baltimore-Columbia-Towson, MD
1223                Dallas-Fort Worth-Arlington, TX
1224                Dallas-Fort Worth-Arlington, TX
1225                Dallas-Fort Worth-Arlington, TX
1226                Dallas-Fort Worth-Arlington, TX
1227                Dallas-Fort Worth-Arlington, TX
1228           Houston-The Woodlands-Sugar Land, TX
1229          New York-Newark-Jersey City, NY-NJ-PA
1230                  Orlando-Kissimmee-Sanford, FL
1231             Chicago-Naperville-Elgin, IL-IN-WI
1232                         Milwaukee-Waukesha, WI
1233                      Phoenix-Mesa-Chandler, AZ
1234                      Phoenix-Mesa-Chandler, AZ
1235                      Phoenix-Mesa-Chandler, AZ
1236                               St. Louis, MO-IL
1237               Austin-Round Rock-Georgetown, TX
1238 Nashville-Davidson--Murfreesboro--Franklin, TN
1239                           Cleveland-Elyria, OH
1240                                Panama City, FL
1241        Miami-Fort Lauderdale-Pompano Beach, FL
1242           Houston-The Woodlands-Sugar Land, TX
1243               Indianapolis-Carmel-Anderson, IN
1244                                    Jackson, MS
1245               Las Vegas-Henderson-Paradise, NV
1246       Little Rock-North Little Rock-Conway, AR
1247                             Kansas City, MO-KS
1248                              Memphis, TN-MS-AR
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1251                      Phoenix-Mesa-Chandler, AZ
1252                                 Pittsburgh, PA
1253                                   Richmond, VA
1254                      Cape Coral-Fort Myers, FL
1255            Tampa-St. Petersburg-Clearwater, FL
1256 Nashville-Davidson--Murfreesboro--Franklin, TN
1257                Dallas-Fort Worth-Arlington, TX
1258                Dallas-Fort Worth-Arlington, TX
1259                Dallas-Fort Worth-Arlington, TX
1260                                    El Paso, TX
1261           Houston-The Woodlands-Sugar Land, TX
1262           Houston-The Woodlands-Sugar Land, TX
1263             Los Angeles-Long Beach-Anaheim, CA
1264             Chicago-Naperville-Elgin, IL-IN-WI
1265                      Phoenix-Mesa-Chandler, AZ
1266                      Phoenix-Mesa-Chandler, AZ
1267                      Phoenix-Mesa-Chandler, AZ
1268             San Diego-Chula Vista-Carlsbad, CA
1269             Los Angeles-Long Beach-Anaheim, CA
1270                  Baltimore-Columbia-Towson, MD
1271                Dallas-Fort Worth-Arlington, TX
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV
1273           Houston-The Woodlands-Sugar Land, TX
1274                      Brownsville-Harlingen, TX
1275             Los Angeles-Long Beach-Anaheim, CA
1276             Los Angeles-Long Beach-Anaheim, CA
1277                             Kansas City, MO-KS
1278             Chicago-Naperville-Elgin, IL-IN-WI
1279        Minneapolis-St. Paul-Bloomington, MN-WI
1280                       New Orleans-Metairie, LA
1281             San Francisco-Oakland-Berkeley, CA
1282                               Raleigh-Cary, NC
1283             Los Angeles-Long Beach-Anaheim, CA
1284                               St. Louis, MO-IL
1285            Tampa-St. Petersburg-Clearwater, FL
1286             Chicago-Naperville-Elgin, IL-IN-WI
1287             Chicago-Naperville-Elgin, IL-IN-WI
1288                  Baltimore-Columbia-Towson, MD
1289                  Orlando-Kissimmee-Sanford, FL
1290                  Baltimore-Columbia-Towson, MD
1291                Dallas-Fort Worth-Arlington, TX
1292           Houston-The Woodlands-Sugar Land, TX
1293                  Orlando-Kissimmee-Sanford, FL
1294             Chicago-Naperville-Elgin, IL-IN-WI
1295            Tampa-St. Petersburg-Clearwater, FL
1296               Las Vegas-Henderson-Paradise, NV
1297               Austin-Round Rock-Georgetown, TX
1298          Hartford-East Hartford-Middletown, CT
1299                Dallas-Fort Worth-Arlington, TX
1300                     Denver-Aurora-Lakewood, CO
1301           Houston-The Woodlands-Sugar Land, TX
1302          New York-Newark-Jersey City, NY-NJ-PA
1303                             Kansas City, MO-KS
1304                  Orlando-Kissimmee-Sanford, FL
1305     Virginia Beach-Norfolk-Newport News, VA-NC
1306                      Phoenix-Mesa-Chandler, AZ
1307                      Cape Coral-Fort Myers, FL
1308             San Jose-Sunnyvale-Santa Clara, CA
1309              North Port-Sarasota-Bradenton, FL
1310            Tampa-St. Petersburg-Clearwater, FL
1311                 Boston-Cambridge-Newton, MA-NH
1312                  Baltimore-Columbia-Towson, MD
1313                Charleston-North Charleston, SC
1314                           Cleveland-Elyria, OH
1315              Charlotte-Concord-Gastonia, NC-SC
1316                                   Columbus, OH
1317                    Detroit-Warren-Dearborn, MI
1318                                Panama City, FL
1319                               Jacksonville, FL
1320             Chicago-Naperville-Elgin, IL-IN-WI
1321        Miami-Fort Lauderdale-Pompano Beach, FL
1322                         Milwaukee-Waukesha, WI
1323                       New Orleans-Metairie, LA
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1325             San Francisco-Oakland-Berkeley, CA
1326             San Francisco-Oakland-Berkeley, CA
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1328                                 Pittsburgh, PA
1329                 Pensacola-Ferry Pass-Brent, FL
1330                               Raleigh-Cary, NC
1331                                   Savannah, GA
1332         Crestview-Fort Walton Beach-Destin, FL
1333                     Denver-Aurora-Lakewood, CO
1334                     Denver-Aurora-Lakewood, CO
1335               Las Vegas-Henderson-Paradise, NV
1336             San Francisco-Oakland-Berkeley, CA
1337                      Phoenix-Mesa-Chandler, AZ
1338             San Diego-Chula Vista-Carlsbad, CA
1339               Las Vegas-Henderson-Paradise, NV
1340 Nashville-Davidson--Murfreesboro--Franklin, TN
1341 Nashville-Davidson--Murfreesboro--Franklin, TN
1342                  Baltimore-Columbia-Towson, MD
1343                  Baltimore-Columbia-Towson, MD
1344                  Baltimore-Columbia-Towson, MD
1345                  Baltimore-Columbia-Towson, MD
1346                  Baltimore-Columbia-Towson, MD
1347                  Baltimore-Columbia-Towson, MD
1348             Chicago-Naperville-Elgin, IL-IN-WI
1349             Chicago-Naperville-Elgin, IL-IN-WI
1350             Chicago-Naperville-Elgin, IL-IN-WI
1351             Chicago-Naperville-Elgin, IL-IN-WI
1352             Chicago-Naperville-Elgin, IL-IN-WI
1353             Chicago-Naperville-Elgin, IL-IN-WI
1354                  Baltimore-Columbia-Towson, MD
1355        Miami-Fort Lauderdale-Pompano Beach, FL
1356                  Orlando-Kissimmee-Sanford, FL
1357             Chicago-Naperville-Elgin, IL-IN-WI
1358                Dallas-Fort Worth-Arlington, TX
1359                Dallas-Fort Worth-Arlington, TX
1360                Dallas-Fort Worth-Arlington, TX
1361                Dallas-Fort Worth-Arlington, TX
1362               Las Vegas-Henderson-Paradise, NV
1363                Sacramento-Roseville-Folsom, CA
1364               Austin-Round Rock-Georgetown, TX
1365                     Denver-Aurora-Lakewood, CO
1366           Houston-The Woodlands-Sugar Land, TX
1367             San Francisco-Oakland-Berkeley, CA
1368             San Jose-Sunnyvale-Santa Clara, CA
1369                          Birmingham-Hoover, AL
1370 Nashville-Davidson--Murfreesboro--Franklin, TN
1371 Nashville-Davidson--Murfreesboro--Franklin, TN
1372                           Cincinnati, OH-KY-IN
1373                      Grand Rapids-Kentwood, MI
1374               Indianapolis-Carmel-Anderson, IN
1375             Chicago-Naperville-Elgin, IL-IN-WI
1376                                   Savannah, GA
1377         Crestview-Fort Walton Beach-Destin, FL
1378          Hartford-East Hartford-Middletown, CT
1379                        Buffalo-Cheektowaga, NY
1380                Charleston-North Charleston, SC
1381                           Cleveland-Elyria, OH
1382        Miami-Fort Lauderdale-Pompano Beach, FL
1383                                Spartanburg, SC
1384           Houston-The Woodlands-Sugar Land, TX
1385          New York-Newark-Jersey City, NY-NJ-PA
1386               Las Vegas-Henderson-Paradise, NV
1387          New York-Newark-Jersey City, NY-NJ-PA
1388             Chicago-Naperville-Elgin, IL-IN-WI
1389        Miami-Fort Lauderdale-Pompano Beach, FL
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1391     Virginia Beach-Norfolk-Newport News, VA-NC
1392                      Phoenix-Mesa-Chandler, AZ
1393                                 Pittsburgh, PA
1394                      Providence-Warwick, RI-MA
1395                    Portland-South Portland, ME
1396                               Raleigh-Cary, NC
1397                                  Rochester, NY
1398                      Cape Coral-Fort Myers, FL
1399             Louisville/Jefferson County, KY-IN
1400                     Denver-Aurora-Lakewood, CO
1401               Las Vegas-Henderson-Paradise, NV
1402 Nashville-Davidson--Murfreesboro--Franklin, TN
1403 Nashville-Davidson--Murfreesboro--Franklin, TN
1404 Nashville-Davidson--Murfreesboro--Franklin, TN
1405                Dallas-Fort Worth-Arlington, TX
1406             Chicago-Naperville-Elgin, IL-IN-WI
1407                               St. Louis, MO-IL
1408 Nashville-Davidson--Murfreesboro--Franklin, TN
1409 Nashville-Davidson--Murfreesboro--Franklin, TN
1410                  Baltimore-Columbia-Towson, MD
1411               Las Vegas-Henderson-Paradise, NV
1412             Chicago-Naperville-Elgin, IL-IN-WI
1413                               St. Louis, MO-IL
1414 Nashville-Davidson--Murfreesboro--Franklin, TN
1415             Chicago-Naperville-Elgin, IL-IN-WI
1416             Chicago-Naperville-Elgin, IL-IN-WI
1417              North Port-Sarasota-Bradenton, FL
1418                               St. Louis, MO-IL
1419 Nashville-Davidson--Murfreesboro--Franklin, TN
1420                  Baltimore-Columbia-Towson, MD
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV
1422               Las Vegas-Henderson-Paradise, NV
1423                      Phoenix-Mesa-Chandler, AZ
1424                               St. Louis, MO-IL
1425            Tampa-St. Petersburg-Clearwater, FL
1426               Las Vegas-Henderson-Paradise, NV
1427               Las Vegas-Henderson-Paradise, NV
1428                      Phoenix-Mesa-Chandler, AZ
1429           Houston-The Woodlands-Sugar Land, TX
1430           Houston-The Woodlands-Sugar Land, TX
1431                     Denver-Aurora-Lakewood, CO
1432             Chicago-Naperville-Elgin, IL-IN-WI
1433                  Baltimore-Columbia-Towson, MD
1434                  Orlando-Kissimmee-Sanford, FL
1435             Chicago-Naperville-Elgin, IL-IN-WI
1436             Chicago-Naperville-Elgin, IL-IN-WI
1437            Tampa-St. Petersburg-Clearwater, FL
1438                                Albuquerque, NM
1439               Austin-Round Rock-Georgetown, TX
1440                          Birmingham-Hoover, AL
1441                     Denver-Aurora-Lakewood, CO
1442                     Denver-Aurora-Lakewood, CO
1443                                    El Paso, TX
1444           Houston-The Woodlands-Sugar Land, TX
1445          New York-Newark-Jersey City, NY-NJ-PA
1446             Los Angeles-Long Beach-Anaheim, CA
1447                  Orlando-Kissimmee-Sanford, FL
1448             San Francisco-Oakland-Berkeley, CA
1449                    Omaha-Council Bluffs, NE-IA
1450             San Jose-Sunnyvale-Santa Clara, CA
1451                             Salt Lake City, UT
1452             Los Angeles-Long Beach-Anaheim, CA
1453                               St. Louis, MO-IL
1454            Tampa-St. Petersburg-Clearwater, FL
1455                                   Amarillo, TX
1456               Austin-Round Rock-Georgetown, TX
1457                                   Columbus, OH
1458                           Colorado Springs, CO
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV
1460                                Panama City, FL
1461        Miami-Fort Lauderdale-Pompano Beach, FL
1462           Houston-The Woodlands-Sugar Land, TX
1463                                    Lubbock, TX
1464       Little Rock-North Little Rock-Conway, AR
1465                                    Midland, TX
1466                             Kansas City, MO-KS
1467             Chicago-Naperville-Elgin, IL-IN-WI
1468        Minneapolis-St. Paul-Bloomington, MN-WI
1469                       New Orleans-Metairie, LA
1470             Chicago-Naperville-Elgin, IL-IN-WI
1471                      Phoenix-Mesa-Chandler, AZ
1472                 Pensacola-Ferry Pass-Brent, FL
1473                  San Antonio-New Braunfels, TX
1474                                      Tulsa, OK
1475         Crestview-Fort Walton Beach-Destin, FL
1476 Nashville-Davidson--Murfreesboro--Franklin, TN
1477 Nashville-Davidson--Murfreesboro--Franklin, TN
1478 Nashville-Davidson--Murfreesboro--Franklin, TN
1479        Miami-Fort Lauderdale-Pompano Beach, FL
1480             Chicago-Naperville-Elgin, IL-IN-WI
1481                               St. Louis, MO-IL
1482                               St. Louis, MO-IL
1483                                   Columbus, OH
1484                Dallas-Fort Worth-Arlington, TX
1485                  Orlando-Kissimmee-Sanford, FL
1486                         Milwaukee-Waukesha, WI
1487                    Omaha-Council Bluffs, NE-IA
1488                      Cape Coral-Fort Myers, FL
1489                               St. Louis, MO-IL
1490            Tampa-St. Petersburg-Clearwater, FL
1491                          Birmingham-Hoover, AL
1492 Nashville-Davidson--Murfreesboro--Franklin, TN
1493             Los Angeles-Long Beach-Anaheim, CA
1494                  Baltimore-Columbia-Towson, MD
1495                           Cincinnati, OH-KY-IN
1496                Dallas-Fort Worth-Arlington, TX
1497                Dallas-Fort Worth-Arlington, TX
1498                                    El Paso, TX
1499                     Spokane-Spokane Valley, WA
1500           Houston-The Woodlands-Sugar Land, TX
1501               Indianapolis-Carmel-Anderson, IN
1502               Las Vegas-Henderson-Paradise, NV
1503          New York-Newark-Jersey City, NY-NJ-PA
1504             Chicago-Naperville-Elgin, IL-IN-WI
1505             Chicago-Naperville-Elgin, IL-IN-WI
1506                         Milwaukee-Waukesha, WI
1507                  Santa Maria-Santa Barbara, CA
1508             Los Angeles-Long Beach-Anaheim, CA
1509                               St. Louis, MO-IL
1510                                      Tulsa, OK
1511                                     Tucson, AZ
1512                                Albuquerque, NM
1513                        Buffalo-Cheektowaga, NY
1514                Charleston-North Charleston, SC
1515                          Steamboat Springs, CO
1516           Houston-The Woodlands-Sugar Land, TX
1517                                    Wichita, KS
1518               Las Vegas-Henderson-Paradise, NV
1519             Los Angeles-Long Beach-Anaheim, CA
1520       Little Rock-North Little Rock-Conway, AR
1521        Miami-Fort Lauderdale-Pompano Beach, FL
1522                       New Orleans-Metairie, LA
1523             San Francisco-Oakland-Berkeley, CA
1524                              Oklahoma City, OK
1525                                       Reno, NV
1526             San Diego-Chula Vista-Carlsbad, CA
1527            Tampa-St. Petersburg-Clearwater, FL
1528                               St. Louis, MO-IL
1529 Nashville-Davidson--Murfreesboro--Franklin, TN
1530             Chicago-Naperville-Elgin, IL-IN-WI
1531             Chicago-Naperville-Elgin, IL-IN-WI
1532 Nashville-Davidson--Murfreesboro--Franklin, TN
1533                  Baltimore-Columbia-Towson, MD
1534                               St. Louis, MO-IL
1535           Houston-The Woodlands-Sugar Land, TX
1536                               St. Louis, MO-IL
1537               Austin-Round Rock-Georgetown, TX
1538                     Denver-Aurora-Lakewood, CO
1539           Houston-The Woodlands-Sugar Land, TX
1540               Las Vegas-Henderson-Paradise, NV
1541             Los Angeles-Long Beach-Anaheim, CA
1542                      Phoenix-Mesa-Chandler, AZ
1543               Austin-Round Rock-Georgetown, TX
1544           Houston-The Woodlands-Sugar Land, TX
1545           Houston-The Woodlands-Sugar Land, TX
1546                      Phoenix-Mesa-Chandler, AZ
1547                  San Antonio-New Braunfels, TX
1548             San Francisco-Oakland-Berkeley, CA
1549               Las Vegas-Henderson-Paradise, NV
1550             San Francisco-Oakland-Berkeley, CA
1551               Las Vegas-Henderson-Paradise, NV
1552                  Baltimore-Columbia-Towson, MD
1553           Houston-The Woodlands-Sugar Land, TX
1554           Houston-The Woodlands-Sugar Land, TX
1555           Houston-The Woodlands-Sugar Land, TX
1556                  Orlando-Kissimmee-Sanford, FL
1557                       New Orleans-Metairie, LA
1558                               Raleigh-Cary, NC
1559                  Baltimore-Columbia-Towson, MD
1560                Dallas-Fort Worth-Arlington, TX
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV
1562             Chicago-Naperville-Elgin, IL-IN-WI
1563                      Phoenix-Mesa-Chandler, AZ
1564                      Phoenix-Mesa-Chandler, AZ
1565                                 Pittsburgh, PA
1566                  San Antonio-New Braunfels, TX
1567            Tampa-St. Petersburg-Clearwater, FL
1568                     Denver-Aurora-Lakewood, CO
1569                     Denver-Aurora-Lakewood, CO
1570               Las Vegas-Henderson-Paradise, NV
1571             Chicago-Naperville-Elgin, IL-IN-WI
1572                      Phoenix-Mesa-Chandler, AZ
1573                Sacramento-Roseville-Folsom, CA
1574               Las Vegas-Henderson-Paradise, NV
1575             San Francisco-Oakland-Berkeley, CA
1576                  Baltimore-Columbia-Towson, MD
1577           Houston-The Woodlands-Sugar Land, TX
1578                                      Kapaa, HI
1579             San Francisco-Oakland-Berkeley, CA
1580             San Francisco-Oakland-Berkeley, CA
1581                      Phoenix-Mesa-Chandler, AZ
1582           Atlanta-Sandy Springs-Alpharetta, GA
1583 Nashville-Davidson--Murfreesboro--Franklin, TN
1584                  Baltimore-Columbia-Towson, MD
1585                Dallas-Fort Worth-Arlington, TX
1586                     Denver-Aurora-Lakewood, CO
1587                                    El Paso, TX
1588                                Spartanburg, SC
1589        Miami-Fort Lauderdale-Pompano Beach, FL
1590        Minneapolis-St. Paul-Bloomington, MN-WI
1591                       New Orleans-Metairie, LA
1592                      Phoenix-Mesa-Chandler, AZ
1593                               St. Louis, MO-IL
1594                               St. Louis, MO-IL
1595               Austin-Round Rock-Georgetown, TX
1596             Los Angeles-Long Beach-Anaheim, CA
1597                                Panama City, FL
1598        Miami-Fort Lauderdale-Pompano Beach, FL
1599                      Brownsville-Harlingen, TX
1600               Las Vegas-Henderson-Paradise, NV
1601             Los Angeles-Long Beach-Anaheim, CA
1602                                    Lubbock, TX
1603          New York-Newark-Jersey City, NY-NJ-PA
1604             Los Angeles-Long Beach-Anaheim, CA
1605                                    Midland, TX
1606                  Orlando-Kissimmee-Sanford, FL
1607                              Memphis, TN-MS-AR
1608             San Francisco-Oakland-Berkeley, CA
1609                              Oklahoma City, OK
1610           Riverside-San Bernardino-Ontario, CA
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1612                 Pensacola-Ferry Pass-Brent, FL
1613                      Cape Coral-Fort Myers, FL
1614                  San Antonio-New Braunfels, TX
1615                  San Antonio-New Braunfels, TX
1616                                   Savannah, GA
1617             San Jose-Sunnyvale-Santa Clara, CA
1618            Tampa-St. Petersburg-Clearwater, FL
1619                                      Tulsa, OK
1620           Houston-The Woodlands-Sugar Land, TX
1621           Houston-The Woodlands-Sugar Land, TX
1622             Chicago-Naperville-Elgin, IL-IN-WI
1623             Chicago-Naperville-Elgin, IL-IN-WI
1624                Dallas-Fort Worth-Arlington, TX
1625                Dallas-Fort Worth-Arlington, TX
1626             Chicago-Naperville-Elgin, IL-IN-WI
1627                Dallas-Fort Worth-Arlington, TX
1628                Dallas-Fort Worth-Arlington, TX
1629             Chicago-Naperville-Elgin, IL-IN-WI
1630                     Denver-Aurora-Lakewood, CO
1631                               St. Louis, MO-IL
1632                  Baltimore-Columbia-Towson, MD
1633                Dallas-Fort Worth-Arlington, TX
1634           Houston-The Woodlands-Sugar Land, TX
1635                  Orlando-Kissimmee-Sanford, FL
1636                      Cape Coral-Fort Myers, FL
1637              North Port-Sarasota-Bradenton, FL
1638 Nashville-Davidson--Murfreesboro--Franklin, TN
1639                  Baltimore-Columbia-Towson, MD
1640                  Baltimore-Columbia-Towson, MD
1641                  Baltimore-Columbia-Towson, MD
1642                               St. Louis, MO-IL
1643 Nashville-Davidson--Murfreesboro--Franklin, TN
1644             Chicago-Naperville-Elgin, IL-IN-WI
1645                      Phoenix-Mesa-Chandler, AZ
1646                      Phoenix-Mesa-Chandler, AZ
1647                      Phoenix-Mesa-Chandler, AZ
1648                                Albuquerque, NM
1649                                   Amarillo, TX
1650               Austin-Round Rock-Georgetown, TX
1651               Austin-Round Rock-Georgetown, TX
1652                Dallas-Fort Worth-Arlington, TX
1653                     Spokane-Spokane Valley, WA
1654             Chicago-Naperville-Elgin, IL-IN-WI
1655                         Milwaukee-Waukesha, WI
1656             San Francisco-Oakland-Berkeley, CA
1657            Portland-Vancouver-Hillsboro, OR-WA
1658                  San Antonio-New Braunfels, TX
1659                             Salt Lake City, UT
1660                Sacramento-Roseville-Folsom, CA
1661             Los Angeles-Long Beach-Anaheim, CA
1662                               St. Louis, MO-IL
1663                                 Boise City, ID
1664             Los Angeles-Long Beach-Anaheim, CA
1665                  Baltimore-Columbia-Towson, MD
1666                                    Bozeman, MT
1667                           Colorado Springs, CO
1668                         Eugene-Springfield, OR
1669             Los Angeles-Long Beach-Anaheim, CA
1670                         Milwaukee-Waukesha, WI
1671           Riverside-San Bernardino-Ontario, CA
1672           Riverside-San Bernardino-Ontario, CA
1673                                       Reno, NV
1674             San Diego-Chula Vista-Carlsbad, CA
1675                  Santa Maria-Santa Barbara, CA
1676             San Jose-Sunnyvale-Santa Clara, CA
1677                                      Tulsa, OK
1678                                     Tucson, AZ
1679                                Albuquerque, NM
1680                                    El Paso, TX
1681                             Urban Honolulu, HI
1682             Chicago-Naperville-Elgin, IL-IN-WI
1683                       New Orleans-Metairie, LA
1684                       New Orleans-Metairie, LA
1685                      Phoenix-Mesa-Chandler, AZ
1686                      Phoenix-Mesa-Chandler, AZ
1687               Austin-Round Rock-Georgetown, TX
1688               Austin-Round Rock-Georgetown, TX
1689           Houston-The Woodlands-Sugar Land, TX
1690                                       Reno, NV
1691                Sacramento-Roseville-Folsom, CA
1692                Sacramento-Roseville-Folsom, CA
1693               Austin-Round Rock-Georgetown, TX
1694                Dallas-Fort Worth-Arlington, TX
1695                  Baltimore-Columbia-Towson, MD
1696                  Baltimore-Columbia-Towson, MD
1697           Houston-The Woodlands-Sugar Land, TX
1698                               St. Louis, MO-IL
1699                               St. Louis, MO-IL
1700             Chicago-Naperville-Elgin, IL-IN-WI
1701                       New Orleans-Metairie, LA
1702                     Denver-Aurora-Lakewood, CO
1703               Las Vegas-Henderson-Paradise, NV
1704             San Francisco-Oakland-Berkeley, CA
1705                Sacramento-Roseville-Folsom, CA
1706                               St. Louis, MO-IL
1707                             Urban Honolulu, HI
1708           Houston-The Woodlands-Sugar Land, TX
1709           Houston-The Woodlands-Sugar Land, TX
1710               Las Vegas-Henderson-Paradise, NV
1711             Chicago-Naperville-Elgin, IL-IN-WI
1712                    Kahului-Wailuku-Lahaina, HI
1713                                       Reno, NV
1714                Sacramento-Roseville-Folsom, CA
1715                Dallas-Fort Worth-Arlington, TX
1716                Dallas-Fort Worth-Arlington, TX
1717           Houston-The Woodlands-Sugar Land, TX
1718               Austin-Round Rock-Georgetown, TX
1719                Dallas-Fort Worth-Arlington, TX
1720             Chicago-Naperville-Elgin, IL-IN-WI
1721             Chicago-Naperville-Elgin, IL-IN-WI
1722                  Baltimore-Columbia-Towson, MD
1723        Miami-Fort Lauderdale-Pompano Beach, FL
1724          New York-Newark-Jersey City, NY-NJ-PA
1725                  Orlando-Kissimmee-Sanford, FL
1726                       New Orleans-Metairie, LA
1727                      Cape Coral-Fort Myers, FL
1728                  Baltimore-Columbia-Towson, MD
1729                Dallas-Fort Worth-Arlington, TX
1730                Dallas-Fort Worth-Arlington, TX
1731                Dallas-Fort Worth-Arlington, TX
1732                     Denver-Aurora-Lakewood, CO
1733           Houston-The Woodlands-Sugar Land, TX
1734                             Kansas City, MO-KS
1735                               St. Louis, MO-IL
1736                               St. Louis, MO-IL
1737                               St. Louis, MO-IL
1738                    Albany-Schenectady-Troy, NY
1739          Hartford-East Hartford-Middletown, CT
1740                          Birmingham-Hoover, AL
1741                        Buffalo-Cheektowaga, NY
1742                           Cincinnati, OH-KY-IN
1743        Miami-Fort Lauderdale-Pompano Beach, FL
1744               Indianapolis-Carmel-Anderson, IN
1745                              Memphis, TN-MS-AR
1746                       New Orleans-Metairie, LA
1747     Virginia Beach-Norfolk-Newport News, VA-NC
1748                      Phoenix-Mesa-Chandler, AZ
1749             Louisville/Jefferson County, KY-IN
1750                               St. Louis, MO-IL
1751               Austin-Round Rock-Georgetown, TX
1752                          Birmingham-Hoover, AL
1753 Nashville-Davidson--Murfreesboro--Franklin, TN
1754                  Baltimore-Columbia-Towson, MD
1755                Charleston-North Charleston, SC
1756                                   Columbus, OH
1757                Dallas-Fort Worth-Arlington, TX
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV
1759                     Denver-Aurora-Lakewood, CO
1760        Miami-Fort Lauderdale-Pompano Beach, FL
1761                      Grand Rapids-Kentwood, MI
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV
1763                               Jacksonville, FL
1764          New York-Newark-Jersey City, NY-NJ-PA
1765                             Kansas City, MO-KS
1766                  Orlando-Kissimmee-Sanford, FL
1767        Minneapolis-St. Paul-Bloomington, MN-WI
1768                       New Orleans-Metairie, LA
1769                    Omaha-Council Bluffs, NE-IA
1770     Virginia Beach-Norfolk-Newport News, VA-NC
1771                      Phoenix-Mesa-Chandler, AZ
1772                      Providence-Warwick, RI-MA
1773                                   Richmond, VA
1774             San Diego-Chula Vista-Carlsbad, CA
1775             Louisville/Jefferson County, KY-IN
1776                    Seattle-Tacoma-Bellevue, WA
1777             San Francisco-Oakland-Berkeley, CA
1778            Tampa-St. Petersburg-Clearwater, FL
1779                 Boston-Cambridge-Newton, MA-NH
1780                        Buffalo-Cheektowaga, NY
1781                           Cleveland-Elyria, OH
1782                           Cleveland-Elyria, OH
1783                           Cincinnati, OH-KY-IN
1784           Houston-The Woodlands-Sugar Land, TX
1785           Houston-The Woodlands-Sugar Land, TX
1786             Los Angeles-Long Beach-Anaheim, CA
1787                              Memphis, TN-MS-AR
1788        Miami-Fort Lauderdale-Pompano Beach, FL
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1790             San Francisco-Oakland-Berkeley, CA
1791                              Oklahoma City, OK
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1793                                 Pittsburgh, PA
1794                               Raleigh-Cary, NC
1795                      Cape Coral-Fort Myers, FL
1796                Sacramento-Roseville-Folsom, CA
1797             Los Angeles-Long Beach-Anaheim, CA
1798              North Port-Sarasota-Bradenton, FL
1799                               St. Louis, MO-IL
1800                                     Tucson, AZ
1801                  Orlando-Kissimmee-Sanford, FL
1802             Chicago-Naperville-Elgin, IL-IN-WI
1803                Dallas-Fort Worth-Arlington, TX
1804                     Denver-Aurora-Lakewood, CO
1805           Houston-The Woodlands-Sugar Land, TX
1806                  Baltimore-Columbia-Towson, MD
1807                               St. Louis, MO-IL
1808             Chicago-Naperville-Elgin, IL-IN-WI
1809                       New Orleans-Metairie, LA
1810                               St. Louis, MO-IL
1811                  Baltimore-Columbia-Towson, MD
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV
1813                      Phoenix-Mesa-Chandler, AZ
1814                      Cape Coral-Fort Myers, FL
1815                               St. Louis, MO-IL
1816           Houston-The Woodlands-Sugar Land, TX
1817                               St. Louis, MO-IL
1818           Houston-The Woodlands-Sugar Land, TX
1819           Houston-The Woodlands-Sugar Land, TX
1820                             Kansas City, MO-KS
1821 Nashville-Davidson--Murfreesboro--Franklin, TN
1822                  Baltimore-Columbia-Towson, MD
1823        Miami-Fort Lauderdale-Pompano Beach, FL
1824             Los Angeles-Long Beach-Anaheim, CA
1825          New York-Newark-Jersey City, NY-NJ-PA
1826                  Orlando-Kissimmee-Sanford, FL
1827                  Orlando-Kissimmee-Sanford, FL
1828        Miami-Fort Lauderdale-Pompano Beach, FL
1829                  San Antonio-New Braunfels, TX
1830            Tampa-St. Petersburg-Clearwater, FL
1831                Dallas-Fort Worth-Arlington, TX
1832                  Baltimore-Columbia-Towson, MD
1833             Chicago-Naperville-Elgin, IL-IN-WI
1834               Austin-Round Rock-Georgetown, TX
1835                                 Bellingham, WA
1836             Los Angeles-Long Beach-Anaheim, CA
1837                             Urban Honolulu, HI
1838                                      Kapaa, HI
1839           Riverside-San Bernardino-Ontario, CA
1840                      Phoenix-Mesa-Chandler, AZ
1841           Riverside-San Bernardino-Ontario, CA
1842             San Diego-Chula Vista-Carlsbad, CA
1843                                 Boise City, ID
1844             Los Angeles-Long Beach-Anaheim, CA
1845                         Eugene-Springfield, OR
1846                     Spokane-Spokane Valley, WA
1847                                       Hilo, HI
1848                  Santa Maria-Santa Barbara, CA
1849             Los Angeles-Long Beach-Anaheim, CA
1850                             Urban Honolulu, HI
1851               Austin-Round Rock-Georgetown, TX
1852           Houston-The Woodlands-Sugar Land, TX
1853             Chicago-Naperville-Elgin, IL-IN-WI
1854                      Phoenix-Mesa-Chandler, AZ
1855                               St. Louis, MO-IL
1856               Las Vegas-Henderson-Paradise, NV
1857             Chicago-Naperville-Elgin, IL-IN-WI
1858                               St. Louis, MO-IL
1859           Houston-The Woodlands-Sugar Land, TX
1860             San Francisco-Oakland-Berkeley, CA
1861             San Jose-Sunnyvale-Santa Clara, CA
1862 Nashville-Davidson--Murfreesboro--Franklin, TN
1863                      Phoenix-Mesa-Chandler, AZ
1864 Nashville-Davidson--Murfreesboro--Franklin, TN
1865                Dallas-Fort Worth-Arlington, TX
1866 Nashville-Davidson--Murfreesboro--Franklin, TN
1867             Chicago-Naperville-Elgin, IL-IN-WI
1868                  Baltimore-Columbia-Towson, MD
1869                  Orlando-Kissimmee-Sanford, FL
1870             Chicago-Naperville-Elgin, IL-IN-WI
1871                      Phoenix-Mesa-Chandler, AZ
1872                      Phoenix-Mesa-Chandler, AZ
1873                      Phoenix-Mesa-Chandler, AZ
1874             San Jose-Sunnyvale-Santa Clara, CA
1875             Chicago-Naperville-Elgin, IL-IN-WI
1876                     Denver-Aurora-Lakewood, CO
1877               Austin-Round Rock-Georgetown, TX
1878                     Spokane-Spokane Valley, WA
1879           Houston-The Woodlands-Sugar Land, TX
1880             San Francisco-Oakland-Berkeley, CA
1881                              Oklahoma City, OK
1882            Portland-Vancouver-Hillsboro, OR-WA
1883                                       Reno, NV
1884                  San Antonio-New Braunfels, TX
1885             San Jose-Sunnyvale-Santa Clara, CA
1886                             Salt Lake City, UT
1887                Sacramento-Roseville-Folsom, CA
1888                                Albuquerque, NM
1889               Austin-Round Rock-Georgetown, TX
1890             Los Angeles-Long Beach-Anaheim, CA
1891                                   Columbus, OH
1892                           Colorado Springs, CO
1893                                    El Paso, TX
1894        Miami-Fort Lauderdale-Pompano Beach, FL
1895             Los Angeles-Long Beach-Anaheim, CA
1896                                      Kapaa, HI
1897                         Milwaukee-Waukesha, WI
1898                    Omaha-Council Bluffs, NE-IA
1899           Riverside-San Bernardino-Ontario, CA
1900           Riverside-San Bernardino-Ontario, CA
1901             Los Angeles-Long Beach-Anaheim, CA
1902            Tampa-St. Petersburg-Clearwater, FL
1903                      Phoenix-Mesa-Chandler, AZ
1904                      Cape Coral-Fort Myers, FL
1905              North Port-Sarasota-Bradenton, FL
1906 Nashville-Davidson--Murfreesboro--Franklin, TN
1907                  Baltimore-Columbia-Towson, MD
1908        Miami-Fort Lauderdale-Pompano Beach, FL
1909 Nashville-Davidson--Murfreesboro--Franklin, TN
1910                Dallas-Fort Worth-Arlington, TX
1911           Houston-The Woodlands-Sugar Land, TX
1912                Sacramento-Roseville-Folsom, CA
1913               Las Vegas-Henderson-Paradise, NV
1914             Chicago-Naperville-Elgin, IL-IN-WI
1915                               St. Louis, MO-IL
1916                  Baltimore-Columbia-Towson, MD
1917                  Baltimore-Columbia-Towson, MD
1918                  Orlando-Kissimmee-Sanford, FL
1919            Tampa-St. Petersburg-Clearwater, FL
1920             Chicago-Naperville-Elgin, IL-IN-WI
1921             Los Angeles-Long Beach-Anaheim, CA
1922             Los Angeles-Long Beach-Anaheim, CA
1923             San Diego-Chula Vista-Carlsbad, CA
1924             San Jose-Sunnyvale-Santa Clara, CA
1925                  Orlando-Kissimmee-Sanford, FL
1926            Tampa-St. Petersburg-Clearwater, FL
1927             Chicago-Naperville-Elgin, IL-IN-WI
1928                         Milwaukee-Waukesha, WI
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV
1930                             Kansas City, MO-KS
1931             Chicago-Naperville-Elgin, IL-IN-WI
1932             Louisville/Jefferson County, KY-IN
1933                                 Boise City, ID
1934                Dallas-Fort Worth-Arlington, TX
1935           Houston-The Woodlands-Sugar Land, TX
1936             San Jose-Sunnyvale-Santa Clara, CA
1937                             Urban Honolulu, HI
1938                    Kahului-Wailuku-Lahaina, HI
1939                                     Tucson, AZ
1940                Dallas-Fort Worth-Arlington, TX
1941           Houston-The Woodlands-Sugar Land, TX
1942 Nashville-Davidson--Murfreesboro--Franklin, TN
1943                Dallas-Fort Worth-Arlington, TX
1944                                    El Paso, TX
1945             Los Angeles-Long Beach-Anaheim, CA
1946               Las Vegas-Henderson-Paradise, NV
1947             San Francisco-Oakland-Berkeley, CA
1948                  Orlando-Kissimmee-Sanford, FL
1949             Chicago-Naperville-Elgin, IL-IN-WI
1950                  Baltimore-Columbia-Towson, MD
1951                      Cape Coral-Fort Myers, FL
1952            Tampa-St. Petersburg-Clearwater, FL
1953             San Francisco-Oakland-Berkeley, CA
1954             San Jose-Sunnyvale-Santa Clara, CA
1955                      Phoenix-Mesa-Chandler, AZ
1956             Los Angeles-Long Beach-Anaheim, CA
1957             San Diego-Chula Vista-Carlsbad, CA
1958                Dallas-Fort Worth-Arlington, TX
1959               Las Vegas-Henderson-Paradise, NV
1960                    Kahului-Wailuku-Lahaina, HI
1961                    Kahului-Wailuku-Lahaina, HI
1962                             Urban Honolulu, HI
1963                                       Hilo, HI
1964             Los Angeles-Long Beach-Anaheim, CA
1965           Riverside-San Bernardino-Ontario, CA
1966                                       Reno, NV
1967             Los Angeles-Long Beach-Anaheim, CA
1968                  Orlando-Kissimmee-Sanford, FL
1969                Dallas-Fort Worth-Arlington, TX
1970             Los Angeles-Long Beach-Anaheim, CA
1971                  Orlando-Kissimmee-Sanford, FL
1972                Sacramento-Roseville-Folsom, CA
1973                     Spokane-Spokane Valley, WA
1974             San Diego-Chula Vista-Carlsbad, CA
1975                    Seattle-Tacoma-Bellevue, WA
1976             Los Angeles-Long Beach-Anaheim, CA
1977                             Urban Honolulu, HI
1978             Los Angeles-Long Beach-Anaheim, CA
1979           Riverside-San Bernardino-Ontario, CA
1980           Riverside-San Bernardino-Ontario, CA
1981             Los Angeles-Long Beach-Anaheim, CA
1982                Dallas-Fort Worth-Arlington, TX
1983                      Phoenix-Mesa-Chandler, AZ
1984               Austin-Round Rock-Georgetown, TX
1985                                   Columbus, OH
1986               Austin-Round Rock-Georgetown, TX
1987               Indianapolis-Carmel-Anderson, IN
1988          New York-Newark-Jersey City, NY-NJ-PA
1989                  Baltimore-Columbia-Towson, MD
1990                Dallas-Fort Worth-Arlington, TX
1991        Miami-Fort Lauderdale-Pompano Beach, FL
1992           Houston-The Woodlands-Sugar Land, TX
1993                               Jacksonville, FL
1994          New York-Newark-Jersey City, NY-NJ-PA
1995             Los Angeles-Long Beach-Anaheim, CA
1996             Chicago-Naperville-Elgin, IL-IN-WI
1997                       New Orleans-Metairie, LA
1998                    Seattle-Tacoma-Bellevue, WA
1999               Austin-Round Rock-Georgetown, TX
2000 Nashville-Davidson--Murfreesboro--Franklin, TN
2001 Nashville-Davidson--Murfreesboro--Franklin, TN
2002                                   Columbus, OH
2003                 Des Moines-West Des Moines, IA
2004                                Panama City, FL
2005                                    Wichita, KS
2006             Los Angeles-Long Beach-Anaheim, CA
2007       Little Rock-North Little Rock-Conway, AR
2008                             Kansas City, MO-KS
2009                  Orlando-Kissimmee-Sanford, FL
2010        Miami-Fort Lauderdale-Pompano Beach, FL
2011                         Milwaukee-Waukesha, WI
2012                              Oklahoma City, OK
2013                    Omaha-Council Bluffs, NE-IA
2014                      Phoenix-Mesa-Chandler, AZ
2015                 Pensacola-Ferry Pass-Brent, FL
2016              North Port-Sarasota-Bradenton, FL
2017 Nashville-Davidson--Murfreesboro--Franklin, TN
2018                  Baltimore-Columbia-Towson, MD
2019                                   Columbus, OH
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV
2021             Chicago-Naperville-Elgin, IL-IN-WI
2022                               Raleigh-Cary, NC
2023             Louisville/Jefferson County, KY-IN
2024          Hartford-East Hartford-Middletown, CT
2025                          Birmingham-Hoover, AL
2026                        Buffalo-Cheektowaga, NY
2027                           Cincinnati, OH-KY-IN
2028        Miami-Fort Lauderdale-Pompano Beach, FL
2029             San Diego-Chula Vista-Carlsbad, CA
2030               Las Vegas-Henderson-Paradise, NV
2031 Nashville-Davidson--Murfreesboro--Franklin, TN
2032                Dallas-Fort Worth-Arlington, TX
2033           Houston-The Woodlands-Sugar Land, TX
2034                      Phoenix-Mesa-Chandler, AZ
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV
2036                               St. Louis, MO-IL
2037                Dallas-Fort Worth-Arlington, TX
2038                      Phoenix-Mesa-Chandler, AZ
2039                Dallas-Fort Worth-Arlington, TX
2040                Dallas-Fort Worth-Arlington, TX
2041                Dallas-Fort Worth-Arlington, TX
2042          New York-Newark-Jersey City, NY-NJ-PA
2043                                 Pittsburgh, PA
2044                                   Savannah, GA
2045                                      Tulsa, OK
2046                Dallas-Fort Worth-Arlington, TX
2047                      Phoenix-Mesa-Chandler, AZ
2048                                Bakersfield, CA
2049                         Eugene-Springfield, OR
2050                Dallas-Fort Worth-Arlington, TX
2051                Dallas-Fort Worth-Arlington, TX
2052           Houston-The Woodlands-Sugar Land, TX
2053           Houston-The Woodlands-Sugar Land, TX
2054           Houston-The Woodlands-Sugar Land, TX
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2058          New York-Newark-Jersey City, NY-NJ-PA
2059               Indianapolis-Carmel-Anderson, IN
2060          New York-Newark-Jersey City, NY-NJ-PA
2061                                   Columbus, OH
2062          New York-Newark-Jersey City, NY-NJ-PA
2063          New York-Newark-Jersey City, NY-NJ-PA
2064          New York-Newark-Jersey City, NY-NJ-PA
2065          New York-Newark-Jersey City, NY-NJ-PA
2066          New York-Newark-Jersey City, NY-NJ-PA
2067          New York-Newark-Jersey City, NY-NJ-PA
2068          New York-Newark-Jersey City, NY-NJ-PA
2069                                 Pittsburgh, PA
2070                               Raleigh-Cary, NC
2071          New York-Newark-Jersey City, NY-NJ-PA
2072          New York-Newark-Jersey City, NY-NJ-PA
2073          New York-Newark-Jersey City, NY-NJ-PA
2074              Charlotte-Concord-Gastonia, NC-SC
2075          New York-Newark-Jersey City, NY-NJ-PA
2076          New York-Newark-Jersey City, NY-NJ-PA
2077          New York-Newark-Jersey City, NY-NJ-PA
2078          New York-Newark-Jersey City, NY-NJ-PA
2079          New York-Newark-Jersey City, NY-NJ-PA
2080          New York-Newark-Jersey City, NY-NJ-PA
2081                 Boston-Cambridge-Newton, MA-NH
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2083          New York-Newark-Jersey City, NY-NJ-PA
2084              Charlotte-Concord-Gastonia, NC-SC
2085          New York-Newark-Jersey City, NY-NJ-PA
2086                               Raleigh-Cary, NC
2087             Louisville/Jefferson County, KY-IN
2088                 Boston-Cambridge-Newton, MA-NH
2089          New York-Newark-Jersey City, NY-NJ-PA
2090                Charleston-North Charleston, SC
2091                    Detroit-Warren-Dearborn, MI
2092                                   Key West, FL
2093                         Milwaukee-Waukesha, WI
2094                       New Orleans-Metairie, LA
2095                    Portland-South Portland, ME
2096              Charlotte-Concord-Gastonia, NC-SC
2097          New York-Newark-Jersey City, NY-NJ-PA
2098                       New Orleans-Metairie, LA
2099              North Port-Sarasota-Bradenton, FL
2100          New York-Newark-Jersey City, NY-NJ-PA
2101                 Boston-Cambridge-Newton, MA-NH
2102              Charlotte-Concord-Gastonia, NC-SC
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV
2104          New York-Newark-Jersey City, NY-NJ-PA
2105 Nashville-Davidson--Murfreesboro--Franklin, TN
2106                  Baltimore-Columbia-Towson, MD
2107                  Baltimore-Columbia-Towson, MD
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV
2109     Virginia Beach-Norfolk-Newport News, VA-NC
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2112                                 Pittsburgh, PA
2113                           Cleveland-Elyria, OH
2114                                   Columbus, OH
2115               Indianapolis-Carmel-Anderson, IN
2116               Indianapolis-Carmel-Anderson, IN
2117                                   Richmond, VA
2118                           Cincinnati, OH-KY-IN
2119              Charlotte-Concord-Gastonia, NC-SC
2120                               Jacksonville, FL
2121                 Boston-Cambridge-Newton, MA-NH
2122                               Raleigh-Cary, NC
2123                                   Columbus, OH
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV
2126          New York-Newark-Jersey City, NY-NJ-PA
2127          New York-Newark-Jersey City, NY-NJ-PA
2128                 Boston-Cambridge-Newton, MA-NH
2129          New York-Newark-Jersey City, NY-NJ-PA
2130          New York-Newark-Jersey City, NY-NJ-PA
2131             Chicago-Naperville-Elgin, IL-IN-WI
2132                 Boston-Cambridge-Newton, MA-NH
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV
2134          New York-Newark-Jersey City, NY-NJ-PA
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2137          New York-Newark-Jersey City, NY-NJ-PA
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV
2139              Charlotte-Concord-Gastonia, NC-SC
2140          New York-Newark-Jersey City, NY-NJ-PA
2141              Charlotte-Concord-Gastonia, NC-SC
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV
2143             Chicago-Naperville-Elgin, IL-IN-WI
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV
2147                        Buffalo-Cheektowaga, NY
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV
2149             Chicago-Naperville-Elgin, IL-IN-WI
2150                      Greensboro-High Point, NC
2151          New York-Newark-Jersey City, NY-NJ-PA
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV
2153        Minneapolis-St. Paul-Bloomington, MN-WI
2154        Minneapolis-St. Paul-Bloomington, MN-WI
2155                                    Bozeman, MT
2156             San Francisco-Oakland-Berkeley, CA
2157        Minneapolis-St. Paul-Bloomington, MN-WI
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2167                 Boston-Cambridge-Newton, MA-NH
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2169                                  Flagstaff, AZ
2170                     Denver-Aurora-Lakewood, CO
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV
2172       Little Rock-North Little Rock-Conway, AR
2173          New York-Newark-Jersey City, NY-NJ-PA
2174                                   Key West, FL
2175                  Orlando-Kissimmee-Sanford, FL
2176                  Orlando-Kissimmee-Sanford, FL
2177            Tampa-St. Petersburg-Clearwater, FL
2178        Miami-Fort Lauderdale-Pompano Beach, FL
2179            Tampa-St. Petersburg-Clearwater, FL
2180                          New Haven-Milford, CT
2181                 Boston-Cambridge-Newton, MA-NH
2182           Houston-The Woodlands-Sugar Land, TX
2183          New York-Newark-Jersey City, NY-NJ-PA
2184                         Milwaukee-Waukesha, WI
2185          New York-Newark-Jersey City, NY-NJ-PA
2186               Las Vegas-Henderson-Paradise, NV
2187        Miami-Fort Lauderdale-Pompano Beach, FL
2188                 Boston-Cambridge-Newton, MA-NH
2189           Riverside-San Bernardino-Ontario, CA
2190                    Kahului-Wailuku-Lahaina, HI
2191                Dallas-Fort Worth-Arlington, TX
2192                      Phoenix-Mesa-Chandler, AZ
2193                Dallas-Fort Worth-Arlington, TX
2194                                           <NA>
2195             San Diego-Chula Vista-Carlsbad, CA
2196             San Francisco-Oakland-Berkeley, CA
2197                             Kansas City, MO-KS
2198                               Raleigh-Cary, NC
2199        Miami-Fort Lauderdale-Pompano Beach, FL
2200                    Seattle-Tacoma-Bellevue, WA
2201                             Urban Honolulu, HI
2202                      Cape Coral-Fort Myers, FL
2203             San Francisco-Oakland-Berkeley, CA
2204                      Cape Coral-Fort Myers, FL
2205          New York-Newark-Jersey City, NY-NJ-PA
2206          Hartford-East Hartford-Middletown, CT
2207                                Albuquerque, NM
2208                 Boston-Cambridge-Newton, MA-NH
2209                                 Jackson, WY-ID
2210              Palm Bay-Melbourne-Titusville, FL
2211        Miami-Fort Lauderdale-Pompano Beach, FL
2212            Portland-Vancouver-Hillsboro, OR-WA
2213                  Orlando-Kissimmee-Sanford, FL
2214             Los Angeles-Long Beach-Anaheim, CA
2215                             Kansas City, MO-KS
2216                      Phoenix-Mesa-Chandler, AZ
2217                Dallas-Fort Worth-Arlington, TX
2218               Austin-Round Rock-Georgetown, TX
2219                     Denver-Aurora-Lakewood, CO
2220        Miami-Fort Lauderdale-Pompano Beach, FL
2221                    San Juan-Bayamón-Caguas, PR
2222                           Cincinnati, OH-KY-IN
2223          New York-Newark-Jersey City, NY-NJ-PA
2224                               Raleigh-Cary, NC
2225        Miami-Fort Lauderdale-Pompano Beach, FL
2226             San Diego-Chula Vista-Carlsbad, CA
2227           Atlanta-Sandy Springs-Alpharetta, GA
2228               Austin-Round Rock-Georgetown, TX
2229                             Kansas City, MO-KS
2230        Minneapolis-St. Paul-Bloomington, MN-WI
2231             Los Angeles-Long Beach-Anaheim, CA
2232                    Seattle-Tacoma-Bellevue, WA
2233              Charlotte-Concord-Gastonia, NC-SC
2234          New York-Newark-Jersey City, NY-NJ-PA
2235           Riverside-San Bernardino-Ontario, CA
2236                      Cape Coral-Fort Myers, FL
2237             Los Angeles-Long Beach-Anaheim, CA
2238                 Boston-Cambridge-Newton, MA-NH
2239                          Steamboat Springs, CO
2240                                       Reno, NV
2241                             Salt Lake City, UT
2242             San Francisco-Oakland-Berkeley, CA
2243            Tampa-St. Petersburg-Clearwater, FL
2244                               Raleigh-Cary, NC
2245                                   Columbus, OH
2246                             Kansas City, MO-KS
2247                                Albuquerque, NM
2248          New York-Newark-Jersey City, NY-NJ-PA
2249                    Seattle-Tacoma-Bellevue, WA
2250        Minneapolis-St. Paul-Bloomington, MN-WI
2251                             Salt Lake City, UT
2252            Tampa-St. Petersburg-Clearwater, FL
2253                    San Juan-Bayamón-Caguas, PR
2254        Miami-Fort Lauderdale-Pompano Beach, FL
2255                                  Anchorage, AK
2256                             Urban Honolulu, HI
2257                                           <NA>
2258                             Urban Honolulu, HI
2259                                       Hilo, HI
2260                             Urban Honolulu, HI
2261                    Kahului-Wailuku-Lahaina, HI
2262               Las Vegas-Henderson-Paradise, NV
2263           Atlanta-Sandy Springs-Alpharetta, GA
2264                                Baton Rouge, LA
2265                                Gainesville, FL
2266                            Gulfport-Biloxi, MS
2267                          Lexington-Fayette, KY
2268                                     Mobile, AL
2269                                    Roanoke, VA
2270                                Springfield, MO
2271                                      Tulsa, OK
2272          New York-Newark-Jersey City, NY-NJ-PA
2273                         Milwaukee-Waukesha, WI
2274                                   Richmond, VA
2275           Atlanta-Sandy Springs-Alpharetta, GA
2276          New York-Newark-Jersey City, NY-NJ-PA
2277                 Boston-Cambridge-Newton, MA-NH
2278                    Detroit-Warren-Dearborn, MI
2279                Burlington-South Burlington, VT
2280                Charleston-North Charleston, SC
2281                                Spartanburg, SC
2282                    Portland-South Portland, ME
2283                               Raleigh-Cary, NC
2284                                  Rochester, NY
2285                                  Knoxville, TN
2286                           Cincinnati, OH-KY-IN
2287           Atlanta-Sandy Springs-Alpharetta, GA
2288          New York-Newark-Jersey City, NY-NJ-PA
2289                                     Bangor, ME
2290 Nashville-Davidson--Murfreesboro--Franklin, TN
2291                Charleston-North Charleston, SC
2292                Charleston-North Charleston, SC
2293                                 Pittsburgh, PA
2294                                   Savannah, GA
2295                          Birmingham-Hoover, AL
2296                      Greensboro-High Point, NC
2297                                Spartanburg, SC
2298                              Memphis, TN-MS-AR
2299                    Portland-South Portland, ME
2300                                   Savannah, GA
2301           Atlanta-Sandy Springs-Alpharetta, GA
2302                           Cincinnati, OH-KY-IN
2303                 Des Moines-West Des Moines, IA
2304          New York-Newark-Jersey City, NY-NJ-PA
2305          New York-Newark-Jersey City, NY-NJ-PA
2306           Atlanta-Sandy Springs-Alpharetta, GA
2307                    Detroit-Warren-Dearborn, MI
2308          New York-Newark-Jersey City, NY-NJ-PA
2309            Tampa-St. Petersburg-Clearwater, FL
2310                 Boston-Cambridge-Newton, MA-NH
2311                Dallas-Fort Worth-Arlington, TX
2312          New York-Newark-Jersey City, NY-NJ-PA
2313        Miami-Fort Lauderdale-Pompano Beach, FL
2314               Austin-Round Rock-Georgetown, TX
2315                Dallas-Fort Worth-Arlington, TX
2316                Dallas-Fort Worth-Arlington, TX
2317                      Phoenix-Mesa-Chandler, AZ
2318              Charlotte-Concord-Gastonia, NC-SC
2319                                   Columbus, OH
2320               Las Vegas-Henderson-Paradise, NV
2321        Minneapolis-St. Paul-Bloomington, MN-WI
2322                       New Orleans-Metairie, LA
2323     Virginia Beach-Norfolk-Newport News, VA-NC
2324                      Phoenix-Mesa-Chandler, AZ
2325                                 Pittsburgh, PA
2326                    Portland-South Portland, ME
2327            Tampa-St. Petersburg-Clearwater, FL
2328              Charlotte-Concord-Gastonia, NC-SC
2329          New York-Newark-Jersey City, NY-NJ-PA
2330                               Jacksonville, FL
2331                              Memphis, TN-MS-AR
2332                                Albuquerque, NM
2333                                     Bangor, ME
2334                                   Columbus, OH
2335                      Greensboro-High Point, NC
2336                                    Wichita, KS
2337             Los Angeles-Long Beach-Anaheim, CA
2338                        Harrisburg-Carlisle, PA
2339                   McAllen-Edinburg-Mission, TX
2340                         Milwaukee-Waukesha, WI
2341           Riverside-San Bernardino-Ontario, CA
2342        Miami-Fort Lauderdale-Pompano Beach, FL
2343                    Portland-South Portland, ME
2344                      Cape Coral-Fort Myers, FL
2345             San Francisco-Oakland-Berkeley, CA
2346             Chicago-Naperville-Elgin, IL-IN-WI
2347             Chicago-Naperville-Elgin, IL-IN-WI
2348              Charlotte-Concord-Gastonia, NC-SC
2349        Miami-Fort Lauderdale-Pompano Beach, FL
2350                Dallas-Fort Worth-Arlington, TX
2351                Dallas-Fort Worth-Arlington, TX
2352        Miami-Fort Lauderdale-Pompano Beach, FL
2353                Dallas-Fort Worth-Arlington, TX
2354              Charlotte-Concord-Gastonia, NC-SC
2355                Dallas-Fort Worth-Arlington, TX
2356              Charlotte-Concord-Gastonia, NC-SC
2357             Chicago-Naperville-Elgin, IL-IN-WI
2358               Austin-Round Rock-Georgetown, TX
2359                Dallas-Fort Worth-Arlington, TX
2360              Charlotte-Concord-Gastonia, NC-SC
2361                Dallas-Fort Worth-Arlington, TX
2362                Dallas-Fort Worth-Arlington, TX
2363            Tampa-St. Petersburg-Clearwater, FL
2364               Las Vegas-Henderson-Paradise, NV
2365                      Phoenix-Mesa-Chandler, AZ
2366             San Francisco-Oakland-Berkeley, CA
2367                    San Juan-Bayamón-Caguas, PR
2368                                           <NA>
2369              Charlotte-Concord-Gastonia, NC-SC
2370                Dallas-Fort Worth-Arlington, TX
2371                Dallas-Fort Worth-Arlington, TX
2372                                   Key West, FL
2373           Riverside-San Bernardino-Ontario, CA
2374                    San Juan-Bayamón-Caguas, PR
2375             Los Angeles-Long Beach-Anaheim, CA
2376              North Port-Sarasota-Bradenton, FL
2377              Charlotte-Concord-Gastonia, NC-SC
2378                Dallas-Fort Worth-Arlington, TX
2379                      Cape Coral-Fort Myers, FL
2380                 Boston-Cambridge-Newton, MA-NH
2381          New York-Newark-Jersey City, NY-NJ-PA
2382          New York-Newark-Jersey City, NY-NJ-PA
2383        Miami-Fort Lauderdale-Pompano Beach, FL
2384              Charlotte-Concord-Gastonia, NC-SC
2385                Dallas-Fort Worth-Arlington, TX
2386        Miami-Fort Lauderdale-Pompano Beach, FL
2387                Dallas-Fort Worth-Arlington, TX
2388                Dallas-Fort Worth-Arlington, TX
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2390              Charlotte-Concord-Gastonia, NC-SC
2391              Charlotte-Concord-Gastonia, NC-SC
2392              Charlotte-Concord-Gastonia, NC-SC
2393        Miami-Fort Lauderdale-Pompano Beach, FL
2394        Miami-Fort Lauderdale-Pompano Beach, FL
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2396                Dallas-Fort Worth-Arlington, TX
2397                Dallas-Fort Worth-Arlington, TX
2398                             Urban Honolulu, HI
2399                                           <NA>
2400                                  Anchorage, AK
2401                    Seattle-Tacoma-Bellevue, WA
2402                    Seattle-Tacoma-Bellevue, WA
2403                                  Anchorage, AK
2404                                  Anchorage, AK
2405                                      Kapaa, HI
2406            Portland-Vancouver-Hillsboro, OR-WA
2407                    Seattle-Tacoma-Bellevue, WA
2408                                  Anchorage, AK
2409                                      Kapaa, HI
2410                    Seattle-Tacoma-Bellevue, WA
2411           Riverside-San Bernardino-Ontario, CA
2412        Miami-Fort Lauderdale-Pompano Beach, FL
2413                                      Kapaa, HI
2414                  Orlando-Kissimmee-Sanford, FL
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV
2416          New York-Newark-Jersey City, NY-NJ-PA
2417                 Boston-Cambridge-Newton, MA-NH
2418        Miami-Fort Lauderdale-Pompano Beach, FL
2419        Miami-Fort Lauderdale-Pompano Beach, FL
2420             San Francisco-Oakland-Berkeley, CA
2421                        Buffalo-Cheektowaga, NY
2422        Miami-Fort Lauderdale-Pompano Beach, FL
2423             San Diego-Chula Vista-Carlsbad, CA
2424              North Port-Sarasota-Bradenton, FL
2425          New York-Newark-Jersey City, NY-NJ-PA
2426        Miami-Fort Lauderdale-Pompano Beach, FL
2427                                   Richmond, VA
2428                                Albuquerque, NM
2429                 Boston-Cambridge-Newton, MA-NH
2430             Los Angeles-Long Beach-Anaheim, CA
2431        Miami-Fort Lauderdale-Pompano Beach, FL
2432           Riverside-San Bernardino-Ontario, CA
2433          Hartford-East Hartford-Middletown, CT
2434                        Buffalo-Cheektowaga, NY
2435          New York-Newark-Jersey City, NY-NJ-PA
2436                  Orlando-Kissimmee-Sanford, FL
2437        Miami-Fort Lauderdale-Pompano Beach, FL
2438          New York-Newark-Jersey City, NY-NJ-PA
2439          New York-Newark-Jersey City, NY-NJ-PA
2440            Tampa-St. Petersburg-Clearwater, FL
2441          New York-Newark-Jersey City, NY-NJ-PA
2442                 Boston-Cambridge-Newton, MA-NH
2443                  Orlando-Kissimmee-Sanford, FL
2444                    Albany-Schenectady-Troy, NY
2445          Hartford-East Hartford-Middletown, CT
2446                                 Boise City, ID
2447                                    Bozeman, MT
2448                                   Columbus, OH
2449                           Dayton-Kettering, OH
2450                                    Edwards, CO
2451                      Greensboro-High Point, NC
2452                                 Huntsville, AL
2453                                 Wilmington, NC
2454                               Jacksonville, FL
2455                    Omaha-Council Bluffs, NE-IA
2456     Virginia Beach-Norfolk-Newport News, VA-NC
2457                 Pensacola-Ferry Pass-Brent, FL
2458                    Portland-South Portland, ME
2459                               Raleigh-Cary, NC
2460             San Diego-Chula Vista-Carlsbad, CA
2461             San Francisco-Oakland-Berkeley, CA
2462                    San Juan-Bayamón-Caguas, PR
2463             Los Angeles-Long Beach-Anaheim, CA
2464                                     Tucson, AZ
2465         Crestview-Fort Walton Beach-Destin, FL
2466                    Detroit-Warren-Dearborn, MI
2467                    Seattle-Tacoma-Bellevue, WA
2468                             Salt Lake City, UT
2469        Miami-Fort Lauderdale-Pompano Beach, FL
2470        Minneapolis-St. Paul-Bloomington, MN-WI
2471                             Salt Lake City, UT
2472        Miami-Fort Lauderdale-Pompano Beach, FL
2473               Las Vegas-Henderson-Paradise, NV
2474                      Cape Coral-Fort Myers, FL
2475                    Detroit-Warren-Dearborn, MI
2476          New York-Newark-Jersey City, NY-NJ-PA
2477               Austin-Round Rock-Georgetown, TX
2478                 Boston-Cambridge-Newton, MA-NH
2479                        Buffalo-Cheektowaga, NY
2480                         Milwaukee-Waukesha, WI
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2482             San Diego-Chula Vista-Carlsbad, CA
2483                  San Antonio-New Braunfels, TX
2484             San Francisco-Oakland-Berkeley, CA
2485              North Port-Sarasota-Bradenton, FL
2486           Atlanta-Sandy Springs-Alpharetta, GA
2487           Atlanta-Sandy Springs-Alpharetta, GA
2488                    Seattle-Tacoma-Bellevue, WA
2489                             Salt Lake City, UT
2490                       New Orleans-Metairie, LA
2491        Miami-Fort Lauderdale-Pompano Beach, FL
2492               Indianapolis-Carmel-Anderson, IN
2493            Tampa-St. Petersburg-Clearwater, FL
2494                 Boston-Cambridge-Newton, MA-NH
2495                             Salt Lake City, UT
2496                 Boston-Cambridge-Newton, MA-NH
2497          New York-Newark-Jersey City, NY-NJ-PA
2498          Hartford-East Hartford-Middletown, CT
2499                  Baltimore-Columbia-Towson, MD
2500                    Detroit-Warren-Dearborn, MI
2501        Miami-Fort Lauderdale-Pompano Beach, FL
2502                             Kansas City, MO-KS
2503                         Milwaukee-Waukesha, WI
2504                                   Missoula, MT
2505           Riverside-San Bernardino-Ontario, CA
2506                  San Antonio-New Braunfels, TX
2507                Sacramento-Roseville-Folsom, CA
2508             Los Angeles-Long Beach-Anaheim, CA
2509              North Port-Sarasota-Bradenton, FL
2510                 Boston-Cambridge-Newton, MA-NH
2511                    Detroit-Warren-Dearborn, MI
2512                           Cincinnati, OH-KY-IN
2513                    Detroit-Warren-Dearborn, MI
2514               Austin-Round Rock-Georgetown, TX
2515          New York-Newark-Jersey City, NY-NJ-PA
2516        Minneapolis-St. Paul-Bloomington, MN-WI
2517            Tampa-St. Petersburg-Clearwater, FL
2518                 Boston-Cambridge-Newton, MA-NH
2519           Atlanta-Sandy Springs-Alpharetta, GA
2520 Nashville-Davidson--Murfreesboro--Franklin, TN
2521                 Boston-Cambridge-Newton, MA-NH
2522                  Baltimore-Columbia-Towson, MD
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV
2524        Miami-Fort Lauderdale-Pompano Beach, FL
2525               Indianapolis-Carmel-Anderson, IN
2526                       New Orleans-Metairie, LA
2527            Portland-Vancouver-Hillsboro, OR-WA
2528                               Raleigh-Cary, NC
2529                                       Reno, NV
2530                  San Antonio-New Braunfels, TX
2531                               St. Louis, MO-IL
2532            Tampa-St. Petersburg-Clearwater, FL
2533           Atlanta-Sandy Springs-Alpharetta, GA
2534          New York-Newark-Jersey City, NY-NJ-PA
2535                Burlington-South Burlington, VT
2536                        Buffalo-Cheektowaga, NY
2537                      Grand Rapids-Kentwood, MI
2538                                Spartanburg, SC
2539                Hilton Head Island-Bluffton, SC
2540                                   Richmond, VA
2541                Burlington-South Burlington, VT
2542                               St. Louis, MO-IL
2543                                       Hilo, HI
2544                Dallas-Fort Worth-Arlington, TX
2545                Dallas-Fort Worth-Arlington, TX
2546                      Brownsville-Harlingen, TX
2547                                   Columbia, SC
2548                           Champaign-Urbana, IL
2549                             Corpus Christi, TX
2550                                Springfield, IL
2551                                  Knoxville, TN
2552        Miami-Fort Lauderdale-Pompano Beach, FL
2553        Miami-Fort Lauderdale-Pompano Beach, FL
2554                Dallas-Fort Worth-Arlington, TX
2555                Dallas-Fort Worth-Arlington, TX
2556                Dallas-Fort Worth-Arlington, TX
2557                Dallas-Fort Worth-Arlington, TX
2558                Dallas-Fort Worth-Arlington, TX
2559                    Omaha-Council Bluffs, NE-IA
2560        Miami-Fort Lauderdale-Pompano Beach, FL
2561                    Omaha-Council Bluffs, NE-IA
2562                 Des Moines-West Des Moines, IA
2563                                  Rochester, MN
2564                Dallas-Fort Worth-Arlington, TX
2565        Miami-Fort Lauderdale-Pompano Beach, FL
2566              Charlotte-Concord-Gastonia, NC-SC
2567              Charlotte-Concord-Gastonia, NC-SC
2568                                    Madison, WI
2569                           Cleveland-Elyria, OH
2570                    Detroit-Warren-Dearborn, MI
2571                                  Lafayette, LA
2572       Little Rock-North Little Rock-Conway, AR
2573                        Harrisburg-Carlisle, PA
2574                           Dayton-Kettering, OH
2575                                  Knoxville, TN
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2578                          Manchester-Nashua, NH
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV
2581        Minneapolis-St. Paul-Bloomington, MN-WI
2582                     Denver-Aurora-Lakewood, CO
2583                Dallas-Fort Worth-Arlington, TX
2584                                   Appleton, WI
2585 Nashville-Davidson--Murfreesboro--Franklin, TN
2586                                     Casper, WY
2587                         Eugene-Springfield, OR
2588                                    Midland, TX
2589     Virginia Beach-Norfolk-Newport News, VA-NC
2590             Louisville/Jefferson County, KY-IN
2591                                           <NA>
2592                    Albany-Schenectady-Troy, NY
2593                    Omaha-Council Bluffs, NE-IA
2594                    South Bend-Mishawaka, IN-MI
2595                Dallas-Fort Worth-Arlington, TX
2596             Chicago-Naperville-Elgin, IL-IN-WI
2597        Minneapolis-St. Paul-Bloomington, MN-WI
2598                             Kansas City, MO-KS
2599                         Milwaukee-Waukesha, WI
2600           Riverside-San Bernardino-Ontario, CA
2601             Fayetteville-Springdale-Rogers, AR
2602                     Denver-Aurora-Lakewood, CO
2603                     Denver-Aurora-Lakewood, CO
2604           Houston-The Woodlands-Sugar Land, TX
2605                                   Bismarck, ND
2606                              Memphis, TN-MS-AR
2607                              Oklahoma City, OK
2608                    Omaha-Council Bluffs, NE-IA
2609                                 Pittsburgh, PA
2610                                   Richmond, VA
2611             Louisville/Jefferson County, KY-IN
2612        Minneapolis-St. Paul-Bloomington, MN-WI
2613          Hartford-East Hartford-Middletown, CT
2614                    Albany-Schenectady-Troy, NY
2615                          Birmingham-Hoover, AL
2616                              Memphis, TN-MS-AR
2617                                 Rapid City, SD
2618                    Detroit-Warren-Dearborn, MI
2619                                    Durango, CO
2620        Minneapolis-St. Paul-Bloomington, MN-WI
2621                     Denver-Aurora-Lakewood, CO
2622           Riverside-San Bernardino-Ontario, CA
2623                                Albuquerque, NM
2624                                     Tucson, AZ
2625                                Albuquerque, NM
2626                                     Fresno, CA
2627                                     Helena, MT
2628                         Kennewick-Richland, WA
2629           Riverside-San Bernardino-Ontario, CA
2630                                 Rapid City, SD
2631                                     Tucson, AZ
2632                             Salt Lake City, UT
2633                                 Boise City, ID
2634             San Francisco-Oakland-Berkeley, CA
2635                                      Kapaa, HI
2636                                    Madison, WI
2637                                   Missoula, MT
2638           Houston-The Woodlands-Sugar Land, TX
2639                  San Antonio-New Braunfels, TX
2640                Sacramento-Roseville-Folsom, CA
2641                     Denver-Aurora-Lakewood, CO
2642           Houston-The Woodlands-Sugar Land, TX
2643            Portland-Vancouver-Hillsboro, OR-WA
2644                      Phoenix-Mesa-Chandler, AZ
2645             San Diego-Chula Vista-Carlsbad, CA
2646                    San Juan-Bayamón-Caguas, PR
2647                  Baltimore-Columbia-Towson, MD
2648                                   Columbus, OH
2649                           Cincinnati, OH-KY-IN
2650                             Urban Honolulu, HI
2651                                 Jackson, WY-ID
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2653                                 Pittsburgh, PA
2654                    Seattle-Tacoma-Bellevue, WA
2655          New York-Newark-Jersey City, NY-NJ-PA
2656           Houston-The Woodlands-Sugar Land, TX
2657           Houston-The Woodlands-Sugar Land, TX
2658           Houston-The Woodlands-Sugar Land, TX
2659          New York-Newark-Jersey City, NY-NJ-PA
2660             Chicago-Naperville-Elgin, IL-IN-WI
2661                  Baltimore-Columbia-Towson, MD
2662                             Urban Honolulu, HI
2663                  Orlando-Kissimmee-Sanford, FL
2664                    Seattle-Tacoma-Bellevue, WA
2665          New York-Newark-Jersey City, NY-NJ-PA
2666                     Denver-Aurora-Lakewood, CO
2667          New York-Newark-Jersey City, NY-NJ-PA
2668             San Jose-Sunnyvale-Santa Clara, CA
2669 Nashville-Davidson--Murfreesboro--Franklin, TN
2670                    San Juan-Bayamón-Caguas, PR
2671                      Cape Coral-Fort Myers, FL
2672                                Panama City, FL
2673           Houston-The Woodlands-Sugar Land, TX
2674                             Urban Honolulu, HI
2675                             Kansas City, MO-KS
2676 Nashville-Davidson--Murfreesboro--Franklin, TN
2677                             Urban Honolulu, HI
2678               Indianapolis-Carmel-Anderson, IN
2679                  San Antonio-New Braunfels, TX
2680        Miami-Fort Lauderdale-Pompano Beach, FL
2681           Houston-The Woodlands-Sugar Land, TX
2682                Dallas-Fort Worth-Arlington, TX
2683                 Des Moines-West Des Moines, IA
2684                                   Key West, FL
2685             Louisville/Jefferson County, KY-IN
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV
2687                Charleston-North Charleston, SC
2688                           Cleveland-Elyria, OH
2689                               Jacksonville, FL
2690                 Boston-Cambridge-Newton, MA-NH
2691          New York-Newark-Jersey City, NY-NJ-PA
2692                                    Madison, WI
2693                                   Columbus, OH
2694                             Kansas City, MO-KS
2695                              Memphis, TN-MS-AR
2696                                    Madison, WI
2697             Louisville/Jefferson County, KY-IN
2698          New York-Newark-Jersey City, NY-NJ-PA
2699             Fayetteville-Springdale-Rogers, AR
2700                                   Key West, FL
2701             Louisville/Jefferson County, KY-IN
2702          New York-Newark-Jersey City, NY-NJ-PA
2703          New York-Newark-Jersey City, NY-NJ-PA
2704                Charleston-North Charleston, SC
2705                               Jacksonville, FL
2706             Louisville/Jefferson County, KY-IN
2707                                   Key West, FL
2708                       New Orleans-Metairie, LA
2709              Charlotte-Concord-Gastonia, NC-SC
2710                 Boston-Cambridge-Newton, MA-NH
2711          New York-Newark-Jersey City, NY-NJ-PA
2712             Chicago-Naperville-Elgin, IL-IN-WI
2713                                     Ithaca, NY
2714                                   Columbia, SC
2715                 Pensacola-Ferry Pass-Brent, FL
2716             Chicago-Naperville-Elgin, IL-IN-WI
2717                      Brownsville-Harlingen, TX
2718        Minneapolis-St. Paul-Bloomington, MN-WI
2719                                  Green Bay, WI
2720                               Salisbury, MD-DE
2721             Louisville/Jefferson County, KY-IN
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2723          New York-Newark-Jersey City, NY-NJ-PA
2724                                   Savannah, GA
2725           Houston-The Woodlands-Sugar Land, TX
2726                                  Dickinson, ND
2727                    Albany-Schenectady-Troy, NY
2728                                     Mobile, AL
2729                               St. Louis, MO-IL
2730           Houston-The Woodlands-Sugar Land, TX
2731                     Denver-Aurora-Lakewood, CO
2732              Allentown-Bethlehem-Easton, PA-NJ
2733          New York-Newark-Jersey City, NY-NJ-PA
2734          New York-Newark-Jersey City, NY-NJ-PA
2735          New York-Newark-Jersey City, NY-NJ-PA
2736        Minneapolis-St. Paul-Bloomington, MN-WI
2737          New York-Newark-Jersey City, NY-NJ-PA
2738          New York-Newark-Jersey City, NY-NJ-PA
2739                Burlington-South Burlington, VT
2740                    Portland-South Portland, ME
2741                                   Columbia, SC
2742                      Grand Rapids-Kentwood, MI
2743     Virginia Beach-Norfolk-Newport News, VA-NC
2744           Atlanta-Sandy Springs-Alpharetta, GA
2745          New York-Newark-Jersey City, NY-NJ-PA
2746                 Boston-Cambridge-Newton, MA-NH
2747          New York-Newark-Jersey City, NY-NJ-PA
2748          New York-Newark-Jersey City, NY-NJ-PA
2749          New York-Newark-Jersey City, NY-NJ-PA
2750          New York-Newark-Jersey City, NY-NJ-PA
2751                Dallas-Fort Worth-Arlington, TX
2752                Dallas-Fort Worth-Arlington, TX
2753        Miami-Fort Lauderdale-Pompano Beach, FL
2754                      Phoenix-Mesa-Chandler, AZ
2755              Charlotte-Concord-Gastonia, NC-SC
2756              Charlotte-Concord-Gastonia, NC-SC
2757                Dallas-Fort Worth-Arlington, TX
2758                Dallas-Fort Worth-Arlington, TX
2759                Dallas-Fort Worth-Arlington, TX
2760                Dallas-Fort Worth-Arlington, TX
2761              Charlotte-Concord-Gastonia, NC-SC
2762              Charlotte-Concord-Gastonia, NC-SC
2763                Dallas-Fort Worth-Arlington, TX
2764        Miami-Fort Lauderdale-Pompano Beach, FL
2765                      Phoenix-Mesa-Chandler, AZ
2766             Chicago-Naperville-Elgin, IL-IN-WI
2767                 Boston-Cambridge-Newton, MA-NH
2768                        Buffalo-Cheektowaga, NY
2769                  Baltimore-Columbia-Towson, MD
2770                           Cincinnati, OH-KY-IN
2771                Dallas-Fort Worth-Arlington, TX
2772                                   Key West, FL
2773        Miami-Fort Lauderdale-Pompano Beach, FL
2774             Los Angeles-Long Beach-Anaheim, CA
2775        Miami-Fort Lauderdale-Pompano Beach, FL
2776                      Phoenix-Mesa-Chandler, AZ
2777                      Cape Coral-Fort Myers, FL
2778             San Francisco-Oakland-Berkeley, CA
2779                               St. Louis, MO-IL
2780                                   Syracuse, NY
2781                Dallas-Fort Worth-Arlington, TX
2782                Dallas-Fort Worth-Arlington, TX
2783              North Port-Sarasota-Bradenton, FL
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2785 Nashville-Davidson--Murfreesboro--Franklin, TN
2786                                 Boise City, ID
2787             Los Angeles-Long Beach-Anaheim, CA
2788                           Colorado Springs, CO
2789                           Cincinnati, OH-KY-IN
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV
2791                                 Jackson, WY-ID
2792       Little Rock-North Little Rock-Conway, AR
2793                             Kansas City, MO-KS
2794                  Orlando-Kissimmee-Sanford, FL
2795        Miami-Fort Lauderdale-Pompano Beach, FL
2796                                 Pittsburgh, PA
2797             San Diego-Chula Vista-Carlsbad, CA
2798                                   Savannah, GA
2799                    San Juan-Bayamón-Caguas, PR
2800                Sacramento-Roseville-Folsom, CA
2801             Los Angeles-Long Beach-Anaheim, CA
2802                Dallas-Fort Worth-Arlington, TX
2803              Charlotte-Concord-Gastonia, NC-SC
2804              Charlotte-Concord-Gastonia, NC-SC
2805             Los Angeles-Long Beach-Anaheim, CA
2806                Dallas-Fort Worth-Arlington, TX
2807                Dallas-Fort Worth-Arlington, TX
2808        Miami-Fort Lauderdale-Pompano Beach, FL
2809                Dallas-Fort Worth-Arlington, TX
2810        Miami-Fort Lauderdale-Pompano Beach, FL
2811        Miami-Fort Lauderdale-Pompano Beach, FL
2812              Charlotte-Concord-Gastonia, NC-SC
2813                Dallas-Fort Worth-Arlington, TX
2814                Dallas-Fort Worth-Arlington, TX
2815               Austin-Round Rock-Georgetown, TX
2816              Charlotte-Concord-Gastonia, NC-SC
2817              Charlotte-Concord-Gastonia, NC-SC
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV
2819                Dallas-Fort Worth-Arlington, TX
2820                Dallas-Fort Worth-Arlington, TX
2821                Dallas-Fort Worth-Arlington, TX
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2823              Charlotte-Concord-Gastonia, NC-SC
2824              Charlotte-Concord-Gastonia, NC-SC
2825              Charlotte-Concord-Gastonia, NC-SC
2826                      Phoenix-Mesa-Chandler, AZ
2827                Dallas-Fort Worth-Arlington, TX
2828        Miami-Fort Lauderdale-Pompano Beach, FL
2829                               Raleigh-Cary, NC
2830 Nashville-Davidson--Murfreesboro--Franklin, TN
2831                Charleston-North Charleston, SC
2832              Charlotte-Concord-Gastonia, NC-SC
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV
2834                Dallas-Fort Worth-Arlington, TX
2835                               Jacksonville, FL
2836                    Seattle-Tacoma-Bellevue, WA
2837                      Phoenix-Mesa-Chandler, AZ
2838              Charlotte-Concord-Gastonia, NC-SC
2839                Dallas-Fort Worth-Arlington, TX
2840        Miami-Fort Lauderdale-Pompano Beach, FL
2841                                     Tucson, AZ
2842                Dallas-Fort Worth-Arlington, TX
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2844                Dallas-Fort Worth-Arlington, TX
2845              Charlotte-Concord-Gastonia, NC-SC
2846              Charlotte-Concord-Gastonia, NC-SC
2847                  Orlando-Kissimmee-Sanford, FL
2848                                    Madison, WI
2849                Dallas-Fort Worth-Arlington, TX
2850                Dallas-Fort Worth-Arlington, TX
2851                      Phoenix-Mesa-Chandler, AZ
2852              Charlotte-Concord-Gastonia, NC-SC
2853                Dallas-Fort Worth-Arlington, TX
2854        Miami-Fort Lauderdale-Pompano Beach, FL
2855                Dallas-Fort Worth-Arlington, TX
2856                Dallas-Fort Worth-Arlington, TX
2857        Miami-Fort Lauderdale-Pompano Beach, FL
2858             Chicago-Naperville-Elgin, IL-IN-WI
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2860        Miami-Fort Lauderdale-Pompano Beach, FL
2861                Dallas-Fort Worth-Arlington, TX
2862                Dallas-Fort Worth-Arlington, TX
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2865                Dallas-Fort Worth-Arlington, TX
2866                Dallas-Fort Worth-Arlington, TX
2867                 Boston-Cambridge-Newton, MA-NH
2868              Charlotte-Concord-Gastonia, NC-SC
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2870             Chicago-Naperville-Elgin, IL-IN-WI
2871                    Seattle-Tacoma-Bellevue, WA
2872                    Seattle-Tacoma-Bellevue, WA
2873                    Seattle-Tacoma-Bellevue, WA
2874                    Seattle-Tacoma-Bellevue, WA
2875                    Seattle-Tacoma-Bellevue, WA
2876                    Seattle-Tacoma-Bellevue, WA
2877                                           <NA>
2878                                     Juneau, AK
2879             San Diego-Chula Vista-Carlsbad, CA
2880                    Seattle-Tacoma-Bellevue, WA
2881                                Albuquerque, NM
2882                  Orlando-Kissimmee-Sanford, FL
2883                    Seattle-Tacoma-Bellevue, WA
2884             Los Angeles-Long Beach-Anaheim, CA
2885                                   Columbus, OH
2886                           Cincinnati, OH-KY-IN
2887               Indianapolis-Carmel-Anderson, IN
2888                         Milwaukee-Waukesha, WI
2889                    Kahului-Wailuku-Lahaina, HI
2890                              Oklahoma City, OK
2891                    Omaha-Council Bluffs, NE-IA
2892                               Raleigh-Cary, NC
2893                  San Antonio-New Braunfels, TX
2894                               St. Louis, MO-IL
2895                                     Tucson, AZ
2896                             Urban Honolulu, HI
2897             Los Angeles-Long Beach-Anaheim, CA
2898        Miami-Fort Lauderdale-Pompano Beach, FL
2899                      Cape Coral-Fort Myers, FL
2900                                   Key West, FL
2901                  San Antonio-New Braunfels, TX
2902                                   Savannah, GA
2903                  Orlando-Kissimmee-Sanford, FL
2904                 Boston-Cambridge-Newton, MA-NH
2905             Los Angeles-Long Beach-Anaheim, CA
2906                 Boston-Cambridge-Newton, MA-NH
2907                 Boston-Cambridge-Newton, MA-NH
2908                    San Juan-Bayamón-Caguas, PR
2909                                           <NA>
2910                                           <NA>
2911                               Jacksonville, FL
2912                      Providence-Warwick, RI-MA
2913             San Diego-Chula Vista-Carlsbad, CA
2914                    San Juan-Bayamón-Caguas, PR
2915                             Salt Lake City, UT
2916                  Orlando-Kissimmee-Sanford, FL
2917            Tampa-St. Petersburg-Clearwater, FL
2918          New York-Newark-Jersey City, NY-NJ-PA
2919                 Boston-Cambridge-Newton, MA-NH
2920        Miami-Fort Lauderdale-Pompano Beach, FL
2921             Los Angeles-Long Beach-Anaheim, CA
2922          New York-Newark-Jersey City, NY-NJ-PA
2923                          Aguadilla-Isabela, PR
2924                                   Key West, FL
2925           Houston-The Woodlands-Sugar Land, TX
2926                  San Antonio-New Braunfels, TX
2927              North Port-Sarasota-Bradenton, FL
2928                      Providence-Warwick, RI-MA
2929          Hartford-East Hartford-Middletown, CT
2930          Hartford-East Hartford-Middletown, CT
2931                 Boston-Cambridge-Newton, MA-NH
2932          New York-Newark-Jersey City, NY-NJ-PA
2933                      Providence-Warwick, RI-MA
2934                  Orlando-Kissimmee-Sanford, FL
2935        Miami-Fort Lauderdale-Pompano Beach, FL
2936             Los Angeles-Long Beach-Anaheim, CA
2937                  Orlando-Kissimmee-Sanford, FL
2938          New York-Newark-Jersey City, NY-NJ-PA
2939          New York-Newark-Jersey City, NY-NJ-PA
2940        Miami-Fort Lauderdale-Pompano Beach, FL
2941                 Boston-Cambridge-Newton, MA-NH
2942          New York-Newark-Jersey City, NY-NJ-PA
2943                               Raleigh-Cary, NC
2944          New York-Newark-Jersey City, NY-NJ-PA
2945          New York-Newark-Jersey City, NY-NJ-PA
2946                             Salt Lake City, UT
2947                        Buffalo-Cheektowaga, NY
2948                Charleston-North Charleston, SC
2949                      Grand Rapids-Kentwood, MI
2950          New York-Newark-Jersey City, NY-NJ-PA
2951                      Providence-Warwick, RI-MA
2952              North Port-Sarasota-Bradenton, FL
2953        Minneapolis-St. Paul-Bloomington, MN-WI
2954                    Detroit-Warren-Dearborn, MI
2955                             Salt Lake City, UT
2956           Atlanta-Sandy Springs-Alpharetta, GA
2957           Atlanta-Sandy Springs-Alpharetta, GA
2958                             Salt Lake City, UT
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV
2960        Minneapolis-St. Paul-Bloomington, MN-WI
2961        Minneapolis-St. Paul-Bloomington, MN-WI
2962        Minneapolis-St. Paul-Bloomington, MN-WI
2963                    Detroit-Warren-Dearborn, MI
2964                    Detroit-Warren-Dearborn, MI
2965           Atlanta-Sandy Springs-Alpharetta, GA
2966           Atlanta-Sandy Springs-Alpharetta, GA
2967           Atlanta-Sandy Springs-Alpharetta, GA
2968           Atlanta-Sandy Springs-Alpharetta, GA
2969                    Detroit-Warren-Dearborn, MI
2970          New York-Newark-Jersey City, NY-NJ-PA
2971        Minneapolis-St. Paul-Bloomington, MN-WI
2972                           Cincinnati, OH-KY-IN
2973                             Salt Lake City, UT
2974                             Salt Lake City, UT
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV
2976           Atlanta-Sandy Springs-Alpharetta, GA
2977                    Detroit-Warren-Dearborn, MI
2978                               Cedar Rapids, IA
2979                                   Fargo, ND-MN
2980                               Raleigh-Cary, NC
2981             Fayetteville-Springdale-Rogers, AR
2982        Miami-Fort Lauderdale-Pompano Beach, FL
2983                               Raleigh-Cary, NC
2984       Little Rock-North Little Rock-Conway, AR
2985                  Orlando-Kissimmee-Sanford, FL
2986                    Portland-South Portland, ME
2987                                   Syracuse, NY
2988               Las Vegas-Henderson-Paradise, NV
2989                          Trenton-Princeton, NJ
2990                  Orlando-Kissimmee-Sanford, FL
2991                      Cape Coral-Fort Myers, FL
2992                     Denver-Aurora-Lakewood, CO
2993                     Denver-Aurora-Lakewood, CO
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV
2995             Chicago-Naperville-Elgin, IL-IN-WI
2996                                Spartanburg, SC
2997     Virginia Beach-Norfolk-Newport News, VA-NC
2998          New York-Newark-Jersey City, NY-NJ-PA
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV
3000                Dallas-Fort Worth-Arlington, TX
3001        Miami-Fort Lauderdale-Pompano Beach, FL
3002                Dallas-Fort Worth-Arlington, TX
3003                Dallas-Fort Worth-Arlington, TX
3004                Dallas-Fort Worth-Arlington, TX
3005               Indianapolis-Carmel-Anderson, IN
3006                                  Asheville, NC
3007                                Bakersfield, CA
3008                          Birmingham-Hoover, AL
3009                                Garden City, KS
3010                                     Laredo, TX
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3012         Crestview-Fort Walton Beach-Destin, FL
3013        Miami-Fort Lauderdale-Pompano Beach, FL
3014                           Cincinnati, OH-KY-IN
3015                                   Savannah, GA
3016                                  Knoxville, TN
3017                                   Columbus, OH
3018                              Evansville, IN-KY
3019       Little Rock-North Little Rock-Conway, AR
3020                  San Antonio-New Braunfels, TX
3021               Austin-Round Rock-Georgetown, TX
3022        Miami-Fort Lauderdale-Pompano Beach, FL
3023                Dallas-Fort Worth-Arlington, TX
3024                  Orlando-Kissimmee-Sanford, FL
3025                  Orlando-Kissimmee-Sanford, FL
3026             Los Angeles-Long Beach-Anaheim, CA
3027               Indianapolis-Carmel-Anderson, IN
3028                         Milwaukee-Waukesha, WI
3029             Los Angeles-Long Beach-Anaheim, CA
3030             Los Angeles-Long Beach-Anaheim, CA
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3033                                Panama City, FL
3034                         Milwaukee-Waukesha, WI
3035                                Tallahassee, FL
3036         Crestview-Fort Walton Beach-Destin, FL
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3038                 Augusta-Richmond County, GA-SC
3039                    Albany-Schenectady-Troy, NY
3040                 Des Moines-West Des Moines, IA
3041                                 Huntsville, AL
3042                                 Montgomery, AL
3043                    Portland-South Portland, ME
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3046              Charlotte-Concord-Gastonia, NC-SC
3047              Charlotte-Concord-Gastonia, NC-SC
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV
3049              Charlotte-Concord-Gastonia, NC-SC
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV
3051                           Cincinnati, OH-KY-IN
3052                Dallas-Fort Worth-Arlington, TX
3053           Riverside-San Bernardino-Ontario, CA
3054                     Denver-Aurora-Lakewood, CO
3055                     Denver-Aurora-Lakewood, CO
3056             San Francisco-Oakland-Berkeley, CA
3057                               Jacksonville, FL
3058           Riverside-San Bernardino-Ontario, CA
3059                                   Savannah, GA
3060                                    Lubbock, TX
3061                       Kingsport-Bristol, TN-VA
3062                      Providence-Warwick, RI-MA
3063                Dallas-Fort Worth-Arlington, TX
3064                    Seattle-Tacoma-Bellevue, WA
3065           Houston-The Woodlands-Sugar Land, TX
3066                     Denver-Aurora-Lakewood, CO
3067                              Oklahoma City, OK
3068                                     Fresno, CA
3069                                    Medford, OR
3070           Houston-The Woodlands-Sugar Land, TX
3071           Houston-The Woodlands-Sugar Land, TX
3072                                   Columbus, OH
3073                              Oklahoma City, OK
3074                    Detroit-Warren-Dearborn, MI
3075                      Phoenix-Mesa-Chandler, AZ
3076             Chicago-Naperville-Elgin, IL-IN-WI
3077             Chicago-Naperville-Elgin, IL-IN-WI
3078                             Kansas City, MO-KS
3079                         Eugene-Springfield, OR
3080                                    Medford, OR
3081           Riverside-San Bernardino-Ontario, CA
3082                  Santa Maria-Santa Barbara, CA
3083                 Des Moines-West Des Moines, IA
3084                             Salt Lake City, UT
3085           Houston-The Woodlands-Sugar Land, TX
3086                    Seattle-Tacoma-Bellevue, WA
3087                                  Fairbanks, AK
3088                                  Anchorage, AK
3089                    Seattle-Tacoma-Bellevue, WA
3090           Riverside-San Bernardino-Ontario, CA
3091                                Walla Walla, WA
3092             San Francisco-Oakland-Berkeley, CA
3093          New York-Newark-Jersey City, NY-NJ-PA
3094             Chicago-Naperville-Elgin, IL-IN-WI
3095             Chicago-Naperville-Elgin, IL-IN-WI
3096             Chicago-Naperville-Elgin, IL-IN-WI
3097           Houston-The Woodlands-Sugar Land, TX
3098                                 Pittsburgh, PA
3099             San Jose-Sunnyvale-Santa Clara, CA
3100                          Aguadilla-Isabela, PR
3101             Los Angeles-Long Beach-Anaheim, CA
3102               Austin-Round Rock-Georgetown, TX
3103                      Cape Coral-Fort Myers, FL
3104                   McAllen-Edinburg-Mission, TX
3105            Portland-Vancouver-Hillsboro, OR-WA
3106             San Diego-Chula Vista-Carlsbad, CA
3107             San Jose-Sunnyvale-Santa Clara, CA
3108                Sacramento-Roseville-Folsom, CA
3109             Los Angeles-Long Beach-Anaheim, CA
3110           Houston-The Woodlands-Sugar Land, TX
3111             San Francisco-Oakland-Berkeley, CA
3112                  Baltimore-Columbia-Towson, MD
3113                           Cleveland-Elyria, OH
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV
3116           Houston-The Woodlands-Sugar Land, TX
3117                     Denver-Aurora-Lakewood, CO
3118                     Denver-Aurora-Lakewood, CO
3119           Houston-The Woodlands-Sugar Land, TX
3120                     Denver-Aurora-Lakewood, CO
3121             San Francisco-Oakland-Berkeley, CA
3122             San Diego-Chula Vista-Carlsbad, CA
3123                                Albuquerque, NM
3124                                    Lubbock, TX
3125               Las Vegas-Henderson-Paradise, NV
3126                               St. Louis, MO-IL
3127             San Francisco-Oakland-Berkeley, CA
3128                Sacramento-Roseville-Folsom, CA
3129 Nashville-Davidson--Murfreesboro--Franklin, TN
3130            Tampa-St. Petersburg-Clearwater, FL
3131                    Albany-Schenectady-Troy, NY
3132               Austin-Round Rock-Georgetown, TX
3133                                   Columbus, OH
3134                Dallas-Fort Worth-Arlington, TX
3135                             Kansas City, MO-KS
3136                          Manchester-Nashua, NH
3137                                   Syracuse, NY
3138                         Milwaukee-Waukesha, WI
3139        Miami-Fort Lauderdale-Pompano Beach, FL
3140                  San Antonio-New Braunfels, TX
3141                Dallas-Fort Worth-Arlington, TX
3142        Miami-Fort Lauderdale-Pompano Beach, FL
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3144               Indianapolis-Carmel-Anderson, IN
3145                              Memphis, TN-MS-AR
3146        Miami-Fort Lauderdale-Pompano Beach, FL
3147                         Milwaukee-Waukesha, WI
3148             San Diego-Chula Vista-Carlsbad, CA
3149                                   Savannah, GA
3150              North Port-Sarasota-Bradenton, FL
3151                      Cape Coral-Fort Myers, FL
3152           Houston-The Woodlands-Sugar Land, TX
3153                             Kansas City, MO-KS
3154                           Colorado Springs, CO
3155                                   Montrose, CO
3156          New York-Newark-Jersey City, NY-NJ-PA
3157                                Albuquerque, NM
3158                             Corpus Christi, TX
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV
3160                                    Jackson, MS
3161                  Orlando-Kissimmee-Sanford, FL
3162                                     Fresno, CA
3163                              Oklahoma City, OK
3164               Las Vegas-Henderson-Paradise, NV
3165           Houston-The Woodlands-Sugar Land, TX
3166                Dallas-Fort Worth-Arlington, TX
3167                               St. Louis, MO-IL
3168               Las Vegas-Henderson-Paradise, NV
3169           Houston-The Woodlands-Sugar Land, TX
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV
3171                  San Antonio-New Braunfels, TX
3172           Houston-The Woodlands-Sugar Land, TX
3173          New York-Newark-Jersey City, NY-NJ-PA
3174                    Detroit-Warren-Dearborn, MI
3175                          Manchester-Nashua, NH
3176                                   Savannah, GA
3177                                Albuquerque, NM
3178          Hartford-East Hartford-Middletown, CT
3179             Los Angeles-Long Beach-Anaheim, CA
3180                  San Antonio-New Braunfels, TX
3181            Tampa-St. Petersburg-Clearwater, FL
3182        Miami-Fort Lauderdale-Pompano Beach, FL
3183 Nashville-Davidson--Murfreesboro--Franklin, TN
3184           Houston-The Woodlands-Sugar Land, TX
3185                             Kansas City, MO-KS
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV
3187 Nashville-Davidson--Murfreesboro--Franklin, TN
3188                              Oklahoma City, OK
3189                                    Wichita, KS
3190               Indianapolis-Carmel-Anderson, IN
3191            Tampa-St. Petersburg-Clearwater, FL
3192             San Francisco-Oakland-Berkeley, CA
3193             Chicago-Naperville-Elgin, IL-IN-WI
3194        Miami-Fort Lauderdale-Pompano Beach, FL
3195                               St. Louis, MO-IL
3196             San Francisco-Oakland-Berkeley, CA
3197             Los Angeles-Long Beach-Anaheim, CA
3198                  Baltimore-Columbia-Towson, MD
3199                                 Pittsburgh, PA
3200                                       Reno, NV
3201                Dallas-Fort Worth-Arlington, TX
3202                           Colorado Springs, CO
3203                               St. Louis, MO-IL
3204           Houston-The Woodlands-Sugar Land, TX
3205               Las Vegas-Henderson-Paradise, NV
3206               Austin-Round Rock-Georgetown, TX
3207                      Cape Coral-Fort Myers, FL
3208                                      Tulsa, OK
3209                               Raleigh-Cary, NC
3210             San Jose-Sunnyvale-Santa Clara, CA
3211          New York-Newark-Jersey City, NY-NJ-PA
3212                                 Pittsburgh, PA
3213               Indianapolis-Carmel-Anderson, IN
3214               Las Vegas-Henderson-Paradise, NV
3215                               St. Louis, MO-IL
3216           Houston-The Woodlands-Sugar Land, TX
3217           Houston-The Woodlands-Sugar Land, TX
3218                                    El Paso, TX
3219                                Tallahassee, FL
3220                      Phoenix-Mesa-Chandler, AZ
3221                                    Salinas, CA
3222                  Santa Maria-Santa Barbara, CA
3223           Houston-The Woodlands-Sugar Land, TX
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV
3225                             Kansas City, MO-KS
3226                                     Bangor, ME
3227                Charleston-North Charleston, SC
3228                                 Pittsburgh, PA
3229                               St. Louis, MO-IL
3230          New York-Newark-Jersey City, NY-NJ-PA
3231                           Cincinnati, OH-KY-IN
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV
3233                           Cleveland-Elyria, OH
3234                               Jacksonville, FL
3235                                    Roanoke, VA
3236                                  Asheville, NC
3237                                  Duluth, MN-WI
3238                                   Savannah, GA
3239                                   Columbus, OH
3240             Chicago-Naperville-Elgin, IL-IN-WI
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV
3242             Chicago-Naperville-Elgin, IL-IN-WI
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV
3244             Chicago-Naperville-Elgin, IL-IN-WI
3245             Chicago-Naperville-Elgin, IL-IN-WI
3246             Chicago-Naperville-Elgin, IL-IN-WI
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV
3248             Chicago-Naperville-Elgin, IL-IN-WI
3249                                  Knoxville, TN
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV
3251                            Charlottesville, VA
3252             Chicago-Naperville-Elgin, IL-IN-WI
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV
3254        Minneapolis-St. Paul-Bloomington, MN-WI
3255                            Gulfport-Biloxi, MS
3256        Minneapolis-St. Paul-Bloomington, MN-WI
3257                                  Rochester, NY
3258                             Chattanooga, TN-GA
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3260                                  Asheville, NC
3261                                    Roanoke, VA
3262                 Boston-Cambridge-Newton, MA-NH
3263           Houston-The Woodlands-Sugar Land, TX
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV
3265                                Panama City, FL
3266                     Denver-Aurora-Lakewood, CO
3267                Dallas-Fort Worth-Arlington, TX
3268                    San Juan-Bayamón-Caguas, PR
3269                           Cleveland-Elyria, OH
3270                                           <NA>
3271                Dallas-Fort Worth-Arlington, TX
3272             Los Angeles-Long Beach-Anaheim, CA
3273                Dallas-Fort Worth-Arlington, TX
3274                    Kahului-Wailuku-Lahaina, HI
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3276                Dallas-Fort Worth-Arlington, TX
3277             Chicago-Naperville-Elgin, IL-IN-WI
3278                           Cincinnati, OH-KY-IN
3279                Dallas-Fort Worth-Arlington, TX
3280                                       Hilo, HI
3281                    Kahului-Wailuku-Lahaina, HI
3282                                           <NA>
3283                                  Anchorage, AK
3284                                  Anchorage, AK
3285                    Seattle-Tacoma-Bellevue, WA
3286        Miami-Fort Lauderdale-Pompano Beach, FL
3287                      Cape Coral-Fort Myers, FL
3288                      Cape Coral-Fort Myers, FL
3289          New York-Newark-Jersey City, NY-NJ-PA
3290                                   Appleton, WI
3291                               Cedar Rapids, IA
3292                Sacramento-Roseville-Folsom, CA
3293                                           <NA>
3294                                           <NA>
3295                                   Savannah, GA
3296           Atlanta-Sandy Springs-Alpharetta, GA
3297           Atlanta-Sandy Springs-Alpharetta, GA
3298           Atlanta-Sandy Springs-Alpharetta, GA
3299        Minneapolis-St. Paul-Bloomington, MN-WI
3300          New York-Newark-Jersey City, NY-NJ-PA
3301                                   Key West, FL
3302                           Dayton-Kettering, OH
3303                               Texarkana, TX-AR
3304                Dallas-Fort Worth-Arlington, TX
3305                                      Akron, OH
3306         Deltona-Daytona Beach-Ormond Beach, FL
3307          New York-Newark-Jersey City, NY-NJ-PA
3308                                Tallahassee, FL
3309              Charlotte-Concord-Gastonia, NC-SC
3310                           Cleveland-Elyria, OH
3311                                   Syracuse, NY
3312                      Phoenix-Mesa-Chandler, AZ
3313                                  Kalispell, MT
3314             San Francisco-Oakland-Berkeley, CA
3315                                 Jackson, WY-ID
3316                             Urban Honolulu, HI
3317             Los Angeles-Long Beach-Anaheim, CA
3318                                    Edwards, CO
3319           Houston-The Woodlands-Sugar Land, TX
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV
3321                     Denver-Aurora-Lakewood, CO
3322 Nashville-Davidson--Murfreesboro--Franklin, TN
3323             San Diego-Chula Vista-Carlsbad, CA
3324                                Albuquerque, NM
3325             San Diego-Chula Vista-Carlsbad, CA
3326             Los Angeles-Long Beach-Anaheim, CA
3327           Riverside-San Bernardino-Ontario, CA
3328                  Orlando-Kissimmee-Sanford, FL
3329             Chicago-Naperville-Elgin, IL-IN-WI
3330                  Baltimore-Columbia-Towson, MD
3331                       New Orleans-Metairie, LA
3332             Chicago-Naperville-Elgin, IL-IN-WI
3333             San Francisco-Oakland-Berkeley, CA
3334                    San Juan-Bayamón-Caguas, PR
3335           Houston-The Woodlands-Sugar Land, TX
3336                                     Peoria, IL
3337                 Pensacola-Ferry Pass-Brent, FL
3338                                 Rapid City, SD
3339                                    Bozeman, MT
3340                Charleston-North Charleston, SC
3341     Virginia Beach-Norfolk-Newport News, VA-NC
3342                Dallas-Fort Worth-Arlington, TX
3343                Hilton Head Island-Bluffton, SC
3344                                   Appleton, WI
3345                    Omaha-Council Bluffs, NE-IA
3346          New York-Newark-Jersey City, NY-NJ-PA
3347        Miami-Fort Lauderdale-Pompano Beach, FL
3348                    San Juan-Bayamón-Caguas, PR
3349                                     Bangor, ME
3350                      Grand Rapids-Kentwood, MI
3351                                     Helena, MT
3352                    Shreveport-Bossier City, LA
3353                     Denver-Aurora-Lakewood, CO
3354                             Salt Lake City, UT
3355                    Kahului-Wailuku-Lahaina, HI
3356                                 Fort Wayne, IN
3357                      Phoenix-Mesa-Chandler, AZ
3358                                   Richmond, VA
3359            Tampa-St. Petersburg-Clearwater, FL
3360                Dallas-Fort Worth-Arlington, TX
3361                      Phoenix-Mesa-Chandler, AZ
3362                Dallas-Fort Worth-Arlington, TX
3363             Chicago-Naperville-Elgin, IL-IN-WI
3364                                           <NA>
3365                Dallas-Fort Worth-Arlington, TX
3366                                   Key West, FL
3367                                Tallahassee, FL
3368                             Salt Lake City, UT
3369        Miami-Fort Lauderdale-Pompano Beach, FL
3370                                Sioux Falls, SD
3371                Dallas-Fort Worth-Arlington, TX
3372                                   Missoula, MT
3373                 Pensacola-Ferry Pass-Brent, FL
3374                          Birmingham-Hoover, AL
3375                                   Savannah, GA
3376                                Idaho Falls, ID
3377        Minneapolis-St. Paul-Bloomington, MN-WI
3378                                 Boise City, ID
3379        Minneapolis-St. Paul-Bloomington, MN-WI
3380                           Glenwood Springs, CO
3381           Houston-The Woodlands-Sugar Land, TX
3382                             Urban Honolulu, HI
3383                                    Bozeman, MT
3384                                    Edwards, CO
3385               Austin-Round Rock-Georgetown, TX
3386             San Francisco-Oakland-Berkeley, CA
3387                      Cape Coral-Fort Myers, FL
3388             San Francisco-Oakland-Berkeley, CA
3389                  Orlando-Kissimmee-Sanford, FL
3390                Dallas-Fort Worth-Arlington, TX
3391                                Panama City, FL
3392                                 Wilmington, NC
3393                                           <NA>
3394                 Boston-Cambridge-Newton, MA-NH
3395                    Kahului-Wailuku-Lahaina, HI
3396        Minneapolis-St. Paul-Bloomington, MN-WI
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV
3398                             Urban Honolulu, HI
3399                             Urban Honolulu, HI
3400                                       Hilo, HI
3401                                   Montrose, CO
3402                                  Lafayette, LA
3403           Atlanta-Sandy Springs-Alpharetta, GA
3404           Atlanta-Sandy Springs-Alpharetta, GA
3405                              Wausau-Weston, WI
3406                 Des Moines-West Des Moines, IA
3407          New York-Newark-Jersey City, NY-NJ-PA
3408           Atlanta-Sandy Springs-Alpharetta, GA
3409        Minneapolis-St. Paul-Bloomington, MN-WI
3410           Atlanta-Sandy Springs-Alpharetta, GA
3411                    San Juan-Bayamón-Caguas, PR
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV
3413                      Phoenix-Mesa-Chandler, AZ
3414        Miami-Fort Lauderdale-Pompano Beach, FL
3415          Hartford-East Hartford-Middletown, CT
3416                                  Rochester, NY
3417             San Diego-Chula Vista-Carlsbad, CA
3418                    Seattle-Tacoma-Bellevue, WA
3419                                           <NA>
3420                                           <NA>
3421                                       Reno, NV
3422                                    Edwards, CO
3423                                     Fresno, CA
3424     Virginia Beach-Norfolk-Newport News, VA-NC
3425                               Raleigh-Cary, NC
3426                Dallas-Fort Worth-Arlington, TX
3427                Dallas-Fort Worth-Arlington, TX
3428                Dallas-Fort Worth-Arlington, TX
3429                Dallas-Fort Worth-Arlington, TX
3430               Indianapolis-Carmel-Anderson, IN
3431                      Phoenix-Mesa-Chandler, AZ
3432                Dallas-Fort Worth-Arlington, TX
3433                Dallas-Fort Worth-Arlington, TX
3434                    Seattle-Tacoma-Bellevue, WA
3435                           Cleveland-Elyria, OH
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3437             Chicago-Naperville-Elgin, IL-IN-WI
3438                Dallas-Fort Worth-Arlington, TX
3439          New York-Newark-Jersey City, NY-NJ-PA
3440                    Seattle-Tacoma-Bellevue, WA
3441                    Seattle-Tacoma-Bellevue, WA
3442             San Francisco-Oakland-Berkeley, CA
3443                                  Anchorage, AK
3444            Portland-Vancouver-Hillsboro, OR-WA
3445               Austin-Round Rock-Georgetown, TX
3446             Los Angeles-Long Beach-Anaheim, CA
3447                  Orlando-Kissimmee-Sanford, FL
3448                    Kahului-Wailuku-Lahaina, HI
3449                    Seattle-Tacoma-Bellevue, WA
3450                                       Hilo, HI
3451                                Albuquerque, NM
3452                Charleston-North Charleston, SC
3453                                     Juneau, AK
3454                                  Ketchikan, AK
3455                       New Orleans-Metairie, LA
3456                    Seattle-Tacoma-Bellevue, WA
3457                                  Anchorage, AK
3458                                       Hilo, HI
3459            Portland-Vancouver-Hillsboro, OR-WA
3460                    San Juan-Bayamón-Caguas, PR
3461                       New Orleans-Metairie, LA
3462            Portland-Vancouver-Hillsboro, OR-WA
3463           Riverside-San Bernardino-Ontario, CA
3464                               Jacksonville, FL
3465        Miami-Fort Lauderdale-Pompano Beach, FL
3466                             Vineyard Haven, MA
3467          Hartford-East Hartford-Middletown, CT
3468         Deltona-Daytona Beach-Ormond Beach, FL
3469                                    Wichita, KS
3470        Minneapolis-St. Paul-Bloomington, MN-WI
3471             San Jose-Sunnyvale-Santa Clara, CA
3472           Atlanta-Sandy Springs-Alpharetta, GA
3473                                           <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA
3475           Atlanta-Sandy Springs-Alpharetta, GA
3476           Atlanta-Sandy Springs-Alpharetta, GA
3477           Atlanta-Sandy Springs-Alpharetta, GA
3478        Minneapolis-St. Paul-Bloomington, MN-WI
3479                             Salt Lake City, UT
3480                             Salt Lake City, UT
3481                              Memphis, TN-MS-AR
3482                    Detroit-Warren-Dearborn, MI
3483             Los Angeles-Long Beach-Anaheim, CA
3484        Minneapolis-St. Paul-Bloomington, MN-WI
3485           Atlanta-Sandy Springs-Alpharetta, GA
3486                                   Billings, MT
3487                    Detroit-Warren-Dearborn, MI
3488                             Salt Lake City, UT
3489           Atlanta-Sandy Springs-Alpharetta, GA
3490             Chicago-Naperville-Elgin, IL-IN-WI
3491                Dallas-Fort Worth-Arlington, TX
3492                                   Billings, MT
3493                                Baton Rouge, LA
3494                                    Jackson, MS
3495              North Port-Sarasota-Bradenton, FL
3496        Miami-Fort Lauderdale-Pompano Beach, FL
3497                          Birmingham-Hoover, AL
3498                  Orlando-Kissimmee-Sanford, FL
3499                                Columbus, GA-AL
3500                Burlington-South Burlington, VT
3501              Charlotte-Concord-Gastonia, NC-SC
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3503         Deltona-Daytona Beach-Ormond Beach, FL
3504                     Denver-Aurora-Lakewood, CO
3505        Minneapolis-St. Paul-Bloomington, MN-WI
3506                                   Bismarck, ND
3507                             Grand Junction, CO
3508                San Luis Obispo-Paso Robles, CA
3509                                  Knoxville, TN
3510                           Glenwood Springs, CO
3511                                    Durango, CO
3512                             Grand Junction, CO
3513        Minneapolis-St. Paul-Bloomington, MN-WI
3514        Minneapolis-St. Paul-Bloomington, MN-WI
3515                    Detroit-Warren-Dearborn, MI
3516                           Cleveland-Elyria, OH
3517                                  Kalispell, MT
3518                             Salt Lake City, UT
3519                        Harrisburg-Carlisle, PA
3520                                     Hailey, ID
3521           Riverside-San Bernardino-Ontario, CA
3522                        Santa Rosa-Petaluma, CA
3523                                    Edwards, CO
3524                        Santa Rosa-Petaluma, CA
3525             Chicago-Naperville-Elgin, IL-IN-WI
3526                Dallas-Fort Worth-Arlington, TX
3527                                 Jackson, WY-ID
3528             San Diego-Chula Vista-Carlsbad, CA
3529                                   Billings, MT
3530                         Eugene-Springfield, OR
3531                                   Missoula, MT
3532                              Oklahoma City, OK
3533                    Omaha-Council Bluffs, NE-IA
3534                      Phoenix-Mesa-Chandler, AZ
3535                                 Boise City, ID
3536             San Diego-Chula Vista-Carlsbad, CA
3537                                    El Paso, TX
3538                  Santa Maria-Santa Barbara, CA
3539                                   Richmond, VA
3540                  San Antonio-New Braunfels, TX
3541                                           <NA>
3542                    San Juan-Bayamón-Caguas, PR
3543           Houston-The Woodlands-Sugar Land, TX
3544                     Denver-Aurora-Lakewood, CO
3545                     Denver-Aurora-Lakewood, CO
3546                Burlington-South Burlington, VT
3547           Houston-The Woodlands-Sugar Land, TX
3548             San Francisco-Oakland-Berkeley, CA
3549                                       Hilo, HI
3550                                      Kapaa, HI
3551                             Urban Honolulu, HI
3552             Chicago-Naperville-Elgin, IL-IN-WI
3553                     Denver-Aurora-Lakewood, CO
3554                    Seattle-Tacoma-Bellevue, WA
3555              North Port-Sarasota-Bradenton, FL
3556                                   Columbus, OH
3557                  Orlando-Kissimmee-Sanford, FL
3558             San Diego-Chula Vista-Carlsbad, CA
3559                                    El Paso, TX
3560                    Kahului-Wailuku-Lahaina, HI
3561               Austin-Round Rock-Georgetown, TX
3562                    Kahului-Wailuku-Lahaina, HI
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3564             San Diego-Chula Vista-Carlsbad, CA
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV
3566                             Kansas City, MO-KS
3567               Indianapolis-Carmel-Anderson, IN
3568                                    Midland, TX
3569                      Phoenix-Mesa-Chandler, AZ
3570               Indianapolis-Carmel-Anderson, IN
3571              Charlotte-Concord-Gastonia, NC-SC
3572                             Kansas City, MO-KS
3573              Allentown-Bethlehem-Easton, PA-NJ
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3575                        Buffalo-Cheektowaga, NY
3576                                    Durango, CO
3577           Houston-The Woodlands-Sugar Land, TX
3578                                Springfield, MO
3579             Los Angeles-Long Beach-Anaheim, CA
3580                                Bloomington, IL
3581                              Evansville, IN-KY
3582                    Detroit-Warren-Dearborn, MI
3583                                   Syracuse, NY
3584                            Charlottesville, VA
3585                                    Madison, WI
3586                                    Madison, WI
3587             Fayetteville-Springdale-Rogers, AR
3588                    Detroit-Warren-Dearborn, MI
3589           Atlanta-Sandy Springs-Alpharetta, GA
3590                Dallas-Fort Worth-Arlington, TX
3591                Dallas-Fort Worth-Arlington, TX
3592                                   Richmond, VA
3593                Dallas-Fort Worth-Arlington, TX
3594                Dallas-Fort Worth-Arlington, TX
3595               Austin-Round Rock-Georgetown, TX
3596                                    Bozeman, MT
3597                    Omaha-Council Bluffs, NE-IA
3598                      Phoenix-Mesa-Chandler, AZ
3599                Dallas-Fort Worth-Arlington, TX
3600                Dallas-Fort Worth-Arlington, TX
3601                Dallas-Fort Worth-Arlington, TX
3602                                       Hilo, HI
3603             Chicago-Naperville-Elgin, IL-IN-WI
3604                Dallas-Fort Worth-Arlington, TX
3605              Charlotte-Concord-Gastonia, NC-SC
3606                      Phoenix-Mesa-Chandler, AZ
3607               Austin-Round Rock-Georgetown, TX
3608            Portland-Vancouver-Hillsboro, OR-WA
3609            Portland-Vancouver-Hillsboro, OR-WA
3610                                  Anchorage, AK
3611                                     Tucson, AZ
3612                                       Hilo, HI
3613           Riverside-San Bernardino-Ontario, CA
3614                     Spokane-Spokane Valley, WA
3615                                           <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA
3617                                    Bozeman, MT
3618                Sacramento-Roseville-Folsom, CA
3619                                   Syracuse, NY
3620             Fayetteville-Springdale-Rogers, AR
3621                    Detroit-Warren-Dearborn, MI
3622                                 Boise City, ID
3623           Atlanta-Sandy Springs-Alpharetta, GA
3624        Miami-Fort Lauderdale-Pompano Beach, FL
3625                             Chattanooga, TN-GA
3626                      College Station-Bryan, TX
3627                              Evansville, IN-KY
3628                                     Mobile, AL
3629        Miami-Fort Lauderdale-Pompano Beach, FL
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV
3631             Louisville/Jefferson County, KY-IN
3632                Dallas-Fort Worth-Arlington, TX
3633        Miami-Fort Lauderdale-Pompano Beach, FL
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV
3635                    Omaha-Council Bluffs, NE-IA
3636                 Pensacola-Ferry Pass-Brent, FL
3637              Charlotte-Concord-Gastonia, NC-SC
3638              Charlotte-Concord-Gastonia, NC-SC
3639                                  Knoxville, TN
3640             San Francisco-Oakland-Berkeley, CA
3641                             Salt Lake City, UT
3642                    South Bend-Mishawaka, IN-MI
3643                      Grand Rapids-Kentwood, MI
3644                              Memphis, TN-MS-AR
3645     Virginia Beach-Norfolk-Newport News, VA-NC
3646             San Diego-Chula Vista-Carlsbad, CA
3647                                 Rapid City, SD
3648                           Glenwood Springs, CO
3649                     Denver-Aurora-Lakewood, CO
3650                                   Montrose, CO
3651           Riverside-San Bernardino-Ontario, CA
3652                                    Medford, OR
3653                                       Bend, OR
3654                                      Tulsa, OK
3655                    Seattle-Tacoma-Bellevue, WA
3656                  Santa Maria-Santa Barbara, CA
3657                        Santa Rosa-Petaluma, CA
3658                                 Jackson, WY-ID
3659          New York-Newark-Jersey City, NY-NJ-PA
3660            Portland-Vancouver-Hillsboro, OR-WA
3661           Houston-The Woodlands-Sugar Land, TX
3662                     Denver-Aurora-Lakewood, CO
3663          New York-Newark-Jersey City, NY-NJ-PA
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV
3665           Houston-The Woodlands-Sugar Land, TX
3666                                       Reno, NV
3667               Austin-Round Rock-Georgetown, TX
3668           Houston-The Woodlands-Sugar Land, TX
3669                         Milwaukee-Waukesha, WI
3670             San Jose-Sunnyvale-Santa Clara, CA
3671                    Kahului-Wailuku-Lahaina, HI
3672                                Albuquerque, NM
3673                                      Kapaa, HI
3674                                 Pittsburgh, PA
3675               Las Vegas-Henderson-Paradise, NV
3676             Chicago-Naperville-Elgin, IL-IN-WI
3677                                       Hilo, HI
3678                  San Antonio-New Braunfels, TX
3679                                 Huntsville, AL
3680                      Phoenix-Mesa-Chandler, AZ
3681                      Phoenix-Mesa-Chandler, AZ
3682                      Grand Rapids-Kentwood, MI
3683                                Spartanburg, SC
3684                Dallas-Fort Worth-Arlington, TX
3685           Houston-The Woodlands-Sugar Land, TX
3686                           Cleveland-Elyria, OH
3687                                   Savannah, GA
3688                    South Bend-Mishawaka, IN-MI
3689          New York-Newark-Jersey City, NY-NJ-PA
3690          Hartford-East Hartford-Middletown, CT
3691                           Dayton-Kettering, OH
3692                                     Mobile, AL
3693                                  Knoxville, TN
3694                           Dayton-Kettering, OH
3695     Virginia Beach-Norfolk-Newport News, VA-NC
3696                                  Knoxville, TN
3697           Houston-The Woodlands-Sugar Land, TX
3698                                   Columbia, SC
3699          New York-Newark-Jersey City, NY-NJ-PA
3700                Dallas-Fort Worth-Arlington, TX
3701                Dallas-Fort Worth-Arlington, TX
3702                 Des Moines-West Des Moines, IA
3703             San Diego-Chula Vista-Carlsbad, CA
3704                Dallas-Fort Worth-Arlington, TX
3705                Charleston-North Charleston, SC
3706                                   Key West, FL
3707                                Spartanburg, SC
3708                                           <NA>
3709                             Urban Honolulu, HI
3710               Indianapolis-Carmel-Anderson, IN
3711                              Oklahoma City, OK
3712                  San Antonio-New Braunfels, TX
3713                  Santa Maria-Santa Barbara, CA
3714                Dallas-Fort Worth-Arlington, TX
3715                                 Jackson, WY-ID
3716             Los Angeles-Long Beach-Anaheim, CA
3717             Chicago-Naperville-Elgin, IL-IN-WI
3718             Chicago-Naperville-Elgin, IL-IN-WI
3719          Hartford-East Hartford-Middletown, CT
3720        Miami-Fort Lauderdale-Pompano Beach, FL
3721                Dallas-Fort Worth-Arlington, TX
3722               Austin-Round Rock-Georgetown, TX
3723              Charlotte-Concord-Gastonia, NC-SC
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3725                                           <NA>
3726                                     Juneau, AK
3727                                  Anchorage, AK
3728                                  Rochester, NY
3729        Miami-Fort Lauderdale-Pompano Beach, FL
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV
3731          New York-Newark-Jersey City, NY-NJ-PA
3732                                    Madison, WI
3733                    Detroit-Warren-Dearborn, MI
3734                      Providence-Warwick, RI-MA
3735                                   Syracuse, NY
3736                                  Lafayette, LA
3737                                Tallahassee, FL
3738        Miami-Fort Lauderdale-Pompano Beach, FL
3739                  Orlando-Kissimmee-Sanford, FL
3740              Charlotte-Concord-Gastonia, NC-SC
3741                               Cedar Rapids, IA
3742                              Memphis, TN-MS-AR
3743                        Buffalo-Cheektowaga, NY
3744                      Grand Rapids-Kentwood, MI
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV
3747                                  Manhattan, KS
3748                                     Tucson, AZ
3749                                   Montrose, CO
3750                     Denver-Aurora-Lakewood, CO
3751                     Scranton--Wilkes-Barre, PA
3752                                   Syracuse, NY
3753                                 Jackson, WY-ID
3754                                    Roswell, NM
3755                     Denver-Aurora-Lakewood, CO
3756                                    Bozeman, MT
3757                             Grand Junction, CO
3758                                  Anchorage, AK
3759             Chicago-Naperville-Elgin, IL-IN-WI
3760           Houston-The Woodlands-Sugar Land, TX
3761                Sacramento-Roseville-Folsom, CA
3762                                Albuquerque, NM
3763                             Urban Honolulu, HI
3764                               Raleigh-Cary, NC
3765                  Baltimore-Columbia-Towson, MD
3766             San Diego-Chula Vista-Carlsbad, CA
3767             San Jose-Sunnyvale-Santa Clara, CA
3768                                Albuquerque, NM
3769              North Port-Sarasota-Bradenton, FL
3770                    Albany-Schenectady-Troy, NY
3771                     Denver-Aurora-Lakewood, CO
3772            Tampa-St. Petersburg-Clearwater, FL
3773                             Salt Lake City, UT
3774                          Birmingham-Hoover, AL
3775                                   Columbus, OH
3776             Louisville/Jefferson County, KY-IN
3777                        Buffalo-Cheektowaga, NY
3778                  San Antonio-New Braunfels, TX
3779                      Phoenix-Mesa-Chandler, AZ
3780                                   Columbus, OH
3781            Portland-Vancouver-Hillsboro, OR-WA
3782                  Orlando-Kissimmee-Sanford, FL
3783            Tampa-St. Petersburg-Clearwater, FL
3784            Tampa-St. Petersburg-Clearwater, FL
3785                Dallas-Fort Worth-Arlington, TX
3786             Chicago-Naperville-Elgin, IL-IN-WI
3787                        Buffalo-Cheektowaga, NY
3788             Louisville/Jefferson County, KY-IN
3789        Miami-Fort Lauderdale-Pompano Beach, FL
3790                Dallas-Fort Worth-Arlington, TX
3791           Houston-The Woodlands-Sugar Land, TX
3792                               St. Louis, MO-IL
3793                Sacramento-Roseville-Folsom, CA
3794                               Cedar Rapids, IA
3795                                   Fargo, ND-MN
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV
3797           Houston-The Woodlands-Sugar Land, TX
3798                               Cedar Rapids, IA
3799                                   Fargo, ND-MN
3800                      Grand Rapids-Kentwood, MI
3801                           Dayton-Kettering, OH
3802                                 Pittsburgh, PA
3803                                    Roanoke, VA
3804                                 Huntsville, AL
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3807             Chicago-Naperville-Elgin, IL-IN-WI
3808              Charlotte-Concord-Gastonia, NC-SC
3809          New York-Newark-Jersey City, NY-NJ-PA
3810                  Orlando-Kissimmee-Sanford, FL
3811          New York-Newark-Jersey City, NY-NJ-PA
3812                               Worcester, MA-CT
3813                               Worcester, MA-CT
3814        Miami-Fort Lauderdale-Pompano Beach, FL
3815          New York-Newark-Jersey City, NY-NJ-PA
3816                                           <NA>
3817                    San Juan-Bayamón-Caguas, PR
3818           Atlanta-Sandy Springs-Alpharetta, GA
3819                  Orlando-Kissimmee-Sanford, FL
3820                      Cape Coral-Fort Myers, FL
3821                                Sioux Falls, SD
3822                      Brownsville-Harlingen, TX
3823           Riverside-San Bernardino-Ontario, CA
3824               Las Vegas-Henderson-Paradise, NV
3825               Las Vegas-Henderson-Paradise, NV
3826               Las Vegas-Henderson-Paradise, NV
3827                  Orlando-Kissimmee-Sanford, FL
3828                  Orlando-Kissimmee-Sanford, FL
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3830                      Cape Coral-Fort Myers, FL
3831                               St. Louis, MO-IL
3832                           Cleveland-Elyria, OH
3833           Riverside-San Bernardino-Ontario, CA
3834                          Trenton-Princeton, NJ
3835          New York-Newark-Jersey City, NY-NJ-PA
3836                  Orlando-Kissimmee-Sanford, FL
3837                      Cape Coral-Fort Myers, FL
3838          Hartford-East Hartford-Middletown, CT
3839                          Trenton-Princeton, NJ
3840          New York-Newark-Jersey City, NY-NJ-PA
3841                  Orlando-Kissimmee-Sanford, FL
3842            Tampa-St. Petersburg-Clearwater, FL
3843            Tampa-St. Petersburg-Clearwater, FL
3844                      Grand Rapids-Kentwood, MI
3845           Atlanta-Sandy Springs-Alpharetta, GA
3846             Chicago-Naperville-Elgin, IL-IN-WI
3847        Miami-Fort Lauderdale-Pompano Beach, FL
3848            Tampa-St. Petersburg-Clearwater, FL
3849        Miami-Fort Lauderdale-Pompano Beach, FL
3850        Miami-Fort Lauderdale-Pompano Beach, FL
3851            Tampa-St. Petersburg-Clearwater, FL
3852                      Cape Coral-Fort Myers, FL
3853             Los Angeles-Long Beach-Anaheim, CA
3854                    Atlantic City-Hammonton, NJ
3855             Louisville/Jefferson County, KY-IN
3856                 Pensacola-Ferry Pass-Brent, FL
3857                           Cleveland-Elyria, OH
3858                                 Pittsburgh, PA
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3861                    Atlantic City-Hammonton, NJ
3862                          Manchester-Nashua, NH
3863                                           <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA
3865                                 Pittsburgh, PA
3866          New York-Newark-Jersey City, NY-NJ-PA
3867                  Orlando-Kissimmee-Sanford, FL
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3870                    Atlantic City-Hammonton, NJ
3871                                 Pittsburgh, PA
3872        Miami-Fort Lauderdale-Pompano Beach, FL
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV
3874                                    Salinas, CA
3875                                Bakersfield, CA
3876                                   Billings, MT
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV
3878                             Kansas City, MO-KS
3879           Houston-The Woodlands-Sugar Land, TX
3880             Chicago-Naperville-Elgin, IL-IN-WI
3881                             Urban Honolulu, HI
3882                              Oklahoma City, OK
3883          New York-Newark-Jersey City, NY-NJ-PA
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV
3885        Minneapolis-St. Paul-Bloomington, MN-WI
3886                                  Asheville, NC
3887               Indianapolis-Carmel-Anderson, IN
3888        Miami-Fort Lauderdale-Pompano Beach, FL
3889        Minneapolis-St. Paul-Bloomington, MN-WI
3890        Minneapolis-St. Paul-Bloomington, MN-WI
3891                                    Lubbock, TX
3892                                           <NA>
3893                                    Edwards, CO
3894            Portland-Vancouver-Hillsboro, OR-WA
3895                             Salt Lake City, UT
3896                                   Richmond, VA
3897                                       Hilo, HI
3898                               St. Louis, MO-IL
3899                                  Rochester, MN
3900                                  Green Bay, WI
3901                             Kansas City, MO-KS
3902                              Oklahoma City, OK
3903              North Port-Sarasota-Bradenton, FL
3904             Fayetteville-Springdale-Rogers, AR
3905                 Des Moines-West Des Moines, IA
3906                                           <NA>
3907                                  Anchorage, AK
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV
3909          New York-Newark-Jersey City, NY-NJ-PA
3910          New York-Newark-Jersey City, NY-NJ-PA
3911                           Cincinnati, OH-KY-IN
3912                                    El Paso, TX
3913                                  Rochester, NY
3914                           Cincinnati, OH-KY-IN
3915                             Salt Lake City, UT
3916        Minneapolis-St. Paul-Bloomington, MN-WI
3917     Virginia Beach-Norfolk-Newport News, VA-NC
3918                Dallas-Fort Worth-Arlington, TX
3919                Dallas-Fort Worth-Arlington, TX
3920              Charlotte-Concord-Gastonia, NC-SC
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV
3922     Virginia Beach-Norfolk-Newport News, VA-NC
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3924                                Spartanburg, SC
3925                                    Madison, WI
3926     Virginia Beach-Norfolk-Newport News, VA-NC
3927                     Denver-Aurora-Lakewood, CO
3928                           Glenwood Springs, CO
3929                                  Kalispell, MT
3930                                    Medford, OR
3931                                      Minot, ND
3932                                Idaho Falls, ID
3933                                   Santa Fe, NM
3934                                    Medford, OR
3935             San Francisco-Oakland-Berkeley, CA
3936             Los Angeles-Long Beach-Anaheim, CA
3937                     Denver-Aurora-Lakewood, CO
3938           Houston-The Woodlands-Sugar Land, TX
3939               Indianapolis-Carmel-Anderson, IN
3940             Los Angeles-Long Beach-Anaheim, CA
3941               Las Vegas-Henderson-Paradise, NV
3942                      Phoenix-Mesa-Chandler, AZ
3943                               Jacksonville, FL
3944           Houston-The Woodlands-Sugar Land, TX
3945                Dallas-Fort Worth-Arlington, TX
3946                          Steamboat Springs, CO
3947                               Raleigh-Cary, NC
3948                      Cape Coral-Fort Myers, FL
3949                                      Tulsa, OK
3950           Houston-The Woodlands-Sugar Land, TX
3951                      Phoenix-Mesa-Chandler, AZ
3952                      Phoenix-Mesa-Chandler, AZ
3953                                Bloomington, IL
3954        Miami-Fort Lauderdale-Pompano Beach, FL
3955                Hilton Head Island-Bluffton, SC
3956          New York-Newark-Jersey City, NY-NJ-PA
3957                                   Key West, FL
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV
3959                         Milwaukee-Waukesha, WI
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV
3961           Atlanta-Sandy Springs-Alpharetta, GA
3962                Dallas-Fort Worth-Arlington, TX
3963              Charlotte-Concord-Gastonia, NC-SC
3964              Charlotte-Concord-Gastonia, NC-SC
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV
3967                Dallas-Fort Worth-Arlington, TX
3968               Austin-Round Rock-Georgetown, TX
3969          New York-Newark-Jersey City, NY-NJ-PA
3970        Miami-Fort Lauderdale-Pompano Beach, FL
3971                                      Tulsa, OK
3972                Dallas-Fort Worth-Arlington, TX
3973             Chicago-Naperville-Elgin, IL-IN-WI
3974                      Phoenix-Mesa-Chandler, AZ
3975              Charlotte-Concord-Gastonia, NC-SC
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3978              Charlotte-Concord-Gastonia, NC-SC
3979              Charlotte-Concord-Gastonia, NC-SC
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV
3981             Chicago-Naperville-Elgin, IL-IN-WI
3982                                   Columbus, OH
3983                Dallas-Fort Worth-Arlington, TX
3984              Charlotte-Concord-Gastonia, NC-SC
3985              Charlotte-Concord-Gastonia, NC-SC
3986                    Seattle-Tacoma-Bellevue, WA
3987            Portland-Vancouver-Hillsboro, OR-WA
3988            Portland-Vancouver-Hillsboro, OR-WA
3989                        Buffalo-Cheektowaga, NY
3990          New York-Newark-Jersey City, NY-NJ-PA
3991        Miami-Fort Lauderdale-Pompano Beach, FL
3992          New York-Newark-Jersey City, NY-NJ-PA
3993             Louisville/Jefferson County, KY-IN
3994                    Detroit-Warren-Dearborn, MI
3995                    Detroit-Warren-Dearborn, MI
3996        Minneapolis-St. Paul-Bloomington, MN-WI
3997           Atlanta-Sandy Springs-Alpharetta, GA
3998                           Cincinnati, OH-KY-IN
3999                    Detroit-Warren-Dearborn, MI
4000                    Detroit-Warren-Dearborn, MI
4001                    San Juan-Bayamón-Caguas, PR
4002                                   Syracuse, NY
4003                                      Tulsa, OK
4004             San Diego-Chula Vista-Carlsbad, CA
4005             Los Angeles-Long Beach-Anaheim, CA
4006                      Cape Coral-Fort Myers, FL
4007                Sacramento-Roseville-Folsom, CA
4008            Davenport-Moline-Rock Island, IA-IL
4009                          Birmingham-Hoover, AL
4010                                  Knoxville, TN
4011                                     Tucson, AZ
4012            Portland-Vancouver-Hillsboro, OR-WA
4013               Indianapolis-Carmel-Anderson, IN
4014             San Diego-Chula Vista-Carlsbad, CA
4015                 Augusta-Richmond County, GA-SC
4016          Hartford-East Hartford-Middletown, CT
4017                               Raleigh-Cary, NC
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4019                                   Key West, FL
4020               Indianapolis-Carmel-Anderson, IN
4021                                  Anchorage, AK
4022             Fayetteville-Springdale-Rogers, AR
4023                Charleston-North Charleston, SC
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV
4025                    Albany-Schenectady-Troy, NY
4026                                    Roanoke, VA
4027           Houston-The Woodlands-Sugar Land, TX
4028        Miami-Fort Lauderdale-Pompano Beach, FL
4029           Houston-The Woodlands-Sugar Land, TX
4030             San Jose-Sunnyvale-Santa Clara, CA
4031 Nashville-Davidson--Murfreesboro--Franklin, TN
4032                Dallas-Fort Worth-Arlington, TX
4033                                       Hilo, HI
4034                                 Pittsburgh, PA
4035                    Shreveport-Bossier City, LA
4036        Minneapolis-St. Paul-Bloomington, MN-WI
4037          New York-Newark-Jersey City, NY-NJ-PA
4038        Miami-Fort Lauderdale-Pompano Beach, FL
4039                                  Flagstaff, AZ
4040                                    Bozeman, MT
4041                     Denver-Aurora-Lakewood, CO
4042              Charlotte-Concord-Gastonia, NC-SC
4043                                 Pittsburgh, PA
4044                Charleston-North Charleston, SC
4045             San Jose-Sunnyvale-Santa Clara, CA
4046                  Orlando-Kissimmee-Sanford, FL
4047                                      Ponce, PR
4048                                    Jackson, MS
4049                      Grand Rapids-Kentwood, MI
4050                  San Antonio-New Braunfels, TX
4051            Portland-Vancouver-Hillsboro, OR-WA
4052                                  Anchorage, AK
4053                                     Juneau, AK
4054                                Spartanburg, SC
4055                             Salt Lake City, UT
4056                                 Wilmington, NC
4057                    San Juan-Bayamón-Caguas, PR
4058                               St. Louis, MO-IL
4059                               Jacksonville, FL
4060                                   Savannah, GA
4061                                       Reno, NV
4062                               St. Louis, MO-IL
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4064                           Colorado Springs, CO
4065             San Jose-Sunnyvale-Santa Clara, CA
4066        Miami-Fort Lauderdale-Pompano Beach, FL
4067                                           <NA>
4068                 Boston-Cambridge-Newton, MA-NH
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV
4070             Los Angeles-Long Beach-Anaheim, CA
4071                  Baltimore-Columbia-Towson, MD
4072          New York-Newark-Jersey City, NY-NJ-PA
4073                 Boston-Cambridge-Newton, MA-NH
4074                          Steamboat Springs, CO
4075          New York-Newark-Jersey City, NY-NJ-PA
4076           Atlanta-Sandy Springs-Alpharetta, GA
4077                              Memphis, TN-MS-AR
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4079                                Springfield, MO
4080        Miami-Fort Lauderdale-Pompano Beach, FL
4081                          Birmingham-Hoover, AL
4082                Burlington-South Burlington, VT
4083              Charlotte-Concord-Gastonia, NC-SC
4084                    Portland-South Portland, ME
4085                Dallas-Fort Worth-Arlington, TX
4086                                Columbus, GA-AL
4087                                      Tulsa, OK
4088           Houston-The Woodlands-Sugar Land, TX
4089               Indianapolis-Carmel-Anderson, IN
4090                                 Pittsburgh, PA
4091                      Phoenix-Mesa-Chandler, AZ
4092                    Portland-South Portland, ME
4093               Austin-Round Rock-Georgetown, TX
4094              North Port-Sarasota-Bradenton, FL
4095                                    Wichita, KS
4096        Minneapolis-St. Paul-Bloomington, MN-WI
4097                                Bloomington, IL
4098                  Orlando-Kissimmee-Sanford, FL
4099           Atlanta-Sandy Springs-Alpharetta, GA
4100                              Memphis, TN-MS-AR
4101                                 Huntsville, AL
4102                                    Madison, WI
4103                 Pensacola-Ferry Pass-Brent, FL
4104           Poughkeepsie-Newburgh-Middletown, NY
4105                      Providence-Warwick, RI-MA
4106                  Orlando-Kissimmee-Sanford, FL
4107                      Cape Coral-Fort Myers, FL
4108                    Detroit-Warren-Dearborn, MI
4109                  San Antonio-New Braunfels, TX
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV
4111        Miami-Fort Lauderdale-Pompano Beach, FL
4112                                  Ketchikan, AK
4113                                  Anchorage, AK
4114           Riverside-San Bernardino-Ontario, CA
4115                 Boston-Cambridge-Newton, MA-NH
4116             Los Angeles-Long Beach-Anaheim, CA
4117                             Salt Lake City, UT
4118           Atlanta-Sandy Springs-Alpharetta, GA
4119                             Salt Lake City, UT
4120                             Salt Lake City, UT
4121           Atlanta-Sandy Springs-Alpharetta, GA
4122                           Cincinnati, OH-KY-IN
4123                                Springfield, MO
4124                                    Jackson, MS
4125                 Pensacola-Ferry Pass-Brent, FL
4126                      Providence-Warwick, RI-MA
4127               Indianapolis-Carmel-Anderson, IN
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV
4129                                   Columbia, MO
4130                                  Marquette, MI
4131        Minneapolis-St. Paul-Bloomington, MN-WI
4132                                 Jackson, WY-ID
4133                Dallas-Fort Worth-Arlington, TX
4134                     Denver-Aurora-Lakewood, CO
4135                      Grand Rapids-Kentwood, MI
4136        Minneapolis-St. Paul-Bloomington, MN-WI
4137                     Denver-Aurora-Lakewood, CO
4138           Houston-The Woodlands-Sugar Land, TX
4139                    Kahului-Wailuku-Lahaina, HI
4140                                       Hilo, HI
4141                           Colorado Springs, CO
4142             Chicago-Naperville-Elgin, IL-IN-WI
4143             Chicago-Naperville-Elgin, IL-IN-WI
4144                Sacramento-Roseville-Folsom, CA
4145             Los Angeles-Long Beach-Anaheim, CA
4146                          Birmingham-Hoover, AL
4147                               Jacksonville, FL
4148 Nashville-Davidson--Murfreesboro--Franklin, TN
4149                      Providence-Warwick, RI-MA
4150                                Sioux Falls, SD
4151                          Lexington-Fayette, KY
4152           Houston-The Woodlands-Sugar Land, TX
4153           Houston-The Woodlands-Sugar Land, TX
4154                                 Jackson, WY-ID
4155                             Urban Honolulu, HI
4156     Virginia Beach-Norfolk-Newport News, VA-NC
4157                                     Bangor, ME
4158                Burlington-South Burlington, VT
4159                                  Rochester, NY
4160                                   Syracuse, NY
4161                 Boston-Cambridge-Newton, MA-NH
4162              Charlotte-Concord-Gastonia, NC-SC
4163                                   Amarillo, TX
4164             Chicago-Naperville-Elgin, IL-IN-WI
4165                Dallas-Fort Worth-Arlington, TX
4166              Charlotte-Concord-Gastonia, NC-SC
4167               Austin-Round Rock-Georgetown, TX
4168        Miami-Fort Lauderdale-Pompano Beach, FL
4169                             Kansas City, MO-KS
4170                              Memphis, TN-MS-AR
4171                               St. Louis, MO-IL
4172              Charlotte-Concord-Gastonia, NC-SC
4173                Dallas-Fort Worth-Arlington, TX
4174                                    El Paso, TX
4175                Dallas-Fort Worth-Arlington, TX
4176    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4177             Chicago-Naperville-Elgin, IL-IN-WI
4178                Dallas-Fort Worth-Arlington, TX
4179    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4180              Charlotte-Concord-Gastonia, NC-SC
4181    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4182    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4183                Dallas-Fort Worth-Arlington, TX
4184            Portland-Vancouver-Hillsboro, OR-WA
4185                    Seattle-Tacoma-Bellevue, WA
4186                                   Syracuse, NY
4187                    Albany-Schenectady-Troy, NY
4188                Charleston-North Charleston, SC
4189            Portland-Vancouver-Hillsboro, OR-WA
4190        Miami-Fort Lauderdale-Pompano Beach, FL
4191                Charleston-North Charleston, SC
4192               Las Vegas-Henderson-Paradise, NV
4193                                   Richmond, VA
4194        Miami-Fort Lauderdale-Pompano Beach, FL
4195               Las Vegas-Henderson-Paradise, NV
4196                 Boston-Cambridge-Newton, MA-NH
4197                    Detroit-Warren-Dearborn, MI
4198        Minneapolis-St. Paul-Bloomington, MN-WI
4199        Minneapolis-St. Paul-Bloomington, MN-WI
4200                    Detroit-Warren-Dearborn, MI
4201                                  Fairbanks, AK
4202                    Detroit-Warren-Dearborn, MI
4203           Atlanta-Sandy Springs-Alpharetta, GA
4204          New York-Newark-Jersey City, NY-NJ-PA
4205                               Raleigh-Cary, NC
4206                      Grand Rapids-Kentwood, MI
4207    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4208        Miami-Fort Lauderdale-Pompano Beach, FL
4209                  Orlando-Kissimmee-Sanford, FL
4210                                   Syracuse, NY
4211   Washington-Arlington-Alexandria, DC-VA-MD-WV
4212             Chicago-Naperville-Elgin, IL-IN-WI
4213               Austin-Round Rock-Georgetown, TX
4214                            Gulfport-Biloxi, MS
4215                                    Midland, TX
4216                Dallas-Fort Worth-Arlington, TX
4217                Dallas-Fort Worth-Arlington, TX
4218                          Lexington-Fayette, KY
4219                             Grand Junction, CO
4220        Miami-Fort Lauderdale-Pompano Beach, FL
4221                    San Juan-Bayamón-Caguas, PR
4222                                           <NA>
4223            Tampa-St. Petersburg-Clearwater, FL
4224                    San Juan-Bayamón-Caguas, PR
4225          New York-Newark-Jersey City, NY-NJ-PA
4226                    Atlantic City-Hammonton, NJ
4227              Charlotte-Concord-Gastonia, NC-SC
4228   Washington-Arlington-Alexandria, DC-VA-MD-WV
4229                       Lansing-East Lansing, MI
4230                                 Pittsburgh, PA
4231              Charlotte-Concord-Gastonia, NC-SC
4232   Washington-Arlington-Alexandria, DC-VA-MD-WV
4233   Washington-Arlington-Alexandria, DC-VA-MD-WV
4234           Houston-The Woodlands-Sugar Land, TX
4235                      Phoenix-Mesa-Chandler, AZ
4236           Houston-The Woodlands-Sugar Land, TX
4237             San Francisco-Oakland-Berkeley, CA
4238                     Denver-Aurora-Lakewood, CO
4239                             Corpus Christi, TX
4240                         Eugene-Springfield, OR
4241                                       Bend, OR
4242           Houston-The Woodlands-Sugar Land, TX
4243             Chicago-Naperville-Elgin, IL-IN-WI
4244                                      Flint, MI
4245                                 Huntsville, AL
4246                      Providence-Warwick, RI-MA
4247                San Luis Obispo-Paso Robles, CA
4248                      Phoenix-Mesa-Chandler, AZ
4249                                       Bend, OR
4250                                       Reno, NV
4251           Houston-The Woodlands-Sugar Land, TX
4252                    Seattle-Tacoma-Bellevue, WA
4253                    Seattle-Tacoma-Bellevue, WA
4254             Los Angeles-Long Beach-Anaheim, CA
4255          New York-Newark-Jersey City, NY-NJ-PA
4256   Washington-Arlington-Alexandria, DC-VA-MD-WV
4257          New York-Newark-Jersey City, NY-NJ-PA
4258             Chicago-Naperville-Elgin, IL-IN-WI
4259                           Cleveland-Elyria, OH
4260                     Denver-Aurora-Lakewood, CO
4261                     Denver-Aurora-Lakewood, CO
4262             Chicago-Naperville-Elgin, IL-IN-WI
4263   Washington-Arlington-Alexandria, DC-VA-MD-WV
4264   Washington-Arlington-Alexandria, DC-VA-MD-WV
4265             San Francisco-Oakland-Berkeley, CA
4266                     Denver-Aurora-Lakewood, CO
4267   Washington-Arlington-Alexandria, DC-VA-MD-WV
4268           Houston-The Woodlands-Sugar Land, TX
4269             San Francisco-Oakland-Berkeley, CA
4270             San Francisco-Oakland-Berkeley, CA
4271                     Denver-Aurora-Lakewood, CO
4272   Washington-Arlington-Alexandria, DC-VA-MD-WV
4273             Chicago-Naperville-Elgin, IL-IN-WI
4274                      Phoenix-Mesa-Chandler, AZ
4275             Chicago-Naperville-Elgin, IL-IN-WI
4276                Dallas-Fort Worth-Arlington, TX
4277              Charlotte-Concord-Gastonia, NC-SC
4278        Miami-Fort Lauderdale-Pompano Beach, FL
4279                               St. Louis, MO-IL
4280                    Detroit-Warren-Dearborn, MI
4281                               St. Louis, MO-IL
4282                           Colorado Springs, CO
4283             San Diego-Chula Vista-Carlsbad, CA
4284             Chicago-Naperville-Elgin, IL-IN-WI
4285                Dallas-Fort Worth-Arlington, TX
4286           Houston-The Woodlands-Sugar Land, TX
4287             Los Angeles-Long Beach-Anaheim, CA
4288                     Denver-Aurora-Lakewood, CO
4289                  Baltimore-Columbia-Towson, MD
4290             Los Angeles-Long Beach-Anaheim, CA
4291                Dallas-Fort Worth-Arlington, TX
4292             Los Angeles-Long Beach-Anaheim, CA
4293             Los Angeles-Long Beach-Anaheim, CA
4294             Los Angeles-Long Beach-Anaheim, CA
4295                      Phoenix-Mesa-Chandler, AZ
4296             Los Angeles-Long Beach-Anaheim, CA
4297               Austin-Round Rock-Georgetown, TX
4298   Washington-Arlington-Alexandria, DC-VA-MD-WV
4299           Houston-The Woodlands-Sugar Land, TX
4300  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4301                                    Jackson, MS
4302              North Port-Sarasota-Bradenton, FL
4303   Washington-Arlington-Alexandria, DC-VA-MD-WV
4304           Houston-The Woodlands-Sugar Land, TX
4305                                    Bozeman, MT
4306           Houston-The Woodlands-Sugar Land, TX
4307         Crestview-Fort Walton Beach-Destin, FL
4308   Washington-Arlington-Alexandria, DC-VA-MD-WV
4309                                   Richmond, VA
4310                                 Wilmington, NC
4311    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4312                               Raleigh-Cary, NC
4313   Washington-Arlington-Alexandria, DC-VA-MD-WV
4314                                  Asheville, NC
4315                           Dayton-Kettering, OH
4316                                       Erie, PA
4317                      Grand Rapids-Kentwood, MI
4318                      Cape Coral-Fort Myers, FL
4319                      Cape Coral-Fort Myers, FL
4320                      Phoenix-Mesa-Chandler, AZ
4321  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4322                                Punta Gorda, FL
4323            Tampa-St. Petersburg-Clearwater, FL
4324               Las Vegas-Henderson-Paradise, NV
4325    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4326                 Boston-Cambridge-Newton, MA-NH
4327                                 Huntsville, AL
4328             Fayetteville-Springdale-Rogers, AR
4329                          New Haven-Milford, CT
4330                Burlington-South Burlington, VT
4331                Dallas-Fort Worth-Arlington, TX
4332                                       Reno, NV
4333                             Urban Honolulu, HI
4334          New York-Newark-Jersey City, NY-NJ-PA
4335                        Buffalo-Cheektowaga, NY
4336                    Detroit-Warren-Dearborn, MI
4337                Dallas-Fort Worth-Arlington, TX
4338   Washington-Arlington-Alexandria, DC-VA-MD-WV
4339                Dallas-Fort Worth-Arlington, TX
4340             Chicago-Naperville-Elgin, IL-IN-WI
4341                Dallas-Fort Worth-Arlington, TX
4342                        Buffalo-Cheektowaga, NY
4343              Charlotte-Concord-Gastonia, NC-SC
4344                Dallas-Fort Worth-Arlington, TX
4345                                     Juneau, AK
4346                                   Richmond, VA
4347           Atlanta-Sandy Springs-Alpharetta, GA
4348                             Salt Lake City, UT
4349                             Salt Lake City, UT
4350           Atlanta-Sandy Springs-Alpharetta, GA
4351                          Trenton-Princeton, NJ
4352                        Harrisburg-Carlisle, PA
4353                                  Knoxville, TN
4354                                      Akron, OH
4355   Washington-Arlington-Alexandria, DC-VA-MD-WV
4356                               Cedar Rapids, IA
4357                       Lansing-East Lansing, MI
4358   Washington-Arlington-Alexandria, DC-VA-MD-WV
4359            Tampa-St. Petersburg-Clearwater, FL
4360                          Aguadilla-Isabela, PR
4361                                   Columbus, OH
4362        Miami-Fort Lauderdale-Pompano Beach, FL
4363            Tampa-St. Petersburg-Clearwater, FL
4364                 Boston-Cambridge-Newton, MA-NH
4365                                      Akron, OH
4366                                   Columbus, OH
4367   Washington-Arlington-Alexandria, DC-VA-MD-WV
4368                      Greensboro-High Point, NC
4369                      Greensboro-High Point, NC
4370                                Spartanburg, SC
4371              Palm Bay-Melbourne-Titusville, FL
4372    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4373                      Providence-Warwick, RI-MA
4374                                  Rochester, NY
4375                                   Syracuse, NY
4376    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4377                      Providence-Warwick, RI-MA
4378           Houston-The Woodlands-Sugar Land, TX
4379        Minneapolis-St. Paul-Bloomington, MN-WI
4380                              Memphis, TN-MS-AR
4381                 Pensacola-Ferry Pass-Brent, FL
4382             Chicago-Naperville-Elgin, IL-IN-WI
4383                                   Brainerd, MN
4384                                   Bismarck, ND
4385                                 Rapid City, SD
4386                     Denver-Aurora-Lakewood, CO
4387             Chicago-Naperville-Elgin, IL-IN-WI
4388             Los Angeles-Long Beach-Anaheim, CA
4389        Minneapolis-St. Paul-Bloomington, MN-WI
4390                                 Jackson, WY-ID
4391            Portland-Vancouver-Hillsboro, OR-WA
4392                    Portland-South Portland, ME
4393             San Francisco-Oakland-Berkeley, CA
4394   Washington-Arlington-Alexandria, DC-VA-MD-WV
4395           Houston-The Woodlands-Sugar Land, TX
4396                Dallas-Fort Worth-Arlington, TX
4397                Dallas-Fort Worth-Arlington, TX
4398                  Baltimore-Columbia-Towson, MD
4399                             Kansas City, MO-KS
4400               Austin-Round Rock-Georgetown, TX
4401           Houston-The Woodlands-Sugar Land, TX
4402                      Phoenix-Mesa-Chandler, AZ
4403    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4404                Charleston-North Charleston, SC
4405                                   Columbus, OH
4406                                  Rochester, NY
4407                      Greensboro-High Point, NC
4408   Washington-Arlington-Alexandria, DC-VA-MD-WV
4409                                 Wilmington, NC
4410                          Manchester-Nashua, NH
4411             Louisville/Jefferson County, KY-IN
4412                                   Syracuse, NY
4413                                   Appleton, WI
4414                 Pensacola-Ferry Pass-Brent, FL
4415                Dallas-Fort Worth-Arlington, TX
4416                Dallas-Fort Worth-Arlington, TX
4417                      Phoenix-Mesa-Chandler, AZ
4418                Dallas-Fort Worth-Arlington, TX
4419              Charlotte-Concord-Gastonia, NC-SC
4420                                       Reno, NV
4421           Atlanta-Sandy Springs-Alpharetta, GA
4422                             Salt Lake City, UT
4423                Burlington-South Burlington, VT
4424                     Denver-Aurora-Lakewood, CO
4425     Virginia Beach-Norfolk-Newport News, VA-NC
4426               Las Vegas-Henderson-Paradise, NV
4427                      Cape Coral-Fort Myers, FL
4428        Miami-Fort Lauderdale-Pompano Beach, FL
4429  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4430                                 Pittsburgh, PA
4431          Hartford-East Hartford-Middletown, CT
4432                                      Flint, MI
4433                                 Huntsville, AL
4434    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4435   Washington-Arlington-Alexandria, DC-VA-MD-WV
4436                      Phoenix-Mesa-Chandler, AZ
4437             Chicago-Naperville-Elgin, IL-IN-WI
4438             Chicago-Naperville-Elgin, IL-IN-WI
4439                    Seattle-Tacoma-Bellevue, WA
4440                San Luis Obispo-Paso Robles, CA
4441                    Seattle-Tacoma-Bellevue, WA
4442             Chicago-Naperville-Elgin, IL-IN-WI
4443             San Francisco-Oakland-Berkeley, CA
4444                     Denver-Aurora-Lakewood, CO
4445                     Denver-Aurora-Lakewood, CO
4446           Houston-The Woodlands-Sugar Land, TX
4447           Houston-The Woodlands-Sugar Land, TX
4448                             Corpus Christi, TX
4449                             Kansas City, MO-KS
4450                  San Antonio-New Braunfels, TX
4451                    Kahului-Wailuku-Lahaina, HI
4452 Nashville-Davidson--Murfreesboro--Franklin, TN
4453             San Francisco-Oakland-Berkeley, CA
4454                                    Bozeman, MT
4455 Nashville-Davidson--Murfreesboro--Franklin, TN
4456                                       Reno, NV
4457                              Memphis, TN-MS-AR
4458   Washington-Arlington-Alexandria, DC-VA-MD-WV
4459   Washington-Arlington-Alexandria, DC-VA-MD-WV
4460                      Providence-Warwick, RI-MA
4461             Los Angeles-Long Beach-Anaheim, CA
4462               Las Vegas-Henderson-Paradise, NV
4463                              Eureka-Arcata, CA
4464                         Eugene-Springfield, OR
4465                                    Medford, OR
4466                         Kennewick-Richland, WA
4467                                       Bend, OR
4468                        Santa Rosa-Petaluma, CA
4469                          New Haven-Milford, CT
4470             Los Angeles-Long Beach-Anaheim, CA
4471                  Orlando-Kissimmee-Sanford, FL
4472                      Cape Coral-Fort Myers, FL
4473             Los Angeles-Long Beach-Anaheim, CA
4474             Los Angeles-Long Beach-Anaheim, CA
4475                          New Haven-Milford, CT
4476             Los Angeles-Long Beach-Anaheim, CA
4477            Tampa-St. Petersburg-Clearwater, FL
4478                                       Bend, OR
4479             Los Angeles-Long Beach-Anaheim, CA
4480          Hartford-East Hartford-Middletown, CT
4481                                       Hilo, HI
4482                                Sioux Falls, SD
4483                                      Kapaa, HI
4484             San Diego-Chula Vista-Carlsbad, CA
4485           Atlanta-Sandy Springs-Alpharetta, GA
4486             San Jose-Sunnyvale-Santa Clara, CA
4487                           Glenwood Springs, CO
4488                                       Reno, NV
4489           Houston-The Woodlands-Sugar Land, TX
4490                                   Montrose, CO
4491                                    Edwards, CO
4492                          Steamboat Springs, CO
4493                    Seattle-Tacoma-Bellevue, WA
4494                                     Tucson, AZ
4495          New York-Newark-Jersey City, NY-NJ-PA
4496                    Shreveport-Bossier City, LA
4497         Crestview-Fort Walton Beach-Destin, FL
4498                              Memphis, TN-MS-AR
4499                                 Fort Wayne, IN
4500                                    Edwards, CO
4501                Sacramento-Roseville-Folsom, CA
4502                     Denver-Aurora-Lakewood, CO
4503                     Denver-Aurora-Lakewood, CO
4504             San Francisco-Oakland-Berkeley, CA
4505             Louisville/Jefferson County, KY-IN
4506                                   Appleton, WI
4507                      Phoenix-Mesa-Chandler, AZ
4508    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4509   Washington-Arlington-Alexandria, DC-VA-MD-WV
4510                                   Richmond, VA
4511          New York-Newark-Jersey City, NY-NJ-PA
4512                 Boston-Cambridge-Newton, MA-NH
4513                    Detroit-Warren-Dearborn, MI
4514                  Orlando-Kissimmee-Sanford, FL
4515                           Colorado Springs, CO
4516                  Orlando-Kissimmee-Sanford, FL
4517                               Jacksonville, FL
4518                  Orlando-Kissimmee-Sanford, FL
4519        Miami-Fort Lauderdale-Pompano Beach, FL
4520                             Kansas City, MO-KS
4521        Miami-Fort Lauderdale-Pompano Beach, FL
4522                             Kansas City, MO-KS
4523             Los Angeles-Long Beach-Anaheim, CA
4524                    Seattle-Tacoma-Bellevue, WA
4525                     Denver-Aurora-Lakewood, CO
4526             Chicago-Naperville-Elgin, IL-IN-WI
4527                              Oklahoma City, OK
4528           Riverside-San Bernardino-Ontario, CA
4529                                       Hilo, HI
4530           Houston-The Woodlands-Sugar Land, TX
4531                                    Jackson, MS
4532             Los Angeles-Long Beach-Anaheim, CA
4533              North Port-Sarasota-Bradenton, FL
4534            Tampa-St. Petersburg-Clearwater, FL
4535                             Kansas City, MO-KS
4536             Los Angeles-Long Beach-Anaheim, CA
4537                                   Richmond, VA
4538                           Cleveland-Elyria, OH
4539                      Phoenix-Mesa-Chandler, AZ
4540              Charlotte-Concord-Gastonia, NC-SC
4541                               Worcester, MA-CT
4542                Dallas-Fort Worth-Arlington, TX
4543            Portland-Vancouver-Hillsboro, OR-WA
4544                                           <NA>
4545          New York-Newark-Jersey City, NY-NJ-PA
4546          New York-Newark-Jersey City, NY-NJ-PA
4547                                    Bozeman, MT
4548          New York-Newark-Jersey City, NY-NJ-PA
4549                             Salt Lake City, UT
4550                    Detroit-Warren-Dearborn, MI
4551                    Detroit-Warren-Dearborn, MI
4552          New York-Newark-Jersey City, NY-NJ-PA
4553                      Brownsville-Harlingen, TX
4554                Dallas-Fort Worth-Arlington, TX
4555  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4556                                      Akron, OH
4557                             Chattanooga, TN-GA
4558                                 Wilmington, NC
4559                           Colorado Springs, CO
4560                                 Boise City, ID
4561                     Denver-Aurora-Lakewood, CO
4562                     Denver-Aurora-Lakewood, CO
4563                     Denver-Aurora-Lakewood, CO
4564                  San Antonio-New Braunfels, TX
4565                  Baltimore-Columbia-Towson, MD
4566             Louisville/Jefferson County, KY-IN
4567                Charleston-North Charleston, SC
4568                             Kansas City, MO-KS
4569                         Milwaukee-Waukesha, WI
4570               Austin-Round Rock-Georgetown, TX
4571                 Des Moines-West Des Moines, IA
4572             San Francisco-Oakland-Berkeley, CA
4573             Los Angeles-Long Beach-Anaheim, CA
4574           Houston-The Woodlands-Sugar Land, TX
4575                    Portland-South Portland, ME
4576               Austin-Round Rock-Georgetown, TX
4577                                Albuquerque, NM
4578             San Jose-Sunnyvale-Santa Clara, CA
4579               Austin-Round Rock-Georgetown, TX
4580                                   Savannah, GA
4581                              Oklahoma City, OK
4582                  San Antonio-New Braunfels, TX
4583                         Milwaukee-Waukesha, WI
4584                      Phoenix-Mesa-Chandler, AZ
4585                      Cape Coral-Fort Myers, FL
4586                                  Duluth, MN-WI
4587                                    Madison, WI
4588            Tampa-St. Petersburg-Clearwater, FL
4589        Miami-Fort Lauderdale-Pompano Beach, FL
4590             Los Angeles-Long Beach-Anaheim, CA
4591                       New Orleans-Metairie, LA
4592             Chicago-Naperville-Elgin, IL-IN-WI
4593                                    Bozeman, MT
4594                    San Juan-Bayamón-Caguas, PR
4595                                   Richmond, VA
4596           Riverside-San Bernardino-Ontario, CA
4597                      Phoenix-Mesa-Chandler, AZ
4598                      Phoenix-Mesa-Chandler, AZ
4599             San Jose-Sunnyvale-Santa Clara, CA
4600                    Seattle-Tacoma-Bellevue, WA
4601                    Detroit-Warren-Dearborn, MI
4602           Atlanta-Sandy Springs-Alpharetta, GA
4603                                Bloomington, IL
4604                          Trenton-Princeton, NJ
4605                    Atlantic City-Hammonton, NJ
4606                                           <NA>
4607                           Cleveland-Elyria, OH
4608    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4609                          Manchester-Nashua, NH
4610                     Denver-Aurora-Lakewood, CO
4611                 Des Moines-West Des Moines, IA
4612             Chicago-Naperville-Elgin, IL-IN-WI
4613                     Denver-Aurora-Lakewood, CO
4614                     Denver-Aurora-Lakewood, CO
4615                     Denver-Aurora-Lakewood, CO
4616             Chicago-Naperville-Elgin, IL-IN-WI
4617   Washington-Arlington-Alexandria, DC-VA-MD-WV
4618                     Denver-Aurora-Lakewood, CO
4619   Washington-Arlington-Alexandria, DC-VA-MD-WV
4620                     Denver-Aurora-Lakewood, CO
4621                     Denver-Aurora-Lakewood, CO
4622                     Denver-Aurora-Lakewood, CO
4623             Los Angeles-Long Beach-Anaheim, CA
4624             San Francisco-Oakland-Berkeley, CA
4625                  Baltimore-Columbia-Towson, MD
4626                              Oklahoma City, OK
4627           Houston-The Woodlands-Sugar Land, TX
4628                         Milwaukee-Waukesha, WI
4629                        Buffalo-Cheektowaga, NY
4630                    Omaha-Council Bluffs, NE-IA
4631                           Cincinnati, OH-KY-IN
4632                Dallas-Fort Worth-Arlington, TX
4633                                    Lubbock, TX
4634                                    Midland, TX
4635                                    Wichita, KS
4636                 Pensacola-Ferry Pass-Brent, FL
4637             Chicago-Naperville-Elgin, IL-IN-WI
4638                    Albany-Schenectady-Troy, NY
4639                              Memphis, TN-MS-AR
4640                Dallas-Fort Worth-Arlington, TX
4641       Little Rock-North Little Rock-Conway, AR
4642                      Grand Rapids-Kentwood, MI
4643                             Kansas City, MO-KS
4644             San Diego-Chula Vista-Carlsbad, CA
4645            Tampa-St. Petersburg-Clearwater, FL
4646                             Kansas City, MO-KS
4647                         Milwaukee-Waukesha, WI
4648   Washington-Arlington-Alexandria, DC-VA-MD-WV
4649             Los Angeles-Long Beach-Anaheim, CA
4650   Washington-Arlington-Alexandria, DC-VA-MD-WV
4651             Chicago-Naperville-Elgin, IL-IN-WI
4652     Virginia Beach-Norfolk-Newport News, VA-NC
4653        Minneapolis-St. Paul-Bloomington, MN-WI
4654            Tampa-St. Petersburg-Clearwater, FL
4655                                   Key West, FL
4656                          Steamboat Springs, CO
4657                    Seattle-Tacoma-Bellevue, WA
4658                                   Montrose, CO
4659                                      Tulsa, OK
4660             Los Angeles-Long Beach-Anaheim, CA
4661             Los Angeles-Long Beach-Anaheim, CA
4662                             Urban Honolulu, HI
4663                                           <NA>
4664          Hartford-East Hartford-Middletown, CT
4665                                 Pittsburgh, PA
4666           Atlanta-Sandy Springs-Alpharetta, GA
4667                    Detroit-Warren-Dearborn, MI
4668           Atlanta-Sandy Springs-Alpharetta, GA
4669           Atlanta-Sandy Springs-Alpharetta, GA
4670                                    Salinas, CA
4671                                Great Falls, MT
4672               Indianapolis-Carmel-Anderson, IN
4673                              State College, PA
4674                                    Lincoln, NE
4675                 Augusta-Richmond County, GA-SC
4676                       Kingsport-Bristol, TN-VA
4677                        Harrisburg-Carlisle, PA
4678                    Albany-Schenectady-Troy, NY
4679                     Spokane-Spokane Valley, WA
4680          New York-Newark-Jersey City, NY-NJ-PA
4681                                    Madison, WI
4682                               Grand Island, NE
4683                                Springfield, MO
4684                                   Columbia, SC
4685            Davenport-Moline-Rock Island, IA-IL
4686                           Glenwood Springs, CO
4687                          Steamboat Springs, CO
4688          New York-Newark-Jersey City, NY-NJ-PA
4689            Davenport-Moline-Rock Island, IA-IL
4690                          Manchester-Nashua, NH
4691             Chicago-Naperville-Elgin, IL-IN-WI
4692                                  Asheville, NC
4693                                  Anchorage, AK
4694                    Seattle-Tacoma-Bellevue, WA
4695                                           <NA>
4696            Portland-Vancouver-Hillsboro, OR-WA
4697             Los Angeles-Long Beach-Anaheim, CA
4698                 Boston-Cambridge-Newton, MA-NH
4699          New York-Newark-Jersey City, NY-NJ-PA
4700                             Salt Lake City, UT
4701                             Salt Lake City, UT
4702                               Jacksonville, FL
4703                                 Pittsburgh, PA
4704          Hartford-East Hartford-Middletown, CT
4705                                Baton Rouge, LA
4706                                     Ithaca, NY
4707          Hartford-East Hartford-Middletown, CT
4708                                Panama City, FL
4709                                    Salinas, CA
4710                    Omaha-Council Bluffs, NE-IA
4711                                   Santa Fe, NM
4712                     Denver-Aurora-Lakewood, CO
4713             Chicago-Naperville-Elgin, IL-IN-WI
4714             Chicago-Naperville-Elgin, IL-IN-WI
4715                     Denver-Aurora-Lakewood, CO
4716                     Denver-Aurora-Lakewood, CO
4717            Tampa-St. Petersburg-Clearwater, FL
4718           Houston-The Woodlands-Sugar Land, TX
4719             Chicago-Naperville-Elgin, IL-IN-WI
4720                                   Columbus, OH
4721                           Colorado Springs, CO
4722 Nashville-Davidson--Murfreesboro--Franklin, TN
4723                    Omaha-Council Bluffs, NE-IA
4724                                  Rochester, NY
4725           Atlanta-Sandy Springs-Alpharetta, GA
4726                  Orlando-Kissimmee-Sanford, FL
4727            Portland-Vancouver-Hillsboro, OR-WA
4728                    Albany-Schenectady-Troy, NY
4729                                  Rochester, NY
4730             Louisville/Jefferson County, KY-IN
4731   Washington-Arlington-Alexandria, DC-VA-MD-WV
4732   Washington-Arlington-Alexandria, DC-VA-MD-WV
4733                                   Richmond, VA
4734                                   Amarillo, TX
4735                      Brownsville-Harlingen, TX
4736                      Brownsville-Harlingen, TX
4737                  Orlando-Kissimmee-Sanford, FL
4738                                   Key West, FL
4739                                  Brunswick, GA
4740                              State College, PA
4741             Fayetteville-Springdale-Rogers, AR
4742          Hartford-East Hartford-Middletown, CT
4743                                           <NA>
4744            Portland-Vancouver-Hillsboro, OR-WA
4745                                  Anchorage, AK
4746                                  Ketchikan, AK
4747                 Boston-Cambridge-Newton, MA-NH
4748                                      Ponce, PR
4749               Austin-Round Rock-Georgetown, TX
4750        Miami-Fort Lauderdale-Pompano Beach, FL
4751                          Manchester-Nashua, NH
4752                          Birmingham-Hoover, AL
4753              Charlotte-Concord-Gastonia, NC-SC
4754                     Denver-Aurora-Lakewood, CO
4755                                Bakersfield, CA
4756                                 Rapid City, SD
4757                                  Flagstaff, AZ
4758                                    Madison, WI
4759             Louisville/Jefferson County, KY-IN
4760                                   Amarillo, TX
4761        Minneapolis-St. Paul-Bloomington, MN-WI
4762                                    Lincoln, NE
4763                                           <NA>
4764                     Denver-Aurora-Lakewood, CO
4765                                Idaho Falls, ID
4766        Minneapolis-St. Paul-Bloomington, MN-WI
4767                         Kennewick-Richland, WA
4768             Chicago-Naperville-Elgin, IL-IN-WI
4769   Washington-Arlington-Alexandria, DC-VA-MD-WV
4770                     Denver-Aurora-Lakewood, CO
4771                  Orlando-Kissimmee-Sanford, FL
4772              North Port-Sarasota-Bradenton, FL
4773                                     Tucson, AZ
4774                Sacramento-Roseville-Folsom, CA
4775                    Kahului-Wailuku-Lahaina, HI
4776                                 Pittsburgh, PA
4777                Sacramento-Roseville-Folsom, CA
4778                  Baltimore-Columbia-Towson, MD
4779         Crestview-Fort Walton Beach-Destin, FL
4780                  Orlando-Kissimmee-Sanford, FL
4781                          Birmingham-Hoover, AL
4782                                   Montrose, CO
4783          New York-Newark-Jersey City, NY-NJ-PA
4784                 Pensacola-Ferry Pass-Brent, FL
4785                                    Lincoln, NE
4786                            Gulfport-Biloxi, MS
4787                                     Laredo, TX
4788            Portland-Vancouver-Hillsboro, OR-WA
4789          Hartford-East Hartford-Middletown, CT
4790                                   Fargo, ND-MN
4791                        Buffalo-Cheektowaga, NY
4792                                           <NA>
4793                      Cape Coral-Fort Myers, FL
4794                        Harrisburg-Carlisle, PA
4795             Fayetteville-Springdale-Rogers, AR
4796                San Luis Obispo-Paso Robles, CA
4797   Washington-Arlington-Alexandria, DC-VA-MD-WV
4798                                 Boise City, ID
4799            Portland-Vancouver-Hillsboro, OR-WA
4800                                   Fargo, ND-MN
4801                                 St. George, UT
4802             Los Angeles-Long Beach-Anaheim, CA
4803                                     Tucson, AZ
4804                    Seattle-Tacoma-Bellevue, WA
4805          New York-Newark-Jersey City, NY-NJ-PA
4806                                 Pittsburgh, PA
4807                     Denver-Aurora-Lakewood, CO
4808                              Oklahoma City, OK
4809                                 Pittsburgh, PA
4810 Nashville-Davidson--Murfreesboro--Franklin, TN
4811             San Diego-Chula Vista-Carlsbad, CA
4812                             Chattanooga, TN-GA
4813                              Evansville, IN-KY
4814                            Charlottesville, VA
4815            Davenport-Moline-Rock Island, IA-IL
4816                    Shreveport-Bossier City, LA
4817                          Birmingham-Hoover, AL
4818                          Lexington-Fayette, KY
4819                                  Knoxville, TN
4820                 Boston-Cambridge-Newton, MA-NH
4821                               Cedar Rapids, IA
4822        Minneapolis-St. Paul-Bloomington, MN-WI
4823    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4824                      Phoenix-Mesa-Chandler, AZ
4825                      Phoenix-Mesa-Chandler, AZ
4826        Miami-Fort Lauderdale-Pompano Beach, FL
4827              Charlotte-Concord-Gastonia, NC-SC
4828                    Seattle-Tacoma-Bellevue, WA
4829                                    Bozeman, MT
4830             San Jose-Sunnyvale-Santa Clara, CA
4831             Los Angeles-Long Beach-Anaheim, CA
4832                      Providence-Warwick, RI-MA
4833                     Spokane-Spokane Valley, WA
4834                     Spokane-Spokane Valley, WA
4835                             Salt Lake City, UT
4836                             Salt Lake City, UT
4837       Little Rock-North Little Rock-Conway, AR
4838                          Lexington-Fayette, KY
4839                              Wausau-Weston, WI
4840                     Scranton--Wilkes-Barre, PA
4841   Washington-Arlington-Alexandria, DC-VA-MD-WV
4842             Los Angeles-Long Beach-Anaheim, CA
4843                     Denver-Aurora-Lakewood, CO
4844                                 Huntsville, AL
4845                                 Pittsburgh, PA
4846                                Sioux Falls, SD
4847                             Grand Forks, ND-MN
4848                                      Minot, ND
4849                    South Bend-Mishawaka, IN-MI
4850                                   Billings, MT
4851                              Eureka-Arcata, CA
4852                                     Fresno, CA
4853                     Denver-Aurora-Lakewood, CO
4854                     Spokane-Spokane Valley, WA
4855          New York-Newark-Jersey City, NY-NJ-PA
4856               Las Vegas-Henderson-Paradise, NV
4857             Chicago-Naperville-Elgin, IL-IN-WI
4858             Chicago-Naperville-Elgin, IL-IN-WI
4859                Dallas-Fort Worth-Arlington, TX
4860               Austin-Round Rock-Georgetown, TX
4861                Dallas-Fort Worth-Arlington, TX
4862                                      Kapaa, HI
4863                    Omaha-Council Bluffs, NE-IA
4864 Nashville-Davidson--Murfreesboro--Franklin, TN
4865                     Denver-Aurora-Lakewood, CO
4866           Houston-The Woodlands-Sugar Land, TX
4867           Houston-The Woodlands-Sugar Land, TX
4868   Washington-Arlington-Alexandria, DC-VA-MD-WV
4869           Houston-The Woodlands-Sugar Land, TX
4870             San Francisco-Oakland-Berkeley, CA
4871                                Gainesville, FL
4872                          Lexington-Fayette, KY
4873                                 Charleston, WV
4874                                       Erie, PA
4875        Minneapolis-St. Paul-Bloomington, MN-WI
4876                        Harrisburg-Carlisle, PA
4877     Virginia Beach-Norfolk-Newport News, VA-NC
4878    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4879                Burlington-South Burlington, VT
4880                                 Fort Wayne, IN
4881                          Lexington-Fayette, KY
4882                                Baton Rouge, LA
4883                                 Alexandria, LA
4884                                     Monroe, LA
4885                    Detroit-Warren-Dearborn, MI
4886              Allentown-Bethlehem-Easton, PA-NJ
4887                             Chattanooga, TN-GA
4888                               Cedar Rapids, IA
4889                      Greensboro-High Point, NC
4890                                     Ithaca, NY
4891                              Traverse City, MI
4892                                  Green Bay, WI
4893                                  Knoxville, TN
4894        Minneapolis-St. Paul-Bloomington, MN-WI
4895             Chicago-Naperville-Elgin, IL-IN-WI
4896    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4897                Dallas-Fort Worth-Arlington, TX
4898             San Jose-Sunnyvale-Santa Clara, CA
4899                                           <NA>
4900                                           <NA>
4901                             Vineyard Haven, MA
4902                             Vineyard Haven, MA
4903                                           <NA>
4904                                   Syracuse, NY
4905                               Fayetteville, NC
4906                                Sioux Falls, SD
4907                                  Green Bay, WI
4908                                 Jackson, WY-ID
4909                    Detroit-Warren-Dearborn, MI
4910                    Detroit-Warren-Dearborn, MI
4911        Minneapolis-St. Paul-Bloomington, MN-WI
4912                    Detroit-Warren-Dearborn, MI
4913                                           <NA>
4914                Dallas-Fort Worth-Arlington, TX
4915                       Beaumont-Port Arthur, TX
4916                                 Fort Wayne, IN
4917                                  Manhattan, KS
4918                                           <NA>
4919                                     Elmira, NY
4920             Los Angeles-Long Beach-Anaheim, CA
4921                           Colorado Springs, CO
4922             Chicago-Naperville-Elgin, IL-IN-WI
4923                              Eureka-Arcata, CA
4924                                    Redding, CA
4925             San Francisco-Oakland-Berkeley, CA
4926                                  Marquette, MI
4927                  Santa Maria-Santa Barbara, CA
4928                San Luis Obispo-Paso Robles, CA
4929                                Idaho Falls, ID
4930                                  Anchorage, AK
4931           Houston-The Woodlands-Sugar Land, TX
4932             San Francisco-Oakland-Berkeley, CA
4933    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4934             Los Angeles-Long Beach-Anaheim, CA
4935           Houston-The Woodlands-Sugar Land, TX
4936             Chicago-Naperville-Elgin, IL-IN-WI
4937                Sacramento-Roseville-Folsom, CA
4938           Riverside-San Bernardino-Ontario, CA
4939             Los Angeles-Long Beach-Anaheim, CA
4940                    San Juan-Bayamón-Caguas, PR
4941                             Kansas City, MO-KS
4942             Los Angeles-Long Beach-Anaheim, CA
4943           Riverside-San Bernardino-Ontario, CA
4944                                       Reno, NV
4945 Nashville-Davidson--Murfreesboro--Franklin, TN
4946 Nashville-Davidson--Murfreesboro--Franklin, TN
4947                  Baltimore-Columbia-Towson, MD
4948          New York-Newark-Jersey City, NY-NJ-PA
4949   Washington-Arlington-Alexandria, DC-VA-MD-WV
4950                                   Columbia, SC
4951        Minneapolis-St. Paul-Bloomington, MN-WI
4952                                           <NA>
4953             Los Angeles-Long Beach-Anaheim, CA
4954               Las Vegas-Henderson-Paradise, NV
4955                             Vineyard Haven, MA
4956                      Cape Coral-Fort Myers, FL
4957                Sacramento-Roseville-Folsom, CA
4958           Atlanta-Sandy Springs-Alpharetta, GA
4959                         Kennewick-Richland, WA
4960                         Milwaukee-Waukesha, WI
4961                           Cleveland-Elyria, OH
4962             Los Angeles-Long Beach-Anaheim, CA
4963                                    Lubbock, TX
4964                                  Ketchikan, AK
4965                                  Anchorage, AK
4966                                  Ketchikan, AK
4967                    Portland-South Portland, ME
4968            Tampa-St. Petersburg-Clearwater, FL
4969                          Manchester-Nashua, NH
4970                      Greensboro-High Point, NC
4971                                      Hobbs, NM
4972                                    Wichita, KS
4973             San Diego-Chula Vista-Carlsbad, CA
4974                Dallas-Fort Worth-Arlington, TX
4975                                   Montrose, CO
4976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4977        Minneapolis-St. Paul-Bloomington, MN-WI
4978                                       Erie, PA
4979                    Seattle-Tacoma-Bellevue, WA
4980                    Kahului-Wailuku-Lahaina, HI
4981                Dallas-Fort Worth-Arlington, TX
4982                                       Reno, NV
4983               Austin-Round Rock-Georgetown, TX
4984             San Jose-Sunnyvale-Santa Clara, CA
4985                                Spartanburg, SC
4986                                    El Paso, TX
4987             Chicago-Naperville-Elgin, IL-IN-WI
4988                                   Fargo, ND-MN
4989                                 Alexandria, LA
4990                    South Bend-Mishawaka, IN-MI
4991              Charlotte-Concord-Gastonia, NC-SC
4992                                      Hobbs, NM
4993                           Butte-Silver Bow, MT
4994                                  Anchorage, AK
4995                    Seattle-Tacoma-Bellevue, WA
4996                                   Montrose, CO
4997                    Omaha-Council Bluffs, NE-IA
4998        Miami-Fort Lauderdale-Pompano Beach, FL
4999         Crestview-Fort Walton Beach-Destin, FL
                                         dest_name dest_cbsa
1                       Detroit Metro Wayne County     19820
2                       Detroit Metro Wayne County     19820
3                       Detroit Metro Wayne County     19820
4                       Detroit Metro Wayne County     19820
5               Metropolitan Oakland International     41860
6                 Phoenix Sky Harbor International     38060
7                       Detroit Metro Wayne County     19820
8                              Miami International     33100
9                       Detroit Metro Wayne County     19820
10                      Detroit Metro Wayne County     19820
11                      Detroit Metro Wayne County     19820
12                      Detroit Metro Wayne County     19820
13                          Portland International     38900
14                Phoenix Sky Harbor International     38060
15         Norman Y. Mineta San Jose International     41940
16         Norman Y. Mineta San Jose International     41940
17                      Detroit Metro Wayne County     19820
18                James M Cox/Dayton International     19430
19                   Buffalo Niagara International     15380
20         Northwest Florida Beaches International     37460
21               Minneapolis-St Paul International     33460
22                           Ontario International     40140
23                    Theodore Francis Green State     39300
24                      Jacksonville International     27260
25                        Palm Beach International     33100
26                              Asheville Regional     11700
27                    Newark Liberty International     35620
28                          Key West International     28580
29        Jackson Medgar Wiley Evers International     27140
30                       Los Angeles International     31080
31                          Portland International     38900
32                    Raleigh-Durham International     39580
33                        Sacramento International     40900
34         Fort Lauderdale-Hollywood International     33100
35                     San Francisco International     41860
36                            Denver International     19740
37                    Newark Liberty International     35620
38                         San Diego International     41740
39                    Seattle/Tacoma International     42660
40                         San Diego International     41740
41                        Sacramento International     40900
42                                      Tri Cities     28420
43                              Westchester County     35620
44                                       LaGuardia     35620
45        Hartsfield-Jackson Atlanta International     12060
46                 Dallas/Fort Worth International     19100
47                              Lafayette Regional     29180
48                Austin - Bergstrom International     12420
49      Cincinnati/Northern Kentucky International     17140
50                       Kansas City International     28140
51                    Chicago O'Hare International     16980
52                         San Diego International     41740
53                  Syracuse Hancock International     45060
54         Fort Lauderdale-Hollywood International     33100
55                   Daniel K Inouye International     46520
56                   Buffalo Niagara International     15380
57                                  Joe Foss Field     43620
58               Bozeman Yellowstone International     14580
59                    Seattle/Tacoma International     42660
60                        Des Moines International     19780
61                             Logan International     14460
62                                       LaGuardia     35620
63                            Hector International     22020
64        Hartsfield-Jackson Atlanta International     12060
65               Ronald Reagan Washington National     47900
66                   John F. Kennedy International     35620
67       Louis Armstrong New Orleans International     35380
68                       San Antonio International     41700
69                John Wayne Airport-Orange County     31080
70                   Fresno Yosemite International     23420
71                            Idaho Falls Regional     26820
72                      Palm Springs International     40140
73                   Gulfport-Biloxi International     25060
74                             Logan International     14460
75                           Orlando International     36740
76            Greenville-Spartanburg International     43900
77                            Albany International     10580
78                           Bradley International     25540
79                      Detroit Metro Wayne County     19820
80                  General Mitchell International     33340
81                               Dallas Love Field     19100
82                           Memphis International     32820
83              Baltimore/Washington International     12580
84               John Glenn Columbus International     18140
85       Louis Armstrong New Orleans International     35380
86                           Norfolk International     47260
87                        Pittsburgh International     38300
88         Fort Lauderdale-Hollywood International     33100
89                           Orlando International     36740
90                          McCarran International     29820
91                         San Diego International     41740
92                        Sacramento International     40900
93                    Raleigh-Durham International     39580
94               John Glenn Columbus International     18140
95                           Orlando International     36740
96                          Portland International     38900
97                                 Eppley Airfield     36540
98                     Daytona Beach International     19660
99                      Indianapolis International     26900
100                  John F. Kennedy International     35620
101                   Salt Lake City International     41620
102               Sarasota/Bradenton International     35840
103             Eglin AFB Destin Fort Walton Beach     18880
104                            Logan International     14460
105                     Indianapolis International     26900
106                           Tucson International     46060
107                      Los Angeles International     31080
108                      Los Angeles International     31080
109                   Chicago Midway International     16980
110                   Piedmont Triad International     24660
111                Cleveland-Hopkins International     17460
112                   Gerald R. Ford International     24340
113                     Philadelphia International     37980
114               John Wayne Airport-Orange County     31080
115           George Bush Intercontinental/Houston     26420
116           Kalamazoo/Battle Creek International     28020
117                  John F. Kennedy International     35620
118                  John F. Kennedy International     35620
119                           Denver International     19740
120          Kona International Airport at Keahole     25900
121                  John F. Kennedy International     35620
122                                      LaGuardia     35620
123                  John F. Kennedy International     35620
124                                      LaGuardia     35620
125                  John F. Kennedy International     35620
126                                  Lihue Airport     28180
127                   Salt Lake City International     41620
128               John Wayne Airport-Orange County     31080
129                          Spokane International     44060
130                          Spokane International     44060
131                                   Jackson Hole     27220
132             Metropolitan Oakland International     41860
133             City of Colorado Springs Municipal     17820
134                  John F. Kennedy International     35620
135                  John F. Kennedy International     35620
136                       Reno/Tahoe International     39900
137                             Boise Air Terminal     14260
138                                 Albert J Ellis     27340
139     Cincinnati/Northern Kentucky International     17140
140                 Syracuse Hancock International     45060
141                Cleveland-Hopkins International     17460
142                            Tampa International     45300
143                 Syracuse Hancock International     45060
144                         McCarran International     29820
145                           Duluth International     20260
146                          Bradley International     25540
147                  John F. Kennedy International     35620
148               Austin - Bergstrom International     12420
149                         McCarran International     29820
150                 Augusta Regional at Bush Field     12260
151                         Richmond International     40060
152                      San Antonio International     41700
153                      Los Angeles International     31080
154                                      LaGuardia     35620
155                            Logan International     14460
156                      Los Angeles International     31080
157                          Bradley International     25540
158                  Buffalo Niagara International     15380
159                                      LaGuardia     35620
160                         Richmond International     40060
161                      Los Angeles International     31080
162                  Buffalo Niagara International     15380
163                         Richmond International     40060
164                          Orlando International     36740
165                      Los Angeles International     31080
166            Ted Stevens Anchorage International     11260
167                     Glacier Park International     28060
168                             Long Beach Airport     31080
169                         Missoula International     33540
170                              Friedman Memorial     25200
171                              Will Rogers World     36420
172                   Gerald R. Ford International     24340
173                      Los Angeles International     31080
174               Phoenix Sky Harbor International     38060
175                        San Diego International     41740
176                   Seattle/Tacoma International     42660
177                                      LaGuardia     35620
178                             Boise Air Terminal     14260
179                          Spokane International     44060
180               Phoenix Sky Harbor International     38060
181                    San Francisco International     41860
182                       Sacramento International     40900
183                                      LaGuardia     35620
184                                      LaGuardia     35620
185                                      LaGuardia     35620
186                            Logan International     14460
187                                    Adams Field     30780
188            Baton Rouge Metropolitan/Ryan Field     12940
189                         Portland International     38900
190                                     Blue Grass     30460
191                  Daniel K Inouye International     46520
192                Washington Dulles International     47900
193                 St Louis Lambert International     41180
194                          Orlando International     36740
195                            La Crosse Municipal     29100
196                          Orlando International     36740
197                          Orlando International     36740
198        Green Bay Austin Straubel International     24580
199                            Tampa International     45300
200                           Tucson International     46060
201                           Denver International     19740
202                    San Francisco International     41860
203                                   McGhee Tyson     28940
204                               The Eastern Iowa     16300
205                           Denver International     19740
206                         Brunswick Golden Isles     15260
207                Southwest Florida International     15980
208           Greenville-Spartanburg International     43900
209              Ronald Reagan Washington National     47900
210        Fort Lauderdale-Hollywood International     33100
211                     Myrtle Beach International     34820
212             Savannah/Hilton Head International     42340
213                            Tulsa International     46140
214              Minneapolis-St Paul International     33460
215              Minneapolis-St Paul International     33460
216              Minneapolis-St Paul International     33460
217              Minneapolis-St Paul International     33460
218              Minneapolis-St Paul International     33460
219              Minneapolis-St Paul International     33460
220                Dallas/Fort Worth International     19100
221                            Miami International     33100
222                Southwest Florida International     15980
223              Minneapolis-St Paul International     33460
224              Minneapolis-St Paul International     33460
225              Minneapolis-St Paul International     33460
226                 Portland International Jetport     38860
227              Minneapolis-St Paul International     33460
228              Minneapolis-St Paul International     33460
229              Minneapolis-St Paul International     33460
230              Minneapolis-St Paul International     33460
231              Minneapolis-St Paul International     33460
232              Minneapolis-St Paul International     33460
233              Minneapolis-St Paul International     33460
234              Minneapolis-St Paul International     33460
235              Minneapolis-St Paul International     33460
236              Minneapolis-St Paul International     33460
237                   Capital Region International     29620
238      Louis Armstrong New Orleans International     35380
239      Louis Armstrong New Orleans International     35380
240               John Wayne Airport-Orange County     31080
241         Birmingham-Shuttlesworth International     13820
242                Charlotte Douglas International     16740
243                   Raleigh-Durham International     39580
244                    San Francisco International     41860
245                  Pensacola Gulf Coast Regional     37860
246                          Orlando International     36740
247                          Ontario International     40140
248                            Hilton Head Airport     25940
249                   Chicago O'Hare International     16980
250          Louisville Muhammad Ali International     31140
251                 Syracuse Hancock International     45060
252                   Chicago O'Hare International     16980
253                   Chicago O'Hare International     16980
254                                 Range Regional     20260
255                      Los Angeles International     31080
256                       Des Moines International     19780
257                   Charleston AFB/International     16700
258                     Indianapolis International     26900
259                     Palm Springs International     40140
260                            Logan International     14460
261                      Kansas City International     28140
262              Albuquerque International Sunport     10740
263                       Reno/Tahoe International     39900
264              Albuquerque International Sunport     10740
265                            Miami International     33100
266                     Philadelphia International     37980
267                        Rochester International     40340
268                 Portland International Jetport     38860
269                            Logan International     14460
270                            South Bend Regional     43780
271                        Nashville International     34980
272              Ronald Reagan Washington National     47900
273                         McCarran International     29820
274                   Raleigh-Durham International     39580
275                   Raleigh-Durham International     39580
276                   Raleigh-Durham International     39580
277                   Raleigh-Durham International     39580
278                    San Francisco International     41860
279                   Raleigh-Durham International     39580
280                   Raleigh-Durham International     39580
281                Dallas/Fort Worth International     19100
282                       Burlington International     15540
283                Southwest Florida International     15980
284        Green Bay Austin Straubel International     24580
285                        San Diego International     41740
286                          Orlando International     36740
287                            Tampa International     45300
288            Fayetteville Regional/Grannis Field     22180
289                   Seattle/Tacoma International     42660
290             Baltimore/Washington International     12580
291                Washington Dulles International     47900
292                   Seattle/Tacoma International     42660
293                   Seattle/Tacoma International     42660
294                 General Mitchell International     33340
295                   Seattle/Tacoma International     42660
296                   Seattle/Tacoma International     42660
297                             St George Regional     41100
298                   Seattle/Tacoma International     42660
299                        Nashville International     34980
300     Cincinnati/Northern Kentucky International     17140
301                            Miami International     33100
302                     Detroit Metro Wayne County     19820
303                     Detroit Metro Wayne County     19820
304                   Salt Lake City International     41620
305                   Salt Lake City International     41620
306                               The Eastern Iowa     16300
307                 General Mitchell International     33340
308              John Glenn Columbus International     18140
309                   Salt Lake City International     41620
310                   Salt Lake City International     41620
311                   Salt Lake City International     41620
312                   Salt Lake City International     41620
313                   Salt Lake City International     41620
314                  John F. Kennedy International     35620
315                   Salt Lake City International     41620
316                   Salt Lake City International     41620
317                   Salt Lake City International     41620
318                   Salt Lake City International     41620
319                   Salt Lake City International     41620
320                        Nashville International     34980
321              Minneapolis-St Paul International     33460
322                                   Lovell Field     16860
323                   Gerald R. Ford International     24340
324                             Mahlon Sweet Field     21660
325                                  Roberts Field     13460
326          Louisville Muhammad Ali International     31140
327                 St Louis Lambert International     41180
328                          Spokane International     44060
329        Green Bay Austin Straubel International     24580
330                                 Joe Foss Field     43620
331                              MBS International     40980
332                         McCarran International     29820
333                            Tampa International     45300
334                            Tampa International     45300
335                            Tampa International     45300
336       Hartsfield-Jackson Atlanta International     12060
337       Hartsfield-Jackson Atlanta International     12060
338               Austin - Bergstrom International     12420
339             Baltimore/Washington International     12580
340                Cleveland-Hopkins International     17460
341                        San Diego International     41740
342                          Ontario International     40140
343                Charlotte Douglas International     16740
344                           Denver International     19740
345                           Denver International     19740
346                          Long Island MacArthur     35620
347                         McCarran International     29820
348                          Orlando International     36740
349                          Ontario International     40140
350                          Memphis International     32820
351                            Miami International     33100
352                         Portland International     38900
353                     Philadelphia International     37980
354                     Philadelphia International     37980
355                     Philadelphia International     37980
356               Phoenix Sky Harbor International     38060
357                   Raleigh-Durham International     39580
358                        San Diego International     41740
359                      San Antonio International     41700
360                 Luis Munoz Marin International     41980
361                                      LaGuardia     35620
362                Charlotte Douglas International     16740
363                Charlotte Douglas International     16740
364                  Daniel K Inouye International     46520
365                         McCarran International     29820
366               Phoenix Sky Harbor International     38060
367                       Palm Beach International     33100
368           George Bush Intercontinental/Houston     26420
369                   Newark Liberty International     35620
370                           Denver International     19740
371                   Newark Liberty International     35620
372                   Newark Liberty International     35620
373                   Newark Liberty International     35620
374                             Asheville Regional     11700
375                   Piedmont Triad International     24660
376                        Abraham Lincoln Capital     44100
377                Washington Dulles International     47900
378                Washington Dulles International     47900
379                                   McGhee Tyson     28940
380                Southwest Florida International     15980
381           George Bush Intercontinental/Houston     26420
382                    San Francisco International     41860
383                        Nashville International     34980
384                    San Francisco International     41860
385                    San Francisco International     41860
386                            Tampa International     45300
387                     Jacksonville International     27260
388                   Seattle/Tacoma International     42660
389                Greater Rochester International     40380
390                   Seattle/Tacoma International     42660
391                 St Louis Lambert International     41180
392                 Syracuse Hancock International     45060
393                     Indianapolis International     26900
394               Phoenix Sky Harbor International     38060
395                                    Adams Field     30780
396                   Newark Liberty International     35620
397                                   McGhee Tyson     28940
398                       Pittsburgh International     38300
399                          Bradley International     25540
400                               Henry E. Rohlsen      <NA>
401                          Orlando International     36740
402               Austin - Bergstrom International     12420
403               Austin - Bergstrom International     12420
404               Austin - Bergstrom International     12420
405          Louisville Muhammad Ali International     31140
406                         McCarran International     29820
407       Hartsfield-Jackson Atlanta International     12060
408                 Syracuse Hancock International     45060
409                            Logan International     14460
410                           Hector International     22020
411                   Newark Liberty International     35620
412               John Wayne Airport-Orange County     31080
413                              Will Rogers World     36420
414                  Fresno Yosemite International     23420
415                    Northwest Arkansas Regional     22220
416                         Portland International     38900
417                          Orlando International     36740
418     Cincinnati/Northern Kentucky International     17140
419                          Orlando International     36740
420                            Tampa International     45300
421     Cincinnati/Northern Kentucky International     17140
422                          Wichita Mid-Continent     48620
423                                Monroe Regional     33740
424              Ronald Reagan Washington National     47900
425              Ronald Reagan Washington National     47900
426                Dallas/Fort Worth International     19100
427                Dallas/Fort Worth International     19100
428         Birmingham-Shuttlesworth International     13820
429        Norman Y. Mineta San Jose International     41940
430                          Orlando International     36740
431                            Miami International     33100
432                         Richmond International     40060
433                            Tulsa International     46140
434                      Los Angeles International     31080
435               Phoenix Sky Harbor International     38060
436                            Miami International     33100
437             City of Colorado Springs Municipal     17820
438                          Spokane International     44060
439                           Garden City Regional     23780
440         Lynchburg Regional/Preston Glenn Field     31340
441                   Chicago O'Hare International     16980
442                           Bangor International     12620
443                     Jacksonville International     27260
444                                 Joe Foss Field     43620
445          Louisville Muhammad Ali International     31140
446                 Syracuse Hancock International     45060
447               Austin - Bergstrom International     12420
448                          Ontario International     40140
449                             Lafayette Regional     29180
450                Washington Dulles International     47900
451               Austin - Bergstrom International     12420
452        Norman Y. Mineta San Jose International     41940
453                      Kansas City International     28140
454                            Miami International     33100
455                        Nashville International     34980
456                Cleveland-Hopkins International     17460
457                      Kansas City International     28140
458                       Fort Wayne International     23060
459      Louis Armstrong New Orleans International     35380
460                          Columbia Metropolitan     17900
461                                     Blue Grass     30460
462                   Chicago O'Hare International     16980
463                   Chicago O'Hare International     16980
464                   Chicago O'Hare International     16980
465                       Reno/Tahoe International     39900
466                   Gerald R. Ford International     24340
467                   Chicago O'Hare International     16980
468                    Northwest Arkansas Regional     22220
469                      Los Angeles International     31080
470                         Key West International     28580
471          Louisville Muhammad Ali International     31140
472           George Bush Intercontinental/Houston     26420
473                 Augusta Regional at Bush Field     12260
474                   Raleigh-Durham International     39580
475      Louis Armstrong New Orleans International     35380
476              Albuquerque International Sunport     10740
477       Hartsfield-Jackson Atlanta International     12060
478                   Capital Region International     29620
479                           Denver International     19740
480                         McCarran International     29820
481                   Seattle/Tacoma International     42660
482                    Atlantic City International     12100
483                    Atlantic City International     12100
484                    Atlantic City International     12100
485       Hartsfield-Jackson Atlanta International     12060
486               Austin - Bergstrom International     12420
487       Hartsfield-Jackson Atlanta International     12060
488               John Wayne Airport-Orange County     31080
489       Hartsfield-Jackson Atlanta International     12060
490       Hartsfield-Jackson Atlanta International     12060
491                          Bradley International     25540
492                        Nashville International     34980
493                        Nashville International     34980
494                        Nashville International     34980
495                        Nashville International     34980
496                            Logan International     14460
497                            Logan International     14460
498                            Logan International     14460
499                            Logan International     14460
500                            Logan International     14460
501                                       Bob Hope     31080
502             Baltimore/Washington International     12580
503                           Denver International     19740
504             Baltimore/Washington International     12580
505             Baltimore/Washington International     12580
506             Baltimore/Washington International     12580
507             Baltimore/Washington International     12580
508                Cleveland-Hopkins International     17460
509                          Orlando International     36740
510                Cleveland-Hopkins International     17460
511                Cleveland-Hopkins International     17460
512           George Bush Intercontinental/Houston     26420
513                Charlotte Douglas International     16740
514              John Glenn Columbus International     18140
515             Baltimore/Washington International     12580
516                Dallas/Fort Worth International     19100
517                Dallas/Fort Worth International     19100
518                Dallas/Fort Worth International     19100
519                Dallas/Fort Worth International     19100
520                   Chicago O'Hare International     16980
521                     Detroit Metro Wayne County     19820
522                   Newark Liberty International     35620
523                   Newark Liberty International     35620
524                   Newark Liberty International     35620
525                   Newark Liberty International     35620
526                   Newark Liberty International     35620
527        Fort Lauderdale-Hollywood International     33100
528        Fort Lauderdale-Hollywood International     33100
529        Fort Lauderdale-Hollywood International     33100
530        Fort Lauderdale-Hollywood International     33100
531        Fort Lauderdale-Hollywood International     33100
532        Fort Lauderdale-Hollywood International     33100
533        Fort Lauderdale-Hollywood International     33100
534        Fort Lauderdale-Hollywood International     33100
535           George Bush Intercontinental/Houston     26420
536           George Bush Intercontinental/Houston     26420
537                     Indianapolis International     26900
538                     Indianapolis International     26900
539                     Indianapolis International     26900
540                         McCarran International     29820
541                         McCarran International     29820
542       Hartsfield-Jackson Atlanta International     12060
543                   Piedmont Triad International     24660
544                         McCarran International     29820
545                         McCarran International     29820
546                         McCarran International     29820
547                      Los Angeles International     31080
548                      Los Angeles International     31080
549                            Tampa International     45300
550                      Los Angeles International     31080
551                      Los Angeles International     31080
552                         Arnold Palmer Regional     38300
553                         Arnold Palmer Regional     38300
554                      Kansas City International     28140
555                      Kansas City International     28140
556                          Orlando International     36740
557                          Orlando International     36740
558                          Orlando International     36740
559             Metropolitan Oakland International     41860
560                          Orlando International     36740
561                          Orlando International     36740
562                 General Mitchell International     33340
563                     Philadelphia International     37980
564      Louis Armstrong New Orleans International     35380
565                   Newark Liberty International     35620
566                   Chicago O'Hare International     16980
567                   Chicago O'Hare International     16980
568                   Chicago O'Hare International     16980
569                   Chicago O'Hare International     16980
570                       Pittsburgh International     38300
571                       Pittsburgh International     38300
572                       Pittsburgh International     38300
573                        San Diego International     41740
574                 Luis Munoz Marin International     41980
575                 St Louis Lambert International     41180
576           George Bush Intercontinental/Houston     26420
577                            Tampa International     45300
578                            Tampa International     45300
579                            Tampa International     45300
580                            Tampa International     45300
581               Sarasota/Bradenton International     35840
582          Louisville Muhammad Ali International     31140
583             Eglin AFB Destin Fort Walton Beach     18880
584                         McCarran International     29820
585               Phoenix Sky Harbor International     38060
586                           Albany International     10580
587                         McCarran International     29820
588                                      LaGuardia     35620
589              Minneapolis-St Paul International     33460
590                     Philadelphia International     37980
591                       Palm Beach International     33100
592                        Nashville International     34980
593                  John F. Kennedy International     35620
594                                      LaGuardia     35620
595                            Tampa International     45300
596             Eglin AFB Destin Fort Walton Beach     18880
597                 St Louis Lambert International     41180
598                      San Antonio International     41700
599                   Charleston AFB/International     16700
600             Baltimore/Washington International     12580
601                Charlotte Douglas International     16740
602                Charlotte Douglas International     16740
603                Charlotte Douglas International     16740
604                Charlotte Douglas International     16740
605                Charlotte Douglas International     16740
606        Fort Lauderdale-Hollywood International     33100
607                              Will Rogers World     36420
608                          Orlando International     36740
609                     Indianapolis International     26900
610                          Memphis International     32820
611               Phoenix Sky Harbor International     38060
612                          Akron-Canton Regional     10420
613                Cleveland-Hopkins International     17460
614               James M Cox/Dayton International     19430
615               Austin - Bergstrom International     12420
616              Ronald Reagan Washington National     47900
617              Ronald Reagan Washington National     47900
618              Ronald Reagan Washington National     47900
619                    San Francisco International     41860
620                Dallas/Fort Worth International     19100
621              Ronald Reagan Washington National     47900
622                             Westchester County     35620
623                   Theodore Francis Green State     39300
624       Hartsfield-Jackson Atlanta International     12060
625                     Detroit Metro Wayne County     19820
626                 Portland International Jetport     38860
627             Savannah/Hilton Head International     42340
628                                    Adams Field     30780
629                        Melbourne International     37340
630                     Detroit Metro Wayne County     19820
631                      Kansas City International     28140
632                   Chicago O'Hare International     16980
633                 General Mitchell International     33340
634                           Bishop International     22420
635               James M Cox/Dayton International     19430
636                            Logan International     14460
637                       Pittsburgh International     38300
638                Dallas/Fort Worth International     19100
639                                Eppley Airfield     36540
640                             Westchester County     35620
641                       Palm Beach International     33100
642       Hartsfield-Jackson Atlanta International     12060
643                Southwest Florida International     15980
644                  Buffalo Niagara International     15380
645                       Pittsburgh International     38300
646                    Lehigh Valley International     10900
647                          Norfolk International     47260
648        Newport News/Williamsburg International     47260
649                     Jacksonville International     27260
650                     Jacksonville International     27260
651                     Manchester-Boston Regional     31700
652                            Logan International     14460
653                     Jacksonville International     27260
654                             Asheville Regional     11700
655                   Raleigh-Durham International     39580
656            Fayetteville Regional/Grannis Field     22180
657                                 Albert J Ellis     27340
658                       Harrisburg International     25420
659                            Miami International     33100
660                   Charleston AFB/International     16700
661           George Bush Intercontinental/Houston     26420
662                       Des Moines International     19780
663           Greenville-Spartanburg International     43900
664                 Portland International Jetport     38860
665      Louis Armstrong New Orleans International     35380
666       Jackson Medgar Wiley Evers International     27140
667      Louis Armstrong New Orleans International     35380
668                                     Blue Grass     30460
669                     Philadelphia International     37980
670                     Philadelphia International     37980
671         Birmingham-Shuttlesworth International     13820
672                     Philadelphia International     37980
673                     Philadelphia International     37980
674                     Philadelphia International     37980
675                     Philadelphia International     37980
676                           Denver International     19740
677                        San Diego International     41740
678                   Seattle/Tacoma International     42660
679                     Indianapolis International     26900
680                          Long Island MacArthur     35620
681                   Chicago O'Hare International     16980
682                          Bradley International     25540
683                                   McGhee Tyson     28940
684                   Theodore Francis Green State     39300
685                   Raleigh-Durham International     39580
686                 St Louis Lambert International     41180
687                 Syracuse Hancock International     45060
688          Louisville Muhammad Ali International     31140
689              Albuquerque International Sunport     10740
690           George Bush Intercontinental/Houston     26420
691                                Lincoln Airport     30700
692                           Albany International     10580
693                          Ontario International     40140
694                Aspen Pitkin County Sardy Field     24060
695                  Daniel K Inouye International     46520
696                   Seattle/Tacoma International     42660
697              Albuquerque International Sunport     10740
698                        Nashville International     34980
699                      Kansas City International     28140
700                        Eastern Sierra Regional      <NA>
701           Rogue Valley International - Medford     32780
702                     Palm Springs International     40140
703                        Santa Barbara Municipal     42200
704                      Los Angeles International     31080
705                             Boise Air Terminal     14260
706                             Boise Air Terminal     14260
707                             Boise Air Terminal     14260
708       Hartsfield-Jackson Atlanta International     12060
709                             Boise Air Terminal     14260
710                             Boise Air Terminal     14260
711          Kona International Airport at Keahole     25900
712                                       Bob Hope     31080
713                             Boise Air Terminal     14260
714              Charles M. Schulz - Sonoma County     42220
715                                       Bob Hope     31080
716                                       Bob Hope     31080
717                                Kahului Airport     27980
718              Bozeman Yellowstone International     14580
719             Baltimore/Washington International     12580
720              Bozeman Yellowstone International     14580
721                              Will Rogers World     36420
722                                Robert Gray AAF     28660
723                            Logan International     14460
724                   Newark Liberty International     35620
725             City of Colorado Springs Municipal     17820
726                      Los Angeles International     31080
727                              Dallas Love Field     19100
728                           Denver International     19740
729                           Denver International     19740
730                           Denver International     19740
731                           Denver International     19740
732                           Denver International     19740
733                           Denver International     19740
734                           Tucson International     46060
735                   Salt Lake City International     41620
736                       Pittsburgh International     38300
737                       Des Moines International     19780
738                                     Tri Cities     28420
739                       Harrisburg International     25420
740                             Mahlon Sweet Field     21660
741                           Denver International     19740
742                  Fresno Yosemite International     23420
743                  Fresno Yosemite International     23420
744                  Fresno Yosemite International     23420
745                  Fresno Yosemite International     23420
746                                  Roberts Field     13460
747                   Chicago O'Hare International     16980
748                     Glacier Park International     28060
749                   Chicago O'Hare International     16980
750        Fort Lauderdale-Hollywood International     33100
751               Sarasota/Bradenton International     35840
752                     Jacksonville International     27260
753               Phoenix Sky Harbor International     38060
754                          Spokane International     44060
755                          Spokane International     44060
756                            Logan International     14460
757                        Nashville International     34980
758        Fort Lauderdale-Hollywood International     33100
759                            Miami International     33100
760        Norman Y. Mineta San Jose International     41940
761                    Lehigh Valley International     10900
762                                   Yampa Valley     44460
763                   Salt Lake City International     41620
764                            La Crosse Municipal     29100
765           George Bush Intercontinental/Houston     26420
766           George Bush Intercontinental/Houston     26420
767                             Pocatello Regional     38540
768                Cleveland-Hopkins International     17460
769                           Hector International     22020
770              Ronald Reagan Washington National     47900
771                       Pittsburgh International     38300
772                   Chicago O'Hare International     16980
773                      Los Angeles International     31080
774                      Los Angeles International     31080
775                      Los Angeles International     31080
776                      Los Angeles International     31080
777                      Los Angeles International     31080
778                      Los Angeles International     31080
779                      Los Angeles International     31080
780                      Los Angeles International     31080
781            Baton Rouge Metropolitan/Ryan Field     12940
782                    San Francisco International     41860
783                     Indianapolis International     26900
784           Kalamazoo/Battle Creek International     28020
785                      San Antonio International     41700
786               Dane County Regional-Truax Field     31540
787              Minneapolis-St Paul International     33460
788                        San Diego International     41740
789                 General Mitchell International     33340
790                         McCarran International     29820
791                             Mahlon Sweet Field     21660
792                             Monterey Peninsula     41500
793               Dane County Regional-Truax Field     31540
794              Minneapolis-St Paul International     33460
795              Minneapolis-St Paul International     33460
796                      Great Falls International     24500
797        Green Bay Austin Straubel International     24580
798             Metropolitan Oakland International     41860
799               Roswell International Air Center     40740
800                                Kahului Airport     27980
801            Wilkes Barre Scranton International     42540
802                                      LaGuardia     35620
803                     Jacksonville International     27260
804                                Eppley Airfield     36540
805                   Theodore Francis Green State     39300
806                  Chippewa County International     42300
807                          Ontario International     40140
808                      San Antonio International     41700
809                          Ontario International     40140
810                            Miami International     33100
811                   Chicago O'Hare International     16980
812                   Chicago O'Hare International     16980
813                   Chicago O'Hare International     16980
814                   Chicago O'Hare International     16980
815                           Denver International     19740
816                         Portland International     38900
817                         Portland International     38900
818                         Portland International     38900
819                         Portland International     38900
820                         Portland International     38900
821                         Portland International     38900
822                         Portland International     38900
823                         Portland International     38900
824                      Kansas City International     28140
825          Kona International Airport at Keahole     25900
826               Phoenix Sky Harbor International     38060
827               Phoenix Sky Harbor International     38060
828                       Pittsburgh International     38300
829                 General Mitchell International     33340
830                         McCarran International     29820
831                                  Roberts Field     13460
832                     Palm Springs International     40140
833                             Boise Air Terminal     14260
834               Dane County Regional-Truax Field     31540
835                            Rapid City Regional     39660
836                          Memphis International     32820
837                          Ontario International     40140
838                                Helena Regional     25740
839                         Appleton International     11540
840                Charlotte Douglas International     16740
841                         Richmond International     40060
842                       Reno/Tahoe International     39900
843                       Sacramento International     40900
844                        San Diego International     41740
845                        San Diego International     41740
846                        San Diego International     41740
847                        San Diego International     41740
848                        San Diego International     41740
849                        San Diego International     41740
850                        San Diego International     41740
851                             Monterey Peninsula     41500
852          Prescott Regional Ernest A Love Field     39150
853                       San Luis County Regional     42020
854                         McCarran International     29820
855                        Santa Barbara Municipal     42200
856                 St Louis Lambert International     41180
857                       San Luis County Regional     42020
858                         McCarran International     29820
859                            Miami International     33100
860                   Seattle/Tacoma International     42660
861                   Seattle/Tacoma International     42660
862                   Seattle/Tacoma International     42660
863                   Seattle/Tacoma International     42660
864                    San Francisco International     41860
865                    San Francisco International     41860
866                    San Francisco International     41860
867                    San Francisco International     41860
868                    San Francisco International     41860
869                    San Francisco International     41860
870                    San Francisco International     41860
871                    San Francisco International     41860
872        Norman Y. Mineta San Jose International     41940
873        Norman Y. Mineta San Jose International     41940
874        Norman Y. Mineta San Jose International     41940
875        Norman Y. Mineta San Jose International     41940
876        Norman Y. Mineta San Jose International     41940
877                     Detroit Metro Wayne County     19820
878                           Tucson International     46060
879          Kona International Airport at Keahole     25900
880                   Salt Lake City International     41620
881                        Durango La Plata County     20420
882                          Orlando International     36740
883                                  Meadows Field     12540
884                       San Luis County Regional     42020
885                  Daniel K Inouye International     46520
886                       Sacramento International     40900
887                       Sacramento International     40900
888                       Sacramento International     40900
889                  Daniel K Inouye International     46520
890                                  Roberts Field     13460
891                   Seattle/Tacoma International     42660
892               John Wayne Airport-Orange County     31080
893         Birmingham-Shuttlesworth International     13820
894                            South Bend Regional     43780
895                Dallas/Fort Worth International     19100
896              Charles M. Schulz - Sonoma County     42220
897              Charles M. Schulz - Sonoma County     42220
898              Charles M. Schulz - Sonoma County     42220
899                                Eppley Airfield     36540
900                                Eppley Airfield     36540
901            Ted Stevens Anchorage International     11260
902                           Tucson International     46060
903              Ronald Reagan Washington National     47900
904                                       Bob Hope     31080
905              Albuquerque International Sunport     10740
906                   Billings Logan International     13740
907                   Chicago O'Hare International     16980
908                             Boise Air Terminal     14260
909                             Boise Air Terminal     14260
910                             Boise Air Terminal     14260
911              Bozeman Yellowstone International     14580
912                                     Tri Cities     28420
913                     Detroit Metro Wayne County     19820
914                  John F. Kennedy International     35620
915      Louis Armstrong New Orleans International     35380
916                         Missoula International     33540
917                     Glacier Park International     28060
918                          Spokane International     44060
919                  John F. Kennedy International     35620
920                        Santa Barbara Municipal     42200
921                   Newark Liberty International     35620
922                          Spokane International     44060
923           Rogue Valley International - Medford     32780
924                                Helena Regional     25740
925                           Idaho Falls Regional     26820
926                      Los Angeles International     31080
927           Rogue Valley International - Medford     32780
928           Rogue Valley International - Medford     32780
929             Metropolitan Oakland International     41860
930                               Snohomish County     42660
931                               Snohomish County     42660
932                               Snohomish County     42660
933                               Snohomish County     42660
934                         Portland International     38900
935                         Portland International     38900
936                     Palm Springs International     40140
937                          El Paso International     21340
938                        Pullman Moscow Regional     39420
939                                  Roberts Field     13460
940                        San Diego International     41740
941                        Santa Barbara Municipal     42200
942                   Seattle/Tacoma International     42660
943                   Seattle/Tacoma International     42660
944                   Seattle/Tacoma International     42660
945                   Seattle/Tacoma International     42660
946                   Seattle/Tacoma International     42660
947                   Seattle/Tacoma International     42660
948                   Seattle/Tacoma International     42660
949                   Seattle/Tacoma International     42660
950                   Seattle/Tacoma International     42660
951                   Seattle/Tacoma International     42660
952                   Seattle/Tacoma International     42660
953                   Seattle/Tacoma International     42660
954                   Seattle/Tacoma International     42660
955                   Seattle/Tacoma International     42660
956                   Seattle/Tacoma International     42660
957                    San Francisco International     41860
958        Norman Y. Mineta San Jose International     41940
959               John Wayne Airport-Orange County     31080
960              Charles M. Schulz - Sonoma County     42220
961                           Denver International     19740
962               Austin - Bergstrom International     12420
963                          Bradley International     25540
964                     Philadelphia International     37980
965                     Glacier Park International     28060
966                         Missoula International     33540
967       Hartsfield-Jackson Atlanta International     12060
968                              Greenbrier Valley      <NA>
969                         Appleton International     11540
970                           Denver International     19740
971               Austin - Bergstrom International     12420
972                                Eppley Airfield     36540
973               Austin - Bergstrom International     12420
974                                      Key Field     32940
975                   Seattle/Tacoma International     42660
976               John Wayne Airport-Orange County     31080
977                                      LaGuardia     35620
978               John Wayne Airport-Orange County     31080
979               Austin - Bergstrom International     12420
980                          Bradley International     25540
981                      Los Angeles International     31080
982                   Raleigh-Durham International     39580
983             Savannah/Hilton Head International     42340
984                   Piedmont Triad International     24660
985         Birmingham-Shuttlesworth International     13820
986     Cincinnati/Northern Kentucky International     17140
987       Hartsfield-Jackson Atlanta International     12060
988                             Boise Air Terminal     14260
989                                   Jackson Hole     27220
990                                  Roberts Field     13460
991                            Logan International     14460
992                           Denver International     19740
993                          Orlando International     36740
994      Louis Armstrong New Orleans International     35380
995                            Tampa International     45300
996                            Hilton Head Airport     25940
997                            Logan International     14460
998                                  Lihue Airport     28180
999                       Des Moines International     19780
1000                                 Lihue Airport     28180
1001                 Buffalo Niagara International     15380
1002                  Newark Liberty International     35620
1003                 Daniel K Inouye International     46520
1004                 Daniel K Inouye International     46520
1005                               Kahului Airport     27980
1006                        McCarran International     29820
1007     Louis Armstrong New Orleans International     35380
1008                      Pittsburgh International     38300
1009                             MBS International     40980
1010                Portland International Jetport     38860
1011                               Lincoln Airport     30700
1012               Cleveland-Hopkins International     17460
1013               Cleveland-Hopkins International     17460
1014               Southwest Florida International     15980
1015                      Reno/Tahoe International     39900
1016            City of Colorado Springs Municipal     17820
1017                              Salina Municipal     41460
1018                  Newark Liberty International     35620
1019                           Miami International     33100
1020                           Logan International     14460
1021            Eglin AFB Destin Fort Walton Beach     18880
1022                          Denver International     19740
1023                       Santa Barbara Municipal     42200
1024                  Newark Liberty International     35620
1025                          Denver International     19740
1026               Washington Dulles International     47900
1027                         Norfolk International     47260
1028                          Duluth International     20260
1029                          Denver International     19740
1030                          Denver International     19740
1031                          Denver International     19740
1032                          Denver International     19740
1033               Dallas/Fort Worth International     19100
1034                               Joplin Regional     27900
1035          George Bush Intercontinental/Houston     26420
1036                          Denver International     19740
1037               Southwest Florida International     15980
1038                  Newark Liberty International     35620
1039            City of Colorado Springs Municipal     17820
1040                      Sacramento International     40900
1041                       Nashville International     34980
1042            City of Colorado Springs Municipal     17820
1043                             Will Rogers World     36420
1044                  Newark Liberty International     35620
1045       Fort Lauderdale-Hollywood International     33100
1046                  Newark Liberty International     35620
1047                  Salt Lake City International     41620
1048                                  Jackson Hole     27220
1049                  Newark Liberty International     35620
1050                  Newark Liberty International     35620
1051                  Newark Liberty International     35620
1052                  Newark Liberty International     35620
1053                  Newark Liberty International     35620
1054                  Newark Liberty International     35620
1055                  Newark Liberty International     35620
1056                  Newark Liberty International     35620
1057                  Newark Liberty International     35620
1058                  Newark Liberty International     35620
1059                  Newark Liberty International     35620
1060                                Joe Foss Field     43620
1061                   San Francisco International     41860
1062                    Presque Isle International      <NA>
1063       Fort Lauderdale-Hollywood International     33100
1064                               Robert Gray AAF     28660
1065       Fort Lauderdale-Hollywood International     33100
1066                           Tampa International     45300
1067                     San Antonio International     41700
1068          Greenville-Spartanburg International     43900
1069                      Pittsburgh International     38300
1070         Louisville Muhammad Ali International     31140
1071              Sarasota/Bradenton International     35840
1072       Northwest Florida Beaches International     37460
1073     Louis Armstrong New Orleans International     35380
1074         Louisville Muhammad Ali International     31140
1075                      Sacramento International     40900
1076            Baltimore/Washington International     12580
1077                         Orlando International     36740
1078               Washington Dulles International     47900
1079               Washington Dulles International     47900
1080               Washington Dulles International     47900
1081               Washington Dulles International     47900
1082               Washington Dulles International     47900
1083               Washington Dulles International     47900
1084               Washington Dulles International     47900
1085               Washington Dulles International     47900
1086                                    Tri Cities     28420
1087               Washington Dulles International     47900
1088             Albuquerque International Sunport     10740
1089          George Bush Intercontinental/Houston     26420
1090          George Bush Intercontinental/Houston     26420
1091          George Bush Intercontinental/Houston     26420
1092          George Bush Intercontinental/Houston     26420
1093                              Barkley Regional     37140
1094          George Bush Intercontinental/Houston     26420
1095          George Bush Intercontinental/Houston     26420
1096          George Bush Intercontinental/Houston     26420
1097                  Charleston AFB/International     16700
1098                             Will Rogers World     36420
1099             Ronald Reagan Washington National     47900
1100                Portland International Jetport     38860
1101               Greater Rochester International     40380
1102                    Jacksonville International     27260
1103                     San Antonio International     41700
1104                 John F. Kennedy International     35620
1105            Baltimore/Washington International     12580
1106             John Glenn Columbus International     18140
1107                        Richmond International     40060
1108                        McCarran International     29820
1109                          Bangor International     12620
1110                    Manchester-Boston Regional     31700
1111                       Nashville International     34980
1112                General Mitchell International     33340
1113               Cleveland-Hopkins International     17460
1114                    Indianapolis International     26900
1115                         Orlando International     36740
1116                           Tampa International     45300
1117             John Glenn Columbus International     18140
1118    Cincinnati/Northern Kentucky International     17140
1119              Dane County Regional-Truax Field     31540
1120    Cincinnati/Northern Kentucky International     17140
1121                    Detroit Metro Wayne County     19820
1122    Cincinnati/Northern Kentucky International     17140
1123               Southwest Florida International     15980
1124                     Los Angeles International     31080
1125                     Los Angeles International     31080
1126                    Detroit Metro Wayne County     19820
1127       Norman Y. Mineta San Jose International     41940
1128                        Portland International     38900
1129                          Denver International     19740
1130                      Sacramento International     40900
1131                  Raleigh-Durham International     39580
1132            Baltimore/Washington International     12580
1133                               Kahului Airport     27980
1134               Southwest Florida International     15980
1135                         Norfolk International     47260
1136              Phoenix Sky Harbor International     38060
1137                       San Diego International     41740
1138                          Bishop International     22420
1139                      Palm Beach International     33100
1140                            Lafayette Regional     29180
1141               Washington Dulles International     47900
1142        Birmingham-Shuttlesworth International     13820
1143                  Billings Logan International     13740
1144         Kona International Airport at Keahole     25900
1145                Syracuse Hancock International     45060
1146                  Salt Lake City International     41620
1147                St Louis Lambert International     41180
1148                         Bradley International     25540
1149                    Indianapolis International     26900
1150                  Chicago O'Hare International     16980
1151                  Chicago O'Hare International     16980
1152                  Chicago O'Hare International     16980
1153                  Chicago O'Hare International     16980
1154                    Palm Springs International     40140
1155                  Chicago O'Hare International     16980
1156                  Chicago O'Hare International     16980
1157                          Denver International     19740
1158                  Chicago O'Hare International     16980
1159                  Chicago O'Hare International     16980
1160                  Chicago O'Hare International     16980
1161                  Chicago O'Hare International     16980
1162                  Chicago O'Hare International     16980
1163                  Chicago O'Hare International     16980
1164                                 Lihue Airport     28180
1165                         Memphis International     32820
1166             John Glenn Columbus International     18140
1167                              The Eastern Iowa     16300
1168                        Portland International     38900
1169               Washington Dulles International     47900
1170              Phoenix Sky Harbor International     38060
1171                 Buffalo Niagara International     15380
1172                                  Lovell Field     16860
1173             Bozeman Yellowstone International     14580
1174         Louisville Muhammad Ali International     31140
1175                       Nashville International     34980
1176        General Downing - Peoria International     37900
1177          Rogue Valley International - Medford     32780
1178                     San Antonio International     41700
1179               Dallas/Fort Worth International     19100
1180                    Palm Springs International     40140
1181                       Quad City International     19340
1182               Dallas/Fort Worth International     19100
1183                      Ithaca Tompkins Regional     27060
1184                      Burlington International     15540
1185                              The Eastern Iowa     16300
1186              James M Cox/Dayton International     19430
1187                   San Francisco International     41860
1188                  Newark Liberty International     35620
1189                  Theodore Francis Green State     39300
1190                   San Francisco International     41860
1191                Portland International Jetport     38860
1192                    Philadelphia International     37980
1193                St Louis Lambert International     41180
1194                   San Francisco International     41860
1195                  Theodore Francis Green State     39300
1196               Greater Rochester International     40380
1197                       Quad City International     19340
1198             Ronald Reagan Washington National     47900
1199                         Bradley International     25540
1200                           Miami International     33100
1201                           Tampa International     45300
1202    Cincinnati/Northern Kentucky International     17140
1203                         Ontario International     40140
1204                          Tucson International     46060
1205       Northwest Florida Beaches International     37460
1206             Albuquerque International Sunport     10740
1207                                 Lihue Airport     28180
1208             Albuquerque International Sunport     10740
1209             Albuquerque International Sunport     10740
1210             Albuquerque International Sunport     10740
1211                          Albany International     10580
1212                         Orlando International     36740
1213                      Palm Beach International     33100
1214               Southwest Florida International     15980
1215               Southwest Florida International     15980
1216                      Sacramento International     40900
1217                          Albany International     10580
1218                      Sacramento International     40900
1219                          Albany International     10580
1220           Rick Husband Amarillo International     11100
1221           Rick Husband Amarillo International     11100
1222      Hartsfield-Jackson Atlanta International     12060
1223      Hartsfield-Jackson Atlanta International     12060
1224                         El Paso International     21340
1225                        McCarran International     29820
1226                     Los Angeles International     31080
1227              Phoenix Sky Harbor International     38060
1228      Hartsfield-Jackson Atlanta International     12060
1229      Hartsfield-Jackson Atlanta International     12060
1230      Hartsfield-Jackson Atlanta International     12060
1231      Hartsfield-Jackson Atlanta International     12060
1232      Hartsfield-Jackson Atlanta International     12060
1233                            Long Beach Airport     31080
1234            Metropolitan Oakland International     41860
1235                  Salt Lake City International     41620
1236      Hartsfield-Jackson Atlanta International     12060
1237      Hartsfield-Jackson Atlanta International     12060
1238      Hartsfield-Jackson Atlanta International     12060
1239      Hartsfield-Jackson Atlanta International     12060
1240      Hartsfield-Jackson Atlanta International     12060
1241      Hartsfield-Jackson Atlanta International     12060
1242                           Tulsa International     46140
1243      Hartsfield-Jackson Atlanta International     12060
1244      Hartsfield-Jackson Atlanta International     12060
1245                               Kahului Airport     27980
1246      Hartsfield-Jackson Atlanta International     12060
1247      Hartsfield-Jackson Atlanta International     12060
1248      Hartsfield-Jackson Atlanta International     12060
1249      Hartsfield-Jackson Atlanta International     12060
1250      Hartsfield-Jackson Atlanta International     12060
1251                 Daniel K Inouye International     46520
1252      Hartsfield-Jackson Atlanta International     12060
1253      Hartsfield-Jackson Atlanta International     12060
1254      Hartsfield-Jackson Atlanta International     12060
1255      Hartsfield-Jackson Atlanta International     12060
1256                           Logan International     14460
1257                                     LaGuardia     35620
1258                               Eppley Airfield     36540
1259            Savannah/Hilton Head International     42340
1260              Austin - Bergstrom International     12420
1261                           Miami International     33100
1262                               Eppley Airfield     36540
1263            Metropolitan Oakland International     41860
1264                  Seattle/Tacoma International     42660
1265                    Palm Springs International     40140
1266                       San Diego International     41740
1267              Austin - Bergstrom International     12420
1268              Austin - Bergstrom International     12420
1269              Austin - Bergstrom International     12420
1270              Austin - Bergstrom International     12420
1271              Austin - Bergstrom International     12420
1272              Austin - Bergstrom International     12420
1273              Austin - Bergstrom International     12420
1274              Austin - Bergstrom International     12420
1275              Austin - Bergstrom International     12420
1276              Austin - Bergstrom International     12420
1277              Austin - Bergstrom International     12420
1278              Austin - Bergstrom International     12420
1279              Austin - Bergstrom International     12420
1280              Austin - Bergstrom International     12420
1281              Austin - Bergstrom International     12420
1282              Austin - Bergstrom International     12420
1283              Austin - Bergstrom International     12420
1284              Austin - Bergstrom International     12420
1285                  Theodore Francis Green State     39300
1286                        McCarran International     29820
1287                         Ontario International     40140
1288                         Bradley International     25540
1289                         Bradley International     25540
1290        Birmingham-Shuttlesworth International     13820
1291        Birmingham-Shuttlesworth International     13820
1292        Birmingham-Shuttlesworth International     13820
1293        Birmingham-Shuttlesworth International     13820
1294        Birmingham-Shuttlesworth International     13820
1295        Birmingham-Shuttlesworth International     13820
1296                      Bellingham International     13380
1297                       Nashville International     34980
1298                       Nashville International     34980
1299                       Nashville International     34980
1300                             Montrose Regional     33940
1301                       Nashville International     34980
1302                       Nashville International     34980
1303                       Nashville International     34980
1304                       Nashville International     34980
1305                       Nashville International     34980
1306                      Reno/Tahoe International     39900
1307                       Nashville International     34980
1308                            Long Beach Airport     31080
1309                       Nashville International     34980
1310                       Nashville International     34980
1311                       Nashville International     34980
1312                       Nashville International     34980
1313                       Nashville International     34980
1314                       Nashville International     34980
1315                       Nashville International     34980
1316                       Nashville International     34980
1317                       Nashville International     34980
1318                       Nashville International     34980
1319                       Nashville International     34980
1320                       Nashville International     34980
1321                       Nashville International     34980
1322                       Nashville International     34980
1323                       Nashville International     34980
1324                       Nashville International     34980
1325                 Daniel K Inouye International     46520
1326                               Kahului Airport     27980
1327                       Nashville International     34980
1328                       Nashville International     34980
1329                       Nashville International     34980
1330                       Nashville International     34980
1331                       Nashville International     34980
1332                       Nashville International     34980
1333                 Buffalo Niagara International     15380
1334                           Miami International     33100
1335                            Boise Air Terminal     14260
1336                            Boise Air Terminal     14260
1337                            Boise Air Terminal     14260
1338                            Boise Air Terminal     14260
1339                      Reno/Tahoe International     39900
1340                             Dallas Love Field     19100
1341                               William P Hobby     26420
1342                  Charleston AFB/International     16700
1343          Greenville-Spartanburg International     43900
1344                    Indianapolis International     26900
1345                    Jacksonville International     27260
1346              Phoenix Sky Harbor International     38060
1347            Savannah/Hilton Head International     42340
1348                          Denver International     19740
1349                     Los Angeles International     31080
1350             Minneapolis-St Paul International     33460
1351              Phoenix Sky Harbor International     38060
1352       Norman Y. Mineta San Jose International     41940
1353                           Logan International     14460
1354              Sarasota/Bradenton International     35840
1355                 Buffalo Niagara International     15380
1356                 Buffalo Niagara International     15380
1357                 Buffalo Niagara International     15380
1358                                      Bob Hope     31080
1359     Louis Armstrong New Orleans International     35380
1360                  Raleigh-Durham International     39580
1361                           Tampa International     45300
1362                             Will Rogers World     36420
1363                                      Bob Hope     31080
1364                                      Bob Hope     31080
1365                                      Bob Hope     31080
1366                                      Bob Hope     31080
1367                                      Bob Hope     31080
1368                                      Bob Hope     31080
1369            Baltimore/Washington International     12580
1370            Baltimore/Washington International     12580
1371                  Seattle/Tacoma International     42660
1372            Baltimore/Washington International     12580
1373            Baltimore/Washington International     12580
1374            Baltimore/Washington International     12580
1375            Baltimore/Washington International     12580
1376            Baltimore/Washington International     12580
1377            Baltimore/Washington International     12580
1378            Baltimore/Washington International     12580
1379            Baltimore/Washington International     12580
1380            Baltimore/Washington International     12580
1381            Baltimore/Washington International     12580
1382                Luis Munoz Marin International     41980
1383            Baltimore/Washington International     12580
1384            Baltimore/Washington International     12580
1385            Baltimore/Washington International     12580
1386         Kona International Airport at Keahole     25900
1387            Baltimore/Washington International     12580
1388               Washington Dulles International     47900
1389            Baltimore/Washington International     12580
1390            Baltimore/Washington International     12580
1391            Baltimore/Washington International     12580
1392         Kona International Airport at Keahole     25900
1393            Baltimore/Washington International     12580
1394            Baltimore/Washington International     12580
1395            Baltimore/Washington International     12580
1396            Baltimore/Washington International     12580
1397            Baltimore/Washington International     12580
1398            Baltimore/Washington International     12580
1399            Baltimore/Washington International     12580
1400               Southwest Florida International     15980
1401             Bozeman Yellowstone International     14580
1402                     Kansas City International     28140
1403                General Mitchell International     33340
1404                  Charleston AFB/International     16700
1405            City of Colorado Springs Municipal     17820
1406                  Charleston AFB/International     16700
1407                     Los Angeles International     31080
1408               Southwest Florida International     15980
1409               Cleveland-Hopkins International     17460
1410               Cleveland-Hopkins International     17460
1411                 Daniel K Inouye International     46520
1412               Cleveland-Hopkins International     17460
1413               Cleveland-Hopkins International     17460
1414             John Glenn Columbus International     18140
1415             John Glenn Columbus International     18140
1416                          Tucson International     46060
1417             John Glenn Columbus International     18140
1418              Phoenix Sky Harbor International     38060
1419       Northwest Florida Beaches International     37460
1420             John Glenn Columbus International     18140
1421             John Glenn Columbus International     18140
1422             John Glenn Columbus International     18140
1423             John Glenn Columbus International     18140
1424             John Glenn Columbus International     18140
1425             John Glenn Columbus International     18140
1426                       Santa Barbara Municipal     42200
1427            City of Colorado Springs Municipal     17820
1428            City of Colorado Springs Municipal     17820
1429                  Corpus Christi International     18580
1430               Southwest Florida International     15980
1431                         Spokane International     44060
1432            Metropolitan Oakland International     41860
1433    Cincinnati/Northern Kentucky International     17140
1434    Cincinnati/Northern Kentucky International     17140
1435    Cincinnati/Northern Kentucky International     17140
1436                           Tampa International     45300
1437    Cincinnati/Northern Kentucky International     17140
1438                             Dallas Love Field     19100
1439                            Long Beach Airport     31080
1440                             Dallas Love Field     19100
1441            Metropolitan Oakland International     41860
1442                             Dallas Love Field     19100
1443                             Dallas Love Field     19100
1444                             Dallas Love Field     19100
1445                             Dallas Love Field     19100
1446                             Dallas Love Field     19100
1447                             Dallas Love Field     19100
1448                             Dallas Love Field     19100
1449                             Dallas Love Field     19100
1450                             Dallas Love Field     19100
1451                             Dallas Love Field     19100
1452                             Dallas Love Field     19100
1453                             Dallas Love Field     19100
1454                             Dallas Love Field     19100
1455                             Dallas Love Field     19100
1456                             Dallas Love Field     19100
1457                             Dallas Love Field     19100
1458                             Dallas Love Field     19100
1459                             Dallas Love Field     19100
1460                             Dallas Love Field     19100
1461                             Dallas Love Field     19100
1462                             Dallas Love Field     19100
1463                             Dallas Love Field     19100
1464                             Dallas Love Field     19100
1465                             Dallas Love Field     19100
1466                             Dallas Love Field     19100
1467                             Dallas Love Field     19100
1468                             Dallas Love Field     19100
1469                             Dallas Love Field     19100
1470                             Dallas Love Field     19100
1471                             Dallas Love Field     19100
1472                             Dallas Love Field     19100
1473                             Dallas Love Field     19100
1474                             Dallas Love Field     19100
1475                             Dallas Love Field     19100
1476            Metropolitan Oakland International     41860
1477              Sarasota/Bradenton International     35840
1478             Ronald Reagan Washington National     47900
1479             Ronald Reagan Washington National     47900
1480             Ronald Reagan Washington National     47900
1481                          Denver International     19740
1482             Ronald Reagan Washington National     47900
1483             Ronald Reagan Washington National     47900
1484             Ronald Reagan Washington National     47900
1485             Ronald Reagan Washington National     47900
1486             Ronald Reagan Washington National     47900
1487             Ronald Reagan Washington National     47900
1488             Ronald Reagan Washington National     47900
1489            Baltimore/Washington International     12580
1490             Ronald Reagan Washington National     47900
1491                          Denver International     19740
1492                                     LaGuardia     35620
1493                          Denver International     19740
1494                         Long Island MacArthur     35620
1495                          Denver International     19740
1496              Sarasota/Bradenton International     35840
1497                          Denver International     19740
1498                          Denver International     19740
1499                          Denver International     19740
1500              Sarasota/Bradenton International     35840
1501                          Denver International     19740
1502                          Denver International     19740
1503                          Denver International     19740
1504                         Orlando International     36740
1505                    Philadelphia International     37980
1506                          Denver International     19740
1507                          Denver International     19740
1508                          Denver International     19740
1509       Fort Lauderdale-Hollywood International     33100
1510                          Denver International     19740
1511                          Denver International     19740
1512                          Denver International     19740
1513                          Denver International     19740
1514                          Denver International     19740
1515                          Denver International     19740
1516                          Denver International     19740
1517                          Denver International     19740
1518                      Sacramento International     40900
1519                          Denver International     19740
1520                          Denver International     19740
1521                          Denver International     19740
1522                          Denver International     19740
1523                          Denver International     19740
1524                          Denver International     19740
1525                          Denver International     19740
1526                          Denver International     19740
1527                          Denver International     19740
1528                           Tampa International     45300
1529          George Bush Intercontinental/Houston     26420
1530                               William P Hobby     26420
1531                       San Diego International     41740
1532                    Detroit Metro Wayne County     19820
1533                    Detroit Metro Wayne County     19820
1534                    Detroit Metro Wayne County     19820
1535             Albuquerque International Sunport     10740
1536                    Philadelphia International     37980
1537                         El Paso International     21340
1538                         El Paso International     21340
1539                         El Paso International     21340
1540                         El Paso International     21340
1541                         El Paso International     21340
1542       Norman Y. Mineta San Jose International     41940
1543                           Tampa International     45300
1544                    Jacksonville International     27260
1545                           Tampa International     45300
1546                         El Paso International     21340
1547                         El Paso International     21340
1548                       San Diego International     41740
1549                            Mahlon Sweet Field     21660
1550                            Mahlon Sweet Field     21660
1551                 Fresno Yosemite International     23420
1552                          Denver International     19740
1553                        McCarran International     29820
1554       Norman Y. Mineta San Jose International     41940
1555       Fort Lauderdale-Hollywood International     33100
1556              Austin - Bergstrom International     12420
1557       Fort Lauderdale-Hollywood International     33100
1558       Fort Lauderdale-Hollywood International     33100
1559                  Theodore Francis Green State     39300
1560       Fort Lauderdale-Hollywood International     33100
1561       Fort Lauderdale-Hollywood International     33100
1562       Fort Lauderdale-Hollywood International     33100
1563       Fort Lauderdale-Hollywood International     33100
1564              John Wayne Airport-Orange County     31080
1565       Fort Lauderdale-Hollywood International     33100
1566       Fort Lauderdale-Hollywood International     33100
1567       Fort Lauderdale-Hollywood International     33100
1568                         Norfolk International     47260
1569                           Tulsa International     46140
1570                         Spokane International     44060
1571                    Manchester-Boston Regional     31700
1572                         Spokane International     44060
1573                         Spokane International     44060
1574              Phoenix Sky Harbor International     38060
1575                         Spokane International     44060
1576                  Gerald R. Ford International     24340
1577          Greenville-Spartanburg International     43900
1578       Norman Y. Mineta San Jose International     41940
1579                     Los Angeles International     31080
1580                  Salt Lake City International     41620
1581                       Nashville International     34980
1582                               William P Hobby     26420
1583                  Raleigh-Durham International     39580
1584                                     LaGuardia     35620
1585                               William P Hobby     26420
1586                               William P Hobby     26420
1587                               William P Hobby     26420
1588                               William P Hobby     26420
1589                               William P Hobby     26420
1590                               William P Hobby     26420
1591                               William P Hobby     26420
1592                               William P Hobby     26420
1593                               William P Hobby     26420
1594                                     LaGuardia     35620
1595                               William P Hobby     26420
1596                               William P Hobby     26420
1597                               William P Hobby     26420
1598                               William P Hobby     26420
1599                               William P Hobby     26420
1600                               William P Hobby     26420
1601                               William P Hobby     26420
1602                               William P Hobby     26420
1603                               William P Hobby     26420
1604                               William P Hobby     26420
1605                               William P Hobby     26420
1606                               William P Hobby     26420
1607                               William P Hobby     26420
1608                               William P Hobby     26420
1609                               William P Hobby     26420
1610                               William P Hobby     26420
1611                               William P Hobby     26420
1612                               William P Hobby     26420
1613                               William P Hobby     26420
1614                               William P Hobby     26420
1615                         Long Island MacArthur     35620
1616                               William P Hobby     26420
1617                               William P Hobby     26420
1618                               William P Hobby     26420
1619                               William P Hobby     26420
1620      Jackson Medgar Wiley Evers International     27140
1621                          Valley International     15180
1622            City of Colorado Springs Municipal     17820
1623                  Salt Lake City International     41620
1624            Metropolitan Oakland International     41860
1625                      Sacramento International     40900
1626                  Gerald R. Ford International     24340
1627          George Bush Intercontinental/Houston     26420
1628                         Orlando International     36740
1629          George Bush Intercontinental/Houston     26420
1630                         Wichita Mid-Continent     48620
1631                         Wichita Mid-Continent     48620
1632                Portland International Jetport     38860
1633                    Indianapolis International     26900
1634                    Indianapolis International     26900
1635                    Indianapolis International     26900
1636                    Indianapolis International     26900
1637                    Indianapolis International     26900
1638                         Long Island MacArthur     35620
1639                           Miami International     33100
1640            Eglin AFB Destin Fort Walton Beach     18880
1641                    Manchester-Boston Regional     31700
1642                    Jacksonville International     27260
1643                    Jacksonville International     27260
1644                    Jacksonville International     27260
1645      Hartsfield-Jackson Atlanta International     12060
1646            Baltimore/Washington International     12580
1647                             Will Rogers World     36420
1648                        McCarran International     29820
1649                        McCarran International     29820
1650                    Indianapolis International     26900
1651     Louis Armstrong New Orleans International     35380
1652                      Pittsburgh International     38300
1653                        McCarran International     29820
1654                      Pittsburgh International     38300
1655                           Tampa International     45300
1656                        McCarran International     29820
1657                        McCarran International     29820
1658      Hartsfield-Jackson Atlanta International     12060
1659                  Chicago Midway International     16980
1660                        McCarran International     29820
1661                        McCarran International     29820
1662                      Pittsburgh International     38300
1663                        McCarran International     29820
1664                        McCarran International     29820
1665                        McCarran International     29820
1666                        McCarran International     29820
1667                        McCarran International     29820
1668                        McCarran International     29820
1669                        McCarran International     29820
1670                        McCarran International     29820
1671                        McCarran International     29820
1672                        McCarran International     29820
1673                        McCarran International     29820
1674                        McCarran International     29820
1675                        McCarran International     29820
1676                        McCarran International     29820
1677                        McCarran International     29820
1678                        McCarran International     29820
1679                     Los Angeles International     31080
1680                     Los Angeles International     31080
1681                                 Lihue Airport     28180
1682     Louis Armstrong New Orleans International     35380
1683                     San Antonio International     41700
1684                     Los Angeles International     31080
1685                           Tulsa International     46140
1686                         Orlando International     36740
1687       Fort Lauderdale-Hollywood International     33100
1688                     Los Angeles International     31080
1689                     Los Angeles International     31080
1690                     Los Angeles International     31080
1691                     Los Angeles International     31080
1692                         Ontario International     40140
1693                  Raleigh-Durham International     39580
1694           Lubbock Preston Smith International     31180
1695                             Dallas Love Field     19100
1696                               William P Hobby     26420
1697                                     LaGuardia     35620
1698     Louis Armstrong New Orleans International     35380
1699                             Will Rogers World     36420
1700                                     LaGuardia     35620
1701                                     LaGuardia     35620
1702                            Long Beach Airport     31080
1703                  Chicago Midway International     16980
1704                            Long Beach Airport     31080
1705              John Wayne Airport-Orange County     31080
1706                            Long Beach Airport     31080
1707                            Long Beach Airport     31080
1708                            Long Beach Airport     31080
1709                         Ontario International     40140
1710                            Long Beach Airport     31080
1711                            Long Beach Airport     31080
1712                            Long Beach Airport     31080
1713                            Long Beach Airport     31080
1714                            Long Beach Airport     31080
1715                                   Adams Field     30780
1716      Midland International Air and Space Port     33260
1717      Midland International Air and Space Port     33260
1718                     Kansas City International     28140
1719                     Kansas City International     28140
1720              Sarasota/Bradenton International     35840
1721                     Kansas City International     28140
1722                     Kansas City International     28140
1723                     Kansas City International     28140
1724                     Kansas City International     28140
1725                     Kansas City International     28140
1726                     Kansas City International     28140
1727                     Kansas City International     28140
1728                 Buffalo Niagara International     15380
1729             Bozeman Yellowstone International     14580
1730                         Ontario International     40140
1731                  Seattle/Tacoma International     42660
1732                 Fresno Yosemite International     23420
1733              Phoenix Sky Harbor International     38060
1734                         Orlando International     36740
1735                           Logan International     14460
1736                      Des Moines International     19780
1737                       San Diego International     41740
1738                         Orlando International     36740
1739                         Orlando International     36740
1740                         Orlando International     36740
1741                         Orlando International     36740
1742                         Orlando International     36740
1743                         Orlando International     36740
1744                         Orlando International     36740
1745                         Orlando International     36740
1746                         Orlando International     36740
1747                         Orlando International     36740
1748                                 Lihue Airport     28180
1749                         Orlando International     36740
1750                         Orlando International     36740
1751                  Chicago Midway International     16980
1752                  Chicago Midway International     16980
1753                  Chicago Midway International     16980
1754                  Chicago Midway International     16980
1755                  Chicago Midway International     16980
1756                  Chicago Midway International     16980
1757                  Chicago Midway International     16980
1758                  Chicago Midway International     16980
1759                  Chicago Midway International     16980
1760                  Chicago Midway International     16980
1761                  Chicago Midway International     16980
1762                  Chicago Midway International     16980
1763                  Chicago Midway International     16980
1764                  Chicago Midway International     16980
1765                  Chicago Midway International     16980
1766                  Chicago Midway International     16980
1767                  Chicago Midway International     16980
1768                  Chicago Midway International     16980
1769                  Chicago Midway International     16980
1770                  Chicago Midway International     16980
1771                  Chicago Midway International     16980
1772                  Chicago Midway International     16980
1773                  Chicago Midway International     16980
1774                  Chicago Midway International     16980
1775                  Chicago Midway International     16980
1776                  Chicago Midway International     16980
1777                  Chicago Midway International     16980
1778                  Chicago Midway International     16980
1779                  Chicago Midway International     16980
1780                  Chicago Midway International     16980
1781                  Chicago Midway International     16980
1782                St Louis Lambert International     41180
1783                  Chicago Midway International     16980
1784                  Chicago Midway International     16980
1785                  Chicago Midway International     16980
1786                  Chicago Midway International     16980
1787                  Chicago Midway International     16980
1788                  Chicago Midway International     16980
1789                  Chicago Midway International     16980
1790                  Chicago Midway International     16980
1791                  Chicago Midway International     16980
1792                  Chicago Midway International     16980
1793                  Chicago Midway International     16980
1794                  Chicago Midway International     16980
1795                  Chicago Midway International     16980
1796                  Chicago Midway International     16980
1797                  Chicago Midway International     16980
1798                  Chicago Midway International     16980
1799                  Chicago Midway International     16980
1800                  Chicago Midway International     16980
1801                         Memphis International     32820
1802                         Memphis International     32820
1803                         Memphis International     32820
1804                         Memphis International     32820
1805                         Memphis International     32820
1806                     San Antonio International     41700
1807             Minneapolis-St Paul International     33460
1808                           Miami International     33100
1809                           Miami International     33100
1810                     Kansas City International     28140
1811                General Mitchell International     33340
1812                General Mitchell International     33340
1813                General Mitchell International     33340
1814                General Mitchell International     33340
1815                General Mitchell International     33340
1816             Minneapolis-St Paul International     33460
1817               Southwest Florida International     15980
1818                       San Diego International     41740
1819     Louis Armstrong New Orleans International     35380
1820     Louis Armstrong New Orleans International     35380
1821     Louis Armstrong New Orleans International     35380
1822     Louis Armstrong New Orleans International     35380
1823     Louis Armstrong New Orleans International     35380
1824     Louis Armstrong New Orleans International     35380
1825     Louis Armstrong New Orleans International     35380
1826     Louis Armstrong New Orleans International     35380
1827            City of Colorado Springs Municipal     17820
1828     Louis Armstrong New Orleans International     35380
1829     Louis Armstrong New Orleans International     35380
1830     Louis Armstrong New Orleans International     35380
1831                           Tulsa International     46140
1832                    Myrtle Beach International     34820
1833                    Myrtle Beach International     34820
1834            Metropolitan Oakland International     41860
1835            Metropolitan Oakland International     41860
1836            Metropolitan Oakland International     41860
1837            Metropolitan Oakland International     41860
1838                       San Diego International     41740
1839            Metropolitan Oakland International     41860
1840                    Indianapolis International     26900
1841            Metropolitan Oakland International     41860
1842            Metropolitan Oakland International     41860
1843            Metropolitan Oakland International     41860
1844       Norman Y. Mineta San Jose International     41940
1845            Metropolitan Oakland International     41860
1846            Metropolitan Oakland International     41860
1847            Metropolitan Oakland International     41860
1848            Metropolitan Oakland International     41860
1849            Metropolitan Oakland International     41860
1850                      Sacramento International     40900
1851                             Will Rogers World     36420
1852                             Will Rogers World     36420
1853                             Will Rogers World     36420
1854                               Kahului Airport     27980
1855              Sarasota/Bradenton International     35840
1856                               Eppley Airfield     36540
1857                               Eppley Airfield     36540
1858                               Eppley Airfield     36540
1859                     San Antonio International     41700
1860                         Ontario International     40140
1861                         Ontario International     40140
1862            Savannah/Hilton Head International     42340
1863                  Chicago O'Hare International     16980
1864                  Chicago O'Hare International     16980
1865                  Chicago O'Hare International     16980
1866                         Norfolk International     47260
1867                         Norfolk International     47260
1868                         Norfolk International     47260
1869                         Norfolk International     47260
1870                         Bradley International     25540
1871                               Eppley Airfield     36540
1872                        Portland International     38900
1873                           Tampa International     45300
1874                                 Lihue Airport     28180
1875                   San Francisco International     41860
1876                    Philadelphia International     37980
1877                           Miami International     33100
1878              Phoenix Sky Harbor International     38060
1879                General Mitchell International     33340
1880              Phoenix Sky Harbor International     38060
1881      Hartsfield-Jackson Atlanta International     12060
1882              Phoenix Sky Harbor International     38060
1883              Phoenix Sky Harbor International     38060
1884              Phoenix Sky Harbor International     38060
1885              Phoenix Sky Harbor International     38060
1886              Phoenix Sky Harbor International     38060
1887              Phoenix Sky Harbor International     38060
1888              Phoenix Sky Harbor International     38060
1889              Phoenix Sky Harbor International     38060
1890              Phoenix Sky Harbor International     38060
1891              Phoenix Sky Harbor International     38060
1892              Phoenix Sky Harbor International     38060
1893              Phoenix Sky Harbor International     38060
1894              Phoenix Sky Harbor International     38060
1895              Phoenix Sky Harbor International     38060
1896                 Daniel K Inouye International     46520
1897              Phoenix Sky Harbor International     38060
1898              Phoenix Sky Harbor International     38060
1899              Phoenix Sky Harbor International     38060
1900              Phoenix Sky Harbor International     38060
1901              Phoenix Sky Harbor International     38060
1902              Phoenix Sky Harbor International     38060
1903                      Pittsburgh International     38300
1904                      Pittsburgh International     38300
1905                      Pittsburgh International     38300
1906                      Pittsburgh International     38300
1907                      Pittsburgh International     38300
1908                      Pittsburgh International     38300
1909                 Pensacola Gulf Coast Regional     37860
1910                 Pensacola Gulf Coast Regional     37860
1911                 Pensacola Gulf Coast Regional     37860
1912                    Palm Springs International     40140
1913                    Palm Springs International     40140
1914                  Raleigh-Durham International     39580
1915            Metropolitan Oakland International     41860
1916                  Raleigh-Durham International     39580
1917                Luis Munoz Marin International     41980
1918                     San Antonio International     41700
1919                  Raleigh-Durham International     39580
1920                        Richmond International     40060
1921                      Reno/Tahoe International     39900
1922                      Reno/Tahoe International     39900
1923                      Reno/Tahoe International     39900
1924                      Reno/Tahoe International     39900
1925               Greater Rochester International     40380
1926               Greater Rochester International     40380
1927                    Detroit Metro Wayne County     19820
1928               Southwest Florida International     15980
1929               Southwest Florida International     15980
1930               Southwest Florida International     15980
1931               Southwest Florida International     15980
1932               Southwest Florida International     15980
1933                       San Diego International     41740
1934            Eglin AFB Destin Fort Walton Beach     18880
1935                  Charleston AFB/International     16700
1936                         Spokane International     44060
1937                       San Diego International     41740
1938                       San Diego International     41740
1939                       San Diego International     41740
1940             Minneapolis-St Paul International     33460
1941                          Tucson International     46060
1942                     San Antonio International     41700
1943                     San Antonio International     41700
1944                     San Antonio International     41700
1945                     San Antonio International     41700
1946                             Dallas Love Field     19100
1947                       Santa Barbara Municipal     42200
1948         Louisville Muhammad Ali International     31140
1949         Louisville Muhammad Ali International     31140
1950         Louisville Muhammad Ali International     31140
1951         Louisville Muhammad Ali International     31140
1952         Louisville Muhammad Ali International     31140
1953              John Wayne Airport-Orange County     31080
1954              John Wayne Airport-Orange County     31080
1955                  Raleigh-Durham International     39580
1956                   San Francisco International     41860
1957                   San Francisco International     41860
1958       Norman Y. Mineta San Jose International     41940
1959       Norman Y. Mineta San Jose International     41940
1960                 Daniel K Inouye International     46520
1961       Norman Y. Mineta San Jose International     41940
1962                               Kahului Airport     27980
1963                               Kahului Airport     27980
1964       Norman Y. Mineta San Jose International     41940
1965       Norman Y. Mineta San Jose International     41940
1966       Norman Y. Mineta San Jose International     41940
1967       Norman Y. Mineta San Jose International     41940
1968                Luis Munoz Marin International     41980
1969                  Salt Lake City International     41620
1970                  Salt Lake City International     41620
1971                  Salt Lake City International     41620
1972                  Salt Lake City International     41620
1973                      Sacramento International     40900
1974                     Kansas City International     28140
1975                      Sacramento International     40900
1976                      Sacramento International     40900
1977         Kona International Airport at Keahole     25900
1978                      Sacramento International     40900
1979                      Sacramento International     40900
1980                      Sacramento International     40900
1981                      Sacramento International     40900
1982              John Wayne Airport-Orange County     31080
1983     Louis Armstrong New Orleans International     35380
1984              John Wayne Airport-Orange County     31080
1985              Sarasota/Bradenton International     35840
1986              Sarasota/Bradenton International     35840
1987              Sarasota/Bradenton International     35840
1988              Sarasota/Bradenton International     35840
1989                St Louis Lambert International     41180
1990                St Louis Lambert International     41180
1991                St Louis Lambert International     41180
1992                St Louis Lambert International     41180
1993                St Louis Lambert International     41180
1994                St Louis Lambert International     41180
1995                St Louis Lambert International     41180
1996                St Louis Lambert International     41180
1997                St Louis Lambert International     41180
1998                St Louis Lambert International     41180
1999                St Louis Lambert International     41180
2000                         Bradley International     25540
2001                St Louis Lambert International     41180
2002                St Louis Lambert International     41180
2003                St Louis Lambert International     41180
2004                St Louis Lambert International     41180
2005                St Louis Lambert International     41180
2006                St Louis Lambert International     41180
2007                St Louis Lambert International     41180
2008                St Louis Lambert International     41180
2009                St Louis Lambert International     41180
2010                St Louis Lambert International     41180
2011                St Louis Lambert International     41180
2012                St Louis Lambert International     41180
2013                St Louis Lambert International     41180
2014                St Louis Lambert International     41180
2015                St Louis Lambert International     41180
2016                St Louis Lambert International     41180
2017                           Tampa International     45300
2018                Syracuse Hancock International     45060
2019                          Denver International     19740
2020                           Tampa International     45300
2021                           Tampa International     45300
2022                           Tampa International     45300
2023                           Tampa International     45300
2024                           Tampa International     45300
2025                           Tampa International     45300
2026                           Tampa International     45300
2027                           Tampa International     45300
2028                           Tampa International     45300
2029                          Tucson International     46060
2030                          Tucson International     46060
2031            Eglin AFB Destin Fort Walton Beach     18880
2032                General Mitchell International     33340
2033                           Shreveport Regional     43340
2034          Rogue Valley International - Medford     32780
2035                         Orlando International     36740
2036               Dallas/Fort Worth International     19100
2037                      Sacramento International     40900
2038    Cincinnati/Northern Kentucky International     17140
2039                    Jacksonville International     27260
2040                       San Diego International     41740
2041                  Raleigh-Durham International     39580
2042               Washington Dulles International     47900
2043               Washington Dulles International     47900
2044          George Bush Intercontinental/Houston     26420
2045          George Bush Intercontinental/Houston     26420
2046                                     LaGuardia     35620
2047                    Philadelphia International     37980
2048              Phoenix Sky Harbor International     38060
2049              Phoenix Sky Harbor International     38060
2050              John Wayne Airport-Orange County     31080
2051                 Pensacola Gulf Coast Regional     37860
2052             Minneapolis-St Paul International     33460
2053                Luis Munoz Marin International     41980
2054               Washington Dulles International     47900
2055                          Bangor International     12620
2056                 Buffalo Niagara International     15380
2057                      Harrisburg International     25420
2058                    Jacksonville International     27260
2059                           Logan International     14460
2060    Cincinnati/Northern Kentucky International     17140
2061                           Logan International     14460
2062                          Denver International     19740
2063     Louis Armstrong New Orleans International     35380
2064                      Des Moines International     19780
2065                         Norfolk International     47260
2066               Dallas/Fort Worth International     19100
2067                      Palm Beach International     33100
2068                           Logan International     14460
2069                           Logan International     14460
2070                           Logan International     14460
2071                   San Francisco International     41860
2072                    Manchester-Boston Regional     31700
2073                  Charleston AFB/International     16700
2074                           Tulsa International     46140
2075               Cleveland-Hopkins International     17460
2076               Cleveland-Hopkins International     17460
2077               Charlotte Douglas International     16740
2078               Charlotte Douglas International     16740
2079                    Indianapolis International     26900
2080             John Glenn Columbus International     18140
2081             John Glenn Columbus International     18140
2082             John Glenn Columbus International     18140
2083    Cincinnati/Northern Kentucky International     17140
2084                      Sacramento International     40900
2085             Ronald Reagan Washington National     47900
2086             Ronald Reagan Washington National     47900
2087             Ronald Reagan Washington National     47900
2088             Ronald Reagan Washington National     47900
2089              Dane County Regional-Truax Field     31540
2090                  Newark Liberty International     35620
2091                  Newark Liberty International     35620
2092                  Newark Liberty International     35620
2093                  Newark Liberty International     35620
2094                  Newark Liberty International     35620
2095                  Newark Liberty International     35620
2096                 Pensacola Gulf Coast Regional     37860
2097                  Piedmont Triad International     24660
2098               Washington Dulles International     47900
2099               Washington Dulles International     47900
2100                      Wilmington International     48900
2101                    Indianapolis International     26900
2102                   Daytona Beach International     19660
2103                    Indianapolis International     26900
2104                General Mitchell International     33340
2105         Veterans Airport of Southern Illinois     16060
2106               Dallas/Fort Worth International     19100
2107                 John F. Kennedy International     35620
2108       Northwest Florida Beaches International     37460
2109                 John F. Kennedy International     35620
2110              Phoenix Sky Harbor International     38060
2111                                  McGhee Tyson     28940
2112                                     LaGuardia     35620
2113                 John F. Kennedy International     35620
2114                 John F. Kennedy International     35620
2115                 John F. Kennedy International     35620
2116                                     LaGuardia     35620
2117                                     LaGuardia     35620
2118                 John F. Kennedy International     35620
2119                 John F. Kennedy International     35620
2120                 John F. Kennedy International     35620
2121                                     LaGuardia     35620
2122                                     LaGuardia     35620
2123                                     LaGuardia     35620
2124          Greenville-Spartanburg International     43900
2125                         Norfolk International     47260
2126                               Eppley Airfield     36540
2127                         Norfolk International     47260
2128                    Philadelphia International     37980
2129                      Pittsburgh International     38300
2130                      Pittsburgh International     38300
2131                       Fairbanks International     21820
2132                      Pittsburgh International     38300
2133            Savannah/Hilton Head International     42340
2134            Savannah/Hilton Head International     42340
2135         Louisville Muhammad Ali International     31140
2136                  Raleigh-Durham International     39580
2137                  Raleigh-Durham International     39580
2138                  Theodore Francis Green State     39300
2139                           Logan International     14460
2140         Louisville Muhammad Ali International     31140
2141             John Glenn Columbus International     18140
2142               Charlotte Douglas International     16740
2143                  Charleston AFB/International     16700
2144               Cleveland-Hopkins International     17460
2145                     Charlottesville Albemarle     16820
2146                         Akron-Canton Regional     10420
2147               Washington Dulles International     47900
2148                  Seattle/Tacoma International     42660
2149          Sioux Gateway Brig Gen Bud Day Field     43580
2150                  Chicago O'Hare International     16980
2151                  Chicago O'Hare International     16980
2152                        McCarran International     29820
2153                     San Antonio International     41700
2154                        Phoenix - Mesa Gateway     38060
2155             Minneapolis-St Paul International     33460
2156             Minneapolis-St Paul International     33460
2157                      Chippewa Valley Regional     20740
2158                          Albany International     10580
2159                      Wilmington International     48900
2160                          Denver International     19740
2161             Ronald Reagan Washington National     47900
2162                       San Diego International     41740
2163                    Myrtle Beach International     34820
2164               Southwest Florida International     15980
2165                        Richmond International     40060
2166                  Piedmont Triad International     24660
2167                Syracuse Hancock International     45060
2168                     Kansas City International     28140
2169                          Denver International     19740
2170                  Gerald R. Ford International     24340
2171   Huntsville International-Carl T Jones Field     26620
2172          George Bush Intercontinental/Houston     26420
2173                     Los Angeles International     31080
2174       Fort Lauderdale-Hollywood International     33100
2175                 Pensacola Gulf Coast Regional     37860
2176                          Denver International     19740
2177                 Pensacola Gulf Coast Regional     37860
2178                               Tweed New Haven     35300
2179                               Tweed New Haven     35300
2180                         Orlando International     36740
2181                     Los Angeles International     31080
2182               Aspen Pitkin County Sardy Field     24060
2183        Birmingham-Shuttlesworth International     13820
2184                                     LaGuardia     35620
2185                General Mitchell International     33340
2186             Ronald Reagan Washington National     47900
2187             Ronald Reagan Washington National     47900
2188               Dallas/Fort Worth International     19100
2189               Dallas/Fort Worth International     19100
2190               Dallas/Fort Worth International     19100
2191                 Daniel K Inouye International     46520
2192                 John F. Kennedy International     35620
2193      Hartsfield-Jackson Atlanta International     12060
2194                  Chicago O'Hare International     16980
2195                    Philadelphia International     37980
2196                    Philadelphia International     37980
2197              Phoenix Sky Harbor International     38060
2198              Phoenix Sky Harbor International     38060
2199                       San Diego International     41740
2200                       Fairbanks International     21820
2201                        Portland International     38900
2202                           Logan International     14460
2203                           Logan International     14460
2204                                     LaGuardia     35620
2205                         Ontario International     40140
2206                   San Francisco International     41860
2207      Hartsfield-Jackson Atlanta International     12060
2208      Hartsfield-Jackson Atlanta International     12060
2209      Hartsfield-Jackson Atlanta International     12060
2210      Hartsfield-Jackson Atlanta International     12060
2211      Hartsfield-Jackson Atlanta International     12060
2212      Hartsfield-Jackson Atlanta International     12060
2213                           Logan International     14460
2214             Ronald Reagan Washington National     47900
2215                    Detroit Metro Wayne County     19820
2216                    Detroit Metro Wayne County     19820
2217                    Detroit Metro Wayne County     19820
2218                 John F. Kennedy International     35620
2219                 John F. Kennedy International     35620
2220                 John F. Kennedy International     35620
2221                 John F. Kennedy International     35620
2222                     Los Angeles International     31080
2223                     Los Angeles International     31080
2224                     Los Angeles International     31080
2225             Minneapolis-St Paul International     33460
2226             Minneapolis-St Paul International     33460
2227       Norman Y. Mineta San Jose International     41940
2228                  Salt Lake City International     41620
2229                  Salt Lake City International     41620
2230                  Salt Lake City International     41620
2231                           Tampa International     45300
2232                           Tampa International     45300
2233                     Los Angeles International     31080
2234                    Detroit Metro Wayne County     19820
2235                  Chicago O'Hare International     16980
2236                          Denver International     19740
2237                 John F. Kennedy International     35620
2238          George Bush Intercontinental/Houston     26420
2239          George Bush Intercontinental/Houston     26420
2240          George Bush Intercontinental/Houston     26420
2241          George Bush Intercontinental/Houston     26420
2242                  Raleigh-Durham International     39580
2243                   San Francisco International     41860
2244          George Bush Intercontinental/Houston     26420
2245                  Newark Liberty International     35620
2246                                     LaGuardia     35620
2247                  Chicago O'Hare International     16980
2248                        Richmond International     40060
2249                    Philadelphia International     37980
2250                     Kansas City International     28140
2251               Dallas/Fort Worth International     19100
2252                  Gerald R. Ford International     24340
2253                    Philadelphia International     37980
2254                    Myrtle Beach International     34820
2255                       Fairbanks International     21820
2256                                   Agana Field      <NA>
2257         Francisco C. Ada Saipan International      <NA>
2258                  Seattle/Tacoma International     42660
2259                  Seattle/Tacoma International     42660
2260                  Salt Lake City International     41620
2261                          Denver International     19740
2262               Washington Dulles International     47900
2263                   Lehigh Valley International     10900
2264      Hartsfield-Jackson Atlanta International     12060
2265      Hartsfield-Jackson Atlanta International     12060
2266      Hartsfield-Jackson Atlanta International     12060
2267      Hartsfield-Jackson Atlanta International     12060
2268      Hartsfield-Jackson Atlanta International     12060
2269      Hartsfield-Jackson Atlanta International     12060
2270      Hartsfield-Jackson Atlanta International     12060
2271      Hartsfield-Jackson Atlanta International     12060
2272                          Bangor International     12620
2273                           Logan International     14460
2274                           Logan International     14460
2275                     Charlottesville Albemarle     16820
2276                  Charleston AFB/International     16700
2277    Cincinnati/Northern Kentucky International     17140
2278                      Harrisburg International     25420
2279                    Detroit Metro Wayne County     19820
2280                    Detroit Metro Wayne County     19820
2281                    Detroit Metro Wayne County     19820
2282                    Detroit Metro Wayne County     19820
2283                    Detroit Metro Wayne County     19820
2284                    Detroit Metro Wayne County     19820
2285                    Detroit Metro Wayne County     19820
2286                  Newark Liberty International     35620
2287              Phoenix Sky Harbor International     38060
2288                    Indianapolis International     26900
2289                 John F. Kennedy International     35620
2290                 John F. Kennedy International     35620
2291                 John F. Kennedy International     35620
2292                                     LaGuardia     35620
2293                 John F. Kennedy International     35620
2294                 John F. Kennedy International     35620
2295                                     LaGuardia     35620
2296                                     LaGuardia     35620
2297                                     LaGuardia     35620
2298                                     LaGuardia     35620
2299                                     LaGuardia     35620
2300                                     LaGuardia     35620
2301                      Harrisburg International     25420
2302             Minneapolis-St Paul International     33460
2303             Minneapolis-St Paul International     33460
2304             Minneapolis-St Paul International     33460
2305                  Raleigh-Durham International     39580
2306                Roanoke Regional/Woodrum Field     40220
2307               Greater Rochester International     40380
2308                                  McGhee Tyson     28940
2309              Austin - Bergstrom International     12420
2310              Austin - Bergstrom International     12420
2311              Dane County Regional-Truax Field     31540
2312              Austin - Bergstrom International     12420
2313                         Bradley International     25540
2314                           Logan International     14460
2315                           Logan International     14460
2316                    Indianapolis International     26900
2317                           Logan International     14460
2318                   San Francisco International     41860
2319               Charlotte Douglas International     16740
2320               Charlotte Douglas International     16740
2321               Charlotte Douglas International     16740
2322               Charlotte Douglas International     16740
2323               Charlotte Douglas International     16740
2324                            Monterey Peninsula     41500
2325               Charlotte Douglas International     16740
2326               Charlotte Douglas International     16740
2327               Charlotte Douglas International     16740
2328    Cincinnati/Northern Kentucky International     17140
2329             Ronald Reagan Washington National     47900
2330               Dallas/Fort Worth International     19100
2331               Dallas/Fort Worth International     19100
2332               Dallas/Fort Worth International     19100
2333               Dallas/Fort Worth International     19100
2334               Dallas/Fort Worth International     19100
2335               Dallas/Fort Worth International     19100
2336               Dallas/Fort Worth International     19100
2337               Dallas/Fort Worth International     19100
2338               Dallas/Fort Worth International     19100
2339               Dallas/Fort Worth International     19100
2340               Dallas/Fort Worth International     19100
2341               Dallas/Fort Worth International     19100
2342               Dallas/Fort Worth International     19100
2343               Dallas/Fort Worth International     19100
2344               Dallas/Fort Worth International     19100
2345               Dallas/Fort Worth International     19100
2346                  Springfield-Branson National     44180
2347                             Columbia Regional     17860
2348                  Seattle/Tacoma International     42660
2349          George Bush Intercontinental/Houston     26420
2350       Fort Lauderdale-Hollywood International     33100
2351                 John F. Kennedy International     35620
2352                        McCarran International     29820
2353                           Shreveport Regional     43340
2354                      Wilmington International     48900
2355                        Richmond International     40060
2356                      Burlington International     15540
2357                 John F. Kennedy International     35620
2358                         Orlando International     36740
2359                      Harrisburg International     25420
2360                Portland International Jetport     38860
2361                                   Adams Field     30780
2362                  McAllen Miller International     32580
2363                           Miami International     33100
2364                           Miami International     33100
2365                           Miami International     33100
2366                           Miami International     33100
2367                           Miami International     33100
2368                           Miami International     33100
2369                          Tallahassee Regional     45220
2370                      Palm Beach International     33100
2371                  Charleston AFB/International     16700
2372                  Chicago O'Hare International     16980
2373                  Chicago O'Hare International     16980
2374                  Chicago O'Hare International     16980
2375                  Chicago O'Hare International     16980
2376                  Chicago O'Hare International     16980
2377                     Charlottesville Albemarle     16820
2378                    Philadelphia International     37980
2379                    Philadelphia International     37980
2380              Phoenix Sky Harbor International     38060
2381              Phoenix Sky Harbor International     38060
2382              Phoenix Sky Harbor International     38060
2383              Phoenix Sky Harbor International     38060
2384                        Portland International     38900
2385           Baton Rouge Metropolitan/Ryan Field     12940
2386                  Raleigh-Durham International     39580
2387               Southwest Florida International     15980
2388                                    Tri Cities     28700
2389                      Pittsburgh International     38300
2390                  Piedmont Triad International     24660
2391                Roanoke Regional/Woodrum Field     40220
2392        Birmingham-Shuttlesworth International     13820
2393                Luis Munoz Marin International     41980
2394             John Glenn Columbus International     18140
2395         Louisville Muhammad Ali International     31140
2396                          Hector International     22020
2397                  Yuma MCAS/Yuma International     49740
2398           Ted Stevens Anchorage International     11260
2399           Ted Stevens Anchorage International     11260
2400               Wiley Post/Will Rogers Memorial      <NA>
2401             Ronald Reagan Washington National     47900
2402                       Ketchikan International     28540
2403                 Daniel K Inouye International     46520
2404                       Ketchikan International     28540
2405                     Los Angeles International     31080
2406                     Los Angeles International     31080
2407                               Eppley Airfield     36540
2408                           Ralph Wien Memorial      <NA>
2409                        Portland International     38900
2410                               Kahului Airport     27980
2411                  Seattle/Tacoma International     42660
2412                  Seattle/Tacoma International     42660
2413                  Seattle/Tacoma International     42660
2414                  Seattle/Tacoma International     42660
2415                   San Francisco International     41860
2416             Albuquerque International Sunport     10740
2417               Southwest Florida International     15980
2418                          Albany International     10580
2419                         Bradley International     25540
2420                         Bradley International     25540
2421                           Logan International     14460
2422                           Logan International     14460
2423                           Logan International     14460
2424                           Logan International     14460
2425                                      Bob Hope     31080
2426             Ronald Reagan Washington National     47900
2427       Fort Lauderdale-Hollywood International     33100
2428                 John F. Kennedy International     35620
2429                  Seattle/Tacoma International     42660
2430                 John F. Kennedy International     35620
2431                 John F. Kennedy International     35620
2432                 John F. Kennedy International     35620
2433                     Los Angeles International     31080
2434                     Los Angeles International     31080
2435                    Palm Springs International     40140
2436                  Theodore Francis Green State     39300
2437                  Theodore Francis Green State     39300
2438                       San Diego International     41740
2439                Luis Munoz Marin International     41980
2440                Luis Munoz Marin International     41980
2441                      Sacramento International     40900
2442              Sarasota/Bradenton International     35840
2443                Syracuse Hancock International     45060
2444      Hartsfield-Jackson Atlanta International     12060
2445      Hartsfield-Jackson Atlanta International     12060
2446      Hartsfield-Jackson Atlanta International     12060
2447      Hartsfield-Jackson Atlanta International     12060
2448      Hartsfield-Jackson Atlanta International     12060
2449      Hartsfield-Jackson Atlanta International     12060
2450      Hartsfield-Jackson Atlanta International     12060
2451      Hartsfield-Jackson Atlanta International     12060
2452      Hartsfield-Jackson Atlanta International     12060
2453      Hartsfield-Jackson Atlanta International     12060
2454      Hartsfield-Jackson Atlanta International     12060
2455      Hartsfield-Jackson Atlanta International     12060
2456      Hartsfield-Jackson Atlanta International     12060
2457      Hartsfield-Jackson Atlanta International     12060
2458      Hartsfield-Jackson Atlanta International     12060
2459      Hartsfield-Jackson Atlanta International     12060
2460      Hartsfield-Jackson Atlanta International     12060
2461      Hartsfield-Jackson Atlanta International     12060
2462      Hartsfield-Jackson Atlanta International     12060
2463      Hartsfield-Jackson Atlanta International     12060
2464      Hartsfield-Jackson Atlanta International     12060
2465      Hartsfield-Jackson Atlanta International     12060
2466              Austin - Bergstrom International     12420
2467              Austin - Bergstrom International     12420
2468                       Nashville International     34980
2469                           Logan International     14460
2470                                  Jackson Hole     27220
2471               Charlotte Douglas International     16740
2472    Cincinnati/Northern Kentucky International     17140
2473    Cincinnati/Northern Kentucky International     17140
2474    Cincinnati/Northern Kentucky International     17140
2475                                Cherry Capital     45900
2476               Dallas/Fort Worth International     19100
2477                    Detroit Metro Wayne County     19820
2478                    Detroit Metro Wayne County     19820
2479                    Detroit Metro Wayne County     19820
2480                    Detroit Metro Wayne County     19820
2481                    Detroit Metro Wayne County     19820
2482                    Detroit Metro Wayne County     19820
2483                    Detroit Metro Wayne County     19820
2484                    Detroit Metro Wayne County     19820
2485                    Detroit Metro Wayne County     19820
2486                         El Paso International     21340
2487                       Melbourne International     37340
2488               Washington Dulles International     47900
2489                    Indianapolis International     26900
2490                 John F. Kennedy International     35620
2491                                     LaGuardia     35620
2492                     Los Angeles International     31080
2493                     Los Angeles International     31080
2494                         Orlando International     36740
2495                         Memphis International     32820
2496                           Miami International     33100
2497                           Miami International     33100
2498             Minneapolis-St Paul International     33460
2499             Minneapolis-St Paul International     33460
2500             Minneapolis-St Paul International     33460
2501             Minneapolis-St Paul International     33460
2502             Minneapolis-St Paul International     33460
2503             Minneapolis-St Paul International     33460
2504             Minneapolis-St Paul International     33460
2505             Minneapolis-St Paul International     33460
2506             Minneapolis-St Paul International     33460
2507             Minneapolis-St Paul International     33460
2508             Minneapolis-St Paul International     33460
2509             Minneapolis-St Paul International     33460
2510                 John F. Kennedy International     35620
2511                  Piedmont Triad International     24660
2512               Southwest Florida International     15980
2513                     San Antonio International     41700
2514                  Seattle/Tacoma International     42660
2515                  Seattle/Tacoma International     42660
2516                           Rapid City Regional     39660
2517                  Seattle/Tacoma International     42660
2518                   San Francisco International     41860
2519                Luis Munoz Marin International     41980
2520                  Salt Lake City International     41620
2521                  Salt Lake City International     41620
2522                  Salt Lake City International     41620
2523                  Salt Lake City International     41620
2524                  Salt Lake City International     41620
2525                  Salt Lake City International     41620
2526                  Salt Lake City International     41620
2527                  Salt Lake City International     41620
2528                  Salt Lake City International     41620
2529                  Salt Lake City International     41620
2530                  Salt Lake City International     41620
2531                  Salt Lake City International     41620
2532                  Salt Lake City International     41620
2533                                    Tri Cities     28700
2534                      Burlington International     15540
2535                  Newark Liberty International     35620
2536                  Newark Liberty International     35620
2537                  Newark Liberty International     35620
2538                  Newark Liberty International     35620
2539                  Newark Liberty International     35620
2540                  Newark Liberty International     35620
2541               Washington Dulles International     47900
2542               Washington Dulles International     47900
2543                     Los Angeles International     31080
2544                          Tallahassee Regional     45220
2545  Brownsville South Padre Island International     15180
2546               Dallas/Fort Worth International     19100
2547               Dallas/Fort Worth International     19100
2548               Dallas/Fort Worth International     19100
2549               Dallas/Fort Worth International     19100
2550               Dallas/Fort Worth International     19100
2551               Dallas/Fort Worth International     19100
2552                      Des Moines International     19780
2553                    Philadelphia International     37980
2554                           Fort Smith Regional     22900
2555                       Grand Junction Regional     24300
2556                         Wichita Mid-Continent     48620
2557      Jackson Medgar Wiley Evers International     27140
2558                         Lake Charles Regional     29340
2559                           Miami International     33100
2560                               Eppley Airfield     36540
2561                  Chicago O'Hare International     16980
2562                  Chicago O'Hare International     16980
2563                  Chicago O'Hare International     16980
2564                       Abraham Lincoln Capital     44100
2565                          Tallahassee Regional     45220
2566                  Salt Lake City International     41620
2567                         El Paso International     21340
2568               Charlotte Douglas International     16740
2569               Charlotte Douglas International     16740
2570               Charlotte Douglas International     16740
2571               Charlotte Douglas International     16740
2572               Charlotte Douglas International     16740
2573               Charlotte Douglas International     16740
2574             Ronald Reagan Washington National     47900
2575             Ronald Reagan Washington National     47900
2576                  Piedmont Triad International     24660
2577              Dane County Regional-Truax Field     31540
2578                    Philadelphia International     37980
2579                 Pensacola Gulf Coast Regional     37860
2580   Huntsville International-Carl T Jones Field     26620
2581                            Bismarck Municipal     13900
2582           Casper/Natrona County International     16220
2583                  Corpus Christi International     18580
2584                          Denver International     19740
2585                          Denver International     19740
2586                          Denver International     19740
2587                          Denver International     19740
2588                          Denver International     19740
2589                          Denver International     19740
2590                          Denver International     19740
2591                          Denver International     19740
2592                    Detroit Metro Wayne County     19820
2593                    Detroit Metro Wayne County     19820
2594                    Detroit Metro Wayne County     19820
2595                St Louis Lambert International     41180
2596                            Westchester County     35620
2597          George Bush Intercontinental/Houston     26420
2598          George Bush Intercontinental/Houston     26420
2599          George Bush Intercontinental/Houston     26420
2600          George Bush Intercontinental/Houston     26420
2601                     Los Angeles International     31080
2602           Lubbock Preston Smith International     31180
2603      Midland International Air and Space Port     33260
2604                     Kansas City International     28140
2605             Minneapolis-St Paul International     33460
2606             Minneapolis-St Paul International     33460
2607             Minneapolis-St Paul International     33460
2608             Minneapolis-St Paul International     33460
2609             Minneapolis-St Paul International     33460
2610             Minneapolis-St Paul International     33460
2611             Minneapolis-St Paul International     33460
2612                               Eppley Airfield     36540
2613                  Chicago O'Hare International     16980
2614                  Chicago O'Hare International     16980
2615                  Chicago O'Hare International     16980
2616                  Chicago O'Hare International     16980
2617                  Chicago O'Hare International     16980
2618                         Norfolk International     47260
2619              Phoenix Sky Harbor International     38060
2620                        Richmond International     40060
2621            Savannah/Hilton Head International     42340
2622                  Seattle/Tacoma International     42660
2623                   San Francisco International     41860
2624                   San Francisco International     41860
2625                  Salt Lake City International     41620
2626                  Salt Lake City International     41620
2627                  Salt Lake City International     41620
2628                  Salt Lake City International     41620
2629                  Salt Lake City International     41620
2630                  Salt Lake City International     41620
2631                  Salt Lake City International     41620
2632                          Tucson International     46060
2633                        Portland International     38900
2634             Ronald Reagan Washington National     47900
2635                          Denver International     19740
2636                          Denver International     19740
2637                          Denver International     19740
2638                      Des Moines International     19780
2639                  Newark Liberty International     35620
2640                  Newark Liberty International     35620
2641           Ted Stevens Anchorage International     11260
2642                      Sacramento International     40900
2643               Washington Dulles International     47900
2644               Washington Dulles International     47900
2645               Washington Dulles International     47900
2646               Washington Dulles International     47900
2647          George Bush Intercontinental/Houston     26420
2648          George Bush Intercontinental/Houston     26420
2649          George Bush Intercontinental/Houston     26420
2650          George Bush Intercontinental/Houston     26420
2651          George Bush Intercontinental/Houston     26420
2652          George Bush Intercontinental/Houston     26420
2653          George Bush Intercontinental/Houston     26420
2654          George Bush Intercontinental/Houston     26420
2655                     Kansas City International     28140
2656                  McAllen Miller International     32580
2657                               Eppley Airfield     36540
2658                      Pittsburgh International     38300
2659                       San Diego International     41740
2660               Aspen Pitkin County Sardy Field     24060
2661                   San Francisco International     41860
2662                   San Francisco International     41860
2663                   San Francisco International     41860
2664                   San Francisco International     41860
2665                      Sacramento International     40900
2666               Aspen Pitkin County Sardy Field     24060
2667              John Wayne Airport-Orange County     31080
2668              Austin - Bergstrom International     12420
2669                                      Bob Hope     31080
2670            Baltimore/Washington International     12580
2671             John Glenn Columbus International     18140
2672                          Denver International     19740
2673                        Portland International     38900
2674                        McCarran International     29820
2675                        McCarran International     29820
2676                       San Diego International     41740
2677              Phoenix Sky Harbor International     38060
2678               Southwest Florida International     15980
2679                       San Diego International     41740
2680                General Mitchell International     33340
2681                         El Paso International     21340
2682                                Joe Foss Field     43620
2683          George Bush Intercontinental/Houston     26420
2684          George Bush Intercontinental/Houston     26420
2685          George Bush Intercontinental/Houston     26420
2686                     Kansas City International     28140
2687                           Logan International     14460
2688                           Logan International     14460
2689                           Logan International     14460
2690                  Charleston AFB/International     16700
2691             John Glenn Columbus International     18140
2692             Ronald Reagan Washington National     47900
2693                    Detroit Metro Wayne County     19820
2694                  Newark Liberty International     35620
2695                  Newark Liberty International     35620
2696                  Newark Liberty International     35620
2697                  Newark Liberty International     35620
2698          Greenville-Spartanburg International     43900
2699                                     LaGuardia     35620
2700                                     LaGuardia     35620
2701                                     LaGuardia     35620
2702                             Will Rogers World     36420
2703                  Chicago O'Hare International     16980
2704                  Chicago O'Hare International     16980
2705                  Chicago O'Hare International     16980
2706                  Chicago O'Hare International     16980
2707                    Philadelphia International     37980
2708                    Philadelphia International     37980
2709                           Shreveport Regional     43340
2710                  Raleigh-Durham International     39580
2711                   Northwest Arkansas Regional     22220
2712                           Evansville Regional     21780
2713               Washington Dulles International     47900
2714                  Chicago O'Hare International     16980
2715                  Chicago O'Hare International     16980
2716                 Pensacola Gulf Coast Regional     37860
2717             Minneapolis-St Paul International     33460
2718                    Palm Springs International     40140
2719               Southwest Florida International     15980
2720               Charlotte Douglas International     16740
2721               Charlotte Douglas International     16740
2722                    Manchester-Boston Regional     31700
2723                    Philadelphia International     37980
2724                    Philadelphia International     37980
2725        Birmingham-Shuttlesworth International     13820
2726                          Denver International     19740
2727               Washington Dulles International     47900
2728          George Bush Intercontinental/Houston     26420
2729          George Bush Intercontinental/Houston     26420
2730                         Wichita Mid-Continent     48620
2731                                   Adams Field     30780
2732      Hartsfield-Jackson Atlanta International     12060
2733                          Bangor International     12620
2734                       Nashville International     34980
2735                      Burlington International     15540
2736            Baltimore/Washington International     12580
2737                  Gerald R. Ford International     24340
2738          Greenville-Spartanburg International     43900
2739                 John F. Kennedy International     35620
2740                 John F. Kennedy International     35620
2741                                     LaGuardia     35620
2742                                     LaGuardia     35620
2743                                     LaGuardia     35620
2744                   Northwest Arkansas Regional     22220
2745                  Raleigh-Durham International     39580
2746                        Richmond International     40060
2747               Greater Rochester International     40380
2748               Greater Rochester International     40380
2749            Savannah/Hilton Head International     42340
2750            Savannah/Hilton Head International     42340
2751                           Tampa International     45300
2752   Huntsville International-Carl T Jones Field     26620
2753              Austin - Bergstrom International     12420
2754                          Tucson International     46060
2755                                  Lovell Field     16860
2756                               Pitt Greenville     24780
2757                            Boise Air Terminal     14260
2758                               Kahului Airport     27980
2759      Midland International Air and Space Port     33260
2760                                      Bob Hope     31080
2761                 Daniel K Inouye International     46520
2762                            Lafayette Regional     29180
2763               Cleveland-Hopkins International     17460
2764               Cleveland-Hopkins International     17460
2765               Cleveland-Hopkins International     17460
2766           Ted Stevens Anchorage International     11260
2767               Charlotte Douglas International     16740
2768               Charlotte Douglas International     16740
2769               Charlotte Douglas International     16740
2770               Charlotte Douglas International     16740
2771               Charlotte Douglas International     16740
2772               Charlotte Douglas International     16740
2773               Charlotte Douglas International     16740
2774               Charlotte Douglas International     16740
2775               Charlotte Douglas International     16740
2776               Charlotte Douglas International     16740
2777               Charlotte Douglas International     16740
2778               Charlotte Douglas International     16740
2779               Charlotte Douglas International     16740
2780               Charlotte Douglas International     16740
2781    Cincinnati/Northern Kentucky International     17140
2782             Ronald Reagan Washington National     47900
2783             Ronald Reagan Washington National     47900
2784               Dallas/Fort Worth International     19100
2785               Dallas/Fort Worth International     19100
2786               Dallas/Fort Worth International     19100
2787               Dallas/Fort Worth International     19100
2788               Dallas/Fort Worth International     19100
2789               Dallas/Fort Worth International     19100
2790               Dallas/Fort Worth International     19100
2791               Dallas/Fort Worth International     19100
2792               Dallas/Fort Worth International     19100
2793               Dallas/Fort Worth International     19100
2794               Dallas/Fort Worth International     19100
2795               Dallas/Fort Worth International     19100
2796               Dallas/Fort Worth International     19100
2797               Dallas/Fort Worth International     19100
2798               Dallas/Fort Worth International     19100
2799               Dallas/Fort Worth International     19100
2800               Dallas/Fort Worth International     19100
2801               Dallas/Fort Worth International     19100
2802                               Eppley Airfield     36540
2803                                    Blue Grass     30460
2804                Syracuse Hancock International     45060
2805                             Will Rogers World     36420
2806                             Columbia Regional     17860
2807                      Reno/Tahoe International     39900
2808                                  Cyril E King      <NA>
2809             John Glenn Columbus International     18140
2810                    Indianapolis International     26900
2811                    Jacksonville International     27260
2812           Wilkes Barre Scranton International     42540
2813                 Gulfport-Biloxi International     25060
2814            Eglin AFB Destin Fort Walton Beach     18880
2815                           Tulsa International     46140
2816                          Bangor International     12620
2817                Augusta Regional at Bush Field     12260
2818                     Los Angeles International     31080
2819              Sarasota/Bradenton International     35840
2820                     Central Nebraska Regional     24260
2821                         Memphis International     32820
2822                  Theodore Francis Green State     39300
2823                         Columbia Metropolitan     17900
2824                    Myrtle Beach International     34820
2825                               Mobile Regional     33660
2826                     Kansas City International     28140
2827                                  Yampa Valley     44460
2828                         Memphis International     32820
2829                           Miami International     33100
2830                           Miami International     33100
2831                           Miami International     33100
2832                      Reno/Tahoe International     39900
2833                           Miami International     33100
2834                      Des Moines International     19780
2835                           Miami International     33100
2836                           Miami International     33100
2837              Dane County Regional-Truax Field     31540
2838                        Richmond International     40060
2839                                 Waco Regional     47380
2840                  Chicago O'Hare International     16980
2841                  Chicago O'Hare International     16980
2842                    Palm Springs International     40140
2843                      Palm Beach International     33100
2844                         El Paso International     21340
2845                     Coastal Carolina Regional     35100
2846                Luis Munoz Marin International     41980
2847              Phoenix Sky Harbor International     38060
2848              Phoenix Sky Harbor International     38060
2849                      Pittsburgh International     38300
2850            Baltimore/Washington International     12580
2851                       Grand Junction Regional     24300
2852               Greater Rochester International     40380
2853                         Norfolk International     47260
2854                 Pensacola Gulf Coast Regional     37860
2855                            Long Beach Airport     31080
2856                          Valley International     15180
2857                  Seattle/Tacoma International     42660
2858                    Manchester-Boston Regional     31700
2859                            Asheville Regional     11700
2860                   San Francisco International     41860
2861                               William P Hobby     26420
2862                        Portland International     38900
2863                Luis Munoz Marin International     41980
2864                         Columbia Metropolitan     17900
2865                            Asheville Regional     11700
2866                                    Blue Grass     30460
2867                St Louis Lambert International     41180
2868                         Columbus Metropolitan     17980
2869                           Tampa International     45300
2870                          Tucson International     46060
2871             Albuquerque International Sunport     10740
2872               Dallas/Fort Worth International     19100
2873                             Will Rogers World     36420
2874                  Charleston AFB/International     16700
2875            Baltimore/Washington International     12580
2876                    Indianapolis International     26900
2877                       Ketchikan International     28540
2878                       Ketchikan International     28540
2879                         Orlando International     36740
2880                General Mitchell International     33340
2881                        Portland International     38900
2882                       San Diego International     41740
2883                     San Antonio International     41700
2884                  Seattle/Tacoma International     42660
2885                  Seattle/Tacoma International     42660
2886                  Seattle/Tacoma International     42660
2887                  Seattle/Tacoma International     42660
2888                  Seattle/Tacoma International     42660
2889                  Seattle/Tacoma International     42660
2890                  Seattle/Tacoma International     42660
2891                  Seattle/Tacoma International     42660
2892                  Seattle/Tacoma International     42660
2893                  Seattle/Tacoma International     42660
2894                  Seattle/Tacoma International     42660
2895                  Seattle/Tacoma International     42660
2896       Norman Y. Mineta San Jose International     41940
2897                         Bradley International     25540
2898                         Bradley International     25540
2899                         Bradley International     25540
2900                           Logan International     14460
2901                           Logan International     14460
2902                           Logan International     14460
2903                              Rafael Hernandez     10380
2904                 Buffalo Niagara International     15380
2905                  Charleston AFB/International     16700
2906               Cleveland-Hopkins International     17460
2907                       San Diego International     41740
2908             Ronald Reagan Washington National     47900
2909                  Newark Liberty International     35620
2910                 John F. Kennedy International     35620
2911       Fort Lauderdale-Hollywood International     33100
2912       Fort Lauderdale-Hollywood International     33100
2913       Fort Lauderdale-Hollywood International     33100
2914       Fort Lauderdale-Hollywood International     33100
2915       Fort Lauderdale-Hollywood International     33100
2916                            Westchester County     35620
2917                            Westchester County     35620
2918          George Bush Intercontinental/Houston     26420
2919                    Jacksonville International     27260
2920                    Jacksonville International     27260
2921                    Jacksonville International     27260
2922                    Jacksonville International     27260
2923                 John F. Kennedy International     35620
2924                 John F. Kennedy International     35620
2925                 John F. Kennedy International     35620
2926                 John F. Kennedy International     35620
2927                 John F. Kennedy International     35620
2928                         Orlando International     36740
2929       Fort Lauderdale-Hollywood International     33100
2930                      Palm Beach International     33100
2931                      Palm Beach International     33100
2932                      Palm Beach International     33100
2933                      Palm Beach International     33100
2934                                     Mercedita     38660
2935                        Richmond International     40060
2936                        Richmond International     40060
2937                        Richmond International     40060
2938                      Reno/Tahoe International     39900
2939               Southwest Florida International     15980
2940                       San Diego International     41740
2941                     San Antonio International     41700
2942       Norman Y. Mineta San Jose International     41940
2943                Luis Munoz Marin International     41980
2944                      Burlington International     15540
2945              Sarasota/Bradenton International     35840
2946                             Will Rogers World     36420
2947      Hartsfield-Jackson Atlanta International     12060
2948      Hartsfield-Jackson Atlanta International     12060
2949      Hartsfield-Jackson Atlanta International     12060
2950      Hartsfield-Jackson Atlanta International     12060
2951      Hartsfield-Jackson Atlanta International     12060
2952      Hartsfield-Jackson Atlanta International     12060
2953                  Billings Logan International     13740
2954                      Fort Wayne International     23060
2955                 Daniel K Inouye International     46520
2956   Huntsville International-Carl T Jones Field     26620
2957                                  Cyril E King      <NA>
2958               Washington Dulles International     47900
2959                    Detroit Metro Wayne County     19820
2960                       Quad City International     19340
2961       Fort Lauderdale-Hollywood International     33100
2962               Cleveland-Hopkins International     17460
2963                                    Blue Grass     30460
2964                       Elmira/Corning Regional     21300
2965                         Columbus Metropolitan     17980
2966                      Fort Wayne International     23060
2967                      Wilmington International     48900
2968                    Southwest Georgia Regional     10500
2969                  Chicago O'Hare International     16980
2970                        Portland International     38900
2971               Southwest Florida International     15980
2972             Ronald Reagan Washington National     47900
2973                St Louis Lambert International     41180
2974                       Grand Junction Regional     24300
2975                  Salt Lake City International     41620
2976               Greater Rochester International     40380
2977                    Indianapolis International     26900
2978                          Denver International     19740
2979                          Denver International     19740
2980                          Denver International     19740
2981                          Denver International     19740
2982                         Long Island MacArthur     35620
2983                        McCarran International     29820
2984                         Orlando International     36740
2985                         Ontario International     40140
2986               Southwest Florida International     15980
2987               Southwest Florida International     15980
2988                St Louis Lambert International     41180
2989                           Tampa International     45300
2990                                Trenton Mercer     45940
2991                                Trenton Mercer     45940
2992                                  McGhee Tyson     28940
2993                   Northwest Arkansas Regional     22220
2994                  Gerald R. Ford International     24340
2995                  Piedmont Triad International     24660
2996               Washington Dulles International     47900
2997                  Chicago O'Hare International     16980
2998                              Rafael Hernandez     10380
2999                St Louis Lambert International     41180
3000                               Mobile Regional     33660
3001        Birmingham-Shuttlesworth International     13820
3002                     Lawton-Fort Sill Regional     30020
3003                                  Lovell Field     16860
3004                              The Eastern Iowa     16300
3005             Ronald Reagan Washington National     47900
3006               Dallas/Fort Worth International     19100
3007               Dallas/Fort Worth International     19100
3008               Dallas/Fort Worth International     19100
3009               Dallas/Fort Worth International     19100
3010               Dallas/Fort Worth International     19100
3011               Dallas/Fort Worth International     19100
3012               Dallas/Fort Worth International     19100
3013                  Gerald R. Ford International     24340
3014                           Miami International     33100
3015                           Miami International     33100
3016                           Miami International     33100
3017                  Chicago O'Hare International     16980
3018                  Chicago O'Hare International     16980
3019                  Chicago O'Hare International     16980
3020                  Chicago O'Hare International     16980
3021               Charlotte Douglas International     16740
3022            Savannah/Hilton Head International     42340
3023                                  McGhee Tyson     28940
3024                   Atlantic City International     12100
3025                         Akron-Canton Regional     10420
3026               Cleveland-Hopkins International     17460
3027                        McCarran International     29820
3028                     Los Angeles International     31080
3029                General Mitchell International     33340
3030         Louisville Muhammad Ali International     31140
3031                Augusta Regional at Bush Field     12260
3032               Cleveland-Hopkins International     17460
3033               Charlotte Douglas International     16740
3034               Charlotte Douglas International     16740
3035               Charlotte Douglas International     16740
3036               Charlotte Douglas International     16740
3037    Cincinnati/Northern Kentucky International     17140
3038             Ronald Reagan Washington National     47900
3039             Ronald Reagan Washington National     47900
3040             Ronald Reagan Washington National     47900
3041             Ronald Reagan Washington National     47900
3042             Ronald Reagan Washington National     47900
3043             Ronald Reagan Washington National     47900
3044                      Des Moines International     19780
3045        Birmingham-Shuttlesworth International     13820
3046       Northwest Florida Beaches International     37460
3047                          Gainesville Regional     23540
3048                  Gerald R. Ford International     24340
3049            Erie International/Tom Ridge Field     21500
3050                    Indianapolis International     26900
3051                    Philadelphia International     37980
3052                           South Bend Regional     43780
3053              Austin - Bergstrom International     12420
3054                                 Meadows Field     12540
3055         Prescott Regional Ernest A Love Field     39150
3056             Charles M. Schulz - Sonoma County     42220
3057                          Denver International     19740
3058                          Denver International     19740
3059                          Denver International     19740
3060               Dallas/Fort Worth International     19100
3061               Dallas/Fort Worth International     19100
3062                    Detroit Metro Wayne County     19820
3063                      Fort Wayne International     23060
3064                          Juneau International     27940
3065                           Lea County Regional     26020
3066                          Idaho Falls Regional     26820
3067                     Los Angeles International     31080
3068                     Los Angeles International     31080
3069                     Los Angeles International     31080
3070                      Alexandria International     10780
3071                             Victoria Regional     47020
3072             Minneapolis-St Paul International     33460
3073                  Chicago O'Hare International     16980
3074                Portland International Jetport     38860
3075                            Santa Fe Municipal     42140
3076            Savannah/Hilton Head International     42340
3077                Roanoke Regional/Woodrum Field     40220
3078                  Seattle/Tacoma International     42660
3079                   San Francisco International     41860
3080                   San Francisco International     41860
3081                   San Francisco International     41860
3082                   San Francisco International     41860
3083                  Salt Lake City International     41620
3084                            Mahlon Sweet Field     21660
3085                         Norfolk International     47260
3086                          Walla Walla Regional     47460
3087           Ted Stevens Anchorage International     11260
3088                     Los Angeles International     31080
3089                            Monterey Peninsula     41500
3090                              Snohomish County     42660
3091                  Seattle/Tacoma International     42660
3092              Austin - Bergstrom International     12420
3093                 Daniel K Inouye International     46520
3094                       Cape Girardeau Regional     43460
3095                           Tulsa International     46140
3096                Luis Munoz Marin International     41980
3097             John Glenn Columbus International     18140
3098                          Denver International     19740
3099                          Denver International     19740
3100                  Newark Liberty International     35620
3101                 Fresno Yosemite International     23420
3102               Washington Dulles International     47900
3103               Washington Dulles International     47900
3104          George Bush Intercontinental/Houston     26420
3105          George Bush Intercontinental/Houston     26420
3106          George Bush Intercontinental/Houston     26420
3107          George Bush Intercontinental/Houston     26420
3108          George Bush Intercontinental/Houston     26420
3109          George Bush Intercontinental/Houston     26420
3110                        Portland International     38900
3111                             Redding Municipal     39820
3112                     Los Angeles International     31080
3113                     Los Angeles International     31080
3114                                  Cyril E King      <NA>
3115                Luis Munoz Marin International     41980
3116                    Philadelphia International     37980
3117                              Salina Municipal     41460
3118              Sarasota/Bradenton International     35840
3119                  Corpus Christi International     18580
3120                  Liberal Mid-America Regional     30580
3121             Albuquerque International Sunport     10740
3122             Albuquerque International Sunport     10740
3123              Austin - Bergstrom International     12420
3124              Austin - Bergstrom International     12420
3125        Birmingham-Shuttlesworth International     13820
3126                       Nashville International     34980
3127                       Nashville International     34980
3128                       Nashville International     34980
3129              Phoenix Sky Harbor International     38060
3130                 Buffalo Niagara International     15380
3131            Baltimore/Washington International     12580
3132            Baltimore/Washington International     12580
3133            Baltimore/Washington International     12580
3134            Baltimore/Washington International     12580
3135            Baltimore/Washington International     12580
3136            Baltimore/Washington International     12580
3137            Baltimore/Washington International     12580
3138            Baltimore/Washington International     12580
3139            Baltimore/Washington International     12580
3140            Baltimore/Washington International     12580
3141                  Charleston AFB/International     16700
3142             John Glenn Columbus International     18140
3143             John Glenn Columbus International     18140
3144                             Dallas Love Field     19100
3145                             Dallas Love Field     19100
3146                             Dallas Love Field     19100
3147                             Dallas Love Field     19100
3148                             Dallas Love Field     19100
3149                             Dallas Love Field     19100
3150                             Dallas Love Field     19100
3151                             Dallas Love Field     19100
3152             Ronald Reagan Washington National     47900
3153             Ronald Reagan Washington National     47900
3154                          Denver International     19740
3155                          Denver International     19740
3156       Fort Lauderdale-Hollywood International     33100
3157                               William P Hobby     26420
3158                               William P Hobby     26420
3159                               William P Hobby     26420
3160                               William P Hobby     26420
3161                         Long Island MacArthur     35620
3162                        McCarran International     29820
3163                        McCarran International     29820
3164           Lubbock Preston Smith International     31180
3165           Lubbock Preston Smith International     31180
3166                            Long Beach Airport     31080
3167                                   Adams Field     30780
3168      Midland International Air and Space Port     33260
3169                     Kansas City International     28140
3170                     Kansas City International     28140
3171                         Orlando International     36740
3172                         Orlando International     36740
3173                         Orlando International     36740
3174                  Chicago Midway International     16980
3175                  Chicago Midway International     16980
3176                  Chicago Midway International     16980
3177                  Chicago Midway International     16980
3178                  Chicago Midway International     16980
3179                  Chicago Midway International     16980
3180                  Chicago Midway International     16980
3181                         Memphis International     32820
3182                General Mitchell International     33340
3183                    Myrtle Beach International     34820
3184            Metropolitan Oakland International     41860
3185            Metropolitan Oakland International     41860
3186                               Eppley Airfield     36540
3187                               Eppley Airfield     36540
3188              Phoenix Sky Harbor International     38060
3189              Phoenix Sky Harbor International     38060
3190              Phoenix Sky Harbor International     38060
3191                      Pittsburgh International     38300
3192                    Palm Springs International     40140
3193                  Theodore Francis Green State     39300
3194                  Theodore Francis Green State     39300
3195                  Raleigh-Durham International     39580
3196                      Reno/Tahoe International     39900
3197                      Reno/Tahoe International     39900
3198               Greater Rochester International     40380
3199               Southwest Florida International     15980
3200                       San Diego International     41740
3201                       San Diego International     41740
3202                     San Antonio International     41700
3203                     San Antonio International     41700
3204            Savannah/Hilton Head International     42340
3205         Louisville Muhammad Ali International     31140
3206                      Sacramento International     40900
3207                St Louis Lambert International     41180
3208                St Louis Lambert International     41180
3209                St Louis Lambert International     41180
3210                St Louis Lambert International     41180
3211                           Tampa International     45300
3212                           Tampa International     45300
3213                           Tampa International     45300
3214                           Tulsa International     46140
3215                           Tulsa International     46140
3216            Savannah/Hilton Head International     42340
3217               Charlotte Douglas International     16740
3218               Dallas/Fort Worth International     19100
3219               Dallas/Fort Worth International     19100
3220                  Yuma MCAS/Yuma International     49740
3221              Phoenix Sky Harbor International     38060
3222              Phoenix Sky Harbor International     38060
3223                        Richmond International     40060
3224                         Bradley International     25540
3225                           Logan International     14460
3226             Ronald Reagan Washington National     47900
3227             Ronald Reagan Washington National     47900
3228                  Newark Liberty International     35620
3229                  Newark Liberty International     35620
3230               Washington Dulles International     47900
3231               Washington Dulles International     47900
3232             John Glenn Columbus International     18140
3233                                     LaGuardia     35620
3234                                     LaGuardia     35620
3235                                     LaGuardia     35620
3236                  Chicago O'Hare International     16980
3237                  Chicago O'Hare International     16980
3238                  Chicago O'Hare International     16980
3239                    Philadelphia International     37980
3240                         Akron-Canton Regional     10420
3241              Sarasota/Bradenton International     35840
3242                            Asheville Regional     11700
3243                        Portland International     38900
3244                 Fresno Yosemite International     23420
3245                         Columbia Metropolitan     17900
3246                             Central Wisconsin     48140
3247          George Bush Intercontinental/Houston     26420
3248            Erie International/Tom Ridge Field     21500
3249               Washington Dulles International     47900
3250                General Mitchell International     33340
3251                  Chicago O'Hare International     16980
3252                               University Park     44300
3253           Wilkes Barre Scranton International     42540
3254    Cincinnati/Northern Kentucky International     17140
3255             Minneapolis-St Paul International     33460
3256                           Miami International     33100
3257                           Logan International     14460
3258               Charlotte Douglas International     16740
3259                  Gerald R. Ford International     24340
3260                    Philadelphia International     37980
3261                    Philadelphia International     37980
3262               Greater Rochester International     40380
3263          Greenville-Spartanburg International     43900
3264     Louis Armstrong New Orleans International     35380
3265          George Bush Intercontinental/Houston     26420
3266                            Santa Fe Municipal     42140
3267                         Bradley International     25540
3268               Charlotte Douglas International     16740
3269               Dallas/Fort Worth International     19100
3270               Dallas/Fort Worth International     19100
3271                           Montgomery Regional     33860
3272                    Philadelphia International     37980
3273         Kona International Airport at Keahole     25900
3274                     Los Angeles International     31080
3275        Salisbury-Ocean City/Wicomico Regional     41540
3276              San Angelo Regional/Mathis Field     41660
3277                          Sawyer International     32100
3278              Phoenix Sky Harbor International     38060
3279                          Jack Brooks Regional     13140
3280           Ted Stevens Anchorage International     11260
3281           Ted Stevens Anchorage International     11260
3282           Ted Stevens Anchorage International     11260
3283                  Seattle/Tacoma International     42660
3284                                  Nome Airport      <NA>
3285                    Petersburg James A Johnson      <NA>
3286                            Westchester County     35620
3287                            Westchester County     35620
3288                  Theodore Francis Green State     39300
3289                     San Antonio International     41700
3290      Hartsfield-Jackson Atlanta International     12060
3291      Hartsfield-Jackson Atlanta International     12060
3292      Hartsfield-Jackson Atlanta International     12060
3293      Hartsfield-Jackson Atlanta International     12060
3294      Hartsfield-Jackson Atlanta International     12060
3295      Hartsfield-Jackson Atlanta International     12060
3296                          Gainesville Regional     23540
3297           Ted Stevens Anchorage International     11260
3298                           Shreveport Regional     43340
3299             Bozeman Yellowstone International     14580
3300                St Louis Lambert International     41180
3301             Ronald Reagan Washington National     47900
3302               Dallas/Fort Worth International     19100
3303               Dallas/Fort Worth International     19100
3304                            Monterey Peninsula     41500
3305               Charlotte Douglas International     16740
3306               Charlotte Douglas International     16740
3307             Ronald Reagan Washington National     47900
3308             Ronald Reagan Washington National     47900
3309        Salisbury-Ocean City/Wicomico Regional     41540
3310                    Philadelphia International     37980
3311                          Denver International     19740
3312           Lubbock Preston Smith International     31180
3313                  Chicago O'Hare International     16980
3314                     San Antonio International     41700
3315                   San Francisco International     41860
3316                  Newark Liberty International     35620
3317                  Newark Liberty International     35620
3318          George Bush Intercontinental/Houston     26420
3319                 Daniel K Inouye International     46520
3320                       San Diego International     41740
3321                           Minot International     33500
3322                   San Francisco International     41860
3323            Baltimore/Washington International     12580
3324             Ronald Reagan Washington National     47900
3325                            Mahlon Sweet Field     21660
3326                         Spokane International     44060
3327                  Chicago Midway International     16980
3328                               Eppley Airfield     36540
3329                                      Bob Hope     31080
3330                       San Diego International     41740
3331                       San Diego International     41740
3332              John Wayne Airport-Orange County     31080
3333                St Louis Lambert International     41180
3334                           Tampa International     45300
3335                  Charleston AFB/International     16700
3336               Dallas/Fort Worth International     19100
3337               Dallas/Fort Worth International     19100
3338               Dallas/Fort Worth International     19100
3339          George Bush Intercontinental/Houston     26420
3340          George Bush Intercontinental/Houston     26420
3341          George Bush Intercontinental/Houston     26420
3342                           Rapid City Regional     39660
3343               Charlotte Douglas International     16740
3344               Charlotte Douglas International     16740
3345                                     LaGuardia     35620
3346                         Norfolk International     47260
3347                    Philadelphia International     37980
3348             Minneapolis-St Paul International     33460
3349                    Philadelphia International     37980
3350                    Philadelphia International     37980
3351                          Denver International     19740
3352                          Denver International     19740
3353                           Shreveport Regional     43340
3354                    Philadelphia International     37980
3355                  Chicago O'Hare International     16980
3356      Hartsfield-Jackson Atlanta International     12060
3357             Ronald Reagan Washington National     47900
3358               Dallas/Fort Worth International     19100
3359               Dallas/Fort Worth International     19100
3360        General Downing - Peoria International     37900
3361                      San Luis County Regional     42020
3362                              Easterwood Field     17780
3363                      Palm Beach International     33100
3364                    Philadelphia International     37980
3365                University of Illinois/Willard     16580
3366      Hartsfield-Jackson Atlanta International     12060
3367      Hartsfield-Jackson Atlanta International     12060
3368            Baltimore/Washington International     12580
3369                    Detroit Metro Wayne County     19820
3370                  Chicago O'Hare International     16980
3371                                 Meadows Field     12540
3372               Dallas/Fort Worth International     19100
3373                           Miami International     33100
3374             Ronald Reagan Washington National     47900
3375             Ronald Reagan Washington National     47900
3376                          Denver International     19740
3377                             Granite Point Ndb      <NA>
3378                  Chicago O'Hare International     16980
3379                                    Tri Cities     28420
3380                   San Francisco International     41860
3381                      Reno/Tahoe International     39900
3382                          Denver International     19740
3383                  Newark Liberty International     35620
3384                  Newark Liberty International     35620
3385          George Bush Intercontinental/Houston     26420
3386                    Indianapolis International     26900
3387                   San Francisco International     41860
3388               Southwest Florida International     15980
3389                        McCarran International     29820
3390           Rick Husband Amarillo International     11100
3391               Dallas/Fort Worth International     19100
3392               Dallas/Fort Worth International     19100
3393          George Bush Intercontinental/Houston     26420
3394                     Kansas City International     28140
3395                  Salt Lake City International     41620
3396         Louisville Muhammad Ali International     31140
3397          George Bush Intercontinental/Houston     26420
3398               Charlotte Douglas International     16740
3399      Hartsfield-Jackson Atlanta International     12060
3400               Dallas/Fort Worth International     19100
3401                                     LaGuardia     35620
3402      Hartsfield-Jackson Atlanta International     12060
3403    Central Il Regional Airport at Bloomington     14010
3404                              The Eastern Iowa     16300
3405                    Detroit Metro Wayne County     19820
3406                                     LaGuardia     35620
3407                         Memphis International     32820
3408                       Quad City International     19340
3409                 Daniel K Inouye International     46520
3410                           South Bend Regional     43780
3411              Austin - Bergstrom International     12420
3412          Greenville-Spartanburg International     43900
3413                       Durango La Plata County     20420
3414               Charlotte Douglas International     16740
3415               Charlotte Douglas International     16740
3416               Charlotte Douglas International     16740
3417               Charlotte Douglas International     16740
3418               Charlotte Douglas International     16740
3419               Charlotte Douglas International     16740
3420               Charlotte Douglas International     16740
3421               Dallas/Fort Worth International     19100
3422               Dallas/Fort Worth International     19100
3423               Dallas/Fort Worth International     19100
3424               Dallas/Fort Worth International     19100
3425               Dallas/Fort Worth International     19100
3426                                  Jackson Hole     27220
3427                  Springfield-Branson National     44180
3428                              Abilene Regional     10180
3429                Luis Munoz Marin International     41980
3430                           Miami International     33100
3431                            Bismarck Municipal     13900
3432                  Gerald R. Ford International     24340
3433                       Santa Barbara Municipal     42200
3434                      Bellingham International     13380
3435              Phoenix Sky Harbor International     38060
3436                      Burlington International     15540
3437                     San Antonio International     41700
3438          Sheppard AFB/Wichita Falls Municipal     48660
3439              John Wayne Airport-Orange County     31080
3440                      Pittsburgh International     38300
3441                                      Bob Hope     31080
3442                             Dallas Love Field     19100
3443              Phoenix Sky Harbor International     38060
3444                         Ontario International     40140
3445                        Portland International     38900
3446                        Portland International     38900
3447                        Portland International     38900
3448                        Portland International     38900
3449                      San Luis County Regional     42020
3450                       San Diego International     41740
3451                  Seattle/Tacoma International     42660
3452                  Seattle/Tacoma International     42660
3453                  Seattle/Tacoma International     42660
3454                  Seattle/Tacoma International     42660
3455                  Seattle/Tacoma International     42660
3456                         Sitka Rocky Gutierrez      <NA>
3457                         Sitka Rocky Gutierrez      <NA>
3458       Norman Y. Mineta San Jose International     41940
3459              John Wayne Airport-Orange County     31080
3460                         Bradley International     25540
3461                           Logan International     14460
3462                           Logan International     14460
3463                 John F. Kennedy International     35620
3464                     Los Angeles International     31080
3465                     Los Angeles International     31080
3466                                     LaGuardia     35620
3467                Luis Munoz Marin International     41980
3468      Hartsfield-Jackson Atlanta International     12060
3469      Hartsfield-Jackson Atlanta International     12060
3470                     Grand Forks International     24220
3471      Hartsfield-Jackson Atlanta International     12060
3472                         Wichita Mid-Continent     48620
3473                           Logan International     14460
3474             Bozeman Yellowstone International     14580
3475                            Boise Air Terminal     14260
3476                          Tallahassee Regional     45220
3477                         Columbia Metropolitan     17900
3478                           Minot International     33500
3479                     Lewiston Nez Perce County     30300
3480          Rogue Valley International - Medford     32780
3481                     Los Angeles International     31080
3482                     Kansas City International     28140
3483                         Memphis International     32820
3484                        Missoula International     33540
3485               Aspen Pitkin County Sardy Field     24060
3486             Minneapolis-St Paul International     33460
3487                        Portland International     38900
3488                           Tulsa International     46140
3489                               Mobile Regional     33660
3490                                Cherry Capital     45900
3491              James M Cox/Dayton International     19430
3492               Dallas/Fort Worth International     19100
3493               Dallas/Fort Worth International     19100
3494               Dallas/Fort Worth International     19100
3495               Dallas/Fort Worth International     19100
3496                          Gainesville Regional     23540
3497                           Miami International     33100
3498                                        Yeager     16620
3499               Charlotte Douglas International     16740
3500             Ronald Reagan Washington National     47900
3501              Dane County Regional-Truax Field     31540
3502                         Norfolk International     47260
3503                    Philadelphia International     37980
3504                            Bismarck Municipal     13900
3505                       Brainerd Lakes Regional     14660
3506                          Denver International     19740
3507                          Denver International     19740
3508                          Denver International     19740
3509                          Denver International     19740
3510               Dallas/Fort Worth International     19100
3511               Dallas/Fort Worth International     19100
3512               Dallas/Fort Worth International     19100
3513               Washington Dulles International     47900
3514                        Appleton International     11540
3515                          Sawyer International     32100
3516             Minneapolis-St Paul International     33460
3517             Minneapolis-St Paul International     33460
3518                               Eppley Airfield     36540
3519                  Chicago O'Hare International     16980
3520                  Chicago O'Hare International     16980
3521                        Portland International     38900
3522                        Portland International     38900
3523              Phoenix Sky Harbor International     38060
3524              Phoenix Sky Harbor International     38060
3525                         Spokane International     44060
3526               Washington Dulles International     47900
3527                       San Diego International     41740
3528                      San Luis County Regional     42020
3529                  Salt Lake City International     41620
3530                  Salt Lake City International     41620
3531                  Salt Lake City International     41620
3532                  Salt Lake City International     41620
3533                  Salt Lake City International     41620
3534                              Snohomish County     42660
3535                       Pullman Moscow Regional     39420
3536                       Santa Barbara Municipal     42200
3537                  Seattle/Tacoma International     42660
3538                  Seattle/Tacoma International     42660
3539                          Denver International     19740
3540               Washington Dulles International     47900
3541               Washington Dulles International     47900
3542          George Bush Intercontinental/Houston     26420
3543                                  McGhee Tyson     28940
3544               Gunnison-Crested Butte Regional      <NA>
3545                Syracuse Hancock International     45060
3546                  Chicago O'Hare International     16980
3547      Jackson Medgar Wiley Evers International     27140
3548                      Reno/Tahoe International     39900
3549                   San Francisco International     41860
3550                   San Francisco International     41860
3551              John Wayne Airport-Orange County     31080
3552                                        Yeager     16620
3553                       Grand Junction Regional     24300
3554                             Dallas Love Field     19100
3555                          Denver International     19740
3556       Fort Lauderdale-Hollywood International     33100
3557                  Gerald R. Ford International     24340
3558                               William P Hobby     26420
3559                        McCarran International     29820
3560              Phoenix Sky Harbor International     38060
3561                      Pittsburgh International     38300
3562                      Sacramento International     40900
3563                St Louis Lambert International     41180
3564                St Louis Lambert International     41180
3565                      Sacramento International     40900
3566               Washington Dulles International     47900
3567          George Bush Intercontinental/Houston     26420
3568          George Bush Intercontinental/Houston     26420
3569                       Santa Barbara Municipal     42200
3570               Charlotte Douglas International     16740
3571                  Gerald R. Ford International     24340
3572                    Philadelphia International     37980
3573                  Chicago O'Hare International     16980
3574              James M Cox/Dayton International     19430
3575                    Philadelphia International     37980
3576                          Denver International     19740
3577                            Boise Air Terminal     14260
3578          George Bush Intercontinental/Houston     26420
3579                            Mahlon Sweet Field     21660
3580      Hartsfield-Jackson Atlanta International     12060
3581      Hartsfield-Jackson Atlanta International     12060
3582                      Des Moines International     19780
3583                    Detroit Metro Wayne County     19820
3584                                     LaGuardia     35620
3585                                     LaGuardia     35620
3586             Minneapolis-St Paul International     33460
3587             Minneapolis-St Paul International     33460
3588                                  McGhee Tyson     28940
3589                  Springfield-Branson National     44180
3590             Bozeman Yellowstone International     14580
3591                      San Luis County Regional     42020
3592               Charlotte Douglas International     16740
3593                        Missoula International     33540
3594       Northwest Florida Beaches International     37460
3595               Dallas/Fort Worth International     19100
3596               Dallas/Fort Worth International     19100
3597               Dallas/Fort Worth International     19100
3598                      Des Moines International     19780
3599                            Mahlon Sweet Field     21660
3600                 Buffalo Niagara International     15380
3601                         Eagle County Regional     20780
3602              Phoenix Sky Harbor International     38060
3603    Central Il Regional Airport at Bloomington     14010
3604                        Key West International     28580
3605                                  Cyril E King      <NA>
3606           Ted Stevens Anchorage International     11260
3607                            Boise Air Terminal     14260
3608               Dallas/Fort Worth International     19100
3609                 Daniel K Inouye International     46520
3610                  Chicago O'Hare International     16980
3611                        Portland International     38900
3612                        Portland International     38900
3613                        Portland International     38900
3614                       San Diego International     41740
3615                  Seattle/Tacoma International     42660
3616                          Tucson International     46060
3617                           Logan International     14460
3618                 John F. Kennedy International     35620
3619      Hartsfield-Jackson Atlanta International     12060
3620      Hartsfield-Jackson Atlanta International     12060
3621                           South Bend Regional     43780
3622             Minneapolis-St Paul International     33460
3623                      Golden Triangle Regional     18060
3624                  Salt Lake City International     41620
3625               Dallas/Fort Worth International     19100
3626               Dallas/Fort Worth International     19100
3627               Dallas/Fort Worth International     19100
3628               Dallas/Fort Worth International     19100
3629                     San Antonio International     41700
3630                                   Adams Field     30780
3631                           Miami International     33100
3632                    Myrtle Beach International     34820
3633                              Rafael Hernandez     10380
3634                         Columbia Metropolitan     17900
3635               Charlotte Douglas International     16740
3636             Ronald Reagan Washington National     47900
3637                                Joe Foss Field     43620
3638                    Manchester-Boston Regional     31700
3639                    Philadelphia International     37980
3640             Albuquerque International Sunport     10740
3641                  Billings Logan International     13740
3642               Dallas/Fort Worth International     19100
3643               Dallas/Fort Worth International     19100
3644                    Detroit Metro Wayne County     19820
3645                    Detroit Metro Wayne County     19820
3646                         Spokane International     44060
3647             Minneapolis-St Paul International     33460
3648                  Chicago O'Hare International     16980
3649                         Eagle County Regional     20780
3650                   San Francisco International     41860
3651       Norman Y. Mineta San Jose International     41940
3652                  Salt Lake City International     41620
3653                  Salt Lake City International     41620
3654                  Salt Lake City International     41620
3655                        McCarran International     29820
3656                       San Diego International     41740
3657                  Seattle/Tacoma International     42660
3658                          Denver International     19740
3659                           Hilton Head Airport     25940
3660                  Chicago O'Hare International     16980
3661                 Pensacola Gulf Coast Regional     37860
3662                               Helena Regional     25740
3663                        Key West International     28580
3664                     San Antonio International     41700
3665                 Gulfport-Biloxi International     25060
3666                                      Bob Hope     31080
3667             Ronald Reagan Washington National     47900
3668                         Long Island MacArthur     35620
3669                         Orlando International     36740
3670                  Chicago Midway International     16980
3671            Metropolitan Oakland International     41860
3672            Metropolitan Oakland International     41860
3673            Metropolitan Oakland International     41860
3674              Phoenix Sky Harbor International     38060
3675                         Wichita Mid-Continent     48620
3676               Charlotte Douglas International     16740
3677                      Sacramento International     40900
3678                St Louis Lambert International     41180
3679               Dallas/Fort Worth International     19100
3680                          Hector International     22020
3681                                Joe Foss Field     43620
3682          George Bush Intercontinental/Houston     26420
3683          George Bush Intercontinental/Houston     26420
3684                       Quad City International     19340
3685                  Raleigh-Durham International     39580
3686             Ronald Reagan Washington National     47900
3687               Washington Dulles International     47900
3688                                     LaGuardia     35620
3689                         Memphis International     32820
3690                    Philadelphia International     37980
3691                  Chicago O'Hare International     16980
3692               Charlotte Douglas International     16740
3693               Charlotte Douglas International     16740
3694                    Philadelphia International     37980
3695                    Philadelphia International     37980
3696          George Bush Intercontinental/Houston     26420
3697                               Mobile Regional     33660
3698      Hartsfield-Jackson Atlanta International     12060
3699                    Detroit Metro Wayne County     19820
3700           Ted Stevens Anchorage International     11260
3701                          Bangor International     12620
3702               Charlotte Douglas International     16740
3703                           Miami International     33100
3704           Lubbock Preston Smith International     31180
3705               Dallas/Fort Worth International     19100
3706               Dallas/Fort Worth International     19100
3707               Dallas/Fort Worth International     19100
3708               Dallas/Fort Worth International     19100
3709               Dallas/Fort Worth International     19100
3710               Dallas/Fort Worth International     19100
3711               Dallas/Fort Worth International     19100
3712               Dallas/Fort Worth International     19100
3713               Dallas/Fort Worth International     19100
3714                General Mitchell International     33340
3715                 John F. Kennedy International     35620
3716                 John F. Kennedy International     35620
3717                 Buffalo Niagara International     15380
3718                                  Yampa Valley     44460
3719                           Miami International     33100
3720                         Norfolk International     47260
3721            Savannah/Hilton Head International     42340
3722                Luis Munoz Marin International     41980
3723                  Springfield-Branson National     44180
3724                  Salt Lake City International     41620
3725           Ted Stevens Anchorage International     11260
3726                    Petersburg James A Johnson      <NA>
3727                                Bethel Airport      <NA>
3728                 John F. Kennedy International     35620
3729                        McCarran International     29820
3730                Luis Munoz Marin International     41980
3731                           Tampa International     45300
3732      Hartsfield-Jackson Atlanta International     12060
3733                         Memphis International     32820
3734                  Newark Liberty International     35620
3735               Dallas/Fort Worth International     19100
3736               Dallas/Fort Worth International     19100
3737                           Miami International     33100
3738                             Will Rogers World     36420
3739                General Mitchell International     33340
3740                              The Eastern Iowa     16300
3741               Charlotte Douglas International     16740
3742               Charlotte Douglas International     16740
3743             Ronald Reagan Washington National     47900
3744             Ronald Reagan Washington National     47900
3745                         Memphis International     32820
3746                          Albany International     10580
3747               Dallas/Fort Worth International     19100
3748          George Bush Intercontinental/Houston     26420
3749                     Los Angeles International     31080
3750                     Lewiston Nez Perce County     30300
3751                  Chicago O'Hare International     16980
3752                  Chicago O'Hare International     16980
3753                  Chicago O'Hare International     16980
3754              Phoenix Sky Harbor International     38060
3755                      San Luis County Regional     42020
3756                   San Francisco International     41860
3757                  Salt Lake City International     41620
3758                                Kodiak Airport      <NA>
3759   Huntsville International-Carl T Jones Field     26620
3760  Brownsville South Padre Island International     15180
3761               Washington Dulles International     47900
3762          George Bush Intercontinental/Houston     26420
3763                  Chicago O'Hare International     16980
3764                   San Francisco International     41860
3765             Albuquerque International Sunport     10740
3766                       Nashville International     34980
3767                       Nashville International     34980
3768            Baltimore/Washington International     12580
3769            Baltimore/Washington International     12580
3770                          Denver International     19740
3771                    Jacksonville International     27260
3772                                  Yampa Valley     44460
3773                               William P Hobby     26420
3774                        McCarran International     29820
3775                        McCarran International     29820
3776                        McCarran International     29820
3777                        McCarran International     29820
3778                        McCarran International     29820
3779                                   Adams Field     30780
3780                         Orlando International     36740
3781                  Chicago Midway International     16980
3782                    Manchester-Boston Regional     31700
3783                    Manchester-Boston Regional     31700
3784                General Mitchell International     33340
3785                        Portland International     38900
3786                        Portland International     38900
3787              Phoenix Sky Harbor International     38060
3788              Phoenix Sky Harbor International     38060
3789                     San Antonio International     41700
3790         Louisville Muhammad Ali International     31140
3791                      Sacramento International     40900
3792                      Sacramento International     40900
3793                St Louis Lambert International     41180
3794               Dallas/Fort Worth International     19100
3795               Dallas/Fort Worth International     19100
3796                    Detroit Metro Wayne County     19820
3797   Huntsville International-Carl T Jones Field     26620
3798              Phoenix Sky Harbor International     38060
3799              Phoenix Sky Harbor International     38060
3800               Charlotte Douglas International     16740
3801                                     LaGuardia     35620
3802                  Raleigh-Durham International     39580
3803                  Chicago O'Hare International     16980
3804               Washington Dulles International     47900
3805                             Will Rogers World     36420
3806                            Worcester Regional     49340
3807                  Billings Logan International     13740
3808                           Hilton Head Airport     25940
3809            Baltimore/Washington International     12580
3810                           Miami International     33100
3811                  Charleston AFB/International     16700
3812       Fort Lauderdale-Hollywood International     33100
3813                 John F. Kennedy International     35620
3814                            Worcester Regional     49340
3815                            Worcester Regional     49340
3816                Luis Munoz Marin International     41980
3817                                  Cyril E King      <NA>
3818              Dane County Regional-Truax Field     31540
3819    Central Il Regional Airport at Bloomington     14010
3820                 Buffalo Niagara International     15380
3821                          Denver International     19740
3822                          Denver International     19740
3823                          Denver International     19740
3824                      Des Moines International     19780
3825                       Durango La Plata County     20420
3826                                Joe Foss Field     43620
3827                          Valley International     15180
3828                                    New Castle     37980
3829                         Long Island MacArthur     35620
3830                         Long Island MacArthur     35620
3831                        McCarran International     29820
3832                         Orlando International     36740
3833                         Orlando International     36740
3834                  Chicago O'Hare International     16980
3835                      Palm Beach International     33100
3836                Portland International Jetport     38860
3837                Portland International Jetport     38860
3838                  Raleigh-Durham International     39580
3839                  Raleigh-Durham International     39580
3840               Southwest Florida International     15980
3841                New York Stewart International     39100
3842                New York Stewart International     39100
3843                Syracuse Hancock International     45060
3844                           Tampa International     45300
3845                                Trenton Mercer     45940
3846                                Trenton Mercer     45940
3847                                Trenton Mercer     45940
3848                                Trenton Mercer     45940
3849                  Charleston AFB/International     16700
3850                   Atlantic City International     12100
3851                   Atlantic City International     12100
3852                         Akron-Canton Regional     10420
3853             John Glenn Columbus International     18140
3854                      Palm Beach International     33100
3855       Fort Lauderdale-Hollywood International     33100
3856                    Indianapolis International     26900
3857                        McCarran International     29820
3858                     Los Angeles International     31080
3859                        Arnold Palmer Regional     38300
3860                                     LaGuardia     35620
3861                         Orlando International     36740
3862                         Orlando International     36740
3863                         Orlando International     36740
3864                    Myrtle Beach International     34820
3865                    Myrtle Beach International     34820
3866                    Myrtle Beach International     34820
3867                                  Cyril E King      <NA>
3868                  Chicago O'Hare International     16980
3869                    Philadelphia International     37980
3870               Southwest Florida International     15980
3871               Southwest Florida International     15980
3872         Louisville Muhammad Ali International     31140
3873                                  McGhee Tyson     28940
3874                     Los Angeles International     31080
3875                   San Francisco International     41860
3876                          Denver International     19740
3877                   Lehigh Valley International     10900
3878                  Chicago O'Hare International     16980
3879                    Detroit Metro Wayne County     19820
3880            Savannah/Hilton Head International     42340
3881                            Hilo International     25900
3882          George Bush Intercontinental/Houston     26420
3883                            Worcester Regional     49340
3884               Cleveland-Hopkins International     17460
3885                            Asheville Regional     11700
3886             Minneapolis-St Paul International     33460
3887             Minneapolis-St Paul International     33460
3888             Minneapolis-St Paul International     33460
3889                      Palm Beach International     33100
3890                           Punta Gorda Airport     39460
3891          George Bush Intercontinental/Houston     26420
3892                 Daniel K Inouye International     46520
3893                 John F. Kennedy International     35620
3894           Ted Stevens Anchorage International     11260
3895           Ted Stevens Anchorage International     11260
3896          George Bush Intercontinental/Houston     26420
3897                  Chicago O'Hare International     16980
3898       Norman Y. Mineta San Jose International     41940
3899      Hartsfield-Jackson Atlanta International     12060
3900                    Detroit Metro Wayne County     19820
3901               Charlotte Douglas International     16740
3902               Charlotte Douglas International     16740
3903               Charlotte Douglas International     16740
3904               Dallas/Fort Worth International     19100
3905              Phoenix Sky Harbor International     38060
3906           Ted Stevens Anchorage International     11260
3907                           King Salmon Airport      <NA>
3908                  Seattle/Tacoma International     42660
3909                      Palm Beach International     33100
3910                                  Cyril E King      <NA>
3911      Hartsfield-Jackson Atlanta International     12060
3912      Hartsfield-Jackson Atlanta International     12060
3913      Hartsfield-Jackson Atlanta International     12060
3914                        McCarran International     29820
3915           Casper/Natrona County International     16220
3916                             Aberdeen Regional     10100
3917                  Newark Liberty International     35620
3918                  Piedmont Triad International     24660
3919                  Billings Logan International     13740
3920           Baton Rouge Metropolitan/Ryan Field     12940
3921                                        Yeager     16620
3922             Ronald Reagan Washington National     47900
3923          Greenville-Spartanburg International     43900
3924                    Philadelphia International     37980
3925                    Philadelphia International     37980
3926                    Philadelphia International     37980
3927                      Gillette Campbell County     23940
3928                          Denver International     19740
3929                          Denver International     19740
3930                          Denver International     19740
3931                          Denver International     19740
3932               Dallas/Fort Worth International     19100
3933               Dallas/Fort Worth International     19100
3934              Phoenix Sky Harbor International     38060
3935                             Friedman Memorial     25200
3936                            Mahlon Sweet Field     21660
3937          Joslin Field - Magic Valley Regional     46300
3938             Albuquerque International Sunport     10740
3939                   San Francisco International     41860
3940      Hartsfield-Jackson Atlanta International     12060
3941                 Buffalo Niagara International     15380
3942                 Buffalo Niagara International     15380
3943            Baltimore/Washington International     12580
3944             John Glenn Columbus International     18140
3945             John Glenn Columbus International     18140
3946                             Dallas Love Field     19100
3947                             Dallas Love Field     19100
3948                  Gerald R. Ford International     24340
3949              Phoenix Sky Harbor International     38060
3950       Northwest Florida Beaches International     37460
3951         Louisville Muhammad Ali International     31140
3952                              The Eastern Iowa     16300
3953               Dallas/Fort Worth International     19100
3954          George Bush Intercontinental/Houston     26420
3955      Hartsfield-Jackson Atlanta International     12060
3956              James M Cox/Dayton International     19430
3957               Washington Dulles International     47900
3958                      Burlington International     15540
3959                    Philadelphia International     37980
3960                 John F. Kennedy International     35620
3961                           Montgomery Regional     33860
3962                       Durango La Plata County     20420
3963                             Florence Regional     22500
3964   Huntsville International-Carl T Jones Field     26620
3965       Fort Lauderdale-Hollywood International     33100
3966                  Charleston AFB/International     16700
3967                          Laredo International     29700
3968    Cincinnati/Northern Kentucky International     17140
3969                    Philadelphia International     37980
3970                  Piedmont Triad International     24660
3971               Dallas/Fort Worth International     19100
3972    Central Il Regional Airport at Bloomington     14010
3973                           La Crosse Municipal     29100
3974                                 Meadows Field     12540
3975                           South Bend Regional     43780
3976               Greater Rochester International     40380
3977                 John F. Kennedy International     35620
3978                         Ontario International     40140
3979                                    Tri Cities     28700
3980                      Burlington International     15540
3981                       Rochester International     40340
3982                           Miami International     33100
3983                         Del Rio International     19620
3984                                        Yeager     16620
3985                           Evansville Regional     21780
3986                     Great Falls International     24500
3987                    Palm Springs International     40140
3988                      Reno/Tahoe International     39900
3989                 John F. Kennedy International     35620
3990                Portland International Jetport     38860
3991                  Charleston AFB/International     16700
3992                            Nantucket Memorial      <NA>
3993      Hartsfield-Jackson Atlanta International     12060
3994                        Appleton International     11540
3995                          Albany International     10580
3996                         Wichita Mid-Continent     48620
3997                       Rochester International     40340
3998       Fort Lauderdale-Hollywood International     33100
3999                             Central Wisconsin     48140
4000                                  Lovell Field     16860
4001                    Jacksonville International     27260
4002                 John F. Kennedy International     35620
4003               Charlotte Douglas International     16740
4004     Louis Armstrong New Orleans International     35380
4005                               William P Hobby     26420
4006                         Orlando International     36740
4007                   San Francisco International     41860
4008             Minneapolis-St Paul International     33460
4009      Hartsfield-Jackson Atlanta International     12060
4010      Hartsfield-Jackson Atlanta International     12060
4011              Phoenix Sky Harbor International     38060
4012                         Spokane International     44060
4013                    Detroit Metro Wayne County     19820
4014                                 Lihue Airport     28180
4015               Charlotte Douglas International     16740
4016               Washington Dulles International     47900
4017               Charlotte Douglas International     16740
4018       Fort Lauderdale-Hollywood International     33100
4019                           Miami International     33100
4020                  Chicago O'Hare International     16980
4021                        Portland International     38900
4022                  Chicago O'Hare International     16980
4023               Charlotte Douglas International     16740
4024                    Philadelphia International     37980
4025                    Philadelphia International     37980
4026               Washington Dulles International     47900
4027                               Monroe Regional     33740
4028               Washington Dulles International     47900
4029                  Salt Lake City International     41620
4030                 Daniel K Inouye International     46520
4031       Norman Y. Mineta San Jose International     41940
4032               Southwest Florida International     15980
4033                 Daniel K Inouye International     46520
4034                               William P Hobby     26420
4035          George Bush Intercontinental/Houston     26420
4036                                  Delta County     21540
4037               Washington Dulles International     47900
4038                                  Cyril E King      <NA>
4039              Phoenix Sky Harbor International     38060
4040                  Salt Lake City International     41620
4041                            Watertown Regional     47980
4042                  Chicago Midway International     16980
4043                St Louis Lambert International     41180
4044                             Dallas Love Field     19100
4045                               Kahului Airport     27980
4046                                      Bob Hope     31080
4047                         Orlando International     36740
4048            Baltimore/Washington International     12580
4049                  Chicago O'Hare International     16980
4050          George Bush Intercontinental/Houston     26420
4051         Kona International Airport at Keahole     25900
4052                  Salt Lake City International     41620
4053           Ted Stevens Anchorage International     11260
4054      Hartsfield-Jackson Atlanta International     12060
4055                               Kahului Airport     27980
4056               Charlotte Douglas International     16740
4057                  Chicago Midway International     16980
4058                  Chicago O'Hare International     16980
4059               Charlotte Douglas International     16740
4060               Charlotte Douglas International     16740
4061              Austin - Bergstrom International     12420
4062              John Wayne Airport-Orange County     31080
4063                      Pittsburgh International     38300
4064                  Chicago Midway International     16980
4065               Dallas/Fort Worth International     19100
4066                      Pittsburgh International     38300
4067           Ted Stevens Anchorage International     11260
4068                        Portland International     38900
4069                        Portland International     38900
4070               Southwest Florida International     15980
4071                  Seattle/Tacoma International     42660
4072                         Orlando International     36740
4073     Louis Armstrong New Orleans International     35380
4074      Hartsfield-Jackson Atlanta International     12060
4075      Hartsfield-Jackson Atlanta International     12060
4076                      Reno/Tahoe International     39900
4077                  Salt Lake City International     41620
4078                  Newark Liberty International     35620
4079               Charlotte Douglas International     16740
4080                        Richmond International     40060
4081               Charlotte Douglas International     16740
4082               Charlotte Douglas International     16740
4083                      Ithaca Tompkins Regional     27060
4084                    Philadelphia International     37980
4085               Aspen Pitkin County Sardy Field     24060
4086               Dallas/Fort Worth International     19100
4087                     Los Angeles International     31080
4088                                  Cyril E King      <NA>
4089              Austin - Bergstrom International     12420
4090              Sarasota/Bradenton International     35840
4091                            St George Regional     41100
4092                  Chicago O'Hare International     16980
4093                    Philadelphia International     37980
4094                    Philadelphia International     37980
4095          George Bush Intercontinental/Houston     26420
4096           Ted Stevens Anchorage International     11260
4097                          Denver International     19740
4098       Green Bay Austin Straubel International     24580
4099                         Long Island MacArthur     35620
4100                        McCarran International     29820
4101                         Orlando International     36740
4102                         Orlando International     36740
4103                         Orlando International     36740
4104                         Orlando International     36740
4105                           Miami International     33100
4106              Dane County Regional-Truax Field     31540
4107                Syracuse Hancock International     45060
4108     Pellston Regional Airport of Emmet County      <NA>
4109               Charlotte Douglas International     16740
4110               Dallas/Fort Worth International     19100
4111          Greenville-Spartanburg International     43900
4112                         Sitka Rocky Gutierrez      <NA>
4113                               Yakutat Airport      <NA>
4114                           Logan International     14460
4115       Norman Y. Mineta San Jose International     41940
4116    Cincinnati/Northern Kentucky International     17140
4117          Joslin Field - Magic Valley Regional     46300
4118                               Dothan Regional     37120
4119                     Great Falls International     24500
4120                                   Bert Mooney     15580
4121                                        Yeager     16620
4122                  Salt Lake City International     41620
4123               Dallas/Fort Worth International     19100
4124               Charlotte Douglas International     16740
4125               Charlotte Douglas International     16740
4126               Charlotte Douglas International     16740
4127                    Philadelphia International     37980
4128                          Tallahassee Regional     45220
4129               Dallas/Fort Worth International     19100
4130                    Detroit Metro Wayne County     19820
4131                          Sawyer International     32100
4132                     Los Angeles International     31080
4133             Charles M. Schulz - Sonoma County     42220
4134                             Granite Point Ndb      <NA>
4135             Minneapolis-St Paul International     33460
4136                             Will Rogers World     36420
4137                            St George Regional     41100
4138                          Valley International     15180
4139                  Newark Liberty International     35620
4140                     Los Angeles International     31080
4141                  Chicago O'Hare International     16980
4142             Albuquerque International Sunport     10740
4143                Luis Munoz Marin International     41980
4144              Austin - Bergstrom International     12420
4145                             Dallas Love Field     19100
4146                               William P Hobby     26420
4147                               William P Hobby     26420
4148              John Wayne Airport-Orange County     31080
4149                           Tampa International     45300
4150               Dallas/Fort Worth International     19100
4151               Charlotte Douglas International     16740
4152             Bozeman Yellowstone International     14580
4153                   Northwest Arkansas Regional     22220
4154                  Newark Liberty International     35620
4155             Minneapolis-St Paul International     33460
4156                           Logan International     14460
4157                                     LaGuardia     35620
4158                                     LaGuardia     35620
4159                                     LaGuardia     35620
4160                                     LaGuardia     35620
4161                         Norfolk International     47260
4162                                  Jackson Hole     27220
4163               Dallas/Fort Worth International     19100
4164                         El Paso International     21340
4165          Greenville-Spartanburg International     43900
4166                           Montgomery Regional     33860
4167                    Jacksonville International     27260
4168                     Kansas City International     28140
4169                           Miami International     33100
4170                           Miami International     33100
4171                           Miami International     33100
4172                 Gulfport-Biloxi International     25060
4173                         Columbus Metropolitan     17980
4174                  Chicago O'Hare International     16980
4175                Portland International Jetport     38860
4176                       Watertown International     48060
4177                                Toledo Express     45780
4178                      Alexandria International     10780
4179                 Buffalo Niagara International     15380
4180                        Key West International     28580
4181            Savannah/Hilton Head International     42340
4182                Syracuse Hancock International     45060
4183                          Gainesville Regional     23540
4184              Austin - Bergstrom International     12420
4185    Cincinnati/Northern Kentucky International     17140
4186                           Logan International     14460
4187       Fort Lauderdale-Hollywood International     33100
4188       Fort Lauderdale-Hollywood International     33100
4189       Fort Lauderdale-Hollywood International     33100
4190                            Westchester County     35620
4191                     Los Angeles International     31080
4192                         Bradley International     25540
4193                     Los Angeles International     31080
4194                        Portland International     38900
4195                        Richmond International     40060
4196            Savannah/Hilton Head International     42340
4197                      Burlington International     15540
4198       Norman Y. Mineta San Jose International     41940
4199                               Lincoln Airport     30700
4200                   Lehigh Valley International     10900
4201                  Seattle/Tacoma International     42660
4202        Birmingham-Shuttlesworth International     13820
4203                           Evansville Regional     21780
4204      Hartsfield-Jackson Atlanta International     12060
4205                         Bradley International     25540
4206                         Orlando International     36740
4207     Louis Armstrong New Orleans International     35380
4208                  Theodore Francis Green State     39300
4209                                Joe Foss Field     43620
4210                  Newark Liberty International     35620
4211                          Albany International     10580
4212                             Waterloo Regional     47940
4213                      Reno/Tahoe International     39900
4214               Dallas/Fort Worth International     19100
4215               Dallas/Fort Worth International     19100
4216                          Idaho Falls Regional     26820
4217                           Evansville Regional     21780
4218                  Chicago O'Hare International     16980
4219              Phoenix Sky Harbor International     38060
4220                                  McGhee Tyson     28940
4221                   Atlantic City International     12100
4222       Fort Lauderdale-Hollywood International     33100
4223                        Arnold Palmer Regional     38300
4224                                     LaGuardia     35620
4225                Luis Munoz Marin International     41980
4226                           Tampa International     45300
4227             Bozeman Yellowstone International     14580
4228                           Tulsa International     46140
4229             Ronald Reagan Washington National     47900
4230             Ronald Reagan Washington National     47900
4231            Tri-State/Milton J. Ferguson Field     26580
4232                      Wilmington International     48900
4233                  Capital Region International     29620
4234                              Easterwood Field     17780
4235                  Gerald R. Ford International     24340
4236           Rick Husband Amarillo International     11100
4237               Cleveland-Hopkins International     17460
4238                             Flagstaff Pulliam     22380
4239          George Bush Intercontinental/Houston     26420
4240                     Los Angeles International     31080
4241                     Los Angeles International     31080
4242      Midland International Air and Space Port     33260
4243                    Myrtle Beach International     34820
4244                  Chicago O'Hare International     16980
4245                  Chicago O'Hare International     16980
4246                  Chicago O'Hare International     16980
4247              Phoenix Sky Harbor International     38060
4248              Roswell International Air Center     40740
4249                   San Francisco International     41860
4250                   San Francisco International     41860
4251                           Tulsa International     46140
4252               Southwest Florida International     15980
4253                             Redding Municipal     39820
4254             Charles M. Schulz - Sonoma County     42220
4255                          Albany International     10580
4256                        Richmond International     40060
4257                  Gerald R. Ford International     24340
4258                      Chippewa Valley Regional     20740
4259       Fort Lauderdale-Hollywood International     33100
4260          Greenville-Spartanburg International     43900
4261  North Platte Regional Airport Lee Bird Field     35820
4262                     Charlottesville Albemarle     16820
4263                      Harrisburg International     25420
4264              James M Cox/Dayton International     19430
4265                          Tucson International     46060
4266           Rick Husband Amarillo International     11100
4267            Erie International/Tom Ridge Field     21500
4268                         Memphis International     32820
4269                           Tampa International     45300
4270                            Monterey Peninsula     41500
4271                       Rochester International     40340
4272                      Wilmington International     48900
4273                     San Antonio International     41700
4274                         Wichita Mid-Continent     48620
4275                      Reno/Tahoe International     39900
4276                            Boise Air Terminal     14260
4277                             Dallas Love Field     19100
4278                         Long Island MacArthur     35620
4279       Northwest Florida Beaches International     37460
4280                               William P Hobby     26420
4281                        Portland International     38900
4282                 Buffalo Niagara International     15380
4283                         Norfolk International     47260
4284          Greenville-Spartanburg International     43900
4285                                  Yampa Valley     44460
4286              John Wayne Airport-Orange County     31080
4287                               Eppley Airfield     36540
4288                          Albany International     10580
4289            Metropolitan Oakland International     41860
4290                  Chicago Midway International     16980
4291                           Miami International     33100
4292                       Nashville International     34980
4293                             Will Rogers World     36420
4294                       Nashville International     34980
4295                    Manchester-Boston Regional     31700
4296                         Spokane International     44060
4297           Lubbock Preston Smith International     31180
4298                               University Park     44300
4299               Dallas/Fort Worth International     19100
4300               Washington Dulles International     47900
4301          George Bush Intercontinental/Houston     26420
4302          George Bush Intercontinental/Houston     26420
4303                    Myrtle Beach International     34820
4304           Lubbock Preston Smith International     31180
4305              Phoenix Sky Harbor International     38060
4306              Sarasota/Bradenton International     35840
4307              Austin - Bergstrom International     12420
4308                  Charleston AFB/International     16700
4309                 John F. Kennedy International     35620
4310                                     LaGuardia     35620
4311                               University Park     44300
4312                      Pittsburgh International     38300
4313                      Palm Beach International     33100
4314               Washington Dulles International     47900
4315               Washington Dulles International     47900
4316               Washington Dulles International     47900
4317               Washington Dulles International     47900
4318                          Duluth International     20260
4319       Green Bay Austin Straubel International     24580
4320             Minneapolis-St Paul International     33460
4321             Minneapolis-St Paul International     33460
4322             Minneapolis-St Paul International     33460
4323             Minneapolis-St Paul International     33460
4324                             Granite Point Ndb      <NA>
4325              Austin - Bergstrom International     12420
4326                      Harrisburg International     25420
4327          George Bush Intercontinental/Houston     26420
4328          George Bush Intercontinental/Houston     26420
4329                           Tampa International     45300
4330      Hartsfield-Jackson Atlanta International     12060
4331                      Wilmington International     48900
4332                 John F. Kennedy International     35620
4333                 John F. Kennedy International     35620
4334                     Charlottesville Albemarle     16820
4335                                     LaGuardia     35620
4336                                          Ford     27020
4337                           Stillwater Regional     44660
4338      Jackson Medgar Wiley Evers International     27140
4339           Fayetteville Regional/Grannis Field     22180
4340                              Dubuque Regional     20220
4341                            Manhattan Regional     31740
4342                  Chicago O'Hare International     16980
4343                   Northwest Arkansas Regional     22220
4344                             Montrose Regional     33940
4345                         Sitka Rocky Gutierrez      <NA>
4346                         Orlando International     36740
4347                        Appleton International     11540
4348                             Canyonlands Field      <NA>
4349                General Mitchell International     33340
4350                             Montrose Regional     33940
4351      Hartsfield-Jackson Atlanta International     12060
4352                         Orlando International     36740
4353                         Orlando International     36740
4354                  Chicago O'Hare International     16980
4355                         Columbia Metropolitan     17900
4356                  Chicago O'Hare International     16980
4357                  Chicago O'Hare International     16980
4358                         Akron-Canton Regional     10420
4359                         Akron-Canton Regional     10420
4360       Fort Lauderdale-Hollywood International     33100
4361                     Los Angeles International     31080
4362                        Arnold Palmer Regional     38300
4363                     Kansas City International     28140
4364                    Myrtle Beach International     34820
4365               Southwest Florida International     15980
4366               Southwest Florida International     15980
4367               Greater Rochester International     40380
4368               Charlotte Douglas International     16740
4369             Ronald Reagan Washington National     47900
4370             Ronald Reagan Washington National     47900
4371             Ronald Reagan Washington National     47900
4372       Newport News/Williamsburg International     47260
4373             Ronald Reagan Washington National     47900
4374             Ronald Reagan Washington National     47900
4375             Ronald Reagan Washington National     47900
4376                         Akron-Canton Regional     10420
4377                    Philadelphia International     37980
4378                                   Adams Field     30780
4379                         Memphis International     32820
4380          George Bush Intercontinental/Houston     26420
4381          George Bush Intercontinental/Houston     26420
4382                              Kearney Regional     28260
4383             Minneapolis-St Paul International     33460
4384              Phoenix Sky Harbor International     38060
4385              Phoenix Sky Harbor International     38060
4386                               Joplin Regional     27900
4387                            Manhattan Regional     31740
4388                    Palm Springs International     40140
4389                     Rhinelander/Oneida County      <NA>
4390                  Seattle/Tacoma International     42660
4391                  Newark Liberty International     35620
4392               Washington Dulles International     47900
4393                 Fresno Yosemite International     23420
4394                Roanoke Regional/Woodrum Field     40220
4395                   Hattiesburg-Laurel Regional     29860
4396               Charlotte Douglas International     16740
4397                  Corpus Christi International     18580
4398                         Memphis International     32820
4399                        Portland International     38900
4400                          Valley International     15180
4401                      Pittsburgh International     38300
4402      Midland International Air and Space Port     33260
4403                General Mitchell International     33340
4404               Washington Dulles International     47900
4405               Washington Dulles International     47900
4406               Washington Dulles International     47900
4407                    Philadelphia International     37980
4408                                  Lovell Field     16860
4409               Washington Dulles International     47900
4410               Washington Dulles International     47900
4411               Washington Dulles International     47900
4412               Washington Dulles International     47900
4413                  Chicago O'Hare International     16980
4414                           Tampa International     45300
4415                       Fairbanks International     21820
4416                            St George Regional     41100
4417                          Idaho Falls Regional     26820
4418                            Santa Fe Municipal     42140
4419                      Fort Wayne International     23060
4420                        Portland International     38900
4421                               Monroe Regional     33740
4422                                 Elko Regional     21220
4423                          Denver International     19740
4424                          Valley International     15180
4425                           Miami International     33100
4426              Dane County Regional-Truax Field     31540
4427                               Eppley Airfield     36540
4428                   Atlantic City International     12100
4429                         Bradley International     25540
4430       Fort Lauderdale-Hollywood International     33100
4431                    Myrtle Beach International     34820
4432               Charlotte Douglas International     16740
4433               Charlotte Douglas International     16740
4434                     Charlottesville Albemarle     16820
4435                    Myrtle Beach International     34820
4436                           Rapid City Regional     39660
4437                               Muskegon County     34740
4438                          Mason City Municipal     32380
4439                    Palm Springs International     40140
4440                  Seattle/Tacoma International     42660
4441                             Pangborn Memorial     48300
4442                               Decatur Airport     19500
4443      California Redwood Coast Humboldt County     21700
4444                Rock Springs Sweetwater County     40540
4445                          Yellowstone Regional      <NA>
4446                          Laredo International     29700
4447                    Philadelphia International     37980
4448                             Dallas Love Field     19100
4449                 Pensacola Gulf Coast Regional     37860
4450       Norman Y. Mineta San Jose International     41940
4451         Kona International Airport at Keahole     25900
4452             Albuquerque International Sunport     10740
4453                      Bellingham International     13380
4454                       San Diego International     41740
4455                        Richmond International     40060
4456              John Wayne Airport-Orange County     31080
4457                           Tampa International     45300
4458          John Murtha Johnstown-Cambria County     27780
4459                    Shenandoah Valley Regional     44420
4460               Washington Dulles International     47900
4461      California Redwood Coast Humboldt County     21700
4462      California Redwood Coast Humboldt County     21700
4463                                      Bob Hope     31080
4464                                      Bob Hope     31080
4465                                      Bob Hope     31080
4466                                      Bob Hope     31080
4467                                      Bob Hope     31080
4468                                      Bob Hope     31080
4469       Fort Lauderdale-Hollywood International     33100
4470               Fort Collins-Loveland Municipal     22660
4471                               Tweed New Haven     35300
4472                               Tweed New Haven     35300
4473          Rogue Valley International - Medford     32780
4474                                Ogden-Hinckley     36260
4475                      Palm Beach International     33100
4476             Charles M. Schulz - Sonoma County     42220
4477                        Portland International     38900
4478                          Denver International     19740
4479                           Tulsa International     46140
4480                          Denver International     19740
4481                          Denver International     19740
4482              Phoenix Sky Harbor International     38060
4483              Phoenix Sky Harbor International     38060
4484                               Kahului Airport     27980
4485                         Eagle County Regional     20780
4486             Minneapolis-St Paul International     33460
4487              Austin - Bergstrom International     12420
4488                  Chicago O'Hare International     16980
4489                                  Jackson Hole     27220
4490          George Bush Intercontinental/Houston     26420
4491                           Miami International     33100
4492                  Chicago O'Hare International     16980
4493       Fort Lauderdale-Hollywood International     33100
4494               Dallas/Fort Worth International     19100
4495                                  Cyril E King      <NA>
4496               Dallas/Fort Worth International     19100
4497             Ronald Reagan Washington National     47900
4498                    Philadelphia International     37980
4499               Dallas/Fort Worth International     19100
4500                  Chicago O'Hare International     16980
4501                  Chicago O'Hare International     16980
4502   Huntsville International-Carl T Jones Field     26620
4503                  Springfield-Branson National     44180
4504                     Kansas City International     28140
4505                    Philadelphia International     37980
4506                    Detroit Metro Wayne County     19820
4507                             Flagstaff Pulliam     22380
4508                          Bangor International     12620
4509                        McCarran International     29820
4510                           Miami International     33100
4511                              Rafael Hernandez     10380
4512                          Bangor International     12620
4513    Central Il Regional Airport at Bloomington     14010
4514                      Burlington International     15540
4515                         Orlando International     36740
4516                      Harrisburg International     25420
4517                Luis Munoz Marin International     41980
4518                                  McGhee Tyson     28940
4519                              Henry E. Rohlsen      <NA>
4520       Fort Lauderdale-Hollywood International     33100
4521                    Manchester-Boston Regional     31700
4522                           Tampa International     45300
4523                             Redding Municipal     39820
4524              John Wayne Airport-Orange County     31080
4525                             Friedman Memorial     25200
4526                Portland International Jetport     38860
4527                       Nashville International     34980
4528                             Dallas Love Field     19100
4529                 Daniel K Inouye International     46520
4530                            Boise Air Terminal     14260
4531                         Orlando International     36740
4532                  Chicago O'Hare International     16980
4533                  Theodore Francis Green State     39300
4534                        Richmond International     40060
4535                     San Antonio International     41700
4536             Ronald Reagan Washington National     47900
4537                           Tampa International     45300
4538               Washington Dulles International     47900
4539       Green Bay Austin Straubel International     24580
4540                      Alexandria International     10780
4541                                     LaGuardia     35620
4542                            Bismarck Municipal     13900
4543                                 Roberts Field     13460
4544                          Juneau International     27940
4545                        Key West International     28580
4546       Fort Lauderdale-Hollywood International     33100
4547                 John F. Kennedy International     35620
4548                                     Mercedita     38660
4549                                   Yellowstone     14580
4550        Greater Binghamton/Edwin A. Link Field     13780
4551                    Myrtle Beach International     34820
4552                   Northwest Arkansas Regional     22220
4553               Dallas/Fort Worth International     19100
4554                         Tyler Pounds Regional     46340
4555                           Logan International     14460
4556             Ronald Reagan Washington National     47900
4557             Ronald Reagan Washington National     47900
4558             Ronald Reagan Washington National     47900
4559                     Los Angeles International     31080
4560              Austin - Bergstrom International     12420
4561                           Lea County Regional     26020
4562                           Dodge City Regional     19980
4563          Sioux Gateway Brig Gen Bud Day Field     43580
4564                       Nashville International     34980
4565                        Portland International     38900
4566                             Dallas Love Field     19100
4567                               William P Hobby     26420
4568                               William P Hobby     26420
4569                               William P Hobby     26420
4570       Northwest Florida Beaches International     37460
4571                        McCarran International     29820
4572                                 Lihue Airport     28180
4573                     Kansas City International     28140
4574                      Reno/Tahoe International     39900
4575                  Chicago Midway International     16980
4576                                     LaGuardia     35620
4577                       San Diego International     41740
4578            City of Colorado Springs Municipal     17820
4579                  Gerald R. Ford International     24340
4580                St Louis Lambert International     41180
4581                           Tampa International     45300
4582                           Tampa International     45300
4583               Washington Dulles International     47900
4584                          Duluth International     20260
4585              Dane County Regional-Truax Field     31540
4586              Phoenix Sky Harbor International     38060
4587               Southwest Florida International     15980
4588                          Tallahassee Regional     45220
4589                               Tweed New Haven     35300
4590                                 Roberts Field     13460
4591              Phoenix Sky Harbor International     38060
4592                             Friedman Memorial     25200
4593                  Chicago O'Hare International     16980
4594                              Henry E. Rohlsen      <NA>
4595                    Detroit Metro Wayne County     19820
4596                  Chicago Midway International     16980
4597                            Mahlon Sweet Field     21660
4598                  Billings Logan International     13740
4599                  Chicago O'Hare International     16980
4600          Yakima Air Terminal/McAllister Field     49420
4601                        Alpena County Regional     10980
4602                    Palm Springs International     40140
4603                         Orlando International     36740
4604                      Palm Beach International     33100
4605       Fort Lauderdale-Hollywood International     33100
4606       Fort Lauderdale-Hollywood International     33100
4607                    Myrtle Beach International     34820
4608                         Memphis International     32820
4609               Charlotte Douglas International     16740
4610           Cheyenne Regional/Jerry Olson Field     16940
4611               Dallas/Fort Worth International     19100
4612                            Watertown Regional     47980
4613                               Vernal Regional     46860
4614                              Laramie Regional     29660
4615                             Canyonlands Field      <NA>
4616                      Houghton County Memorial     26340
4617                      Ogdensburg International     36300
4618      California Redwood Coast Humboldt County     21700
4619              Sarasota/Bradenton International     35840
4620 Western Neb. Regional/William B. Heilig Field     42420
4621                              Kearney Regional     28260
4622                                 Hays Regional     25700
4623                          Albany International     10580
4624            Baltimore/Washington International     12580
4625      Jackson Medgar Wiley Evers International     27140
4626             Ronald Reagan Washington National     47900
4627                             Montrose Regional     33940
4628       Fort Lauderdale-Hollywood International     33100
4629       Fort Lauderdale-Hollywood International     33100
4630                               William P Hobby     26420
4631                               William P Hobby     26420
4632                    Philadelphia International     37980
4633                        McCarran International     29820
4634                        McCarran International     29820
4635                        McCarran International     29820
4636                     Kansas City International     28140
4637            Eglin AFB Destin Fort Walton Beach     18880
4638                  Chicago Midway International     16980
4639              Phoenix Sky Harbor International     38060
4640                          Valley International     15180
4641              Phoenix Sky Harbor International     38060
4642               Southwest Florida International     15980
4643                       San Diego International     41740
4644                     San Antonio International     41700
4645                     San Antonio International     41700
4646              Sarasota/Bradenton International     35840
4647              Sarasota/Bradenton International     35840
4648                     San Antonio International     41700
4649               Dallas/Fort Worth International     19100
4650                   North Central West Virginia     17220
4651  Waynesville-St. Robert Regional Forney Field     22780
4652               Washington Dulles International     47900
4653              Sarasota/Bradenton International     35840
4654                        Key West International     28580
4655                           Tampa International     45300
4656               Dallas/Fort Worth International     19100
4657                                  Jackson Hole     27220
4658      Hartsfield-Jackson Atlanta International     12060
4659                  Chicago O'Hare International     16980
4660                             Friedman Memorial     25200
4661                 Daniel K Inouye International     46520
4662               Washington Dulles International     47900
4663          George Bush Intercontinental/Houston     26420
4664          George Bush Intercontinental/Houston     26420
4665                  Seattle/Tacoma International     42660
4666                              Henry E. Rohlsen      <NA>
4667                               University Park     44300
4668                             Valdosta Regional     46660
4669                      Alexandria International     10780
4670               Dallas/Fort Worth International     19100
4671                  Salt Lake City International     41620
4672                               William P Hobby     26420
4673                  Chicago O'Hare International     16980
4674                          Denver International     19740
4675      Hartsfield-Jackson Atlanta International     12060
4676      Hartsfield-Jackson Atlanta International     12060
4677                    Detroit Metro Wayne County     19820
4678               Charlotte Douglas International     16740
4679               Dallas/Fort Worth International     19100
4680               Southwest Florida International     15980
4681               Dallas/Fort Worth International     19100
4682               Dallas/Fort Worth International     19100
4683                  Chicago O'Hare International     16980
4684             Ronald Reagan Washington National     47900
4685                          Denver International     19740
4686          George Bush Intercontinental/Houston     26420
4687                  Newark Liberty International     35620
4688                        McCarran International     29820
4689               Dallas/Fort Worth International     19100
4690             Ronald Reagan Washington National     47900
4691                        Key West International     28580
4692                  Newark Liberty International     35620
4693         Kona International Airport at Keahole     25900
4694             John Glenn Columbus International     18140
4695                          Juneau International     27940
4696                         Orlando International     36740
4697                 Buffalo Niagara International     15380
4698                        Provincetown Municipal     12700
4699                     Martha's Vineyard Airport     47240
4700                       Durango La Plata County     20420
4701                           Cedar City Regional     16260
4702              Austin - Bergstrom International     12420
4703                    Myrtle Beach International     34820
4704               Southwest Florida International     15980
4705               Charlotte Douglas International     16740
4706               Charlotte Douglas International     16740
4707             Ronald Reagan Washington National     47900
4708             Ronald Reagan Washington National     47900
4709                          Denver International     19740
4710          George Bush Intercontinental/Houston     26420
4711              Phoenix Sky Harbor International     38060
4712                          Devils Lake Regional      <NA>
4713         Kona International Airport at Keahole     25900
4714          John Murtha Johnstown-Cambria County     27780
4715                            Jamestown Regional     27420
4716        San Luis Valley Regional/Bergman Field      <NA>
4717                          Albany International     10580
4718                 Buffalo Niagara International     15380
4719                    Palm Springs International     40140
4720                               William P Hobby     26420
4721                               William P Hobby     26420
4722                      Des Moines International     19780
4723                         Orlando International     36740
4724                         Orlando International     36740
4725            Metropolitan Oakland International     41860
4726                             Will Rogers World     36420
4727                St Louis Lambert International     41180
4728                           Tampa International     45300
4729                           Tampa International     45300
4730               Dallas/Fort Worth International     19100
4731                        Key West International     28580
4732                                    Blue Grass     30460
4733                    Philadelphia International     37980
4734                          Denver International     19740
4735          George Bush Intercontinental/Houston     26420
4736          George Bush Intercontinental/Houston     26420
4737                        Key West International     28580
4738                         Orlando International     36740
4739      Hartsfield-Jackson Atlanta International     12060
4740                    Detroit Metro Wayne County     19820
4741               Charlotte Douglas International     16740
4742               Dallas/Fort Worth International     19100
4743           Ted Stevens Anchorage International     11260
4744             Ronald Reagan Washington National     47900
4745                          Juneau International     27940
4746                          Juneau International     27940
4747                          Knox County Regional      <NA>
4748                 John F. Kennedy International     35620
4749               Southwest Florida International     15980
4750                   Northwest Arkansas Regional     22220
4751                           Tampa International     45300
4752                    Philadelphia International     37980
4753        General Downing - Peoria International     37900
4754                               Sheridan County     43260
4755                          Denver International     19740
4756                          Denver International     19740
4757               Dallas/Fort Worth International     19100
4758                    Detroit Metro Wayne County     19820
4759                    Detroit Metro Wayne County     19820
4760          George Bush Intercontinental/Houston     26420
4761                             Central Wisconsin     48140
4762             Minneapolis-St Paul International     33460
4763             Minneapolis-St Paul International     33460
4764       Dickinson - Theodore Roosevelt Regional     19860
4765              Phoenix Sky Harbor International     38060
4766                          Tucson International     46060
4767                  Seattle/Tacoma International     42660
4768                    Shenandoah Valley Regional     44420
4769                     Plattsburgh International     38460
4770                             Riverton Regional     40180
4771                         El Paso International     21340
4772                               William P Hobby     26420
4773                               William P Hobby     26420
4774                               William P Hobby     26420
4775                        McCarran International     29820
4776                     Kansas City International     28140
4777                               Kahului Airport     27980
4778       Norman Y. Mineta San Jose International     41940
4779                St Louis Lambert International     41180
4780                           Tulsa International     46140
4781          George Bush Intercontinental/Houston     26420
4782              Phoenix Sky Harbor International     38060
4783                                  Jackson Hole     27220
4784                                     LaGuardia     35620
4785                  Chicago O'Hare International     16980
4786          George Bush Intercontinental/Houston     26420
4787          George Bush Intercontinental/Houston     26420
4788               Charlotte Douglas International     16740
4789                    Detroit Metro Wayne County     19820
4790                  Chicago O'Hare International     16980
4791               Dallas/Fort Worth International     19100
4792                           Miami International     33100
4793                     Los Angeles International     31080
4794      Hartsfield-Jackson Atlanta International     12060
4795             Ronald Reagan Washington National     47900
4796               Dallas/Fort Worth International     19100
4797                   Northwest Arkansas Regional     22220
4798          George Bush Intercontinental/Houston     26420
4799                     Kansas City International     28140
4800             Minneapolis-St Paul International     33460
4801                  Salt Lake City International     41620
4802                   Northwest Arkansas Regional     22220
4803                              Snohomish County     42660
4804                          Tucson International     46060
4805             Bozeman Yellowstone International     14580
4806                             Dallas Love Field     19100
4807       Northwest Florida Beaches International     37460
4808                         Orlando International     36740
4809                     San Antonio International     41700
4810                      Sacramento International     40900
4811                           Tulsa International     46140
4812                  Chicago O'Hare International     16980
4813               Charlotte Douglas International     16740
4814      Hartsfield-Jackson Atlanta International     12060
4815      Hartsfield-Jackson Atlanta International     12060
4816      Hartsfield-Jackson Atlanta International     12060
4817                    Detroit Metro Wayne County     19820
4818                    Detroit Metro Wayne County     19820
4819                                     LaGuardia     35620
4820                General Mitchell International     33340
4821             Minneapolis-St Paul International     33460
4822                   Northwest Arkansas Regional     22220
4823                                  Cyril E King      <NA>
4824      California Redwood Coast Humboldt County     21700
4825                             Montrose Regional     33940
4826                                   Adams Field     30780
4827                        Appleton International     11540
4828                         Wichita Mid-Continent     48620
4829       Fort Lauderdale-Hollywood International     33100
4830                 John F. Kennedy International     35620
4831                      Palm Beach International     33100
4832               Southwest Florida International     15980
4833      Hartsfield-Jackson Atlanta International     12060
4834             Minneapolis-St Paul International     33460
4835                      Des Moines International     19780
4836               Cleveland-Hopkins International     17460
4837             Ronald Reagan Washington National     47900
4838               Dallas/Fort Worth International     19100
4839                  Chicago O'Hare International     16980
4840               Charlotte Douglas International     16740
4841                           Montgomery Regional     33860
4842      California Redwood Coast Humboldt County     21700
4843                            Monterey Peninsula     41500
4844                          Denver International     19740
4845                    Detroit Metro Wayne County     19820
4846             Minneapolis-St Paul International     33460
4847             Minneapolis-St Paul International     33460
4848             Minneapolis-St Paul International     33460
4849             Minneapolis-St Paul International     33460
4850              Phoenix Sky Harbor International     38060
4851                   San Francisco International     41860
4852                   San Francisco International     41860
4853                               Pierre Regional     38180
4854                  Chicago O'Hare International     16980
4855              Dane County Regional-Truax Field     31540
4856                                   Adams Field     30780
4857                                      Bob Hope     31080
4858                      Palm Beach International     33100
4859                    Palm Springs International     40140
4860          Greenville-Spartanburg International     43900
4861                             Montrose Regional     33940
4862                        McCarran International     29820
4863                     Los Angeles International     31080
4864                             Will Rogers World     36420
4865                  Theodore Francis Green State     39300
4866               Charlotte Douglas International     16740
4867            City of Colorado Springs Municipal     17820
4868                       San Diego International     41740
4869    Cincinnati/Northern Kentucky International     17140
4870                          Tucson International     46060
4871               Dallas/Fort Worth International     19100
4872             Ronald Reagan Washington National     47900
4873                  Chicago O'Hare International     16980
4874                  Chicago O'Hare International     16980
4875                          Valley International     15180
4876                           Logan International     14460
4877               Charlotte Douglas International     16740
4878                      Fort Wayne International     23060
4879                    Philadelphia International     37980
4880                    Philadelphia International     37980
4881                    Philadelphia International     37980
4882          George Bush Intercontinental/Houston     26420
4883      Hartsfield-Jackson Atlanta International     12060
4884      Hartsfield-Jackson Atlanta International     12060
4885                  Charleston AFB/International     16700
4886                    Detroit Metro Wayne County     19820
4887                    Detroit Metro Wayne County     19820
4888                    Detroit Metro Wayne County     19820
4889                    Detroit Metro Wayne County     19820
4890                    Detroit Metro Wayne County     19820
4891                    Detroit Metro Wayne County     19820
4892             Minneapolis-St Paul International     33460
4893             Minneapolis-St Paul International     33460
4894                                  McGhee Tyson     28940
4895                                  Cyril E King      <NA>
4896                Roanoke Regional/Woodrum Field     40220
4897                 Texarkana Regional-Webb Field     45500
4898         Kona International Airport at Keahole     25900
4899                           Logan International     14460
4900                 John F. Kennedy International     35620
4901                  Newark Liberty International     35620
4902                 John F. Kennedy International     35620
4903                                     LaGuardia     35620
4904                         Orlando International     36740
4905      Hartsfield-Jackson Atlanta International     12060
4906      Hartsfield-Jackson Atlanta International     12060
4907      Hartsfield-Jackson Atlanta International     12060
4908             Minneapolis-St Paul International     33460
4909                      Ithaca Tompkins Regional     27060
4910              James M Cox/Dayton International     19430
4911                              Bemidji Regional     13420
4912              Sarasota/Bradenton International     35840
4913                  Newark Liberty International     35620
4914                           East Texas Regional     30980
4915               Dallas/Fort Worth International     19100
4916                  Chicago O'Hare International     16980
4917                  Chicago O'Hare International     16980
4918                          Denver International     19740
4919                    Detroit Metro Wayne County     19820
4920                         Eagle County Regional     20780
4921          George Bush Intercontinental/Houston     26420
4922                         Eagle County Regional     20780
4923                     Los Angeles International     31080
4924                     Los Angeles International     31080
4925                     Southwest Oregon Regional     18300
4926             Minneapolis-St Paul International     33460
4927                        Portland International     38900
4928                       San Diego International     41740
4929                  Salt Lake City International     41620
4930                               Kahului Airport     27980
4931                  Springfield-Branson National     44180
4932             Bozeman Yellowstone International     14580
4933               Washington Dulles International     47900
4934                            Hilo International     25900
4935                         Lake Charles Regional     29340
4936                           Rapid City Regional     39660
4937                             Dallas Love Field     19100
4938                         El Paso International     21340
4939                 Daniel K Inouye International     46520
4940                               William P Hobby     26420
4941            Eglin AFB Destin Fort Walton Beach     18880
4942                         El Paso International     21340
4943                          Tucson International     46060
4944            Metropolitan Oakland International     41860
4945                           Tulsa International     46140
4946                Luis Munoz Marin International     41980
4947                                   Adams Field     30780
4948                         Columbia Metropolitan     17900
4949                        Key West International     28580
4950               Washington Dulles International     47900
4951                Luis Munoz Marin International     41980
4952                  Newark Liberty International     35620
4953                                    Tri Cities     28420
4954             Charles M. Schulz - Sonoma County     42220
4955             Ronald Reagan Washington National     47900
4956                    Manchester-Boston Regional     31700
4957               Charlotte Douglas International     16740
4958                                  Jackson Hole     27220
4959                          Denver International     19740
4960                  Salt Lake City International     41620
4961                   San Francisco International     41860
4962                St Louis Lambert International     41180
4963                          Denver International     19740
4964           Ted Stevens Anchorage International     11260
4965                                 Mile 13 Field      <NA>
4966                    Petersburg James A Johnson      <NA>
4967                         Orlando International     36740
4968                Portland International Jetport     38860
4969                  Newark Liberty International     35620
4970                           Miami International     33100
4971          George Bush Intercontinental/Houston     26420
4972                  Seattle/Tacoma International     42660
4973                         El Paso International     21340
4974               Cleveland-Hopkins International     17460
4975                             Dallas Love Field     19100
4976                                        Yeager     16620
4977                      Fort Wayne International     23060
4978               Charlotte Douglas International     16740
4979                              Wrangell Airport      <NA>
4980                                 Lihue Airport     28180
4981                      Reno/Tahoe International     39900
4982                               William P Hobby     26420
4983                         Ontario International     40140
4984     Louis Armstrong New Orleans International     35380
4985                           Logan International     14460
4986               Charlotte Douglas International     16740
4987                University of Illinois/Willard     16580
4988                         Orlando International     36740
4989               Charlotte Douglas International     16740
4990               Charlotte Douglas International     16740
4991                    Glacier Park International     28060
4992                          Denver International     19740
4993                  Salt Lake City International     41620
4994                            Dillingham Airport      <NA>
4995              Phoenix Sky Harbor International     38060
4996                  Chicago O'Hare International     16980
4997                       Nashville International     34980
4998                  Chicago Midway International     16980
4999                  Chicago Midway International     16980
                                     dest_cbsa_name
1                       Detroit-Warren-Dearborn, MI
2                       Detroit-Warren-Dearborn, MI
3                       Detroit-Warren-Dearborn, MI
4                       Detroit-Warren-Dearborn, MI
5                San Francisco-Oakland-Berkeley, CA
6                         Phoenix-Mesa-Chandler, AZ
7                       Detroit-Warren-Dearborn, MI
8           Miami-Fort Lauderdale-Pompano Beach, FL
9                       Detroit-Warren-Dearborn, MI
10                      Detroit-Warren-Dearborn, MI
11                      Detroit-Warren-Dearborn, MI
12                      Detroit-Warren-Dearborn, MI
13              Portland-Vancouver-Hillsboro, OR-WA
14                        Phoenix-Mesa-Chandler, AZ
15               San Jose-Sunnyvale-Santa Clara, CA
16               San Jose-Sunnyvale-Santa Clara, CA
17                      Detroit-Warren-Dearborn, MI
18                             Dayton-Kettering, OH
19                          Buffalo-Cheektowaga, NY
20                                  Panama City, FL
21          Minneapolis-St. Paul-Bloomington, MN-WI
22             Riverside-San Bernardino-Ontario, CA
23                        Providence-Warwick, RI-MA
24                                 Jacksonville, FL
25          Miami-Fort Lauderdale-Pompano Beach, FL
26                                    Asheville, NC
27            New York-Newark-Jersey City, NY-NJ-PA
28                                     Key West, FL
29                                      Jackson, MS
30               Los Angeles-Long Beach-Anaheim, CA
31              Portland-Vancouver-Hillsboro, OR-WA
32                                 Raleigh-Cary, NC
33                  Sacramento-Roseville-Folsom, CA
34          Miami-Fort Lauderdale-Pompano Beach, FL
35               San Francisco-Oakland-Berkeley, CA
36                       Denver-Aurora-Lakewood, CO
37            New York-Newark-Jersey City, NY-NJ-PA
38               San Diego-Chula Vista-Carlsbad, CA
39                      Seattle-Tacoma-Bellevue, WA
40               San Diego-Chula Vista-Carlsbad, CA
41                  Sacramento-Roseville-Folsom, CA
42                           Kennewick-Richland, WA
43            New York-Newark-Jersey City, NY-NJ-PA
44            New York-Newark-Jersey City, NY-NJ-PA
45             Atlanta-Sandy Springs-Alpharetta, GA
46                  Dallas-Fort Worth-Arlington, TX
47                                    Lafayette, LA
48                 Austin-Round Rock-Georgetown, TX
49                             Cincinnati, OH-KY-IN
50                               Kansas City, MO-KS
51               Chicago-Naperville-Elgin, IL-IN-WI
52               San Diego-Chula Vista-Carlsbad, CA
53                                     Syracuse, NY
54          Miami-Fort Lauderdale-Pompano Beach, FL
55                               Urban Honolulu, HI
56                          Buffalo-Cheektowaga, NY
57                                  Sioux Falls, SD
58                                      Bozeman, MT
59                      Seattle-Tacoma-Bellevue, WA
60                   Des Moines-West Des Moines, IA
61                   Boston-Cambridge-Newton, MA-NH
62            New York-Newark-Jersey City, NY-NJ-PA
63                                     Fargo, ND-MN
64             Atlanta-Sandy Springs-Alpharetta, GA
65     Washington-Arlington-Alexandria, DC-VA-MD-WV
66            New York-Newark-Jersey City, NY-NJ-PA
67                         New Orleans-Metairie, LA
68                    San Antonio-New Braunfels, TX
69               Los Angeles-Long Beach-Anaheim, CA
70                                       Fresno, CA
71                                  Idaho Falls, ID
72             Riverside-San Bernardino-Ontario, CA
73                              Gulfport-Biloxi, MS
74                   Boston-Cambridge-Newton, MA-NH
75                    Orlando-Kissimmee-Sanford, FL
76                                  Spartanburg, SC
77                      Albany-Schenectady-Troy, NY
78            Hartford-East Hartford-Middletown, CT
79                      Detroit-Warren-Dearborn, MI
80                           Milwaukee-Waukesha, WI
81                  Dallas-Fort Worth-Arlington, TX
82                                Memphis, TN-MS-AR
83                    Baltimore-Columbia-Towson, MD
84                                     Columbus, OH
85                         New Orleans-Metairie, LA
86       Virginia Beach-Norfolk-Newport News, VA-NC
87                                   Pittsburgh, PA
88          Miami-Fort Lauderdale-Pompano Beach, FL
89                    Orlando-Kissimmee-Sanford, FL
90                 Las Vegas-Henderson-Paradise, NV
91               San Diego-Chula Vista-Carlsbad, CA
92                  Sacramento-Roseville-Folsom, CA
93                                 Raleigh-Cary, NC
94                                     Columbus, OH
95                    Orlando-Kissimmee-Sanford, FL
96              Portland-Vancouver-Hillsboro, OR-WA
97                      Omaha-Council Bluffs, NE-IA
98           Deltona-Daytona Beach-Ormond Beach, FL
99                 Indianapolis-Carmel-Anderson, IN
100           New York-Newark-Jersey City, NY-NJ-PA
101                              Salt Lake City, UT
102               North Port-Sarasota-Bradenton, FL
103          Crestview-Fort Walton Beach-Destin, FL
104                  Boston-Cambridge-Newton, MA-NH
105                Indianapolis-Carmel-Anderson, IN
106                                      Tucson, AZ
107              Los Angeles-Long Beach-Anaheim, CA
108              Los Angeles-Long Beach-Anaheim, CA
109              Chicago-Naperville-Elgin, IL-IN-WI
110                       Greensboro-High Point, NC
111                            Cleveland-Elyria, OH
112                       Grand Rapids-Kentwood, MI
113     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
114              Los Angeles-Long Beach-Anaheim, CA
115            Houston-The Woodlands-Sugar Land, TX
116                           Kalamazoo-Portage, MI
117           New York-Newark-Jersey City, NY-NJ-PA
118           New York-Newark-Jersey City, NY-NJ-PA
119                      Denver-Aurora-Lakewood, CO
120                                        Hilo, HI
121           New York-Newark-Jersey City, NY-NJ-PA
122           New York-Newark-Jersey City, NY-NJ-PA
123           New York-Newark-Jersey City, NY-NJ-PA
124           New York-Newark-Jersey City, NY-NJ-PA
125           New York-Newark-Jersey City, NY-NJ-PA
126                                       Kapaa, HI
127                              Salt Lake City, UT
128              Los Angeles-Long Beach-Anaheim, CA
129                      Spokane-Spokane Valley, WA
130                      Spokane-Spokane Valley, WA
131                                  Jackson, WY-ID
132              San Francisco-Oakland-Berkeley, CA
133                            Colorado Springs, CO
134           New York-Newark-Jersey City, NY-NJ-PA
135           New York-Newark-Jersey City, NY-NJ-PA
136                                        Reno, NV
137                                  Boise City, ID
138                                Jacksonville, NC
139                            Cincinnati, OH-KY-IN
140                                    Syracuse, NY
141                            Cleveland-Elyria, OH
142             Tampa-St. Petersburg-Clearwater, FL
143                                    Syracuse, NY
144                Las Vegas-Henderson-Paradise, NV
145                                   Duluth, MN-WI
146           Hartford-East Hartford-Middletown, CT
147           New York-Newark-Jersey City, NY-NJ-PA
148                Austin-Round Rock-Georgetown, TX
149                Las Vegas-Henderson-Paradise, NV
150                  Augusta-Richmond County, GA-SC
151                                    Richmond, VA
152                   San Antonio-New Braunfels, TX
153              Los Angeles-Long Beach-Anaheim, CA
154           New York-Newark-Jersey City, NY-NJ-PA
155                  Boston-Cambridge-Newton, MA-NH
156              Los Angeles-Long Beach-Anaheim, CA
157           Hartford-East Hartford-Middletown, CT
158                         Buffalo-Cheektowaga, NY
159           New York-Newark-Jersey City, NY-NJ-PA
160                                    Richmond, VA
161              Los Angeles-Long Beach-Anaheim, CA
162                         Buffalo-Cheektowaga, NY
163                                    Richmond, VA
164                   Orlando-Kissimmee-Sanford, FL
165              Los Angeles-Long Beach-Anaheim, CA
166                                   Anchorage, AK
167                                   Kalispell, MT
168              Los Angeles-Long Beach-Anaheim, CA
169                                    Missoula, MT
170                                      Hailey, ID
171                               Oklahoma City, OK
172                       Grand Rapids-Kentwood, MI
173              Los Angeles-Long Beach-Anaheim, CA
174                       Phoenix-Mesa-Chandler, AZ
175              San Diego-Chula Vista-Carlsbad, CA
176                     Seattle-Tacoma-Bellevue, WA
177           New York-Newark-Jersey City, NY-NJ-PA
178                                  Boise City, ID
179                      Spokane-Spokane Valley, WA
180                       Phoenix-Mesa-Chandler, AZ
181              San Francisco-Oakland-Berkeley, CA
182                 Sacramento-Roseville-Folsom, CA
183           New York-Newark-Jersey City, NY-NJ-PA
184           New York-Newark-Jersey City, NY-NJ-PA
185           New York-Newark-Jersey City, NY-NJ-PA
186                  Boston-Cambridge-Newton, MA-NH
187        Little Rock-North Little Rock-Conway, AR
188                                 Baton Rouge, LA
189             Portland-Vancouver-Hillsboro, OR-WA
190                           Lexington-Fayette, KY
191                              Urban Honolulu, HI
192    Washington-Arlington-Alexandria, DC-VA-MD-WV
193                                St. Louis, MO-IL
194                   Orlando-Kissimmee-Sanford, FL
195                       La Crosse-Onalaska, WI-MN
196                   Orlando-Kissimmee-Sanford, FL
197                   Orlando-Kissimmee-Sanford, FL
198                                   Green Bay, WI
199             Tampa-St. Petersburg-Clearwater, FL
200                                      Tucson, AZ
201                      Denver-Aurora-Lakewood, CO
202              San Francisco-Oakland-Berkeley, CA
203                                   Knoxville, TN
204                                Cedar Rapids, IA
205                      Denver-Aurora-Lakewood, CO
206                                   Brunswick, GA
207                       Cape Coral-Fort Myers, FL
208                                 Spartanburg, SC
209    Washington-Arlington-Alexandria, DC-VA-MD-WV
210         Miami-Fort Lauderdale-Pompano Beach, FL
211   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
212                                    Savannah, GA
213                                       Tulsa, OK
214         Minneapolis-St. Paul-Bloomington, MN-WI
215         Minneapolis-St. Paul-Bloomington, MN-WI
216         Minneapolis-St. Paul-Bloomington, MN-WI
217         Minneapolis-St. Paul-Bloomington, MN-WI
218         Minneapolis-St. Paul-Bloomington, MN-WI
219         Minneapolis-St. Paul-Bloomington, MN-WI
220                 Dallas-Fort Worth-Arlington, TX
221         Miami-Fort Lauderdale-Pompano Beach, FL
222                       Cape Coral-Fort Myers, FL
223         Minneapolis-St. Paul-Bloomington, MN-WI
224         Minneapolis-St. Paul-Bloomington, MN-WI
225         Minneapolis-St. Paul-Bloomington, MN-WI
226                     Portland-South Portland, ME
227         Minneapolis-St. Paul-Bloomington, MN-WI
228         Minneapolis-St. Paul-Bloomington, MN-WI
229         Minneapolis-St. Paul-Bloomington, MN-WI
230         Minneapolis-St. Paul-Bloomington, MN-WI
231         Minneapolis-St. Paul-Bloomington, MN-WI
232         Minneapolis-St. Paul-Bloomington, MN-WI
233         Minneapolis-St. Paul-Bloomington, MN-WI
234         Minneapolis-St. Paul-Bloomington, MN-WI
235         Minneapolis-St. Paul-Bloomington, MN-WI
236         Minneapolis-St. Paul-Bloomington, MN-WI
237                        Lansing-East Lansing, MI
238                        New Orleans-Metairie, LA
239                        New Orleans-Metairie, LA
240              Los Angeles-Long Beach-Anaheim, CA
241                           Birmingham-Hoover, AL
242               Charlotte-Concord-Gastonia, NC-SC
243                                Raleigh-Cary, NC
244              San Francisco-Oakland-Berkeley, CA
245                  Pensacola-Ferry Pass-Brent, FL
246                   Orlando-Kissimmee-Sanford, FL
247            Riverside-San Bernardino-Ontario, CA
248                 Hilton Head Island-Bluffton, SC
249              Chicago-Naperville-Elgin, IL-IN-WI
250              Louisville/Jefferson County, KY-IN
251                                    Syracuse, NY
252              Chicago-Naperville-Elgin, IL-IN-WI
253              Chicago-Naperville-Elgin, IL-IN-WI
254                                   Duluth, MN-WI
255              Los Angeles-Long Beach-Anaheim, CA
256                  Des Moines-West Des Moines, IA
257                 Charleston-North Charleston, SC
258                Indianapolis-Carmel-Anderson, IN
259            Riverside-San Bernardino-Ontario, CA
260                  Boston-Cambridge-Newton, MA-NH
261                              Kansas City, MO-KS
262                                 Albuquerque, NM
263                                        Reno, NV
264                                 Albuquerque, NM
265         Miami-Fort Lauderdale-Pompano Beach, FL
266     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
267                                   Rochester, MN
268                     Portland-South Portland, ME
269                  Boston-Cambridge-Newton, MA-NH
270                     South Bend-Mishawaka, IN-MI
271  Nashville-Davidson--Murfreesboro--Franklin, TN
272    Washington-Arlington-Alexandria, DC-VA-MD-WV
273                Las Vegas-Henderson-Paradise, NV
274                                Raleigh-Cary, NC
275                                Raleigh-Cary, NC
276                                Raleigh-Cary, NC
277                                Raleigh-Cary, NC
278              San Francisco-Oakland-Berkeley, CA
279                                Raleigh-Cary, NC
280                                Raleigh-Cary, NC
281                 Dallas-Fort Worth-Arlington, TX
282                 Burlington-South Burlington, VT
283                       Cape Coral-Fort Myers, FL
284                                   Green Bay, WI
285              San Diego-Chula Vista-Carlsbad, CA
286                   Orlando-Kissimmee-Sanford, FL
287             Tampa-St. Petersburg-Clearwater, FL
288                                Fayetteville, NC
289                     Seattle-Tacoma-Bellevue, WA
290                   Baltimore-Columbia-Towson, MD
291    Washington-Arlington-Alexandria, DC-VA-MD-WV
292                     Seattle-Tacoma-Bellevue, WA
293                     Seattle-Tacoma-Bellevue, WA
294                          Milwaukee-Waukesha, WI
295                     Seattle-Tacoma-Bellevue, WA
296                     Seattle-Tacoma-Bellevue, WA
297                                  St. George, UT
298                     Seattle-Tacoma-Bellevue, WA
299  Nashville-Davidson--Murfreesboro--Franklin, TN
300                            Cincinnati, OH-KY-IN
301         Miami-Fort Lauderdale-Pompano Beach, FL
302                     Detroit-Warren-Dearborn, MI
303                     Detroit-Warren-Dearborn, MI
304                              Salt Lake City, UT
305                              Salt Lake City, UT
306                                Cedar Rapids, IA
307                          Milwaukee-Waukesha, WI
308                                    Columbus, OH
309                              Salt Lake City, UT
310                              Salt Lake City, UT
311                              Salt Lake City, UT
312                              Salt Lake City, UT
313                              Salt Lake City, UT
314           New York-Newark-Jersey City, NY-NJ-PA
315                              Salt Lake City, UT
316                              Salt Lake City, UT
317                              Salt Lake City, UT
318                              Salt Lake City, UT
319                              Salt Lake City, UT
320  Nashville-Davidson--Murfreesboro--Franklin, TN
321         Minneapolis-St. Paul-Bloomington, MN-WI
322                              Chattanooga, TN-GA
323                       Grand Rapids-Kentwood, MI
324                          Eugene-Springfield, OR
325                                        Bend, OR
326              Louisville/Jefferson County, KY-IN
327                                St. Louis, MO-IL
328                      Spokane-Spokane Valley, WA
329                                   Green Bay, WI
330                                 Sioux Falls, SD
331                                     Saginaw, MI
332                Las Vegas-Henderson-Paradise, NV
333             Tampa-St. Petersburg-Clearwater, FL
334             Tampa-St. Petersburg-Clearwater, FL
335             Tampa-St. Petersburg-Clearwater, FL
336            Atlanta-Sandy Springs-Alpharetta, GA
337            Atlanta-Sandy Springs-Alpharetta, GA
338                Austin-Round Rock-Georgetown, TX
339                   Baltimore-Columbia-Towson, MD
340                            Cleveland-Elyria, OH
341              San Diego-Chula Vista-Carlsbad, CA
342            Riverside-San Bernardino-Ontario, CA
343               Charlotte-Concord-Gastonia, NC-SC
344                      Denver-Aurora-Lakewood, CO
345                      Denver-Aurora-Lakewood, CO
346           New York-Newark-Jersey City, NY-NJ-PA
347                Las Vegas-Henderson-Paradise, NV
348                   Orlando-Kissimmee-Sanford, FL
349            Riverside-San Bernardino-Ontario, CA
350                               Memphis, TN-MS-AR
351         Miami-Fort Lauderdale-Pompano Beach, FL
352             Portland-Vancouver-Hillsboro, OR-WA
353     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
354     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
355     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
356                       Phoenix-Mesa-Chandler, AZ
357                                Raleigh-Cary, NC
358              San Diego-Chula Vista-Carlsbad, CA
359                   San Antonio-New Braunfels, TX
360                     San Juan-Bayamón-Caguas, PR
361           New York-Newark-Jersey City, NY-NJ-PA
362               Charlotte-Concord-Gastonia, NC-SC
363               Charlotte-Concord-Gastonia, NC-SC
364                              Urban Honolulu, HI
365                Las Vegas-Henderson-Paradise, NV
366                       Phoenix-Mesa-Chandler, AZ
367         Miami-Fort Lauderdale-Pompano Beach, FL
368            Houston-The Woodlands-Sugar Land, TX
369           New York-Newark-Jersey City, NY-NJ-PA
370                      Denver-Aurora-Lakewood, CO
371           New York-Newark-Jersey City, NY-NJ-PA
372           New York-Newark-Jersey City, NY-NJ-PA
373           New York-Newark-Jersey City, NY-NJ-PA
374                                   Asheville, NC
375                       Greensboro-High Point, NC
376                                 Springfield, IL
377    Washington-Arlington-Alexandria, DC-VA-MD-WV
378    Washington-Arlington-Alexandria, DC-VA-MD-WV
379                                   Knoxville, TN
380                       Cape Coral-Fort Myers, FL
381            Houston-The Woodlands-Sugar Land, TX
382              San Francisco-Oakland-Berkeley, CA
383  Nashville-Davidson--Murfreesboro--Franklin, TN
384              San Francisco-Oakland-Berkeley, CA
385              San Francisco-Oakland-Berkeley, CA
386             Tampa-St. Petersburg-Clearwater, FL
387                                Jacksonville, FL
388                     Seattle-Tacoma-Bellevue, WA
389                                   Rochester, NY
390                     Seattle-Tacoma-Bellevue, WA
391                                St. Louis, MO-IL
392                                    Syracuse, NY
393                Indianapolis-Carmel-Anderson, IN
394                       Phoenix-Mesa-Chandler, AZ
395        Little Rock-North Little Rock-Conway, AR
396           New York-Newark-Jersey City, NY-NJ-PA
397                                   Knoxville, TN
398                                  Pittsburgh, PA
399           Hartford-East Hartford-Middletown, CT
400                                            <NA>
401                   Orlando-Kissimmee-Sanford, FL
402                Austin-Round Rock-Georgetown, TX
403                Austin-Round Rock-Georgetown, TX
404                Austin-Round Rock-Georgetown, TX
405              Louisville/Jefferson County, KY-IN
406                Las Vegas-Henderson-Paradise, NV
407            Atlanta-Sandy Springs-Alpharetta, GA
408                                    Syracuse, NY
409                  Boston-Cambridge-Newton, MA-NH
410                                    Fargo, ND-MN
411           New York-Newark-Jersey City, NY-NJ-PA
412              Los Angeles-Long Beach-Anaheim, CA
413                               Oklahoma City, OK
414                                      Fresno, CA
415              Fayetteville-Springdale-Rogers, AR
416             Portland-Vancouver-Hillsboro, OR-WA
417                   Orlando-Kissimmee-Sanford, FL
418                            Cincinnati, OH-KY-IN
419                   Orlando-Kissimmee-Sanford, FL
420             Tampa-St. Petersburg-Clearwater, FL
421                            Cincinnati, OH-KY-IN
422                                     Wichita, KS
423                                      Monroe, LA
424    Washington-Arlington-Alexandria, DC-VA-MD-WV
425    Washington-Arlington-Alexandria, DC-VA-MD-WV
426                 Dallas-Fort Worth-Arlington, TX
427                 Dallas-Fort Worth-Arlington, TX
428                           Birmingham-Hoover, AL
429              San Jose-Sunnyvale-Santa Clara, CA
430                   Orlando-Kissimmee-Sanford, FL
431         Miami-Fort Lauderdale-Pompano Beach, FL
432                                    Richmond, VA
433                                       Tulsa, OK
434              Los Angeles-Long Beach-Anaheim, CA
435                       Phoenix-Mesa-Chandler, AZ
436         Miami-Fort Lauderdale-Pompano Beach, FL
437                            Colorado Springs, CO
438                      Spokane-Spokane Valley, WA
439                                 Garden City, KS
440                                   Lynchburg, VA
441              Chicago-Naperville-Elgin, IL-IN-WI
442                                      Bangor, ME
443                                Jacksonville, FL
444                                 Sioux Falls, SD
445              Louisville/Jefferson County, KY-IN
446                                    Syracuse, NY
447                Austin-Round Rock-Georgetown, TX
448            Riverside-San Bernardino-Ontario, CA
449                                   Lafayette, LA
450    Washington-Arlington-Alexandria, DC-VA-MD-WV
451                Austin-Round Rock-Georgetown, TX
452              San Jose-Sunnyvale-Santa Clara, CA
453                              Kansas City, MO-KS
454         Miami-Fort Lauderdale-Pompano Beach, FL
455  Nashville-Davidson--Murfreesboro--Franklin, TN
456                            Cleveland-Elyria, OH
457                              Kansas City, MO-KS
458                                  Fort Wayne, IN
459                        New Orleans-Metairie, LA
460                                    Columbia, SC
461                           Lexington-Fayette, KY
462              Chicago-Naperville-Elgin, IL-IN-WI
463              Chicago-Naperville-Elgin, IL-IN-WI
464              Chicago-Naperville-Elgin, IL-IN-WI
465                                        Reno, NV
466                       Grand Rapids-Kentwood, MI
467              Chicago-Naperville-Elgin, IL-IN-WI
468              Fayetteville-Springdale-Rogers, AR
469              Los Angeles-Long Beach-Anaheim, CA
470                                    Key West, FL
471              Louisville/Jefferson County, KY-IN
472            Houston-The Woodlands-Sugar Land, TX
473                  Augusta-Richmond County, GA-SC
474                                Raleigh-Cary, NC
475                        New Orleans-Metairie, LA
476                                 Albuquerque, NM
477            Atlanta-Sandy Springs-Alpharetta, GA
478                        Lansing-East Lansing, MI
479                      Denver-Aurora-Lakewood, CO
480                Las Vegas-Henderson-Paradise, NV
481                     Seattle-Tacoma-Bellevue, WA
482                     Atlantic City-Hammonton, NJ
483                     Atlantic City-Hammonton, NJ
484                     Atlantic City-Hammonton, NJ
485            Atlanta-Sandy Springs-Alpharetta, GA
486                Austin-Round Rock-Georgetown, TX
487            Atlanta-Sandy Springs-Alpharetta, GA
488              Los Angeles-Long Beach-Anaheim, CA
489            Atlanta-Sandy Springs-Alpharetta, GA
490            Atlanta-Sandy Springs-Alpharetta, GA
491           Hartford-East Hartford-Middletown, CT
492  Nashville-Davidson--Murfreesboro--Franklin, TN
493  Nashville-Davidson--Murfreesboro--Franklin, TN
494  Nashville-Davidson--Murfreesboro--Franklin, TN
495  Nashville-Davidson--Murfreesboro--Franklin, TN
496                  Boston-Cambridge-Newton, MA-NH
497                  Boston-Cambridge-Newton, MA-NH
498                  Boston-Cambridge-Newton, MA-NH
499                  Boston-Cambridge-Newton, MA-NH
500                  Boston-Cambridge-Newton, MA-NH
501              Los Angeles-Long Beach-Anaheim, CA
502                   Baltimore-Columbia-Towson, MD
503                      Denver-Aurora-Lakewood, CO
504                   Baltimore-Columbia-Towson, MD
505                   Baltimore-Columbia-Towson, MD
506                   Baltimore-Columbia-Towson, MD
507                   Baltimore-Columbia-Towson, MD
508                            Cleveland-Elyria, OH
509                   Orlando-Kissimmee-Sanford, FL
510                            Cleveland-Elyria, OH
511                            Cleveland-Elyria, OH
512            Houston-The Woodlands-Sugar Land, TX
513               Charlotte-Concord-Gastonia, NC-SC
514                                    Columbus, OH
515                   Baltimore-Columbia-Towson, MD
516                 Dallas-Fort Worth-Arlington, TX
517                 Dallas-Fort Worth-Arlington, TX
518                 Dallas-Fort Worth-Arlington, TX
519                 Dallas-Fort Worth-Arlington, TX
520              Chicago-Naperville-Elgin, IL-IN-WI
521                     Detroit-Warren-Dearborn, MI
522           New York-Newark-Jersey City, NY-NJ-PA
523           New York-Newark-Jersey City, NY-NJ-PA
524           New York-Newark-Jersey City, NY-NJ-PA
525           New York-Newark-Jersey City, NY-NJ-PA
526           New York-Newark-Jersey City, NY-NJ-PA
527         Miami-Fort Lauderdale-Pompano Beach, FL
528         Miami-Fort Lauderdale-Pompano Beach, FL
529         Miami-Fort Lauderdale-Pompano Beach, FL
530         Miami-Fort Lauderdale-Pompano Beach, FL
531         Miami-Fort Lauderdale-Pompano Beach, FL
532         Miami-Fort Lauderdale-Pompano Beach, FL
533         Miami-Fort Lauderdale-Pompano Beach, FL
534         Miami-Fort Lauderdale-Pompano Beach, FL
535            Houston-The Woodlands-Sugar Land, TX
536            Houston-The Woodlands-Sugar Land, TX
537                Indianapolis-Carmel-Anderson, IN
538                Indianapolis-Carmel-Anderson, IN
539                Indianapolis-Carmel-Anderson, IN
540                Las Vegas-Henderson-Paradise, NV
541                Las Vegas-Henderson-Paradise, NV
542            Atlanta-Sandy Springs-Alpharetta, GA
543                       Greensboro-High Point, NC
544                Las Vegas-Henderson-Paradise, NV
545                Las Vegas-Henderson-Paradise, NV
546                Las Vegas-Henderson-Paradise, NV
547              Los Angeles-Long Beach-Anaheim, CA
548              Los Angeles-Long Beach-Anaheim, CA
549             Tampa-St. Petersburg-Clearwater, FL
550              Los Angeles-Long Beach-Anaheim, CA
551              Los Angeles-Long Beach-Anaheim, CA
552                                  Pittsburgh, PA
553                                  Pittsburgh, PA
554                              Kansas City, MO-KS
555                              Kansas City, MO-KS
556                   Orlando-Kissimmee-Sanford, FL
557                   Orlando-Kissimmee-Sanford, FL
558                   Orlando-Kissimmee-Sanford, FL
559              San Francisco-Oakland-Berkeley, CA
560                   Orlando-Kissimmee-Sanford, FL
561                   Orlando-Kissimmee-Sanford, FL
562                          Milwaukee-Waukesha, WI
563     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
564                        New Orleans-Metairie, LA
565           New York-Newark-Jersey City, NY-NJ-PA
566              Chicago-Naperville-Elgin, IL-IN-WI
567              Chicago-Naperville-Elgin, IL-IN-WI
568              Chicago-Naperville-Elgin, IL-IN-WI
569              Chicago-Naperville-Elgin, IL-IN-WI
570                                  Pittsburgh, PA
571                                  Pittsburgh, PA
572                                  Pittsburgh, PA
573              San Diego-Chula Vista-Carlsbad, CA
574                     San Juan-Bayamón-Caguas, PR
575                                St. Louis, MO-IL
576            Houston-The Woodlands-Sugar Land, TX
577             Tampa-St. Petersburg-Clearwater, FL
578             Tampa-St. Petersburg-Clearwater, FL
579             Tampa-St. Petersburg-Clearwater, FL
580             Tampa-St. Petersburg-Clearwater, FL
581               North Port-Sarasota-Bradenton, FL
582              Louisville/Jefferson County, KY-IN
583          Crestview-Fort Walton Beach-Destin, FL
584                Las Vegas-Henderson-Paradise, NV
585                       Phoenix-Mesa-Chandler, AZ
586                     Albany-Schenectady-Troy, NY
587                Las Vegas-Henderson-Paradise, NV
588           New York-Newark-Jersey City, NY-NJ-PA
589         Minneapolis-St. Paul-Bloomington, MN-WI
590     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
591         Miami-Fort Lauderdale-Pompano Beach, FL
592  Nashville-Davidson--Murfreesboro--Franklin, TN
593           New York-Newark-Jersey City, NY-NJ-PA
594           New York-Newark-Jersey City, NY-NJ-PA
595             Tampa-St. Petersburg-Clearwater, FL
596          Crestview-Fort Walton Beach-Destin, FL
597                                St. Louis, MO-IL
598                   San Antonio-New Braunfels, TX
599                 Charleston-North Charleston, SC
600                   Baltimore-Columbia-Towson, MD
601               Charlotte-Concord-Gastonia, NC-SC
602               Charlotte-Concord-Gastonia, NC-SC
603               Charlotte-Concord-Gastonia, NC-SC
604               Charlotte-Concord-Gastonia, NC-SC
605               Charlotte-Concord-Gastonia, NC-SC
606         Miami-Fort Lauderdale-Pompano Beach, FL
607                               Oklahoma City, OK
608                   Orlando-Kissimmee-Sanford, FL
609                Indianapolis-Carmel-Anderson, IN
610                               Memphis, TN-MS-AR
611                       Phoenix-Mesa-Chandler, AZ
612                                       Akron, OH
613                            Cleveland-Elyria, OH
614                            Dayton-Kettering, OH
615                Austin-Round Rock-Georgetown, TX
616    Washington-Arlington-Alexandria, DC-VA-MD-WV
617    Washington-Arlington-Alexandria, DC-VA-MD-WV
618    Washington-Arlington-Alexandria, DC-VA-MD-WV
619              San Francisco-Oakland-Berkeley, CA
620                 Dallas-Fort Worth-Arlington, TX
621    Washington-Arlington-Alexandria, DC-VA-MD-WV
622           New York-Newark-Jersey City, NY-NJ-PA
623                       Providence-Warwick, RI-MA
624            Atlanta-Sandy Springs-Alpharetta, GA
625                     Detroit-Warren-Dearborn, MI
626                     Portland-South Portland, ME
627                                    Savannah, GA
628        Little Rock-North Little Rock-Conway, AR
629               Palm Bay-Melbourne-Titusville, FL
630                     Detroit-Warren-Dearborn, MI
631                              Kansas City, MO-KS
632              Chicago-Naperville-Elgin, IL-IN-WI
633                          Milwaukee-Waukesha, WI
634                                       Flint, MI
635                            Dayton-Kettering, OH
636                  Boston-Cambridge-Newton, MA-NH
637                                  Pittsburgh, PA
638                 Dallas-Fort Worth-Arlington, TX
639                     Omaha-Council Bluffs, NE-IA
640           New York-Newark-Jersey City, NY-NJ-PA
641         Miami-Fort Lauderdale-Pompano Beach, FL
642            Atlanta-Sandy Springs-Alpharetta, GA
643                       Cape Coral-Fort Myers, FL
644                         Buffalo-Cheektowaga, NY
645                                  Pittsburgh, PA
646               Allentown-Bethlehem-Easton, PA-NJ
647      Virginia Beach-Norfolk-Newport News, VA-NC
648      Virginia Beach-Norfolk-Newport News, VA-NC
649                                Jacksonville, FL
650                                Jacksonville, FL
651                           Manchester-Nashua, NH
652                  Boston-Cambridge-Newton, MA-NH
653                                Jacksonville, FL
654                                   Asheville, NC
655                                Raleigh-Cary, NC
656                                Fayetteville, NC
657                                Jacksonville, NC
658                         Harrisburg-Carlisle, PA
659         Miami-Fort Lauderdale-Pompano Beach, FL
660                 Charleston-North Charleston, SC
661            Houston-The Woodlands-Sugar Land, TX
662                  Des Moines-West Des Moines, IA
663                                 Spartanburg, SC
664                     Portland-South Portland, ME
665                        New Orleans-Metairie, LA
666                                     Jackson, MS
667                        New Orleans-Metairie, LA
668                           Lexington-Fayette, KY
669     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
670     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
671                           Birmingham-Hoover, AL
672     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
673     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
674     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
675     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
676                      Denver-Aurora-Lakewood, CO
677              San Diego-Chula Vista-Carlsbad, CA
678                     Seattle-Tacoma-Bellevue, WA
679                Indianapolis-Carmel-Anderson, IN
680           New York-Newark-Jersey City, NY-NJ-PA
681              Chicago-Naperville-Elgin, IL-IN-WI
682           Hartford-East Hartford-Middletown, CT
683                                   Knoxville, TN
684                       Providence-Warwick, RI-MA
685                                Raleigh-Cary, NC
686                                St. Louis, MO-IL
687                                    Syracuse, NY
688              Louisville/Jefferson County, KY-IN
689                                 Albuquerque, NM
690            Houston-The Woodlands-Sugar Land, TX
691                                     Lincoln, NE
692                     Albany-Schenectady-Troy, NY
693            Riverside-San Bernardino-Ontario, CA
694                            Glenwood Springs, CO
695                              Urban Honolulu, HI
696                     Seattle-Tacoma-Bellevue, WA
697                                 Albuquerque, NM
698  Nashville-Davidson--Murfreesboro--Franklin, TN
699                              Kansas City, MO-KS
700                                            <NA>
701                                     Medford, OR
702            Riverside-San Bernardino-Ontario, CA
703                   Santa Maria-Santa Barbara, CA
704              Los Angeles-Long Beach-Anaheim, CA
705                                  Boise City, ID
706                                  Boise City, ID
707                                  Boise City, ID
708            Atlanta-Sandy Springs-Alpharetta, GA
709                                  Boise City, ID
710                                  Boise City, ID
711                                        Hilo, HI
712              Los Angeles-Long Beach-Anaheim, CA
713                                  Boise City, ID
714                         Santa Rosa-Petaluma, CA
715              Los Angeles-Long Beach-Anaheim, CA
716              Los Angeles-Long Beach-Anaheim, CA
717                     Kahului-Wailuku-Lahaina, HI
718                                     Bozeman, MT
719                   Baltimore-Columbia-Towson, MD
720                                     Bozeman, MT
721                               Oklahoma City, OK
722                              Killeen-Temple, TX
723                  Boston-Cambridge-Newton, MA-NH
724           New York-Newark-Jersey City, NY-NJ-PA
725                            Colorado Springs, CO
726              Los Angeles-Long Beach-Anaheim, CA
727                 Dallas-Fort Worth-Arlington, TX
728                      Denver-Aurora-Lakewood, CO
729                      Denver-Aurora-Lakewood, CO
730                      Denver-Aurora-Lakewood, CO
731                      Denver-Aurora-Lakewood, CO
732                      Denver-Aurora-Lakewood, CO
733                      Denver-Aurora-Lakewood, CO
734                                      Tucson, AZ
735                              Salt Lake City, UT
736                                  Pittsburgh, PA
737                  Des Moines-West Des Moines, IA
738                          Kennewick-Richland, WA
739                         Harrisburg-Carlisle, PA
740                          Eugene-Springfield, OR
741                      Denver-Aurora-Lakewood, CO
742                                      Fresno, CA
743                                      Fresno, CA
744                                      Fresno, CA
745                                      Fresno, CA
746                                        Bend, OR
747              Chicago-Naperville-Elgin, IL-IN-WI
748                                   Kalispell, MT
749              Chicago-Naperville-Elgin, IL-IN-WI
750         Miami-Fort Lauderdale-Pompano Beach, FL
751               North Port-Sarasota-Bradenton, FL
752                                Jacksonville, FL
753                       Phoenix-Mesa-Chandler, AZ
754                      Spokane-Spokane Valley, WA
755                      Spokane-Spokane Valley, WA
756                  Boston-Cambridge-Newton, MA-NH
757  Nashville-Davidson--Murfreesboro--Franklin, TN
758         Miami-Fort Lauderdale-Pompano Beach, FL
759         Miami-Fort Lauderdale-Pompano Beach, FL
760              San Jose-Sunnyvale-Santa Clara, CA
761               Allentown-Bethlehem-Easton, PA-NJ
762                           Steamboat Springs, CO
763                              Salt Lake City, UT
764                       La Crosse-Onalaska, WI-MN
765            Houston-The Woodlands-Sugar Land, TX
766            Houston-The Woodlands-Sugar Land, TX
767                                   Pocatello, ID
768                            Cleveland-Elyria, OH
769                                    Fargo, ND-MN
770    Washington-Arlington-Alexandria, DC-VA-MD-WV
771                                  Pittsburgh, PA
772              Chicago-Naperville-Elgin, IL-IN-WI
773              Los Angeles-Long Beach-Anaheim, CA
774              Los Angeles-Long Beach-Anaheim, CA
775              Los Angeles-Long Beach-Anaheim, CA
776              Los Angeles-Long Beach-Anaheim, CA
777              Los Angeles-Long Beach-Anaheim, CA
778              Los Angeles-Long Beach-Anaheim, CA
779              Los Angeles-Long Beach-Anaheim, CA
780              Los Angeles-Long Beach-Anaheim, CA
781                                 Baton Rouge, LA
782              San Francisco-Oakland-Berkeley, CA
783                Indianapolis-Carmel-Anderson, IN
784                           Kalamazoo-Portage, MI
785                   San Antonio-New Braunfels, TX
786                                     Madison, WI
787         Minneapolis-St. Paul-Bloomington, MN-WI
788              San Diego-Chula Vista-Carlsbad, CA
789                          Milwaukee-Waukesha, WI
790                Las Vegas-Henderson-Paradise, NV
791                          Eugene-Springfield, OR
792                                     Salinas, CA
793                                     Madison, WI
794         Minneapolis-St. Paul-Bloomington, MN-WI
795         Minneapolis-St. Paul-Bloomington, MN-WI
796                                 Great Falls, MT
797                                   Green Bay, WI
798              San Francisco-Oakland-Berkeley, CA
799                                     Roswell, NM
800                     Kahului-Wailuku-Lahaina, HI
801                      Scranton--Wilkes-Barre, PA
802           New York-Newark-Jersey City, NY-NJ-PA
803                                Jacksonville, FL
804                     Omaha-Council Bluffs, NE-IA
805                       Providence-Warwick, RI-MA
806                            Sault Ste. Marie, MI
807            Riverside-San Bernardino-Ontario, CA
808                   San Antonio-New Braunfels, TX
809            Riverside-San Bernardino-Ontario, CA
810         Miami-Fort Lauderdale-Pompano Beach, FL
811              Chicago-Naperville-Elgin, IL-IN-WI
812              Chicago-Naperville-Elgin, IL-IN-WI
813              Chicago-Naperville-Elgin, IL-IN-WI
814              Chicago-Naperville-Elgin, IL-IN-WI
815                      Denver-Aurora-Lakewood, CO
816             Portland-Vancouver-Hillsboro, OR-WA
817             Portland-Vancouver-Hillsboro, OR-WA
818             Portland-Vancouver-Hillsboro, OR-WA
819             Portland-Vancouver-Hillsboro, OR-WA
820             Portland-Vancouver-Hillsboro, OR-WA
821             Portland-Vancouver-Hillsboro, OR-WA
822             Portland-Vancouver-Hillsboro, OR-WA
823             Portland-Vancouver-Hillsboro, OR-WA
824                              Kansas City, MO-KS
825                                        Hilo, HI
826                       Phoenix-Mesa-Chandler, AZ
827                       Phoenix-Mesa-Chandler, AZ
828                                  Pittsburgh, PA
829                          Milwaukee-Waukesha, WI
830                Las Vegas-Henderson-Paradise, NV
831                                        Bend, OR
832            Riverside-San Bernardino-Ontario, CA
833                                  Boise City, ID
834                                     Madison, WI
835                                  Rapid City, SD
836                               Memphis, TN-MS-AR
837            Riverside-San Bernardino-Ontario, CA
838                                      Helena, MT
839                                    Appleton, WI
840               Charlotte-Concord-Gastonia, NC-SC
841                                    Richmond, VA
842                                        Reno, NV
843                 Sacramento-Roseville-Folsom, CA
844              San Diego-Chula Vista-Carlsbad, CA
845              San Diego-Chula Vista-Carlsbad, CA
846              San Diego-Chula Vista-Carlsbad, CA
847              San Diego-Chula Vista-Carlsbad, CA
848              San Diego-Chula Vista-Carlsbad, CA
849              San Diego-Chula Vista-Carlsbad, CA
850              San Diego-Chula Vista-Carlsbad, CA
851                                     Salinas, CA
852                    Prescott Valley-Prescott, AZ
853                 San Luis Obispo-Paso Robles, CA
854                Las Vegas-Henderson-Paradise, NV
855                   Santa Maria-Santa Barbara, CA
856                                St. Louis, MO-IL
857                 San Luis Obispo-Paso Robles, CA
858                Las Vegas-Henderson-Paradise, NV
859         Miami-Fort Lauderdale-Pompano Beach, FL
860                     Seattle-Tacoma-Bellevue, WA
861                     Seattle-Tacoma-Bellevue, WA
862                     Seattle-Tacoma-Bellevue, WA
863                     Seattle-Tacoma-Bellevue, WA
864              San Francisco-Oakland-Berkeley, CA
865              San Francisco-Oakland-Berkeley, CA
866              San Francisco-Oakland-Berkeley, CA
867              San Francisco-Oakland-Berkeley, CA
868              San Francisco-Oakland-Berkeley, CA
869              San Francisco-Oakland-Berkeley, CA
870              San Francisco-Oakland-Berkeley, CA
871              San Francisco-Oakland-Berkeley, CA
872              San Jose-Sunnyvale-Santa Clara, CA
873              San Jose-Sunnyvale-Santa Clara, CA
874              San Jose-Sunnyvale-Santa Clara, CA
875              San Jose-Sunnyvale-Santa Clara, CA
876              San Jose-Sunnyvale-Santa Clara, CA
877                     Detroit-Warren-Dearborn, MI
878                                      Tucson, AZ
879                                        Hilo, HI
880                              Salt Lake City, UT
881                                     Durango, CO
882                   Orlando-Kissimmee-Sanford, FL
883                                 Bakersfield, CA
884                 San Luis Obispo-Paso Robles, CA
885                              Urban Honolulu, HI
886                 Sacramento-Roseville-Folsom, CA
887                 Sacramento-Roseville-Folsom, CA
888                 Sacramento-Roseville-Folsom, CA
889                              Urban Honolulu, HI
890                                        Bend, OR
891                     Seattle-Tacoma-Bellevue, WA
892              Los Angeles-Long Beach-Anaheim, CA
893                           Birmingham-Hoover, AL
894                     South Bend-Mishawaka, IN-MI
895                 Dallas-Fort Worth-Arlington, TX
896                         Santa Rosa-Petaluma, CA
897                         Santa Rosa-Petaluma, CA
898                         Santa Rosa-Petaluma, CA
899                     Omaha-Council Bluffs, NE-IA
900                     Omaha-Council Bluffs, NE-IA
901                                   Anchorage, AK
902                                      Tucson, AZ
903    Washington-Arlington-Alexandria, DC-VA-MD-WV
904              Los Angeles-Long Beach-Anaheim, CA
905                                 Albuquerque, NM
906                                    Billings, MT
907              Chicago-Naperville-Elgin, IL-IN-WI
908                                  Boise City, ID
909                                  Boise City, ID
910                                  Boise City, ID
911                                     Bozeman, MT
912                          Kennewick-Richland, WA
913                     Detroit-Warren-Dearborn, MI
914           New York-Newark-Jersey City, NY-NJ-PA
915                        New Orleans-Metairie, LA
916                                    Missoula, MT
917                                   Kalispell, MT
918                      Spokane-Spokane Valley, WA
919           New York-Newark-Jersey City, NY-NJ-PA
920                   Santa Maria-Santa Barbara, CA
921           New York-Newark-Jersey City, NY-NJ-PA
922                      Spokane-Spokane Valley, WA
923                                     Medford, OR
924                                      Helena, MT
925                                 Idaho Falls, ID
926              Los Angeles-Long Beach-Anaheim, CA
927                                     Medford, OR
928                                     Medford, OR
929              San Francisco-Oakland-Berkeley, CA
930                     Seattle-Tacoma-Bellevue, WA
931                     Seattle-Tacoma-Bellevue, WA
932                     Seattle-Tacoma-Bellevue, WA
933                     Seattle-Tacoma-Bellevue, WA
934             Portland-Vancouver-Hillsboro, OR-WA
935             Portland-Vancouver-Hillsboro, OR-WA
936            Riverside-San Bernardino-Ontario, CA
937                                     El Paso, TX
938                                     Pullman, WA
939                                        Bend, OR
940              San Diego-Chula Vista-Carlsbad, CA
941                   Santa Maria-Santa Barbara, CA
942                     Seattle-Tacoma-Bellevue, WA
943                     Seattle-Tacoma-Bellevue, WA
944                     Seattle-Tacoma-Bellevue, WA
945                     Seattle-Tacoma-Bellevue, WA
946                     Seattle-Tacoma-Bellevue, WA
947                     Seattle-Tacoma-Bellevue, WA
948                     Seattle-Tacoma-Bellevue, WA
949                     Seattle-Tacoma-Bellevue, WA
950                     Seattle-Tacoma-Bellevue, WA
951                     Seattle-Tacoma-Bellevue, WA
952                     Seattle-Tacoma-Bellevue, WA
953                     Seattle-Tacoma-Bellevue, WA
954                     Seattle-Tacoma-Bellevue, WA
955                     Seattle-Tacoma-Bellevue, WA
956                     Seattle-Tacoma-Bellevue, WA
957              San Francisco-Oakland-Berkeley, CA
958              San Jose-Sunnyvale-Santa Clara, CA
959              Los Angeles-Long Beach-Anaheim, CA
960                         Santa Rosa-Petaluma, CA
961                      Denver-Aurora-Lakewood, CO
962                Austin-Round Rock-Georgetown, TX
963           Hartford-East Hartford-Middletown, CT
964     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
965                                   Kalispell, MT
966                                    Missoula, MT
967            Atlanta-Sandy Springs-Alpharetta, GA
968                                            <NA>
969                                    Appleton, WI
970                      Denver-Aurora-Lakewood, CO
971                Austin-Round Rock-Georgetown, TX
972                     Omaha-Council Bluffs, NE-IA
973                Austin-Round Rock-Georgetown, TX
974                                    Meridian, MS
975                     Seattle-Tacoma-Bellevue, WA
976              Los Angeles-Long Beach-Anaheim, CA
977           New York-Newark-Jersey City, NY-NJ-PA
978              Los Angeles-Long Beach-Anaheim, CA
979                Austin-Round Rock-Georgetown, TX
980           Hartford-East Hartford-Middletown, CT
981              Los Angeles-Long Beach-Anaheim, CA
982                                Raleigh-Cary, NC
983                                    Savannah, GA
984                       Greensboro-High Point, NC
985                           Birmingham-Hoover, AL
986                            Cincinnati, OH-KY-IN
987            Atlanta-Sandy Springs-Alpharetta, GA
988                                  Boise City, ID
989                                  Jackson, WY-ID
990                                        Bend, OR
991                  Boston-Cambridge-Newton, MA-NH
992                      Denver-Aurora-Lakewood, CO
993                   Orlando-Kissimmee-Sanford, FL
994                        New Orleans-Metairie, LA
995             Tampa-St. Petersburg-Clearwater, FL
996                 Hilton Head Island-Bluffton, SC
997                  Boston-Cambridge-Newton, MA-NH
998                                       Kapaa, HI
999                  Des Moines-West Des Moines, IA
1000                                      Kapaa, HI
1001                        Buffalo-Cheektowaga, NY
1002          New York-Newark-Jersey City, NY-NJ-PA
1003                             Urban Honolulu, HI
1004                             Urban Honolulu, HI
1005                    Kahului-Wailuku-Lahaina, HI
1006               Las Vegas-Henderson-Paradise, NV
1007                       New Orleans-Metairie, LA
1008                                 Pittsburgh, PA
1009                                    Saginaw, MI
1010                    Portland-South Portland, ME
1011                                    Lincoln, NE
1012                           Cleveland-Elyria, OH
1013                           Cleveland-Elyria, OH
1014                      Cape Coral-Fort Myers, FL
1015                                       Reno, NV
1016                           Colorado Springs, CO
1017                                     Salina, KS
1018          New York-Newark-Jersey City, NY-NJ-PA
1019        Miami-Fort Lauderdale-Pompano Beach, FL
1020                 Boston-Cambridge-Newton, MA-NH
1021         Crestview-Fort Walton Beach-Destin, FL
1022                     Denver-Aurora-Lakewood, CO
1023                  Santa Maria-Santa Barbara, CA
1024          New York-Newark-Jersey City, NY-NJ-PA
1025                     Denver-Aurora-Lakewood, CO
1026   Washington-Arlington-Alexandria, DC-VA-MD-WV
1027     Virginia Beach-Norfolk-Newport News, VA-NC
1028                                  Duluth, MN-WI
1029                     Denver-Aurora-Lakewood, CO
1030                     Denver-Aurora-Lakewood, CO
1031                     Denver-Aurora-Lakewood, CO
1032                     Denver-Aurora-Lakewood, CO
1033                Dallas-Fort Worth-Arlington, TX
1034                                     Joplin, MO
1035           Houston-The Woodlands-Sugar Land, TX
1036                     Denver-Aurora-Lakewood, CO
1037                      Cape Coral-Fort Myers, FL
1038          New York-Newark-Jersey City, NY-NJ-PA
1039                           Colorado Springs, CO
1040                Sacramento-Roseville-Folsom, CA
1041 Nashville-Davidson--Murfreesboro--Franklin, TN
1042                           Colorado Springs, CO
1043                              Oklahoma City, OK
1044          New York-Newark-Jersey City, NY-NJ-PA
1045        Miami-Fort Lauderdale-Pompano Beach, FL
1046          New York-Newark-Jersey City, NY-NJ-PA
1047                             Salt Lake City, UT
1048                                 Jackson, WY-ID
1049          New York-Newark-Jersey City, NY-NJ-PA
1050          New York-Newark-Jersey City, NY-NJ-PA
1051          New York-Newark-Jersey City, NY-NJ-PA
1052          New York-Newark-Jersey City, NY-NJ-PA
1053          New York-Newark-Jersey City, NY-NJ-PA
1054          New York-Newark-Jersey City, NY-NJ-PA
1055          New York-Newark-Jersey City, NY-NJ-PA
1056          New York-Newark-Jersey City, NY-NJ-PA
1057          New York-Newark-Jersey City, NY-NJ-PA
1058          New York-Newark-Jersey City, NY-NJ-PA
1059          New York-Newark-Jersey City, NY-NJ-PA
1060                                Sioux Falls, SD
1061             San Francisco-Oakland-Berkeley, CA
1062                                           <NA>
1063        Miami-Fort Lauderdale-Pompano Beach, FL
1064                             Killeen-Temple, TX
1065        Miami-Fort Lauderdale-Pompano Beach, FL
1066            Tampa-St. Petersburg-Clearwater, FL
1067                  San Antonio-New Braunfels, TX
1068                                Spartanburg, SC
1069                                 Pittsburgh, PA
1070             Louisville/Jefferson County, KY-IN
1071              North Port-Sarasota-Bradenton, FL
1072                                Panama City, FL
1073                       New Orleans-Metairie, LA
1074             Louisville/Jefferson County, KY-IN
1075                Sacramento-Roseville-Folsom, CA
1076                  Baltimore-Columbia-Towson, MD
1077                  Orlando-Kissimmee-Sanford, FL
1078   Washington-Arlington-Alexandria, DC-VA-MD-WV
1079   Washington-Arlington-Alexandria, DC-VA-MD-WV
1080   Washington-Arlington-Alexandria, DC-VA-MD-WV
1081   Washington-Arlington-Alexandria, DC-VA-MD-WV
1082   Washington-Arlington-Alexandria, DC-VA-MD-WV
1083   Washington-Arlington-Alexandria, DC-VA-MD-WV
1084   Washington-Arlington-Alexandria, DC-VA-MD-WV
1085   Washington-Arlington-Alexandria, DC-VA-MD-WV
1086                         Kennewick-Richland, WA
1087   Washington-Arlington-Alexandria, DC-VA-MD-WV
1088                                Albuquerque, NM
1089           Houston-The Woodlands-Sugar Land, TX
1090           Houston-The Woodlands-Sugar Land, TX
1091           Houston-The Woodlands-Sugar Land, TX
1092           Houston-The Woodlands-Sugar Land, TX
1093                                 Paducah, KY-IL
1094           Houston-The Woodlands-Sugar Land, TX
1095           Houston-The Woodlands-Sugar Land, TX
1096           Houston-The Woodlands-Sugar Land, TX
1097                Charleston-North Charleston, SC
1098                              Oklahoma City, OK
1099   Washington-Arlington-Alexandria, DC-VA-MD-WV
1100                    Portland-South Portland, ME
1101                                  Rochester, NY
1102                               Jacksonville, FL
1103                  San Antonio-New Braunfels, TX
1104          New York-Newark-Jersey City, NY-NJ-PA
1105                  Baltimore-Columbia-Towson, MD
1106                                   Columbus, OH
1107                                   Richmond, VA
1108               Las Vegas-Henderson-Paradise, NV
1109                                     Bangor, ME
1110                          Manchester-Nashua, NH
1111 Nashville-Davidson--Murfreesboro--Franklin, TN
1112                         Milwaukee-Waukesha, WI
1113                           Cleveland-Elyria, OH
1114               Indianapolis-Carmel-Anderson, IN
1115                  Orlando-Kissimmee-Sanford, FL
1116            Tampa-St. Petersburg-Clearwater, FL
1117                                   Columbus, OH
1118                           Cincinnati, OH-KY-IN
1119                                    Madison, WI
1120                           Cincinnati, OH-KY-IN
1121                    Detroit-Warren-Dearborn, MI
1122                           Cincinnati, OH-KY-IN
1123                      Cape Coral-Fort Myers, FL
1124             Los Angeles-Long Beach-Anaheim, CA
1125             Los Angeles-Long Beach-Anaheim, CA
1126                    Detroit-Warren-Dearborn, MI
1127             San Jose-Sunnyvale-Santa Clara, CA
1128            Portland-Vancouver-Hillsboro, OR-WA
1129                     Denver-Aurora-Lakewood, CO
1130                Sacramento-Roseville-Folsom, CA
1131                               Raleigh-Cary, NC
1132                  Baltimore-Columbia-Towson, MD
1133                    Kahului-Wailuku-Lahaina, HI
1134                      Cape Coral-Fort Myers, FL
1135     Virginia Beach-Norfolk-Newport News, VA-NC
1136                      Phoenix-Mesa-Chandler, AZ
1137             San Diego-Chula Vista-Carlsbad, CA
1138                                      Flint, MI
1139        Miami-Fort Lauderdale-Pompano Beach, FL
1140                                  Lafayette, LA
1141   Washington-Arlington-Alexandria, DC-VA-MD-WV
1142                          Birmingham-Hoover, AL
1143                                   Billings, MT
1144                                       Hilo, HI
1145                                   Syracuse, NY
1146                             Salt Lake City, UT
1147                               St. Louis, MO-IL
1148          Hartford-East Hartford-Middletown, CT
1149               Indianapolis-Carmel-Anderson, IN
1150             Chicago-Naperville-Elgin, IL-IN-WI
1151             Chicago-Naperville-Elgin, IL-IN-WI
1152             Chicago-Naperville-Elgin, IL-IN-WI
1153             Chicago-Naperville-Elgin, IL-IN-WI
1154           Riverside-San Bernardino-Ontario, CA
1155             Chicago-Naperville-Elgin, IL-IN-WI
1156             Chicago-Naperville-Elgin, IL-IN-WI
1157                     Denver-Aurora-Lakewood, CO
1158             Chicago-Naperville-Elgin, IL-IN-WI
1159             Chicago-Naperville-Elgin, IL-IN-WI
1160             Chicago-Naperville-Elgin, IL-IN-WI
1161             Chicago-Naperville-Elgin, IL-IN-WI
1162             Chicago-Naperville-Elgin, IL-IN-WI
1163             Chicago-Naperville-Elgin, IL-IN-WI
1164                                      Kapaa, HI
1165                              Memphis, TN-MS-AR
1166                                   Columbus, OH
1167                               Cedar Rapids, IA
1168            Portland-Vancouver-Hillsboro, OR-WA
1169   Washington-Arlington-Alexandria, DC-VA-MD-WV
1170                      Phoenix-Mesa-Chandler, AZ
1171                        Buffalo-Cheektowaga, NY
1172                             Chattanooga, TN-GA
1173                                    Bozeman, MT
1174             Louisville/Jefferson County, KY-IN
1175 Nashville-Davidson--Murfreesboro--Franklin, TN
1176                                     Peoria, IL
1177                                    Medford, OR
1178                  San Antonio-New Braunfels, TX
1179                Dallas-Fort Worth-Arlington, TX
1180           Riverside-San Bernardino-Ontario, CA
1181            Davenport-Moline-Rock Island, IA-IL
1182                Dallas-Fort Worth-Arlington, TX
1183                                     Ithaca, NY
1184                Burlington-South Burlington, VT
1185                               Cedar Rapids, IA
1186                           Dayton-Kettering, OH
1187             San Francisco-Oakland-Berkeley, CA
1188          New York-Newark-Jersey City, NY-NJ-PA
1189                      Providence-Warwick, RI-MA
1190             San Francisco-Oakland-Berkeley, CA
1191                    Portland-South Portland, ME
1192    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1193                               St. Louis, MO-IL
1194             San Francisco-Oakland-Berkeley, CA
1195                      Providence-Warwick, RI-MA
1196                                  Rochester, NY
1197            Davenport-Moline-Rock Island, IA-IL
1198   Washington-Arlington-Alexandria, DC-VA-MD-WV
1199          Hartford-East Hartford-Middletown, CT
1200        Miami-Fort Lauderdale-Pompano Beach, FL
1201            Tampa-St. Petersburg-Clearwater, FL
1202                           Cincinnati, OH-KY-IN
1203           Riverside-San Bernardino-Ontario, CA
1204                                     Tucson, AZ
1205                                Panama City, FL
1206                                Albuquerque, NM
1207                                      Kapaa, HI
1208                                Albuquerque, NM
1209                                Albuquerque, NM
1210                                Albuquerque, NM
1211                    Albany-Schenectady-Troy, NY
1212                  Orlando-Kissimmee-Sanford, FL
1213        Miami-Fort Lauderdale-Pompano Beach, FL
1214                      Cape Coral-Fort Myers, FL
1215                      Cape Coral-Fort Myers, FL
1216                Sacramento-Roseville-Folsom, CA
1217                    Albany-Schenectady-Troy, NY
1218                Sacramento-Roseville-Folsom, CA
1219                    Albany-Schenectady-Troy, NY
1220                                   Amarillo, TX
1221                                   Amarillo, TX
1222           Atlanta-Sandy Springs-Alpharetta, GA
1223           Atlanta-Sandy Springs-Alpharetta, GA
1224                                    El Paso, TX
1225               Las Vegas-Henderson-Paradise, NV
1226             Los Angeles-Long Beach-Anaheim, CA
1227                      Phoenix-Mesa-Chandler, AZ
1228           Atlanta-Sandy Springs-Alpharetta, GA
1229           Atlanta-Sandy Springs-Alpharetta, GA
1230           Atlanta-Sandy Springs-Alpharetta, GA
1231           Atlanta-Sandy Springs-Alpharetta, GA
1232           Atlanta-Sandy Springs-Alpharetta, GA
1233             Los Angeles-Long Beach-Anaheim, CA
1234             San Francisco-Oakland-Berkeley, CA
1235                             Salt Lake City, UT
1236           Atlanta-Sandy Springs-Alpharetta, GA
1237           Atlanta-Sandy Springs-Alpharetta, GA
1238           Atlanta-Sandy Springs-Alpharetta, GA
1239           Atlanta-Sandy Springs-Alpharetta, GA
1240           Atlanta-Sandy Springs-Alpharetta, GA
1241           Atlanta-Sandy Springs-Alpharetta, GA
1242                                      Tulsa, OK
1243           Atlanta-Sandy Springs-Alpharetta, GA
1244           Atlanta-Sandy Springs-Alpharetta, GA
1245                    Kahului-Wailuku-Lahaina, HI
1246           Atlanta-Sandy Springs-Alpharetta, GA
1247           Atlanta-Sandy Springs-Alpharetta, GA
1248           Atlanta-Sandy Springs-Alpharetta, GA
1249           Atlanta-Sandy Springs-Alpharetta, GA
1250           Atlanta-Sandy Springs-Alpharetta, GA
1251                             Urban Honolulu, HI
1252           Atlanta-Sandy Springs-Alpharetta, GA
1253           Atlanta-Sandy Springs-Alpharetta, GA
1254           Atlanta-Sandy Springs-Alpharetta, GA
1255           Atlanta-Sandy Springs-Alpharetta, GA
1256                 Boston-Cambridge-Newton, MA-NH
1257          New York-Newark-Jersey City, NY-NJ-PA
1258                    Omaha-Council Bluffs, NE-IA
1259                                   Savannah, GA
1260               Austin-Round Rock-Georgetown, TX
1261        Miami-Fort Lauderdale-Pompano Beach, FL
1262                    Omaha-Council Bluffs, NE-IA
1263             San Francisco-Oakland-Berkeley, CA
1264                    Seattle-Tacoma-Bellevue, WA
1265           Riverside-San Bernardino-Ontario, CA
1266             San Diego-Chula Vista-Carlsbad, CA
1267               Austin-Round Rock-Georgetown, TX
1268               Austin-Round Rock-Georgetown, TX
1269               Austin-Round Rock-Georgetown, TX
1270               Austin-Round Rock-Georgetown, TX
1271               Austin-Round Rock-Georgetown, TX
1272               Austin-Round Rock-Georgetown, TX
1273               Austin-Round Rock-Georgetown, TX
1274               Austin-Round Rock-Georgetown, TX
1275               Austin-Round Rock-Georgetown, TX
1276               Austin-Round Rock-Georgetown, TX
1277               Austin-Round Rock-Georgetown, TX
1278               Austin-Round Rock-Georgetown, TX
1279               Austin-Round Rock-Georgetown, TX
1280               Austin-Round Rock-Georgetown, TX
1281               Austin-Round Rock-Georgetown, TX
1282               Austin-Round Rock-Georgetown, TX
1283               Austin-Round Rock-Georgetown, TX
1284               Austin-Round Rock-Georgetown, TX
1285                      Providence-Warwick, RI-MA
1286               Las Vegas-Henderson-Paradise, NV
1287           Riverside-San Bernardino-Ontario, CA
1288          Hartford-East Hartford-Middletown, CT
1289          Hartford-East Hartford-Middletown, CT
1290                          Birmingham-Hoover, AL
1291                          Birmingham-Hoover, AL
1292                          Birmingham-Hoover, AL
1293                          Birmingham-Hoover, AL
1294                          Birmingham-Hoover, AL
1295                          Birmingham-Hoover, AL
1296                                 Bellingham, WA
1297 Nashville-Davidson--Murfreesboro--Franklin, TN
1298 Nashville-Davidson--Murfreesboro--Franklin, TN
1299 Nashville-Davidson--Murfreesboro--Franklin, TN
1300                                   Montrose, CO
1301 Nashville-Davidson--Murfreesboro--Franklin, TN
1302 Nashville-Davidson--Murfreesboro--Franklin, TN
1303 Nashville-Davidson--Murfreesboro--Franklin, TN
1304 Nashville-Davidson--Murfreesboro--Franklin, TN
1305 Nashville-Davidson--Murfreesboro--Franklin, TN
1306                                       Reno, NV
1307 Nashville-Davidson--Murfreesboro--Franklin, TN
1308             Los Angeles-Long Beach-Anaheim, CA
1309 Nashville-Davidson--Murfreesboro--Franklin, TN
1310 Nashville-Davidson--Murfreesboro--Franklin, TN
1311 Nashville-Davidson--Murfreesboro--Franklin, TN
1312 Nashville-Davidson--Murfreesboro--Franklin, TN
1313 Nashville-Davidson--Murfreesboro--Franklin, TN
1314 Nashville-Davidson--Murfreesboro--Franklin, TN
1315 Nashville-Davidson--Murfreesboro--Franklin, TN
1316 Nashville-Davidson--Murfreesboro--Franklin, TN
1317 Nashville-Davidson--Murfreesboro--Franklin, TN
1318 Nashville-Davidson--Murfreesboro--Franklin, TN
1319 Nashville-Davidson--Murfreesboro--Franklin, TN
1320 Nashville-Davidson--Murfreesboro--Franklin, TN
1321 Nashville-Davidson--Murfreesboro--Franklin, TN
1322 Nashville-Davidson--Murfreesboro--Franklin, TN
1323 Nashville-Davidson--Murfreesboro--Franklin, TN
1324 Nashville-Davidson--Murfreesboro--Franklin, TN
1325                             Urban Honolulu, HI
1326                    Kahului-Wailuku-Lahaina, HI
1327 Nashville-Davidson--Murfreesboro--Franklin, TN
1328 Nashville-Davidson--Murfreesboro--Franklin, TN
1329 Nashville-Davidson--Murfreesboro--Franklin, TN
1330 Nashville-Davidson--Murfreesboro--Franklin, TN
1331 Nashville-Davidson--Murfreesboro--Franklin, TN
1332 Nashville-Davidson--Murfreesboro--Franklin, TN
1333                        Buffalo-Cheektowaga, NY
1334        Miami-Fort Lauderdale-Pompano Beach, FL
1335                                 Boise City, ID
1336                                 Boise City, ID
1337                                 Boise City, ID
1338                                 Boise City, ID
1339                                       Reno, NV
1340                Dallas-Fort Worth-Arlington, TX
1341           Houston-The Woodlands-Sugar Land, TX
1342                Charleston-North Charleston, SC
1343                                Spartanburg, SC
1344               Indianapolis-Carmel-Anderson, IN
1345                               Jacksonville, FL
1346                      Phoenix-Mesa-Chandler, AZ
1347                                   Savannah, GA
1348                     Denver-Aurora-Lakewood, CO
1349             Los Angeles-Long Beach-Anaheim, CA
1350        Minneapolis-St. Paul-Bloomington, MN-WI
1351                      Phoenix-Mesa-Chandler, AZ
1352             San Jose-Sunnyvale-Santa Clara, CA
1353                 Boston-Cambridge-Newton, MA-NH
1354              North Port-Sarasota-Bradenton, FL
1355                        Buffalo-Cheektowaga, NY
1356                        Buffalo-Cheektowaga, NY
1357                        Buffalo-Cheektowaga, NY
1358             Los Angeles-Long Beach-Anaheim, CA
1359                       New Orleans-Metairie, LA
1360                               Raleigh-Cary, NC
1361            Tampa-St. Petersburg-Clearwater, FL
1362                              Oklahoma City, OK
1363             Los Angeles-Long Beach-Anaheim, CA
1364             Los Angeles-Long Beach-Anaheim, CA
1365             Los Angeles-Long Beach-Anaheim, CA
1366             Los Angeles-Long Beach-Anaheim, CA
1367             Los Angeles-Long Beach-Anaheim, CA
1368             Los Angeles-Long Beach-Anaheim, CA
1369                  Baltimore-Columbia-Towson, MD
1370                  Baltimore-Columbia-Towson, MD
1371                    Seattle-Tacoma-Bellevue, WA
1372                  Baltimore-Columbia-Towson, MD
1373                  Baltimore-Columbia-Towson, MD
1374                  Baltimore-Columbia-Towson, MD
1375                  Baltimore-Columbia-Towson, MD
1376                  Baltimore-Columbia-Towson, MD
1377                  Baltimore-Columbia-Towson, MD
1378                  Baltimore-Columbia-Towson, MD
1379                  Baltimore-Columbia-Towson, MD
1380                  Baltimore-Columbia-Towson, MD
1381                  Baltimore-Columbia-Towson, MD
1382                    San Juan-Bayamón-Caguas, PR
1383                  Baltimore-Columbia-Towson, MD
1384                  Baltimore-Columbia-Towson, MD
1385                  Baltimore-Columbia-Towson, MD
1386                                       Hilo, HI
1387                  Baltimore-Columbia-Towson, MD
1388   Washington-Arlington-Alexandria, DC-VA-MD-WV
1389                  Baltimore-Columbia-Towson, MD
1390                  Baltimore-Columbia-Towson, MD
1391                  Baltimore-Columbia-Towson, MD
1392                                       Hilo, HI
1393                  Baltimore-Columbia-Towson, MD
1394                  Baltimore-Columbia-Towson, MD
1395                  Baltimore-Columbia-Towson, MD
1396                  Baltimore-Columbia-Towson, MD
1397                  Baltimore-Columbia-Towson, MD
1398                  Baltimore-Columbia-Towson, MD
1399                  Baltimore-Columbia-Towson, MD
1400                      Cape Coral-Fort Myers, FL
1401                                    Bozeman, MT
1402                             Kansas City, MO-KS
1403                         Milwaukee-Waukesha, WI
1404                Charleston-North Charleston, SC
1405                           Colorado Springs, CO
1406                Charleston-North Charleston, SC
1407             Los Angeles-Long Beach-Anaheim, CA
1408                      Cape Coral-Fort Myers, FL
1409                           Cleveland-Elyria, OH
1410                           Cleveland-Elyria, OH
1411                             Urban Honolulu, HI
1412                           Cleveland-Elyria, OH
1413                           Cleveland-Elyria, OH
1414                                   Columbus, OH
1415                                   Columbus, OH
1416                                     Tucson, AZ
1417                                   Columbus, OH
1418                      Phoenix-Mesa-Chandler, AZ
1419                                Panama City, FL
1420                                   Columbus, OH
1421                                   Columbus, OH
1422                                   Columbus, OH
1423                                   Columbus, OH
1424                                   Columbus, OH
1425                                   Columbus, OH
1426                  Santa Maria-Santa Barbara, CA
1427                           Colorado Springs, CO
1428                           Colorado Springs, CO
1429                             Corpus Christi, TX
1430                      Cape Coral-Fort Myers, FL
1431                     Spokane-Spokane Valley, WA
1432             San Francisco-Oakland-Berkeley, CA
1433                           Cincinnati, OH-KY-IN
1434                           Cincinnati, OH-KY-IN
1435                           Cincinnati, OH-KY-IN
1436            Tampa-St. Petersburg-Clearwater, FL
1437                           Cincinnati, OH-KY-IN
1438                Dallas-Fort Worth-Arlington, TX
1439             Los Angeles-Long Beach-Anaheim, CA
1440                Dallas-Fort Worth-Arlington, TX
1441             San Francisco-Oakland-Berkeley, CA
1442                Dallas-Fort Worth-Arlington, TX
1443                Dallas-Fort Worth-Arlington, TX
1444                Dallas-Fort Worth-Arlington, TX
1445                Dallas-Fort Worth-Arlington, TX
1446                Dallas-Fort Worth-Arlington, TX
1447                Dallas-Fort Worth-Arlington, TX
1448                Dallas-Fort Worth-Arlington, TX
1449                Dallas-Fort Worth-Arlington, TX
1450                Dallas-Fort Worth-Arlington, TX
1451                Dallas-Fort Worth-Arlington, TX
1452                Dallas-Fort Worth-Arlington, TX
1453                Dallas-Fort Worth-Arlington, TX
1454                Dallas-Fort Worth-Arlington, TX
1455                Dallas-Fort Worth-Arlington, TX
1456                Dallas-Fort Worth-Arlington, TX
1457                Dallas-Fort Worth-Arlington, TX
1458                Dallas-Fort Worth-Arlington, TX
1459                Dallas-Fort Worth-Arlington, TX
1460                Dallas-Fort Worth-Arlington, TX
1461                Dallas-Fort Worth-Arlington, TX
1462                Dallas-Fort Worth-Arlington, TX
1463                Dallas-Fort Worth-Arlington, TX
1464                Dallas-Fort Worth-Arlington, TX
1465                Dallas-Fort Worth-Arlington, TX
1466                Dallas-Fort Worth-Arlington, TX
1467                Dallas-Fort Worth-Arlington, TX
1468                Dallas-Fort Worth-Arlington, TX
1469                Dallas-Fort Worth-Arlington, TX
1470                Dallas-Fort Worth-Arlington, TX
1471                Dallas-Fort Worth-Arlington, TX
1472                Dallas-Fort Worth-Arlington, TX
1473                Dallas-Fort Worth-Arlington, TX
1474                Dallas-Fort Worth-Arlington, TX
1475                Dallas-Fort Worth-Arlington, TX
1476             San Francisco-Oakland-Berkeley, CA
1477              North Port-Sarasota-Bradenton, FL
1478   Washington-Arlington-Alexandria, DC-VA-MD-WV
1479   Washington-Arlington-Alexandria, DC-VA-MD-WV
1480   Washington-Arlington-Alexandria, DC-VA-MD-WV
1481                     Denver-Aurora-Lakewood, CO
1482   Washington-Arlington-Alexandria, DC-VA-MD-WV
1483   Washington-Arlington-Alexandria, DC-VA-MD-WV
1484   Washington-Arlington-Alexandria, DC-VA-MD-WV
1485   Washington-Arlington-Alexandria, DC-VA-MD-WV
1486   Washington-Arlington-Alexandria, DC-VA-MD-WV
1487   Washington-Arlington-Alexandria, DC-VA-MD-WV
1488   Washington-Arlington-Alexandria, DC-VA-MD-WV
1489                  Baltimore-Columbia-Towson, MD
1490   Washington-Arlington-Alexandria, DC-VA-MD-WV
1491                     Denver-Aurora-Lakewood, CO
1492          New York-Newark-Jersey City, NY-NJ-PA
1493                     Denver-Aurora-Lakewood, CO
1494          New York-Newark-Jersey City, NY-NJ-PA
1495                     Denver-Aurora-Lakewood, CO
1496              North Port-Sarasota-Bradenton, FL
1497                     Denver-Aurora-Lakewood, CO
1498                     Denver-Aurora-Lakewood, CO
1499                     Denver-Aurora-Lakewood, CO
1500              North Port-Sarasota-Bradenton, FL
1501                     Denver-Aurora-Lakewood, CO
1502                     Denver-Aurora-Lakewood, CO
1503                     Denver-Aurora-Lakewood, CO
1504                  Orlando-Kissimmee-Sanford, FL
1505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1506                     Denver-Aurora-Lakewood, CO
1507                     Denver-Aurora-Lakewood, CO
1508                     Denver-Aurora-Lakewood, CO
1509        Miami-Fort Lauderdale-Pompano Beach, FL
1510                     Denver-Aurora-Lakewood, CO
1511                     Denver-Aurora-Lakewood, CO
1512                     Denver-Aurora-Lakewood, CO
1513                     Denver-Aurora-Lakewood, CO
1514                     Denver-Aurora-Lakewood, CO
1515                     Denver-Aurora-Lakewood, CO
1516                     Denver-Aurora-Lakewood, CO
1517                     Denver-Aurora-Lakewood, CO
1518                Sacramento-Roseville-Folsom, CA
1519                     Denver-Aurora-Lakewood, CO
1520                     Denver-Aurora-Lakewood, CO
1521                     Denver-Aurora-Lakewood, CO
1522                     Denver-Aurora-Lakewood, CO
1523                     Denver-Aurora-Lakewood, CO
1524                     Denver-Aurora-Lakewood, CO
1525                     Denver-Aurora-Lakewood, CO
1526                     Denver-Aurora-Lakewood, CO
1527                     Denver-Aurora-Lakewood, CO
1528            Tampa-St. Petersburg-Clearwater, FL
1529           Houston-The Woodlands-Sugar Land, TX
1530           Houston-The Woodlands-Sugar Land, TX
1531             San Diego-Chula Vista-Carlsbad, CA
1532                    Detroit-Warren-Dearborn, MI
1533                    Detroit-Warren-Dearborn, MI
1534                    Detroit-Warren-Dearborn, MI
1535                                Albuquerque, NM
1536    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1537                                    El Paso, TX
1538                                    El Paso, TX
1539                                    El Paso, TX
1540                                    El Paso, TX
1541                                    El Paso, TX
1542             San Jose-Sunnyvale-Santa Clara, CA
1543            Tampa-St. Petersburg-Clearwater, FL
1544                               Jacksonville, FL
1545            Tampa-St. Petersburg-Clearwater, FL
1546                                    El Paso, TX
1547                                    El Paso, TX
1548             San Diego-Chula Vista-Carlsbad, CA
1549                         Eugene-Springfield, OR
1550                         Eugene-Springfield, OR
1551                                     Fresno, CA
1552                     Denver-Aurora-Lakewood, CO
1553               Las Vegas-Henderson-Paradise, NV
1554             San Jose-Sunnyvale-Santa Clara, CA
1555        Miami-Fort Lauderdale-Pompano Beach, FL
1556               Austin-Round Rock-Georgetown, TX
1557        Miami-Fort Lauderdale-Pompano Beach, FL
1558        Miami-Fort Lauderdale-Pompano Beach, FL
1559                      Providence-Warwick, RI-MA
1560        Miami-Fort Lauderdale-Pompano Beach, FL
1561        Miami-Fort Lauderdale-Pompano Beach, FL
1562        Miami-Fort Lauderdale-Pompano Beach, FL
1563        Miami-Fort Lauderdale-Pompano Beach, FL
1564             Los Angeles-Long Beach-Anaheim, CA
1565        Miami-Fort Lauderdale-Pompano Beach, FL
1566        Miami-Fort Lauderdale-Pompano Beach, FL
1567        Miami-Fort Lauderdale-Pompano Beach, FL
1568     Virginia Beach-Norfolk-Newport News, VA-NC
1569                                      Tulsa, OK
1570                     Spokane-Spokane Valley, WA
1571                          Manchester-Nashua, NH
1572                     Spokane-Spokane Valley, WA
1573                     Spokane-Spokane Valley, WA
1574                      Phoenix-Mesa-Chandler, AZ
1575                     Spokane-Spokane Valley, WA
1576                      Grand Rapids-Kentwood, MI
1577                                Spartanburg, SC
1578             San Jose-Sunnyvale-Santa Clara, CA
1579             Los Angeles-Long Beach-Anaheim, CA
1580                             Salt Lake City, UT
1581 Nashville-Davidson--Murfreesboro--Franklin, TN
1582           Houston-The Woodlands-Sugar Land, TX
1583                               Raleigh-Cary, NC
1584          New York-Newark-Jersey City, NY-NJ-PA
1585           Houston-The Woodlands-Sugar Land, TX
1586           Houston-The Woodlands-Sugar Land, TX
1587           Houston-The Woodlands-Sugar Land, TX
1588           Houston-The Woodlands-Sugar Land, TX
1589           Houston-The Woodlands-Sugar Land, TX
1590           Houston-The Woodlands-Sugar Land, TX
1591           Houston-The Woodlands-Sugar Land, TX
1592           Houston-The Woodlands-Sugar Land, TX
1593           Houston-The Woodlands-Sugar Land, TX
1594          New York-Newark-Jersey City, NY-NJ-PA
1595           Houston-The Woodlands-Sugar Land, TX
1596           Houston-The Woodlands-Sugar Land, TX
1597           Houston-The Woodlands-Sugar Land, TX
1598           Houston-The Woodlands-Sugar Land, TX
1599           Houston-The Woodlands-Sugar Land, TX
1600           Houston-The Woodlands-Sugar Land, TX
1601           Houston-The Woodlands-Sugar Land, TX
1602           Houston-The Woodlands-Sugar Land, TX
1603           Houston-The Woodlands-Sugar Land, TX
1604           Houston-The Woodlands-Sugar Land, TX
1605           Houston-The Woodlands-Sugar Land, TX
1606           Houston-The Woodlands-Sugar Land, TX
1607           Houston-The Woodlands-Sugar Land, TX
1608           Houston-The Woodlands-Sugar Land, TX
1609           Houston-The Woodlands-Sugar Land, TX
1610           Houston-The Woodlands-Sugar Land, TX
1611           Houston-The Woodlands-Sugar Land, TX
1612           Houston-The Woodlands-Sugar Land, TX
1613           Houston-The Woodlands-Sugar Land, TX
1614           Houston-The Woodlands-Sugar Land, TX
1615          New York-Newark-Jersey City, NY-NJ-PA
1616           Houston-The Woodlands-Sugar Land, TX
1617           Houston-The Woodlands-Sugar Land, TX
1618           Houston-The Woodlands-Sugar Land, TX
1619           Houston-The Woodlands-Sugar Land, TX
1620                                    Jackson, MS
1621                      Brownsville-Harlingen, TX
1622                           Colorado Springs, CO
1623                             Salt Lake City, UT
1624             San Francisco-Oakland-Berkeley, CA
1625                Sacramento-Roseville-Folsom, CA
1626                      Grand Rapids-Kentwood, MI
1627           Houston-The Woodlands-Sugar Land, TX
1628                  Orlando-Kissimmee-Sanford, FL
1629           Houston-The Woodlands-Sugar Land, TX
1630                                    Wichita, KS
1631                                    Wichita, KS
1632                    Portland-South Portland, ME
1633               Indianapolis-Carmel-Anderson, IN
1634               Indianapolis-Carmel-Anderson, IN
1635               Indianapolis-Carmel-Anderson, IN
1636               Indianapolis-Carmel-Anderson, IN
1637               Indianapolis-Carmel-Anderson, IN
1638          New York-Newark-Jersey City, NY-NJ-PA
1639        Miami-Fort Lauderdale-Pompano Beach, FL
1640         Crestview-Fort Walton Beach-Destin, FL
1641                          Manchester-Nashua, NH
1642                               Jacksonville, FL
1643                               Jacksonville, FL
1644                               Jacksonville, FL
1645           Atlanta-Sandy Springs-Alpharetta, GA
1646                  Baltimore-Columbia-Towson, MD
1647                              Oklahoma City, OK
1648               Las Vegas-Henderson-Paradise, NV
1649               Las Vegas-Henderson-Paradise, NV
1650               Indianapolis-Carmel-Anderson, IN
1651                       New Orleans-Metairie, LA
1652                                 Pittsburgh, PA
1653               Las Vegas-Henderson-Paradise, NV
1654                                 Pittsburgh, PA
1655            Tampa-St. Petersburg-Clearwater, FL
1656               Las Vegas-Henderson-Paradise, NV
1657               Las Vegas-Henderson-Paradise, NV
1658           Atlanta-Sandy Springs-Alpharetta, GA
1659             Chicago-Naperville-Elgin, IL-IN-WI
1660               Las Vegas-Henderson-Paradise, NV
1661               Las Vegas-Henderson-Paradise, NV
1662                                 Pittsburgh, PA
1663               Las Vegas-Henderson-Paradise, NV
1664               Las Vegas-Henderson-Paradise, NV
1665               Las Vegas-Henderson-Paradise, NV
1666               Las Vegas-Henderson-Paradise, NV
1667               Las Vegas-Henderson-Paradise, NV
1668               Las Vegas-Henderson-Paradise, NV
1669               Las Vegas-Henderson-Paradise, NV
1670               Las Vegas-Henderson-Paradise, NV
1671               Las Vegas-Henderson-Paradise, NV
1672               Las Vegas-Henderson-Paradise, NV
1673               Las Vegas-Henderson-Paradise, NV
1674               Las Vegas-Henderson-Paradise, NV
1675               Las Vegas-Henderson-Paradise, NV
1676               Las Vegas-Henderson-Paradise, NV
1677               Las Vegas-Henderson-Paradise, NV
1678               Las Vegas-Henderson-Paradise, NV
1679             Los Angeles-Long Beach-Anaheim, CA
1680             Los Angeles-Long Beach-Anaheim, CA
1681                                      Kapaa, HI
1682                       New Orleans-Metairie, LA
1683                  San Antonio-New Braunfels, TX
1684             Los Angeles-Long Beach-Anaheim, CA
1685                                      Tulsa, OK
1686                  Orlando-Kissimmee-Sanford, FL
1687        Miami-Fort Lauderdale-Pompano Beach, FL
1688             Los Angeles-Long Beach-Anaheim, CA
1689             Los Angeles-Long Beach-Anaheim, CA
1690             Los Angeles-Long Beach-Anaheim, CA
1691             Los Angeles-Long Beach-Anaheim, CA
1692           Riverside-San Bernardino-Ontario, CA
1693                               Raleigh-Cary, NC
1694                                    Lubbock, TX
1695                Dallas-Fort Worth-Arlington, TX
1696           Houston-The Woodlands-Sugar Land, TX
1697          New York-Newark-Jersey City, NY-NJ-PA
1698                       New Orleans-Metairie, LA
1699                              Oklahoma City, OK
1700          New York-Newark-Jersey City, NY-NJ-PA
1701          New York-Newark-Jersey City, NY-NJ-PA
1702             Los Angeles-Long Beach-Anaheim, CA
1703             Chicago-Naperville-Elgin, IL-IN-WI
1704             Los Angeles-Long Beach-Anaheim, CA
1705             Los Angeles-Long Beach-Anaheim, CA
1706             Los Angeles-Long Beach-Anaheim, CA
1707             Los Angeles-Long Beach-Anaheim, CA
1708             Los Angeles-Long Beach-Anaheim, CA
1709           Riverside-San Bernardino-Ontario, CA
1710             Los Angeles-Long Beach-Anaheim, CA
1711             Los Angeles-Long Beach-Anaheim, CA
1712             Los Angeles-Long Beach-Anaheim, CA
1713             Los Angeles-Long Beach-Anaheim, CA
1714             Los Angeles-Long Beach-Anaheim, CA
1715       Little Rock-North Little Rock-Conway, AR
1716                                    Midland, TX
1717                                    Midland, TX
1718                             Kansas City, MO-KS
1719                             Kansas City, MO-KS
1720              North Port-Sarasota-Bradenton, FL
1721                             Kansas City, MO-KS
1722                             Kansas City, MO-KS
1723                             Kansas City, MO-KS
1724                             Kansas City, MO-KS
1725                             Kansas City, MO-KS
1726                             Kansas City, MO-KS
1727                             Kansas City, MO-KS
1728                        Buffalo-Cheektowaga, NY
1729                                    Bozeman, MT
1730           Riverside-San Bernardino-Ontario, CA
1731                    Seattle-Tacoma-Bellevue, WA
1732                                     Fresno, CA
1733                      Phoenix-Mesa-Chandler, AZ
1734                  Orlando-Kissimmee-Sanford, FL
1735                 Boston-Cambridge-Newton, MA-NH
1736                 Des Moines-West Des Moines, IA
1737             San Diego-Chula Vista-Carlsbad, CA
1738                  Orlando-Kissimmee-Sanford, FL
1739                  Orlando-Kissimmee-Sanford, FL
1740                  Orlando-Kissimmee-Sanford, FL
1741                  Orlando-Kissimmee-Sanford, FL
1742                  Orlando-Kissimmee-Sanford, FL
1743                  Orlando-Kissimmee-Sanford, FL
1744                  Orlando-Kissimmee-Sanford, FL
1745                  Orlando-Kissimmee-Sanford, FL
1746                  Orlando-Kissimmee-Sanford, FL
1747                  Orlando-Kissimmee-Sanford, FL
1748                                      Kapaa, HI
1749                  Orlando-Kissimmee-Sanford, FL
1750                  Orlando-Kissimmee-Sanford, FL
1751             Chicago-Naperville-Elgin, IL-IN-WI
1752             Chicago-Naperville-Elgin, IL-IN-WI
1753             Chicago-Naperville-Elgin, IL-IN-WI
1754             Chicago-Naperville-Elgin, IL-IN-WI
1755             Chicago-Naperville-Elgin, IL-IN-WI
1756             Chicago-Naperville-Elgin, IL-IN-WI
1757             Chicago-Naperville-Elgin, IL-IN-WI
1758             Chicago-Naperville-Elgin, IL-IN-WI
1759             Chicago-Naperville-Elgin, IL-IN-WI
1760             Chicago-Naperville-Elgin, IL-IN-WI
1761             Chicago-Naperville-Elgin, IL-IN-WI
1762             Chicago-Naperville-Elgin, IL-IN-WI
1763             Chicago-Naperville-Elgin, IL-IN-WI
1764             Chicago-Naperville-Elgin, IL-IN-WI
1765             Chicago-Naperville-Elgin, IL-IN-WI
1766             Chicago-Naperville-Elgin, IL-IN-WI
1767             Chicago-Naperville-Elgin, IL-IN-WI
1768             Chicago-Naperville-Elgin, IL-IN-WI
1769             Chicago-Naperville-Elgin, IL-IN-WI
1770             Chicago-Naperville-Elgin, IL-IN-WI
1771             Chicago-Naperville-Elgin, IL-IN-WI
1772             Chicago-Naperville-Elgin, IL-IN-WI
1773             Chicago-Naperville-Elgin, IL-IN-WI
1774             Chicago-Naperville-Elgin, IL-IN-WI
1775             Chicago-Naperville-Elgin, IL-IN-WI
1776             Chicago-Naperville-Elgin, IL-IN-WI
1777             Chicago-Naperville-Elgin, IL-IN-WI
1778             Chicago-Naperville-Elgin, IL-IN-WI
1779             Chicago-Naperville-Elgin, IL-IN-WI
1780             Chicago-Naperville-Elgin, IL-IN-WI
1781             Chicago-Naperville-Elgin, IL-IN-WI
1782                               St. Louis, MO-IL
1783             Chicago-Naperville-Elgin, IL-IN-WI
1784             Chicago-Naperville-Elgin, IL-IN-WI
1785             Chicago-Naperville-Elgin, IL-IN-WI
1786             Chicago-Naperville-Elgin, IL-IN-WI
1787             Chicago-Naperville-Elgin, IL-IN-WI
1788             Chicago-Naperville-Elgin, IL-IN-WI
1789             Chicago-Naperville-Elgin, IL-IN-WI
1790             Chicago-Naperville-Elgin, IL-IN-WI
1791             Chicago-Naperville-Elgin, IL-IN-WI
1792             Chicago-Naperville-Elgin, IL-IN-WI
1793             Chicago-Naperville-Elgin, IL-IN-WI
1794             Chicago-Naperville-Elgin, IL-IN-WI
1795             Chicago-Naperville-Elgin, IL-IN-WI
1796             Chicago-Naperville-Elgin, IL-IN-WI
1797             Chicago-Naperville-Elgin, IL-IN-WI
1798             Chicago-Naperville-Elgin, IL-IN-WI
1799             Chicago-Naperville-Elgin, IL-IN-WI
1800             Chicago-Naperville-Elgin, IL-IN-WI
1801                              Memphis, TN-MS-AR
1802                              Memphis, TN-MS-AR
1803                              Memphis, TN-MS-AR
1804                              Memphis, TN-MS-AR
1805                              Memphis, TN-MS-AR
1806                  San Antonio-New Braunfels, TX
1807        Minneapolis-St. Paul-Bloomington, MN-WI
1808        Miami-Fort Lauderdale-Pompano Beach, FL
1809        Miami-Fort Lauderdale-Pompano Beach, FL
1810                             Kansas City, MO-KS
1811                         Milwaukee-Waukesha, WI
1812                         Milwaukee-Waukesha, WI
1813                         Milwaukee-Waukesha, WI
1814                         Milwaukee-Waukesha, WI
1815                         Milwaukee-Waukesha, WI
1816        Minneapolis-St. Paul-Bloomington, MN-WI
1817                      Cape Coral-Fort Myers, FL
1818             San Diego-Chula Vista-Carlsbad, CA
1819                       New Orleans-Metairie, LA
1820                       New Orleans-Metairie, LA
1821                       New Orleans-Metairie, LA
1822                       New Orleans-Metairie, LA
1823                       New Orleans-Metairie, LA
1824                       New Orleans-Metairie, LA
1825                       New Orleans-Metairie, LA
1826                       New Orleans-Metairie, LA
1827                           Colorado Springs, CO
1828                       New Orleans-Metairie, LA
1829                       New Orleans-Metairie, LA
1830                       New Orleans-Metairie, LA
1831                                      Tulsa, OK
1832  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1833  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1834             San Francisco-Oakland-Berkeley, CA
1835             San Francisco-Oakland-Berkeley, CA
1836             San Francisco-Oakland-Berkeley, CA
1837             San Francisco-Oakland-Berkeley, CA
1838             San Diego-Chula Vista-Carlsbad, CA
1839             San Francisco-Oakland-Berkeley, CA
1840               Indianapolis-Carmel-Anderson, IN
1841             San Francisco-Oakland-Berkeley, CA
1842             San Francisco-Oakland-Berkeley, CA
1843             San Francisco-Oakland-Berkeley, CA
1844             San Jose-Sunnyvale-Santa Clara, CA
1845             San Francisco-Oakland-Berkeley, CA
1846             San Francisco-Oakland-Berkeley, CA
1847             San Francisco-Oakland-Berkeley, CA
1848             San Francisco-Oakland-Berkeley, CA
1849             San Francisco-Oakland-Berkeley, CA
1850                Sacramento-Roseville-Folsom, CA
1851                              Oklahoma City, OK
1852                              Oklahoma City, OK
1853                              Oklahoma City, OK
1854                    Kahului-Wailuku-Lahaina, HI
1855              North Port-Sarasota-Bradenton, FL
1856                    Omaha-Council Bluffs, NE-IA
1857                    Omaha-Council Bluffs, NE-IA
1858                    Omaha-Council Bluffs, NE-IA
1859                  San Antonio-New Braunfels, TX
1860           Riverside-San Bernardino-Ontario, CA
1861           Riverside-San Bernardino-Ontario, CA
1862                                   Savannah, GA
1863             Chicago-Naperville-Elgin, IL-IN-WI
1864             Chicago-Naperville-Elgin, IL-IN-WI
1865             Chicago-Naperville-Elgin, IL-IN-WI
1866     Virginia Beach-Norfolk-Newport News, VA-NC
1867     Virginia Beach-Norfolk-Newport News, VA-NC
1868     Virginia Beach-Norfolk-Newport News, VA-NC
1869     Virginia Beach-Norfolk-Newport News, VA-NC
1870          Hartford-East Hartford-Middletown, CT
1871                    Omaha-Council Bluffs, NE-IA
1872            Portland-Vancouver-Hillsboro, OR-WA
1873            Tampa-St. Petersburg-Clearwater, FL
1874                                      Kapaa, HI
1875             San Francisco-Oakland-Berkeley, CA
1876    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1877        Miami-Fort Lauderdale-Pompano Beach, FL
1878                      Phoenix-Mesa-Chandler, AZ
1879                         Milwaukee-Waukesha, WI
1880                      Phoenix-Mesa-Chandler, AZ
1881           Atlanta-Sandy Springs-Alpharetta, GA
1882                      Phoenix-Mesa-Chandler, AZ
1883                      Phoenix-Mesa-Chandler, AZ
1884                      Phoenix-Mesa-Chandler, AZ
1885                      Phoenix-Mesa-Chandler, AZ
1886                      Phoenix-Mesa-Chandler, AZ
1887                      Phoenix-Mesa-Chandler, AZ
1888                      Phoenix-Mesa-Chandler, AZ
1889                      Phoenix-Mesa-Chandler, AZ
1890                      Phoenix-Mesa-Chandler, AZ
1891                      Phoenix-Mesa-Chandler, AZ
1892                      Phoenix-Mesa-Chandler, AZ
1893                      Phoenix-Mesa-Chandler, AZ
1894                      Phoenix-Mesa-Chandler, AZ
1895                      Phoenix-Mesa-Chandler, AZ
1896                             Urban Honolulu, HI
1897                      Phoenix-Mesa-Chandler, AZ
1898                      Phoenix-Mesa-Chandler, AZ
1899                      Phoenix-Mesa-Chandler, AZ
1900                      Phoenix-Mesa-Chandler, AZ
1901                      Phoenix-Mesa-Chandler, AZ
1902                      Phoenix-Mesa-Chandler, AZ
1903                                 Pittsburgh, PA
1904                                 Pittsburgh, PA
1905                                 Pittsburgh, PA
1906                                 Pittsburgh, PA
1907                                 Pittsburgh, PA
1908                                 Pittsburgh, PA
1909                 Pensacola-Ferry Pass-Brent, FL
1910                 Pensacola-Ferry Pass-Brent, FL
1911                 Pensacola-Ferry Pass-Brent, FL
1912           Riverside-San Bernardino-Ontario, CA
1913           Riverside-San Bernardino-Ontario, CA
1914                               Raleigh-Cary, NC
1915             San Francisco-Oakland-Berkeley, CA
1916                               Raleigh-Cary, NC
1917                    San Juan-Bayamón-Caguas, PR
1918                  San Antonio-New Braunfels, TX
1919                               Raleigh-Cary, NC
1920                                   Richmond, VA
1921                                       Reno, NV
1922                                       Reno, NV
1923                                       Reno, NV
1924                                       Reno, NV
1925                                  Rochester, NY
1926                                  Rochester, NY
1927                    Detroit-Warren-Dearborn, MI
1928                      Cape Coral-Fort Myers, FL
1929                      Cape Coral-Fort Myers, FL
1930                      Cape Coral-Fort Myers, FL
1931                      Cape Coral-Fort Myers, FL
1932                      Cape Coral-Fort Myers, FL
1933             San Diego-Chula Vista-Carlsbad, CA
1934         Crestview-Fort Walton Beach-Destin, FL
1935                Charleston-North Charleston, SC
1936                     Spokane-Spokane Valley, WA
1937             San Diego-Chula Vista-Carlsbad, CA
1938             San Diego-Chula Vista-Carlsbad, CA
1939             San Diego-Chula Vista-Carlsbad, CA
1940        Minneapolis-St. Paul-Bloomington, MN-WI
1941                                     Tucson, AZ
1942                  San Antonio-New Braunfels, TX
1943                  San Antonio-New Braunfels, TX
1944                  San Antonio-New Braunfels, TX
1945                  San Antonio-New Braunfels, TX
1946                Dallas-Fort Worth-Arlington, TX
1947                  Santa Maria-Santa Barbara, CA
1948             Louisville/Jefferson County, KY-IN
1949             Louisville/Jefferson County, KY-IN
1950             Louisville/Jefferson County, KY-IN
1951             Louisville/Jefferson County, KY-IN
1952             Louisville/Jefferson County, KY-IN
1953             Los Angeles-Long Beach-Anaheim, CA
1954             Los Angeles-Long Beach-Anaheim, CA
1955                               Raleigh-Cary, NC
1956             San Francisco-Oakland-Berkeley, CA
1957             San Francisco-Oakland-Berkeley, CA
1958             San Jose-Sunnyvale-Santa Clara, CA
1959             San Jose-Sunnyvale-Santa Clara, CA
1960                             Urban Honolulu, HI
1961             San Jose-Sunnyvale-Santa Clara, CA
1962                    Kahului-Wailuku-Lahaina, HI
1963                    Kahului-Wailuku-Lahaina, HI
1964             San Jose-Sunnyvale-Santa Clara, CA
1965             San Jose-Sunnyvale-Santa Clara, CA
1966             San Jose-Sunnyvale-Santa Clara, CA
1967             San Jose-Sunnyvale-Santa Clara, CA
1968                    San Juan-Bayamón-Caguas, PR
1969                             Salt Lake City, UT
1970                             Salt Lake City, UT
1971                             Salt Lake City, UT
1972                             Salt Lake City, UT
1973                Sacramento-Roseville-Folsom, CA
1974                             Kansas City, MO-KS
1975                Sacramento-Roseville-Folsom, CA
1976                Sacramento-Roseville-Folsom, CA
1977                                       Hilo, HI
1978                Sacramento-Roseville-Folsom, CA
1979                Sacramento-Roseville-Folsom, CA
1980                Sacramento-Roseville-Folsom, CA
1981                Sacramento-Roseville-Folsom, CA
1982             Los Angeles-Long Beach-Anaheim, CA
1983                       New Orleans-Metairie, LA
1984             Los Angeles-Long Beach-Anaheim, CA
1985              North Port-Sarasota-Bradenton, FL
1986              North Port-Sarasota-Bradenton, FL
1987              North Port-Sarasota-Bradenton, FL
1988              North Port-Sarasota-Bradenton, FL
1989                               St. Louis, MO-IL
1990                               St. Louis, MO-IL
1991                               St. Louis, MO-IL
1992                               St. Louis, MO-IL
1993                               St. Louis, MO-IL
1994                               St. Louis, MO-IL
1995                               St. Louis, MO-IL
1996                               St. Louis, MO-IL
1997                               St. Louis, MO-IL
1998                               St. Louis, MO-IL
1999                               St. Louis, MO-IL
2000          Hartford-East Hartford-Middletown, CT
2001                               St. Louis, MO-IL
2002                               St. Louis, MO-IL
2003                               St. Louis, MO-IL
2004                               St. Louis, MO-IL
2005                               St. Louis, MO-IL
2006                               St. Louis, MO-IL
2007                               St. Louis, MO-IL
2008                               St. Louis, MO-IL
2009                               St. Louis, MO-IL
2010                               St. Louis, MO-IL
2011                               St. Louis, MO-IL
2012                               St. Louis, MO-IL
2013                               St. Louis, MO-IL
2014                               St. Louis, MO-IL
2015                               St. Louis, MO-IL
2016                               St. Louis, MO-IL
2017            Tampa-St. Petersburg-Clearwater, FL
2018                                   Syracuse, NY
2019                     Denver-Aurora-Lakewood, CO
2020            Tampa-St. Petersburg-Clearwater, FL
2021            Tampa-St. Petersburg-Clearwater, FL
2022            Tampa-St. Petersburg-Clearwater, FL
2023            Tampa-St. Petersburg-Clearwater, FL
2024            Tampa-St. Petersburg-Clearwater, FL
2025            Tampa-St. Petersburg-Clearwater, FL
2026            Tampa-St. Petersburg-Clearwater, FL
2027            Tampa-St. Petersburg-Clearwater, FL
2028            Tampa-St. Petersburg-Clearwater, FL
2029                                     Tucson, AZ
2030                                     Tucson, AZ
2031         Crestview-Fort Walton Beach-Destin, FL
2032                         Milwaukee-Waukesha, WI
2033                    Shreveport-Bossier City, LA
2034                                    Medford, OR
2035                  Orlando-Kissimmee-Sanford, FL
2036                Dallas-Fort Worth-Arlington, TX
2037                Sacramento-Roseville-Folsom, CA
2038                           Cincinnati, OH-KY-IN
2039                               Jacksonville, FL
2040             San Diego-Chula Vista-Carlsbad, CA
2041                               Raleigh-Cary, NC
2042   Washington-Arlington-Alexandria, DC-VA-MD-WV
2043   Washington-Arlington-Alexandria, DC-VA-MD-WV
2044           Houston-The Woodlands-Sugar Land, TX
2045           Houston-The Woodlands-Sugar Land, TX
2046          New York-Newark-Jersey City, NY-NJ-PA
2047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2048                      Phoenix-Mesa-Chandler, AZ
2049                      Phoenix-Mesa-Chandler, AZ
2050             Los Angeles-Long Beach-Anaheim, CA
2051                 Pensacola-Ferry Pass-Brent, FL
2052        Minneapolis-St. Paul-Bloomington, MN-WI
2053                    San Juan-Bayamón-Caguas, PR
2054   Washington-Arlington-Alexandria, DC-VA-MD-WV
2055                                     Bangor, ME
2056                        Buffalo-Cheektowaga, NY
2057                        Harrisburg-Carlisle, PA
2058                               Jacksonville, FL
2059                 Boston-Cambridge-Newton, MA-NH
2060                           Cincinnati, OH-KY-IN
2061                 Boston-Cambridge-Newton, MA-NH
2062                     Denver-Aurora-Lakewood, CO
2063                       New Orleans-Metairie, LA
2064                 Des Moines-West Des Moines, IA
2065     Virginia Beach-Norfolk-Newport News, VA-NC
2066                Dallas-Fort Worth-Arlington, TX
2067        Miami-Fort Lauderdale-Pompano Beach, FL
2068                 Boston-Cambridge-Newton, MA-NH
2069                 Boston-Cambridge-Newton, MA-NH
2070                 Boston-Cambridge-Newton, MA-NH
2071             San Francisco-Oakland-Berkeley, CA
2072                          Manchester-Nashua, NH
2073                Charleston-North Charleston, SC
2074                                      Tulsa, OK
2075                           Cleveland-Elyria, OH
2076                           Cleveland-Elyria, OH
2077              Charlotte-Concord-Gastonia, NC-SC
2078              Charlotte-Concord-Gastonia, NC-SC
2079               Indianapolis-Carmel-Anderson, IN
2080                                   Columbus, OH
2081                                   Columbus, OH
2082                                   Columbus, OH
2083                           Cincinnati, OH-KY-IN
2084                Sacramento-Roseville-Folsom, CA
2085   Washington-Arlington-Alexandria, DC-VA-MD-WV
2086   Washington-Arlington-Alexandria, DC-VA-MD-WV
2087   Washington-Arlington-Alexandria, DC-VA-MD-WV
2088   Washington-Arlington-Alexandria, DC-VA-MD-WV
2089                                    Madison, WI
2090          New York-Newark-Jersey City, NY-NJ-PA
2091          New York-Newark-Jersey City, NY-NJ-PA
2092          New York-Newark-Jersey City, NY-NJ-PA
2093          New York-Newark-Jersey City, NY-NJ-PA
2094          New York-Newark-Jersey City, NY-NJ-PA
2095          New York-Newark-Jersey City, NY-NJ-PA
2096                 Pensacola-Ferry Pass-Brent, FL
2097                      Greensboro-High Point, NC
2098   Washington-Arlington-Alexandria, DC-VA-MD-WV
2099   Washington-Arlington-Alexandria, DC-VA-MD-WV
2100                                 Wilmington, NC
2101               Indianapolis-Carmel-Anderson, IN
2102         Deltona-Daytona Beach-Ormond Beach, FL
2103               Indianapolis-Carmel-Anderson, IN
2104                         Milwaukee-Waukesha, WI
2105                          Carbondale-Marion, IL
2106                Dallas-Fort Worth-Arlington, TX
2107          New York-Newark-Jersey City, NY-NJ-PA
2108                                Panama City, FL
2109          New York-Newark-Jersey City, NY-NJ-PA
2110                      Phoenix-Mesa-Chandler, AZ
2111                                  Knoxville, TN
2112          New York-Newark-Jersey City, NY-NJ-PA
2113          New York-Newark-Jersey City, NY-NJ-PA
2114          New York-Newark-Jersey City, NY-NJ-PA
2115          New York-Newark-Jersey City, NY-NJ-PA
2116          New York-Newark-Jersey City, NY-NJ-PA
2117          New York-Newark-Jersey City, NY-NJ-PA
2118          New York-Newark-Jersey City, NY-NJ-PA
2119          New York-Newark-Jersey City, NY-NJ-PA
2120          New York-Newark-Jersey City, NY-NJ-PA
2121          New York-Newark-Jersey City, NY-NJ-PA
2122          New York-Newark-Jersey City, NY-NJ-PA
2123          New York-Newark-Jersey City, NY-NJ-PA
2124                                Spartanburg, SC
2125     Virginia Beach-Norfolk-Newport News, VA-NC
2126                    Omaha-Council Bluffs, NE-IA
2127     Virginia Beach-Norfolk-Newport News, VA-NC
2128    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2129                                 Pittsburgh, PA
2130                                 Pittsburgh, PA
2131                                  Fairbanks, AK
2132                                 Pittsburgh, PA
2133                                   Savannah, GA
2134                                   Savannah, GA
2135             Louisville/Jefferson County, KY-IN
2136                               Raleigh-Cary, NC
2137                               Raleigh-Cary, NC
2138                      Providence-Warwick, RI-MA
2139                 Boston-Cambridge-Newton, MA-NH
2140             Louisville/Jefferson County, KY-IN
2141                                   Columbus, OH
2142              Charlotte-Concord-Gastonia, NC-SC
2143                Charleston-North Charleston, SC
2144                           Cleveland-Elyria, OH
2145                            Charlottesville, VA
2146                                      Akron, OH
2147   Washington-Arlington-Alexandria, DC-VA-MD-WV
2148                    Seattle-Tacoma-Bellevue, WA
2149                           Sioux City, IA-NE-SD
2150             Chicago-Naperville-Elgin, IL-IN-WI
2151             Chicago-Naperville-Elgin, IL-IN-WI
2152               Las Vegas-Henderson-Paradise, NV
2153                  San Antonio-New Braunfels, TX
2154                      Phoenix-Mesa-Chandler, AZ
2155        Minneapolis-St. Paul-Bloomington, MN-WI
2156        Minneapolis-St. Paul-Bloomington, MN-WI
2157                                 Eau Claire, WI
2158                    Albany-Schenectady-Troy, NY
2159                                 Wilmington, NC
2160                     Denver-Aurora-Lakewood, CO
2161   Washington-Arlington-Alexandria, DC-VA-MD-WV
2162             San Diego-Chula Vista-Carlsbad, CA
2163  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2164                      Cape Coral-Fort Myers, FL
2165                                   Richmond, VA
2166                      Greensboro-High Point, NC
2167                                   Syracuse, NY
2168                             Kansas City, MO-KS
2169                     Denver-Aurora-Lakewood, CO
2170                      Grand Rapids-Kentwood, MI
2171                                 Huntsville, AL
2172           Houston-The Woodlands-Sugar Land, TX
2173             Los Angeles-Long Beach-Anaheim, CA
2174        Miami-Fort Lauderdale-Pompano Beach, FL
2175                 Pensacola-Ferry Pass-Brent, FL
2176                     Denver-Aurora-Lakewood, CO
2177                 Pensacola-Ferry Pass-Brent, FL
2178                          New Haven-Milford, CT
2179                          New Haven-Milford, CT
2180                  Orlando-Kissimmee-Sanford, FL
2181             Los Angeles-Long Beach-Anaheim, CA
2182                           Glenwood Springs, CO
2183                          Birmingham-Hoover, AL
2184          New York-Newark-Jersey City, NY-NJ-PA
2185                         Milwaukee-Waukesha, WI
2186   Washington-Arlington-Alexandria, DC-VA-MD-WV
2187   Washington-Arlington-Alexandria, DC-VA-MD-WV
2188                Dallas-Fort Worth-Arlington, TX
2189                Dallas-Fort Worth-Arlington, TX
2190                Dallas-Fort Worth-Arlington, TX
2191                             Urban Honolulu, HI
2192          New York-Newark-Jersey City, NY-NJ-PA
2193           Atlanta-Sandy Springs-Alpharetta, GA
2194             Chicago-Naperville-Elgin, IL-IN-WI
2195    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2197                      Phoenix-Mesa-Chandler, AZ
2198                      Phoenix-Mesa-Chandler, AZ
2199             San Diego-Chula Vista-Carlsbad, CA
2200                                  Fairbanks, AK
2201            Portland-Vancouver-Hillsboro, OR-WA
2202                 Boston-Cambridge-Newton, MA-NH
2203                 Boston-Cambridge-Newton, MA-NH
2204          New York-Newark-Jersey City, NY-NJ-PA
2205           Riverside-San Bernardino-Ontario, CA
2206             San Francisco-Oakland-Berkeley, CA
2207           Atlanta-Sandy Springs-Alpharetta, GA
2208           Atlanta-Sandy Springs-Alpharetta, GA
2209           Atlanta-Sandy Springs-Alpharetta, GA
2210           Atlanta-Sandy Springs-Alpharetta, GA
2211           Atlanta-Sandy Springs-Alpharetta, GA
2212           Atlanta-Sandy Springs-Alpharetta, GA
2213                 Boston-Cambridge-Newton, MA-NH
2214   Washington-Arlington-Alexandria, DC-VA-MD-WV
2215                    Detroit-Warren-Dearborn, MI
2216                    Detroit-Warren-Dearborn, MI
2217                    Detroit-Warren-Dearborn, MI
2218          New York-Newark-Jersey City, NY-NJ-PA
2219          New York-Newark-Jersey City, NY-NJ-PA
2220          New York-Newark-Jersey City, NY-NJ-PA
2221          New York-Newark-Jersey City, NY-NJ-PA
2222             Los Angeles-Long Beach-Anaheim, CA
2223             Los Angeles-Long Beach-Anaheim, CA
2224             Los Angeles-Long Beach-Anaheim, CA
2225        Minneapolis-St. Paul-Bloomington, MN-WI
2226        Minneapolis-St. Paul-Bloomington, MN-WI
2227             San Jose-Sunnyvale-Santa Clara, CA
2228                             Salt Lake City, UT
2229                             Salt Lake City, UT
2230                             Salt Lake City, UT
2231            Tampa-St. Petersburg-Clearwater, FL
2232            Tampa-St. Petersburg-Clearwater, FL
2233             Los Angeles-Long Beach-Anaheim, CA
2234                    Detroit-Warren-Dearborn, MI
2235             Chicago-Naperville-Elgin, IL-IN-WI
2236                     Denver-Aurora-Lakewood, CO
2237          New York-Newark-Jersey City, NY-NJ-PA
2238           Houston-The Woodlands-Sugar Land, TX
2239           Houston-The Woodlands-Sugar Land, TX
2240           Houston-The Woodlands-Sugar Land, TX
2241           Houston-The Woodlands-Sugar Land, TX
2242                               Raleigh-Cary, NC
2243             San Francisco-Oakland-Berkeley, CA
2244           Houston-The Woodlands-Sugar Land, TX
2245          New York-Newark-Jersey City, NY-NJ-PA
2246          New York-Newark-Jersey City, NY-NJ-PA
2247             Chicago-Naperville-Elgin, IL-IN-WI
2248                                   Richmond, VA
2249    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2250                             Kansas City, MO-KS
2251                Dallas-Fort Worth-Arlington, TX
2252                      Grand Rapids-Kentwood, MI
2253    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2254  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2255                                  Fairbanks, AK
2256                                           <NA>
2257                                           <NA>
2258                    Seattle-Tacoma-Bellevue, WA
2259                    Seattle-Tacoma-Bellevue, WA
2260                             Salt Lake City, UT
2261                     Denver-Aurora-Lakewood, CO
2262   Washington-Arlington-Alexandria, DC-VA-MD-WV
2263              Allentown-Bethlehem-Easton, PA-NJ
2264           Atlanta-Sandy Springs-Alpharetta, GA
2265           Atlanta-Sandy Springs-Alpharetta, GA
2266           Atlanta-Sandy Springs-Alpharetta, GA
2267           Atlanta-Sandy Springs-Alpharetta, GA
2268           Atlanta-Sandy Springs-Alpharetta, GA
2269           Atlanta-Sandy Springs-Alpharetta, GA
2270           Atlanta-Sandy Springs-Alpharetta, GA
2271           Atlanta-Sandy Springs-Alpharetta, GA
2272                                     Bangor, ME
2273                 Boston-Cambridge-Newton, MA-NH
2274                 Boston-Cambridge-Newton, MA-NH
2275                            Charlottesville, VA
2276                Charleston-North Charleston, SC
2277                           Cincinnati, OH-KY-IN
2278                        Harrisburg-Carlisle, PA
2279                    Detroit-Warren-Dearborn, MI
2280                    Detroit-Warren-Dearborn, MI
2281                    Detroit-Warren-Dearborn, MI
2282                    Detroit-Warren-Dearborn, MI
2283                    Detroit-Warren-Dearborn, MI
2284                    Detroit-Warren-Dearborn, MI
2285                    Detroit-Warren-Dearborn, MI
2286          New York-Newark-Jersey City, NY-NJ-PA
2287                      Phoenix-Mesa-Chandler, AZ
2288               Indianapolis-Carmel-Anderson, IN
2289          New York-Newark-Jersey City, NY-NJ-PA
2290          New York-Newark-Jersey City, NY-NJ-PA
2291          New York-Newark-Jersey City, NY-NJ-PA
2292          New York-Newark-Jersey City, NY-NJ-PA
2293          New York-Newark-Jersey City, NY-NJ-PA
2294          New York-Newark-Jersey City, NY-NJ-PA
2295          New York-Newark-Jersey City, NY-NJ-PA
2296          New York-Newark-Jersey City, NY-NJ-PA
2297          New York-Newark-Jersey City, NY-NJ-PA
2298          New York-Newark-Jersey City, NY-NJ-PA
2299          New York-Newark-Jersey City, NY-NJ-PA
2300          New York-Newark-Jersey City, NY-NJ-PA
2301                        Harrisburg-Carlisle, PA
2302        Minneapolis-St. Paul-Bloomington, MN-WI
2303        Minneapolis-St. Paul-Bloomington, MN-WI
2304        Minneapolis-St. Paul-Bloomington, MN-WI
2305                               Raleigh-Cary, NC
2306                                    Roanoke, VA
2307                                  Rochester, NY
2308                                  Knoxville, TN
2309               Austin-Round Rock-Georgetown, TX
2310               Austin-Round Rock-Georgetown, TX
2311                                    Madison, WI
2312               Austin-Round Rock-Georgetown, TX
2313          Hartford-East Hartford-Middletown, CT
2314                 Boston-Cambridge-Newton, MA-NH
2315                 Boston-Cambridge-Newton, MA-NH
2316               Indianapolis-Carmel-Anderson, IN
2317                 Boston-Cambridge-Newton, MA-NH
2318             San Francisco-Oakland-Berkeley, CA
2319              Charlotte-Concord-Gastonia, NC-SC
2320              Charlotte-Concord-Gastonia, NC-SC
2321              Charlotte-Concord-Gastonia, NC-SC
2322              Charlotte-Concord-Gastonia, NC-SC
2323              Charlotte-Concord-Gastonia, NC-SC
2324                                    Salinas, CA
2325              Charlotte-Concord-Gastonia, NC-SC
2326              Charlotte-Concord-Gastonia, NC-SC
2327              Charlotte-Concord-Gastonia, NC-SC
2328                           Cincinnati, OH-KY-IN
2329   Washington-Arlington-Alexandria, DC-VA-MD-WV
2330                Dallas-Fort Worth-Arlington, TX
2331                Dallas-Fort Worth-Arlington, TX
2332                Dallas-Fort Worth-Arlington, TX
2333                Dallas-Fort Worth-Arlington, TX
2334                Dallas-Fort Worth-Arlington, TX
2335                Dallas-Fort Worth-Arlington, TX
2336                Dallas-Fort Worth-Arlington, TX
2337                Dallas-Fort Worth-Arlington, TX
2338                Dallas-Fort Worth-Arlington, TX
2339                Dallas-Fort Worth-Arlington, TX
2340                Dallas-Fort Worth-Arlington, TX
2341                Dallas-Fort Worth-Arlington, TX
2342                Dallas-Fort Worth-Arlington, TX
2343                Dallas-Fort Worth-Arlington, TX
2344                Dallas-Fort Worth-Arlington, TX
2345                Dallas-Fort Worth-Arlington, TX
2346                                Springfield, MO
2347                                   Columbia, MO
2348                    Seattle-Tacoma-Bellevue, WA
2349           Houston-The Woodlands-Sugar Land, TX
2350        Miami-Fort Lauderdale-Pompano Beach, FL
2351          New York-Newark-Jersey City, NY-NJ-PA
2352               Las Vegas-Henderson-Paradise, NV
2353                    Shreveport-Bossier City, LA
2354                                 Wilmington, NC
2355                                   Richmond, VA
2356                Burlington-South Burlington, VT
2357          New York-Newark-Jersey City, NY-NJ-PA
2358                  Orlando-Kissimmee-Sanford, FL
2359                        Harrisburg-Carlisle, PA
2360                    Portland-South Portland, ME
2361       Little Rock-North Little Rock-Conway, AR
2362                   McAllen-Edinburg-Mission, TX
2363        Miami-Fort Lauderdale-Pompano Beach, FL
2364        Miami-Fort Lauderdale-Pompano Beach, FL
2365        Miami-Fort Lauderdale-Pompano Beach, FL
2366        Miami-Fort Lauderdale-Pompano Beach, FL
2367        Miami-Fort Lauderdale-Pompano Beach, FL
2368        Miami-Fort Lauderdale-Pompano Beach, FL
2369                                Tallahassee, FL
2370        Miami-Fort Lauderdale-Pompano Beach, FL
2371                Charleston-North Charleston, SC
2372             Chicago-Naperville-Elgin, IL-IN-WI
2373             Chicago-Naperville-Elgin, IL-IN-WI
2374             Chicago-Naperville-Elgin, IL-IN-WI
2375             Chicago-Naperville-Elgin, IL-IN-WI
2376             Chicago-Naperville-Elgin, IL-IN-WI
2377                            Charlottesville, VA
2378    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2379    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2380                      Phoenix-Mesa-Chandler, AZ
2381                      Phoenix-Mesa-Chandler, AZ
2382                      Phoenix-Mesa-Chandler, AZ
2383                      Phoenix-Mesa-Chandler, AZ
2384            Portland-Vancouver-Hillsboro, OR-WA
2385                                Baton Rouge, LA
2386                               Raleigh-Cary, NC
2387                      Cape Coral-Fort Myers, FL
2388                       Kingsport-Bristol, TN-VA
2389                                 Pittsburgh, PA
2390                      Greensboro-High Point, NC
2391                                    Roanoke, VA
2392                          Birmingham-Hoover, AL
2393                    San Juan-Bayamón-Caguas, PR
2394                                   Columbus, OH
2395             Louisville/Jefferson County, KY-IN
2396                                   Fargo, ND-MN
2397                                       Yuma, AZ
2398                                  Anchorage, AK
2399                                  Anchorage, AK
2400                                           <NA>
2401   Washington-Arlington-Alexandria, DC-VA-MD-WV
2402                                  Ketchikan, AK
2403                             Urban Honolulu, HI
2404                                  Ketchikan, AK
2405             Los Angeles-Long Beach-Anaheim, CA
2406             Los Angeles-Long Beach-Anaheim, CA
2407                    Omaha-Council Bluffs, NE-IA
2408                                           <NA>
2409            Portland-Vancouver-Hillsboro, OR-WA
2410                    Kahului-Wailuku-Lahaina, HI
2411                    Seattle-Tacoma-Bellevue, WA
2412                    Seattle-Tacoma-Bellevue, WA
2413                    Seattle-Tacoma-Bellevue, WA
2414                    Seattle-Tacoma-Bellevue, WA
2415             San Francisco-Oakland-Berkeley, CA
2416                                Albuquerque, NM
2417                      Cape Coral-Fort Myers, FL
2418                    Albany-Schenectady-Troy, NY
2419          Hartford-East Hartford-Middletown, CT
2420          Hartford-East Hartford-Middletown, CT
2421                 Boston-Cambridge-Newton, MA-NH
2422                 Boston-Cambridge-Newton, MA-NH
2423                 Boston-Cambridge-Newton, MA-NH
2424                 Boston-Cambridge-Newton, MA-NH
2425             Los Angeles-Long Beach-Anaheim, CA
2426   Washington-Arlington-Alexandria, DC-VA-MD-WV
2427        Miami-Fort Lauderdale-Pompano Beach, FL
2428          New York-Newark-Jersey City, NY-NJ-PA
2429                    Seattle-Tacoma-Bellevue, WA
2430          New York-Newark-Jersey City, NY-NJ-PA
2431          New York-Newark-Jersey City, NY-NJ-PA
2432          New York-Newark-Jersey City, NY-NJ-PA
2433             Los Angeles-Long Beach-Anaheim, CA
2434             Los Angeles-Long Beach-Anaheim, CA
2435           Riverside-San Bernardino-Ontario, CA
2436                      Providence-Warwick, RI-MA
2437                      Providence-Warwick, RI-MA
2438             San Diego-Chula Vista-Carlsbad, CA
2439                    San Juan-Bayamón-Caguas, PR
2440                    San Juan-Bayamón-Caguas, PR
2441                Sacramento-Roseville-Folsom, CA
2442              North Port-Sarasota-Bradenton, FL
2443                                   Syracuse, NY
2444           Atlanta-Sandy Springs-Alpharetta, GA
2445           Atlanta-Sandy Springs-Alpharetta, GA
2446           Atlanta-Sandy Springs-Alpharetta, GA
2447           Atlanta-Sandy Springs-Alpharetta, GA
2448           Atlanta-Sandy Springs-Alpharetta, GA
2449           Atlanta-Sandy Springs-Alpharetta, GA
2450           Atlanta-Sandy Springs-Alpharetta, GA
2451           Atlanta-Sandy Springs-Alpharetta, GA
2452           Atlanta-Sandy Springs-Alpharetta, GA
2453           Atlanta-Sandy Springs-Alpharetta, GA
2454           Atlanta-Sandy Springs-Alpharetta, GA
2455           Atlanta-Sandy Springs-Alpharetta, GA
2456           Atlanta-Sandy Springs-Alpharetta, GA
2457           Atlanta-Sandy Springs-Alpharetta, GA
2458           Atlanta-Sandy Springs-Alpharetta, GA
2459           Atlanta-Sandy Springs-Alpharetta, GA
2460           Atlanta-Sandy Springs-Alpharetta, GA
2461           Atlanta-Sandy Springs-Alpharetta, GA
2462           Atlanta-Sandy Springs-Alpharetta, GA
2463           Atlanta-Sandy Springs-Alpharetta, GA
2464           Atlanta-Sandy Springs-Alpharetta, GA
2465           Atlanta-Sandy Springs-Alpharetta, GA
2466               Austin-Round Rock-Georgetown, TX
2467               Austin-Round Rock-Georgetown, TX
2468 Nashville-Davidson--Murfreesboro--Franklin, TN
2469                 Boston-Cambridge-Newton, MA-NH
2470                                 Jackson, WY-ID
2471              Charlotte-Concord-Gastonia, NC-SC
2472                           Cincinnati, OH-KY-IN
2473                           Cincinnati, OH-KY-IN
2474                           Cincinnati, OH-KY-IN
2475                              Traverse City, MI
2476                Dallas-Fort Worth-Arlington, TX
2477                    Detroit-Warren-Dearborn, MI
2478                    Detroit-Warren-Dearborn, MI
2479                    Detroit-Warren-Dearborn, MI
2480                    Detroit-Warren-Dearborn, MI
2481                    Detroit-Warren-Dearborn, MI
2482                    Detroit-Warren-Dearborn, MI
2483                    Detroit-Warren-Dearborn, MI
2484                    Detroit-Warren-Dearborn, MI
2485                    Detroit-Warren-Dearborn, MI
2486                                    El Paso, TX
2487              Palm Bay-Melbourne-Titusville, FL
2488   Washington-Arlington-Alexandria, DC-VA-MD-WV
2489               Indianapolis-Carmel-Anderson, IN
2490          New York-Newark-Jersey City, NY-NJ-PA
2491          New York-Newark-Jersey City, NY-NJ-PA
2492             Los Angeles-Long Beach-Anaheim, CA
2493             Los Angeles-Long Beach-Anaheim, CA
2494                  Orlando-Kissimmee-Sanford, FL
2495                              Memphis, TN-MS-AR
2496        Miami-Fort Lauderdale-Pompano Beach, FL
2497        Miami-Fort Lauderdale-Pompano Beach, FL
2498        Minneapolis-St. Paul-Bloomington, MN-WI
2499        Minneapolis-St. Paul-Bloomington, MN-WI
2500        Minneapolis-St. Paul-Bloomington, MN-WI
2501        Minneapolis-St. Paul-Bloomington, MN-WI
2502        Minneapolis-St. Paul-Bloomington, MN-WI
2503        Minneapolis-St. Paul-Bloomington, MN-WI
2504        Minneapolis-St. Paul-Bloomington, MN-WI
2505        Minneapolis-St. Paul-Bloomington, MN-WI
2506        Minneapolis-St. Paul-Bloomington, MN-WI
2507        Minneapolis-St. Paul-Bloomington, MN-WI
2508        Minneapolis-St. Paul-Bloomington, MN-WI
2509        Minneapolis-St. Paul-Bloomington, MN-WI
2510          New York-Newark-Jersey City, NY-NJ-PA
2511                      Greensboro-High Point, NC
2512                      Cape Coral-Fort Myers, FL
2513                  San Antonio-New Braunfels, TX
2514                    Seattle-Tacoma-Bellevue, WA
2515                    Seattle-Tacoma-Bellevue, WA
2516                                 Rapid City, SD
2517                    Seattle-Tacoma-Bellevue, WA
2518             San Francisco-Oakland-Berkeley, CA
2519                    San Juan-Bayamón-Caguas, PR
2520                             Salt Lake City, UT
2521                             Salt Lake City, UT
2522                             Salt Lake City, UT
2523                             Salt Lake City, UT
2524                             Salt Lake City, UT
2525                             Salt Lake City, UT
2526                             Salt Lake City, UT
2527                             Salt Lake City, UT
2528                             Salt Lake City, UT
2529                             Salt Lake City, UT
2530                             Salt Lake City, UT
2531                             Salt Lake City, UT
2532                             Salt Lake City, UT
2533                       Kingsport-Bristol, TN-VA
2534                Burlington-South Burlington, VT
2535          New York-Newark-Jersey City, NY-NJ-PA
2536          New York-Newark-Jersey City, NY-NJ-PA
2537          New York-Newark-Jersey City, NY-NJ-PA
2538          New York-Newark-Jersey City, NY-NJ-PA
2539          New York-Newark-Jersey City, NY-NJ-PA
2540          New York-Newark-Jersey City, NY-NJ-PA
2541   Washington-Arlington-Alexandria, DC-VA-MD-WV
2542   Washington-Arlington-Alexandria, DC-VA-MD-WV
2543             Los Angeles-Long Beach-Anaheim, CA
2544                                Tallahassee, FL
2545                      Brownsville-Harlingen, TX
2546                Dallas-Fort Worth-Arlington, TX
2547                Dallas-Fort Worth-Arlington, TX
2548                Dallas-Fort Worth-Arlington, TX
2549                Dallas-Fort Worth-Arlington, TX
2550                Dallas-Fort Worth-Arlington, TX
2551                Dallas-Fort Worth-Arlington, TX
2552                 Des Moines-West Des Moines, IA
2553    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2554                              Fort Smith, AR-OK
2555                             Grand Junction, CO
2556                                    Wichita, KS
2557                                    Jackson, MS
2558                               Lake Charles, LA
2559        Miami-Fort Lauderdale-Pompano Beach, FL
2560                    Omaha-Council Bluffs, NE-IA
2561             Chicago-Naperville-Elgin, IL-IN-WI
2562             Chicago-Naperville-Elgin, IL-IN-WI
2563             Chicago-Naperville-Elgin, IL-IN-WI
2564                                Springfield, IL
2565                                Tallahassee, FL
2566                             Salt Lake City, UT
2567                                    El Paso, TX
2568              Charlotte-Concord-Gastonia, NC-SC
2569              Charlotte-Concord-Gastonia, NC-SC
2570              Charlotte-Concord-Gastonia, NC-SC
2571              Charlotte-Concord-Gastonia, NC-SC
2572              Charlotte-Concord-Gastonia, NC-SC
2573              Charlotte-Concord-Gastonia, NC-SC
2574   Washington-Arlington-Alexandria, DC-VA-MD-WV
2575   Washington-Arlington-Alexandria, DC-VA-MD-WV
2576                      Greensboro-High Point, NC
2577                                    Madison, WI
2578    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2579                 Pensacola-Ferry Pass-Brent, FL
2580                                 Huntsville, AL
2581                                   Bismarck, ND
2582                                     Casper, WY
2583                             Corpus Christi, TX
2584                     Denver-Aurora-Lakewood, CO
2585                     Denver-Aurora-Lakewood, CO
2586                     Denver-Aurora-Lakewood, CO
2587                     Denver-Aurora-Lakewood, CO
2588                     Denver-Aurora-Lakewood, CO
2589                     Denver-Aurora-Lakewood, CO
2590                     Denver-Aurora-Lakewood, CO
2591                     Denver-Aurora-Lakewood, CO
2592                    Detroit-Warren-Dearborn, MI
2593                    Detroit-Warren-Dearborn, MI
2594                    Detroit-Warren-Dearborn, MI
2595                               St. Louis, MO-IL
2596          New York-Newark-Jersey City, NY-NJ-PA
2597           Houston-The Woodlands-Sugar Land, TX
2598           Houston-The Woodlands-Sugar Land, TX
2599           Houston-The Woodlands-Sugar Land, TX
2600           Houston-The Woodlands-Sugar Land, TX
2601             Los Angeles-Long Beach-Anaheim, CA
2602                                    Lubbock, TX
2603                                    Midland, TX
2604                             Kansas City, MO-KS
2605        Minneapolis-St. Paul-Bloomington, MN-WI
2606        Minneapolis-St. Paul-Bloomington, MN-WI
2607        Minneapolis-St. Paul-Bloomington, MN-WI
2608        Minneapolis-St. Paul-Bloomington, MN-WI
2609        Minneapolis-St. Paul-Bloomington, MN-WI
2610        Minneapolis-St. Paul-Bloomington, MN-WI
2611        Minneapolis-St. Paul-Bloomington, MN-WI
2612                    Omaha-Council Bluffs, NE-IA
2613             Chicago-Naperville-Elgin, IL-IN-WI
2614             Chicago-Naperville-Elgin, IL-IN-WI
2615             Chicago-Naperville-Elgin, IL-IN-WI
2616             Chicago-Naperville-Elgin, IL-IN-WI
2617             Chicago-Naperville-Elgin, IL-IN-WI
2618     Virginia Beach-Norfolk-Newport News, VA-NC
2619                      Phoenix-Mesa-Chandler, AZ
2620                                   Richmond, VA
2621                                   Savannah, GA
2622                    Seattle-Tacoma-Bellevue, WA
2623             San Francisco-Oakland-Berkeley, CA
2624             San Francisco-Oakland-Berkeley, CA
2625                             Salt Lake City, UT
2626                             Salt Lake City, UT
2627                             Salt Lake City, UT
2628                             Salt Lake City, UT
2629                             Salt Lake City, UT
2630                             Salt Lake City, UT
2631                             Salt Lake City, UT
2632                                     Tucson, AZ
2633            Portland-Vancouver-Hillsboro, OR-WA
2634   Washington-Arlington-Alexandria, DC-VA-MD-WV
2635                     Denver-Aurora-Lakewood, CO
2636                     Denver-Aurora-Lakewood, CO
2637                     Denver-Aurora-Lakewood, CO
2638                 Des Moines-West Des Moines, IA
2639          New York-Newark-Jersey City, NY-NJ-PA
2640          New York-Newark-Jersey City, NY-NJ-PA
2641                                  Anchorage, AK
2642                Sacramento-Roseville-Folsom, CA
2643   Washington-Arlington-Alexandria, DC-VA-MD-WV
2644   Washington-Arlington-Alexandria, DC-VA-MD-WV
2645   Washington-Arlington-Alexandria, DC-VA-MD-WV
2646   Washington-Arlington-Alexandria, DC-VA-MD-WV
2647           Houston-The Woodlands-Sugar Land, TX
2648           Houston-The Woodlands-Sugar Land, TX
2649           Houston-The Woodlands-Sugar Land, TX
2650           Houston-The Woodlands-Sugar Land, TX
2651           Houston-The Woodlands-Sugar Land, TX
2652           Houston-The Woodlands-Sugar Land, TX
2653           Houston-The Woodlands-Sugar Land, TX
2654           Houston-The Woodlands-Sugar Land, TX
2655                             Kansas City, MO-KS
2656                   McAllen-Edinburg-Mission, TX
2657                    Omaha-Council Bluffs, NE-IA
2658                                 Pittsburgh, PA
2659             San Diego-Chula Vista-Carlsbad, CA
2660                           Glenwood Springs, CO
2661             San Francisco-Oakland-Berkeley, CA
2662             San Francisco-Oakland-Berkeley, CA
2663             San Francisco-Oakland-Berkeley, CA
2664             San Francisco-Oakland-Berkeley, CA
2665                Sacramento-Roseville-Folsom, CA
2666                           Glenwood Springs, CO
2667             Los Angeles-Long Beach-Anaheim, CA
2668               Austin-Round Rock-Georgetown, TX
2669             Los Angeles-Long Beach-Anaheim, CA
2670                  Baltimore-Columbia-Towson, MD
2671                                   Columbus, OH
2672                     Denver-Aurora-Lakewood, CO
2673            Portland-Vancouver-Hillsboro, OR-WA
2674               Las Vegas-Henderson-Paradise, NV
2675               Las Vegas-Henderson-Paradise, NV
2676             San Diego-Chula Vista-Carlsbad, CA
2677                      Phoenix-Mesa-Chandler, AZ
2678                      Cape Coral-Fort Myers, FL
2679             San Diego-Chula Vista-Carlsbad, CA
2680                         Milwaukee-Waukesha, WI
2681                                    El Paso, TX
2682                                Sioux Falls, SD
2683           Houston-The Woodlands-Sugar Land, TX
2684           Houston-The Woodlands-Sugar Land, TX
2685           Houston-The Woodlands-Sugar Land, TX
2686                             Kansas City, MO-KS
2687                 Boston-Cambridge-Newton, MA-NH
2688                 Boston-Cambridge-Newton, MA-NH
2689                 Boston-Cambridge-Newton, MA-NH
2690                Charleston-North Charleston, SC
2691                                   Columbus, OH
2692   Washington-Arlington-Alexandria, DC-VA-MD-WV
2693                    Detroit-Warren-Dearborn, MI
2694          New York-Newark-Jersey City, NY-NJ-PA
2695          New York-Newark-Jersey City, NY-NJ-PA
2696          New York-Newark-Jersey City, NY-NJ-PA
2697          New York-Newark-Jersey City, NY-NJ-PA
2698                                Spartanburg, SC
2699          New York-Newark-Jersey City, NY-NJ-PA
2700          New York-Newark-Jersey City, NY-NJ-PA
2701          New York-Newark-Jersey City, NY-NJ-PA
2702                              Oklahoma City, OK
2703             Chicago-Naperville-Elgin, IL-IN-WI
2704             Chicago-Naperville-Elgin, IL-IN-WI
2705             Chicago-Naperville-Elgin, IL-IN-WI
2706             Chicago-Naperville-Elgin, IL-IN-WI
2707    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2708    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2709                    Shreveport-Bossier City, LA
2710                               Raleigh-Cary, NC
2711             Fayetteville-Springdale-Rogers, AR
2712                              Evansville, IN-KY
2713   Washington-Arlington-Alexandria, DC-VA-MD-WV
2714             Chicago-Naperville-Elgin, IL-IN-WI
2715             Chicago-Naperville-Elgin, IL-IN-WI
2716                 Pensacola-Ferry Pass-Brent, FL
2717        Minneapolis-St. Paul-Bloomington, MN-WI
2718           Riverside-San Bernardino-Ontario, CA
2719                      Cape Coral-Fort Myers, FL
2720              Charlotte-Concord-Gastonia, NC-SC
2721              Charlotte-Concord-Gastonia, NC-SC
2722                          Manchester-Nashua, NH
2723    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2725                          Birmingham-Hoover, AL
2726                     Denver-Aurora-Lakewood, CO
2727   Washington-Arlington-Alexandria, DC-VA-MD-WV
2728           Houston-The Woodlands-Sugar Land, TX
2729           Houston-The Woodlands-Sugar Land, TX
2730                                    Wichita, KS
2731       Little Rock-North Little Rock-Conway, AR
2732           Atlanta-Sandy Springs-Alpharetta, GA
2733                                     Bangor, ME
2734 Nashville-Davidson--Murfreesboro--Franklin, TN
2735                Burlington-South Burlington, VT
2736                  Baltimore-Columbia-Towson, MD
2737                      Grand Rapids-Kentwood, MI
2738                                Spartanburg, SC
2739          New York-Newark-Jersey City, NY-NJ-PA
2740          New York-Newark-Jersey City, NY-NJ-PA
2741          New York-Newark-Jersey City, NY-NJ-PA
2742          New York-Newark-Jersey City, NY-NJ-PA
2743          New York-Newark-Jersey City, NY-NJ-PA
2744             Fayetteville-Springdale-Rogers, AR
2745                               Raleigh-Cary, NC
2746                                   Richmond, VA
2747                                  Rochester, NY
2748                                  Rochester, NY
2749                                   Savannah, GA
2750                                   Savannah, GA
2751            Tampa-St. Petersburg-Clearwater, FL
2752                                 Huntsville, AL
2753               Austin-Round Rock-Georgetown, TX
2754                                     Tucson, AZ
2755                             Chattanooga, TN-GA
2756                                 Greenville, NC
2757                                 Boise City, ID
2758                    Kahului-Wailuku-Lahaina, HI
2759                                    Midland, TX
2760             Los Angeles-Long Beach-Anaheim, CA
2761                             Urban Honolulu, HI
2762                                  Lafayette, LA
2763                           Cleveland-Elyria, OH
2764                           Cleveland-Elyria, OH
2765                           Cleveland-Elyria, OH
2766                                  Anchorage, AK
2767              Charlotte-Concord-Gastonia, NC-SC
2768              Charlotte-Concord-Gastonia, NC-SC
2769              Charlotte-Concord-Gastonia, NC-SC
2770              Charlotte-Concord-Gastonia, NC-SC
2771              Charlotte-Concord-Gastonia, NC-SC
2772              Charlotte-Concord-Gastonia, NC-SC
2773              Charlotte-Concord-Gastonia, NC-SC
2774              Charlotte-Concord-Gastonia, NC-SC
2775              Charlotte-Concord-Gastonia, NC-SC
2776              Charlotte-Concord-Gastonia, NC-SC
2777              Charlotte-Concord-Gastonia, NC-SC
2778              Charlotte-Concord-Gastonia, NC-SC
2779              Charlotte-Concord-Gastonia, NC-SC
2780              Charlotte-Concord-Gastonia, NC-SC
2781                           Cincinnati, OH-KY-IN
2782   Washington-Arlington-Alexandria, DC-VA-MD-WV
2783   Washington-Arlington-Alexandria, DC-VA-MD-WV
2784                Dallas-Fort Worth-Arlington, TX
2785                Dallas-Fort Worth-Arlington, TX
2786                Dallas-Fort Worth-Arlington, TX
2787                Dallas-Fort Worth-Arlington, TX
2788                Dallas-Fort Worth-Arlington, TX
2789                Dallas-Fort Worth-Arlington, TX
2790                Dallas-Fort Worth-Arlington, TX
2791                Dallas-Fort Worth-Arlington, TX
2792                Dallas-Fort Worth-Arlington, TX
2793                Dallas-Fort Worth-Arlington, TX
2794                Dallas-Fort Worth-Arlington, TX
2795                Dallas-Fort Worth-Arlington, TX
2796                Dallas-Fort Worth-Arlington, TX
2797                Dallas-Fort Worth-Arlington, TX
2798                Dallas-Fort Worth-Arlington, TX
2799                Dallas-Fort Worth-Arlington, TX
2800                Dallas-Fort Worth-Arlington, TX
2801                Dallas-Fort Worth-Arlington, TX
2802                    Omaha-Council Bluffs, NE-IA
2803                          Lexington-Fayette, KY
2804                                   Syracuse, NY
2805                              Oklahoma City, OK
2806                                   Columbia, MO
2807                                       Reno, NV
2808                                           <NA>
2809                                   Columbus, OH
2810               Indianapolis-Carmel-Anderson, IN
2811                               Jacksonville, FL
2812                     Scranton--Wilkes-Barre, PA
2813                            Gulfport-Biloxi, MS
2814         Crestview-Fort Walton Beach-Destin, FL
2815                                      Tulsa, OK
2816                                     Bangor, ME
2817                 Augusta-Richmond County, GA-SC
2818             Los Angeles-Long Beach-Anaheim, CA
2819              North Port-Sarasota-Bradenton, FL
2820                               Grand Island, NE
2821                              Memphis, TN-MS-AR
2822                      Providence-Warwick, RI-MA
2823                                   Columbia, SC
2824  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2825                                     Mobile, AL
2826                             Kansas City, MO-KS
2827                          Steamboat Springs, CO
2828                              Memphis, TN-MS-AR
2829        Miami-Fort Lauderdale-Pompano Beach, FL
2830        Miami-Fort Lauderdale-Pompano Beach, FL
2831        Miami-Fort Lauderdale-Pompano Beach, FL
2832                                       Reno, NV
2833        Miami-Fort Lauderdale-Pompano Beach, FL
2834                 Des Moines-West Des Moines, IA
2835        Miami-Fort Lauderdale-Pompano Beach, FL
2836        Miami-Fort Lauderdale-Pompano Beach, FL
2837                                    Madison, WI
2838                                   Richmond, VA
2839                                       Waco, TX
2840             Chicago-Naperville-Elgin, IL-IN-WI
2841             Chicago-Naperville-Elgin, IL-IN-WI
2842           Riverside-San Bernardino-Ontario, CA
2843        Miami-Fort Lauderdale-Pompano Beach, FL
2844                                    El Paso, TX
2845                                   New Bern, NC
2846                    San Juan-Bayamón-Caguas, PR
2847                      Phoenix-Mesa-Chandler, AZ
2848                      Phoenix-Mesa-Chandler, AZ
2849                                 Pittsburgh, PA
2850                  Baltimore-Columbia-Towson, MD
2851                             Grand Junction, CO
2852                                  Rochester, NY
2853     Virginia Beach-Norfolk-Newport News, VA-NC
2854                 Pensacola-Ferry Pass-Brent, FL
2855             Los Angeles-Long Beach-Anaheim, CA
2856                      Brownsville-Harlingen, TX
2857                    Seattle-Tacoma-Bellevue, WA
2858                          Manchester-Nashua, NH
2859                                  Asheville, NC
2860             San Francisco-Oakland-Berkeley, CA
2861           Houston-The Woodlands-Sugar Land, TX
2862            Portland-Vancouver-Hillsboro, OR-WA
2863                    San Juan-Bayamón-Caguas, PR
2864                                   Columbia, SC
2865                                  Asheville, NC
2866                          Lexington-Fayette, KY
2867                               St. Louis, MO-IL
2868                                Columbus, GA-AL
2869            Tampa-St. Petersburg-Clearwater, FL
2870                                     Tucson, AZ
2871                                Albuquerque, NM
2872                Dallas-Fort Worth-Arlington, TX
2873                              Oklahoma City, OK
2874                Charleston-North Charleston, SC
2875                  Baltimore-Columbia-Towson, MD
2876               Indianapolis-Carmel-Anderson, IN
2877                                  Ketchikan, AK
2878                                  Ketchikan, AK
2879                  Orlando-Kissimmee-Sanford, FL
2880                         Milwaukee-Waukesha, WI
2881            Portland-Vancouver-Hillsboro, OR-WA
2882             San Diego-Chula Vista-Carlsbad, CA
2883                  San Antonio-New Braunfels, TX
2884                    Seattle-Tacoma-Bellevue, WA
2885                    Seattle-Tacoma-Bellevue, WA
2886                    Seattle-Tacoma-Bellevue, WA
2887                    Seattle-Tacoma-Bellevue, WA
2888                    Seattle-Tacoma-Bellevue, WA
2889                    Seattle-Tacoma-Bellevue, WA
2890                    Seattle-Tacoma-Bellevue, WA
2891                    Seattle-Tacoma-Bellevue, WA
2892                    Seattle-Tacoma-Bellevue, WA
2893                    Seattle-Tacoma-Bellevue, WA
2894                    Seattle-Tacoma-Bellevue, WA
2895                    Seattle-Tacoma-Bellevue, WA
2896             San Jose-Sunnyvale-Santa Clara, CA
2897          Hartford-East Hartford-Middletown, CT
2898          Hartford-East Hartford-Middletown, CT
2899          Hartford-East Hartford-Middletown, CT
2900                 Boston-Cambridge-Newton, MA-NH
2901                 Boston-Cambridge-Newton, MA-NH
2902                 Boston-Cambridge-Newton, MA-NH
2903                          Aguadilla-Isabela, PR
2904                        Buffalo-Cheektowaga, NY
2905                Charleston-North Charleston, SC
2906                           Cleveland-Elyria, OH
2907             San Diego-Chula Vista-Carlsbad, CA
2908   Washington-Arlington-Alexandria, DC-VA-MD-WV
2909          New York-Newark-Jersey City, NY-NJ-PA
2910          New York-Newark-Jersey City, NY-NJ-PA
2911        Miami-Fort Lauderdale-Pompano Beach, FL
2912        Miami-Fort Lauderdale-Pompano Beach, FL
2913        Miami-Fort Lauderdale-Pompano Beach, FL
2914        Miami-Fort Lauderdale-Pompano Beach, FL
2915        Miami-Fort Lauderdale-Pompano Beach, FL
2916          New York-Newark-Jersey City, NY-NJ-PA
2917          New York-Newark-Jersey City, NY-NJ-PA
2918           Houston-The Woodlands-Sugar Land, TX
2919                               Jacksonville, FL
2920                               Jacksonville, FL
2921                               Jacksonville, FL
2922                               Jacksonville, FL
2923          New York-Newark-Jersey City, NY-NJ-PA
2924          New York-Newark-Jersey City, NY-NJ-PA
2925          New York-Newark-Jersey City, NY-NJ-PA
2926          New York-Newark-Jersey City, NY-NJ-PA
2927          New York-Newark-Jersey City, NY-NJ-PA
2928                  Orlando-Kissimmee-Sanford, FL
2929        Miami-Fort Lauderdale-Pompano Beach, FL
2930        Miami-Fort Lauderdale-Pompano Beach, FL
2931        Miami-Fort Lauderdale-Pompano Beach, FL
2932        Miami-Fort Lauderdale-Pompano Beach, FL
2933        Miami-Fort Lauderdale-Pompano Beach, FL
2934                                      Ponce, PR
2935                                   Richmond, VA
2936                                   Richmond, VA
2937                                   Richmond, VA
2938                                       Reno, NV
2939                      Cape Coral-Fort Myers, FL
2940             San Diego-Chula Vista-Carlsbad, CA
2941                  San Antonio-New Braunfels, TX
2942             San Jose-Sunnyvale-Santa Clara, CA
2943                    San Juan-Bayamón-Caguas, PR
2944                Burlington-South Burlington, VT
2945              North Port-Sarasota-Bradenton, FL
2946                              Oklahoma City, OK
2947           Atlanta-Sandy Springs-Alpharetta, GA
2948           Atlanta-Sandy Springs-Alpharetta, GA
2949           Atlanta-Sandy Springs-Alpharetta, GA
2950           Atlanta-Sandy Springs-Alpharetta, GA
2951           Atlanta-Sandy Springs-Alpharetta, GA
2952           Atlanta-Sandy Springs-Alpharetta, GA
2953                                   Billings, MT
2954                                 Fort Wayne, IN
2955                             Urban Honolulu, HI
2956                                 Huntsville, AL
2957                                           <NA>
2958   Washington-Arlington-Alexandria, DC-VA-MD-WV
2959                    Detroit-Warren-Dearborn, MI
2960            Davenport-Moline-Rock Island, IA-IL
2961        Miami-Fort Lauderdale-Pompano Beach, FL
2962                           Cleveland-Elyria, OH
2963                          Lexington-Fayette, KY
2964                                     Elmira, NY
2965                                Columbus, GA-AL
2966                                 Fort Wayne, IN
2967                                 Wilmington, NC
2968                                     Albany, GA
2969             Chicago-Naperville-Elgin, IL-IN-WI
2970            Portland-Vancouver-Hillsboro, OR-WA
2971                      Cape Coral-Fort Myers, FL
2972   Washington-Arlington-Alexandria, DC-VA-MD-WV
2973                               St. Louis, MO-IL
2974                             Grand Junction, CO
2975                             Salt Lake City, UT
2976                                  Rochester, NY
2977               Indianapolis-Carmel-Anderson, IN
2978                     Denver-Aurora-Lakewood, CO
2979                     Denver-Aurora-Lakewood, CO
2980                     Denver-Aurora-Lakewood, CO
2981                     Denver-Aurora-Lakewood, CO
2982          New York-Newark-Jersey City, NY-NJ-PA
2983               Las Vegas-Henderson-Paradise, NV
2984                  Orlando-Kissimmee-Sanford, FL
2985           Riverside-San Bernardino-Ontario, CA
2986                      Cape Coral-Fort Myers, FL
2987                      Cape Coral-Fort Myers, FL
2988                               St. Louis, MO-IL
2989            Tampa-St. Petersburg-Clearwater, FL
2990                          Trenton-Princeton, NJ
2991                          Trenton-Princeton, NJ
2992                                  Knoxville, TN
2993             Fayetteville-Springdale-Rogers, AR
2994                      Grand Rapids-Kentwood, MI
2995                      Greensboro-High Point, NC
2996   Washington-Arlington-Alexandria, DC-VA-MD-WV
2997             Chicago-Naperville-Elgin, IL-IN-WI
2998                          Aguadilla-Isabela, PR
2999                               St. Louis, MO-IL
3000                                     Mobile, AL
3001                          Birmingham-Hoover, AL
3002                                     Lawton, OK
3003                             Chattanooga, TN-GA
3004                               Cedar Rapids, IA
3005   Washington-Arlington-Alexandria, DC-VA-MD-WV
3006                Dallas-Fort Worth-Arlington, TX
3007                Dallas-Fort Worth-Arlington, TX
3008                Dallas-Fort Worth-Arlington, TX
3009                Dallas-Fort Worth-Arlington, TX
3010                Dallas-Fort Worth-Arlington, TX
3011                Dallas-Fort Worth-Arlington, TX
3012                Dallas-Fort Worth-Arlington, TX
3013                      Grand Rapids-Kentwood, MI
3014        Miami-Fort Lauderdale-Pompano Beach, FL
3015        Miami-Fort Lauderdale-Pompano Beach, FL
3016        Miami-Fort Lauderdale-Pompano Beach, FL
3017             Chicago-Naperville-Elgin, IL-IN-WI
3018             Chicago-Naperville-Elgin, IL-IN-WI
3019             Chicago-Naperville-Elgin, IL-IN-WI
3020             Chicago-Naperville-Elgin, IL-IN-WI
3021              Charlotte-Concord-Gastonia, NC-SC
3022                                   Savannah, GA
3023                                  Knoxville, TN
3024                    Atlantic City-Hammonton, NJ
3025                                      Akron, OH
3026                           Cleveland-Elyria, OH
3027               Las Vegas-Henderson-Paradise, NV
3028             Los Angeles-Long Beach-Anaheim, CA
3029                         Milwaukee-Waukesha, WI
3030             Louisville/Jefferson County, KY-IN
3031                 Augusta-Richmond County, GA-SC
3032                           Cleveland-Elyria, OH
3033              Charlotte-Concord-Gastonia, NC-SC
3034              Charlotte-Concord-Gastonia, NC-SC
3035              Charlotte-Concord-Gastonia, NC-SC
3036              Charlotte-Concord-Gastonia, NC-SC
3037                           Cincinnati, OH-KY-IN
3038   Washington-Arlington-Alexandria, DC-VA-MD-WV
3039   Washington-Arlington-Alexandria, DC-VA-MD-WV
3040   Washington-Arlington-Alexandria, DC-VA-MD-WV
3041   Washington-Arlington-Alexandria, DC-VA-MD-WV
3042   Washington-Arlington-Alexandria, DC-VA-MD-WV
3043   Washington-Arlington-Alexandria, DC-VA-MD-WV
3044                 Des Moines-West Des Moines, IA
3045                          Birmingham-Hoover, AL
3046                                Panama City, FL
3047                                Gainesville, FL
3048                      Grand Rapids-Kentwood, MI
3049                                       Erie, PA
3050               Indianapolis-Carmel-Anderson, IN
3051    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3052                    South Bend-Mishawaka, IN-MI
3053               Austin-Round Rock-Georgetown, TX
3054                                Bakersfield, CA
3055                   Prescott Valley-Prescott, AZ
3056                        Santa Rosa-Petaluma, CA
3057                     Denver-Aurora-Lakewood, CO
3058                     Denver-Aurora-Lakewood, CO
3059                     Denver-Aurora-Lakewood, CO
3060                Dallas-Fort Worth-Arlington, TX
3061                Dallas-Fort Worth-Arlington, TX
3062                    Detroit-Warren-Dearborn, MI
3063                                 Fort Wayne, IN
3064                                     Juneau, AK
3065                                      Hobbs, NM
3066                                Idaho Falls, ID
3067             Los Angeles-Long Beach-Anaheim, CA
3068             Los Angeles-Long Beach-Anaheim, CA
3069             Los Angeles-Long Beach-Anaheim, CA
3070                                 Alexandria, LA
3071                                   Victoria, TX
3072        Minneapolis-St. Paul-Bloomington, MN-WI
3073             Chicago-Naperville-Elgin, IL-IN-WI
3074                    Portland-South Portland, ME
3075                                   Santa Fe, NM
3076                                   Savannah, GA
3077                                    Roanoke, VA
3078                    Seattle-Tacoma-Bellevue, WA
3079             San Francisco-Oakland-Berkeley, CA
3080             San Francisco-Oakland-Berkeley, CA
3081             San Francisco-Oakland-Berkeley, CA
3082             San Francisco-Oakland-Berkeley, CA
3083                             Salt Lake City, UT
3084                         Eugene-Springfield, OR
3085     Virginia Beach-Norfolk-Newport News, VA-NC
3086                                Walla Walla, WA
3087                                  Anchorage, AK
3088             Los Angeles-Long Beach-Anaheim, CA
3089                                    Salinas, CA
3090                    Seattle-Tacoma-Bellevue, WA
3091                    Seattle-Tacoma-Bellevue, WA
3092               Austin-Round Rock-Georgetown, TX
3093                             Urban Honolulu, HI
3094                                   Sikeston, MO
3095                                      Tulsa, OK
3096                    San Juan-Bayamón-Caguas, PR
3097                                   Columbus, OH
3098                     Denver-Aurora-Lakewood, CO
3099                     Denver-Aurora-Lakewood, CO
3100          New York-Newark-Jersey City, NY-NJ-PA
3101                                     Fresno, CA
3102   Washington-Arlington-Alexandria, DC-VA-MD-WV
3103   Washington-Arlington-Alexandria, DC-VA-MD-WV
3104           Houston-The Woodlands-Sugar Land, TX
3105           Houston-The Woodlands-Sugar Land, TX
3106           Houston-The Woodlands-Sugar Land, TX
3107           Houston-The Woodlands-Sugar Land, TX
3108           Houston-The Woodlands-Sugar Land, TX
3109           Houston-The Woodlands-Sugar Land, TX
3110            Portland-Vancouver-Hillsboro, OR-WA
3111                                    Redding, CA
3112             Los Angeles-Long Beach-Anaheim, CA
3113             Los Angeles-Long Beach-Anaheim, CA
3114                                           <NA>
3115                    San Juan-Bayamón-Caguas, PR
3116    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3117                                     Salina, KS
3118              North Port-Sarasota-Bradenton, FL
3119                             Corpus Christi, TX
3120                                    Liberal, KS
3121                                Albuquerque, NM
3122                                Albuquerque, NM
3123               Austin-Round Rock-Georgetown, TX
3124               Austin-Round Rock-Georgetown, TX
3125                          Birmingham-Hoover, AL
3126 Nashville-Davidson--Murfreesboro--Franklin, TN
3127 Nashville-Davidson--Murfreesboro--Franklin, TN
3128 Nashville-Davidson--Murfreesboro--Franklin, TN
3129                      Phoenix-Mesa-Chandler, AZ
3130                        Buffalo-Cheektowaga, NY
3131                  Baltimore-Columbia-Towson, MD
3132                  Baltimore-Columbia-Towson, MD
3133                  Baltimore-Columbia-Towson, MD
3134                  Baltimore-Columbia-Towson, MD
3135                  Baltimore-Columbia-Towson, MD
3136                  Baltimore-Columbia-Towson, MD
3137                  Baltimore-Columbia-Towson, MD
3138                  Baltimore-Columbia-Towson, MD
3139                  Baltimore-Columbia-Towson, MD
3140                  Baltimore-Columbia-Towson, MD
3141                Charleston-North Charleston, SC
3142                                   Columbus, OH
3143                                   Columbus, OH
3144                Dallas-Fort Worth-Arlington, TX
3145                Dallas-Fort Worth-Arlington, TX
3146                Dallas-Fort Worth-Arlington, TX
3147                Dallas-Fort Worth-Arlington, TX
3148                Dallas-Fort Worth-Arlington, TX
3149                Dallas-Fort Worth-Arlington, TX
3150                Dallas-Fort Worth-Arlington, TX
3151                Dallas-Fort Worth-Arlington, TX
3152   Washington-Arlington-Alexandria, DC-VA-MD-WV
3153   Washington-Arlington-Alexandria, DC-VA-MD-WV
3154                     Denver-Aurora-Lakewood, CO
3155                     Denver-Aurora-Lakewood, CO
3156        Miami-Fort Lauderdale-Pompano Beach, FL
3157           Houston-The Woodlands-Sugar Land, TX
3158           Houston-The Woodlands-Sugar Land, TX
3159           Houston-The Woodlands-Sugar Land, TX
3160           Houston-The Woodlands-Sugar Land, TX
3161          New York-Newark-Jersey City, NY-NJ-PA
3162               Las Vegas-Henderson-Paradise, NV
3163               Las Vegas-Henderson-Paradise, NV
3164                                    Lubbock, TX
3165                                    Lubbock, TX
3166             Los Angeles-Long Beach-Anaheim, CA
3167       Little Rock-North Little Rock-Conway, AR
3168                                    Midland, TX
3169                             Kansas City, MO-KS
3170                             Kansas City, MO-KS
3171                  Orlando-Kissimmee-Sanford, FL
3172                  Orlando-Kissimmee-Sanford, FL
3173                  Orlando-Kissimmee-Sanford, FL
3174             Chicago-Naperville-Elgin, IL-IN-WI
3175             Chicago-Naperville-Elgin, IL-IN-WI
3176             Chicago-Naperville-Elgin, IL-IN-WI
3177             Chicago-Naperville-Elgin, IL-IN-WI
3178             Chicago-Naperville-Elgin, IL-IN-WI
3179             Chicago-Naperville-Elgin, IL-IN-WI
3180             Chicago-Naperville-Elgin, IL-IN-WI
3181                              Memphis, TN-MS-AR
3182                         Milwaukee-Waukesha, WI
3183  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3184             San Francisco-Oakland-Berkeley, CA
3185             San Francisco-Oakland-Berkeley, CA
3186                    Omaha-Council Bluffs, NE-IA
3187                    Omaha-Council Bluffs, NE-IA
3188                      Phoenix-Mesa-Chandler, AZ
3189                      Phoenix-Mesa-Chandler, AZ
3190                      Phoenix-Mesa-Chandler, AZ
3191                                 Pittsburgh, PA
3192           Riverside-San Bernardino-Ontario, CA
3193                      Providence-Warwick, RI-MA
3194                      Providence-Warwick, RI-MA
3195                               Raleigh-Cary, NC
3196                                       Reno, NV
3197                                       Reno, NV
3198                                  Rochester, NY
3199                      Cape Coral-Fort Myers, FL
3200             San Diego-Chula Vista-Carlsbad, CA
3201             San Diego-Chula Vista-Carlsbad, CA
3202                  San Antonio-New Braunfels, TX
3203                  San Antonio-New Braunfels, TX
3204                                   Savannah, GA
3205             Louisville/Jefferson County, KY-IN
3206                Sacramento-Roseville-Folsom, CA
3207                               St. Louis, MO-IL
3208                               St. Louis, MO-IL
3209                               St. Louis, MO-IL
3210                               St. Louis, MO-IL
3211            Tampa-St. Petersburg-Clearwater, FL
3212            Tampa-St. Petersburg-Clearwater, FL
3213            Tampa-St. Petersburg-Clearwater, FL
3214                                      Tulsa, OK
3215                                      Tulsa, OK
3216                                   Savannah, GA
3217              Charlotte-Concord-Gastonia, NC-SC
3218                Dallas-Fort Worth-Arlington, TX
3219                Dallas-Fort Worth-Arlington, TX
3220                                       Yuma, AZ
3221                      Phoenix-Mesa-Chandler, AZ
3222                      Phoenix-Mesa-Chandler, AZ
3223                                   Richmond, VA
3224          Hartford-East Hartford-Middletown, CT
3225                 Boston-Cambridge-Newton, MA-NH
3226   Washington-Arlington-Alexandria, DC-VA-MD-WV
3227   Washington-Arlington-Alexandria, DC-VA-MD-WV
3228          New York-Newark-Jersey City, NY-NJ-PA
3229          New York-Newark-Jersey City, NY-NJ-PA
3230   Washington-Arlington-Alexandria, DC-VA-MD-WV
3231   Washington-Arlington-Alexandria, DC-VA-MD-WV
3232                                   Columbus, OH
3233          New York-Newark-Jersey City, NY-NJ-PA
3234          New York-Newark-Jersey City, NY-NJ-PA
3235          New York-Newark-Jersey City, NY-NJ-PA
3236             Chicago-Naperville-Elgin, IL-IN-WI
3237             Chicago-Naperville-Elgin, IL-IN-WI
3238             Chicago-Naperville-Elgin, IL-IN-WI
3239    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3240                                      Akron, OH
3241              North Port-Sarasota-Bradenton, FL
3242                                  Asheville, NC
3243            Portland-Vancouver-Hillsboro, OR-WA
3244                                     Fresno, CA
3245                                   Columbia, SC
3246                              Wausau-Weston, WI
3247           Houston-The Woodlands-Sugar Land, TX
3248                                       Erie, PA
3249   Washington-Arlington-Alexandria, DC-VA-MD-WV
3250                         Milwaukee-Waukesha, WI
3251             Chicago-Naperville-Elgin, IL-IN-WI
3252                              State College, PA
3253                     Scranton--Wilkes-Barre, PA
3254                           Cincinnati, OH-KY-IN
3255        Minneapolis-St. Paul-Bloomington, MN-WI
3256        Miami-Fort Lauderdale-Pompano Beach, FL
3257                 Boston-Cambridge-Newton, MA-NH
3258              Charlotte-Concord-Gastonia, NC-SC
3259                      Grand Rapids-Kentwood, MI
3260    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3261    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3262                                  Rochester, NY
3263                                Spartanburg, SC
3264                       New Orleans-Metairie, LA
3265           Houston-The Woodlands-Sugar Land, TX
3266                                   Santa Fe, NM
3267          Hartford-East Hartford-Middletown, CT
3268              Charlotte-Concord-Gastonia, NC-SC
3269                Dallas-Fort Worth-Arlington, TX
3270                Dallas-Fort Worth-Arlington, TX
3271                                 Montgomery, AL
3272    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3273                                       Hilo, HI
3274             Los Angeles-Long Beach-Anaheim, CA
3275                               Salisbury, MD-DE
3276                                 San Angelo, TX
3277                                  Marquette, MI
3278                      Phoenix-Mesa-Chandler, AZ
3279                       Beaumont-Port Arthur, TX
3280                                  Anchorage, AK
3281                                  Anchorage, AK
3282                                  Anchorage, AK
3283                    Seattle-Tacoma-Bellevue, WA
3284                                           <NA>
3285                                           <NA>
3286          New York-Newark-Jersey City, NY-NJ-PA
3287          New York-Newark-Jersey City, NY-NJ-PA
3288                      Providence-Warwick, RI-MA
3289                  San Antonio-New Braunfels, TX
3290           Atlanta-Sandy Springs-Alpharetta, GA
3291           Atlanta-Sandy Springs-Alpharetta, GA
3292           Atlanta-Sandy Springs-Alpharetta, GA
3293           Atlanta-Sandy Springs-Alpharetta, GA
3294           Atlanta-Sandy Springs-Alpharetta, GA
3295           Atlanta-Sandy Springs-Alpharetta, GA
3296                                Gainesville, FL
3297                                  Anchorage, AK
3298                    Shreveport-Bossier City, LA
3299                                    Bozeman, MT
3300                               St. Louis, MO-IL
3301   Washington-Arlington-Alexandria, DC-VA-MD-WV
3302                Dallas-Fort Worth-Arlington, TX
3303                Dallas-Fort Worth-Arlington, TX
3304                                    Salinas, CA
3305              Charlotte-Concord-Gastonia, NC-SC
3306              Charlotte-Concord-Gastonia, NC-SC
3307   Washington-Arlington-Alexandria, DC-VA-MD-WV
3308   Washington-Arlington-Alexandria, DC-VA-MD-WV
3309                               Salisbury, MD-DE
3310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3311                     Denver-Aurora-Lakewood, CO
3312                                    Lubbock, TX
3313             Chicago-Naperville-Elgin, IL-IN-WI
3314                  San Antonio-New Braunfels, TX
3315             San Francisco-Oakland-Berkeley, CA
3316          New York-Newark-Jersey City, NY-NJ-PA
3317          New York-Newark-Jersey City, NY-NJ-PA
3318           Houston-The Woodlands-Sugar Land, TX
3319                             Urban Honolulu, HI
3320             San Diego-Chula Vista-Carlsbad, CA
3321                                      Minot, ND
3322             San Francisco-Oakland-Berkeley, CA
3323                  Baltimore-Columbia-Towson, MD
3324   Washington-Arlington-Alexandria, DC-VA-MD-WV
3325                         Eugene-Springfield, OR
3326                     Spokane-Spokane Valley, WA
3327             Chicago-Naperville-Elgin, IL-IN-WI
3328                    Omaha-Council Bluffs, NE-IA
3329             Los Angeles-Long Beach-Anaheim, CA
3330             San Diego-Chula Vista-Carlsbad, CA
3331             San Diego-Chula Vista-Carlsbad, CA
3332             Los Angeles-Long Beach-Anaheim, CA
3333                               St. Louis, MO-IL
3334            Tampa-St. Petersburg-Clearwater, FL
3335                Charleston-North Charleston, SC
3336                Dallas-Fort Worth-Arlington, TX
3337                Dallas-Fort Worth-Arlington, TX
3338                Dallas-Fort Worth-Arlington, TX
3339           Houston-The Woodlands-Sugar Land, TX
3340           Houston-The Woodlands-Sugar Land, TX
3341           Houston-The Woodlands-Sugar Land, TX
3342                                 Rapid City, SD
3343              Charlotte-Concord-Gastonia, NC-SC
3344              Charlotte-Concord-Gastonia, NC-SC
3345          New York-Newark-Jersey City, NY-NJ-PA
3346     Virginia Beach-Norfolk-Newport News, VA-NC
3347    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3348        Minneapolis-St. Paul-Bloomington, MN-WI
3349    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3350    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3351                     Denver-Aurora-Lakewood, CO
3352                     Denver-Aurora-Lakewood, CO
3353                    Shreveport-Bossier City, LA
3354    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3355             Chicago-Naperville-Elgin, IL-IN-WI
3356           Atlanta-Sandy Springs-Alpharetta, GA
3357   Washington-Arlington-Alexandria, DC-VA-MD-WV
3358                Dallas-Fort Worth-Arlington, TX
3359                Dallas-Fort Worth-Arlington, TX
3360                                     Peoria, IL
3361                San Luis Obispo-Paso Robles, CA
3362                      College Station-Bryan, TX
3363        Miami-Fort Lauderdale-Pompano Beach, FL
3364    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3365                           Champaign-Urbana, IL
3366           Atlanta-Sandy Springs-Alpharetta, GA
3367           Atlanta-Sandy Springs-Alpharetta, GA
3368                  Baltimore-Columbia-Towson, MD
3369                    Detroit-Warren-Dearborn, MI
3370             Chicago-Naperville-Elgin, IL-IN-WI
3371                                Bakersfield, CA
3372                Dallas-Fort Worth-Arlington, TX
3373        Miami-Fort Lauderdale-Pompano Beach, FL
3374   Washington-Arlington-Alexandria, DC-VA-MD-WV
3375   Washington-Arlington-Alexandria, DC-VA-MD-WV
3376                     Denver-Aurora-Lakewood, CO
3377                                           <NA>
3378             Chicago-Naperville-Elgin, IL-IN-WI
3379                         Kennewick-Richland, WA
3380             San Francisco-Oakland-Berkeley, CA
3381                                       Reno, NV
3382                     Denver-Aurora-Lakewood, CO
3383          New York-Newark-Jersey City, NY-NJ-PA
3384          New York-Newark-Jersey City, NY-NJ-PA
3385           Houston-The Woodlands-Sugar Land, TX
3386               Indianapolis-Carmel-Anderson, IN
3387             San Francisco-Oakland-Berkeley, CA
3388                      Cape Coral-Fort Myers, FL
3389               Las Vegas-Henderson-Paradise, NV
3390                                   Amarillo, TX
3391                Dallas-Fort Worth-Arlington, TX
3392                Dallas-Fort Worth-Arlington, TX
3393           Houston-The Woodlands-Sugar Land, TX
3394                             Kansas City, MO-KS
3395                             Salt Lake City, UT
3396             Louisville/Jefferson County, KY-IN
3397           Houston-The Woodlands-Sugar Land, TX
3398              Charlotte-Concord-Gastonia, NC-SC
3399           Atlanta-Sandy Springs-Alpharetta, GA
3400                Dallas-Fort Worth-Arlington, TX
3401          New York-Newark-Jersey City, NY-NJ-PA
3402           Atlanta-Sandy Springs-Alpharetta, GA
3403                                Bloomington, IL
3404                               Cedar Rapids, IA
3405                    Detroit-Warren-Dearborn, MI
3406          New York-Newark-Jersey City, NY-NJ-PA
3407                              Memphis, TN-MS-AR
3408            Davenport-Moline-Rock Island, IA-IL
3409                             Urban Honolulu, HI
3410                    South Bend-Mishawaka, IN-MI
3411               Austin-Round Rock-Georgetown, TX
3412                                Spartanburg, SC
3413                                    Durango, CO
3414              Charlotte-Concord-Gastonia, NC-SC
3415              Charlotte-Concord-Gastonia, NC-SC
3416              Charlotte-Concord-Gastonia, NC-SC
3417              Charlotte-Concord-Gastonia, NC-SC
3418              Charlotte-Concord-Gastonia, NC-SC
3419              Charlotte-Concord-Gastonia, NC-SC
3420              Charlotte-Concord-Gastonia, NC-SC
3421                Dallas-Fort Worth-Arlington, TX
3422                Dallas-Fort Worth-Arlington, TX
3423                Dallas-Fort Worth-Arlington, TX
3424                Dallas-Fort Worth-Arlington, TX
3425                Dallas-Fort Worth-Arlington, TX
3426                                 Jackson, WY-ID
3427                                Springfield, MO
3428                                    Abilene, TX
3429                    San Juan-Bayamón-Caguas, PR
3430        Miami-Fort Lauderdale-Pompano Beach, FL
3431                                   Bismarck, ND
3432                      Grand Rapids-Kentwood, MI
3433                  Santa Maria-Santa Barbara, CA
3434                                 Bellingham, WA
3435                      Phoenix-Mesa-Chandler, AZ
3436                Burlington-South Burlington, VT
3437                  San Antonio-New Braunfels, TX
3438                              Wichita Falls, TX
3439             Los Angeles-Long Beach-Anaheim, CA
3440                                 Pittsburgh, PA
3441             Los Angeles-Long Beach-Anaheim, CA
3442                Dallas-Fort Worth-Arlington, TX
3443                      Phoenix-Mesa-Chandler, AZ
3444           Riverside-San Bernardino-Ontario, CA
3445            Portland-Vancouver-Hillsboro, OR-WA
3446            Portland-Vancouver-Hillsboro, OR-WA
3447            Portland-Vancouver-Hillsboro, OR-WA
3448            Portland-Vancouver-Hillsboro, OR-WA
3449                San Luis Obispo-Paso Robles, CA
3450             San Diego-Chula Vista-Carlsbad, CA
3451                    Seattle-Tacoma-Bellevue, WA
3452                    Seattle-Tacoma-Bellevue, WA
3453                    Seattle-Tacoma-Bellevue, WA
3454                    Seattle-Tacoma-Bellevue, WA
3455                    Seattle-Tacoma-Bellevue, WA
3456                                           <NA>
3457                                           <NA>
3458             San Jose-Sunnyvale-Santa Clara, CA
3459             Los Angeles-Long Beach-Anaheim, CA
3460          Hartford-East Hartford-Middletown, CT
3461                 Boston-Cambridge-Newton, MA-NH
3462                 Boston-Cambridge-Newton, MA-NH
3463          New York-Newark-Jersey City, NY-NJ-PA
3464             Los Angeles-Long Beach-Anaheim, CA
3465             Los Angeles-Long Beach-Anaheim, CA
3466          New York-Newark-Jersey City, NY-NJ-PA
3467                    San Juan-Bayamón-Caguas, PR
3468           Atlanta-Sandy Springs-Alpharetta, GA
3469           Atlanta-Sandy Springs-Alpharetta, GA
3470                             Grand Forks, ND-MN
3471           Atlanta-Sandy Springs-Alpharetta, GA
3472                                    Wichita, KS
3473                 Boston-Cambridge-Newton, MA-NH
3474                                    Bozeman, MT
3475                                 Boise City, ID
3476                                Tallahassee, FL
3477                                   Columbia, SC
3478                                      Minot, ND
3479                                Lewiston, ID-WA
3480                                    Medford, OR
3481             Los Angeles-Long Beach-Anaheim, CA
3482                             Kansas City, MO-KS
3483                              Memphis, TN-MS-AR
3484                                   Missoula, MT
3485                           Glenwood Springs, CO
3486        Minneapolis-St. Paul-Bloomington, MN-WI
3487            Portland-Vancouver-Hillsboro, OR-WA
3488                                      Tulsa, OK
3489                                     Mobile, AL
3490                              Traverse City, MI
3491                           Dayton-Kettering, OH
3492                Dallas-Fort Worth-Arlington, TX
3493                Dallas-Fort Worth-Arlington, TX
3494                Dallas-Fort Worth-Arlington, TX
3495                Dallas-Fort Worth-Arlington, TX
3496                                Gainesville, FL
3497        Miami-Fort Lauderdale-Pompano Beach, FL
3498                                 Charleston, WV
3499              Charlotte-Concord-Gastonia, NC-SC
3500   Washington-Arlington-Alexandria, DC-VA-MD-WV
3501                                    Madison, WI
3502     Virginia Beach-Norfolk-Newport News, VA-NC
3503    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3504                                   Bismarck, ND
3505                                   Brainerd, MN
3506                     Denver-Aurora-Lakewood, CO
3507                     Denver-Aurora-Lakewood, CO
3508                     Denver-Aurora-Lakewood, CO
3509                     Denver-Aurora-Lakewood, CO
3510                Dallas-Fort Worth-Arlington, TX
3511                Dallas-Fort Worth-Arlington, TX
3512                Dallas-Fort Worth-Arlington, TX
3513   Washington-Arlington-Alexandria, DC-VA-MD-WV
3514                                   Appleton, WI
3515                                  Marquette, MI
3516        Minneapolis-St. Paul-Bloomington, MN-WI
3517        Minneapolis-St. Paul-Bloomington, MN-WI
3518                    Omaha-Council Bluffs, NE-IA
3519             Chicago-Naperville-Elgin, IL-IN-WI
3520             Chicago-Naperville-Elgin, IL-IN-WI
3521            Portland-Vancouver-Hillsboro, OR-WA
3522            Portland-Vancouver-Hillsboro, OR-WA
3523                      Phoenix-Mesa-Chandler, AZ
3524                      Phoenix-Mesa-Chandler, AZ
3525                     Spokane-Spokane Valley, WA
3526   Washington-Arlington-Alexandria, DC-VA-MD-WV
3527             San Diego-Chula Vista-Carlsbad, CA
3528                San Luis Obispo-Paso Robles, CA
3529                             Salt Lake City, UT
3530                             Salt Lake City, UT
3531                             Salt Lake City, UT
3532                             Salt Lake City, UT
3533                             Salt Lake City, UT
3534                    Seattle-Tacoma-Bellevue, WA
3535                                    Pullman, WA
3536                  Santa Maria-Santa Barbara, CA
3537                    Seattle-Tacoma-Bellevue, WA
3538                    Seattle-Tacoma-Bellevue, WA
3539                     Denver-Aurora-Lakewood, CO
3540   Washington-Arlington-Alexandria, DC-VA-MD-WV
3541   Washington-Arlington-Alexandria, DC-VA-MD-WV
3542           Houston-The Woodlands-Sugar Land, TX
3543                                  Knoxville, TN
3544                                           <NA>
3545                                   Syracuse, NY
3546             Chicago-Naperville-Elgin, IL-IN-WI
3547                                    Jackson, MS
3548                                       Reno, NV
3549             San Francisco-Oakland-Berkeley, CA
3550             San Francisco-Oakland-Berkeley, CA
3551             Los Angeles-Long Beach-Anaheim, CA
3552                                 Charleston, WV
3553                             Grand Junction, CO
3554                Dallas-Fort Worth-Arlington, TX
3555                     Denver-Aurora-Lakewood, CO
3556        Miami-Fort Lauderdale-Pompano Beach, FL
3557                      Grand Rapids-Kentwood, MI
3558           Houston-The Woodlands-Sugar Land, TX
3559               Las Vegas-Henderson-Paradise, NV
3560                      Phoenix-Mesa-Chandler, AZ
3561                                 Pittsburgh, PA
3562                Sacramento-Roseville-Folsom, CA
3563                               St. Louis, MO-IL
3564                               St. Louis, MO-IL
3565                Sacramento-Roseville-Folsom, CA
3566   Washington-Arlington-Alexandria, DC-VA-MD-WV
3567           Houston-The Woodlands-Sugar Land, TX
3568           Houston-The Woodlands-Sugar Land, TX
3569                  Santa Maria-Santa Barbara, CA
3570              Charlotte-Concord-Gastonia, NC-SC
3571                      Grand Rapids-Kentwood, MI
3572    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3573             Chicago-Naperville-Elgin, IL-IN-WI
3574                           Dayton-Kettering, OH
3575    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3576                     Denver-Aurora-Lakewood, CO
3577                                 Boise City, ID
3578           Houston-The Woodlands-Sugar Land, TX
3579                         Eugene-Springfield, OR
3580           Atlanta-Sandy Springs-Alpharetta, GA
3581           Atlanta-Sandy Springs-Alpharetta, GA
3582                 Des Moines-West Des Moines, IA
3583                    Detroit-Warren-Dearborn, MI
3584          New York-Newark-Jersey City, NY-NJ-PA
3585          New York-Newark-Jersey City, NY-NJ-PA
3586        Minneapolis-St. Paul-Bloomington, MN-WI
3587        Minneapolis-St. Paul-Bloomington, MN-WI
3588                                  Knoxville, TN
3589                                Springfield, MO
3590                                    Bozeman, MT
3591                San Luis Obispo-Paso Robles, CA
3592              Charlotte-Concord-Gastonia, NC-SC
3593                                   Missoula, MT
3594                                Panama City, FL
3595                Dallas-Fort Worth-Arlington, TX
3596                Dallas-Fort Worth-Arlington, TX
3597                Dallas-Fort Worth-Arlington, TX
3598                 Des Moines-West Des Moines, IA
3599                         Eugene-Springfield, OR
3600                        Buffalo-Cheektowaga, NY
3601                                    Edwards, CO
3602                      Phoenix-Mesa-Chandler, AZ
3603                                Bloomington, IL
3604                                   Key West, FL
3605                                           <NA>
3606                                  Anchorage, AK
3607                                 Boise City, ID
3608                Dallas-Fort Worth-Arlington, TX
3609                             Urban Honolulu, HI
3610             Chicago-Naperville-Elgin, IL-IN-WI
3611            Portland-Vancouver-Hillsboro, OR-WA
3612            Portland-Vancouver-Hillsboro, OR-WA
3613            Portland-Vancouver-Hillsboro, OR-WA
3614             San Diego-Chula Vista-Carlsbad, CA
3615                    Seattle-Tacoma-Bellevue, WA
3616                                     Tucson, AZ
3617                 Boston-Cambridge-Newton, MA-NH
3618          New York-Newark-Jersey City, NY-NJ-PA
3619           Atlanta-Sandy Springs-Alpharetta, GA
3620           Atlanta-Sandy Springs-Alpharetta, GA
3621                    South Bend-Mishawaka, IN-MI
3622        Minneapolis-St. Paul-Bloomington, MN-WI
3623                                   Columbus, MS
3624                             Salt Lake City, UT
3625                Dallas-Fort Worth-Arlington, TX
3626                Dallas-Fort Worth-Arlington, TX
3627                Dallas-Fort Worth-Arlington, TX
3628                Dallas-Fort Worth-Arlington, TX
3629                  San Antonio-New Braunfels, TX
3630       Little Rock-North Little Rock-Conway, AR
3631        Miami-Fort Lauderdale-Pompano Beach, FL
3632  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3633                          Aguadilla-Isabela, PR
3634                                   Columbia, SC
3635              Charlotte-Concord-Gastonia, NC-SC
3636   Washington-Arlington-Alexandria, DC-VA-MD-WV
3637                                Sioux Falls, SD
3638                          Manchester-Nashua, NH
3639    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3640                                Albuquerque, NM
3641                                   Billings, MT
3642                Dallas-Fort Worth-Arlington, TX
3643                Dallas-Fort Worth-Arlington, TX
3644                    Detroit-Warren-Dearborn, MI
3645                    Detroit-Warren-Dearborn, MI
3646                     Spokane-Spokane Valley, WA
3647        Minneapolis-St. Paul-Bloomington, MN-WI
3648             Chicago-Naperville-Elgin, IL-IN-WI
3649                                    Edwards, CO
3650             San Francisco-Oakland-Berkeley, CA
3651             San Jose-Sunnyvale-Santa Clara, CA
3652                             Salt Lake City, UT
3653                             Salt Lake City, UT
3654                             Salt Lake City, UT
3655               Las Vegas-Henderson-Paradise, NV
3656             San Diego-Chula Vista-Carlsbad, CA
3657                    Seattle-Tacoma-Bellevue, WA
3658                     Denver-Aurora-Lakewood, CO
3659                Hilton Head Island-Bluffton, SC
3660             Chicago-Naperville-Elgin, IL-IN-WI
3661                 Pensacola-Ferry Pass-Brent, FL
3662                                     Helena, MT
3663                                   Key West, FL
3664                  San Antonio-New Braunfels, TX
3665                            Gulfport-Biloxi, MS
3666             Los Angeles-Long Beach-Anaheim, CA
3667   Washington-Arlington-Alexandria, DC-VA-MD-WV
3668          New York-Newark-Jersey City, NY-NJ-PA
3669                  Orlando-Kissimmee-Sanford, FL
3670             Chicago-Naperville-Elgin, IL-IN-WI
3671             San Francisco-Oakland-Berkeley, CA
3672             San Francisco-Oakland-Berkeley, CA
3673             San Francisco-Oakland-Berkeley, CA
3674                      Phoenix-Mesa-Chandler, AZ
3675                                    Wichita, KS
3676              Charlotte-Concord-Gastonia, NC-SC
3677                Sacramento-Roseville-Folsom, CA
3678                               St. Louis, MO-IL
3679                Dallas-Fort Worth-Arlington, TX
3680                                   Fargo, ND-MN
3681                                Sioux Falls, SD
3682           Houston-The Woodlands-Sugar Land, TX
3683           Houston-The Woodlands-Sugar Land, TX
3684            Davenport-Moline-Rock Island, IA-IL
3685                               Raleigh-Cary, NC
3686   Washington-Arlington-Alexandria, DC-VA-MD-WV
3687   Washington-Arlington-Alexandria, DC-VA-MD-WV
3688          New York-Newark-Jersey City, NY-NJ-PA
3689                              Memphis, TN-MS-AR
3690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3691             Chicago-Naperville-Elgin, IL-IN-WI
3692              Charlotte-Concord-Gastonia, NC-SC
3693              Charlotte-Concord-Gastonia, NC-SC
3694    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3695    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3696           Houston-The Woodlands-Sugar Land, TX
3697                                     Mobile, AL
3698           Atlanta-Sandy Springs-Alpharetta, GA
3699                    Detroit-Warren-Dearborn, MI
3700                                  Anchorage, AK
3701                                     Bangor, ME
3702              Charlotte-Concord-Gastonia, NC-SC
3703        Miami-Fort Lauderdale-Pompano Beach, FL
3704                                    Lubbock, TX
3705                Dallas-Fort Worth-Arlington, TX
3706                Dallas-Fort Worth-Arlington, TX
3707                Dallas-Fort Worth-Arlington, TX
3708                Dallas-Fort Worth-Arlington, TX
3709                Dallas-Fort Worth-Arlington, TX
3710                Dallas-Fort Worth-Arlington, TX
3711                Dallas-Fort Worth-Arlington, TX
3712                Dallas-Fort Worth-Arlington, TX
3713                Dallas-Fort Worth-Arlington, TX
3714                         Milwaukee-Waukesha, WI
3715          New York-Newark-Jersey City, NY-NJ-PA
3716          New York-Newark-Jersey City, NY-NJ-PA
3717                        Buffalo-Cheektowaga, NY
3718                          Steamboat Springs, CO
3719        Miami-Fort Lauderdale-Pompano Beach, FL
3720     Virginia Beach-Norfolk-Newport News, VA-NC
3721                                   Savannah, GA
3722                    San Juan-Bayamón-Caguas, PR
3723                                Springfield, MO
3724                             Salt Lake City, UT
3725                                  Anchorage, AK
3726                                           <NA>
3727                                           <NA>
3728          New York-Newark-Jersey City, NY-NJ-PA
3729               Las Vegas-Henderson-Paradise, NV
3730                    San Juan-Bayamón-Caguas, PR
3731            Tampa-St. Petersburg-Clearwater, FL
3732           Atlanta-Sandy Springs-Alpharetta, GA
3733                              Memphis, TN-MS-AR
3734          New York-Newark-Jersey City, NY-NJ-PA
3735                Dallas-Fort Worth-Arlington, TX
3736                Dallas-Fort Worth-Arlington, TX
3737        Miami-Fort Lauderdale-Pompano Beach, FL
3738                              Oklahoma City, OK
3739                         Milwaukee-Waukesha, WI
3740                               Cedar Rapids, IA
3741              Charlotte-Concord-Gastonia, NC-SC
3742              Charlotte-Concord-Gastonia, NC-SC
3743   Washington-Arlington-Alexandria, DC-VA-MD-WV
3744   Washington-Arlington-Alexandria, DC-VA-MD-WV
3745                              Memphis, TN-MS-AR
3746                    Albany-Schenectady-Troy, NY
3747                Dallas-Fort Worth-Arlington, TX
3748           Houston-The Woodlands-Sugar Land, TX
3749             Los Angeles-Long Beach-Anaheim, CA
3750                                Lewiston, ID-WA
3751             Chicago-Naperville-Elgin, IL-IN-WI
3752             Chicago-Naperville-Elgin, IL-IN-WI
3753             Chicago-Naperville-Elgin, IL-IN-WI
3754                      Phoenix-Mesa-Chandler, AZ
3755                San Luis Obispo-Paso Robles, CA
3756             San Francisco-Oakland-Berkeley, CA
3757                             Salt Lake City, UT
3758                                           <NA>
3759                                 Huntsville, AL
3760                      Brownsville-Harlingen, TX
3761   Washington-Arlington-Alexandria, DC-VA-MD-WV
3762           Houston-The Woodlands-Sugar Land, TX
3763             Chicago-Naperville-Elgin, IL-IN-WI
3764             San Francisco-Oakland-Berkeley, CA
3765                                Albuquerque, NM
3766 Nashville-Davidson--Murfreesboro--Franklin, TN
3767 Nashville-Davidson--Murfreesboro--Franklin, TN
3768                  Baltimore-Columbia-Towson, MD
3769                  Baltimore-Columbia-Towson, MD
3770                     Denver-Aurora-Lakewood, CO
3771                               Jacksonville, FL
3772                          Steamboat Springs, CO
3773           Houston-The Woodlands-Sugar Land, TX
3774               Las Vegas-Henderson-Paradise, NV
3775               Las Vegas-Henderson-Paradise, NV
3776               Las Vegas-Henderson-Paradise, NV
3777               Las Vegas-Henderson-Paradise, NV
3778               Las Vegas-Henderson-Paradise, NV
3779       Little Rock-North Little Rock-Conway, AR
3780                  Orlando-Kissimmee-Sanford, FL
3781             Chicago-Naperville-Elgin, IL-IN-WI
3782                          Manchester-Nashua, NH
3783                          Manchester-Nashua, NH
3784                         Milwaukee-Waukesha, WI
3785            Portland-Vancouver-Hillsboro, OR-WA
3786            Portland-Vancouver-Hillsboro, OR-WA
3787                      Phoenix-Mesa-Chandler, AZ
3788                      Phoenix-Mesa-Chandler, AZ
3789                  San Antonio-New Braunfels, TX
3790             Louisville/Jefferson County, KY-IN
3791                Sacramento-Roseville-Folsom, CA
3792                Sacramento-Roseville-Folsom, CA
3793                               St. Louis, MO-IL
3794                Dallas-Fort Worth-Arlington, TX
3795                Dallas-Fort Worth-Arlington, TX
3796                    Detroit-Warren-Dearborn, MI
3797                                 Huntsville, AL
3798                      Phoenix-Mesa-Chandler, AZ
3799                      Phoenix-Mesa-Chandler, AZ
3800              Charlotte-Concord-Gastonia, NC-SC
3801          New York-Newark-Jersey City, NY-NJ-PA
3802                               Raleigh-Cary, NC
3803             Chicago-Naperville-Elgin, IL-IN-WI
3804   Washington-Arlington-Alexandria, DC-VA-MD-WV
3805                              Oklahoma City, OK
3806                               Worcester, MA-CT
3807                                   Billings, MT
3808                Hilton Head Island-Bluffton, SC
3809                  Baltimore-Columbia-Towson, MD
3810        Miami-Fort Lauderdale-Pompano Beach, FL
3811                Charleston-North Charleston, SC
3812        Miami-Fort Lauderdale-Pompano Beach, FL
3813          New York-Newark-Jersey City, NY-NJ-PA
3814                               Worcester, MA-CT
3815                               Worcester, MA-CT
3816                    San Juan-Bayamón-Caguas, PR
3817                                           <NA>
3818                                    Madison, WI
3819                                Bloomington, IL
3820                        Buffalo-Cheektowaga, NY
3821                     Denver-Aurora-Lakewood, CO
3822                     Denver-Aurora-Lakewood, CO
3823                     Denver-Aurora-Lakewood, CO
3824                 Des Moines-West Des Moines, IA
3825                                    Durango, CO
3826                                Sioux Falls, SD
3827                      Brownsville-Harlingen, TX
3828    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3829          New York-Newark-Jersey City, NY-NJ-PA
3830          New York-Newark-Jersey City, NY-NJ-PA
3831               Las Vegas-Henderson-Paradise, NV
3832                  Orlando-Kissimmee-Sanford, FL
3833                  Orlando-Kissimmee-Sanford, FL
3834             Chicago-Naperville-Elgin, IL-IN-WI
3835        Miami-Fort Lauderdale-Pompano Beach, FL
3836                    Portland-South Portland, ME
3837                    Portland-South Portland, ME
3838                               Raleigh-Cary, NC
3839                               Raleigh-Cary, NC
3840                      Cape Coral-Fort Myers, FL
3841           Poughkeepsie-Newburgh-Middletown, NY
3842           Poughkeepsie-Newburgh-Middletown, NY
3843                                   Syracuse, NY
3844            Tampa-St. Petersburg-Clearwater, FL
3845                          Trenton-Princeton, NJ
3846                          Trenton-Princeton, NJ
3847                          Trenton-Princeton, NJ
3848                          Trenton-Princeton, NJ
3849                Charleston-North Charleston, SC
3850                    Atlantic City-Hammonton, NJ
3851                    Atlantic City-Hammonton, NJ
3852                                      Akron, OH
3853                                   Columbus, OH
3854        Miami-Fort Lauderdale-Pompano Beach, FL
3855        Miami-Fort Lauderdale-Pompano Beach, FL
3856               Indianapolis-Carmel-Anderson, IN
3857               Las Vegas-Henderson-Paradise, NV
3858             Los Angeles-Long Beach-Anaheim, CA
3859                                 Pittsburgh, PA
3860          New York-Newark-Jersey City, NY-NJ-PA
3861                  Orlando-Kissimmee-Sanford, FL
3862                  Orlando-Kissimmee-Sanford, FL
3863                  Orlando-Kissimmee-Sanford, FL
3864  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3865  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3866  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3867                                           <NA>
3868             Chicago-Naperville-Elgin, IL-IN-WI
3869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3870                      Cape Coral-Fort Myers, FL
3871                      Cape Coral-Fort Myers, FL
3872             Louisville/Jefferson County, KY-IN
3873                                  Knoxville, TN
3874             Los Angeles-Long Beach-Anaheim, CA
3875             San Francisco-Oakland-Berkeley, CA
3876                     Denver-Aurora-Lakewood, CO
3877              Allentown-Bethlehem-Easton, PA-NJ
3878             Chicago-Naperville-Elgin, IL-IN-WI
3879                    Detroit-Warren-Dearborn, MI
3880                                   Savannah, GA
3881                                       Hilo, HI
3882           Houston-The Woodlands-Sugar Land, TX
3883                               Worcester, MA-CT
3884                           Cleveland-Elyria, OH
3885                                  Asheville, NC
3886        Minneapolis-St. Paul-Bloomington, MN-WI
3887        Minneapolis-St. Paul-Bloomington, MN-WI
3888        Minneapolis-St. Paul-Bloomington, MN-WI
3889        Miami-Fort Lauderdale-Pompano Beach, FL
3890                                Punta Gorda, FL
3891           Houston-The Woodlands-Sugar Land, TX
3892                             Urban Honolulu, HI
3893          New York-Newark-Jersey City, NY-NJ-PA
3894                                  Anchorage, AK
3895                                  Anchorage, AK
3896           Houston-The Woodlands-Sugar Land, TX
3897             Chicago-Naperville-Elgin, IL-IN-WI
3898             San Jose-Sunnyvale-Santa Clara, CA
3899           Atlanta-Sandy Springs-Alpharetta, GA
3900                    Detroit-Warren-Dearborn, MI
3901              Charlotte-Concord-Gastonia, NC-SC
3902              Charlotte-Concord-Gastonia, NC-SC
3903              Charlotte-Concord-Gastonia, NC-SC
3904                Dallas-Fort Worth-Arlington, TX
3905                      Phoenix-Mesa-Chandler, AZ
3906                                  Anchorage, AK
3907                                           <NA>
3908                    Seattle-Tacoma-Bellevue, WA
3909        Miami-Fort Lauderdale-Pompano Beach, FL
3910                                           <NA>
3911           Atlanta-Sandy Springs-Alpharetta, GA
3912           Atlanta-Sandy Springs-Alpharetta, GA
3913           Atlanta-Sandy Springs-Alpharetta, GA
3914               Las Vegas-Henderson-Paradise, NV
3915                                     Casper, WY
3916                                   Aberdeen, SD
3917          New York-Newark-Jersey City, NY-NJ-PA
3918                      Greensboro-High Point, NC
3919                                   Billings, MT
3920                                Baton Rouge, LA
3921                                 Charleston, WV
3922   Washington-Arlington-Alexandria, DC-VA-MD-WV
3923                                Spartanburg, SC
3924    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3925    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3926    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3927                                   Gillette, WY
3928                     Denver-Aurora-Lakewood, CO
3929                     Denver-Aurora-Lakewood, CO
3930                     Denver-Aurora-Lakewood, CO
3931                     Denver-Aurora-Lakewood, CO
3932                Dallas-Fort Worth-Arlington, TX
3933                Dallas-Fort Worth-Arlington, TX
3934                      Phoenix-Mesa-Chandler, AZ
3935                                     Hailey, ID
3936                         Eugene-Springfield, OR
3937                                 Twin Falls, ID
3938                                Albuquerque, NM
3939             San Francisco-Oakland-Berkeley, CA
3940           Atlanta-Sandy Springs-Alpharetta, GA
3941                        Buffalo-Cheektowaga, NY
3942                        Buffalo-Cheektowaga, NY
3943                  Baltimore-Columbia-Towson, MD
3944                                   Columbus, OH
3945                                   Columbus, OH
3946                Dallas-Fort Worth-Arlington, TX
3947                Dallas-Fort Worth-Arlington, TX
3948                      Grand Rapids-Kentwood, MI
3949                      Phoenix-Mesa-Chandler, AZ
3950                                Panama City, FL
3951             Louisville/Jefferson County, KY-IN
3952                               Cedar Rapids, IA
3953                Dallas-Fort Worth-Arlington, TX
3954           Houston-The Woodlands-Sugar Land, TX
3955           Atlanta-Sandy Springs-Alpharetta, GA
3956                           Dayton-Kettering, OH
3957   Washington-Arlington-Alexandria, DC-VA-MD-WV
3958                Burlington-South Burlington, VT
3959    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3960          New York-Newark-Jersey City, NY-NJ-PA
3961                                 Montgomery, AL
3962                                    Durango, CO
3963                                   Florence, SC
3964                                 Huntsville, AL
3965        Miami-Fort Lauderdale-Pompano Beach, FL
3966                Charleston-North Charleston, SC
3967                                     Laredo, TX
3968                           Cincinnati, OH-KY-IN
3969    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3970                      Greensboro-High Point, NC
3971                Dallas-Fort Worth-Arlington, TX
3972                                Bloomington, IL
3973                      La Crosse-Onalaska, WI-MN
3974                                Bakersfield, CA
3975                    South Bend-Mishawaka, IN-MI
3976                                  Rochester, NY
3977          New York-Newark-Jersey City, NY-NJ-PA
3978           Riverside-San Bernardino-Ontario, CA
3979                       Kingsport-Bristol, TN-VA
3980                Burlington-South Burlington, VT
3981                                  Rochester, MN
3982        Miami-Fort Lauderdale-Pompano Beach, FL
3983                                    Del Rio, TX
3984                                 Charleston, WV
3985                              Evansville, IN-KY
3986                                Great Falls, MT
3987           Riverside-San Bernardino-Ontario, CA
3988                                       Reno, NV
3989          New York-Newark-Jersey City, NY-NJ-PA
3990                    Portland-South Portland, ME
3991                Charleston-North Charleston, SC
3992                                           <NA>
3993           Atlanta-Sandy Springs-Alpharetta, GA
3994                                   Appleton, WI
3995                    Albany-Schenectady-Troy, NY
3996                                    Wichita, KS
3997                                  Rochester, MN
3998        Miami-Fort Lauderdale-Pompano Beach, FL
3999                              Wausau-Weston, WI
4000                             Chattanooga, TN-GA
4001                               Jacksonville, FL
4002          New York-Newark-Jersey City, NY-NJ-PA
4003              Charlotte-Concord-Gastonia, NC-SC
4004                       New Orleans-Metairie, LA
4005           Houston-The Woodlands-Sugar Land, TX
4006                  Orlando-Kissimmee-Sanford, FL
4007             San Francisco-Oakland-Berkeley, CA
4008        Minneapolis-St. Paul-Bloomington, MN-WI
4009           Atlanta-Sandy Springs-Alpharetta, GA
4010           Atlanta-Sandy Springs-Alpharetta, GA
4011                      Phoenix-Mesa-Chandler, AZ
4012                     Spokane-Spokane Valley, WA
4013                    Detroit-Warren-Dearborn, MI
4014                                      Kapaa, HI
4015              Charlotte-Concord-Gastonia, NC-SC
4016   Washington-Arlington-Alexandria, DC-VA-MD-WV
4017              Charlotte-Concord-Gastonia, NC-SC
4018        Miami-Fort Lauderdale-Pompano Beach, FL
4019        Miami-Fort Lauderdale-Pompano Beach, FL
4020             Chicago-Naperville-Elgin, IL-IN-WI
4021            Portland-Vancouver-Hillsboro, OR-WA
4022             Chicago-Naperville-Elgin, IL-IN-WI
4023              Charlotte-Concord-Gastonia, NC-SC
4024    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4025    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4026   Washington-Arlington-Alexandria, DC-VA-MD-WV
4027                                     Monroe, LA
4028   Washington-Arlington-Alexandria, DC-VA-MD-WV
4029                             Salt Lake City, UT
4030                             Urban Honolulu, HI
4031             San Jose-Sunnyvale-Santa Clara, CA
4032                      Cape Coral-Fort Myers, FL
4033                             Urban Honolulu, HI
4034           Houston-The Woodlands-Sugar Land, TX
4035           Houston-The Woodlands-Sugar Land, TX
4036                                   Escanaba, MI
4037   Washington-Arlington-Alexandria, DC-VA-MD-WV
4038                                           <NA>
4039                      Phoenix-Mesa-Chandler, AZ
4040                             Salt Lake City, UT
4041                                  Watertown, SD
4042             Chicago-Naperville-Elgin, IL-IN-WI
4043                               St. Louis, MO-IL
4044                Dallas-Fort Worth-Arlington, TX
4045                    Kahului-Wailuku-Lahaina, HI
4046             Los Angeles-Long Beach-Anaheim, CA
4047                  Orlando-Kissimmee-Sanford, FL
4048                  Baltimore-Columbia-Towson, MD
4049             Chicago-Naperville-Elgin, IL-IN-WI
4050           Houston-The Woodlands-Sugar Land, TX
4051                                       Hilo, HI
4052                             Salt Lake City, UT
4053                                  Anchorage, AK
4054           Atlanta-Sandy Springs-Alpharetta, GA
4055                    Kahului-Wailuku-Lahaina, HI
4056              Charlotte-Concord-Gastonia, NC-SC
4057             Chicago-Naperville-Elgin, IL-IN-WI
4058             Chicago-Naperville-Elgin, IL-IN-WI
4059              Charlotte-Concord-Gastonia, NC-SC
4060              Charlotte-Concord-Gastonia, NC-SC
4061               Austin-Round Rock-Georgetown, TX
4062             Los Angeles-Long Beach-Anaheim, CA
4063                                 Pittsburgh, PA
4064             Chicago-Naperville-Elgin, IL-IN-WI
4065                Dallas-Fort Worth-Arlington, TX
4066                                 Pittsburgh, PA
4067                                  Anchorage, AK
4068            Portland-Vancouver-Hillsboro, OR-WA
4069            Portland-Vancouver-Hillsboro, OR-WA
4070                      Cape Coral-Fort Myers, FL
4071                    Seattle-Tacoma-Bellevue, WA
4072                  Orlando-Kissimmee-Sanford, FL
4073                       New Orleans-Metairie, LA
4074           Atlanta-Sandy Springs-Alpharetta, GA
4075           Atlanta-Sandy Springs-Alpharetta, GA
4076                                       Reno, NV
4077                             Salt Lake City, UT
4078          New York-Newark-Jersey City, NY-NJ-PA
4079              Charlotte-Concord-Gastonia, NC-SC
4080                                   Richmond, VA
4081              Charlotte-Concord-Gastonia, NC-SC
4082              Charlotte-Concord-Gastonia, NC-SC
4083                                     Ithaca, NY
4084    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4085                           Glenwood Springs, CO
4086                Dallas-Fort Worth-Arlington, TX
4087             Los Angeles-Long Beach-Anaheim, CA
4088                                           <NA>
4089               Austin-Round Rock-Georgetown, TX
4090              North Port-Sarasota-Bradenton, FL
4091                                 St. George, UT
4092             Chicago-Naperville-Elgin, IL-IN-WI
4093    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4094    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4095           Houston-The Woodlands-Sugar Land, TX
4096                                  Anchorage, AK
4097                     Denver-Aurora-Lakewood, CO
4098                                  Green Bay, WI
4099          New York-Newark-Jersey City, NY-NJ-PA
4100               Las Vegas-Henderson-Paradise, NV
4101                  Orlando-Kissimmee-Sanford, FL
4102                  Orlando-Kissimmee-Sanford, FL
4103                  Orlando-Kissimmee-Sanford, FL
4104                  Orlando-Kissimmee-Sanford, FL
4105        Miami-Fort Lauderdale-Pompano Beach, FL
4106                                    Madison, WI
4107                                   Syracuse, NY
4108                                           <NA>
4109              Charlotte-Concord-Gastonia, NC-SC
4110                Dallas-Fort Worth-Arlington, TX
4111                                Spartanburg, SC
4112                                           <NA>
4113                                           <NA>
4114                 Boston-Cambridge-Newton, MA-NH
4115             San Jose-Sunnyvale-Santa Clara, CA
4116                           Cincinnati, OH-KY-IN
4117                                 Twin Falls, ID
4118                                      Ozark, AL
4119                                Great Falls, MT
4120                           Butte-Silver Bow, MT
4121                                 Charleston, WV
4122                             Salt Lake City, UT
4123                Dallas-Fort Worth-Arlington, TX
4124              Charlotte-Concord-Gastonia, NC-SC
4125              Charlotte-Concord-Gastonia, NC-SC
4126              Charlotte-Concord-Gastonia, NC-SC
4127    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4128                                Tallahassee, FL
4129                Dallas-Fort Worth-Arlington, TX
4130                    Detroit-Warren-Dearborn, MI
4131                                  Marquette, MI
4132             Los Angeles-Long Beach-Anaheim, CA
4133                        Santa Rosa-Petaluma, CA
4134                                           <NA>
4135        Minneapolis-St. Paul-Bloomington, MN-WI
4136                              Oklahoma City, OK
4137                                 St. George, UT
4138                      Brownsville-Harlingen, TX
4139          New York-Newark-Jersey City, NY-NJ-PA
4140             Los Angeles-Long Beach-Anaheim, CA
4141             Chicago-Naperville-Elgin, IL-IN-WI
4142                                Albuquerque, NM
4143                    San Juan-Bayamón-Caguas, PR
4144               Austin-Round Rock-Georgetown, TX
4145                Dallas-Fort Worth-Arlington, TX
4146           Houston-The Woodlands-Sugar Land, TX
4147           Houston-The Woodlands-Sugar Land, TX
4148             Los Angeles-Long Beach-Anaheim, CA
4149            Tampa-St. Petersburg-Clearwater, FL
4150                Dallas-Fort Worth-Arlington, TX
4151              Charlotte-Concord-Gastonia, NC-SC
4152                                    Bozeman, MT
4153             Fayetteville-Springdale-Rogers, AR
4154          New York-Newark-Jersey City, NY-NJ-PA
4155        Minneapolis-St. Paul-Bloomington, MN-WI
4156                 Boston-Cambridge-Newton, MA-NH
4157          New York-Newark-Jersey City, NY-NJ-PA
4158          New York-Newark-Jersey City, NY-NJ-PA
4159          New York-Newark-Jersey City, NY-NJ-PA
4160          New York-Newark-Jersey City, NY-NJ-PA
4161     Virginia Beach-Norfolk-Newport News, VA-NC
4162                                 Jackson, WY-ID
4163                Dallas-Fort Worth-Arlington, TX
4164                                    El Paso, TX
4165                                Spartanburg, SC
4166                                 Montgomery, AL
4167                               Jacksonville, FL
4168                             Kansas City, MO-KS
4169        Miami-Fort Lauderdale-Pompano Beach, FL
4170        Miami-Fort Lauderdale-Pompano Beach, FL
4171        Miami-Fort Lauderdale-Pompano Beach, FL
4172                            Gulfport-Biloxi, MS
4173                                Columbus, GA-AL
4174             Chicago-Naperville-Elgin, IL-IN-WI
4175                    Portland-South Portland, ME
4176                        Watertown-Fort Drum, NY
4177                                     Toledo, OH
4178                                 Alexandria, LA
4179                        Buffalo-Cheektowaga, NY
4180                                   Key West, FL
4181                                   Savannah, GA
4182                                   Syracuse, NY
4183                                Gainesville, FL
4184               Austin-Round Rock-Georgetown, TX
4185                           Cincinnati, OH-KY-IN
4186                 Boston-Cambridge-Newton, MA-NH
4187        Miami-Fort Lauderdale-Pompano Beach, FL
4188        Miami-Fort Lauderdale-Pompano Beach, FL
4189        Miami-Fort Lauderdale-Pompano Beach, FL
4190          New York-Newark-Jersey City, NY-NJ-PA
4191             Los Angeles-Long Beach-Anaheim, CA
4192          Hartford-East Hartford-Middletown, CT
4193             Los Angeles-Long Beach-Anaheim, CA
4194            Portland-Vancouver-Hillsboro, OR-WA
4195                                   Richmond, VA
4196                                   Savannah, GA
4197                Burlington-South Burlington, VT
4198             San Jose-Sunnyvale-Santa Clara, CA
4199                                    Lincoln, NE
4200              Allentown-Bethlehem-Easton, PA-NJ
4201                    Seattle-Tacoma-Bellevue, WA
4202                          Birmingham-Hoover, AL
4203                              Evansville, IN-KY
4204           Atlanta-Sandy Springs-Alpharetta, GA
4205          Hartford-East Hartford-Middletown, CT
4206                  Orlando-Kissimmee-Sanford, FL
4207                       New Orleans-Metairie, LA
4208                      Providence-Warwick, RI-MA
4209                                Sioux Falls, SD
4210          New York-Newark-Jersey City, NY-NJ-PA
4211                    Albany-Schenectady-Troy, NY
4212                       Waterloo-Cedar Falls, IA
4213                                       Reno, NV
4214                Dallas-Fort Worth-Arlington, TX
4215                Dallas-Fort Worth-Arlington, TX
4216                                Idaho Falls, ID
4217                              Evansville, IN-KY
4218             Chicago-Naperville-Elgin, IL-IN-WI
4219                      Phoenix-Mesa-Chandler, AZ
4220                                  Knoxville, TN
4221                    Atlantic City-Hammonton, NJ
4222        Miami-Fort Lauderdale-Pompano Beach, FL
4223                                 Pittsburgh, PA
4224          New York-Newark-Jersey City, NY-NJ-PA
4225                    San Juan-Bayamón-Caguas, PR
4226            Tampa-St. Petersburg-Clearwater, FL
4227                                    Bozeman, MT
4228                                      Tulsa, OK
4229   Washington-Arlington-Alexandria, DC-VA-MD-WV
4230   Washington-Arlington-Alexandria, DC-VA-MD-WV
4231                   Huntington-Ashland, WV-KY-OH
4232                                 Wilmington, NC
4233                       Lansing-East Lansing, MI
4234                      College Station-Bryan, TX
4235                      Grand Rapids-Kentwood, MI
4236                                   Amarillo, TX
4237                           Cleveland-Elyria, OH
4238                                  Flagstaff, AZ
4239           Houston-The Woodlands-Sugar Land, TX
4240             Los Angeles-Long Beach-Anaheim, CA
4241             Los Angeles-Long Beach-Anaheim, CA
4242                                    Midland, TX
4243  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4244             Chicago-Naperville-Elgin, IL-IN-WI
4245             Chicago-Naperville-Elgin, IL-IN-WI
4246             Chicago-Naperville-Elgin, IL-IN-WI
4247                      Phoenix-Mesa-Chandler, AZ
4248                                    Roswell, NM
4249             San Francisco-Oakland-Berkeley, CA
4250             San Francisco-Oakland-Berkeley, CA
4251                                      Tulsa, OK
4252                      Cape Coral-Fort Myers, FL
4253                                    Redding, CA
4254                        Santa Rosa-Petaluma, CA
4255                    Albany-Schenectady-Troy, NY
4256                                   Richmond, VA
4257                      Grand Rapids-Kentwood, MI
4258                                 Eau Claire, WI
4259        Miami-Fort Lauderdale-Pompano Beach, FL
4260                                Spartanburg, SC
4261                               North Platte, NE
4262                            Charlottesville, VA
4263                        Harrisburg-Carlisle, PA
4264                           Dayton-Kettering, OH
4265                                     Tucson, AZ
4266                                   Amarillo, TX
4267                                       Erie, PA
4268                              Memphis, TN-MS-AR
4269            Tampa-St. Petersburg-Clearwater, FL
4270                                    Salinas, CA
4271                                  Rochester, MN
4272                                 Wilmington, NC
4273                  San Antonio-New Braunfels, TX
4274                                    Wichita, KS
4275                                       Reno, NV
4276                                 Boise City, ID
4277                Dallas-Fort Worth-Arlington, TX
4278          New York-Newark-Jersey City, NY-NJ-PA
4279                                Panama City, FL
4280           Houston-The Woodlands-Sugar Land, TX
4281            Portland-Vancouver-Hillsboro, OR-WA
4282                        Buffalo-Cheektowaga, NY
4283     Virginia Beach-Norfolk-Newport News, VA-NC
4284                                Spartanburg, SC
4285                          Steamboat Springs, CO
4286             Los Angeles-Long Beach-Anaheim, CA
4287                    Omaha-Council Bluffs, NE-IA
4288                    Albany-Schenectady-Troy, NY
4289             San Francisco-Oakland-Berkeley, CA
4290             Chicago-Naperville-Elgin, IL-IN-WI
4291        Miami-Fort Lauderdale-Pompano Beach, FL
4292 Nashville-Davidson--Murfreesboro--Franklin, TN
4293                              Oklahoma City, OK
4294 Nashville-Davidson--Murfreesboro--Franklin, TN
4295                          Manchester-Nashua, NH
4296                     Spokane-Spokane Valley, WA
4297                                    Lubbock, TX
4298                              State College, PA
4299                Dallas-Fort Worth-Arlington, TX
4300   Washington-Arlington-Alexandria, DC-VA-MD-WV
4301           Houston-The Woodlands-Sugar Land, TX
4302           Houston-The Woodlands-Sugar Land, TX
4303  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4304                                    Lubbock, TX
4305                      Phoenix-Mesa-Chandler, AZ
4306              North Port-Sarasota-Bradenton, FL
4307               Austin-Round Rock-Georgetown, TX
4308                Charleston-North Charleston, SC
4309          New York-Newark-Jersey City, NY-NJ-PA
4310          New York-Newark-Jersey City, NY-NJ-PA
4311                              State College, PA
4312                                 Pittsburgh, PA
4313        Miami-Fort Lauderdale-Pompano Beach, FL
4314   Washington-Arlington-Alexandria, DC-VA-MD-WV
4315   Washington-Arlington-Alexandria, DC-VA-MD-WV
4316   Washington-Arlington-Alexandria, DC-VA-MD-WV
4317   Washington-Arlington-Alexandria, DC-VA-MD-WV
4318                                  Duluth, MN-WI
4319                                  Green Bay, WI
4320        Minneapolis-St. Paul-Bloomington, MN-WI
4321        Minneapolis-St. Paul-Bloomington, MN-WI
4322        Minneapolis-St. Paul-Bloomington, MN-WI
4323        Minneapolis-St. Paul-Bloomington, MN-WI
4324                                           <NA>
4325               Austin-Round Rock-Georgetown, TX
4326                        Harrisburg-Carlisle, PA
4327           Houston-The Woodlands-Sugar Land, TX
4328           Houston-The Woodlands-Sugar Land, TX
4329            Tampa-St. Petersburg-Clearwater, FL
4330           Atlanta-Sandy Springs-Alpharetta, GA
4331                                 Wilmington, NC
4332          New York-Newark-Jersey City, NY-NJ-PA
4333          New York-Newark-Jersey City, NY-NJ-PA
4334                            Charlottesville, VA
4335          New York-Newark-Jersey City, NY-NJ-PA
4336                           Iron Mountain, MI-WI
4337                                 Stillwater, OK
4338                                    Jackson, MS
4339                               Fayetteville, NC
4340                                    Dubuque, IA
4341                                  Manhattan, KS
4342             Chicago-Naperville-Elgin, IL-IN-WI
4343             Fayetteville-Springdale-Rogers, AR
4344                                   Montrose, CO
4345                                           <NA>
4346                  Orlando-Kissimmee-Sanford, FL
4347                                   Appleton, WI
4348                                           <NA>
4349                         Milwaukee-Waukesha, WI
4350                                   Montrose, CO
4351           Atlanta-Sandy Springs-Alpharetta, GA
4352                  Orlando-Kissimmee-Sanford, FL
4353                  Orlando-Kissimmee-Sanford, FL
4354             Chicago-Naperville-Elgin, IL-IN-WI
4355                                   Columbia, SC
4356             Chicago-Naperville-Elgin, IL-IN-WI
4357             Chicago-Naperville-Elgin, IL-IN-WI
4358                                      Akron, OH
4359                                      Akron, OH
4360        Miami-Fort Lauderdale-Pompano Beach, FL
4361             Los Angeles-Long Beach-Anaheim, CA
4362                                 Pittsburgh, PA
4363                             Kansas City, MO-KS
4364  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4365                      Cape Coral-Fort Myers, FL
4366                      Cape Coral-Fort Myers, FL
4367                                  Rochester, NY
4368              Charlotte-Concord-Gastonia, NC-SC
4369   Washington-Arlington-Alexandria, DC-VA-MD-WV
4370   Washington-Arlington-Alexandria, DC-VA-MD-WV
4371   Washington-Arlington-Alexandria, DC-VA-MD-WV
4372     Virginia Beach-Norfolk-Newport News, VA-NC
4373   Washington-Arlington-Alexandria, DC-VA-MD-WV
4374   Washington-Arlington-Alexandria, DC-VA-MD-WV
4375   Washington-Arlington-Alexandria, DC-VA-MD-WV
4376                                      Akron, OH
4377    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4378       Little Rock-North Little Rock-Conway, AR
4379                              Memphis, TN-MS-AR
4380           Houston-The Woodlands-Sugar Land, TX
4381           Houston-The Woodlands-Sugar Land, TX
4382                                    Kearney, NE
4383        Minneapolis-St. Paul-Bloomington, MN-WI
4384                      Phoenix-Mesa-Chandler, AZ
4385                      Phoenix-Mesa-Chandler, AZ
4386                                     Joplin, MO
4387                                  Manhattan, KS
4388           Riverside-San Bernardino-Ontario, CA
4389                                           <NA>
4390                    Seattle-Tacoma-Bellevue, WA
4391          New York-Newark-Jersey City, NY-NJ-PA
4392   Washington-Arlington-Alexandria, DC-VA-MD-WV
4393                                     Fresno, CA
4394                                    Roanoke, VA
4395                                     Laurel, MS
4396              Charlotte-Concord-Gastonia, NC-SC
4397                             Corpus Christi, TX
4398                              Memphis, TN-MS-AR
4399            Portland-Vancouver-Hillsboro, OR-WA
4400                      Brownsville-Harlingen, TX
4401                                 Pittsburgh, PA
4402                                    Midland, TX
4403                         Milwaukee-Waukesha, WI
4404   Washington-Arlington-Alexandria, DC-VA-MD-WV
4405   Washington-Arlington-Alexandria, DC-VA-MD-WV
4406   Washington-Arlington-Alexandria, DC-VA-MD-WV
4407    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4408                             Chattanooga, TN-GA
4409   Washington-Arlington-Alexandria, DC-VA-MD-WV
4410   Washington-Arlington-Alexandria, DC-VA-MD-WV
4411   Washington-Arlington-Alexandria, DC-VA-MD-WV
4412   Washington-Arlington-Alexandria, DC-VA-MD-WV
4413             Chicago-Naperville-Elgin, IL-IN-WI
4414            Tampa-St. Petersburg-Clearwater, FL
4415                                  Fairbanks, AK
4416                                 St. George, UT
4417                                Idaho Falls, ID
4418                                   Santa Fe, NM
4419                                 Fort Wayne, IN
4420            Portland-Vancouver-Hillsboro, OR-WA
4421                                     Monroe, LA
4422                                       Elko, NV
4423                     Denver-Aurora-Lakewood, CO
4424                      Brownsville-Harlingen, TX
4425        Miami-Fort Lauderdale-Pompano Beach, FL
4426                                    Madison, WI
4427                    Omaha-Council Bluffs, NE-IA
4428                    Atlantic City-Hammonton, NJ
4429          Hartford-East Hartford-Middletown, CT
4430        Miami-Fort Lauderdale-Pompano Beach, FL
4431  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4432              Charlotte-Concord-Gastonia, NC-SC
4433              Charlotte-Concord-Gastonia, NC-SC
4434                            Charlottesville, VA
4435  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4436                                 Rapid City, SD
4437                                   Muskegon, MI
4438                                 Mason City, IA
4439           Riverside-San Bernardino-Ontario, CA
4440                    Seattle-Tacoma-Bellevue, WA
4441                                  Wenatchee, WA
4442                                    Decatur, IL
4443                              Eureka-Arcata, CA
4444                               Rock Springs, WY
4445                                           <NA>
4446                                     Laredo, TX
4447    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4448                Dallas-Fort Worth-Arlington, TX
4449                 Pensacola-Ferry Pass-Brent, FL
4450             San Jose-Sunnyvale-Santa Clara, CA
4451                                       Hilo, HI
4452                                Albuquerque, NM
4453                                 Bellingham, WA
4454             San Diego-Chula Vista-Carlsbad, CA
4455                                   Richmond, VA
4456             Los Angeles-Long Beach-Anaheim, CA
4457            Tampa-St. Petersburg-Clearwater, FL
4458                                  Johnstown, PA
4459                                   Staunton, VA
4460   Washington-Arlington-Alexandria, DC-VA-MD-WV
4461                              Eureka-Arcata, CA
4462                              Eureka-Arcata, CA
4463             Los Angeles-Long Beach-Anaheim, CA
4464             Los Angeles-Long Beach-Anaheim, CA
4465             Los Angeles-Long Beach-Anaheim, CA
4466             Los Angeles-Long Beach-Anaheim, CA
4467             Los Angeles-Long Beach-Anaheim, CA
4468             Los Angeles-Long Beach-Anaheim, CA
4469        Miami-Fort Lauderdale-Pompano Beach, FL
4470                               Fort Collins, CO
4471                          New Haven-Milford, CT
4472                          New Haven-Milford, CT
4473                                    Medford, OR
4474                           Ogden-Clearfield, UT
4475        Miami-Fort Lauderdale-Pompano Beach, FL
4476                        Santa Rosa-Petaluma, CA
4477            Portland-Vancouver-Hillsboro, OR-WA
4478                     Denver-Aurora-Lakewood, CO
4479                                      Tulsa, OK
4480                     Denver-Aurora-Lakewood, CO
4481                     Denver-Aurora-Lakewood, CO
4482                      Phoenix-Mesa-Chandler, AZ
4483                      Phoenix-Mesa-Chandler, AZ
4484                    Kahului-Wailuku-Lahaina, HI
4485                                    Edwards, CO
4486        Minneapolis-St. Paul-Bloomington, MN-WI
4487               Austin-Round Rock-Georgetown, TX
4488             Chicago-Naperville-Elgin, IL-IN-WI
4489                                 Jackson, WY-ID
4490           Houston-The Woodlands-Sugar Land, TX
4491        Miami-Fort Lauderdale-Pompano Beach, FL
4492             Chicago-Naperville-Elgin, IL-IN-WI
4493        Miami-Fort Lauderdale-Pompano Beach, FL
4494                Dallas-Fort Worth-Arlington, TX
4495                                           <NA>
4496                Dallas-Fort Worth-Arlington, TX
4497   Washington-Arlington-Alexandria, DC-VA-MD-WV
4498    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4499                Dallas-Fort Worth-Arlington, TX
4500             Chicago-Naperville-Elgin, IL-IN-WI
4501             Chicago-Naperville-Elgin, IL-IN-WI
4502                                 Huntsville, AL
4503                                Springfield, MO
4504                             Kansas City, MO-KS
4505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4506                    Detroit-Warren-Dearborn, MI
4507                                  Flagstaff, AZ
4508                                     Bangor, ME
4509               Las Vegas-Henderson-Paradise, NV
4510        Miami-Fort Lauderdale-Pompano Beach, FL
4511                          Aguadilla-Isabela, PR
4512                                     Bangor, ME
4513                                Bloomington, IL
4514                Burlington-South Burlington, VT
4515                  Orlando-Kissimmee-Sanford, FL
4516                        Harrisburg-Carlisle, PA
4517                    San Juan-Bayamón-Caguas, PR
4518                                  Knoxville, TN
4519                                           <NA>
4520        Miami-Fort Lauderdale-Pompano Beach, FL
4521                          Manchester-Nashua, NH
4522            Tampa-St. Petersburg-Clearwater, FL
4523                                    Redding, CA
4524             Los Angeles-Long Beach-Anaheim, CA
4525                                     Hailey, ID
4526                    Portland-South Portland, ME
4527 Nashville-Davidson--Murfreesboro--Franklin, TN
4528                Dallas-Fort Worth-Arlington, TX
4529                             Urban Honolulu, HI
4530                                 Boise City, ID
4531                  Orlando-Kissimmee-Sanford, FL
4532             Chicago-Naperville-Elgin, IL-IN-WI
4533                      Providence-Warwick, RI-MA
4534                                   Richmond, VA
4535                  San Antonio-New Braunfels, TX
4536   Washington-Arlington-Alexandria, DC-VA-MD-WV
4537            Tampa-St. Petersburg-Clearwater, FL
4538   Washington-Arlington-Alexandria, DC-VA-MD-WV
4539                                  Green Bay, WI
4540                                 Alexandria, LA
4541          New York-Newark-Jersey City, NY-NJ-PA
4542                                   Bismarck, ND
4543                                       Bend, OR
4544                                     Juneau, AK
4545                                   Key West, FL
4546        Miami-Fort Lauderdale-Pompano Beach, FL
4547          New York-Newark-Jersey City, NY-NJ-PA
4548                                      Ponce, PR
4549                                    Bozeman, MT
4550                                 Binghamton, NY
4551  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4552             Fayetteville-Springdale-Rogers, AR
4553                Dallas-Fort Worth-Arlington, TX
4554                                      Tyler, TX
4555                 Boston-Cambridge-Newton, MA-NH
4556   Washington-Arlington-Alexandria, DC-VA-MD-WV
4557   Washington-Arlington-Alexandria, DC-VA-MD-WV
4558   Washington-Arlington-Alexandria, DC-VA-MD-WV
4559             Los Angeles-Long Beach-Anaheim, CA
4560               Austin-Round Rock-Georgetown, TX
4561                                      Hobbs, NM
4562                                 Dodge City, KS
4563                           Sioux City, IA-NE-SD
4564 Nashville-Davidson--Murfreesboro--Franklin, TN
4565            Portland-Vancouver-Hillsboro, OR-WA
4566                Dallas-Fort Worth-Arlington, TX
4567           Houston-The Woodlands-Sugar Land, TX
4568           Houston-The Woodlands-Sugar Land, TX
4569           Houston-The Woodlands-Sugar Land, TX
4570                                Panama City, FL
4571               Las Vegas-Henderson-Paradise, NV
4572                                      Kapaa, HI
4573                             Kansas City, MO-KS
4574                                       Reno, NV
4575             Chicago-Naperville-Elgin, IL-IN-WI
4576          New York-Newark-Jersey City, NY-NJ-PA
4577             San Diego-Chula Vista-Carlsbad, CA
4578                           Colorado Springs, CO
4579                      Grand Rapids-Kentwood, MI
4580                               St. Louis, MO-IL
4581            Tampa-St. Petersburg-Clearwater, FL
4582            Tampa-St. Petersburg-Clearwater, FL
4583   Washington-Arlington-Alexandria, DC-VA-MD-WV
4584                                  Duluth, MN-WI
4585                                    Madison, WI
4586                      Phoenix-Mesa-Chandler, AZ
4587                      Cape Coral-Fort Myers, FL
4588                                Tallahassee, FL
4589                          New Haven-Milford, CT
4590                                       Bend, OR
4591                      Phoenix-Mesa-Chandler, AZ
4592                                     Hailey, ID
4593             Chicago-Naperville-Elgin, IL-IN-WI
4594                                           <NA>
4595                    Detroit-Warren-Dearborn, MI
4596             Chicago-Naperville-Elgin, IL-IN-WI
4597                         Eugene-Springfield, OR
4598                                   Billings, MT
4599             Chicago-Naperville-Elgin, IL-IN-WI
4600                                     Yakima, WA
4601                                     Alpena, MI
4602           Riverside-San Bernardino-Ontario, CA
4603                  Orlando-Kissimmee-Sanford, FL
4604        Miami-Fort Lauderdale-Pompano Beach, FL
4605        Miami-Fort Lauderdale-Pompano Beach, FL
4606        Miami-Fort Lauderdale-Pompano Beach, FL
4607  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4608                              Memphis, TN-MS-AR
4609              Charlotte-Concord-Gastonia, NC-SC
4610                                   Cheyenne, WY
4611                Dallas-Fort Worth-Arlington, TX
4612                                  Watertown, SD
4613                                     Vernal, UT
4614                                    Laramie, WY
4615                                           <NA>
4616                                   Houghton, MI
4617                         Ogdensburg-Massena, NY
4618                              Eureka-Arcata, CA
4619              North Port-Sarasota-Bradenton, FL
4620                                Scottsbluff, NE
4621                                    Kearney, NE
4622                                       Hays, KS
4623                    Albany-Schenectady-Troy, NY
4624                  Baltimore-Columbia-Towson, MD
4625                                    Jackson, MS
4626   Washington-Arlington-Alexandria, DC-VA-MD-WV
4627                                   Montrose, CO
4628        Miami-Fort Lauderdale-Pompano Beach, FL
4629        Miami-Fort Lauderdale-Pompano Beach, FL
4630           Houston-The Woodlands-Sugar Land, TX
4631           Houston-The Woodlands-Sugar Land, TX
4632    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4633               Las Vegas-Henderson-Paradise, NV
4634               Las Vegas-Henderson-Paradise, NV
4635               Las Vegas-Henderson-Paradise, NV
4636                             Kansas City, MO-KS
4637         Crestview-Fort Walton Beach-Destin, FL
4638             Chicago-Naperville-Elgin, IL-IN-WI
4639                      Phoenix-Mesa-Chandler, AZ
4640                      Brownsville-Harlingen, TX
4641                      Phoenix-Mesa-Chandler, AZ
4642                      Cape Coral-Fort Myers, FL
4643             San Diego-Chula Vista-Carlsbad, CA
4644                  San Antonio-New Braunfels, TX
4645                  San Antonio-New Braunfels, TX
4646              North Port-Sarasota-Bradenton, FL
4647              North Port-Sarasota-Bradenton, FL
4648                  San Antonio-New Braunfels, TX
4649                Dallas-Fort Worth-Arlington, TX
4650                                 Clarksburg, WV
4651                          Fort Leonard Wood, MO
4652   Washington-Arlington-Alexandria, DC-VA-MD-WV
4653              North Port-Sarasota-Bradenton, FL
4654                                   Key West, FL
4655            Tampa-St. Petersburg-Clearwater, FL
4656                Dallas-Fort Worth-Arlington, TX
4657                                 Jackson, WY-ID
4658           Atlanta-Sandy Springs-Alpharetta, GA
4659             Chicago-Naperville-Elgin, IL-IN-WI
4660                                     Hailey, ID
4661                             Urban Honolulu, HI
4662   Washington-Arlington-Alexandria, DC-VA-MD-WV
4663           Houston-The Woodlands-Sugar Land, TX
4664           Houston-The Woodlands-Sugar Land, TX
4665                    Seattle-Tacoma-Bellevue, WA
4666                                           <NA>
4667                              State College, PA
4668                                   Valdosta, GA
4669                                 Alexandria, LA
4670                Dallas-Fort Worth-Arlington, TX
4671                             Salt Lake City, UT
4672           Houston-The Woodlands-Sugar Land, TX
4673             Chicago-Naperville-Elgin, IL-IN-WI
4674                     Denver-Aurora-Lakewood, CO
4675           Atlanta-Sandy Springs-Alpharetta, GA
4676           Atlanta-Sandy Springs-Alpharetta, GA
4677                    Detroit-Warren-Dearborn, MI
4678              Charlotte-Concord-Gastonia, NC-SC
4679                Dallas-Fort Worth-Arlington, TX
4680                      Cape Coral-Fort Myers, FL
4681                Dallas-Fort Worth-Arlington, TX
4682                Dallas-Fort Worth-Arlington, TX
4683             Chicago-Naperville-Elgin, IL-IN-WI
4684   Washington-Arlington-Alexandria, DC-VA-MD-WV
4685                     Denver-Aurora-Lakewood, CO
4686           Houston-The Woodlands-Sugar Land, TX
4687          New York-Newark-Jersey City, NY-NJ-PA
4688               Las Vegas-Henderson-Paradise, NV
4689                Dallas-Fort Worth-Arlington, TX
4690   Washington-Arlington-Alexandria, DC-VA-MD-WV
4691                                   Key West, FL
4692          New York-Newark-Jersey City, NY-NJ-PA
4693                                       Hilo, HI
4694                                   Columbus, OH
4695                                     Juneau, AK
4696                  Orlando-Kissimmee-Sanford, FL
4697                        Buffalo-Cheektowaga, NY
4698                            Barnstable Town, MA
4699                             Vineyard Haven, MA
4700                                    Durango, CO
4701                                 Cedar City, UT
4702               Austin-Round Rock-Georgetown, TX
4703  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4704                      Cape Coral-Fort Myers, FL
4705              Charlotte-Concord-Gastonia, NC-SC
4706              Charlotte-Concord-Gastonia, NC-SC
4707   Washington-Arlington-Alexandria, DC-VA-MD-WV
4708   Washington-Arlington-Alexandria, DC-VA-MD-WV
4709                     Denver-Aurora-Lakewood, CO
4710           Houston-The Woodlands-Sugar Land, TX
4711                      Phoenix-Mesa-Chandler, AZ
4712                                           <NA>
4713                                       Hilo, HI
4714                                  Johnstown, PA
4715                                  Jamestown, ND
4716                                           <NA>
4717                    Albany-Schenectady-Troy, NY
4718                        Buffalo-Cheektowaga, NY
4719           Riverside-San Bernardino-Ontario, CA
4720           Houston-The Woodlands-Sugar Land, TX
4721           Houston-The Woodlands-Sugar Land, TX
4722                 Des Moines-West Des Moines, IA
4723                  Orlando-Kissimmee-Sanford, FL
4724                  Orlando-Kissimmee-Sanford, FL
4725             San Francisco-Oakland-Berkeley, CA
4726                              Oklahoma City, OK
4727                               St. Louis, MO-IL
4728            Tampa-St. Petersburg-Clearwater, FL
4729            Tampa-St. Petersburg-Clearwater, FL
4730                Dallas-Fort Worth-Arlington, TX
4731                                   Key West, FL
4732                          Lexington-Fayette, KY
4733    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4734                     Denver-Aurora-Lakewood, CO
4735           Houston-The Woodlands-Sugar Land, TX
4736           Houston-The Woodlands-Sugar Land, TX
4737                                   Key West, FL
4738                  Orlando-Kissimmee-Sanford, FL
4739           Atlanta-Sandy Springs-Alpharetta, GA
4740                    Detroit-Warren-Dearborn, MI
4741              Charlotte-Concord-Gastonia, NC-SC
4742                Dallas-Fort Worth-Arlington, TX
4743                                  Anchorage, AK
4744   Washington-Arlington-Alexandria, DC-VA-MD-WV
4745                                     Juneau, AK
4746                                     Juneau, AK
4747                                           <NA>
4748          New York-Newark-Jersey City, NY-NJ-PA
4749                      Cape Coral-Fort Myers, FL
4750             Fayetteville-Springdale-Rogers, AR
4751            Tampa-St. Petersburg-Clearwater, FL
4752    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4753                                     Peoria, IL
4754                                   Sheridan, WY
4755                     Denver-Aurora-Lakewood, CO
4756                     Denver-Aurora-Lakewood, CO
4757                Dallas-Fort Worth-Arlington, TX
4758                    Detroit-Warren-Dearborn, MI
4759                    Detroit-Warren-Dearborn, MI
4760           Houston-The Woodlands-Sugar Land, TX
4761                              Wausau-Weston, WI
4762        Minneapolis-St. Paul-Bloomington, MN-WI
4763        Minneapolis-St. Paul-Bloomington, MN-WI
4764                                  Dickinson, ND
4765                      Phoenix-Mesa-Chandler, AZ
4766                                     Tucson, AZ
4767                    Seattle-Tacoma-Bellevue, WA
4768                                   Staunton, VA
4769                                Plattsburgh, NY
4770                                   Riverton, WY
4771                                    El Paso, TX
4772           Houston-The Woodlands-Sugar Land, TX
4773           Houston-The Woodlands-Sugar Land, TX
4774           Houston-The Woodlands-Sugar Land, TX
4775               Las Vegas-Henderson-Paradise, NV
4776                             Kansas City, MO-KS
4777                    Kahului-Wailuku-Lahaina, HI
4778             San Jose-Sunnyvale-Santa Clara, CA
4779                               St. Louis, MO-IL
4780                                      Tulsa, OK
4781           Houston-The Woodlands-Sugar Land, TX
4782                      Phoenix-Mesa-Chandler, AZ
4783                                 Jackson, WY-ID
4784          New York-Newark-Jersey City, NY-NJ-PA
4785             Chicago-Naperville-Elgin, IL-IN-WI
4786           Houston-The Woodlands-Sugar Land, TX
4787           Houston-The Woodlands-Sugar Land, TX
4788              Charlotte-Concord-Gastonia, NC-SC
4789                    Detroit-Warren-Dearborn, MI
4790             Chicago-Naperville-Elgin, IL-IN-WI
4791                Dallas-Fort Worth-Arlington, TX
4792        Miami-Fort Lauderdale-Pompano Beach, FL
4793             Los Angeles-Long Beach-Anaheim, CA
4794           Atlanta-Sandy Springs-Alpharetta, GA
4795   Washington-Arlington-Alexandria, DC-VA-MD-WV
4796                Dallas-Fort Worth-Arlington, TX
4797             Fayetteville-Springdale-Rogers, AR
4798           Houston-The Woodlands-Sugar Land, TX
4799                             Kansas City, MO-KS
4800        Minneapolis-St. Paul-Bloomington, MN-WI
4801                             Salt Lake City, UT
4802             Fayetteville-Springdale-Rogers, AR
4803                    Seattle-Tacoma-Bellevue, WA
4804                                     Tucson, AZ
4805                                    Bozeman, MT
4806                Dallas-Fort Worth-Arlington, TX
4807                                Panama City, FL
4808                  Orlando-Kissimmee-Sanford, FL
4809                  San Antonio-New Braunfels, TX
4810                Sacramento-Roseville-Folsom, CA
4811                                      Tulsa, OK
4812             Chicago-Naperville-Elgin, IL-IN-WI
4813              Charlotte-Concord-Gastonia, NC-SC
4814           Atlanta-Sandy Springs-Alpharetta, GA
4815           Atlanta-Sandy Springs-Alpharetta, GA
4816           Atlanta-Sandy Springs-Alpharetta, GA
4817                    Detroit-Warren-Dearborn, MI
4818                    Detroit-Warren-Dearborn, MI
4819          New York-Newark-Jersey City, NY-NJ-PA
4820                         Milwaukee-Waukesha, WI
4821        Minneapolis-St. Paul-Bloomington, MN-WI
4822             Fayetteville-Springdale-Rogers, AR
4823                                           <NA>
4824                              Eureka-Arcata, CA
4825                                   Montrose, CO
4826       Little Rock-North Little Rock-Conway, AR
4827                                   Appleton, WI
4828                                    Wichita, KS
4829        Miami-Fort Lauderdale-Pompano Beach, FL
4830          New York-Newark-Jersey City, NY-NJ-PA
4831        Miami-Fort Lauderdale-Pompano Beach, FL
4832                      Cape Coral-Fort Myers, FL
4833           Atlanta-Sandy Springs-Alpharetta, GA
4834        Minneapolis-St. Paul-Bloomington, MN-WI
4835                 Des Moines-West Des Moines, IA
4836                           Cleveland-Elyria, OH
4837   Washington-Arlington-Alexandria, DC-VA-MD-WV
4838                Dallas-Fort Worth-Arlington, TX
4839             Chicago-Naperville-Elgin, IL-IN-WI
4840              Charlotte-Concord-Gastonia, NC-SC
4841                                 Montgomery, AL
4842                              Eureka-Arcata, CA
4843                                    Salinas, CA
4844                     Denver-Aurora-Lakewood, CO
4845                    Detroit-Warren-Dearborn, MI
4846        Minneapolis-St. Paul-Bloomington, MN-WI
4847        Minneapolis-St. Paul-Bloomington, MN-WI
4848        Minneapolis-St. Paul-Bloomington, MN-WI
4849        Minneapolis-St. Paul-Bloomington, MN-WI
4850                      Phoenix-Mesa-Chandler, AZ
4851             San Francisco-Oakland-Berkeley, CA
4852             San Francisco-Oakland-Berkeley, CA
4853                                     Pierre, SD
4854             Chicago-Naperville-Elgin, IL-IN-WI
4855                                    Madison, WI
4856       Little Rock-North Little Rock-Conway, AR
4857             Los Angeles-Long Beach-Anaheim, CA
4858        Miami-Fort Lauderdale-Pompano Beach, FL
4859           Riverside-San Bernardino-Ontario, CA
4860                                Spartanburg, SC
4861                                   Montrose, CO
4862               Las Vegas-Henderson-Paradise, NV
4863             Los Angeles-Long Beach-Anaheim, CA
4864                              Oklahoma City, OK
4865                      Providence-Warwick, RI-MA
4866              Charlotte-Concord-Gastonia, NC-SC
4867                           Colorado Springs, CO
4868             San Diego-Chula Vista-Carlsbad, CA
4869                           Cincinnati, OH-KY-IN
4870                                     Tucson, AZ
4871                Dallas-Fort Worth-Arlington, TX
4872   Washington-Arlington-Alexandria, DC-VA-MD-WV
4873             Chicago-Naperville-Elgin, IL-IN-WI
4874             Chicago-Naperville-Elgin, IL-IN-WI
4875                      Brownsville-Harlingen, TX
4876                 Boston-Cambridge-Newton, MA-NH
4877              Charlotte-Concord-Gastonia, NC-SC
4878                                 Fort Wayne, IN
4879    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4880    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4881    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4882           Houston-The Woodlands-Sugar Land, TX
4883           Atlanta-Sandy Springs-Alpharetta, GA
4884           Atlanta-Sandy Springs-Alpharetta, GA
4885                Charleston-North Charleston, SC
4886                    Detroit-Warren-Dearborn, MI
4887                    Detroit-Warren-Dearborn, MI
4888                    Detroit-Warren-Dearborn, MI
4889                    Detroit-Warren-Dearborn, MI
4890                    Detroit-Warren-Dearborn, MI
4891                    Detroit-Warren-Dearborn, MI
4892        Minneapolis-St. Paul-Bloomington, MN-WI
4893        Minneapolis-St. Paul-Bloomington, MN-WI
4894                                  Knoxville, TN
4895                                           <NA>
4896                                    Roanoke, VA
4897                               Texarkana, TX-AR
4898                                       Hilo, HI
4899                 Boston-Cambridge-Newton, MA-NH
4900          New York-Newark-Jersey City, NY-NJ-PA
4901          New York-Newark-Jersey City, NY-NJ-PA
4902          New York-Newark-Jersey City, NY-NJ-PA
4903          New York-Newark-Jersey City, NY-NJ-PA
4904                  Orlando-Kissimmee-Sanford, FL
4905           Atlanta-Sandy Springs-Alpharetta, GA
4906           Atlanta-Sandy Springs-Alpharetta, GA
4907           Atlanta-Sandy Springs-Alpharetta, GA
4908        Minneapolis-St. Paul-Bloomington, MN-WI
4909                                     Ithaca, NY
4910                           Dayton-Kettering, OH
4911                                    Bemidji, MN
4912              North Port-Sarasota-Bradenton, FL
4913          New York-Newark-Jersey City, NY-NJ-PA
4914                                   Longview, TX
4915                Dallas-Fort Worth-Arlington, TX
4916             Chicago-Naperville-Elgin, IL-IN-WI
4917             Chicago-Naperville-Elgin, IL-IN-WI
4918                     Denver-Aurora-Lakewood, CO
4919                    Detroit-Warren-Dearborn, MI
4920                                    Edwards, CO
4921           Houston-The Woodlands-Sugar Land, TX
4922                                    Edwards, CO
4923             Los Angeles-Long Beach-Anaheim, CA
4924             Los Angeles-Long Beach-Anaheim, CA
4925                                   Coos Bay, OR
4926        Minneapolis-St. Paul-Bloomington, MN-WI
4927            Portland-Vancouver-Hillsboro, OR-WA
4928             San Diego-Chula Vista-Carlsbad, CA
4929                             Salt Lake City, UT
4930                    Kahului-Wailuku-Lahaina, HI
4931                                Springfield, MO
4932                                    Bozeman, MT
4933   Washington-Arlington-Alexandria, DC-VA-MD-WV
4934                                       Hilo, HI
4935                               Lake Charles, LA
4936                                 Rapid City, SD
4937                Dallas-Fort Worth-Arlington, TX
4938                                    El Paso, TX
4939                             Urban Honolulu, HI
4940           Houston-The Woodlands-Sugar Land, TX
4941         Crestview-Fort Walton Beach-Destin, FL
4942                                    El Paso, TX
4943                                     Tucson, AZ
4944             San Francisco-Oakland-Berkeley, CA
4945                                      Tulsa, OK
4946                    San Juan-Bayamón-Caguas, PR
4947       Little Rock-North Little Rock-Conway, AR
4948                                   Columbia, SC
4949                                   Key West, FL
4950   Washington-Arlington-Alexandria, DC-VA-MD-WV
4951                    San Juan-Bayamón-Caguas, PR
4952          New York-Newark-Jersey City, NY-NJ-PA
4953                         Kennewick-Richland, WA
4954                        Santa Rosa-Petaluma, CA
4955   Washington-Arlington-Alexandria, DC-VA-MD-WV
4956                          Manchester-Nashua, NH
4957              Charlotte-Concord-Gastonia, NC-SC
4958                                 Jackson, WY-ID
4959                     Denver-Aurora-Lakewood, CO
4960                             Salt Lake City, UT
4961             San Francisco-Oakland-Berkeley, CA
4962                               St. Louis, MO-IL
4963                     Denver-Aurora-Lakewood, CO
4964                                  Anchorage, AK
4965                                           <NA>
4966                                           <NA>
4967                  Orlando-Kissimmee-Sanford, FL
4968                    Portland-South Portland, ME
4969          New York-Newark-Jersey City, NY-NJ-PA
4970        Miami-Fort Lauderdale-Pompano Beach, FL
4971           Houston-The Woodlands-Sugar Land, TX
4972                    Seattle-Tacoma-Bellevue, WA
4973                                    El Paso, TX
4974                           Cleveland-Elyria, OH
4975                Dallas-Fort Worth-Arlington, TX
4976                                 Charleston, WV
4977                                 Fort Wayne, IN
4978              Charlotte-Concord-Gastonia, NC-SC
4979                                           <NA>
4980                                      Kapaa, HI
4981                                       Reno, NV
4982           Houston-The Woodlands-Sugar Land, TX
4983           Riverside-San Bernardino-Ontario, CA
4984                       New Orleans-Metairie, LA
4985                 Boston-Cambridge-Newton, MA-NH
4986              Charlotte-Concord-Gastonia, NC-SC
4987                           Champaign-Urbana, IL
4988                  Orlando-Kissimmee-Sanford, FL
4989              Charlotte-Concord-Gastonia, NC-SC
4990              Charlotte-Concord-Gastonia, NC-SC
4991                                  Kalispell, MT
4992                     Denver-Aurora-Lakewood, CO
4993                             Salt Lake City, UT
4994                                           <NA>
4995                      Phoenix-Mesa-Chandler, AZ
4996             Chicago-Naperville-Elgin, IL-IN-WI
4997 Nashville-Davidson--Murfreesboro--Franklin, TN
4998             Chicago-Naperville-Elgin, IL-IN-WI
4999             Chicago-Naperville-Elgin, IL-IN-WI
                                                        NAME.x
1             New York-Newark-Jersey City, NY-NJ-PA Metro Area
2           Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3                                  Jacksonville, FL Metro Area
4                Los Angeles-Long Beach-Anaheim, CA Metro Area
5                Los Angeles-Long Beach-Anaheim, CA Metro Area
6                Los Angeles-Long Beach-Anaheim, CA Metro Area
7             New York-Newark-Jersey City, NY-NJ-PA Metro Area
8             New York-Newark-Jersey City, NY-NJ-PA Metro Area
9                     Orlando-Kissimmee-Sanford, FL Metro Area
10          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
11                         New Orleans-Metairie, LA Metro Area
12                        Cape Coral-Fort Myers, FL Metro Area
13                      Seattle-Tacoma-Bellevue, WA Metro Area
14                      Seattle-Tacoma-Bellevue, WA Metro Area
15                      Seattle-Tacoma-Bellevue, WA Metro Area
16                               Salt Lake City, UT Metro Area
17              Tampa-St. Petersburg-Clearwater, FL Metro Area
18             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
19             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
20             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
21             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
22             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
23             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
24             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
25             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
26             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
27             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
28             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
29             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
30             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
31             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
32             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
33             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
34                      Detroit-Warren-Dearborn, MI Metro Area
35                      Detroit-Warren-Dearborn, MI Metro Area
36          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
37          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
38          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
39          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
40                               Salt Lake City, UT Metro Area
41                               Salt Lake City, UT Metro Area
42                               Salt Lake City, UT Metro Area
43             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
44             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
45          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
46          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
47             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
48             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
49             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
50             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
51             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
52             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
53             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
54            New York-Newark-Jersey City, NY-NJ-PA Metro Area
55               Los Angeles-Long Beach-Anaheim, CA Metro Area
56            New York-Newark-Jersey City, NY-NJ-PA Metro Area
57          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
58                               Salt Lake City, UT Metro Area
59                               Salt Lake City, UT Metro Area
60          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
61          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
62          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
63          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
64                               Salt Lake City, UT Metro Area
65                               Salt Lake City, UT Metro Area
66                               Salt Lake City, UT Metro Area
67                               Salt Lake City, UT Metro Area
68                               Salt Lake City, UT Metro Area
69                               Salt Lake City, UT Metro Area
70                               Salt Lake City, UT Metro Area
71                               Salt Lake City, UT Metro Area
72                               Salt Lake City, UT Metro Area
73             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
74             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
75             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
76                      Detroit-Warren-Dearborn, MI Metro Area
77             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
78             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
79             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
80             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
81             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
82             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
83             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
84             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
85             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
86             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
87             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
88               Los Angeles-Long Beach-Anaheim, CA Metro Area
89               Los Angeles-Long Beach-Anaheim, CA Metro Area
90               Los Angeles-Long Beach-Anaheim, CA Metro Area
91               Los Angeles-Long Beach-Anaheim, CA Metro Area
92               Los Angeles-Long Beach-Anaheim, CA Metro Area
93          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
94          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
95                      Seattle-Tacoma-Bellevue, WA Metro Area
96                               Salt Lake City, UT Metro Area
97             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
98             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
99             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
100            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
101            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
102            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
103            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
104                     Detroit-Warren-Dearborn, MI Metro Area
105              Los Angeles-Long Beach-Anaheim, CA Metro Area
106              Los Angeles-Long Beach-Anaheim, CA Metro Area
107         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
108                              Salt Lake City, UT Metro Area
109            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
110            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
111            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
112            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
113            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
114            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
115            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
116                     Detroit-Warren-Dearborn, MI Metro Area
117                     Detroit-Warren-Dearborn, MI Metro Area
118                Las Vegas-Henderson-Paradise, NV Metro Area
119              Los Angeles-Long Beach-Anaheim, CA Metro Area
120              Los Angeles-Long Beach-Anaheim, CA Metro Area
121                   Orlando-Kissimmee-Sanford, FL Metro Area
122                   Orlando-Kissimmee-Sanford, FL Metro Area
123         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
124         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
125                       Cape Coral-Fort Myers, FL Metro Area
126                     Seattle-Tacoma-Bellevue, WA Metro Area
127                     Seattle-Tacoma-Bellevue, WA Metro Area
128                     Seattle-Tacoma-Bellevue, WA Metro Area
129                     Seattle-Tacoma-Bellevue, WA Metro Area
130                              Salt Lake City, UT Metro Area
131                              Salt Lake City, UT Metro Area
132                              Salt Lake City, UT Metro Area
133                              Salt Lake City, UT Metro Area
134             Tampa-St. Petersburg-Clearwater, FL Metro Area
135              San Diego-Chula Vista-Carlsbad, CA Metro Area
136              Los Angeles-Long Beach-Anaheim, CA Metro Area
137                     Seattle-Tacoma-Bellevue, WA Metro Area
138            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
139                     Detroit-Warren-Dearborn, MI Metro Area
140                     Detroit-Warren-Dearborn, MI Metro Area
141                     Detroit-Warren-Dearborn, MI Metro Area
142                     Detroit-Warren-Dearborn, MI Metro Area
143           New York-Newark-Jersey City, NY-NJ-PA Metro Area
144           New York-Newark-Jersey City, NY-NJ-PA Metro Area
145         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
146         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
147                                Raleigh-Cary, NC Metro Area
148                              Salt Lake City, UT Metro Area
149                              Salt Lake City, UT Metro Area
150            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
151            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
152            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
153  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
154                            Cincinnati, OH-KY-IN Metro Area
155                            Cincinnati, OH-KY-IN Metro Area
156                 Dallas-Fort Worth-Arlington, TX Metro Area
157                     Detroit-Warren-Dearborn, MI Metro Area
158                     Detroit-Warren-Dearborn, MI Metro Area
159                     Detroit-Warren-Dearborn, MI Metro Area
160                     Detroit-Warren-Dearborn, MI Metro Area
161                              Urban Honolulu, HI Metro Area
162           New York-Newark-Jersey City, NY-NJ-PA Metro Area
163           New York-Newark-Jersey City, NY-NJ-PA Metro Area
164                                Raleigh-Cary, NC Metro Area
165                   San Antonio-New Braunfels, TX Metro Area
166                     Seattle-Tacoma-Bellevue, WA Metro Area
167                              Salt Lake City, UT Metro Area
168                              Salt Lake City, UT Metro Area
169                              Salt Lake City, UT Metro Area
170                              Salt Lake City, UT Metro Area
171            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
172                     Detroit-Warren-Dearborn, MI Metro Area
173                     Detroit-Warren-Dearborn, MI Metro Area
174                     Detroit-Warren-Dearborn, MI Metro Area
175                     Detroit-Warren-Dearborn, MI Metro Area
176                     Detroit-Warren-Dearborn, MI Metro Area
177         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
178         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
179         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
180         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
181         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
182         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
183              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
184               North Port-Sarasota-Bradenton, FL Metro Area
185             Tampa-St. Petersburg-Clearwater, FL Metro Area
186              Los Angeles-Long Beach-Anaheim, CA Metro Area
187            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
188            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
189         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
190            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
191            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
192            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
193            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
194                     Detroit-Warren-Dearborn, MI Metro Area
195                     Detroit-Warren-Dearborn, MI Metro Area
196           New York-Newark-Jersey City, NY-NJ-PA Metro Area
197           New York-Newark-Jersey City, NY-NJ-PA Metro Area
198         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
199            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
200            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
201            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
202            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
203            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
204         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
205                              Salt Lake City, UT Metro Area
206            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
207            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
208            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
209         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
210            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
211            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
212            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
213            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
214                Austin-Round Rock-Georgetown, TX Metro Area
215  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
216                  Boston-Cambridge-Newton, MA-NH Metro Area
217    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
218                      Denver-Aurora-Lakewood, CO Metro Area
219                 Dallas-Fort Worth-Arlington, TX Metro Area
220                     Detroit-Warren-Dearborn, MI Metro Area
221                     Detroit-Warren-Dearborn, MI Metro Area
222                     Detroit-Warren-Dearborn, MI Metro Area
223           New York-Newark-Jersey City, NY-NJ-PA Metro Area
224                Las Vegas-Henderson-Paradise, NV Metro Area
225              Los Angeles-Long Beach-Anaheim, CA Metro Area
226           New York-Newark-Jersey City, NY-NJ-PA Metro Area
227           New York-Newark-Jersey City, NY-NJ-PA Metro Area
228                   Orlando-Kissimmee-Sanford, FL Metro Area
229                        New Orleans-Metairie, LA Metro Area
230              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
231             Portland-Vancouver-Hillsboro, OR-WA Metro Area
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
233                                Raleigh-Cary, NC Metro Area
234                       Cape Coral-Fort Myers, FL Metro Area
235                     Seattle-Tacoma-Bellevue, WA Metro Area
236             Tampa-St. Petersburg-Clearwater, FL Metro Area
237                     Detroit-Warren-Dearborn, MI Metro Area
238                     Detroit-Warren-Dearborn, MI Metro Area
239         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
240         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
241            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
242            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
243                              Salt Lake City, UT Metro Area
244                              Salt Lake City, UT Metro Area
245            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
246         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
247                              Salt Lake City, UT Metro Area
248            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
249                  Boston-Cambridge-Newton, MA-NH Metro Area
250                     Detroit-Warren-Dearborn, MI Metro Area
251           New York-Newark-Jersey City, NY-NJ-PA Metro Area
252           New York-Newark-Jersey City, NY-NJ-PA Metro Area
253         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
254         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
255                     Seattle-Tacoma-Bellevue, WA Metro Area
256            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
257            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
258         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
259                     Seattle-Tacoma-Bellevue, WA Metro Area
260                              Salt Lake City, UT Metro Area
261                              Salt Lake City, UT Metro Area
262                              Salt Lake City, UT Metro Area
263                              Salt Lake City, UT Metro Area
264            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
265            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
266                     Detroit-Warren-Dearborn, MI Metro Area
267         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
268            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
269           New York-Newark-Jersey City, NY-NJ-PA Metro Area
270         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
271            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
272            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
273            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
274                     Detroit-Warren-Dearborn, MI Metro Area
275         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
276                Las Vegas-Henderson-Paradise, NV Metro Area
277              Los Angeles-Long Beach-Anaheim, CA Metro Area
278              Los Angeles-Long Beach-Anaheim, CA Metro Area
279                   Orlando-Kissimmee-Sanford, FL Metro Area
280                     Seattle-Tacoma-Bellevue, WA Metro Area
281            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
282            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
283           New York-Newark-Jersey City, NY-NJ-PA Metro Area
284                     Detroit-Warren-Dearborn, MI Metro Area
285                     Seattle-Tacoma-Bellevue, WA Metro Area
286                              Salt Lake City, UT Metro Area
287                              Salt Lake City, UT Metro Area
288            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
289            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
290                     Detroit-Warren-Dearborn, MI Metro Area
291                     Detroit-Warren-Dearborn, MI Metro Area
292                Las Vegas-Henderson-Paradise, NV Metro Area
293              Los Angeles-Long Beach-Anaheim, CA Metro Area
294         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
295                       Phoenix-Mesa-Chandler, AZ Metro Area
296              San Diego-Chula Vista-Carlsbad, CA Metro Area
297                              Salt Lake City, UT Metro Area
298              Los Angeles-Long Beach-Anaheim, CA Metro Area
299                     Seattle-Tacoma-Bellevue, WA Metro Area
300                              Salt Lake City, UT Metro Area
301                              Salt Lake City, UT Metro Area
302         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
303                              Salt Lake City, UT Metro Area
304                                  Boise City, ID Metro Area
305                 Dallas-Fort Worth-Arlington, TX Metro Area
306                     Detroit-Warren-Dearborn, MI Metro Area
307                     Detroit-Warren-Dearborn, MI Metro Area
308                     Detroit-Warren-Dearborn, MI Metro Area
309           New York-Newark-Jersey City, NY-NJ-PA Metro Area
310                      Spokane-Spokane Valley, WA Metro Area
311           New York-Newark-Jersey City, NY-NJ-PA Metro Area
312                Las Vegas-Henderson-Paradise, NV Metro Area
313              Los Angeles-Long Beach-Anaheim, CA Metro Area
314         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
315            Riverside-San Bernardino-Ontario, CA Metro Area
316              San Diego-Chula Vista-Carlsbad, CA Metro Area
317              San Francisco-Oakland-Berkeley, CA Metro Area
318              San Jose-Sunnyvale-Santa Clara, CA Metro Area
319              Los Angeles-Long Beach-Anaheim, CA Metro Area
320         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
321                              Salt Lake City, UT Metro Area
322            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
323         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
324                     Seattle-Tacoma-Bellevue, WA Metro Area
325                              Salt Lake City, UT Metro Area
326            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
327         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
328            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
329            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
330            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
331                     Detroit-Warren-Dearborn, MI Metro Area
332                     Detroit-Warren-Dearborn, MI Metro Area
333           New York-Newark-Jersey City, NY-NJ-PA Metro Area
334           New York-Newark-Jersey City, NY-NJ-PA Metro Area
335         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
336                Las Vegas-Henderson-Paradise, NV Metro Area
337            Riverside-San Bernardino-Ontario, CA Metro Area
338                Las Vegas-Henderson-Paradise, NV Metro Area
339                   Orlando-Kissimmee-Sanford, FL Metro Area
340                   Orlando-Kissimmee-Sanford, FL Metro Area
341                      Denver-Aurora-Lakewood, CO Metro Area
342                Las Vegas-Henderson-Paradise, NV Metro Area
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
344                                      Fresno, CA Metro Area
345              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
346             Tampa-St. Petersburg-Clearwater, FL Metro Area
347             Tampa-St. Petersburg-Clearwater, FL Metro Area
348                           Trenton-Princeton, NJ Metro Area
349                      Denver-Aurora-Lakewood, CO Metro Area
350                Las Vegas-Henderson-Paradise, NV Metro Area
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
352                Las Vegas-Henderson-Paradise, NV Metro Area
353                Las Vegas-Henderson-Paradise, NV Metro Area
354                   Orlando-Kissimmee-Sanford, FL Metro Area
355             Tampa-St. Petersburg-Clearwater, FL Metro Area
356              San Diego-Chula Vista-Carlsbad, CA Metro Area
357                     San Juan-Bayamón-Caguas, PR Metro Area
358                Las Vegas-Henderson-Paradise, NV Metro Area
359                Las Vegas-Henderson-Paradise, NV Metro Area
360           New York-Newark-Jersey City, NY-NJ-PA Metro Area
361    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
362           New York-Newark-Jersey City, NY-NJ-PA Metro Area
363              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
364    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
365              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
366              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
367           New York-Newark-Jersey City, NY-NJ-PA Metro Area
368                            Cleveland-Elyria, OH Metro Area
369               Charlotte-Concord-Gastonia, NC-SC Metro Area
370    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
371                       Greensboro-High Point, NC Metro Area
372                Indianapolis-Carmel-Anderson, IN Metro Area
373                                   Rochester, NY Metro Area
374    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
375           New York-Newark-Jersey City, NY-NJ-PA Metro Area
376              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
377                 Hilton Head Island-Bluffton, SC Metro Area
378                Indianapolis-Carmel-Anderson, IN Metro Area
379    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
380              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
381              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
382              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
383           New York-Newark-Jersey City, NY-NJ-PA Metro Area
384           New York-Newark-Jersey City, NY-NJ-PA Metro Area
385    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
386    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
387           New York-Newark-Jersey City, NY-NJ-PA Metro Area
388           New York-Newark-Jersey City, NY-NJ-PA Metro Area
389           New York-Newark-Jersey City, NY-NJ-PA Metro Area
390              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
391              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
392           New York-Newark-Jersey City, NY-NJ-PA Metro Area
393           New York-Newark-Jersey City, NY-NJ-PA Metro Area
394    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
395              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
396              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
397              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
398              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
399               Charlotte-Concord-Gastonia, NC-SC Metro Area
400         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
401              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
402  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
403                            Cincinnati, OH-KY-IN Metro Area
404                               Oklahoma City, OK Metro Area
405              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
406                Austin-Round Rock-Georgetown, TX Metro Area
407              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
408              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
409              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
410              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
411                 Dallas-Fort Worth-Arlington, TX Metro Area
412              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
413                 Dallas-Fort Worth-Arlington, TX Metro Area
414                 Dallas-Fort Worth-Arlington, TX Metro Area
415                 Dallas-Fort Worth-Arlington, TX Metro Area
416              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
417    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
418    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
419         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
420         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
421         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
422              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
423                 Dallas-Fort Worth-Arlington, TX Metro Area
424                     Detroit-Warren-Dearborn, MI Metro Area
425                               Memphis, TN-MS-AR Metro Area
426                                Lake Charles, LA Metro Area
427                                    Montrose, CO Micro Area
428                 Dallas-Fort Worth-Arlington, TX Metro Area
429              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
430                 Dallas-Fort Worth-Arlington, TX Metro Area
431              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
432              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
433                 Dallas-Fort Worth-Arlington, TX Metro Area
434              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
435                 Dallas-Fort Worth-Arlington, TX Metro Area
436                 Dallas-Fort Worth-Arlington, TX Metro Area
437                 Dallas-Fort Worth-Arlington, TX Metro Area
438                 Dallas-Fort Worth-Arlington, TX Metro Area
439                 Dallas-Fort Worth-Arlington, TX Metro Area
440               Charlotte-Concord-Gastonia, NC-SC Metro Area
441         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
442              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
443              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
444              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
445                 Dallas-Fort Worth-Arlington, TX Metro Area
446                 Dallas-Fort Worth-Arlington, TX Metro Area
447                 Dallas-Fort Worth-Arlington, TX Metro Area
448                 Dallas-Fort Worth-Arlington, TX Metro Area
449                 Dallas-Fort Worth-Arlington, TX Metro Area
450               Charlotte-Concord-Gastonia, NC-SC Metro Area
451              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
452                 Dallas-Fort Worth-Arlington, TX Metro Area
453              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
454                                  Pittsburgh, PA Metro Area
455                 Dallas-Fort Worth-Arlington, TX Metro Area
456              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
457                 Dallas-Fort Worth-Arlington, TX Metro Area
458              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
459              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
460                 Dallas-Fort Worth-Arlington, TX Metro Area
461              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
462                Austin-Round Rock-Georgetown, TX Metro Area
463                            Cincinnati, OH-KY-IN Metro Area
464                                Raleigh-Cary, NC Metro Area
465              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
466              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
467                 Dallas-Fort Worth-Arlington, TX Metro Area
468              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
469         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
470         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
471         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
472                 Dallas-Fort Worth-Arlington, TX Metro Area
473                 Dallas-Fort Worth-Arlington, TX Metro Area
474              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
475                 Dallas-Fort Worth-Arlington, TX Metro Area
476                 Dallas-Fort Worth-Arlington, TX Metro Area
477         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
478              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
479                 Dallas-Fort Worth-Arlington, TX Metro Area
480                 Dallas-Fort Worth-Arlington, TX Metro Area
481                 Dallas-Fort Worth-Arlington, TX Metro Area
482         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
484                       Cape Coral-Fort Myers, FL Metro Area
485           New York-Newark-Jersey City, NY-NJ-PA Metro Area
486         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
487            Houston-The Woodlands-Sugar Land, TX Metro Area
488                Las Vegas-Henderson-Paradise, NV Metro Area
489                        New Orleans-Metairie, LA Metro Area
490              Los Angeles-Long Beach-Anaheim, CA Metro Area
491             Tampa-St. Petersburg-Clearwater, FL Metro Area
492         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
493                Las Vegas-Henderson-Paradise, NV Metro Area
494              Los Angeles-Long Beach-Anaheim, CA Metro Area
495           New York-Newark-Jersey City, NY-NJ-PA Metro Area
496                   Baltimore-Columbia-Towson, MD Metro Area
497         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
498                Las Vegas-Henderson-Paradise, NV Metro Area
499                     San Juan-Bayamón-Caguas, PR Metro Area
500             Tampa-St. Petersburg-Clearwater, FL Metro Area
501                Las Vegas-Henderson-Paradise, NV Metro Area
502         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
503         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
504                Las Vegas-Henderson-Paradise, NV Metro Area
505                        New Orleans-Metairie, LA Metro Area
506             Tampa-St. Petersburg-Clearwater, FL Metro Area
507                  Boston-Cambridge-Newton, MA-NH Metro Area
508                Las Vegas-Henderson-Paradise, NV Metro Area
509                Las Vegas-Henderson-Paradise, NV Metro Area
510                       Cape Coral-Fort Myers, FL Metro Area
511             Tampa-St. Petersburg-Clearwater, FL Metro Area
512                   Orlando-Kissimmee-Sanford, FL Metro Area
513                   Orlando-Kissimmee-Sanford, FL Metro Area
514                   Orlando-Kissimmee-Sanford, FL Metro Area
515            Houston-The Woodlands-Sugar Land, TX Metro Area
516         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
517                Las Vegas-Henderson-Paradise, NV Metro Area
518                        New Orleans-Metairie, LA Metro Area
519              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
520             Tampa-St. Petersburg-Clearwater, FL Metro Area
521                Las Vegas-Henderson-Paradise, NV Metro Area
522  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
523         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
524            Houston-The Woodlands-Sugar Land, TX Metro Area
525                   Orlando-Kissimmee-Sanford, FL Metro Area
526                Austin-Round Rock-Georgetown, TX Metro Area
527  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
528                  Boston-Cambridge-Newton, MA-NH Metro Area
529                   Baltimore-Columbia-Towson, MD Metro Area
530                      Denver-Aurora-Lakewood, CO Metro Area
531           New York-Newark-Jersey City, NY-NJ-PA Metro Area
532                Indianapolis-Carmel-Anderson, IN Metro Area
533                Las Vegas-Henderson-Paradise, NV Metro Area
534           New York-Newark-Jersey City, NY-NJ-PA Metro Area
535           New York-Newark-Jersey City, NY-NJ-PA Metro Area
536                Las Vegas-Henderson-Paradise, NV Metro Area
537         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
538                Las Vegas-Henderson-Paradise, NV Metro Area
539             Tampa-St. Petersburg-Clearwater, FL Metro Area
540  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
541                  Boston-Cambridge-Newton, MA-NH Metro Area
542                     Detroit-Warren-Dearborn, MI Metro Area
543                   Orlando-Kissimmee-Sanford, FL Metro Area
544                        New Orleans-Metairie, LA Metro Area
545                                  Pittsburgh, PA Metro Area
546                     Seattle-Tacoma-Bellevue, WA Metro Area
547         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
548                              Kansas City, MO-KS Metro Area
549                        New Orleans-Metairie, LA Metro Area
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
551              Louisville/Jefferson County, KY-IN Metro Area
552                   Orlando-Kissimmee-Sanford, FL Metro Area
553                       Cape Coral-Fort Myers, FL Metro Area
554                Las Vegas-Henderson-Paradise, NV Metro Area
555              Los Angeles-Long Beach-Anaheim, CA Metro Area
556  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
557                           Aguadilla-Isabela, PR Metro Area
558               Charlotte-Concord-Gastonia, NC-SC Metro Area
559                Las Vegas-Henderson-Paradise, NV Metro Area
560                                  Pittsburgh, PA Metro Area
561                     San Juan-Bayamón-Caguas, PR Metro Area
562                Las Vegas-Henderson-Paradise, NV Metro Area
563         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
564                Las Vegas-Henderson-Paradise, NV Metro Area
565                Las Vegas-Henderson-Paradise, NV Metro Area
566                Las Vegas-Henderson-Paradise, NV Metro Area
567                   Orlando-Kissimmee-Sanford, FL Metro Area
568                        New Orleans-Metairie, LA Metro Area
569                       Cape Coral-Fort Myers, FL Metro Area
570                Las Vegas-Henderson-Paradise, NV Metro Area
571              Los Angeles-Long Beach-Anaheim, CA Metro Area
572                   Orlando-Kissimmee-Sanford, FL Metro Area
573              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
574                  Boston-Cambridge-Newton, MA-NH Metro Area
575             Tampa-St. Petersburg-Clearwater, FL Metro Area
576         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
577                  Boston-Cambridge-Newton, MA-NH Metro Area
578                   Baltimore-Columbia-Towson, MD Metro Area
579                                    Columbus, OH Metro Area
580                Las Vegas-Henderson-Paradise, NV Metro Area
581               Charlotte-Concord-Gastonia, NC-SC Metro Area
582               Charlotte-Concord-Gastonia, NC-SC Metro Area
583    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
585    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
586               Charlotte-Concord-Gastonia, NC-SC Metro Area
587               Charlotte-Concord-Gastonia, NC-SC Metro Area
588               Charlotte-Concord-Gastonia, NC-SC Metro Area
589               Charlotte-Concord-Gastonia, NC-SC Metro Area
590               Charlotte-Concord-Gastonia, NC-SC Metro Area
591               Charlotte-Concord-Gastonia, NC-SC Metro Area
592    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
593    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
594    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
595               Charlotte-Concord-Gastonia, NC-SC Metro Area
596               Charlotte-Concord-Gastonia, NC-SC Metro Area
597               Charlotte-Concord-Gastonia, NC-SC Metro Area
598               Charlotte-Concord-Gastonia, NC-SC Metro Area
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
600               Charlotte-Concord-Gastonia, NC-SC Metro Area
601               Allentown-Bethlehem-Easton, PA-NJ Metro Area
602  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
603           New York-Newark-Jersey City, NY-NJ-PA Metro Area
604    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
605                                      Peoria, IL Metro Area
606               Charlotte-Concord-Gastonia, NC-SC Metro Area
607               Charlotte-Concord-Gastonia, NC-SC Metro Area
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
609               Charlotte-Concord-Gastonia, NC-SC Metro Area
610               Charlotte-Concord-Gastonia, NC-SC Metro Area
611               Charlotte-Concord-Gastonia, NC-SC Metro Area
612               Charlotte-Concord-Gastonia, NC-SC Metro Area
613               Charlotte-Concord-Gastonia, NC-SC Metro Area
614    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
615               Charlotte-Concord-Gastonia, NC-SC Metro Area
616                                     Jackson, MS Metro Area
617                                Jacksonville, FL Metro Area
618                        New Orleans-Metairie, LA Metro Area
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
620                                  Montgomery, AL Metro Area
621               Charlotte-Concord-Gastonia, NC-SC Metro Area
622    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
623    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
624               Charlotte-Concord-Gastonia, NC-SC Metro Area
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
627               Charlotte-Concord-Gastonia, NC-SC Metro Area
628               Charlotte-Concord-Gastonia, NC-SC Metro Area
629               Charlotte-Concord-Gastonia, NC-SC Metro Area
630               Charlotte-Concord-Gastonia, NC-SC Metro Area
631               Charlotte-Concord-Gastonia, NC-SC Metro Area
632               Charlotte-Concord-Gastonia, NC-SC Metro Area
633               Charlotte-Concord-Gastonia, NC-SC Metro Area
634               Charlotte-Concord-Gastonia, NC-SC Metro Area
635               Charlotte-Concord-Gastonia, NC-SC Metro Area
636    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
637    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
638               Charlotte-Concord-Gastonia, NC-SC Metro Area
639               Charlotte-Concord-Gastonia, NC-SC Metro Area
640               Charlotte-Concord-Gastonia, NC-SC Metro Area
641    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
642    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
643               Charlotte-Concord-Gastonia, NC-SC Metro Area
644               Charlotte-Concord-Gastonia, NC-SC Metro Area
645               Charlotte-Concord-Gastonia, NC-SC Metro Area
646               Charlotte-Concord-Gastonia, NC-SC Metro Area
647               Charlotte-Concord-Gastonia, NC-SC Metro Area
648               Charlotte-Concord-Gastonia, NC-SC Metro Area
649               Charlotte-Concord-Gastonia, NC-SC Metro Area
650    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
651    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
654               Charlotte-Concord-Gastonia, NC-SC Metro Area
655               Charlotte-Concord-Gastonia, NC-SC Metro Area
656               Charlotte-Concord-Gastonia, NC-SC Metro Area
657               Charlotte-Concord-Gastonia, NC-SC Metro Area
658               Charlotte-Concord-Gastonia, NC-SC Metro Area
659               Charlotte-Concord-Gastonia, NC-SC Metro Area
660               Charlotte-Concord-Gastonia, NC-SC Metro Area
661               Charlotte-Concord-Gastonia, NC-SC Metro Area
662               Charlotte-Concord-Gastonia, NC-SC Metro Area
663               Charlotte-Concord-Gastonia, NC-SC Metro Area
664    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
665               Charlotte-Concord-Gastonia, NC-SC Metro Area
666               Charlotte-Concord-Gastonia, NC-SC Metro Area
667    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
669  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
670                 Charleston-North Charleston, SC Metro Area
671    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
672                                  Wilmington, NC Metro Area
673                                Jacksonville, FL Metro Area
674         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
675                                Raleigh-Cary, NC Metro Area
676               Charlotte-Concord-Gastonia, NC-SC Metro Area
677               Charlotte-Concord-Gastonia, NC-SC Metro Area
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
683               Charlotte-Concord-Gastonia, NC-SC Metro Area
684               Charlotte-Concord-Gastonia, NC-SC Metro Area
685    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
686    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
687    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
688    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
689              Los Angeles-Long Beach-Anaheim, CA Metro Area
690                      Denver-Aurora-Lakewood, CO Metro Area
691              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
692              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
693              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
694              Los Angeles-Long Beach-Anaheim, CA Metro Area
695              San Diego-Chula Vista-Carlsbad, CA Metro Area
696                      Denver-Aurora-Lakewood, CO Metro Area
697              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
698              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
699                      Denver-Aurora-Lakewood, CO Metro Area
700              San Francisco-Oakland-Berkeley, CA Metro Area
701                      Denver-Aurora-Lakewood, CO Metro Area
702              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
703                      Denver-Aurora-Lakewood, CO Metro Area
704            Houston-The Woodlands-Sugar Land, TX Metro Area
705                      Spokane-Spokane Valley, WA Metro Area
706              Los Angeles-Long Beach-Anaheim, CA Metro Area
707             Portland-Vancouver-Hillsboro, OR-WA Metro Area
708                     Seattle-Tacoma-Bellevue, WA Metro Area
709              San Francisco-Oakland-Berkeley, CA Metro Area
710              San Jose-Sunnyvale-Santa Clara, CA Metro Area
711                     Seattle-Tacoma-Bellevue, WA Metro Area
712                              Salt Lake City, UT Metro Area
713                      Denver-Aurora-Lakewood, CO Metro Area
714                       Phoenix-Mesa-Chandler, AZ Metro Area
715                       Phoenix-Mesa-Chandler, AZ Metro Area
716             Portland-Vancouver-Hillsboro, OR-WA Metro Area
717              San Francisco-Oakland-Berkeley, CA Metro Area
718              Los Angeles-Long Beach-Anaheim, CA Metro Area
719              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
720                      Denver-Aurora-Lakewood, CO Metro Area
721              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
722                 Dallas-Fort Worth-Arlington, TX Metro Area
723                      Denver-Aurora-Lakewood, CO Metro Area
724                      Denver-Aurora-Lakewood, CO Metro Area
725              Los Angeles-Long Beach-Anaheim, CA Metro Area
726                      Denver-Aurora-Lakewood, CO Metro Area
727              Los Angeles-Long Beach-Anaheim, CA Metro Area
728                Austin-Round Rock-Georgetown, TX Metro Area
729                                  Boise City, ID Metro Area
730                                     Bozeman, MT Micro Area
731                  Des Moines-West Des Moines, IA Metro Area
732                               Memphis, TN-MS-AR Metro Area
733                     Omaha-Council Bluffs, NE-IA Metro Area
734                      Denver-Aurora-Lakewood, CO Metro Area
735                      Denver-Aurora-Lakewood, CO Metro Area
736         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
737                      Denver-Aurora-Lakewood, CO Metro Area
738                      Denver-Aurora-Lakewood, CO Metro Area
739              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
740              San Francisco-Oakland-Berkeley, CA Metro Area
741              San Francisco-Oakland-Berkeley, CA Metro Area
742                       Phoenix-Mesa-Chandler, AZ Metro Area
743             Portland-Vancouver-Hillsboro, OR-WA Metro Area
744              San Diego-Chula Vista-Carlsbad, CA Metro Area
745                     Seattle-Tacoma-Bellevue, WA Metro Area
746              San Francisco-Oakland-Berkeley, CA Metro Area
747              San Francisco-Oakland-Berkeley, CA Metro Area
748         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
749                              Salt Lake City, UT Metro Area
750              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
751              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
752                     Detroit-Warren-Dearborn, MI Metro Area
753                                  Boise City, ID Metro Area
754                                  Boise City, ID Metro Area
755              Los Angeles-Long Beach-Anaheim, CA Metro Area
756                     Seattle-Tacoma-Bellevue, WA Metro Area
757              San Francisco-Oakland-Berkeley, CA Metro Area
758            Houston-The Woodlands-Sugar Land, TX Metro Area
759            Houston-The Woodlands-Sugar Land, TX Metro Area
760            Houston-The Woodlands-Sugar Land, TX Metro Area
761              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
762                      Denver-Aurora-Lakewood, CO Metro Area
763                     Detroit-Warren-Dearborn, MI Metro Area
764         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
765                     Detroit-Warren-Dearborn, MI Metro Area
766                                     El Paso, TX Metro Area
767                              Salt Lake City, UT Metro Area
768                      Denver-Aurora-Lakewood, CO Metro Area
769                      Denver-Aurora-Lakewood, CO Metro Area
770              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
771    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
772              Los Angeles-Long Beach-Anaheim, CA Metro Area
773                       Phoenix-Mesa-Chandler, AZ Metro Area
774                                      Tucson, AZ Metro Area
775                                  Boise City, ID Metro Area
776                                     Bozeman, MT Micro Area
777                      Spokane-Spokane Valley, WA Metro Area
778                         Santa Rosa-Petaluma, CA Metro Area
779              San Jose-Sunnyvale-Santa Clara, CA Metro Area
780                            Glenwood Springs, CO Micro Area
781            Houston-The Woodlands-Sugar Land, TX Metro Area
782            Houston-The Woodlands-Sugar Land, TX Metro Area
783              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
784              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
785                 Dallas-Fort Worth-Arlington, TX Metro Area
786              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
787                       Phoenix-Mesa-Chandler, AZ Metro Area
788              San Francisco-Oakland-Berkeley, CA Metro Area
789                      Denver-Aurora-Lakewood, CO Metro Area
790                      Denver-Aurora-Lakewood, CO Metro Area
791                      Denver-Aurora-Lakewood, CO Metro Area
792              San Diego-Chula Vista-Carlsbad, CA Metro Area
793         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
794                                    Appleton, WI Metro Area
795    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
796                      Denver-Aurora-Lakewood, CO Metro Area
797              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
798             Portland-Vancouver-Hillsboro, OR-WA Metro Area
799                 Dallas-Fort Worth-Arlington, TX Metro Area
800              Los Angeles-Long Beach-Anaheim, CA Metro Area
801              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
802                      Denver-Aurora-Lakewood, CO Metro Area
803            Houston-The Woodlands-Sugar Land, TX Metro Area
804              Los Angeles-Long Beach-Anaheim, CA Metro Area
805                     Detroit-Warren-Dearborn, MI Metro Area
806         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
807                       Phoenix-Mesa-Chandler, AZ Metro Area
808                       Phoenix-Mesa-Chandler, AZ Metro Area
809              San Francisco-Oakland-Berkeley, CA Metro Area
810                            Cleveland-Elyria, OH Metro Area
811                                    Columbia, MO Metro Area
812                                     Wichita, KS Metro Area
813                                 Spartanburg, SC Metro Area
814                                   Knoxville, TN Metro Area
815                     Detroit-Warren-Dearborn, MI Metro Area
816              Los Angeles-Long Beach-Anaheim, CA Metro Area
817                                      Fresno, CA Metro Area
818                                     Medford, OR Metro Area
819              San Francisco-Oakland-Berkeley, CA Metro Area
820              San Diego-Chula Vista-Carlsbad, CA Metro Area
821              San Francisco-Oakland-Berkeley, CA Metro Area
822                 Sacramento-Roseville-Folsom, CA Metro Area
823              Los Angeles-Long Beach-Anaheim, CA Metro Area
824                     Seattle-Tacoma-Bellevue, WA Metro Area
825              San Francisco-Oakland-Berkeley, CA Metro Area
826                                      Fresno, CA Metro Area
827                      Denver-Aurora-Lakewood, CO Metro Area
828                     Detroit-Warren-Dearborn, MI Metro Area
829              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
830            Houston-The Woodlands-Sugar Land, TX Metro Area
831                       Phoenix-Mesa-Chandler, AZ Metro Area
832              San Jose-Sunnyvale-Santa Clara, CA Metro Area
833                              Salt Lake City, UT Metro Area
834                     Detroit-Warren-Dearborn, MI Metro Area
835                      Denver-Aurora-Lakewood, CO Metro Area
836                       Phoenix-Mesa-Chandler, AZ Metro Area
837                     Seattle-Tacoma-Bellevue, WA Metro Area
838                              Salt Lake City, UT Metro Area
839                      Denver-Aurora-Lakewood, CO Metro Area
840                      Denver-Aurora-Lakewood, CO Metro Area
841                      Denver-Aurora-Lakewood, CO Metro Area
842                     Seattle-Tacoma-Bellevue, WA Metro Area
843                       Phoenix-Mesa-Chandler, AZ Metro Area
844                 Sacramento-Roseville-Folsom, CA Metro Area
845                Austin-Round Rock-Georgetown, TX Metro Area
846                                      Fresno, CA Metro Area
847                                     Salinas, CA Metro Area
848             Portland-Vancouver-Hillsboro, OR-WA Metro Area
849              San Jose-Sunnyvale-Santa Clara, CA Metro Area
850                         Santa Rosa-Petaluma, CA Metro Area
851              Los Angeles-Long Beach-Anaheim, CA Metro Area
852              Los Angeles-Long Beach-Anaheim, CA Metro Area
853              Los Angeles-Long Beach-Anaheim, CA Metro Area
854                       Phoenix-Mesa-Chandler, AZ Metro Area
855              San Francisco-Oakland-Berkeley, CA Metro Area
856                     Detroit-Warren-Dearborn, MI Metro Area
857             Portland-Vancouver-Hillsboro, OR-WA Metro Area
858         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
859              Los Angeles-Long Beach-Anaheim, CA Metro Area
860                                  Boise City, ID Metro Area
861                                      Fresno, CA Metro Area
862                      Spokane-Spokane Valley, WA Metro Area
863              San Jose-Sunnyvale-Santa Clara, CA Metro Area
864            Riverside-San Bernardino-Ontario, CA Metro Area
865                 Dallas-Fort Worth-Arlington, TX Metro Area
866             Portland-Vancouver-Hillsboro, OR-WA Metro Area
867                       Phoenix-Mesa-Chandler, AZ Metro Area
868              Los Angeles-Long Beach-Anaheim, CA Metro Area
869                                  Boise City, ID Metro Area
870                 Dallas-Fort Worth-Arlington, TX Metro Area
871                      Spokane-Spokane Valley, WA Metro Area
872                Austin-Round Rock-Georgetown, TX Metro Area
873                      Spokane-Spokane Valley, WA Metro Area
874              Los Angeles-Long Beach-Anaheim, CA Metro Area
875             Portland-Vancouver-Hillsboro, OR-WA Metro Area
876              San Diego-Chula Vista-Carlsbad, CA Metro Area
877                      Denver-Aurora-Lakewood, CO Metro Area
878                 Dallas-Fort Worth-Arlington, TX Metro Area
879              San Diego-Chula Vista-Carlsbad, CA Metro Area
880              Los Angeles-Long Beach-Anaheim, CA Metro Area
881                      Denver-Aurora-Lakewood, CO Metro Area
882                      Denver-Aurora-Lakewood, CO Metro Area
883              San Francisco-Oakland-Berkeley, CA Metro Area
884              San Francisco-Oakland-Berkeley, CA Metro Area
885              San Francisco-Oakland-Berkeley, CA Metro Area
886                                  Boise City, ID Metro Area
887             Portland-Vancouver-Hillsboro, OR-WA Metro Area
888              San Diego-Chula Vista-Carlsbad, CA Metro Area
889                     Seattle-Tacoma-Bellevue, WA Metro Area
890                     Seattle-Tacoma-Bellevue, WA Metro Area
891              San Francisco-Oakland-Berkeley, CA Metro Area
892              San Francisco-Oakland-Berkeley, CA Metro Area
893              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
894              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
895                       Phoenix-Mesa-Chandler, AZ Metro Area
896              Los Angeles-Long Beach-Anaheim, CA Metro Area
897             Portland-Vancouver-Hillsboro, OR-WA Metro Area
898              San Diego-Chula Vista-Carlsbad, CA Metro Area
899              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
900                     Detroit-Warren-Dearborn, MI Metro Area
901              Los Angeles-Long Beach-Anaheim, CA Metro Area
902                     Seattle-Tacoma-Bellevue, WA Metro Area
903            Houston-The Woodlands-Sugar Land, TX Metro Area
904              San Francisco-Oakland-Berkeley, CA Metro Area
905             Portland-Vancouver-Hillsboro, OR-WA Metro Area
906                     Seattle-Tacoma-Bellevue, WA Metro Area
907                     Seattle-Tacoma-Bellevue, WA Metro Area
908                     Seattle-Tacoma-Bellevue, WA Metro Area
909                                     Pullman, WA Micro Area
910                 Sacramento-Roseville-Folsom, CA Metro Area
911                     Seattle-Tacoma-Bellevue, WA Metro Area
912                     Seattle-Tacoma-Bellevue, WA Metro Area
913                     Seattle-Tacoma-Bellevue, WA Metro Area
914                     Seattle-Tacoma-Bellevue, WA Metro Area
915                     Seattle-Tacoma-Bellevue, WA Metro Area
916                     Seattle-Tacoma-Bellevue, WA Metro Area
917                     Seattle-Tacoma-Bellevue, WA Metro Area
918                     Seattle-Tacoma-Bellevue, WA Metro Area
919             Portland-Vancouver-Hillsboro, OR-WA Metro Area
920             Portland-Vancouver-Hillsboro, OR-WA Metro Area
921                     Seattle-Tacoma-Bellevue, WA Metro Area
922              San Francisco-Oakland-Berkeley, CA Metro Area
923                     Seattle-Tacoma-Bellevue, WA Metro Area
924                     Seattle-Tacoma-Bellevue, WA Metro Area
925                     Seattle-Tacoma-Bellevue, WA Metro Area
926              San Francisco-Oakland-Berkeley, CA Metro Area
927              Los Angeles-Long Beach-Anaheim, CA Metro Area
928             Portland-Vancouver-Hillsboro, OR-WA Metro Area
929                     Seattle-Tacoma-Bellevue, WA Metro Area
930                                  Boise City, ID Metro Area
931                      Spokane-Spokane Valley, WA Metro Area
932                Las Vegas-Henderson-Paradise, NV Metro Area
933              Los Angeles-Long Beach-Anaheim, CA Metro Area
934                      Spokane-Spokane Valley, WA Metro Area
935              San Jose-Sunnyvale-Santa Clara, CA Metro Area
936              San Francisco-Oakland-Berkeley, CA Metro Area
937                     Seattle-Tacoma-Bellevue, WA Metro Area
938                     Seattle-Tacoma-Bellevue, WA Metro Area
939              Los Angeles-Long Beach-Anaheim, CA Metro Area
940                     Seattle-Tacoma-Bellevue, WA Metro Area
941                     Seattle-Tacoma-Bellevue, WA Metro Area
942                                     Bozeman, MT Micro Area
943                          Eugene-Springfield, OR Metro Area
944                                   Kalispell, MT Micro Area
945                                 Great Falls, MT Metro Area
946                                 Idaho Falls, ID Metro Area
947                                     Medford, OR Metro Area
948                                     Salinas, CA Metro Area
949                                    Missoula, MT Metro Area
950              San Francisco-Oakland-Berkeley, CA Metro Area
951             Portland-Vancouver-Hillsboro, OR-WA Metro Area
952                                     Pullman, WA Micro Area
953                                     Redding, CA Metro Area
954                                        Bend, OR Metro Area
955                                        Reno, NV Metro Area
956                 Sacramento-Roseville-Folsom, CA Metro Area
957                Las Vegas-Henderson-Paradise, NV Metro Area
958                                  Boise City, ID Metro Area
959                         Santa Rosa-Petaluma, CA Metro Area
960                     Seattle-Tacoma-Bellevue, WA Metro Area
961                     Seattle-Tacoma-Bellevue, WA Metro Area
962            Houston-The Woodlands-Sugar Land, TX Metro Area
963              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
964              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
965                      Denver-Aurora-Lakewood, CO Metro Area
966                      Denver-Aurora-Lakewood, CO Metro Area
967    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
968              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
969              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
970                  Boston-Cambridge-Newton, MA-NH Metro Area
971                      Denver-Aurora-Lakewood, CO Metro Area
972                      Denver-Aurora-Lakewood, CO Metro Area
973           New York-Newark-Jersey City, NY-NJ-PA Metro Area
974            Houston-The Woodlands-Sugar Land, TX Metro Area
975            Houston-The Woodlands-Sugar Land, TX Metro Area
976            Houston-The Woodlands-Sugar Land, TX Metro Area
977            Houston-The Woodlands-Sugar Land, TX Metro Area
978                      Denver-Aurora-Lakewood, CO Metro Area
979    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
980    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
981    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
982    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
983    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
984    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
985                       College Station-Bryan, TX Metro Area
986                      Denver-Aurora-Lakewood, CO Metro Area
987                      Denver-Aurora-Lakewood, CO Metro Area
988              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
989                      Denver-Aurora-Lakewood, CO Metro Area
990                      Denver-Aurora-Lakewood, CO Metro Area
991           New York-Newark-Jersey City, NY-NJ-PA Metro Area
992           New York-Newark-Jersey City, NY-NJ-PA Metro Area
993           New York-Newark-Jersey City, NY-NJ-PA Metro Area
994           New York-Newark-Jersey City, NY-NJ-PA Metro Area
995           New York-Newark-Jersey City, NY-NJ-PA Metro Area
996    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
997            Houston-The Woodlands-Sugar Land, TX Metro Area
998              Los Angeles-Long Beach-Anaheim, CA Metro Area
999              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1000             San Francisco-Oakland-Berkeley, CA Metro Area
1001          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1003                     Denver-Aurora-Lakewood, CO Metro Area
1004             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1005             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1006             San Francisco-Oakland-Berkeley, CA Metro Area
1007                     Denver-Aurora-Lakewood, CO Metro Area
1008                     Denver-Aurora-Lakewood, CO Metro Area
1009             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1010             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1011                     Denver-Aurora-Lakewood, CO Metro Area
1012          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1015                     Denver-Aurora-Lakewood, CO Metro Area
1016             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1017             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1018                 Boston-Cambridge-Newton, MA-NH Metro Area
1019          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1021           Houston-The Woodlands-Sugar Land, TX Metro Area
1022           Houston-The Woodlands-Sugar Land, TX Metro Area
1023             Los Angeles-Long Beach-Anaheim, CA Metro Area
1024             Los Angeles-Long Beach-Anaheim, CA Metro Area
1025                             Kansas City, MO-KS Metro Area
1026             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1027             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1028             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1029            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1030                      Phoenix-Mesa-Chandler, AZ Metro Area
1031                  San Antonio-New Braunfels, TX Metro Area
1032                Sacramento-Roseville-Folsom, CA Metro Area
1033          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1034             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1035             San Francisco-Oakland-Berkeley, CA Metro Area
1036                           Cleveland-Elyria, OH Metro Area
1037                           Cleveland-Elyria, OH Metro Area
1038                           Cleveland-Elyria, OH Metro Area
1039                     Denver-Aurora-Lakewood, CO Metro Area
1040                     Denver-Aurora-Lakewood, CO Metro Area
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1042           Houston-The Woodlands-Sugar Land, TX Metro Area
1043           Houston-The Woodlands-Sugar Land, TX Metro Area
1044                               Jacksonville, FL Metro Area
1045                  Orlando-Kissimmee-Sanford, FL Metro Area
1046        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1047             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1048             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1049        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1050                      Phoenix-Mesa-Chandler, AZ Metro Area
1051                               Raleigh-Cary, NC Metro Area
1052                      Cape Coral-Fort Myers, FL Metro Area
1053             San Diego-Chula Vista-Carlsbad, CA Metro Area
1054                                   Savannah, GA Metro Area
1055             San Francisco-Oakland-Berkeley, CA Metro Area
1056                    San Juan-Bayamón-Caguas, PR Metro Area
1057                             Salt Lake City, UT Metro Area
1058              North Port-Sarasota-Bradenton, FL Metro Area
1059            Tampa-St. Petersburg-Clearwater, FL Metro Area
1060                     Denver-Aurora-Lakewood, CO Metro Area
1061                     Denver-Aurora-Lakewood, CO Metro Area
1062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1064           Houston-The Woodlands-Sugar Land, TX Metro Area
1065             San Francisco-Oakland-Berkeley, CA Metro Area
1066                     Denver-Aurora-Lakewood, CO Metro Area
1067                     Denver-Aurora-Lakewood, CO Metro Area
1068             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1069          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1070          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1072           Houston-The Woodlands-Sugar Land, TX Metro Area
1073           Houston-The Woodlands-Sugar Land, TX Metro Area
1074           Houston-The Woodlands-Sugar Land, TX Metro Area
1075             San Francisco-Oakland-Berkeley, CA Metro Area
1076             San Francisco-Oakland-Berkeley, CA Metro Area
1077             San Francisco-Oakland-Berkeley, CA Metro Area
1078 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1079                 Boston-Cambridge-Newton, MA-NH Metro Area
1080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1081                               Jacksonville, FL Metro Area
1082             Los Angeles-Long Beach-Anaheim, CA Metro Area
1083                  Orlando-Kissimmee-Sanford, FL Metro Area
1084        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1085                               Raleigh-Cary, NC Metro Area
1086             San Francisco-Oakland-Berkeley, CA Metro Area
1087            Tampa-St. Petersburg-Clearwater, FL Metro Area
1088                     Denver-Aurora-Lakewood, CO Metro Area
1089                               Jacksonville, FL Metro Area
1090             Los Angeles-Long Beach-Anaheim, CA Metro Area
1091          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1092                       New Orleans-Metairie, LA Metro Area
1093             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1094                      Phoenix-Mesa-Chandler, AZ Metro Area
1095                      Cape Coral-Fort Myers, FL Metro Area
1096            Tampa-St. Petersburg-Clearwater, FL Metro Area
1097                     Denver-Aurora-Lakewood, CO Metro Area
1098                     Denver-Aurora-Lakewood, CO Metro Area
1099                     Denver-Aurora-Lakewood, CO Metro Area
1100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1103           Houston-The Woodlands-Sugar Land, TX Metro Area
1104             San Francisco-Oakland-Berkeley, CA Metro Area
1105                     Denver-Aurora-Lakewood, CO Metro Area
1106                     Denver-Aurora-Lakewood, CO Metro Area
1107          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1108          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1111           Houston-The Woodlands-Sugar Land, TX Metro Area
1112           Houston-The Woodlands-Sugar Land, TX Metro Area
1113           Houston-The Woodlands-Sugar Land, TX Metro Area
1114           Houston-The Woodlands-Sugar Land, TX Metro Area
1115           Houston-The Woodlands-Sugar Land, TX Metro Area
1116           Houston-The Woodlands-Sugar Land, TX Metro Area
1117             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1118             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1119                     Denver-Aurora-Lakewood, CO Metro Area
1120          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1121           Houston-The Woodlands-Sugar Land, TX Metro Area
1122           Houston-The Woodlands-Sugar Land, TX Metro Area
1123           Houston-The Woodlands-Sugar Land, TX Metro Area
1124               Las Vegas-Henderson-Paradise, NV Metro Area
1125                  Orlando-Kissimmee-Sanford, FL Metro Area
1126             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1127                     Denver-Aurora-Lakewood, CO Metro Area
1128                     Denver-Aurora-Lakewood, CO Metro Area
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1130             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1131                     Denver-Aurora-Lakewood, CO Metro Area
1132             Los Angeles-Long Beach-Anaheim, CA Metro Area
1133                     Denver-Aurora-Lakewood, CO Metro Area
1134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1136           Houston-The Woodlands-Sugar Land, TX Metro Area
1137           Houston-The Woodlands-Sugar Land, TX Metro Area
1138             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1139           Houston-The Woodlands-Sugar Land, TX Metro Area
1140           Houston-The Woodlands-Sugar Land, TX Metro Area
1141                     Denver-Aurora-Lakewood, CO Metro Area
1142                     Denver-Aurora-Lakewood, CO Metro Area
1143                     Denver-Aurora-Lakewood, CO Metro Area
1144                     Denver-Aurora-Lakewood, CO Metro Area
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1146           Houston-The Woodlands-Sugar Land, TX Metro Area
1147                     Denver-Aurora-Lakewood, CO Metro Area
1148                     Denver-Aurora-Lakewood, CO Metro Area
1149                     Denver-Aurora-Lakewood, CO Metro Area
1150                     Denver-Aurora-Lakewood, CO Metro Area
1151                  Baltimore-Columbia-Towson, MD Metro Area
1152                           Cleveland-Elyria, OH Metro Area
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1154                     Denver-Aurora-Lakewood, CO Metro Area
1155          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1156        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1157                      Grand Rapids-Kentwood, MI Metro Area
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1159           Houston-The Woodlands-Sugar Land, TX Metro Area
1160                                 Pittsburgh, PA Metro Area
1161                                   Richmond, VA Metro Area
1162                                  Rochester, NY Metro Area
1163             San Diego-Chula Vista-Carlsbad, CA Metro Area
1164                     Denver-Aurora-Lakewood, CO Metro Area
1165             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1166          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1167                     Denver-Aurora-Lakewood, CO Metro Area
1168          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1169             San Francisco-Oakland-Berkeley, CA Metro Area
1170             San Francisco-Oakland-Berkeley, CA Metro Area
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1172             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1173             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1174                     Denver-Aurora-Lakewood, CO Metro Area
1175                     Denver-Aurora-Lakewood, CO Metro Area
1176             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1177             San Francisco-Oakland-Berkeley, CA Metro Area
1178          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1179           Houston-The Woodlands-Sugar Land, TX Metro Area
1180           Houston-The Woodlands-Sugar Land, TX Metro Area
1181                     Denver-Aurora-Lakewood, CO Metro Area
1182                     Denver-Aurora-Lakewood, CO Metro Area
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1184             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1185             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1186             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1187               Austin-Round Rock-Georgetown, TX Metro Area
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1189          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1190        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1193           Houston-The Woodlands-Sugar Land, TX Metro Area
1194                    Kahului-Wailuku-Lahaina, HI Metro Area
1195             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1196             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1197             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1198          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1199           Houston-The Woodlands-Sugar Land, TX Metro Area
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1201                           Cleveland-Elyria, OH Metro Area
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1203           Houston-The Woodlands-Sugar Land, TX Metro Area
1204           Houston-The Woodlands-Sugar Land, TX Metro Area
1205                Dallas-Fort Worth-Arlington, TX Metro Area
1206                Dallas-Fort Worth-Arlington, TX Metro Area
1207               Las Vegas-Henderson-Paradise, NV Metro Area
1208               Austin-Round Rock-Georgetown, TX Metro Area
1209               Las Vegas-Henderson-Paradise, NV Metro Area
1210                      Phoenix-Mesa-Chandler, AZ Metro Area
1211                  Baltimore-Columbia-Towson, MD Metro Area
1212                  Baltimore-Columbia-Towson, MD Metro Area
1213                  Baltimore-Columbia-Towson, MD Metro Area
1214                  Baltimore-Columbia-Towson, MD Metro Area
1215                  Orlando-Kissimmee-Sanford, FL Metro Area
1216             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1217             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1218                  Baltimore-Columbia-Towson, MD Metro Area
1219                  Orlando-Kissimmee-Sanford, FL Metro Area
1220               Las Vegas-Henderson-Paradise, NV Metro Area
1221                Dallas-Fort Worth-Arlington, TX Metro Area
1222                  Baltimore-Columbia-Towson, MD Metro Area
1223                Dallas-Fort Worth-Arlington, TX Metro Area
1224                Dallas-Fort Worth-Arlington, TX Metro Area
1225                Dallas-Fort Worth-Arlington, TX Metro Area
1226                Dallas-Fort Worth-Arlington, TX Metro Area
1227                Dallas-Fort Worth-Arlington, TX Metro Area
1228           Houston-The Woodlands-Sugar Land, TX Metro Area
1229          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1230                  Orlando-Kissimmee-Sanford, FL Metro Area
1231             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1232                         Milwaukee-Waukesha, WI Metro Area
1233                      Phoenix-Mesa-Chandler, AZ Metro Area
1234                      Phoenix-Mesa-Chandler, AZ Metro Area
1235                      Phoenix-Mesa-Chandler, AZ Metro Area
1236                               St. Louis, MO-IL Metro Area
1237               Austin-Round Rock-Georgetown, TX Metro Area
1238 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1239                           Cleveland-Elyria, OH Metro Area
1240                                Panama City, FL Metro Area
1241        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1242           Houston-The Woodlands-Sugar Land, TX Metro Area
1243               Indianapolis-Carmel-Anderson, IN Metro Area
1244                                    Jackson, MS Metro Area
1245               Las Vegas-Henderson-Paradise, NV Metro Area
1246       Little Rock-North Little Rock-Conway, AR Metro Area
1247                             Kansas City, MO-KS Metro Area
1248                              Memphis, TN-MS-AR Metro Area
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1251                      Phoenix-Mesa-Chandler, AZ Metro Area
1252                                 Pittsburgh, PA Metro Area
1253                                   Richmond, VA Metro Area
1254                      Cape Coral-Fort Myers, FL Metro Area
1255            Tampa-St. Petersburg-Clearwater, FL Metro Area
1256 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1257                Dallas-Fort Worth-Arlington, TX Metro Area
1258                Dallas-Fort Worth-Arlington, TX Metro Area
1259                Dallas-Fort Worth-Arlington, TX Metro Area
1260                                    El Paso, TX Metro Area
1261           Houston-The Woodlands-Sugar Land, TX Metro Area
1262           Houston-The Woodlands-Sugar Land, TX Metro Area
1263             Los Angeles-Long Beach-Anaheim, CA Metro Area
1264             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1265                      Phoenix-Mesa-Chandler, AZ Metro Area
1266                      Phoenix-Mesa-Chandler, AZ Metro Area
1267                      Phoenix-Mesa-Chandler, AZ Metro Area
1268             San Diego-Chula Vista-Carlsbad, CA Metro Area
1269             Los Angeles-Long Beach-Anaheim, CA Metro Area
1270                  Baltimore-Columbia-Towson, MD Metro Area
1271                Dallas-Fort Worth-Arlington, TX Metro Area
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1273           Houston-The Woodlands-Sugar Land, TX Metro Area
1274                      Brownsville-Harlingen, TX Metro Area
1275             Los Angeles-Long Beach-Anaheim, CA Metro Area
1276             Los Angeles-Long Beach-Anaheim, CA Metro Area
1277                             Kansas City, MO-KS Metro Area
1278             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1279        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1280                       New Orleans-Metairie, LA Metro Area
1281             San Francisco-Oakland-Berkeley, CA Metro Area
1282                               Raleigh-Cary, NC Metro Area
1283             Los Angeles-Long Beach-Anaheim, CA Metro Area
1284                               St. Louis, MO-IL Metro Area
1285            Tampa-St. Petersburg-Clearwater, FL Metro Area
1286             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1287             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1288                  Baltimore-Columbia-Towson, MD Metro Area
1289                  Orlando-Kissimmee-Sanford, FL Metro Area
1290                  Baltimore-Columbia-Towson, MD Metro Area
1291                Dallas-Fort Worth-Arlington, TX Metro Area
1292           Houston-The Woodlands-Sugar Land, TX Metro Area
1293                  Orlando-Kissimmee-Sanford, FL Metro Area
1294             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1295            Tampa-St. Petersburg-Clearwater, FL Metro Area
1296               Las Vegas-Henderson-Paradise, NV Metro Area
1297               Austin-Round Rock-Georgetown, TX Metro Area
1298          Hartford-East Hartford-Middletown, CT Metro Area
1299                Dallas-Fort Worth-Arlington, TX Metro Area
1300                     Denver-Aurora-Lakewood, CO Metro Area
1301           Houston-The Woodlands-Sugar Land, TX Metro Area
1302          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1303                             Kansas City, MO-KS Metro Area
1304                  Orlando-Kissimmee-Sanford, FL Metro Area
1305     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1306                      Phoenix-Mesa-Chandler, AZ Metro Area
1307                      Cape Coral-Fort Myers, FL Metro Area
1308             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1309              North Port-Sarasota-Bradenton, FL Metro Area
1310            Tampa-St. Petersburg-Clearwater, FL Metro Area
1311                 Boston-Cambridge-Newton, MA-NH Metro Area
1312                  Baltimore-Columbia-Towson, MD Metro Area
1313                Charleston-North Charleston, SC Metro Area
1314                           Cleveland-Elyria, OH Metro Area
1315              Charlotte-Concord-Gastonia, NC-SC Metro Area
1316                                   Columbus, OH Metro Area
1317                    Detroit-Warren-Dearborn, MI Metro Area
1318                                Panama City, FL Metro Area
1319                               Jacksonville, FL Metro Area
1320             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1321        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1322                         Milwaukee-Waukesha, WI Metro Area
1323                       New Orleans-Metairie, LA Metro Area
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1325             San Francisco-Oakland-Berkeley, CA Metro Area
1326             San Francisco-Oakland-Berkeley, CA Metro Area
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1328                                 Pittsburgh, PA Metro Area
1329                 Pensacola-Ferry Pass-Brent, FL Metro Area
1330                               Raleigh-Cary, NC Metro Area
1331                                   Savannah, GA Metro Area
1332         Crestview-Fort Walton Beach-Destin, FL Metro Area
1333                     Denver-Aurora-Lakewood, CO Metro Area
1334                     Denver-Aurora-Lakewood, CO Metro Area
1335               Las Vegas-Henderson-Paradise, NV Metro Area
1336             San Francisco-Oakland-Berkeley, CA Metro Area
1337                      Phoenix-Mesa-Chandler, AZ Metro Area
1338             San Diego-Chula Vista-Carlsbad, CA Metro Area
1339               Las Vegas-Henderson-Paradise, NV Metro Area
1340 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1341 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1342                  Baltimore-Columbia-Towson, MD Metro Area
1343                  Baltimore-Columbia-Towson, MD Metro Area
1344                  Baltimore-Columbia-Towson, MD Metro Area
1345                  Baltimore-Columbia-Towson, MD Metro Area
1346                  Baltimore-Columbia-Towson, MD Metro Area
1347                  Baltimore-Columbia-Towson, MD Metro Area
1348             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1349             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1350             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1351             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1352             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1353             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1354                  Baltimore-Columbia-Towson, MD Metro Area
1355        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1356                  Orlando-Kissimmee-Sanford, FL Metro Area
1357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1358                Dallas-Fort Worth-Arlington, TX Metro Area
1359                Dallas-Fort Worth-Arlington, TX Metro Area
1360                Dallas-Fort Worth-Arlington, TX Metro Area
1361                Dallas-Fort Worth-Arlington, TX Metro Area
1362               Las Vegas-Henderson-Paradise, NV Metro Area
1363                Sacramento-Roseville-Folsom, CA Metro Area
1364               Austin-Round Rock-Georgetown, TX Metro Area
1365                     Denver-Aurora-Lakewood, CO Metro Area
1366           Houston-The Woodlands-Sugar Land, TX Metro Area
1367             San Francisco-Oakland-Berkeley, CA Metro Area
1368             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1369                          Birmingham-Hoover, AL Metro Area
1370 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1371 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1372                           Cincinnati, OH-KY-IN Metro Area
1373                      Grand Rapids-Kentwood, MI Metro Area
1374               Indianapolis-Carmel-Anderson, IN Metro Area
1375             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1376                                   Savannah, GA Metro Area
1377         Crestview-Fort Walton Beach-Destin, FL Metro Area
1378          Hartford-East Hartford-Middletown, CT Metro Area
1379                        Buffalo-Cheektowaga, NY Metro Area
1380                Charleston-North Charleston, SC Metro Area
1381                           Cleveland-Elyria, OH Metro Area
1382        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1383                                Spartanburg, SC Metro Area
1384           Houston-The Woodlands-Sugar Land, TX Metro Area
1385          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1386               Las Vegas-Henderson-Paradise, NV Metro Area
1387          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1388             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1389        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1391     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1392                      Phoenix-Mesa-Chandler, AZ Metro Area
1393                                 Pittsburgh, PA Metro Area
1394                      Providence-Warwick, RI-MA Metro Area
1395                    Portland-South Portland, ME Metro Area
1396                               Raleigh-Cary, NC Metro Area
1397                                  Rochester, NY Metro Area
1398                      Cape Coral-Fort Myers, FL Metro Area
1399             Louisville/Jefferson County, KY-IN Metro Area
1400                     Denver-Aurora-Lakewood, CO Metro Area
1401               Las Vegas-Henderson-Paradise, NV Metro Area
1402 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1403 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1404 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1405                Dallas-Fort Worth-Arlington, TX Metro Area
1406             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1407                               St. Louis, MO-IL Metro Area
1408 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1409 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1410                  Baltimore-Columbia-Towson, MD Metro Area
1411               Las Vegas-Henderson-Paradise, NV Metro Area
1412             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1413                               St. Louis, MO-IL Metro Area
1414 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1415             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1416             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1417              North Port-Sarasota-Bradenton, FL Metro Area
1418                               St. Louis, MO-IL Metro Area
1419 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1420                  Baltimore-Columbia-Towson, MD Metro Area
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1422               Las Vegas-Henderson-Paradise, NV Metro Area
1423                      Phoenix-Mesa-Chandler, AZ Metro Area
1424                               St. Louis, MO-IL Metro Area
1425            Tampa-St. Petersburg-Clearwater, FL Metro Area
1426               Las Vegas-Henderson-Paradise, NV Metro Area
1427               Las Vegas-Henderson-Paradise, NV Metro Area
1428                      Phoenix-Mesa-Chandler, AZ Metro Area
1429           Houston-The Woodlands-Sugar Land, TX Metro Area
1430           Houston-The Woodlands-Sugar Land, TX Metro Area
1431                     Denver-Aurora-Lakewood, CO Metro Area
1432             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1433                  Baltimore-Columbia-Towson, MD Metro Area
1434                  Orlando-Kissimmee-Sanford, FL Metro Area
1435             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1436             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1437            Tampa-St. Petersburg-Clearwater, FL Metro Area
1438                                Albuquerque, NM Metro Area
1439               Austin-Round Rock-Georgetown, TX Metro Area
1440                          Birmingham-Hoover, AL Metro Area
1441                     Denver-Aurora-Lakewood, CO Metro Area
1442                     Denver-Aurora-Lakewood, CO Metro Area
1443                                    El Paso, TX Metro Area
1444           Houston-The Woodlands-Sugar Land, TX Metro Area
1445          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1446             Los Angeles-Long Beach-Anaheim, CA Metro Area
1447                  Orlando-Kissimmee-Sanford, FL Metro Area
1448             San Francisco-Oakland-Berkeley, CA Metro Area
1449                    Omaha-Council Bluffs, NE-IA Metro Area
1450             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1451                             Salt Lake City, UT Metro Area
1452             Los Angeles-Long Beach-Anaheim, CA Metro Area
1453                               St. Louis, MO-IL Metro Area
1454            Tampa-St. Petersburg-Clearwater, FL Metro Area
1455                                   Amarillo, TX Metro Area
1456               Austin-Round Rock-Georgetown, TX Metro Area
1457                                   Columbus, OH Metro Area
1458                           Colorado Springs, CO Metro Area
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1460                                Panama City, FL Metro Area
1461        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1462           Houston-The Woodlands-Sugar Land, TX Metro Area
1463                                    Lubbock, TX Metro Area
1464       Little Rock-North Little Rock-Conway, AR Metro Area
1465                                    Midland, TX Metro Area
1466                             Kansas City, MO-KS Metro Area
1467             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1468        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1469                       New Orleans-Metairie, LA Metro Area
1470             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1471                      Phoenix-Mesa-Chandler, AZ Metro Area
1472                 Pensacola-Ferry Pass-Brent, FL Metro Area
1473                  San Antonio-New Braunfels, TX Metro Area
1474                                      Tulsa, OK Metro Area
1475         Crestview-Fort Walton Beach-Destin, FL Metro Area
1476 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1477 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1478 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1479        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1480             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1481                               St. Louis, MO-IL Metro Area
1482                               St. Louis, MO-IL Metro Area
1483                                   Columbus, OH Metro Area
1484                Dallas-Fort Worth-Arlington, TX Metro Area
1485                  Orlando-Kissimmee-Sanford, FL Metro Area
1486                         Milwaukee-Waukesha, WI Metro Area
1487                    Omaha-Council Bluffs, NE-IA Metro Area
1488                      Cape Coral-Fort Myers, FL Metro Area
1489                               St. Louis, MO-IL Metro Area
1490            Tampa-St. Petersburg-Clearwater, FL Metro Area
1491                          Birmingham-Hoover, AL Metro Area
1492 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1493             Los Angeles-Long Beach-Anaheim, CA Metro Area
1494                  Baltimore-Columbia-Towson, MD Metro Area
1495                           Cincinnati, OH-KY-IN Metro Area
1496                Dallas-Fort Worth-Arlington, TX Metro Area
1497                Dallas-Fort Worth-Arlington, TX Metro Area
1498                                    El Paso, TX Metro Area
1499                     Spokane-Spokane Valley, WA Metro Area
1500           Houston-The Woodlands-Sugar Land, TX Metro Area
1501               Indianapolis-Carmel-Anderson, IN Metro Area
1502               Las Vegas-Henderson-Paradise, NV Metro Area
1503          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1504             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1505             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1506                         Milwaukee-Waukesha, WI Metro Area
1507                  Santa Maria-Santa Barbara, CA Metro Area
1508             Los Angeles-Long Beach-Anaheim, CA Metro Area
1509                               St. Louis, MO-IL Metro Area
1510                                      Tulsa, OK Metro Area
1511                                     Tucson, AZ Metro Area
1512                                Albuquerque, NM Metro Area
1513                        Buffalo-Cheektowaga, NY Metro Area
1514                Charleston-North Charleston, SC Metro Area
1515                          Steamboat Springs, CO Micro Area
1516           Houston-The Woodlands-Sugar Land, TX Metro Area
1517                                    Wichita, KS Metro Area
1518               Las Vegas-Henderson-Paradise, NV Metro Area
1519             Los Angeles-Long Beach-Anaheim, CA Metro Area
1520       Little Rock-North Little Rock-Conway, AR Metro Area
1521        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1522                       New Orleans-Metairie, LA Metro Area
1523             San Francisco-Oakland-Berkeley, CA Metro Area
1524                              Oklahoma City, OK Metro Area
1525                                       Reno, NV Metro Area
1526             San Diego-Chula Vista-Carlsbad, CA Metro Area
1527            Tampa-St. Petersburg-Clearwater, FL Metro Area
1528                               St. Louis, MO-IL Metro Area
1529 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1530             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1531             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1532 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1533                  Baltimore-Columbia-Towson, MD Metro Area
1534                               St. Louis, MO-IL Metro Area
1535           Houston-The Woodlands-Sugar Land, TX Metro Area
1536                               St. Louis, MO-IL Metro Area
1537               Austin-Round Rock-Georgetown, TX Metro Area
1538                     Denver-Aurora-Lakewood, CO Metro Area
1539           Houston-The Woodlands-Sugar Land, TX Metro Area
1540               Las Vegas-Henderson-Paradise, NV Metro Area
1541             Los Angeles-Long Beach-Anaheim, CA Metro Area
1542                      Phoenix-Mesa-Chandler, AZ Metro Area
1543               Austin-Round Rock-Georgetown, TX Metro Area
1544           Houston-The Woodlands-Sugar Land, TX Metro Area
1545           Houston-The Woodlands-Sugar Land, TX Metro Area
1546                      Phoenix-Mesa-Chandler, AZ Metro Area
1547                  San Antonio-New Braunfels, TX Metro Area
1548             San Francisco-Oakland-Berkeley, CA Metro Area
1549               Las Vegas-Henderson-Paradise, NV Metro Area
1550             San Francisco-Oakland-Berkeley, CA Metro Area
1551               Las Vegas-Henderson-Paradise, NV Metro Area
1552                  Baltimore-Columbia-Towson, MD Metro Area
1553           Houston-The Woodlands-Sugar Land, TX Metro Area
1554           Houston-The Woodlands-Sugar Land, TX Metro Area
1555           Houston-The Woodlands-Sugar Land, TX Metro Area
1556                  Orlando-Kissimmee-Sanford, FL Metro Area
1557                       New Orleans-Metairie, LA Metro Area
1558                               Raleigh-Cary, NC Metro Area
1559                  Baltimore-Columbia-Towson, MD Metro Area
1560                Dallas-Fort Worth-Arlington, TX Metro Area
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1563                      Phoenix-Mesa-Chandler, AZ Metro Area
1564                      Phoenix-Mesa-Chandler, AZ Metro Area
1565                                 Pittsburgh, PA Metro Area
1566                  San Antonio-New Braunfels, TX Metro Area
1567            Tampa-St. Petersburg-Clearwater, FL Metro Area
1568                     Denver-Aurora-Lakewood, CO Metro Area
1569                     Denver-Aurora-Lakewood, CO Metro Area
1570               Las Vegas-Henderson-Paradise, NV Metro Area
1571             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1572                      Phoenix-Mesa-Chandler, AZ Metro Area
1573                Sacramento-Roseville-Folsom, CA Metro Area
1574               Las Vegas-Henderson-Paradise, NV Metro Area
1575             San Francisco-Oakland-Berkeley, CA Metro Area
1576                  Baltimore-Columbia-Towson, MD Metro Area
1577           Houston-The Woodlands-Sugar Land, TX Metro Area
1578                                      Kapaa, HI Micro Area
1579             San Francisco-Oakland-Berkeley, CA Metro Area
1580             San Francisco-Oakland-Berkeley, CA Metro Area
1581                      Phoenix-Mesa-Chandler, AZ Metro Area
1582           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1583 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1584                  Baltimore-Columbia-Towson, MD Metro Area
1585                Dallas-Fort Worth-Arlington, TX Metro Area
1586                     Denver-Aurora-Lakewood, CO Metro Area
1587                                    El Paso, TX Metro Area
1588                                Spartanburg, SC Metro Area
1589        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1590        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1591                       New Orleans-Metairie, LA Metro Area
1592                      Phoenix-Mesa-Chandler, AZ Metro Area
1593                               St. Louis, MO-IL Metro Area
1594                               St. Louis, MO-IL Metro Area
1595               Austin-Round Rock-Georgetown, TX Metro Area
1596             Los Angeles-Long Beach-Anaheim, CA Metro Area
1597                                Panama City, FL Metro Area
1598        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1599                      Brownsville-Harlingen, TX Metro Area
1600               Las Vegas-Henderson-Paradise, NV Metro Area
1601             Los Angeles-Long Beach-Anaheim, CA Metro Area
1602                                    Lubbock, TX Metro Area
1603          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1604             Los Angeles-Long Beach-Anaheim, CA Metro Area
1605                                    Midland, TX Metro Area
1606                  Orlando-Kissimmee-Sanford, FL Metro Area
1607                              Memphis, TN-MS-AR Metro Area
1608             San Francisco-Oakland-Berkeley, CA Metro Area
1609                              Oklahoma City, OK Metro Area
1610           Riverside-San Bernardino-Ontario, CA Metro Area
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1612                 Pensacola-Ferry Pass-Brent, FL Metro Area
1613                      Cape Coral-Fort Myers, FL Metro Area
1614                  San Antonio-New Braunfels, TX Metro Area
1615                  San Antonio-New Braunfels, TX Metro Area
1616                                   Savannah, GA Metro Area
1617             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1618            Tampa-St. Petersburg-Clearwater, FL Metro Area
1619                                      Tulsa, OK Metro Area
1620           Houston-The Woodlands-Sugar Land, TX Metro Area
1621           Houston-The Woodlands-Sugar Land, TX Metro Area
1622             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1623             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1624                Dallas-Fort Worth-Arlington, TX Metro Area
1625                Dallas-Fort Worth-Arlington, TX Metro Area
1626             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1627                Dallas-Fort Worth-Arlington, TX Metro Area
1628                Dallas-Fort Worth-Arlington, TX Metro Area
1629             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1630                     Denver-Aurora-Lakewood, CO Metro Area
1631                               St. Louis, MO-IL Metro Area
1632                  Baltimore-Columbia-Towson, MD Metro Area
1633                Dallas-Fort Worth-Arlington, TX Metro Area
1634           Houston-The Woodlands-Sugar Land, TX Metro Area
1635                  Orlando-Kissimmee-Sanford, FL Metro Area
1636                      Cape Coral-Fort Myers, FL Metro Area
1637              North Port-Sarasota-Bradenton, FL Metro Area
1638 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1639                  Baltimore-Columbia-Towson, MD Metro Area
1640                  Baltimore-Columbia-Towson, MD Metro Area
1641                  Baltimore-Columbia-Towson, MD Metro Area
1642                               St. Louis, MO-IL Metro Area
1643 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1644             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1645                      Phoenix-Mesa-Chandler, AZ Metro Area
1646                      Phoenix-Mesa-Chandler, AZ Metro Area
1647                      Phoenix-Mesa-Chandler, AZ Metro Area
1648                                Albuquerque, NM Metro Area
1649                                   Amarillo, TX Metro Area
1650               Austin-Round Rock-Georgetown, TX Metro Area
1651               Austin-Round Rock-Georgetown, TX Metro Area
1652                Dallas-Fort Worth-Arlington, TX Metro Area
1653                     Spokane-Spokane Valley, WA Metro Area
1654             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1655                         Milwaukee-Waukesha, WI Metro Area
1656             San Francisco-Oakland-Berkeley, CA Metro Area
1657            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1658                  San Antonio-New Braunfels, TX Metro Area
1659                             Salt Lake City, UT Metro Area
1660                Sacramento-Roseville-Folsom, CA Metro Area
1661             Los Angeles-Long Beach-Anaheim, CA Metro Area
1662                               St. Louis, MO-IL Metro Area
1663                                 Boise City, ID Metro Area
1664             Los Angeles-Long Beach-Anaheim, CA Metro Area
1665                  Baltimore-Columbia-Towson, MD Metro Area
1666                                    Bozeman, MT Micro Area
1667                           Colorado Springs, CO Metro Area
1668                         Eugene-Springfield, OR Metro Area
1669             Los Angeles-Long Beach-Anaheim, CA Metro Area
1670                         Milwaukee-Waukesha, WI Metro Area
1671           Riverside-San Bernardino-Ontario, CA Metro Area
1672           Riverside-San Bernardino-Ontario, CA Metro Area
1673                                       Reno, NV Metro Area
1674             San Diego-Chula Vista-Carlsbad, CA Metro Area
1675                  Santa Maria-Santa Barbara, CA Metro Area
1676             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1677                                      Tulsa, OK Metro Area
1678                                     Tucson, AZ Metro Area
1679                                Albuquerque, NM Metro Area
1680                                    El Paso, TX Metro Area
1681                             Urban Honolulu, HI Metro Area
1682             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1683                       New Orleans-Metairie, LA Metro Area
1684                       New Orleans-Metairie, LA Metro Area
1685                      Phoenix-Mesa-Chandler, AZ Metro Area
1686                      Phoenix-Mesa-Chandler, AZ Metro Area
1687               Austin-Round Rock-Georgetown, TX Metro Area
1688               Austin-Round Rock-Georgetown, TX Metro Area
1689           Houston-The Woodlands-Sugar Land, TX Metro Area
1690                                       Reno, NV Metro Area
1691                Sacramento-Roseville-Folsom, CA Metro Area
1692                Sacramento-Roseville-Folsom, CA Metro Area
1693               Austin-Round Rock-Georgetown, TX Metro Area
1694                Dallas-Fort Worth-Arlington, TX Metro Area
1695                  Baltimore-Columbia-Towson, MD Metro Area
1696                  Baltimore-Columbia-Towson, MD Metro Area
1697           Houston-The Woodlands-Sugar Land, TX Metro Area
1698                               St. Louis, MO-IL Metro Area
1699                               St. Louis, MO-IL Metro Area
1700             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1701                       New Orleans-Metairie, LA Metro Area
1702                     Denver-Aurora-Lakewood, CO Metro Area
1703               Las Vegas-Henderson-Paradise, NV Metro Area
1704             San Francisco-Oakland-Berkeley, CA Metro Area
1705                Sacramento-Roseville-Folsom, CA Metro Area
1706                               St. Louis, MO-IL Metro Area
1707                             Urban Honolulu, HI Metro Area
1708           Houston-The Woodlands-Sugar Land, TX Metro Area
1709           Houston-The Woodlands-Sugar Land, TX Metro Area
1710               Las Vegas-Henderson-Paradise, NV Metro Area
1711             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1712                    Kahului-Wailuku-Lahaina, HI Metro Area
1713                                       Reno, NV Metro Area
1714                Sacramento-Roseville-Folsom, CA Metro Area
1715                Dallas-Fort Worth-Arlington, TX Metro Area
1716                Dallas-Fort Worth-Arlington, TX Metro Area
1717           Houston-The Woodlands-Sugar Land, TX Metro Area
1718               Austin-Round Rock-Georgetown, TX Metro Area
1719                Dallas-Fort Worth-Arlington, TX Metro Area
1720             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1721             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1722                  Baltimore-Columbia-Towson, MD Metro Area
1723        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1724          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1725                  Orlando-Kissimmee-Sanford, FL Metro Area
1726                       New Orleans-Metairie, LA Metro Area
1727                      Cape Coral-Fort Myers, FL Metro Area
1728                  Baltimore-Columbia-Towson, MD Metro Area
1729                Dallas-Fort Worth-Arlington, TX Metro Area
1730                Dallas-Fort Worth-Arlington, TX Metro Area
1731                Dallas-Fort Worth-Arlington, TX Metro Area
1732                     Denver-Aurora-Lakewood, CO Metro Area
1733           Houston-The Woodlands-Sugar Land, TX Metro Area
1734                             Kansas City, MO-KS Metro Area
1735                               St. Louis, MO-IL Metro Area
1736                               St. Louis, MO-IL Metro Area
1737                               St. Louis, MO-IL Metro Area
1738                    Albany-Schenectady-Troy, NY Metro Area
1739          Hartford-East Hartford-Middletown, CT Metro Area
1740                          Birmingham-Hoover, AL Metro Area
1741                        Buffalo-Cheektowaga, NY Metro Area
1742                           Cincinnati, OH-KY-IN Metro Area
1743        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1744               Indianapolis-Carmel-Anderson, IN Metro Area
1745                              Memphis, TN-MS-AR Metro Area
1746                       New Orleans-Metairie, LA Metro Area
1747     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1748                      Phoenix-Mesa-Chandler, AZ Metro Area
1749             Louisville/Jefferson County, KY-IN Metro Area
1750                               St. Louis, MO-IL Metro Area
1751               Austin-Round Rock-Georgetown, TX Metro Area
1752                          Birmingham-Hoover, AL Metro Area
1753 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1754                  Baltimore-Columbia-Towson, MD Metro Area
1755                Charleston-North Charleston, SC Metro Area
1756                                   Columbus, OH Metro Area
1757                Dallas-Fort Worth-Arlington, TX Metro Area
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1759                     Denver-Aurora-Lakewood, CO Metro Area
1760        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1761                      Grand Rapids-Kentwood, MI Metro Area
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1763                               Jacksonville, FL Metro Area
1764          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1765                             Kansas City, MO-KS Metro Area
1766                  Orlando-Kissimmee-Sanford, FL Metro Area
1767        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1768                       New Orleans-Metairie, LA Metro Area
1769                    Omaha-Council Bluffs, NE-IA Metro Area
1770     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1771                      Phoenix-Mesa-Chandler, AZ Metro Area
1772                      Providence-Warwick, RI-MA Metro Area
1773                                   Richmond, VA Metro Area
1774             San Diego-Chula Vista-Carlsbad, CA Metro Area
1775             Louisville/Jefferson County, KY-IN Metro Area
1776                    Seattle-Tacoma-Bellevue, WA Metro Area
1777             San Francisco-Oakland-Berkeley, CA Metro Area
1778            Tampa-St. Petersburg-Clearwater, FL Metro Area
1779                 Boston-Cambridge-Newton, MA-NH Metro Area
1780                        Buffalo-Cheektowaga, NY Metro Area
1781                           Cleveland-Elyria, OH Metro Area
1782                           Cleveland-Elyria, OH Metro Area
1783                           Cincinnati, OH-KY-IN Metro Area
1784           Houston-The Woodlands-Sugar Land, TX Metro Area
1785           Houston-The Woodlands-Sugar Land, TX Metro Area
1786             Los Angeles-Long Beach-Anaheim, CA Metro Area
1787                              Memphis, TN-MS-AR Metro Area
1788        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1790             San Francisco-Oakland-Berkeley, CA Metro Area
1791                              Oklahoma City, OK Metro Area
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1793                                 Pittsburgh, PA Metro Area
1794                               Raleigh-Cary, NC Metro Area
1795                      Cape Coral-Fort Myers, FL Metro Area
1796                Sacramento-Roseville-Folsom, CA Metro Area
1797             Los Angeles-Long Beach-Anaheim, CA Metro Area
1798              North Port-Sarasota-Bradenton, FL Metro Area
1799                               St. Louis, MO-IL Metro Area
1800                                     Tucson, AZ Metro Area
1801                  Orlando-Kissimmee-Sanford, FL Metro Area
1802             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1803                Dallas-Fort Worth-Arlington, TX Metro Area
1804                     Denver-Aurora-Lakewood, CO Metro Area
1805           Houston-The Woodlands-Sugar Land, TX Metro Area
1806                  Baltimore-Columbia-Towson, MD Metro Area
1807                               St. Louis, MO-IL Metro Area
1808             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1809                       New Orleans-Metairie, LA Metro Area
1810                               St. Louis, MO-IL Metro Area
1811                  Baltimore-Columbia-Towson, MD Metro Area
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1813                      Phoenix-Mesa-Chandler, AZ Metro Area
1814                      Cape Coral-Fort Myers, FL Metro Area
1815                               St. Louis, MO-IL Metro Area
1816           Houston-The Woodlands-Sugar Land, TX Metro Area
1817                               St. Louis, MO-IL Metro Area
1818           Houston-The Woodlands-Sugar Land, TX Metro Area
1819           Houston-The Woodlands-Sugar Land, TX Metro Area
1820                             Kansas City, MO-KS Metro Area
1821 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1822                  Baltimore-Columbia-Towson, MD Metro Area
1823        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1824             Los Angeles-Long Beach-Anaheim, CA Metro Area
1825          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1826                  Orlando-Kissimmee-Sanford, FL Metro Area
1827                  Orlando-Kissimmee-Sanford, FL Metro Area
1828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1829                  San Antonio-New Braunfels, TX Metro Area
1830            Tampa-St. Petersburg-Clearwater, FL Metro Area
1831                Dallas-Fort Worth-Arlington, TX Metro Area
1832                  Baltimore-Columbia-Towson, MD Metro Area
1833             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1834               Austin-Round Rock-Georgetown, TX Metro Area
1835                                 Bellingham, WA Metro Area
1836             Los Angeles-Long Beach-Anaheim, CA Metro Area
1837                             Urban Honolulu, HI Metro Area
1838                                      Kapaa, HI Micro Area
1839           Riverside-San Bernardino-Ontario, CA Metro Area
1840                      Phoenix-Mesa-Chandler, AZ Metro Area
1841           Riverside-San Bernardino-Ontario, CA Metro Area
1842             San Diego-Chula Vista-Carlsbad, CA Metro Area
1843                                 Boise City, ID Metro Area
1844             Los Angeles-Long Beach-Anaheim, CA Metro Area
1845                         Eugene-Springfield, OR Metro Area
1846                     Spokane-Spokane Valley, WA Metro Area
1847                                       Hilo, HI Micro Area
1848                  Santa Maria-Santa Barbara, CA Metro Area
1849             Los Angeles-Long Beach-Anaheim, CA Metro Area
1850                             Urban Honolulu, HI Metro Area
1851               Austin-Round Rock-Georgetown, TX Metro Area
1852           Houston-The Woodlands-Sugar Land, TX Metro Area
1853             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1854                      Phoenix-Mesa-Chandler, AZ Metro Area
1855                               St. Louis, MO-IL Metro Area
1856               Las Vegas-Henderson-Paradise, NV Metro Area
1857             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1858                               St. Louis, MO-IL Metro Area
1859           Houston-The Woodlands-Sugar Land, TX Metro Area
1860             San Francisco-Oakland-Berkeley, CA Metro Area
1861             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1862 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1863                      Phoenix-Mesa-Chandler, AZ Metro Area
1864 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1865                Dallas-Fort Worth-Arlington, TX Metro Area
1866 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1867             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1868                  Baltimore-Columbia-Towson, MD Metro Area
1869                  Orlando-Kissimmee-Sanford, FL Metro Area
1870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1871                      Phoenix-Mesa-Chandler, AZ Metro Area
1872                      Phoenix-Mesa-Chandler, AZ Metro Area
1873                      Phoenix-Mesa-Chandler, AZ Metro Area
1874             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1875             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1876                     Denver-Aurora-Lakewood, CO Metro Area
1877               Austin-Round Rock-Georgetown, TX Metro Area
1878                     Spokane-Spokane Valley, WA Metro Area
1879           Houston-The Woodlands-Sugar Land, TX Metro Area
1880             San Francisco-Oakland-Berkeley, CA Metro Area
1881                              Oklahoma City, OK Metro Area
1882            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1883                                       Reno, NV Metro Area
1884                  San Antonio-New Braunfels, TX Metro Area
1885             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1886                             Salt Lake City, UT Metro Area
1887                Sacramento-Roseville-Folsom, CA Metro Area
1888                                Albuquerque, NM Metro Area
1889               Austin-Round Rock-Georgetown, TX Metro Area
1890             Los Angeles-Long Beach-Anaheim, CA Metro Area
1891                                   Columbus, OH Metro Area
1892                           Colorado Springs, CO Metro Area
1893                                    El Paso, TX Metro Area
1894        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1895             Los Angeles-Long Beach-Anaheim, CA Metro Area
1896                                      Kapaa, HI Micro Area
1897                         Milwaukee-Waukesha, WI Metro Area
1898                    Omaha-Council Bluffs, NE-IA Metro Area
1899           Riverside-San Bernardino-Ontario, CA Metro Area
1900           Riverside-San Bernardino-Ontario, CA Metro Area
1901             Los Angeles-Long Beach-Anaheim, CA Metro Area
1902            Tampa-St. Petersburg-Clearwater, FL Metro Area
1903                      Phoenix-Mesa-Chandler, AZ Metro Area
1904                      Cape Coral-Fort Myers, FL Metro Area
1905              North Port-Sarasota-Bradenton, FL Metro Area
1906 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1907                  Baltimore-Columbia-Towson, MD Metro Area
1908        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1909 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1910                Dallas-Fort Worth-Arlington, TX Metro Area
1911           Houston-The Woodlands-Sugar Land, TX Metro Area
1912                Sacramento-Roseville-Folsom, CA Metro Area
1913               Las Vegas-Henderson-Paradise, NV Metro Area
1914             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1915                               St. Louis, MO-IL Metro Area
1916                  Baltimore-Columbia-Towson, MD Metro Area
1917                  Baltimore-Columbia-Towson, MD Metro Area
1918                  Orlando-Kissimmee-Sanford, FL Metro Area
1919            Tampa-St. Petersburg-Clearwater, FL Metro Area
1920             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1921             Los Angeles-Long Beach-Anaheim, CA Metro Area
1922             Los Angeles-Long Beach-Anaheim, CA Metro Area
1923             San Diego-Chula Vista-Carlsbad, CA Metro Area
1924             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1925                  Orlando-Kissimmee-Sanford, FL Metro Area
1926            Tampa-St. Petersburg-Clearwater, FL Metro Area
1927             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1928                         Milwaukee-Waukesha, WI Metro Area
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1930                             Kansas City, MO-KS Metro Area
1931             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1932             Louisville/Jefferson County, KY-IN Metro Area
1933                                 Boise City, ID Metro Area
1934                Dallas-Fort Worth-Arlington, TX Metro Area
1935           Houston-The Woodlands-Sugar Land, TX Metro Area
1936             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1937                             Urban Honolulu, HI Metro Area
1938                    Kahului-Wailuku-Lahaina, HI Metro Area
1939                                     Tucson, AZ Metro Area
1940                Dallas-Fort Worth-Arlington, TX Metro Area
1941           Houston-The Woodlands-Sugar Land, TX Metro Area
1942 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1943                Dallas-Fort Worth-Arlington, TX Metro Area
1944                                    El Paso, TX Metro Area
1945             Los Angeles-Long Beach-Anaheim, CA Metro Area
1946               Las Vegas-Henderson-Paradise, NV Metro Area
1947             San Francisco-Oakland-Berkeley, CA Metro Area
1948                  Orlando-Kissimmee-Sanford, FL Metro Area
1949             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1950                  Baltimore-Columbia-Towson, MD Metro Area
1951                      Cape Coral-Fort Myers, FL Metro Area
1952            Tampa-St. Petersburg-Clearwater, FL Metro Area
1953             San Francisco-Oakland-Berkeley, CA Metro Area
1954             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1955                      Phoenix-Mesa-Chandler, AZ Metro Area
1956             Los Angeles-Long Beach-Anaheim, CA Metro Area
1957             San Diego-Chula Vista-Carlsbad, CA Metro Area
1958                Dallas-Fort Worth-Arlington, TX Metro Area
1959               Las Vegas-Henderson-Paradise, NV Metro Area
1960                    Kahului-Wailuku-Lahaina, HI Metro Area
1961                    Kahului-Wailuku-Lahaina, HI Metro Area
1962                             Urban Honolulu, HI Metro Area
1963                                       Hilo, HI Micro Area
1964             Los Angeles-Long Beach-Anaheim, CA Metro Area
1965           Riverside-San Bernardino-Ontario, CA Metro Area
1966                                       Reno, NV Metro Area
1967             Los Angeles-Long Beach-Anaheim, CA Metro Area
1968                  Orlando-Kissimmee-Sanford, FL Metro Area
1969                Dallas-Fort Worth-Arlington, TX Metro Area
1970             Los Angeles-Long Beach-Anaheim, CA Metro Area
1971                  Orlando-Kissimmee-Sanford, FL Metro Area
1972                Sacramento-Roseville-Folsom, CA Metro Area
1973                     Spokane-Spokane Valley, WA Metro Area
1974             San Diego-Chula Vista-Carlsbad, CA Metro Area
1975                    Seattle-Tacoma-Bellevue, WA Metro Area
1976             Los Angeles-Long Beach-Anaheim, CA Metro Area
1977                             Urban Honolulu, HI Metro Area
1978             Los Angeles-Long Beach-Anaheim, CA Metro Area
1979           Riverside-San Bernardino-Ontario, CA Metro Area
1980           Riverside-San Bernardino-Ontario, CA Metro Area
1981             Los Angeles-Long Beach-Anaheim, CA Metro Area
1982                Dallas-Fort Worth-Arlington, TX Metro Area
1983                      Phoenix-Mesa-Chandler, AZ Metro Area
1984               Austin-Round Rock-Georgetown, TX Metro Area
1985                                   Columbus, OH Metro Area
1986               Austin-Round Rock-Georgetown, TX Metro Area
1987               Indianapolis-Carmel-Anderson, IN Metro Area
1988          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1989                  Baltimore-Columbia-Towson, MD Metro Area
1990                Dallas-Fort Worth-Arlington, TX Metro Area
1991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1992           Houston-The Woodlands-Sugar Land, TX Metro Area
1993                               Jacksonville, FL Metro Area
1994          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1995             Los Angeles-Long Beach-Anaheim, CA Metro Area
1996             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1997                       New Orleans-Metairie, LA Metro Area
1998                    Seattle-Tacoma-Bellevue, WA Metro Area
1999               Austin-Round Rock-Georgetown, TX Metro Area
2000 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2001 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2002                                   Columbus, OH Metro Area
2003                 Des Moines-West Des Moines, IA Metro Area
2004                                Panama City, FL Metro Area
2005                                    Wichita, KS Metro Area
2006             Los Angeles-Long Beach-Anaheim, CA Metro Area
2007       Little Rock-North Little Rock-Conway, AR Metro Area
2008                             Kansas City, MO-KS Metro Area
2009                  Orlando-Kissimmee-Sanford, FL Metro Area
2010        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2011                         Milwaukee-Waukesha, WI Metro Area
2012                              Oklahoma City, OK Metro Area
2013                    Omaha-Council Bluffs, NE-IA Metro Area
2014                      Phoenix-Mesa-Chandler, AZ Metro Area
2015                 Pensacola-Ferry Pass-Brent, FL Metro Area
2016              North Port-Sarasota-Bradenton, FL Metro Area
2017 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2018                  Baltimore-Columbia-Towson, MD Metro Area
2019                                   Columbus, OH Metro Area
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2021             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2022                               Raleigh-Cary, NC Metro Area
2023             Louisville/Jefferson County, KY-IN Metro Area
2024          Hartford-East Hartford-Middletown, CT Metro Area
2025                          Birmingham-Hoover, AL Metro Area
2026                        Buffalo-Cheektowaga, NY Metro Area
2027                           Cincinnati, OH-KY-IN Metro Area
2028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2029             San Diego-Chula Vista-Carlsbad, CA Metro Area
2030               Las Vegas-Henderson-Paradise, NV Metro Area
2031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2032                Dallas-Fort Worth-Arlington, TX Metro Area
2033           Houston-The Woodlands-Sugar Land, TX Metro Area
2034                      Phoenix-Mesa-Chandler, AZ Metro Area
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2036                               St. Louis, MO-IL Metro Area
2037                Dallas-Fort Worth-Arlington, TX Metro Area
2038                      Phoenix-Mesa-Chandler, AZ Metro Area
2039                Dallas-Fort Worth-Arlington, TX Metro Area
2040                Dallas-Fort Worth-Arlington, TX Metro Area
2041                Dallas-Fort Worth-Arlington, TX Metro Area
2042          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2043                                 Pittsburgh, PA Metro Area
2044                                   Savannah, GA Metro Area
2045                                      Tulsa, OK Metro Area
2046                Dallas-Fort Worth-Arlington, TX Metro Area
2047                      Phoenix-Mesa-Chandler, AZ Metro Area
2048                                Bakersfield, CA Metro Area
2049                         Eugene-Springfield, OR Metro Area
2050                Dallas-Fort Worth-Arlington, TX Metro Area
2051                Dallas-Fort Worth-Arlington, TX Metro Area
2052           Houston-The Woodlands-Sugar Land, TX Metro Area
2053           Houston-The Woodlands-Sugar Land, TX Metro Area
2054           Houston-The Woodlands-Sugar Land, TX Metro Area
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2058          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2059               Indianapolis-Carmel-Anderson, IN Metro Area
2060          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2061                                   Columbus, OH Metro Area
2062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2063          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2064          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2065          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2066          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2067          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2068          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2069                                 Pittsburgh, PA Metro Area
2070                               Raleigh-Cary, NC Metro Area
2071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2073          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2074              Charlotte-Concord-Gastonia, NC-SC Metro Area
2075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2076          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2077          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2078          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2079          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2080          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2081                 Boston-Cambridge-Newton, MA-NH Metro Area
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2083          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2084              Charlotte-Concord-Gastonia, NC-SC Metro Area
2085          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2086                               Raleigh-Cary, NC Metro Area
2087             Louisville/Jefferson County, KY-IN Metro Area
2088                 Boston-Cambridge-Newton, MA-NH Metro Area
2089          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2090                Charleston-North Charleston, SC Metro Area
2091                    Detroit-Warren-Dearborn, MI Metro Area
2092                                   Key West, FL Micro Area
2093                         Milwaukee-Waukesha, WI Metro Area
2094                       New Orleans-Metairie, LA Metro Area
2095                    Portland-South Portland, ME Metro Area
2096              Charlotte-Concord-Gastonia, NC-SC Metro Area
2097          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2098                       New Orleans-Metairie, LA Metro Area
2099              North Port-Sarasota-Bradenton, FL Metro Area
2100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2101                 Boston-Cambridge-Newton, MA-NH Metro Area
2102              Charlotte-Concord-Gastonia, NC-SC Metro Area
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2104          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2105 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2106                  Baltimore-Columbia-Towson, MD Metro Area
2107                  Baltimore-Columbia-Towson, MD Metro Area
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2109     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2112                                 Pittsburgh, PA Metro Area
2113                           Cleveland-Elyria, OH Metro Area
2114                                   Columbus, OH Metro Area
2115               Indianapolis-Carmel-Anderson, IN Metro Area
2116               Indianapolis-Carmel-Anderson, IN Metro Area
2117                                   Richmond, VA Metro Area
2118                           Cincinnati, OH-KY-IN Metro Area
2119              Charlotte-Concord-Gastonia, NC-SC Metro Area
2120                               Jacksonville, FL Metro Area
2121                 Boston-Cambridge-Newton, MA-NH Metro Area
2122                               Raleigh-Cary, NC Metro Area
2123                                   Columbus, OH Metro Area
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2126          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2127          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2128                 Boston-Cambridge-Newton, MA-NH Metro Area
2129          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2130          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2131             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2132                 Boston-Cambridge-Newton, MA-NH Metro Area
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2137          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2139              Charlotte-Concord-Gastonia, NC-SC Metro Area
2140          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2141              Charlotte-Concord-Gastonia, NC-SC Metro Area
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2147                        Buffalo-Cheektowaga, NY Metro Area
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2149             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2150                      Greensboro-High Point, NC Metro Area
2151          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2153        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2154        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2155                                    Bozeman, MT Micro Area
2156             San Francisco-Oakland-Berkeley, CA Metro Area
2157        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2167                 Boston-Cambridge-Newton, MA-NH Metro Area
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2169                                  Flagstaff, AZ Metro Area
2170                     Denver-Aurora-Lakewood, CO Metro Area
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2172       Little Rock-North Little Rock-Conway, AR Metro Area
2173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2174                                   Key West, FL Micro Area
2175                  Orlando-Kissimmee-Sanford, FL Metro Area
2176                  Orlando-Kissimmee-Sanford, FL Metro Area
2177            Tampa-St. Petersburg-Clearwater, FL Metro Area
2178        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2179            Tampa-St. Petersburg-Clearwater, FL Metro Area
2180                          New Haven-Milford, CT Metro Area
2181                 Boston-Cambridge-Newton, MA-NH Metro Area
2182           Houston-The Woodlands-Sugar Land, TX Metro Area
2183          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2184                         Milwaukee-Waukesha, WI Metro Area
2185          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2186               Las Vegas-Henderson-Paradise, NV Metro Area
2187        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2188                 Boston-Cambridge-Newton, MA-NH Metro Area
2189           Riverside-San Bernardino-Ontario, CA Metro Area
2190                    Kahului-Wailuku-Lahaina, HI Metro Area
2191                Dallas-Fort Worth-Arlington, TX Metro Area
2192                      Phoenix-Mesa-Chandler, AZ Metro Area
2193                Dallas-Fort Worth-Arlington, TX Metro Area
2194                                                      <NA>
2195             San Diego-Chula Vista-Carlsbad, CA Metro Area
2196             San Francisco-Oakland-Berkeley, CA Metro Area
2197                             Kansas City, MO-KS Metro Area
2198                               Raleigh-Cary, NC Metro Area
2199        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2200                    Seattle-Tacoma-Bellevue, WA Metro Area
2201                             Urban Honolulu, HI Metro Area
2202                      Cape Coral-Fort Myers, FL Metro Area
2203             San Francisco-Oakland-Berkeley, CA Metro Area
2204                      Cape Coral-Fort Myers, FL Metro Area
2205          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2206          Hartford-East Hartford-Middletown, CT Metro Area
2207                                Albuquerque, NM Metro Area
2208                 Boston-Cambridge-Newton, MA-NH Metro Area
2209                                 Jackson, WY-ID Micro Area
2210              Palm Bay-Melbourne-Titusville, FL Metro Area
2211        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2212            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2213                  Orlando-Kissimmee-Sanford, FL Metro Area
2214             Los Angeles-Long Beach-Anaheim, CA Metro Area
2215                             Kansas City, MO-KS Metro Area
2216                      Phoenix-Mesa-Chandler, AZ Metro Area
2217                Dallas-Fort Worth-Arlington, TX Metro Area
2218               Austin-Round Rock-Georgetown, TX Metro Area
2219                     Denver-Aurora-Lakewood, CO Metro Area
2220        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2221                    San Juan-Bayamón-Caguas, PR Metro Area
2222                           Cincinnati, OH-KY-IN Metro Area
2223          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2224                               Raleigh-Cary, NC Metro Area
2225        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2226             San Diego-Chula Vista-Carlsbad, CA Metro Area
2227           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2228               Austin-Round Rock-Georgetown, TX Metro Area
2229                             Kansas City, MO-KS Metro Area
2230        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2231             Los Angeles-Long Beach-Anaheim, CA Metro Area
2232                    Seattle-Tacoma-Bellevue, WA Metro Area
2233              Charlotte-Concord-Gastonia, NC-SC Metro Area
2234          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2235           Riverside-San Bernardino-Ontario, CA Metro Area
2236                      Cape Coral-Fort Myers, FL Metro Area
2237             Los Angeles-Long Beach-Anaheim, CA Metro Area
2238                 Boston-Cambridge-Newton, MA-NH Metro Area
2239                          Steamboat Springs, CO Micro Area
2240                                       Reno, NV Metro Area
2241                             Salt Lake City, UT Metro Area
2242             San Francisco-Oakland-Berkeley, CA Metro Area
2243            Tampa-St. Petersburg-Clearwater, FL Metro Area
2244                               Raleigh-Cary, NC Metro Area
2245                                   Columbus, OH Metro Area
2246                             Kansas City, MO-KS Metro Area
2247                                Albuquerque, NM Metro Area
2248          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2249                    Seattle-Tacoma-Bellevue, WA Metro Area
2250        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2251                             Salt Lake City, UT Metro Area
2252            Tampa-St. Petersburg-Clearwater, FL Metro Area
2253                    San Juan-Bayamón-Caguas, PR Metro Area
2254        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2255                                  Anchorage, AK Metro Area
2256                             Urban Honolulu, HI Metro Area
2257                                                      <NA>
2258                             Urban Honolulu, HI Metro Area
2259                                       Hilo, HI Micro Area
2260                             Urban Honolulu, HI Metro Area
2261                    Kahului-Wailuku-Lahaina, HI Metro Area
2262               Las Vegas-Henderson-Paradise, NV Metro Area
2263           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2264                                Baton Rouge, LA Metro Area
2265                                Gainesville, FL Metro Area
2266                            Gulfport-Biloxi, MS Metro Area
2267                          Lexington-Fayette, KY Metro Area
2268                                     Mobile, AL Metro Area
2269                                    Roanoke, VA Metro Area
2270                                Springfield, MO Metro Area
2271                                      Tulsa, OK Metro Area
2272          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2273                         Milwaukee-Waukesha, WI Metro Area
2274                                   Richmond, VA Metro Area
2275           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2276          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2277                 Boston-Cambridge-Newton, MA-NH Metro Area
2278                    Detroit-Warren-Dearborn, MI Metro Area
2279                Burlington-South Burlington, VT Metro Area
2280                Charleston-North Charleston, SC Metro Area
2281                                Spartanburg, SC Metro Area
2282                    Portland-South Portland, ME Metro Area
2283                               Raleigh-Cary, NC Metro Area
2284                                  Rochester, NY Metro Area
2285                                  Knoxville, TN Metro Area
2286                           Cincinnati, OH-KY-IN Metro Area
2287           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2288          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2289                                     Bangor, ME Metro Area
2290 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2291                Charleston-North Charleston, SC Metro Area
2292                Charleston-North Charleston, SC Metro Area
2293                                 Pittsburgh, PA Metro Area
2294                                   Savannah, GA Metro Area
2295                          Birmingham-Hoover, AL Metro Area
2296                      Greensboro-High Point, NC Metro Area
2297                                Spartanburg, SC Metro Area
2298                              Memphis, TN-MS-AR Metro Area
2299                    Portland-South Portland, ME Metro Area
2300                                   Savannah, GA Metro Area
2301           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2302                           Cincinnati, OH-KY-IN Metro Area
2303                 Des Moines-West Des Moines, IA Metro Area
2304          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2305          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2306           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2307                    Detroit-Warren-Dearborn, MI Metro Area
2308          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2309            Tampa-St. Petersburg-Clearwater, FL Metro Area
2310                 Boston-Cambridge-Newton, MA-NH Metro Area
2311                Dallas-Fort Worth-Arlington, TX Metro Area
2312          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2313        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2314               Austin-Round Rock-Georgetown, TX Metro Area
2315                Dallas-Fort Worth-Arlington, TX Metro Area
2316                Dallas-Fort Worth-Arlington, TX Metro Area
2317                      Phoenix-Mesa-Chandler, AZ Metro Area
2318              Charlotte-Concord-Gastonia, NC-SC Metro Area
2319                                   Columbus, OH Metro Area
2320               Las Vegas-Henderson-Paradise, NV Metro Area
2321        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2322                       New Orleans-Metairie, LA Metro Area
2323     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2324                      Phoenix-Mesa-Chandler, AZ Metro Area
2325                                 Pittsburgh, PA Metro Area
2326                    Portland-South Portland, ME Metro Area
2327            Tampa-St. Petersburg-Clearwater, FL Metro Area
2328              Charlotte-Concord-Gastonia, NC-SC Metro Area
2329          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2330                               Jacksonville, FL Metro Area
2331                              Memphis, TN-MS-AR Metro Area
2332                                Albuquerque, NM Metro Area
2333                                     Bangor, ME Metro Area
2334                                   Columbus, OH Metro Area
2335                      Greensboro-High Point, NC Metro Area
2336                                    Wichita, KS Metro Area
2337             Los Angeles-Long Beach-Anaheim, CA Metro Area
2338                        Harrisburg-Carlisle, PA Metro Area
2339                   McAllen-Edinburg-Mission, TX Metro Area
2340                         Milwaukee-Waukesha, WI Metro Area
2341           Riverside-San Bernardino-Ontario, CA Metro Area
2342        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2343                    Portland-South Portland, ME Metro Area
2344                      Cape Coral-Fort Myers, FL Metro Area
2345             San Francisco-Oakland-Berkeley, CA Metro Area
2346             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2347             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2348              Charlotte-Concord-Gastonia, NC-SC Metro Area
2349        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2350                Dallas-Fort Worth-Arlington, TX Metro Area
2351                Dallas-Fort Worth-Arlington, TX Metro Area
2352        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2353                Dallas-Fort Worth-Arlington, TX Metro Area
2354              Charlotte-Concord-Gastonia, NC-SC Metro Area
2355                Dallas-Fort Worth-Arlington, TX Metro Area
2356              Charlotte-Concord-Gastonia, NC-SC Metro Area
2357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2358               Austin-Round Rock-Georgetown, TX Metro Area
2359                Dallas-Fort Worth-Arlington, TX Metro Area
2360              Charlotte-Concord-Gastonia, NC-SC Metro Area
2361                Dallas-Fort Worth-Arlington, TX Metro Area
2362                Dallas-Fort Worth-Arlington, TX Metro Area
2363            Tampa-St. Petersburg-Clearwater, FL Metro Area
2364               Las Vegas-Henderson-Paradise, NV Metro Area
2365                      Phoenix-Mesa-Chandler, AZ Metro Area
2366             San Francisco-Oakland-Berkeley, CA Metro Area
2367                    San Juan-Bayamón-Caguas, PR Metro Area
2368                                                      <NA>
2369              Charlotte-Concord-Gastonia, NC-SC Metro Area
2370                Dallas-Fort Worth-Arlington, TX Metro Area
2371                Dallas-Fort Worth-Arlington, TX Metro Area
2372                                   Key West, FL Micro Area
2373           Riverside-San Bernardino-Ontario, CA Metro Area
2374                    San Juan-Bayamón-Caguas, PR Metro Area
2375             Los Angeles-Long Beach-Anaheim, CA Metro Area
2376              North Port-Sarasota-Bradenton, FL Metro Area
2377              Charlotte-Concord-Gastonia, NC-SC Metro Area
2378                Dallas-Fort Worth-Arlington, TX Metro Area
2379                      Cape Coral-Fort Myers, FL Metro Area
2380                 Boston-Cambridge-Newton, MA-NH Metro Area
2381          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2382          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2383        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2384              Charlotte-Concord-Gastonia, NC-SC Metro Area
2385                Dallas-Fort Worth-Arlington, TX Metro Area
2386        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2387                Dallas-Fort Worth-Arlington, TX Metro Area
2388                Dallas-Fort Worth-Arlington, TX Metro Area
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2390              Charlotte-Concord-Gastonia, NC-SC Metro Area
2391              Charlotte-Concord-Gastonia, NC-SC Metro Area
2392              Charlotte-Concord-Gastonia, NC-SC Metro Area
2393        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2394        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2396                Dallas-Fort Worth-Arlington, TX Metro Area
2397                Dallas-Fort Worth-Arlington, TX Metro Area
2398                             Urban Honolulu, HI Metro Area
2399                                                      <NA>
2400                                  Anchorage, AK Metro Area
2401                    Seattle-Tacoma-Bellevue, WA Metro Area
2402                    Seattle-Tacoma-Bellevue, WA Metro Area
2403                                  Anchorage, AK Metro Area
2404                                  Anchorage, AK Metro Area
2405                                      Kapaa, HI Micro Area
2406            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2407                    Seattle-Tacoma-Bellevue, WA Metro Area
2408                                  Anchorage, AK Metro Area
2409                                      Kapaa, HI Micro Area
2410                    Seattle-Tacoma-Bellevue, WA Metro Area
2411           Riverside-San Bernardino-Ontario, CA Metro Area
2412        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2413                                      Kapaa, HI Micro Area
2414                  Orlando-Kissimmee-Sanford, FL Metro Area
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2416          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2417                 Boston-Cambridge-Newton, MA-NH Metro Area
2418        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2419        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2420             San Francisco-Oakland-Berkeley, CA Metro Area
2421                        Buffalo-Cheektowaga, NY Metro Area
2422        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2423             San Diego-Chula Vista-Carlsbad, CA Metro Area
2424              North Port-Sarasota-Bradenton, FL Metro Area
2425          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2426        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2427                                   Richmond, VA Metro Area
2428                                Albuquerque, NM Metro Area
2429                 Boston-Cambridge-Newton, MA-NH Metro Area
2430             Los Angeles-Long Beach-Anaheim, CA Metro Area
2431        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2432           Riverside-San Bernardino-Ontario, CA Metro Area
2433          Hartford-East Hartford-Middletown, CT Metro Area
2434                        Buffalo-Cheektowaga, NY Metro Area
2435          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2436                  Orlando-Kissimmee-Sanford, FL Metro Area
2437        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2438          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2440            Tampa-St. Petersburg-Clearwater, FL Metro Area
2441          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2442                 Boston-Cambridge-Newton, MA-NH Metro Area
2443                  Orlando-Kissimmee-Sanford, FL Metro Area
2444                    Albany-Schenectady-Troy, NY Metro Area
2445          Hartford-East Hartford-Middletown, CT Metro Area
2446                                 Boise City, ID Metro Area
2447                                    Bozeman, MT Micro Area
2448                                   Columbus, OH Metro Area
2449                           Dayton-Kettering, OH Metro Area
2450                                    Edwards, CO Micro Area
2451                      Greensboro-High Point, NC Metro Area
2452                                 Huntsville, AL Metro Area
2453                                 Wilmington, NC Metro Area
2454                               Jacksonville, FL Metro Area
2455                    Omaha-Council Bluffs, NE-IA Metro Area
2456     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2457                 Pensacola-Ferry Pass-Brent, FL Metro Area
2458                    Portland-South Portland, ME Metro Area
2459                               Raleigh-Cary, NC Metro Area
2460             San Diego-Chula Vista-Carlsbad, CA Metro Area
2461             San Francisco-Oakland-Berkeley, CA Metro Area
2462                    San Juan-Bayamón-Caguas, PR Metro Area
2463             Los Angeles-Long Beach-Anaheim, CA Metro Area
2464                                     Tucson, AZ Metro Area
2465         Crestview-Fort Walton Beach-Destin, FL Metro Area
2466                    Detroit-Warren-Dearborn, MI Metro Area
2467                    Seattle-Tacoma-Bellevue, WA Metro Area
2468                             Salt Lake City, UT Metro Area
2469        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2471                             Salt Lake City, UT Metro Area
2472        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2473               Las Vegas-Henderson-Paradise, NV Metro Area
2474                      Cape Coral-Fort Myers, FL Metro Area
2475                    Detroit-Warren-Dearborn, MI Metro Area
2476          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2477               Austin-Round Rock-Georgetown, TX Metro Area
2478                 Boston-Cambridge-Newton, MA-NH Metro Area
2479                        Buffalo-Cheektowaga, NY Metro Area
2480                         Milwaukee-Waukesha, WI Metro Area
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2482             San Diego-Chula Vista-Carlsbad, CA Metro Area
2483                  San Antonio-New Braunfels, TX Metro Area
2484             San Francisco-Oakland-Berkeley, CA Metro Area
2485              North Port-Sarasota-Bradenton, FL Metro Area
2486           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2487           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2488                    Seattle-Tacoma-Bellevue, WA Metro Area
2489                             Salt Lake City, UT Metro Area
2490                       New Orleans-Metairie, LA Metro Area
2491        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2492               Indianapolis-Carmel-Anderson, IN Metro Area
2493            Tampa-St. Petersburg-Clearwater, FL Metro Area
2494                 Boston-Cambridge-Newton, MA-NH Metro Area
2495                             Salt Lake City, UT Metro Area
2496                 Boston-Cambridge-Newton, MA-NH Metro Area
2497          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2498          Hartford-East Hartford-Middletown, CT Metro Area
2499                  Baltimore-Columbia-Towson, MD Metro Area
2500                    Detroit-Warren-Dearborn, MI Metro Area
2501        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2502                             Kansas City, MO-KS Metro Area
2503                         Milwaukee-Waukesha, WI Metro Area
2504                                   Missoula, MT Metro Area
2505           Riverside-San Bernardino-Ontario, CA Metro Area
2506                  San Antonio-New Braunfels, TX Metro Area
2507                Sacramento-Roseville-Folsom, CA Metro Area
2508             Los Angeles-Long Beach-Anaheim, CA Metro Area
2509              North Port-Sarasota-Bradenton, FL Metro Area
2510                 Boston-Cambridge-Newton, MA-NH Metro Area
2511                    Detroit-Warren-Dearborn, MI Metro Area
2512                           Cincinnati, OH-KY-IN Metro Area
2513                    Detroit-Warren-Dearborn, MI Metro Area
2514               Austin-Round Rock-Georgetown, TX Metro Area
2515          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2516        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2517            Tampa-St. Petersburg-Clearwater, FL Metro Area
2518                 Boston-Cambridge-Newton, MA-NH Metro Area
2519           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2520 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2521                 Boston-Cambridge-Newton, MA-NH Metro Area
2522                  Baltimore-Columbia-Towson, MD Metro Area
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2524        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2525               Indianapolis-Carmel-Anderson, IN Metro Area
2526                       New Orleans-Metairie, LA Metro Area
2527            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2528                               Raleigh-Cary, NC Metro Area
2529                                       Reno, NV Metro Area
2530                  San Antonio-New Braunfels, TX Metro Area
2531                               St. Louis, MO-IL Metro Area
2532            Tampa-St. Petersburg-Clearwater, FL Metro Area
2533           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2534          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2535                Burlington-South Burlington, VT Metro Area
2536                        Buffalo-Cheektowaga, NY Metro Area
2537                      Grand Rapids-Kentwood, MI Metro Area
2538                                Spartanburg, SC Metro Area
2539                Hilton Head Island-Bluffton, SC Metro Area
2540                                   Richmond, VA Metro Area
2541                Burlington-South Burlington, VT Metro Area
2542                               St. Louis, MO-IL Metro Area
2543                                       Hilo, HI Micro Area
2544                Dallas-Fort Worth-Arlington, TX Metro Area
2545                Dallas-Fort Worth-Arlington, TX Metro Area
2546                      Brownsville-Harlingen, TX Metro Area
2547                                   Columbia, SC Metro Area
2548                           Champaign-Urbana, IL Metro Area
2549                             Corpus Christi, TX Metro Area
2550                                Springfield, IL Metro Area
2551                                  Knoxville, TN Metro Area
2552        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2553        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2554                Dallas-Fort Worth-Arlington, TX Metro Area
2555                Dallas-Fort Worth-Arlington, TX Metro Area
2556                Dallas-Fort Worth-Arlington, TX Metro Area
2557                Dallas-Fort Worth-Arlington, TX Metro Area
2558                Dallas-Fort Worth-Arlington, TX Metro Area
2559                    Omaha-Council Bluffs, NE-IA Metro Area
2560        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2561                    Omaha-Council Bluffs, NE-IA Metro Area
2562                 Des Moines-West Des Moines, IA Metro Area
2563                                  Rochester, MN Metro Area
2564                Dallas-Fort Worth-Arlington, TX Metro Area
2565        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2566              Charlotte-Concord-Gastonia, NC-SC Metro Area
2567              Charlotte-Concord-Gastonia, NC-SC Metro Area
2568                                    Madison, WI Metro Area
2569                           Cleveland-Elyria, OH Metro Area
2570                    Detroit-Warren-Dearborn, MI Metro Area
2571                                  Lafayette, LA Metro Area
2572       Little Rock-North Little Rock-Conway, AR Metro Area
2573                        Harrisburg-Carlisle, PA Metro Area
2574                           Dayton-Kettering, OH Metro Area
2575                                  Knoxville, TN Metro Area
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2578                          Manchester-Nashua, NH Metro Area
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2581        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2582                     Denver-Aurora-Lakewood, CO Metro Area
2583                Dallas-Fort Worth-Arlington, TX Metro Area
2584                                   Appleton, WI Metro Area
2585 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2586                                     Casper, WY Metro Area
2587                         Eugene-Springfield, OR Metro Area
2588                                    Midland, TX Metro Area
2589     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2590             Louisville/Jefferson County, KY-IN Metro Area
2591                                                      <NA>
2592                    Albany-Schenectady-Troy, NY Metro Area
2593                    Omaha-Council Bluffs, NE-IA Metro Area
2594                    South Bend-Mishawaka, IN-MI Metro Area
2595                Dallas-Fort Worth-Arlington, TX Metro Area
2596             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2597        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2598                             Kansas City, MO-KS Metro Area
2599                         Milwaukee-Waukesha, WI Metro Area
2600           Riverside-San Bernardino-Ontario, CA Metro Area
2601             Fayetteville-Springdale-Rogers, AR Metro Area
2602                     Denver-Aurora-Lakewood, CO Metro Area
2603                     Denver-Aurora-Lakewood, CO Metro Area
2604           Houston-The Woodlands-Sugar Land, TX Metro Area
2605                                   Bismarck, ND Metro Area
2606                              Memphis, TN-MS-AR Metro Area
2607                              Oklahoma City, OK Metro Area
2608                    Omaha-Council Bluffs, NE-IA Metro Area
2609                                 Pittsburgh, PA Metro Area
2610                                   Richmond, VA Metro Area
2611             Louisville/Jefferson County, KY-IN Metro Area
2612        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2613          Hartford-East Hartford-Middletown, CT Metro Area
2614                    Albany-Schenectady-Troy, NY Metro Area
2615                          Birmingham-Hoover, AL Metro Area
2616                              Memphis, TN-MS-AR Metro Area
2617                                 Rapid City, SD Metro Area
2618                    Detroit-Warren-Dearborn, MI Metro Area
2619                                    Durango, CO Micro Area
2620        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2621                     Denver-Aurora-Lakewood, CO Metro Area
2622           Riverside-San Bernardino-Ontario, CA Metro Area
2623                                Albuquerque, NM Metro Area
2624                                     Tucson, AZ Metro Area
2625                                Albuquerque, NM Metro Area
2626                                     Fresno, CA Metro Area
2627                                     Helena, MT Micro Area
2628                         Kennewick-Richland, WA Metro Area
2629           Riverside-San Bernardino-Ontario, CA Metro Area
2630                                 Rapid City, SD Metro Area
2631                                     Tucson, AZ Metro Area
2632                             Salt Lake City, UT Metro Area
2633                                 Boise City, ID Metro Area
2634             San Francisco-Oakland-Berkeley, CA Metro Area
2635                                      Kapaa, HI Micro Area
2636                                    Madison, WI Metro Area
2637                                   Missoula, MT Metro Area
2638           Houston-The Woodlands-Sugar Land, TX Metro Area
2639                  San Antonio-New Braunfels, TX Metro Area
2640                Sacramento-Roseville-Folsom, CA Metro Area
2641                     Denver-Aurora-Lakewood, CO Metro Area
2642           Houston-The Woodlands-Sugar Land, TX Metro Area
2643            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2644                      Phoenix-Mesa-Chandler, AZ Metro Area
2645             San Diego-Chula Vista-Carlsbad, CA Metro Area
2646                    San Juan-Bayamón-Caguas, PR Metro Area
2647                  Baltimore-Columbia-Towson, MD Metro Area
2648                                   Columbus, OH Metro Area
2649                           Cincinnati, OH-KY-IN Metro Area
2650                             Urban Honolulu, HI Metro Area
2651                                 Jackson, WY-ID Micro Area
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2653                                 Pittsburgh, PA Metro Area
2654                    Seattle-Tacoma-Bellevue, WA Metro Area
2655          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2656           Houston-The Woodlands-Sugar Land, TX Metro Area
2657           Houston-The Woodlands-Sugar Land, TX Metro Area
2658           Houston-The Woodlands-Sugar Land, TX Metro Area
2659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2660             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2661                  Baltimore-Columbia-Towson, MD Metro Area
2662                             Urban Honolulu, HI Metro Area
2663                  Orlando-Kissimmee-Sanford, FL Metro Area
2664                    Seattle-Tacoma-Bellevue, WA Metro Area
2665          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2666                     Denver-Aurora-Lakewood, CO Metro Area
2667          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2668             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2669 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2670                    San Juan-Bayamón-Caguas, PR Metro Area
2671                      Cape Coral-Fort Myers, FL Metro Area
2672                                Panama City, FL Metro Area
2673           Houston-The Woodlands-Sugar Land, TX Metro Area
2674                             Urban Honolulu, HI Metro Area
2675                             Kansas City, MO-KS Metro Area
2676 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2677                             Urban Honolulu, HI Metro Area
2678               Indianapolis-Carmel-Anderson, IN Metro Area
2679                  San Antonio-New Braunfels, TX Metro Area
2680        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2681           Houston-The Woodlands-Sugar Land, TX Metro Area
2682                Dallas-Fort Worth-Arlington, TX Metro Area
2683                 Des Moines-West Des Moines, IA Metro Area
2684                                   Key West, FL Micro Area
2685             Louisville/Jefferson County, KY-IN Metro Area
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2687                Charleston-North Charleston, SC Metro Area
2688                           Cleveland-Elyria, OH Metro Area
2689                               Jacksonville, FL Metro Area
2690                 Boston-Cambridge-Newton, MA-NH Metro Area
2691          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2692                                    Madison, WI Metro Area
2693                                   Columbus, OH Metro Area
2694                             Kansas City, MO-KS Metro Area
2695                              Memphis, TN-MS-AR Metro Area
2696                                    Madison, WI Metro Area
2697             Louisville/Jefferson County, KY-IN Metro Area
2698          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2699             Fayetteville-Springdale-Rogers, AR Metro Area
2700                                   Key West, FL Micro Area
2701             Louisville/Jefferson County, KY-IN Metro Area
2702          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2703          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2704                Charleston-North Charleston, SC Metro Area
2705                               Jacksonville, FL Metro Area
2706             Louisville/Jefferson County, KY-IN Metro Area
2707                                   Key West, FL Micro Area
2708                       New Orleans-Metairie, LA Metro Area
2709              Charlotte-Concord-Gastonia, NC-SC Metro Area
2710                 Boston-Cambridge-Newton, MA-NH Metro Area
2711          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2712             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2713                                     Ithaca, NY Metro Area
2714                                   Columbia, SC Metro Area
2715                 Pensacola-Ferry Pass-Brent, FL Metro Area
2716             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2717                      Brownsville-Harlingen, TX Metro Area
2718        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2719                                  Green Bay, WI Metro Area
2720                               Salisbury, MD-DE Metro Area
2721             Louisville/Jefferson County, KY-IN Metro Area
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2723          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2724                                   Savannah, GA Metro Area
2725           Houston-The Woodlands-Sugar Land, TX Metro Area
2726                                  Dickinson, ND Micro Area
2727                    Albany-Schenectady-Troy, NY Metro Area
2728                                     Mobile, AL Metro Area
2729                               St. Louis, MO-IL Metro Area
2730           Houston-The Woodlands-Sugar Land, TX Metro Area
2731                     Denver-Aurora-Lakewood, CO Metro Area
2732              Allentown-Bethlehem-Easton, PA-NJ Metro Area
2733          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2734          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2735          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2736        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2737          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2738          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2739                Burlington-South Burlington, VT Metro Area
2740                    Portland-South Portland, ME Metro Area
2741                                   Columbia, SC Metro Area
2742                      Grand Rapids-Kentwood, MI Metro Area
2743     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2744           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2745          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2746                 Boston-Cambridge-Newton, MA-NH Metro Area
2747          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2748          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2749          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2750          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2751                Dallas-Fort Worth-Arlington, TX Metro Area
2752                Dallas-Fort Worth-Arlington, TX Metro Area
2753        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2754                      Phoenix-Mesa-Chandler, AZ Metro Area
2755              Charlotte-Concord-Gastonia, NC-SC Metro Area
2756              Charlotte-Concord-Gastonia, NC-SC Metro Area
2757                Dallas-Fort Worth-Arlington, TX Metro Area
2758                Dallas-Fort Worth-Arlington, TX Metro Area
2759                Dallas-Fort Worth-Arlington, TX Metro Area
2760                Dallas-Fort Worth-Arlington, TX Metro Area
2761              Charlotte-Concord-Gastonia, NC-SC Metro Area
2762              Charlotte-Concord-Gastonia, NC-SC Metro Area
2763                Dallas-Fort Worth-Arlington, TX Metro Area
2764        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2765                      Phoenix-Mesa-Chandler, AZ Metro Area
2766             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2767                 Boston-Cambridge-Newton, MA-NH Metro Area
2768                        Buffalo-Cheektowaga, NY Metro Area
2769                  Baltimore-Columbia-Towson, MD Metro Area
2770                           Cincinnati, OH-KY-IN Metro Area
2771                Dallas-Fort Worth-Arlington, TX Metro Area
2772                                   Key West, FL Micro Area
2773        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2774             Los Angeles-Long Beach-Anaheim, CA Metro Area
2775        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2776                      Phoenix-Mesa-Chandler, AZ Metro Area
2777                      Cape Coral-Fort Myers, FL Metro Area
2778             San Francisco-Oakland-Berkeley, CA Metro Area
2779                               St. Louis, MO-IL Metro Area
2780                                   Syracuse, NY Metro Area
2781                Dallas-Fort Worth-Arlington, TX Metro Area
2782                Dallas-Fort Worth-Arlington, TX Metro Area
2783              North Port-Sarasota-Bradenton, FL Metro Area
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2785 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2786                                 Boise City, ID Metro Area
2787             Los Angeles-Long Beach-Anaheim, CA Metro Area
2788                           Colorado Springs, CO Metro Area
2789                           Cincinnati, OH-KY-IN Metro Area
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2791                                 Jackson, WY-ID Micro Area
2792       Little Rock-North Little Rock-Conway, AR Metro Area
2793                             Kansas City, MO-KS Metro Area
2794                  Orlando-Kissimmee-Sanford, FL Metro Area
2795        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2796                                 Pittsburgh, PA Metro Area
2797             San Diego-Chula Vista-Carlsbad, CA Metro Area
2798                                   Savannah, GA Metro Area
2799                    San Juan-Bayamón-Caguas, PR Metro Area
2800                Sacramento-Roseville-Folsom, CA Metro Area
2801             Los Angeles-Long Beach-Anaheim, CA Metro Area
2802                Dallas-Fort Worth-Arlington, TX Metro Area
2803              Charlotte-Concord-Gastonia, NC-SC Metro Area
2804              Charlotte-Concord-Gastonia, NC-SC Metro Area
2805             Los Angeles-Long Beach-Anaheim, CA Metro Area
2806                Dallas-Fort Worth-Arlington, TX Metro Area
2807                Dallas-Fort Worth-Arlington, TX Metro Area
2808        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2809                Dallas-Fort Worth-Arlington, TX Metro Area
2810        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2811        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2812              Charlotte-Concord-Gastonia, NC-SC Metro Area
2813                Dallas-Fort Worth-Arlington, TX Metro Area
2814                Dallas-Fort Worth-Arlington, TX Metro Area
2815               Austin-Round Rock-Georgetown, TX Metro Area
2816              Charlotte-Concord-Gastonia, NC-SC Metro Area
2817              Charlotte-Concord-Gastonia, NC-SC Metro Area
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2819                Dallas-Fort Worth-Arlington, TX Metro Area
2820                Dallas-Fort Worth-Arlington, TX Metro Area
2821                Dallas-Fort Worth-Arlington, TX Metro Area
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2823              Charlotte-Concord-Gastonia, NC-SC Metro Area
2824              Charlotte-Concord-Gastonia, NC-SC Metro Area
2825              Charlotte-Concord-Gastonia, NC-SC Metro Area
2826                      Phoenix-Mesa-Chandler, AZ Metro Area
2827                Dallas-Fort Worth-Arlington, TX Metro Area
2828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2829                               Raleigh-Cary, NC Metro Area
2830 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2831                Charleston-North Charleston, SC Metro Area
2832              Charlotte-Concord-Gastonia, NC-SC Metro Area
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2834                Dallas-Fort Worth-Arlington, TX Metro Area
2835                               Jacksonville, FL Metro Area
2836                    Seattle-Tacoma-Bellevue, WA Metro Area
2837                      Phoenix-Mesa-Chandler, AZ Metro Area
2838              Charlotte-Concord-Gastonia, NC-SC Metro Area
2839                Dallas-Fort Worth-Arlington, TX Metro Area
2840        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2841                                     Tucson, AZ Metro Area
2842                Dallas-Fort Worth-Arlington, TX Metro Area
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2844                Dallas-Fort Worth-Arlington, TX Metro Area
2845              Charlotte-Concord-Gastonia, NC-SC Metro Area
2846              Charlotte-Concord-Gastonia, NC-SC Metro Area
2847                  Orlando-Kissimmee-Sanford, FL Metro Area
2848                                    Madison, WI Metro Area
2849                Dallas-Fort Worth-Arlington, TX Metro Area
2850                Dallas-Fort Worth-Arlington, TX Metro Area
2851                      Phoenix-Mesa-Chandler, AZ Metro Area
2852              Charlotte-Concord-Gastonia, NC-SC Metro Area
2853                Dallas-Fort Worth-Arlington, TX Metro Area
2854        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2855                Dallas-Fort Worth-Arlington, TX Metro Area
2856                Dallas-Fort Worth-Arlington, TX Metro Area
2857        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2858             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2860        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2861                Dallas-Fort Worth-Arlington, TX Metro Area
2862                Dallas-Fort Worth-Arlington, TX Metro Area
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2865                Dallas-Fort Worth-Arlington, TX Metro Area
2866                Dallas-Fort Worth-Arlington, TX Metro Area
2867                 Boston-Cambridge-Newton, MA-NH Metro Area
2868              Charlotte-Concord-Gastonia, NC-SC Metro Area
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2871                    Seattle-Tacoma-Bellevue, WA Metro Area
2872                    Seattle-Tacoma-Bellevue, WA Metro Area
2873                    Seattle-Tacoma-Bellevue, WA Metro Area
2874                    Seattle-Tacoma-Bellevue, WA Metro Area
2875                    Seattle-Tacoma-Bellevue, WA Metro Area
2876                    Seattle-Tacoma-Bellevue, WA Metro Area
2877                                                      <NA>
2878                                     Juneau, AK Micro Area
2879             San Diego-Chula Vista-Carlsbad, CA Metro Area
2880                    Seattle-Tacoma-Bellevue, WA Metro Area
2881                                Albuquerque, NM Metro Area
2882                  Orlando-Kissimmee-Sanford, FL Metro Area
2883                    Seattle-Tacoma-Bellevue, WA Metro Area
2884             Los Angeles-Long Beach-Anaheim, CA Metro Area
2885                                   Columbus, OH Metro Area
2886                           Cincinnati, OH-KY-IN Metro Area
2887               Indianapolis-Carmel-Anderson, IN Metro Area
2888                         Milwaukee-Waukesha, WI Metro Area
2889                    Kahului-Wailuku-Lahaina, HI Metro Area
2890                              Oklahoma City, OK Metro Area
2891                    Omaha-Council Bluffs, NE-IA Metro Area
2892                               Raleigh-Cary, NC Metro Area
2893                  San Antonio-New Braunfels, TX Metro Area
2894                               St. Louis, MO-IL Metro Area
2895                                     Tucson, AZ Metro Area
2896                             Urban Honolulu, HI Metro Area
2897             Los Angeles-Long Beach-Anaheim, CA Metro Area
2898        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2899                      Cape Coral-Fort Myers, FL Metro Area
2900                                   Key West, FL Micro Area
2901                  San Antonio-New Braunfels, TX Metro Area
2902                                   Savannah, GA Metro Area
2903                  Orlando-Kissimmee-Sanford, FL Metro Area
2904                 Boston-Cambridge-Newton, MA-NH Metro Area
2905             Los Angeles-Long Beach-Anaheim, CA Metro Area
2906                 Boston-Cambridge-Newton, MA-NH Metro Area
2907                 Boston-Cambridge-Newton, MA-NH Metro Area
2908                    San Juan-Bayamón-Caguas, PR Metro Area
2909                                                      <NA>
2910                                                      <NA>
2911                               Jacksonville, FL Metro Area
2912                      Providence-Warwick, RI-MA Metro Area
2913             San Diego-Chula Vista-Carlsbad, CA Metro Area
2914                    San Juan-Bayamón-Caguas, PR Metro Area
2915                             Salt Lake City, UT Metro Area
2916                  Orlando-Kissimmee-Sanford, FL Metro Area
2917            Tampa-St. Petersburg-Clearwater, FL Metro Area
2918          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2919                 Boston-Cambridge-Newton, MA-NH Metro Area
2920        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2921             Los Angeles-Long Beach-Anaheim, CA Metro Area
2922          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2923                          Aguadilla-Isabela, PR Metro Area
2924                                   Key West, FL Micro Area
2925           Houston-The Woodlands-Sugar Land, TX Metro Area
2926                  San Antonio-New Braunfels, TX Metro Area
2927              North Port-Sarasota-Bradenton, FL Metro Area
2928                      Providence-Warwick, RI-MA Metro Area
2929          Hartford-East Hartford-Middletown, CT Metro Area
2930          Hartford-East Hartford-Middletown, CT Metro Area
2931                 Boston-Cambridge-Newton, MA-NH Metro Area
2932          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2933                      Providence-Warwick, RI-MA Metro Area
2934                  Orlando-Kissimmee-Sanford, FL Metro Area
2935        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2936             Los Angeles-Long Beach-Anaheim, CA Metro Area
2937                  Orlando-Kissimmee-Sanford, FL Metro Area
2938          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2939          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2940        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2941                 Boston-Cambridge-Newton, MA-NH Metro Area
2942          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2943                               Raleigh-Cary, NC Metro Area
2944          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2945          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2946                             Salt Lake City, UT Metro Area
2947                        Buffalo-Cheektowaga, NY Metro Area
2948                Charleston-North Charleston, SC Metro Area
2949                      Grand Rapids-Kentwood, MI Metro Area
2950          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2951                      Providence-Warwick, RI-MA Metro Area
2952              North Port-Sarasota-Bradenton, FL Metro Area
2953        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2954                    Detroit-Warren-Dearborn, MI Metro Area
2955                             Salt Lake City, UT Metro Area
2956           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2957           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2958                             Salt Lake City, UT Metro Area
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2960        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2961        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2962        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2963                    Detroit-Warren-Dearborn, MI Metro Area
2964                    Detroit-Warren-Dearborn, MI Metro Area
2965           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2966           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2967           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2968           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2969                    Detroit-Warren-Dearborn, MI Metro Area
2970          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2971        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2972                           Cincinnati, OH-KY-IN Metro Area
2973                             Salt Lake City, UT Metro Area
2974                             Salt Lake City, UT Metro Area
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2976           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2977                    Detroit-Warren-Dearborn, MI Metro Area
2978                               Cedar Rapids, IA Metro Area
2979                                   Fargo, ND-MN Metro Area
2980                               Raleigh-Cary, NC Metro Area
2981             Fayetteville-Springdale-Rogers, AR Metro Area
2982        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2983                               Raleigh-Cary, NC Metro Area
2984       Little Rock-North Little Rock-Conway, AR Metro Area
2985                  Orlando-Kissimmee-Sanford, FL Metro Area
2986                    Portland-South Portland, ME Metro Area
2987                                   Syracuse, NY Metro Area
2988               Las Vegas-Henderson-Paradise, NV Metro Area
2989                          Trenton-Princeton, NJ Metro Area
2990                  Orlando-Kissimmee-Sanford, FL Metro Area
2991                      Cape Coral-Fort Myers, FL Metro Area
2992                     Denver-Aurora-Lakewood, CO Metro Area
2993                     Denver-Aurora-Lakewood, CO Metro Area
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2995             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2996                                Spartanburg, SC Metro Area
2997     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2998          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3000                Dallas-Fort Worth-Arlington, TX Metro Area
3001        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3002                Dallas-Fort Worth-Arlington, TX Metro Area
3003                Dallas-Fort Worth-Arlington, TX Metro Area
3004                Dallas-Fort Worth-Arlington, TX Metro Area
3005               Indianapolis-Carmel-Anderson, IN Metro Area
3006                                  Asheville, NC Metro Area
3007                                Bakersfield, CA Metro Area
3008                          Birmingham-Hoover, AL Metro Area
3009                                Garden City, KS Micro Area
3010                                     Laredo, TX Metro Area
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3012         Crestview-Fort Walton Beach-Destin, FL Metro Area
3013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3014                           Cincinnati, OH-KY-IN Metro Area
3015                                   Savannah, GA Metro Area
3016                                  Knoxville, TN Metro Area
3017                                   Columbus, OH Metro Area
3018                              Evansville, IN-KY Metro Area
3019       Little Rock-North Little Rock-Conway, AR Metro Area
3020                  San Antonio-New Braunfels, TX Metro Area
3021               Austin-Round Rock-Georgetown, TX Metro Area
3022        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3023                Dallas-Fort Worth-Arlington, TX Metro Area
3024                  Orlando-Kissimmee-Sanford, FL Metro Area
3025                  Orlando-Kissimmee-Sanford, FL Metro Area
3026             Los Angeles-Long Beach-Anaheim, CA Metro Area
3027               Indianapolis-Carmel-Anderson, IN Metro Area
3028                         Milwaukee-Waukesha, WI Metro Area
3029             Los Angeles-Long Beach-Anaheim, CA Metro Area
3030             Los Angeles-Long Beach-Anaheim, CA Metro Area
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3033                                Panama City, FL Metro Area
3034                         Milwaukee-Waukesha, WI Metro Area
3035                                Tallahassee, FL Metro Area
3036         Crestview-Fort Walton Beach-Destin, FL Metro Area
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3038                 Augusta-Richmond County, GA-SC Metro Area
3039                    Albany-Schenectady-Troy, NY Metro Area
3040                 Des Moines-West Des Moines, IA Metro Area
3041                                 Huntsville, AL Metro Area
3042                                 Montgomery, AL Metro Area
3043                    Portland-South Portland, ME Metro Area
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3046              Charlotte-Concord-Gastonia, NC-SC Metro Area
3047              Charlotte-Concord-Gastonia, NC-SC Metro Area
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3049              Charlotte-Concord-Gastonia, NC-SC Metro Area
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3051                           Cincinnati, OH-KY-IN Metro Area
3052                Dallas-Fort Worth-Arlington, TX Metro Area
3053           Riverside-San Bernardino-Ontario, CA Metro Area
3054                     Denver-Aurora-Lakewood, CO Metro Area
3055                     Denver-Aurora-Lakewood, CO Metro Area
3056             San Francisco-Oakland-Berkeley, CA Metro Area
3057                               Jacksonville, FL Metro Area
3058           Riverside-San Bernardino-Ontario, CA Metro Area
3059                                   Savannah, GA Metro Area
3060                                    Lubbock, TX Metro Area
3061                       Kingsport-Bristol, TN-VA Metro Area
3062                      Providence-Warwick, RI-MA Metro Area
3063                Dallas-Fort Worth-Arlington, TX Metro Area
3064                    Seattle-Tacoma-Bellevue, WA Metro Area
3065           Houston-The Woodlands-Sugar Land, TX Metro Area
3066                     Denver-Aurora-Lakewood, CO Metro Area
3067                              Oklahoma City, OK Metro Area
3068                                     Fresno, CA Metro Area
3069                                    Medford, OR Metro Area
3070           Houston-The Woodlands-Sugar Land, TX Metro Area
3071           Houston-The Woodlands-Sugar Land, TX Metro Area
3072                                   Columbus, OH Metro Area
3073                              Oklahoma City, OK Metro Area
3074                    Detroit-Warren-Dearborn, MI Metro Area
3075                      Phoenix-Mesa-Chandler, AZ Metro Area
3076             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3077             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3078                             Kansas City, MO-KS Metro Area
3079                         Eugene-Springfield, OR Metro Area
3080                                    Medford, OR Metro Area
3081           Riverside-San Bernardino-Ontario, CA Metro Area
3082                  Santa Maria-Santa Barbara, CA Metro Area
3083                 Des Moines-West Des Moines, IA Metro Area
3084                             Salt Lake City, UT Metro Area
3085           Houston-The Woodlands-Sugar Land, TX Metro Area
3086                    Seattle-Tacoma-Bellevue, WA Metro Area
3087                                  Fairbanks, AK Metro Area
3088                                  Anchorage, AK Metro Area
3089                    Seattle-Tacoma-Bellevue, WA Metro Area
3090           Riverside-San Bernardino-Ontario, CA Metro Area
3091                                Walla Walla, WA Metro Area
3092             San Francisco-Oakland-Berkeley, CA Metro Area
3093          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3094             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3095             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3096             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3097           Houston-The Woodlands-Sugar Land, TX Metro Area
3098                                 Pittsburgh, PA Metro Area
3099             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3100                          Aguadilla-Isabela, PR Metro Area
3101             Los Angeles-Long Beach-Anaheim, CA Metro Area
3102               Austin-Round Rock-Georgetown, TX Metro Area
3103                      Cape Coral-Fort Myers, FL Metro Area
3104                   McAllen-Edinburg-Mission, TX Metro Area
3105            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3106             San Diego-Chula Vista-Carlsbad, CA Metro Area
3107             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3108                Sacramento-Roseville-Folsom, CA Metro Area
3109             Los Angeles-Long Beach-Anaheim, CA Metro Area
3110           Houston-The Woodlands-Sugar Land, TX Metro Area
3111             San Francisco-Oakland-Berkeley, CA Metro Area
3112                  Baltimore-Columbia-Towson, MD Metro Area
3113                           Cleveland-Elyria, OH Metro Area
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3116           Houston-The Woodlands-Sugar Land, TX Metro Area
3117                     Denver-Aurora-Lakewood, CO Metro Area
3118                     Denver-Aurora-Lakewood, CO Metro Area
3119           Houston-The Woodlands-Sugar Land, TX Metro Area
3120                     Denver-Aurora-Lakewood, CO Metro Area
3121             San Francisco-Oakland-Berkeley, CA Metro Area
3122             San Diego-Chula Vista-Carlsbad, CA Metro Area
3123                                Albuquerque, NM Metro Area
3124                                    Lubbock, TX Metro Area
3125               Las Vegas-Henderson-Paradise, NV Metro Area
3126                               St. Louis, MO-IL Metro Area
3127             San Francisco-Oakland-Berkeley, CA Metro Area
3128                Sacramento-Roseville-Folsom, CA Metro Area
3129 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3130            Tampa-St. Petersburg-Clearwater, FL Metro Area
3131                    Albany-Schenectady-Troy, NY Metro Area
3132               Austin-Round Rock-Georgetown, TX Metro Area
3133                                   Columbus, OH Metro Area
3134                Dallas-Fort Worth-Arlington, TX Metro Area
3135                             Kansas City, MO-KS Metro Area
3136                          Manchester-Nashua, NH Metro Area
3137                                   Syracuse, NY Metro Area
3138                         Milwaukee-Waukesha, WI Metro Area
3139        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3140                  San Antonio-New Braunfels, TX Metro Area
3141                Dallas-Fort Worth-Arlington, TX Metro Area
3142        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3144               Indianapolis-Carmel-Anderson, IN Metro Area
3145                              Memphis, TN-MS-AR Metro Area
3146        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3147                         Milwaukee-Waukesha, WI Metro Area
3148             San Diego-Chula Vista-Carlsbad, CA Metro Area
3149                                   Savannah, GA Metro Area
3150              North Port-Sarasota-Bradenton, FL Metro Area
3151                      Cape Coral-Fort Myers, FL Metro Area
3152           Houston-The Woodlands-Sugar Land, TX Metro Area
3153                             Kansas City, MO-KS Metro Area
3154                           Colorado Springs, CO Metro Area
3155                                   Montrose, CO Micro Area
3156          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3157                                Albuquerque, NM Metro Area
3158                             Corpus Christi, TX Metro Area
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3160                                    Jackson, MS Metro Area
3161                  Orlando-Kissimmee-Sanford, FL Metro Area
3162                                     Fresno, CA Metro Area
3163                              Oklahoma City, OK Metro Area
3164               Las Vegas-Henderson-Paradise, NV Metro Area
3165           Houston-The Woodlands-Sugar Land, TX Metro Area
3166                Dallas-Fort Worth-Arlington, TX Metro Area
3167                               St. Louis, MO-IL Metro Area
3168               Las Vegas-Henderson-Paradise, NV Metro Area
3169           Houston-The Woodlands-Sugar Land, TX Metro Area
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3171                  San Antonio-New Braunfels, TX Metro Area
3172           Houston-The Woodlands-Sugar Land, TX Metro Area
3173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3174                    Detroit-Warren-Dearborn, MI Metro Area
3175                          Manchester-Nashua, NH Metro Area
3176                                   Savannah, GA Metro Area
3177                                Albuquerque, NM Metro Area
3178          Hartford-East Hartford-Middletown, CT Metro Area
3179             Los Angeles-Long Beach-Anaheim, CA Metro Area
3180                  San Antonio-New Braunfels, TX Metro Area
3181            Tampa-St. Petersburg-Clearwater, FL Metro Area
3182        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3183 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3184           Houston-The Woodlands-Sugar Land, TX Metro Area
3185                             Kansas City, MO-KS Metro Area
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3187 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3188                              Oklahoma City, OK Metro Area
3189                                    Wichita, KS Metro Area
3190               Indianapolis-Carmel-Anderson, IN Metro Area
3191            Tampa-St. Petersburg-Clearwater, FL Metro Area
3192             San Francisco-Oakland-Berkeley, CA Metro Area
3193             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3195                               St. Louis, MO-IL Metro Area
3196             San Francisco-Oakland-Berkeley, CA Metro Area
3197             Los Angeles-Long Beach-Anaheim, CA Metro Area
3198                  Baltimore-Columbia-Towson, MD Metro Area
3199                                 Pittsburgh, PA Metro Area
3200                                       Reno, NV Metro Area
3201                Dallas-Fort Worth-Arlington, TX Metro Area
3202                           Colorado Springs, CO Metro Area
3203                               St. Louis, MO-IL Metro Area
3204           Houston-The Woodlands-Sugar Land, TX Metro Area
3205               Las Vegas-Henderson-Paradise, NV Metro Area
3206               Austin-Round Rock-Georgetown, TX Metro Area
3207                      Cape Coral-Fort Myers, FL Metro Area
3208                                      Tulsa, OK Metro Area
3209                               Raleigh-Cary, NC Metro Area
3210             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3211          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3212                                 Pittsburgh, PA Metro Area
3213               Indianapolis-Carmel-Anderson, IN Metro Area
3214               Las Vegas-Henderson-Paradise, NV Metro Area
3215                               St. Louis, MO-IL Metro Area
3216           Houston-The Woodlands-Sugar Land, TX Metro Area
3217           Houston-The Woodlands-Sugar Land, TX Metro Area
3218                                    El Paso, TX Metro Area
3219                                Tallahassee, FL Metro Area
3220                      Phoenix-Mesa-Chandler, AZ Metro Area
3221                                    Salinas, CA Metro Area
3222                  Santa Maria-Santa Barbara, CA Metro Area
3223           Houston-The Woodlands-Sugar Land, TX Metro Area
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3225                             Kansas City, MO-KS Metro Area
3226                                     Bangor, ME Metro Area
3227                Charleston-North Charleston, SC Metro Area
3228                                 Pittsburgh, PA Metro Area
3229                               St. Louis, MO-IL Metro Area
3230          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3231                           Cincinnati, OH-KY-IN Metro Area
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3233                           Cleveland-Elyria, OH Metro Area
3234                               Jacksonville, FL Metro Area
3235                                    Roanoke, VA Metro Area
3236                                  Asheville, NC Metro Area
3237                                  Duluth, MN-WI Metro Area
3238                                   Savannah, GA Metro Area
3239                                   Columbus, OH Metro Area
3240             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3242             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3244             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3245             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3246             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3248             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3249                                  Knoxville, TN Metro Area
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3251                            Charlottesville, VA Metro Area
3252             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3254        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3255                            Gulfport-Biloxi, MS Metro Area
3256        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3257                                  Rochester, NY Metro Area
3258                             Chattanooga, TN-GA Metro Area
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3260                                  Asheville, NC Metro Area
3261                                    Roanoke, VA Metro Area
3262                 Boston-Cambridge-Newton, MA-NH Metro Area
3263           Houston-The Woodlands-Sugar Land, TX Metro Area
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3265                                Panama City, FL Metro Area
3266                     Denver-Aurora-Lakewood, CO Metro Area
3267                Dallas-Fort Worth-Arlington, TX Metro Area
3268                    San Juan-Bayamón-Caguas, PR Metro Area
3269                           Cleveland-Elyria, OH Metro Area
3270                                                      <NA>
3271                Dallas-Fort Worth-Arlington, TX Metro Area
3272             Los Angeles-Long Beach-Anaheim, CA Metro Area
3273                Dallas-Fort Worth-Arlington, TX Metro Area
3274                    Kahului-Wailuku-Lahaina, HI Metro Area
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3276                Dallas-Fort Worth-Arlington, TX Metro Area
3277             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3278                           Cincinnati, OH-KY-IN Metro Area
3279                Dallas-Fort Worth-Arlington, TX Metro Area
3280                                       Hilo, HI Micro Area
3281                    Kahului-Wailuku-Lahaina, HI Metro Area
3282                                                      <NA>
3283                                  Anchorage, AK Metro Area
3284                                  Anchorage, AK Metro Area
3285                    Seattle-Tacoma-Bellevue, WA Metro Area
3286        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3287                      Cape Coral-Fort Myers, FL Metro Area
3288                      Cape Coral-Fort Myers, FL Metro Area
3289          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3290                                   Appleton, WI Metro Area
3291                               Cedar Rapids, IA Metro Area
3292                Sacramento-Roseville-Folsom, CA Metro Area
3293                                                      <NA>
3294                                                      <NA>
3295                                   Savannah, GA Metro Area
3296           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3297           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3298           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3299        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3300          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3301                                   Key West, FL Micro Area
3302                           Dayton-Kettering, OH Metro Area
3303                               Texarkana, TX-AR Metro Area
3304                Dallas-Fort Worth-Arlington, TX Metro Area
3305                                      Akron, OH Metro Area
3306         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3307          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3308                                Tallahassee, FL Metro Area
3309              Charlotte-Concord-Gastonia, NC-SC Metro Area
3310                           Cleveland-Elyria, OH Metro Area
3311                                   Syracuse, NY Metro Area
3312                      Phoenix-Mesa-Chandler, AZ Metro Area
3313                                  Kalispell, MT Micro Area
3314             San Francisco-Oakland-Berkeley, CA Metro Area
3315                                 Jackson, WY-ID Micro Area
3316                             Urban Honolulu, HI Metro Area
3317             Los Angeles-Long Beach-Anaheim, CA Metro Area
3318                                    Edwards, CO Micro Area
3319           Houston-The Woodlands-Sugar Land, TX Metro Area
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3321                     Denver-Aurora-Lakewood, CO Metro Area
3322 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3323             San Diego-Chula Vista-Carlsbad, CA Metro Area
3324                                Albuquerque, NM Metro Area
3325             San Diego-Chula Vista-Carlsbad, CA Metro Area
3326             Los Angeles-Long Beach-Anaheim, CA Metro Area
3327           Riverside-San Bernardino-Ontario, CA Metro Area
3328                  Orlando-Kissimmee-Sanford, FL Metro Area
3329             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3330                  Baltimore-Columbia-Towson, MD Metro Area
3331                       New Orleans-Metairie, LA Metro Area
3332             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3333             San Francisco-Oakland-Berkeley, CA Metro Area
3334                    San Juan-Bayamón-Caguas, PR Metro Area
3335           Houston-The Woodlands-Sugar Land, TX Metro Area
3336                                     Peoria, IL Metro Area
3337                 Pensacola-Ferry Pass-Brent, FL Metro Area
3338                                 Rapid City, SD Metro Area
3339                                    Bozeman, MT Micro Area
3340                Charleston-North Charleston, SC Metro Area
3341     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3342                Dallas-Fort Worth-Arlington, TX Metro Area
3343                Hilton Head Island-Bluffton, SC Metro Area
3344                                   Appleton, WI Metro Area
3345                    Omaha-Council Bluffs, NE-IA Metro Area
3346          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3347        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3348                    San Juan-Bayamón-Caguas, PR Metro Area
3349                                     Bangor, ME Metro Area
3350                      Grand Rapids-Kentwood, MI Metro Area
3351                                     Helena, MT Micro Area
3352                    Shreveport-Bossier City, LA Metro Area
3353                     Denver-Aurora-Lakewood, CO Metro Area
3354                             Salt Lake City, UT Metro Area
3355                    Kahului-Wailuku-Lahaina, HI Metro Area
3356                                 Fort Wayne, IN Metro Area
3357                      Phoenix-Mesa-Chandler, AZ Metro Area
3358                                   Richmond, VA Metro Area
3359            Tampa-St. Petersburg-Clearwater, FL Metro Area
3360                Dallas-Fort Worth-Arlington, TX Metro Area
3361                      Phoenix-Mesa-Chandler, AZ Metro Area
3362                Dallas-Fort Worth-Arlington, TX Metro Area
3363             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3364                                                      <NA>
3365                Dallas-Fort Worth-Arlington, TX Metro Area
3366                                   Key West, FL Micro Area
3367                                Tallahassee, FL Metro Area
3368                             Salt Lake City, UT Metro Area
3369        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3370                                Sioux Falls, SD Metro Area
3371                Dallas-Fort Worth-Arlington, TX Metro Area
3372                                   Missoula, MT Metro Area
3373                 Pensacola-Ferry Pass-Brent, FL Metro Area
3374                          Birmingham-Hoover, AL Metro Area
3375                                   Savannah, GA Metro Area
3376                                Idaho Falls, ID Metro Area
3377        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3378                                 Boise City, ID Metro Area
3379        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3380                           Glenwood Springs, CO Micro Area
3381           Houston-The Woodlands-Sugar Land, TX Metro Area
3382                             Urban Honolulu, HI Metro Area
3383                                    Bozeman, MT Micro Area
3384                                    Edwards, CO Micro Area
3385               Austin-Round Rock-Georgetown, TX Metro Area
3386             San Francisco-Oakland-Berkeley, CA Metro Area
3387                      Cape Coral-Fort Myers, FL Metro Area
3388             San Francisco-Oakland-Berkeley, CA Metro Area
3389                  Orlando-Kissimmee-Sanford, FL Metro Area
3390                Dallas-Fort Worth-Arlington, TX Metro Area
3391                                Panama City, FL Metro Area
3392                                 Wilmington, NC Metro Area
3393                                                      <NA>
3394                 Boston-Cambridge-Newton, MA-NH Metro Area
3395                    Kahului-Wailuku-Lahaina, HI Metro Area
3396        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3398                             Urban Honolulu, HI Metro Area
3399                             Urban Honolulu, HI Metro Area
3400                                       Hilo, HI Micro Area
3401                                   Montrose, CO Micro Area
3402                                  Lafayette, LA Metro Area
3403           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3404           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3405                              Wausau-Weston, WI Metro Area
3406                 Des Moines-West Des Moines, IA Metro Area
3407          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3408           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3409        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3410           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3411                    San Juan-Bayamón-Caguas, PR Metro Area
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3413                      Phoenix-Mesa-Chandler, AZ Metro Area
3414        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3415          Hartford-East Hartford-Middletown, CT Metro Area
3416                                  Rochester, NY Metro Area
3417             San Diego-Chula Vista-Carlsbad, CA Metro Area
3418                    Seattle-Tacoma-Bellevue, WA Metro Area
3419                                                      <NA>
3420                                                      <NA>
3421                                       Reno, NV Metro Area
3422                                    Edwards, CO Micro Area
3423                                     Fresno, CA Metro Area
3424     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3425                               Raleigh-Cary, NC Metro Area
3426                Dallas-Fort Worth-Arlington, TX Metro Area
3427                Dallas-Fort Worth-Arlington, TX Metro Area
3428                Dallas-Fort Worth-Arlington, TX Metro Area
3429                Dallas-Fort Worth-Arlington, TX Metro Area
3430               Indianapolis-Carmel-Anderson, IN Metro Area
3431                      Phoenix-Mesa-Chandler, AZ Metro Area
3432                Dallas-Fort Worth-Arlington, TX Metro Area
3433                Dallas-Fort Worth-Arlington, TX Metro Area
3434                    Seattle-Tacoma-Bellevue, WA Metro Area
3435                           Cleveland-Elyria, OH Metro Area
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3437             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3438                Dallas-Fort Worth-Arlington, TX Metro Area
3439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3440                    Seattle-Tacoma-Bellevue, WA Metro Area
3441                    Seattle-Tacoma-Bellevue, WA Metro Area
3442             San Francisco-Oakland-Berkeley, CA Metro Area
3443                                  Anchorage, AK Metro Area
3444            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3445               Austin-Round Rock-Georgetown, TX Metro Area
3446             Los Angeles-Long Beach-Anaheim, CA Metro Area
3447                  Orlando-Kissimmee-Sanford, FL Metro Area
3448                    Kahului-Wailuku-Lahaina, HI Metro Area
3449                    Seattle-Tacoma-Bellevue, WA Metro Area
3450                                       Hilo, HI Micro Area
3451                                Albuquerque, NM Metro Area
3452                Charleston-North Charleston, SC Metro Area
3453                                     Juneau, AK Micro Area
3454                                  Ketchikan, AK Micro Area
3455                       New Orleans-Metairie, LA Metro Area
3456                    Seattle-Tacoma-Bellevue, WA Metro Area
3457                                  Anchorage, AK Metro Area
3458                                       Hilo, HI Micro Area
3459            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3460                    San Juan-Bayamón-Caguas, PR Metro Area
3461                       New Orleans-Metairie, LA Metro Area
3462            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3463           Riverside-San Bernardino-Ontario, CA Metro Area
3464                               Jacksonville, FL Metro Area
3465        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3466                             Vineyard Haven, MA Micro Area
3467          Hartford-East Hartford-Middletown, CT Metro Area
3468         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3469                                    Wichita, KS Metro Area
3470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3471             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3472           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3473                                                      <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3475           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3476           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3477           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3478        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3479                             Salt Lake City, UT Metro Area
3480                             Salt Lake City, UT Metro Area
3481                              Memphis, TN-MS-AR Metro Area
3482                    Detroit-Warren-Dearborn, MI Metro Area
3483             Los Angeles-Long Beach-Anaheim, CA Metro Area
3484        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3485           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3486                                   Billings, MT Metro Area
3487                    Detroit-Warren-Dearborn, MI Metro Area
3488                             Salt Lake City, UT Metro Area
3489           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3490             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3491                Dallas-Fort Worth-Arlington, TX Metro Area
3492                                   Billings, MT Metro Area
3493                                Baton Rouge, LA Metro Area
3494                                    Jackson, MS Metro Area
3495              North Port-Sarasota-Bradenton, FL Metro Area
3496        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3497                          Birmingham-Hoover, AL Metro Area
3498                  Orlando-Kissimmee-Sanford, FL Metro Area
3499                                Columbus, GA-AL Metro Area
3500                Burlington-South Burlington, VT Metro Area
3501              Charlotte-Concord-Gastonia, NC-SC Metro Area
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3503         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3504                     Denver-Aurora-Lakewood, CO Metro Area
3505        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3506                                   Bismarck, ND Metro Area
3507                             Grand Junction, CO Metro Area
3508                San Luis Obispo-Paso Robles, CA Metro Area
3509                                  Knoxville, TN Metro Area
3510                           Glenwood Springs, CO Micro Area
3511                                    Durango, CO Micro Area
3512                             Grand Junction, CO Metro Area
3513        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3514        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3515                    Detroit-Warren-Dearborn, MI Metro Area
3516                           Cleveland-Elyria, OH Metro Area
3517                                  Kalispell, MT Micro Area
3518                             Salt Lake City, UT Metro Area
3519                        Harrisburg-Carlisle, PA Metro Area
3520                                     Hailey, ID Micro Area
3521           Riverside-San Bernardino-Ontario, CA Metro Area
3522                        Santa Rosa-Petaluma, CA Metro Area
3523                                    Edwards, CO Micro Area
3524                        Santa Rosa-Petaluma, CA Metro Area
3525             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3526                Dallas-Fort Worth-Arlington, TX Metro Area
3527                                 Jackson, WY-ID Micro Area
3528             San Diego-Chula Vista-Carlsbad, CA Metro Area
3529                                   Billings, MT Metro Area
3530                         Eugene-Springfield, OR Metro Area
3531                                   Missoula, MT Metro Area
3532                              Oklahoma City, OK Metro Area
3533                    Omaha-Council Bluffs, NE-IA Metro Area
3534                      Phoenix-Mesa-Chandler, AZ Metro Area
3535                                 Boise City, ID Metro Area
3536             San Diego-Chula Vista-Carlsbad, CA Metro Area
3537                                    El Paso, TX Metro Area
3538                  Santa Maria-Santa Barbara, CA Metro Area
3539                                   Richmond, VA Metro Area
3540                  San Antonio-New Braunfels, TX Metro Area
3541                                                      <NA>
3542                    San Juan-Bayamón-Caguas, PR Metro Area
3543           Houston-The Woodlands-Sugar Land, TX Metro Area
3544                     Denver-Aurora-Lakewood, CO Metro Area
3545                     Denver-Aurora-Lakewood, CO Metro Area
3546                Burlington-South Burlington, VT Metro Area
3547           Houston-The Woodlands-Sugar Land, TX Metro Area
3548             San Francisco-Oakland-Berkeley, CA Metro Area
3549                                       Hilo, HI Micro Area
3550                                      Kapaa, HI Micro Area
3551                             Urban Honolulu, HI Metro Area
3552             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3553                     Denver-Aurora-Lakewood, CO Metro Area
3554                    Seattle-Tacoma-Bellevue, WA Metro Area
3555              North Port-Sarasota-Bradenton, FL Metro Area
3556                                   Columbus, OH Metro Area
3557                  Orlando-Kissimmee-Sanford, FL Metro Area
3558             San Diego-Chula Vista-Carlsbad, CA Metro Area
3559                                    El Paso, TX Metro Area
3560                    Kahului-Wailuku-Lahaina, HI Metro Area
3561               Austin-Round Rock-Georgetown, TX Metro Area
3562                    Kahului-Wailuku-Lahaina, HI Metro Area
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3564             San Diego-Chula Vista-Carlsbad, CA Metro Area
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3566                             Kansas City, MO-KS Metro Area
3567               Indianapolis-Carmel-Anderson, IN Metro Area
3568                                    Midland, TX Metro Area
3569                      Phoenix-Mesa-Chandler, AZ Metro Area
3570               Indianapolis-Carmel-Anderson, IN Metro Area
3571              Charlotte-Concord-Gastonia, NC-SC Metro Area
3572                             Kansas City, MO-KS Metro Area
3573              Allentown-Bethlehem-Easton, PA-NJ Metro Area
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3575                        Buffalo-Cheektowaga, NY Metro Area
3576                                    Durango, CO Micro Area
3577           Houston-The Woodlands-Sugar Land, TX Metro Area
3578                                Springfield, MO Metro Area
3579             Los Angeles-Long Beach-Anaheim, CA Metro Area
3580                                Bloomington, IL Metro Area
3581                              Evansville, IN-KY Metro Area
3582                    Detroit-Warren-Dearborn, MI Metro Area
3583                                   Syracuse, NY Metro Area
3584                            Charlottesville, VA Metro Area
3585                                    Madison, WI Metro Area
3586                                    Madison, WI Metro Area
3587             Fayetteville-Springdale-Rogers, AR Metro Area
3588                    Detroit-Warren-Dearborn, MI Metro Area
3589           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3590                Dallas-Fort Worth-Arlington, TX Metro Area
3591                Dallas-Fort Worth-Arlington, TX Metro Area
3592                                   Richmond, VA Metro Area
3593                Dallas-Fort Worth-Arlington, TX Metro Area
3594                Dallas-Fort Worth-Arlington, TX Metro Area
3595               Austin-Round Rock-Georgetown, TX Metro Area
3596                                    Bozeman, MT Micro Area
3597                    Omaha-Council Bluffs, NE-IA Metro Area
3598                      Phoenix-Mesa-Chandler, AZ Metro Area
3599                Dallas-Fort Worth-Arlington, TX Metro Area
3600                Dallas-Fort Worth-Arlington, TX Metro Area
3601                Dallas-Fort Worth-Arlington, TX Metro Area
3602                                       Hilo, HI Micro Area
3603             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3604                Dallas-Fort Worth-Arlington, TX Metro Area
3605              Charlotte-Concord-Gastonia, NC-SC Metro Area
3606                      Phoenix-Mesa-Chandler, AZ Metro Area
3607               Austin-Round Rock-Georgetown, TX Metro Area
3608            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3609            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3610                                  Anchorage, AK Metro Area
3611                                     Tucson, AZ Metro Area
3612                                       Hilo, HI Micro Area
3613           Riverside-San Bernardino-Ontario, CA Metro Area
3614                     Spokane-Spokane Valley, WA Metro Area
3615                                                      <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3617                                    Bozeman, MT Micro Area
3618                Sacramento-Roseville-Folsom, CA Metro Area
3619                                   Syracuse, NY Metro Area
3620             Fayetteville-Springdale-Rogers, AR Metro Area
3621                    Detroit-Warren-Dearborn, MI Metro Area
3622                                 Boise City, ID Metro Area
3623           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3624        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3625                             Chattanooga, TN-GA Metro Area
3626                      College Station-Bryan, TX Metro Area
3627                              Evansville, IN-KY Metro Area
3628                                     Mobile, AL Metro Area
3629        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3631             Louisville/Jefferson County, KY-IN Metro Area
3632                Dallas-Fort Worth-Arlington, TX Metro Area
3633        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3635                    Omaha-Council Bluffs, NE-IA Metro Area
3636                 Pensacola-Ferry Pass-Brent, FL Metro Area
3637              Charlotte-Concord-Gastonia, NC-SC Metro Area
3638              Charlotte-Concord-Gastonia, NC-SC Metro Area
3639                                  Knoxville, TN Metro Area
3640             San Francisco-Oakland-Berkeley, CA Metro Area
3641                             Salt Lake City, UT Metro Area
3642                    South Bend-Mishawaka, IN-MI Metro Area
3643                      Grand Rapids-Kentwood, MI Metro Area
3644                              Memphis, TN-MS-AR Metro Area
3645     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3646             San Diego-Chula Vista-Carlsbad, CA Metro Area
3647                                 Rapid City, SD Metro Area
3648                           Glenwood Springs, CO Micro Area
3649                     Denver-Aurora-Lakewood, CO Metro Area
3650                                   Montrose, CO Micro Area
3651           Riverside-San Bernardino-Ontario, CA Metro Area
3652                                    Medford, OR Metro Area
3653                                       Bend, OR Metro Area
3654                                      Tulsa, OK Metro Area
3655                    Seattle-Tacoma-Bellevue, WA Metro Area
3656                  Santa Maria-Santa Barbara, CA Metro Area
3657                        Santa Rosa-Petaluma, CA Metro Area
3658                                 Jackson, WY-ID Micro Area
3659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3660            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3661           Houston-The Woodlands-Sugar Land, TX Metro Area
3662                     Denver-Aurora-Lakewood, CO Metro Area
3663          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3665           Houston-The Woodlands-Sugar Land, TX Metro Area
3666                                       Reno, NV Metro Area
3667               Austin-Round Rock-Georgetown, TX Metro Area
3668           Houston-The Woodlands-Sugar Land, TX Metro Area
3669                         Milwaukee-Waukesha, WI Metro Area
3670             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3671                    Kahului-Wailuku-Lahaina, HI Metro Area
3672                                Albuquerque, NM Metro Area
3673                                      Kapaa, HI Micro Area
3674                                 Pittsburgh, PA Metro Area
3675               Las Vegas-Henderson-Paradise, NV Metro Area
3676             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3677                                       Hilo, HI Micro Area
3678                  San Antonio-New Braunfels, TX Metro Area
3679                                 Huntsville, AL Metro Area
3680                      Phoenix-Mesa-Chandler, AZ Metro Area
3681                      Phoenix-Mesa-Chandler, AZ Metro Area
3682                      Grand Rapids-Kentwood, MI Metro Area
3683                                Spartanburg, SC Metro Area
3684                Dallas-Fort Worth-Arlington, TX Metro Area
3685           Houston-The Woodlands-Sugar Land, TX Metro Area
3686                           Cleveland-Elyria, OH Metro Area
3687                                   Savannah, GA Metro Area
3688                    South Bend-Mishawaka, IN-MI Metro Area
3689          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3690          Hartford-East Hartford-Middletown, CT Metro Area
3691                           Dayton-Kettering, OH Metro Area
3692                                     Mobile, AL Metro Area
3693                                  Knoxville, TN Metro Area
3694                           Dayton-Kettering, OH Metro Area
3695     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3696                                  Knoxville, TN Metro Area
3697           Houston-The Woodlands-Sugar Land, TX Metro Area
3698                                   Columbia, SC Metro Area
3699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3700                Dallas-Fort Worth-Arlington, TX Metro Area
3701                Dallas-Fort Worth-Arlington, TX Metro Area
3702                 Des Moines-West Des Moines, IA Metro Area
3703             San Diego-Chula Vista-Carlsbad, CA Metro Area
3704                Dallas-Fort Worth-Arlington, TX Metro Area
3705                Charleston-North Charleston, SC Metro Area
3706                                   Key West, FL Micro Area
3707                                Spartanburg, SC Metro Area
3708                                                      <NA>
3709                             Urban Honolulu, HI Metro Area
3710               Indianapolis-Carmel-Anderson, IN Metro Area
3711                              Oklahoma City, OK Metro Area
3712                  San Antonio-New Braunfels, TX Metro Area
3713                  Santa Maria-Santa Barbara, CA Metro Area
3714                Dallas-Fort Worth-Arlington, TX Metro Area
3715                                 Jackson, WY-ID Micro Area
3716             Los Angeles-Long Beach-Anaheim, CA Metro Area
3717             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3718             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3719          Hartford-East Hartford-Middletown, CT Metro Area
3720        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3721                Dallas-Fort Worth-Arlington, TX Metro Area
3722               Austin-Round Rock-Georgetown, TX Metro Area
3723              Charlotte-Concord-Gastonia, NC-SC Metro Area
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3725                                                      <NA>
3726                                     Juneau, AK Micro Area
3727                                  Anchorage, AK Metro Area
3728                                  Rochester, NY Metro Area
3729        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3731          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3732                                    Madison, WI Metro Area
3733                    Detroit-Warren-Dearborn, MI Metro Area
3734                      Providence-Warwick, RI-MA Metro Area
3735                                   Syracuse, NY Metro Area
3736                                  Lafayette, LA Metro Area
3737                                Tallahassee, FL Metro Area
3738        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3739                  Orlando-Kissimmee-Sanford, FL Metro Area
3740              Charlotte-Concord-Gastonia, NC-SC Metro Area
3741                               Cedar Rapids, IA Metro Area
3742                              Memphis, TN-MS-AR Metro Area
3743                        Buffalo-Cheektowaga, NY Metro Area
3744                      Grand Rapids-Kentwood, MI Metro Area
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3747                                  Manhattan, KS Metro Area
3748                                     Tucson, AZ Metro Area
3749                                   Montrose, CO Micro Area
3750                     Denver-Aurora-Lakewood, CO Metro Area
3751                     Scranton--Wilkes-Barre, PA Metro Area
3752                                   Syracuse, NY Metro Area
3753                                 Jackson, WY-ID Micro Area
3754                                    Roswell, NM Micro Area
3755                     Denver-Aurora-Lakewood, CO Metro Area
3756                                    Bozeman, MT Micro Area
3757                             Grand Junction, CO Metro Area
3758                                  Anchorage, AK Metro Area
3759             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3760           Houston-The Woodlands-Sugar Land, TX Metro Area
3761                Sacramento-Roseville-Folsom, CA Metro Area
3762                                Albuquerque, NM Metro Area
3763                             Urban Honolulu, HI Metro Area
3764                               Raleigh-Cary, NC Metro Area
3765                  Baltimore-Columbia-Towson, MD Metro Area
3766             San Diego-Chula Vista-Carlsbad, CA Metro Area
3767             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3768                                Albuquerque, NM Metro Area
3769              North Port-Sarasota-Bradenton, FL Metro Area
3770                    Albany-Schenectady-Troy, NY Metro Area
3771                     Denver-Aurora-Lakewood, CO Metro Area
3772            Tampa-St. Petersburg-Clearwater, FL Metro Area
3773                             Salt Lake City, UT Metro Area
3774                          Birmingham-Hoover, AL Metro Area
3775                                   Columbus, OH Metro Area
3776             Louisville/Jefferson County, KY-IN Metro Area
3777                        Buffalo-Cheektowaga, NY Metro Area
3778                  San Antonio-New Braunfels, TX Metro Area
3779                      Phoenix-Mesa-Chandler, AZ Metro Area
3780                                   Columbus, OH Metro Area
3781            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3782                  Orlando-Kissimmee-Sanford, FL Metro Area
3783            Tampa-St. Petersburg-Clearwater, FL Metro Area
3784            Tampa-St. Petersburg-Clearwater, FL Metro Area
3785                Dallas-Fort Worth-Arlington, TX Metro Area
3786             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3787                        Buffalo-Cheektowaga, NY Metro Area
3788             Louisville/Jefferson County, KY-IN Metro Area
3789        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3790                Dallas-Fort Worth-Arlington, TX Metro Area
3791           Houston-The Woodlands-Sugar Land, TX Metro Area
3792                               St. Louis, MO-IL Metro Area
3793                Sacramento-Roseville-Folsom, CA Metro Area
3794                               Cedar Rapids, IA Metro Area
3795                                   Fargo, ND-MN Metro Area
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3797           Houston-The Woodlands-Sugar Land, TX Metro Area
3798                               Cedar Rapids, IA Metro Area
3799                                   Fargo, ND-MN Metro Area
3800                      Grand Rapids-Kentwood, MI Metro Area
3801                           Dayton-Kettering, OH Metro Area
3802                                 Pittsburgh, PA Metro Area
3803                                    Roanoke, VA Metro Area
3804                                 Huntsville, AL Metro Area
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3807             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3808              Charlotte-Concord-Gastonia, NC-SC Metro Area
3809          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3810                  Orlando-Kissimmee-Sanford, FL Metro Area
3811          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3812                               Worcester, MA-CT Metro Area
3813                               Worcester, MA-CT Metro Area
3814        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3815          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3816                                                      <NA>
3817                    San Juan-Bayamón-Caguas, PR Metro Area
3818           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3819                  Orlando-Kissimmee-Sanford, FL Metro Area
3820                      Cape Coral-Fort Myers, FL Metro Area
3821                                Sioux Falls, SD Metro Area
3822                      Brownsville-Harlingen, TX Metro Area
3823           Riverside-San Bernardino-Ontario, CA Metro Area
3824               Las Vegas-Henderson-Paradise, NV Metro Area
3825               Las Vegas-Henderson-Paradise, NV Metro Area
3826               Las Vegas-Henderson-Paradise, NV Metro Area
3827                  Orlando-Kissimmee-Sanford, FL Metro Area
3828                  Orlando-Kissimmee-Sanford, FL Metro Area
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3830                      Cape Coral-Fort Myers, FL Metro Area
3831                               St. Louis, MO-IL Metro Area
3832                           Cleveland-Elyria, OH Metro Area
3833           Riverside-San Bernardino-Ontario, CA Metro Area
3834                          Trenton-Princeton, NJ Metro Area
3835          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3836                  Orlando-Kissimmee-Sanford, FL Metro Area
3837                      Cape Coral-Fort Myers, FL Metro Area
3838          Hartford-East Hartford-Middletown, CT Metro Area
3839                          Trenton-Princeton, NJ Metro Area
3840          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3841                  Orlando-Kissimmee-Sanford, FL Metro Area
3842            Tampa-St. Petersburg-Clearwater, FL Metro Area
3843            Tampa-St. Petersburg-Clearwater, FL Metro Area
3844                      Grand Rapids-Kentwood, MI Metro Area
3845           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3846             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3847        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3848            Tampa-St. Petersburg-Clearwater, FL Metro Area
3849        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3850        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3851            Tampa-St. Petersburg-Clearwater, FL Metro Area
3852                      Cape Coral-Fort Myers, FL Metro Area
3853             Los Angeles-Long Beach-Anaheim, CA Metro Area
3854                    Atlantic City-Hammonton, NJ Metro Area
3855             Louisville/Jefferson County, KY-IN Metro Area
3856                 Pensacola-Ferry Pass-Brent, FL Metro Area
3857                           Cleveland-Elyria, OH Metro Area
3858                                 Pittsburgh, PA Metro Area
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3861                    Atlantic City-Hammonton, NJ Metro Area
3862                          Manchester-Nashua, NH Metro Area
3863                                                      <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3865                                 Pittsburgh, PA Metro Area
3866          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3867                  Orlando-Kissimmee-Sanford, FL Metro Area
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3870                    Atlantic City-Hammonton, NJ Metro Area
3871                                 Pittsburgh, PA Metro Area
3872        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3874                                    Salinas, CA Metro Area
3875                                Bakersfield, CA Metro Area
3876                                   Billings, MT Metro Area
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3878                             Kansas City, MO-KS Metro Area
3879           Houston-The Woodlands-Sugar Land, TX Metro Area
3880             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3881                             Urban Honolulu, HI Metro Area
3882                              Oklahoma City, OK Metro Area
3883          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3885        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3886                                  Asheville, NC Metro Area
3887               Indianapolis-Carmel-Anderson, IN Metro Area
3888        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3889        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3890        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3891                                    Lubbock, TX Metro Area
3892                                                      <NA>
3893                                    Edwards, CO Micro Area
3894            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3895                             Salt Lake City, UT Metro Area
3896                                   Richmond, VA Metro Area
3897                                       Hilo, HI Micro Area
3898                               St. Louis, MO-IL Metro Area
3899                                  Rochester, MN Metro Area
3900                                  Green Bay, WI Metro Area
3901                             Kansas City, MO-KS Metro Area
3902                              Oklahoma City, OK Metro Area
3903              North Port-Sarasota-Bradenton, FL Metro Area
3904             Fayetteville-Springdale-Rogers, AR Metro Area
3905                 Des Moines-West Des Moines, IA Metro Area
3906                                                      <NA>
3907                                  Anchorage, AK Metro Area
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3909          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3910          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3911                           Cincinnati, OH-KY-IN Metro Area
3912                                    El Paso, TX Metro Area
3913                                  Rochester, NY Metro Area
3914                           Cincinnati, OH-KY-IN Metro Area
3915                             Salt Lake City, UT Metro Area
3916        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3917     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3918                Dallas-Fort Worth-Arlington, TX Metro Area
3919                Dallas-Fort Worth-Arlington, TX Metro Area
3920              Charlotte-Concord-Gastonia, NC-SC Metro Area
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3922     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3924                                Spartanburg, SC Metro Area
3925                                    Madison, WI Metro Area
3926     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3927                     Denver-Aurora-Lakewood, CO Metro Area
3928                           Glenwood Springs, CO Micro Area
3929                                  Kalispell, MT Micro Area
3930                                    Medford, OR Metro Area
3931                                      Minot, ND Micro Area
3932                                Idaho Falls, ID Metro Area
3933                                   Santa Fe, NM Metro Area
3934                                    Medford, OR Metro Area
3935             San Francisco-Oakland-Berkeley, CA Metro Area
3936             Los Angeles-Long Beach-Anaheim, CA Metro Area
3937                     Denver-Aurora-Lakewood, CO Metro Area
3938           Houston-The Woodlands-Sugar Land, TX Metro Area
3939               Indianapolis-Carmel-Anderson, IN Metro Area
3940             Los Angeles-Long Beach-Anaheim, CA Metro Area
3941               Las Vegas-Henderson-Paradise, NV Metro Area
3942                      Phoenix-Mesa-Chandler, AZ Metro Area
3943                               Jacksonville, FL Metro Area
3944           Houston-The Woodlands-Sugar Land, TX Metro Area
3945                Dallas-Fort Worth-Arlington, TX Metro Area
3946                          Steamboat Springs, CO Micro Area
3947                               Raleigh-Cary, NC Metro Area
3948                      Cape Coral-Fort Myers, FL Metro Area
3949                                      Tulsa, OK Metro Area
3950           Houston-The Woodlands-Sugar Land, TX Metro Area
3951                      Phoenix-Mesa-Chandler, AZ Metro Area
3952                      Phoenix-Mesa-Chandler, AZ Metro Area
3953                                Bloomington, IL Metro Area
3954        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3955                Hilton Head Island-Bluffton, SC Metro Area
3956          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3957                                   Key West, FL Micro Area
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3959                         Milwaukee-Waukesha, WI Metro Area
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3961           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3962                Dallas-Fort Worth-Arlington, TX Metro Area
3963              Charlotte-Concord-Gastonia, NC-SC Metro Area
3964              Charlotte-Concord-Gastonia, NC-SC Metro Area
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3967                Dallas-Fort Worth-Arlington, TX Metro Area
3968               Austin-Round Rock-Georgetown, TX Metro Area
3969          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3970        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3971                                      Tulsa, OK Metro Area
3972                Dallas-Fort Worth-Arlington, TX Metro Area
3973             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3974                      Phoenix-Mesa-Chandler, AZ Metro Area
3975              Charlotte-Concord-Gastonia, NC-SC Metro Area
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3978              Charlotte-Concord-Gastonia, NC-SC Metro Area
3979              Charlotte-Concord-Gastonia, NC-SC Metro Area
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3981             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3982                                   Columbus, OH Metro Area
3983                Dallas-Fort Worth-Arlington, TX Metro Area
3984              Charlotte-Concord-Gastonia, NC-SC Metro Area
3985              Charlotte-Concord-Gastonia, NC-SC Metro Area
3986                    Seattle-Tacoma-Bellevue, WA Metro Area
3987            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3988            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3989                        Buffalo-Cheektowaga, NY Metro Area
3990          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3992          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3993             Louisville/Jefferson County, KY-IN Metro Area
3994                    Detroit-Warren-Dearborn, MI Metro Area
3995                    Detroit-Warren-Dearborn, MI Metro Area
3996        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3997           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3998                           Cincinnati, OH-KY-IN Metro Area
3999                    Detroit-Warren-Dearborn, MI Metro Area
4000                    Detroit-Warren-Dearborn, MI Metro Area
4001                    San Juan-Bayamón-Caguas, PR Metro Area
4002                                   Syracuse, NY Metro Area
4003                                      Tulsa, OK Metro Area
4004             San Diego-Chula Vista-Carlsbad, CA Metro Area
4005             Los Angeles-Long Beach-Anaheim, CA Metro Area
4006                      Cape Coral-Fort Myers, FL Metro Area
4007                Sacramento-Roseville-Folsom, CA Metro Area
4008            Davenport-Moline-Rock Island, IA-IL Metro Area
4009                          Birmingham-Hoover, AL Metro Area
4010                                  Knoxville, TN Metro Area
4011                                     Tucson, AZ Metro Area
4012            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4013               Indianapolis-Carmel-Anderson, IN Metro Area
4014             San Diego-Chula Vista-Carlsbad, CA Metro Area
4015                 Augusta-Richmond County, GA-SC Metro Area
4016          Hartford-East Hartford-Middletown, CT Metro Area
4017                               Raleigh-Cary, NC Metro Area
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4019                                   Key West, FL Micro Area
4020               Indianapolis-Carmel-Anderson, IN Metro Area
4021                                  Anchorage, AK Metro Area
4022             Fayetteville-Springdale-Rogers, AR Metro Area
4023                Charleston-North Charleston, SC Metro Area
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4025                    Albany-Schenectady-Troy, NY Metro Area
4026                                    Roanoke, VA Metro Area
4027           Houston-The Woodlands-Sugar Land, TX Metro Area
4028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4029           Houston-The Woodlands-Sugar Land, TX Metro Area
4030             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4032                Dallas-Fort Worth-Arlington, TX Metro Area
4033                                       Hilo, HI Micro Area
4034                                 Pittsburgh, PA Metro Area
4035                    Shreveport-Bossier City, LA Metro Area
4036        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4037          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4038        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4039                                  Flagstaff, AZ Metro Area
4040                                    Bozeman, MT Micro Area
4041                     Denver-Aurora-Lakewood, CO Metro Area
4042              Charlotte-Concord-Gastonia, NC-SC Metro Area
4043                                 Pittsburgh, PA Metro Area
4044                Charleston-North Charleston, SC Metro Area
4045             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4046                  Orlando-Kissimmee-Sanford, FL Metro Area
4047                                      Ponce, PR Metro Area
4048                                    Jackson, MS Metro Area
4049                      Grand Rapids-Kentwood, MI Metro Area
4050                  San Antonio-New Braunfels, TX Metro Area
4051            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4052                                  Anchorage, AK Metro Area
4053                                     Juneau, AK Micro Area
4054                                Spartanburg, SC Metro Area
4055                             Salt Lake City, UT Metro Area
4056                                 Wilmington, NC Metro Area
4057                    San Juan-Bayamón-Caguas, PR Metro Area
4058                               St. Louis, MO-IL Metro Area
4059                               Jacksonville, FL Metro Area
4060                                   Savannah, GA Metro Area
4061                                       Reno, NV Metro Area
4062                               St. Louis, MO-IL Metro Area
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4064                           Colorado Springs, CO Metro Area
4065             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4066        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4067                                                      <NA>
4068                 Boston-Cambridge-Newton, MA-NH Metro Area
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4070             Los Angeles-Long Beach-Anaheim, CA Metro Area
4071                  Baltimore-Columbia-Towson, MD Metro Area
4072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4073                 Boston-Cambridge-Newton, MA-NH Metro Area
4074                          Steamboat Springs, CO Micro Area
4075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4076           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4077                              Memphis, TN-MS-AR Metro Area
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4079                                Springfield, MO Metro Area
4080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4081                          Birmingham-Hoover, AL Metro Area
4082                Burlington-South Burlington, VT Metro Area
4083              Charlotte-Concord-Gastonia, NC-SC Metro Area
4084                    Portland-South Portland, ME Metro Area
4085                Dallas-Fort Worth-Arlington, TX Metro Area
4086                                Columbus, GA-AL Metro Area
4087                                      Tulsa, OK Metro Area
4088           Houston-The Woodlands-Sugar Land, TX Metro Area
4089               Indianapolis-Carmel-Anderson, IN Metro Area
4090                                 Pittsburgh, PA Metro Area
4091                      Phoenix-Mesa-Chandler, AZ Metro Area
4092                    Portland-South Portland, ME Metro Area
4093               Austin-Round Rock-Georgetown, TX Metro Area
4094              North Port-Sarasota-Bradenton, FL Metro Area
4095                                    Wichita, KS Metro Area
4096        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4097                                Bloomington, IL Metro Area
4098                  Orlando-Kissimmee-Sanford, FL Metro Area
4099           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4100                              Memphis, TN-MS-AR Metro Area
4101                                 Huntsville, AL Metro Area
4102                                    Madison, WI Metro Area
4103                 Pensacola-Ferry Pass-Brent, FL Metro Area
4104           Poughkeepsie-Newburgh-Middletown, NY Metro Area
4105                      Providence-Warwick, RI-MA Metro Area
4106                  Orlando-Kissimmee-Sanford, FL Metro Area
4107                      Cape Coral-Fort Myers, FL Metro Area
4108                    Detroit-Warren-Dearborn, MI Metro Area
4109                  San Antonio-New Braunfels, TX Metro Area
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4111        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4112                                  Ketchikan, AK Micro Area
4113                                  Anchorage, AK Metro Area
4114           Riverside-San Bernardino-Ontario, CA Metro Area
4115                 Boston-Cambridge-Newton, MA-NH Metro Area
4116             Los Angeles-Long Beach-Anaheim, CA Metro Area
4117                             Salt Lake City, UT Metro Area
4118           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4119                             Salt Lake City, UT Metro Area
4120                             Salt Lake City, UT Metro Area
4121           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4122                           Cincinnati, OH-KY-IN Metro Area
4123                                Springfield, MO Metro Area
4124                                    Jackson, MS Metro Area
4125                 Pensacola-Ferry Pass-Brent, FL Metro Area
4126                      Providence-Warwick, RI-MA Metro Area
4127               Indianapolis-Carmel-Anderson, IN Metro Area
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4129                                   Columbia, MO Metro Area
4130                                  Marquette, MI Micro Area
4131        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4132                                 Jackson, WY-ID Micro Area
4133                Dallas-Fort Worth-Arlington, TX Metro Area
4134                     Denver-Aurora-Lakewood, CO Metro Area
4135                      Grand Rapids-Kentwood, MI Metro Area
4136        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4137                     Denver-Aurora-Lakewood, CO Metro Area
4138           Houston-The Woodlands-Sugar Land, TX Metro Area
4139                    Kahului-Wailuku-Lahaina, HI Metro Area
4140                                       Hilo, HI Micro Area
4141                           Colorado Springs, CO Metro Area
4142             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4144                Sacramento-Roseville-Folsom, CA Metro Area
4145             Los Angeles-Long Beach-Anaheim, CA Metro Area
4146                          Birmingham-Hoover, AL Metro Area
4147                               Jacksonville, FL Metro Area
4148 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4149                      Providence-Warwick, RI-MA Metro Area
4150                                Sioux Falls, SD Metro Area
4151                          Lexington-Fayette, KY Metro Area
4152           Houston-The Woodlands-Sugar Land, TX Metro Area
4153           Houston-The Woodlands-Sugar Land, TX Metro Area
4154                                 Jackson, WY-ID Micro Area
4155                             Urban Honolulu, HI Metro Area
4156     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4157                                     Bangor, ME Metro Area
4158                Burlington-South Burlington, VT Metro Area
4159                                  Rochester, NY Metro Area
4160                                   Syracuse, NY Metro Area
4161                 Boston-Cambridge-Newton, MA-NH Metro Area
4162              Charlotte-Concord-Gastonia, NC-SC Metro Area
4163                                   Amarillo, TX Metro Area
4164             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4165                Dallas-Fort Worth-Arlington, TX Metro Area
4166              Charlotte-Concord-Gastonia, NC-SC Metro Area
4167               Austin-Round Rock-Georgetown, TX Metro Area
4168        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4169                             Kansas City, MO-KS Metro Area
4170                              Memphis, TN-MS-AR Metro Area
4171                               St. Louis, MO-IL Metro Area
4172              Charlotte-Concord-Gastonia, NC-SC Metro Area
4173                Dallas-Fort Worth-Arlington, TX Metro Area
4174                                    El Paso, TX Metro Area
4175                Dallas-Fort Worth-Arlington, TX Metro Area
4176    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4177             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4178                Dallas-Fort Worth-Arlington, TX Metro Area
4179    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4180              Charlotte-Concord-Gastonia, NC-SC Metro Area
4181    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4182    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4183                Dallas-Fort Worth-Arlington, TX Metro Area
4184            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4185                    Seattle-Tacoma-Bellevue, WA Metro Area
4186                                   Syracuse, NY Metro Area
4187                    Albany-Schenectady-Troy, NY Metro Area
4188                Charleston-North Charleston, SC Metro Area
4189            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4190        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4191                Charleston-North Charleston, SC Metro Area
4192               Las Vegas-Henderson-Paradise, NV Metro Area
4193                                   Richmond, VA Metro Area
4194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4195               Las Vegas-Henderson-Paradise, NV Metro Area
4196                 Boston-Cambridge-Newton, MA-NH Metro Area
4197                    Detroit-Warren-Dearborn, MI Metro Area
4198        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4199        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4200                    Detroit-Warren-Dearborn, MI Metro Area
4201                                  Fairbanks, AK Metro Area
4202                    Detroit-Warren-Dearborn, MI Metro Area
4203           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4204          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4205                               Raleigh-Cary, NC Metro Area
4206                      Grand Rapids-Kentwood, MI Metro Area
4207    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4208        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4209                  Orlando-Kissimmee-Sanford, FL Metro Area
4210                                   Syracuse, NY Metro Area
4211   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4212             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4213               Austin-Round Rock-Georgetown, TX Metro Area
4214                            Gulfport-Biloxi, MS Metro Area
4215                                    Midland, TX Metro Area
4216                Dallas-Fort Worth-Arlington, TX Metro Area
4217                Dallas-Fort Worth-Arlington, TX Metro Area
4218                          Lexington-Fayette, KY Metro Area
4219                             Grand Junction, CO Metro Area
4220        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4221                    San Juan-Bayamón-Caguas, PR Metro Area
4222                                                      <NA>
4223            Tampa-St. Petersburg-Clearwater, FL Metro Area
4224                    San Juan-Bayamón-Caguas, PR Metro Area
4225          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4226                    Atlantic City-Hammonton, NJ Metro Area
4227              Charlotte-Concord-Gastonia, NC-SC Metro Area
4228   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4229                       Lansing-East Lansing, MI Metro Area
4230                                 Pittsburgh, PA Metro Area
4231              Charlotte-Concord-Gastonia, NC-SC Metro Area
4232   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4233   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4234           Houston-The Woodlands-Sugar Land, TX Metro Area
4235                      Phoenix-Mesa-Chandler, AZ Metro Area
4236           Houston-The Woodlands-Sugar Land, TX Metro Area
4237             San Francisco-Oakland-Berkeley, CA Metro Area
4238                     Denver-Aurora-Lakewood, CO Metro Area
4239                             Corpus Christi, TX Metro Area
4240                         Eugene-Springfield, OR Metro Area
4241                                       Bend, OR Metro Area
4242           Houston-The Woodlands-Sugar Land, TX Metro Area
4243             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4244                                      Flint, MI Metro Area
4245                                 Huntsville, AL Metro Area
4246                      Providence-Warwick, RI-MA Metro Area
4247                San Luis Obispo-Paso Robles, CA Metro Area
4248                      Phoenix-Mesa-Chandler, AZ Metro Area
4249                                       Bend, OR Metro Area
4250                                       Reno, NV Metro Area
4251           Houston-The Woodlands-Sugar Land, TX Metro Area
4252                    Seattle-Tacoma-Bellevue, WA Metro Area
4253                    Seattle-Tacoma-Bellevue, WA Metro Area
4254             Los Angeles-Long Beach-Anaheim, CA Metro Area
4255          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4256   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4257          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4258             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4259                           Cleveland-Elyria, OH Metro Area
4260                     Denver-Aurora-Lakewood, CO Metro Area
4261                     Denver-Aurora-Lakewood, CO Metro Area
4262             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4263   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4264   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4265             San Francisco-Oakland-Berkeley, CA Metro Area
4266                     Denver-Aurora-Lakewood, CO Metro Area
4267   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4268           Houston-The Woodlands-Sugar Land, TX Metro Area
4269             San Francisco-Oakland-Berkeley, CA Metro Area
4270             San Francisco-Oakland-Berkeley, CA Metro Area
4271                     Denver-Aurora-Lakewood, CO Metro Area
4272   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4273             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4274                      Phoenix-Mesa-Chandler, AZ Metro Area
4275             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4276                Dallas-Fort Worth-Arlington, TX Metro Area
4277              Charlotte-Concord-Gastonia, NC-SC Metro Area
4278        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4279                               St. Louis, MO-IL Metro Area
4280                    Detroit-Warren-Dearborn, MI Metro Area
4281                               St. Louis, MO-IL Metro Area
4282                           Colorado Springs, CO Metro Area
4283             San Diego-Chula Vista-Carlsbad, CA Metro Area
4284             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4285                Dallas-Fort Worth-Arlington, TX Metro Area
4286           Houston-The Woodlands-Sugar Land, TX Metro Area
4287             Los Angeles-Long Beach-Anaheim, CA Metro Area
4288                     Denver-Aurora-Lakewood, CO Metro Area
4289                  Baltimore-Columbia-Towson, MD Metro Area
4290             Los Angeles-Long Beach-Anaheim, CA Metro Area
4291                Dallas-Fort Worth-Arlington, TX Metro Area
4292             Los Angeles-Long Beach-Anaheim, CA Metro Area
4293             Los Angeles-Long Beach-Anaheim, CA Metro Area
4294             Los Angeles-Long Beach-Anaheim, CA Metro Area
4295                      Phoenix-Mesa-Chandler, AZ Metro Area
4296             Los Angeles-Long Beach-Anaheim, CA Metro Area
4297               Austin-Round Rock-Georgetown, TX Metro Area
4298   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4299           Houston-The Woodlands-Sugar Land, TX Metro Area
4300  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4301                                    Jackson, MS Metro Area
4302              North Port-Sarasota-Bradenton, FL Metro Area
4303   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4304           Houston-The Woodlands-Sugar Land, TX Metro Area
4305                                    Bozeman, MT Micro Area
4306           Houston-The Woodlands-Sugar Land, TX Metro Area
4307         Crestview-Fort Walton Beach-Destin, FL Metro Area
4308   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4309                                   Richmond, VA Metro Area
4310                                 Wilmington, NC Metro Area
4311    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4312                               Raleigh-Cary, NC Metro Area
4313   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4314                                  Asheville, NC Metro Area
4315                           Dayton-Kettering, OH Metro Area
4316                                       Erie, PA Metro Area
4317                      Grand Rapids-Kentwood, MI Metro Area
4318                      Cape Coral-Fort Myers, FL Metro Area
4319                      Cape Coral-Fort Myers, FL Metro Area
4320                      Phoenix-Mesa-Chandler, AZ Metro Area
4321  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4322                                Punta Gorda, FL Metro Area
4323            Tampa-St. Petersburg-Clearwater, FL Metro Area
4324               Las Vegas-Henderson-Paradise, NV Metro Area
4325    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4326                 Boston-Cambridge-Newton, MA-NH Metro Area
4327                                 Huntsville, AL Metro Area
4328             Fayetteville-Springdale-Rogers, AR Metro Area
4329                          New Haven-Milford, CT Metro Area
4330                Burlington-South Burlington, VT Metro Area
4331                Dallas-Fort Worth-Arlington, TX Metro Area
4332                                       Reno, NV Metro Area
4333                             Urban Honolulu, HI Metro Area
4334          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4335                        Buffalo-Cheektowaga, NY Metro Area
4336                    Detroit-Warren-Dearborn, MI Metro Area
4337                Dallas-Fort Worth-Arlington, TX Metro Area
4338   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4339                Dallas-Fort Worth-Arlington, TX Metro Area
4340             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4341                Dallas-Fort Worth-Arlington, TX Metro Area
4342                        Buffalo-Cheektowaga, NY Metro Area
4343              Charlotte-Concord-Gastonia, NC-SC Metro Area
4344                Dallas-Fort Worth-Arlington, TX Metro Area
4345                                     Juneau, AK Micro Area
4346                                   Richmond, VA Metro Area
4347           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4348                             Salt Lake City, UT Metro Area
4349                             Salt Lake City, UT Metro Area
4350           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4351                          Trenton-Princeton, NJ Metro Area
4352                        Harrisburg-Carlisle, PA Metro Area
4353                                  Knoxville, TN Metro Area
4354                                      Akron, OH Metro Area
4355   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4356                               Cedar Rapids, IA Metro Area
4357                       Lansing-East Lansing, MI Metro Area
4358   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4359            Tampa-St. Petersburg-Clearwater, FL Metro Area
4360                          Aguadilla-Isabela, PR Metro Area
4361                                   Columbus, OH Metro Area
4362        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4363            Tampa-St. Petersburg-Clearwater, FL Metro Area
4364                 Boston-Cambridge-Newton, MA-NH Metro Area
4365                                      Akron, OH Metro Area
4366                                   Columbus, OH Metro Area
4367   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4368                      Greensboro-High Point, NC Metro Area
4369                      Greensboro-High Point, NC Metro Area
4370                                Spartanburg, SC Metro Area
4371              Palm Bay-Melbourne-Titusville, FL Metro Area
4372    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4373                      Providence-Warwick, RI-MA Metro Area
4374                                  Rochester, NY Metro Area
4375                                   Syracuse, NY Metro Area
4376    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4377                      Providence-Warwick, RI-MA Metro Area
4378           Houston-The Woodlands-Sugar Land, TX Metro Area
4379        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4380                              Memphis, TN-MS-AR Metro Area
4381                 Pensacola-Ferry Pass-Brent, FL Metro Area
4382             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4383                                   Brainerd, MN Micro Area
4384                                   Bismarck, ND Metro Area
4385                                 Rapid City, SD Metro Area
4386                     Denver-Aurora-Lakewood, CO Metro Area
4387             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4388             Los Angeles-Long Beach-Anaheim, CA Metro Area
4389        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4390                                 Jackson, WY-ID Micro Area
4391            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4392                    Portland-South Portland, ME Metro Area
4393             San Francisco-Oakland-Berkeley, CA Metro Area
4394   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4395           Houston-The Woodlands-Sugar Land, TX Metro Area
4396                Dallas-Fort Worth-Arlington, TX Metro Area
4397                Dallas-Fort Worth-Arlington, TX Metro Area
4398                  Baltimore-Columbia-Towson, MD Metro Area
4399                             Kansas City, MO-KS Metro Area
4400               Austin-Round Rock-Georgetown, TX Metro Area
4401           Houston-The Woodlands-Sugar Land, TX Metro Area
4402                      Phoenix-Mesa-Chandler, AZ Metro Area
4403    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4404                Charleston-North Charleston, SC Metro Area
4405                                   Columbus, OH Metro Area
4406                                  Rochester, NY Metro Area
4407                      Greensboro-High Point, NC Metro Area
4408   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4409                                 Wilmington, NC Metro Area
4410                          Manchester-Nashua, NH Metro Area
4411             Louisville/Jefferson County, KY-IN Metro Area
4412                                   Syracuse, NY Metro Area
4413                                   Appleton, WI Metro Area
4414                 Pensacola-Ferry Pass-Brent, FL Metro Area
4415                Dallas-Fort Worth-Arlington, TX Metro Area
4416                Dallas-Fort Worth-Arlington, TX Metro Area
4417                      Phoenix-Mesa-Chandler, AZ Metro Area
4418                Dallas-Fort Worth-Arlington, TX Metro Area
4419              Charlotte-Concord-Gastonia, NC-SC Metro Area
4420                                       Reno, NV Metro Area
4421           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4422                             Salt Lake City, UT Metro Area
4423                Burlington-South Burlington, VT Metro Area
4424                     Denver-Aurora-Lakewood, CO Metro Area
4425     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4426               Las Vegas-Henderson-Paradise, NV Metro Area
4427                      Cape Coral-Fort Myers, FL Metro Area
4428        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4429  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4430                                 Pittsburgh, PA Metro Area
4431          Hartford-East Hartford-Middletown, CT Metro Area
4432                                      Flint, MI Metro Area
4433                                 Huntsville, AL Metro Area
4434    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4435   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4436                      Phoenix-Mesa-Chandler, AZ Metro Area
4437             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4438             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4439                    Seattle-Tacoma-Bellevue, WA Metro Area
4440                San Luis Obispo-Paso Robles, CA Metro Area
4441                    Seattle-Tacoma-Bellevue, WA Metro Area
4442             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4443             San Francisco-Oakland-Berkeley, CA Metro Area
4444                     Denver-Aurora-Lakewood, CO Metro Area
4445                     Denver-Aurora-Lakewood, CO Metro Area
4446           Houston-The Woodlands-Sugar Land, TX Metro Area
4447           Houston-The Woodlands-Sugar Land, TX Metro Area
4448                             Corpus Christi, TX Metro Area
4449                             Kansas City, MO-KS Metro Area
4450                  San Antonio-New Braunfels, TX Metro Area
4451                    Kahului-Wailuku-Lahaina, HI Metro Area
4452 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4453             San Francisco-Oakland-Berkeley, CA Metro Area
4454                                    Bozeman, MT Micro Area
4455 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4456                                       Reno, NV Metro Area
4457                              Memphis, TN-MS-AR Metro Area
4458   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4459   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4460                      Providence-Warwick, RI-MA Metro Area
4461             Los Angeles-Long Beach-Anaheim, CA Metro Area
4462               Las Vegas-Henderson-Paradise, NV Metro Area
4463                              Eureka-Arcata, CA Micro Area
4464                         Eugene-Springfield, OR Metro Area
4465                                    Medford, OR Metro Area
4466                         Kennewick-Richland, WA Metro Area
4467                                       Bend, OR Metro Area
4468                        Santa Rosa-Petaluma, CA Metro Area
4469                          New Haven-Milford, CT Metro Area
4470             Los Angeles-Long Beach-Anaheim, CA Metro Area
4471                  Orlando-Kissimmee-Sanford, FL Metro Area
4472                      Cape Coral-Fort Myers, FL Metro Area
4473             Los Angeles-Long Beach-Anaheim, CA Metro Area
4474             Los Angeles-Long Beach-Anaheim, CA Metro Area
4475                          New Haven-Milford, CT Metro Area
4476             Los Angeles-Long Beach-Anaheim, CA Metro Area
4477            Tampa-St. Petersburg-Clearwater, FL Metro Area
4478                                       Bend, OR Metro Area
4479             Los Angeles-Long Beach-Anaheim, CA Metro Area
4480          Hartford-East Hartford-Middletown, CT Metro Area
4481                                       Hilo, HI Micro Area
4482                                Sioux Falls, SD Metro Area
4483                                      Kapaa, HI Micro Area
4484             San Diego-Chula Vista-Carlsbad, CA Metro Area
4485           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4486             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4487                           Glenwood Springs, CO Micro Area
4488                                       Reno, NV Metro Area
4489           Houston-The Woodlands-Sugar Land, TX Metro Area
4490                                   Montrose, CO Micro Area
4491                                    Edwards, CO Micro Area
4492                          Steamboat Springs, CO Micro Area
4493                    Seattle-Tacoma-Bellevue, WA Metro Area
4494                                     Tucson, AZ Metro Area
4495          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4496                    Shreveport-Bossier City, LA Metro Area
4497         Crestview-Fort Walton Beach-Destin, FL Metro Area
4498                              Memphis, TN-MS-AR Metro Area
4499                                 Fort Wayne, IN Metro Area
4500                                    Edwards, CO Micro Area
4501                Sacramento-Roseville-Folsom, CA Metro Area
4502                     Denver-Aurora-Lakewood, CO Metro Area
4503                     Denver-Aurora-Lakewood, CO Metro Area
4504             San Francisco-Oakland-Berkeley, CA Metro Area
4505             Louisville/Jefferson County, KY-IN Metro Area
4506                                   Appleton, WI Metro Area
4507                      Phoenix-Mesa-Chandler, AZ Metro Area
4508    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4509   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4510                                   Richmond, VA Metro Area
4511          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4512                 Boston-Cambridge-Newton, MA-NH Metro Area
4513                    Detroit-Warren-Dearborn, MI Metro Area
4514                  Orlando-Kissimmee-Sanford, FL Metro Area
4515                           Colorado Springs, CO Metro Area
4516                  Orlando-Kissimmee-Sanford, FL Metro Area
4517                               Jacksonville, FL Metro Area
4518                  Orlando-Kissimmee-Sanford, FL Metro Area
4519        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4520                             Kansas City, MO-KS Metro Area
4521        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4522                             Kansas City, MO-KS Metro Area
4523             Los Angeles-Long Beach-Anaheim, CA Metro Area
4524                    Seattle-Tacoma-Bellevue, WA Metro Area
4525                     Denver-Aurora-Lakewood, CO Metro Area
4526             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4527                              Oklahoma City, OK Metro Area
4528           Riverside-San Bernardino-Ontario, CA Metro Area
4529                                       Hilo, HI Micro Area
4530           Houston-The Woodlands-Sugar Land, TX Metro Area
4531                                    Jackson, MS Metro Area
4532             Los Angeles-Long Beach-Anaheim, CA Metro Area
4533              North Port-Sarasota-Bradenton, FL Metro Area
4534            Tampa-St. Petersburg-Clearwater, FL Metro Area
4535                             Kansas City, MO-KS Metro Area
4536             Los Angeles-Long Beach-Anaheim, CA Metro Area
4537                                   Richmond, VA Metro Area
4538                           Cleveland-Elyria, OH Metro Area
4539                      Phoenix-Mesa-Chandler, AZ Metro Area
4540              Charlotte-Concord-Gastonia, NC-SC Metro Area
4541                               Worcester, MA-CT Metro Area
4542                Dallas-Fort Worth-Arlington, TX Metro Area
4543            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4544                                                      <NA>
4545          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4546          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4547                                    Bozeman, MT Micro Area
4548          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4549                             Salt Lake City, UT Metro Area
4550                    Detroit-Warren-Dearborn, MI Metro Area
4551                    Detroit-Warren-Dearborn, MI Metro Area
4552          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4553                      Brownsville-Harlingen, TX Metro Area
4554                Dallas-Fort Worth-Arlington, TX Metro Area
4555  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4556                                      Akron, OH Metro Area
4557                             Chattanooga, TN-GA Metro Area
4558                                 Wilmington, NC Metro Area
4559                           Colorado Springs, CO Metro Area
4560                                 Boise City, ID Metro Area
4561                     Denver-Aurora-Lakewood, CO Metro Area
4562                     Denver-Aurora-Lakewood, CO Metro Area
4563                     Denver-Aurora-Lakewood, CO Metro Area
4564                  San Antonio-New Braunfels, TX Metro Area
4565                  Baltimore-Columbia-Towson, MD Metro Area
4566             Louisville/Jefferson County, KY-IN Metro Area
4567                Charleston-North Charleston, SC Metro Area
4568                             Kansas City, MO-KS Metro Area
4569                         Milwaukee-Waukesha, WI Metro Area
4570               Austin-Round Rock-Georgetown, TX Metro Area
4571                 Des Moines-West Des Moines, IA Metro Area
4572             San Francisco-Oakland-Berkeley, CA Metro Area
4573             Los Angeles-Long Beach-Anaheim, CA Metro Area
4574           Houston-The Woodlands-Sugar Land, TX Metro Area
4575                    Portland-South Portland, ME Metro Area
4576               Austin-Round Rock-Georgetown, TX Metro Area
4577                                Albuquerque, NM Metro Area
4578             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4579               Austin-Round Rock-Georgetown, TX Metro Area
4580                                   Savannah, GA Metro Area
4581                              Oklahoma City, OK Metro Area
4582                  San Antonio-New Braunfels, TX Metro Area
4583                         Milwaukee-Waukesha, WI Metro Area
4584                      Phoenix-Mesa-Chandler, AZ Metro Area
4585                      Cape Coral-Fort Myers, FL Metro Area
4586                                  Duluth, MN-WI Metro Area
4587                                    Madison, WI Metro Area
4588            Tampa-St. Petersburg-Clearwater, FL Metro Area
4589        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4590             Los Angeles-Long Beach-Anaheim, CA Metro Area
4591                       New Orleans-Metairie, LA Metro Area
4592             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4593                                    Bozeman, MT Micro Area
4594                    San Juan-Bayamón-Caguas, PR Metro Area
4595                                   Richmond, VA Metro Area
4596           Riverside-San Bernardino-Ontario, CA Metro Area
4597                      Phoenix-Mesa-Chandler, AZ Metro Area
4598                      Phoenix-Mesa-Chandler, AZ Metro Area
4599             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4600                    Seattle-Tacoma-Bellevue, WA Metro Area
4601                    Detroit-Warren-Dearborn, MI Metro Area
4602           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4603                                Bloomington, IL Metro Area
4604                          Trenton-Princeton, NJ Metro Area
4605                    Atlantic City-Hammonton, NJ Metro Area
4606                                                      <NA>
4607                           Cleveland-Elyria, OH Metro Area
4608    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4609                          Manchester-Nashua, NH Metro Area
4610                     Denver-Aurora-Lakewood, CO Metro Area
4611                 Des Moines-West Des Moines, IA Metro Area
4612             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4613                     Denver-Aurora-Lakewood, CO Metro Area
4614                     Denver-Aurora-Lakewood, CO Metro Area
4615                     Denver-Aurora-Lakewood, CO Metro Area
4616             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4617   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4618                     Denver-Aurora-Lakewood, CO Metro Area
4619   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4620                     Denver-Aurora-Lakewood, CO Metro Area
4621                     Denver-Aurora-Lakewood, CO Metro Area
4622                     Denver-Aurora-Lakewood, CO Metro Area
4623             Los Angeles-Long Beach-Anaheim, CA Metro Area
4624             San Francisco-Oakland-Berkeley, CA Metro Area
4625                  Baltimore-Columbia-Towson, MD Metro Area
4626                              Oklahoma City, OK Metro Area
4627           Houston-The Woodlands-Sugar Land, TX Metro Area
4628                         Milwaukee-Waukesha, WI Metro Area
4629                        Buffalo-Cheektowaga, NY Metro Area
4630                    Omaha-Council Bluffs, NE-IA Metro Area
4631                           Cincinnati, OH-KY-IN Metro Area
4632                Dallas-Fort Worth-Arlington, TX Metro Area
4633                                    Lubbock, TX Metro Area
4634                                    Midland, TX Metro Area
4635                                    Wichita, KS Metro Area
4636                 Pensacola-Ferry Pass-Brent, FL Metro Area
4637             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4638                    Albany-Schenectady-Troy, NY Metro Area
4639                              Memphis, TN-MS-AR Metro Area
4640                Dallas-Fort Worth-Arlington, TX Metro Area
4641       Little Rock-North Little Rock-Conway, AR Metro Area
4642                      Grand Rapids-Kentwood, MI Metro Area
4643                             Kansas City, MO-KS Metro Area
4644             San Diego-Chula Vista-Carlsbad, CA Metro Area
4645            Tampa-St. Petersburg-Clearwater, FL Metro Area
4646                             Kansas City, MO-KS Metro Area
4647                         Milwaukee-Waukesha, WI Metro Area
4648   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4649             Los Angeles-Long Beach-Anaheim, CA Metro Area
4650   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4651             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4652     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4653        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4654            Tampa-St. Petersburg-Clearwater, FL Metro Area
4655                                   Key West, FL Micro Area
4656                          Steamboat Springs, CO Micro Area
4657                    Seattle-Tacoma-Bellevue, WA Metro Area
4658                                   Montrose, CO Micro Area
4659                                      Tulsa, OK Metro Area
4660             Los Angeles-Long Beach-Anaheim, CA Metro Area
4661             Los Angeles-Long Beach-Anaheim, CA Metro Area
4662                             Urban Honolulu, HI Metro Area
4663                                                      <NA>
4664          Hartford-East Hartford-Middletown, CT Metro Area
4665                                 Pittsburgh, PA Metro Area
4666           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4667                    Detroit-Warren-Dearborn, MI Metro Area
4668           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4669           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4670                                    Salinas, CA Metro Area
4671                                Great Falls, MT Metro Area
4672               Indianapolis-Carmel-Anderson, IN Metro Area
4673                              State College, PA Metro Area
4674                                    Lincoln, NE Metro Area
4675                 Augusta-Richmond County, GA-SC Metro Area
4676                       Kingsport-Bristol, TN-VA Metro Area
4677                        Harrisburg-Carlisle, PA Metro Area
4678                    Albany-Schenectady-Troy, NY Metro Area
4679                     Spokane-Spokane Valley, WA Metro Area
4680          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4681                                    Madison, WI Metro Area
4682                               Grand Island, NE Metro Area
4683                                Springfield, MO Metro Area
4684                                   Columbia, SC Metro Area
4685            Davenport-Moline-Rock Island, IA-IL Metro Area
4686                           Glenwood Springs, CO Micro Area
4687                          Steamboat Springs, CO Micro Area
4688          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4689            Davenport-Moline-Rock Island, IA-IL Metro Area
4690                          Manchester-Nashua, NH Metro Area
4691             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4692                                  Asheville, NC Metro Area
4693                                  Anchorage, AK Metro Area
4694                    Seattle-Tacoma-Bellevue, WA Metro Area
4695                                                      <NA>
4696            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4697             Los Angeles-Long Beach-Anaheim, CA Metro Area
4698                 Boston-Cambridge-Newton, MA-NH Metro Area
4699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4700                             Salt Lake City, UT Metro Area
4701                             Salt Lake City, UT Metro Area
4702                               Jacksonville, FL Metro Area
4703                                 Pittsburgh, PA Metro Area
4704          Hartford-East Hartford-Middletown, CT Metro Area
4705                                Baton Rouge, LA Metro Area
4706                                     Ithaca, NY Metro Area
4707          Hartford-East Hartford-Middletown, CT Metro Area
4708                                Panama City, FL Metro Area
4709                                    Salinas, CA Metro Area
4710                    Omaha-Council Bluffs, NE-IA Metro Area
4711                                   Santa Fe, NM Metro Area
4712                     Denver-Aurora-Lakewood, CO Metro Area
4713             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4714             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4715                     Denver-Aurora-Lakewood, CO Metro Area
4716                     Denver-Aurora-Lakewood, CO Metro Area
4717            Tampa-St. Petersburg-Clearwater, FL Metro Area
4718           Houston-The Woodlands-Sugar Land, TX Metro Area
4719             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4720                                   Columbus, OH Metro Area
4721                           Colorado Springs, CO Metro Area
4722 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4723                    Omaha-Council Bluffs, NE-IA Metro Area
4724                                  Rochester, NY Metro Area
4725           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4726                  Orlando-Kissimmee-Sanford, FL Metro Area
4727            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4728                    Albany-Schenectady-Troy, NY Metro Area
4729                                  Rochester, NY Metro Area
4730             Louisville/Jefferson County, KY-IN Metro Area
4731   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4732   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4733                                   Richmond, VA Metro Area
4734                                   Amarillo, TX Metro Area
4735                      Brownsville-Harlingen, TX Metro Area
4736                      Brownsville-Harlingen, TX Metro Area
4737                  Orlando-Kissimmee-Sanford, FL Metro Area
4738                                   Key West, FL Micro Area
4739                                  Brunswick, GA Metro Area
4740                              State College, PA Metro Area
4741             Fayetteville-Springdale-Rogers, AR Metro Area
4742          Hartford-East Hartford-Middletown, CT Metro Area
4743                                                      <NA>
4744            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4745                                  Anchorage, AK Metro Area
4746                                  Ketchikan, AK Micro Area
4747                 Boston-Cambridge-Newton, MA-NH Metro Area
4748                                      Ponce, PR Metro Area
4749               Austin-Round Rock-Georgetown, TX Metro Area
4750        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4751                          Manchester-Nashua, NH Metro Area
4752                          Birmingham-Hoover, AL Metro Area
4753              Charlotte-Concord-Gastonia, NC-SC Metro Area
4754                     Denver-Aurora-Lakewood, CO Metro Area
4755                                Bakersfield, CA Metro Area
4756                                 Rapid City, SD Metro Area
4757                                  Flagstaff, AZ Metro Area
4758                                    Madison, WI Metro Area
4759             Louisville/Jefferson County, KY-IN Metro Area
4760                                   Amarillo, TX Metro Area
4761        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4762                                    Lincoln, NE Metro Area
4763                                                      <NA>
4764                     Denver-Aurora-Lakewood, CO Metro Area
4765                                Idaho Falls, ID Metro Area
4766        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4767                         Kennewick-Richland, WA Metro Area
4768             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4769   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4770                     Denver-Aurora-Lakewood, CO Metro Area
4771                  Orlando-Kissimmee-Sanford, FL Metro Area
4772              North Port-Sarasota-Bradenton, FL Metro Area
4773                                     Tucson, AZ Metro Area
4774                Sacramento-Roseville-Folsom, CA Metro Area
4775                    Kahului-Wailuku-Lahaina, HI Metro Area
4776                                 Pittsburgh, PA Metro Area
4777                Sacramento-Roseville-Folsom, CA Metro Area
4778                  Baltimore-Columbia-Towson, MD Metro Area
4779         Crestview-Fort Walton Beach-Destin, FL Metro Area
4780                  Orlando-Kissimmee-Sanford, FL Metro Area
4781                          Birmingham-Hoover, AL Metro Area
4782                                   Montrose, CO Micro Area
4783          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4784                 Pensacola-Ferry Pass-Brent, FL Metro Area
4785                                    Lincoln, NE Metro Area
4786                            Gulfport-Biloxi, MS Metro Area
4787                                     Laredo, TX Metro Area
4788            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4789          Hartford-East Hartford-Middletown, CT Metro Area
4790                                   Fargo, ND-MN Metro Area
4791                        Buffalo-Cheektowaga, NY Metro Area
4792                                                      <NA>
4793                      Cape Coral-Fort Myers, FL Metro Area
4794                        Harrisburg-Carlisle, PA Metro Area
4795             Fayetteville-Springdale-Rogers, AR Metro Area
4796                San Luis Obispo-Paso Robles, CA Metro Area
4797   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4798                                 Boise City, ID Metro Area
4799            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4800                                   Fargo, ND-MN Metro Area
4801                                 St. George, UT Metro Area
4802             Los Angeles-Long Beach-Anaheim, CA Metro Area
4803                                     Tucson, AZ Metro Area
4804                    Seattle-Tacoma-Bellevue, WA Metro Area
4805          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4806                                 Pittsburgh, PA Metro Area
4807                     Denver-Aurora-Lakewood, CO Metro Area
4808                              Oklahoma City, OK Metro Area
4809                                 Pittsburgh, PA Metro Area
4810 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4811             San Diego-Chula Vista-Carlsbad, CA Metro Area
4812                             Chattanooga, TN-GA Metro Area
4813                              Evansville, IN-KY Metro Area
4814                            Charlottesville, VA Metro Area
4815            Davenport-Moline-Rock Island, IA-IL Metro Area
4816                    Shreveport-Bossier City, LA Metro Area
4817                          Birmingham-Hoover, AL Metro Area
4818                          Lexington-Fayette, KY Metro Area
4819                                  Knoxville, TN Metro Area
4820                 Boston-Cambridge-Newton, MA-NH Metro Area
4821                               Cedar Rapids, IA Metro Area
4822        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4823    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4824                      Phoenix-Mesa-Chandler, AZ Metro Area
4825                      Phoenix-Mesa-Chandler, AZ Metro Area
4826        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4827              Charlotte-Concord-Gastonia, NC-SC Metro Area
4828                    Seattle-Tacoma-Bellevue, WA Metro Area
4829                                    Bozeman, MT Micro Area
4830             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4831             Los Angeles-Long Beach-Anaheim, CA Metro Area
4832                      Providence-Warwick, RI-MA Metro Area
4833                     Spokane-Spokane Valley, WA Metro Area
4834                     Spokane-Spokane Valley, WA Metro Area
4835                             Salt Lake City, UT Metro Area
4836                             Salt Lake City, UT Metro Area
4837       Little Rock-North Little Rock-Conway, AR Metro Area
4838                          Lexington-Fayette, KY Metro Area
4839                              Wausau-Weston, WI Metro Area
4840                     Scranton--Wilkes-Barre, PA Metro Area
4841   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4842             Los Angeles-Long Beach-Anaheim, CA Metro Area
4843                     Denver-Aurora-Lakewood, CO Metro Area
4844                                 Huntsville, AL Metro Area
4845                                 Pittsburgh, PA Metro Area
4846                                Sioux Falls, SD Metro Area
4847                             Grand Forks, ND-MN Metro Area
4848                                      Minot, ND Micro Area
4849                    South Bend-Mishawaka, IN-MI Metro Area
4850                                   Billings, MT Metro Area
4851                              Eureka-Arcata, CA Micro Area
4852                                     Fresno, CA Metro Area
4853                     Denver-Aurora-Lakewood, CO Metro Area
4854                     Spokane-Spokane Valley, WA Metro Area
4855          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4856               Las Vegas-Henderson-Paradise, NV Metro Area
4857             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4858             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4859                Dallas-Fort Worth-Arlington, TX Metro Area
4860               Austin-Round Rock-Georgetown, TX Metro Area
4861                Dallas-Fort Worth-Arlington, TX Metro Area
4862                                      Kapaa, HI Micro Area
4863                    Omaha-Council Bluffs, NE-IA Metro Area
4864 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4865                     Denver-Aurora-Lakewood, CO Metro Area
4866           Houston-The Woodlands-Sugar Land, TX Metro Area
4867           Houston-The Woodlands-Sugar Land, TX Metro Area
4868   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4869           Houston-The Woodlands-Sugar Land, TX Metro Area
4870             San Francisco-Oakland-Berkeley, CA Metro Area
4871                                Gainesville, FL Metro Area
4872                          Lexington-Fayette, KY Metro Area
4873                                 Charleston, WV Metro Area
4874                                       Erie, PA Metro Area
4875        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4876                        Harrisburg-Carlisle, PA Metro Area
4877     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4878    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4879                Burlington-South Burlington, VT Metro Area
4880                                 Fort Wayne, IN Metro Area
4881                          Lexington-Fayette, KY Metro Area
4882                                Baton Rouge, LA Metro Area
4883                                 Alexandria, LA Metro Area
4884                                     Monroe, LA Metro Area
4885                    Detroit-Warren-Dearborn, MI Metro Area
4886              Allentown-Bethlehem-Easton, PA-NJ Metro Area
4887                             Chattanooga, TN-GA Metro Area
4888                               Cedar Rapids, IA Metro Area
4889                      Greensboro-High Point, NC Metro Area
4890                                     Ithaca, NY Metro Area
4891                              Traverse City, MI Micro Area
4892                                  Green Bay, WI Metro Area
4893                                  Knoxville, TN Metro Area
4894        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4895             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4896    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4897                Dallas-Fort Worth-Arlington, TX Metro Area
4898             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4899                                                      <NA>
4900                                                      <NA>
4901                             Vineyard Haven, MA Micro Area
4902                             Vineyard Haven, MA Micro Area
4903                                                      <NA>
4904                                   Syracuse, NY Metro Area
4905                               Fayetteville, NC Metro Area
4906                                Sioux Falls, SD Metro Area
4907                                  Green Bay, WI Metro Area
4908                                 Jackson, WY-ID Micro Area
4909                    Detroit-Warren-Dearborn, MI Metro Area
4910                    Detroit-Warren-Dearborn, MI Metro Area
4911        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4912                    Detroit-Warren-Dearborn, MI Metro Area
4913                                                      <NA>
4914                Dallas-Fort Worth-Arlington, TX Metro Area
4915                       Beaumont-Port Arthur, TX Metro Area
4916                                 Fort Wayne, IN Metro Area
4917                                  Manhattan, KS Metro Area
4918                                                      <NA>
4919                                     Elmira, NY Metro Area
4920             Los Angeles-Long Beach-Anaheim, CA Metro Area
4921                           Colorado Springs, CO Metro Area
4922             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4923                              Eureka-Arcata, CA Micro Area
4924                                    Redding, CA Metro Area
4925             San Francisco-Oakland-Berkeley, CA Metro Area
4926                                  Marquette, MI Micro Area
4927                  Santa Maria-Santa Barbara, CA Metro Area
4928                San Luis Obispo-Paso Robles, CA Metro Area
4929                                Idaho Falls, ID Metro Area
4930                                  Anchorage, AK Metro Area
4931           Houston-The Woodlands-Sugar Land, TX Metro Area
4932             San Francisco-Oakland-Berkeley, CA Metro Area
4933    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4934             Los Angeles-Long Beach-Anaheim, CA Metro Area
4935           Houston-The Woodlands-Sugar Land, TX Metro Area
4936             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4937                Sacramento-Roseville-Folsom, CA Metro Area
4938           Riverside-San Bernardino-Ontario, CA Metro Area
4939             Los Angeles-Long Beach-Anaheim, CA Metro Area
4940                    San Juan-Bayamón-Caguas, PR Metro Area
4941                             Kansas City, MO-KS Metro Area
4942             Los Angeles-Long Beach-Anaheim, CA Metro Area
4943           Riverside-San Bernardino-Ontario, CA Metro Area
4944                                       Reno, NV Metro Area
4945 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4946 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4947                  Baltimore-Columbia-Towson, MD Metro Area
4948          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4949   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4950                                   Columbia, SC Metro Area
4951        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4952                                                      <NA>
4953             Los Angeles-Long Beach-Anaheim, CA Metro Area
4954               Las Vegas-Henderson-Paradise, NV Metro Area
4955                             Vineyard Haven, MA Micro Area
4956                      Cape Coral-Fort Myers, FL Metro Area
4957                Sacramento-Roseville-Folsom, CA Metro Area
4958           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4959                         Kennewick-Richland, WA Metro Area
4960                         Milwaukee-Waukesha, WI Metro Area
4961                           Cleveland-Elyria, OH Metro Area
4962             Los Angeles-Long Beach-Anaheim, CA Metro Area
4963                                    Lubbock, TX Metro Area
4964                                  Ketchikan, AK Micro Area
4965                                  Anchorage, AK Metro Area
4966                                  Ketchikan, AK Micro Area
4967                    Portland-South Portland, ME Metro Area
4968            Tampa-St. Petersburg-Clearwater, FL Metro Area
4969                          Manchester-Nashua, NH Metro Area
4970                      Greensboro-High Point, NC Metro Area
4971                                      Hobbs, NM Micro Area
4972                                    Wichita, KS Metro Area
4973             San Diego-Chula Vista-Carlsbad, CA Metro Area
4974                Dallas-Fort Worth-Arlington, TX Metro Area
4975                                   Montrose, CO Micro Area
4976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4977        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4978                                       Erie, PA Metro Area
4979                    Seattle-Tacoma-Bellevue, WA Metro Area
4980                    Kahului-Wailuku-Lahaina, HI Metro Area
4981                Dallas-Fort Worth-Arlington, TX Metro Area
4982                                       Reno, NV Metro Area
4983               Austin-Round Rock-Georgetown, TX Metro Area
4984             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4985                                Spartanburg, SC Metro Area
4986                                    El Paso, TX Metro Area
4987             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4988                                   Fargo, ND-MN Metro Area
4989                                 Alexandria, LA Metro Area
4990                    South Bend-Mishawaka, IN-MI Metro Area
4991              Charlotte-Concord-Gastonia, NC-SC Metro Area
4992                                      Hobbs, NM Micro Area
4993                           Butte-Silver Bow, MT Micro Area
4994                                  Anchorage, AK Metro Area
4995                    Seattle-Tacoma-Bellevue, WA Metro Area
4996                                   Montrose, CO Micro Area
4997                    Omaha-Council Bluffs, NE-IA Metro Area
4998        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4999         Crestview-Fort Walton Beach-Destin, FL Metro Area
     total_populationE.x total_populationM.x age_distributionE.x
1               19908595                  NA             9713298
2                6123949                  NA             3001027
3                1613587                  NA              790463
4               13111917                  NA             6515114
5               13111917                  NA             6515114
6               13111917                  NA             6515114
7               19908595                  NA             9713298
8               19908595                  NA             9713298
9                2679298                  NA             1318555
10               6123949                  NA             3001027
11               1264357                  NA              612537
12                772902                  NA              380685
13               4001701                  NA             2024424
14               4001701                  NA             2024424
15               4001701                  NA             2024424
16               1254675                  NA              635422
17               3194310                  NA             1562880
18               6094752                  NA             2965233
19               6094752                  NA             2965233
20               6094752                  NA             2965233
21               6094752                  NA             2965233
22               6094752                  NA             2965233
23               6094752                  NA             2965233
24               6094752                  NA             2965233
25               6094752                  NA             2965233
26               6094752                  NA             2965233
27               6094752                  NA             2965233
28               6094752                  NA             2965233
29               6094752                  NA             2965233
30               6094752                  NA             2965233
31               6094752                  NA             2965233
32               6094752                  NA             2965233
33               6094752                  NA             2965233
34               4375604                  NA             2148947
35               4375604                  NA             2148947
36               3678328                  NA             1837913
37               3678328                  NA             1837913
38               3678328                  NA             1837913
39               3678328                  NA             1837913
40               1254675                  NA              635422
41               1254675                  NA              635422
42               1254675                  NA              635422
43               6094752                  NA             2965233
44               6094752                  NA             2965233
45               3678328                  NA             1837913
46               3678328                  NA             1837913
47               6094752                  NA             2965233
48               6094752                  NA             2965233
49               6094752                  NA             2965233
50               6094752                  NA             2965233
51               6094752                  NA             2965233
52               6094752                  NA             2965233
53               6094752                  NA             2965233
54              19908595                  NA             9713298
55              13111917                  NA             6515114
56              19908595                  NA             9713298
57               3678328                  NA             1837913
58               1254675                  NA              635422
59               1254675                  NA              635422
60               3678328                  NA             1837913
61               3678328                  NA             1837913
62               3678328                  NA             1837913
63               3678328                  NA             1837913
64               1254675                  NA              635422
65               1254675                  NA              635422
66               1254675                  NA              635422
67               1254675                  NA              635422
68               1254675                  NA              635422
69               1254675                  NA              635422
70               1254675                  NA              635422
71               1254675                  NA              635422
72               1254675                  NA              635422
73               6094752                  NA             2965233
74               6094752                  NA             2965233
75               6094752                  NA             2965233
76               4375604                  NA             2148947
77               6094752                  NA             2965233
78               6094752                  NA             2965233
79               6094752                  NA             2965233
80               6094752                  NA             2965233
81               6094752                  NA             2965233
82               6094752                  NA             2965233
83               6094752                  NA             2965233
84               6094752                  NA             2965233
85               6094752                  NA             2965233
86               6094752                  NA             2965233
87               6094752                  NA             2965233
88              13111917                  NA             6515114
89              13111917                  NA             6515114
90              13111917                  NA             6515114
91              13111917                  NA             6515114
92              13111917                  NA             6515114
93               3678328                  NA             1837913
94               3678328                  NA             1837913
95               4001701                  NA             2024424
96               1254675                  NA              635422
97               6094752                  NA             2965233
98               6094752                  NA             2965233
99               6094752                  NA             2965233
100              6094752                  NA             2965233
101              6094752                  NA             2965233
102              6094752                  NA             2965233
103              6094752                  NA             2965233
104              4375604                  NA             2148947
105             13111917                  NA             6515114
106             13111917                  NA             6515114
107              3678328                  NA             1837913
108              1254675                  NA              635422
109              6094752                  NA             2965233
110              6094752                  NA             2965233
111              6094752                  NA             2965233
112              6094752                  NA             2965233
113              6094752                  NA             2965233
114              6094752                  NA             2965233
115              6094752                  NA             2965233
116              4375604                  NA             2148947
117              4375604                  NA             2148947
118              2265926                  NA             1137581
119             13111917                  NA             6515114
120             13111917                  NA             6515114
121              2679298                  NA             1318555
122              2679298                  NA             1318555
123              6123949                  NA             3001027
124              6123949                  NA             3001027
125               772902                  NA              380685
126              4001701                  NA             2024424
127              4001701                  NA             2024424
128              4001701                  NA             2024424
129              4001701                  NA             2024424
130              1254675                  NA              635422
131              1254675                  NA              635422
132              1254675                  NA              635422
133              1254675                  NA              635422
134              3194310                  NA             1562880
135              3289701                  NA             1667851
136             13111917                  NA             6515114
137              4001701                  NA             2024424
138              6094752                  NA             2965233
139              4375604                  NA             2148947
140              4375604                  NA             2148947
141              4375604                  NA             2148947
142              4375604                  NA             2148947
143             19908595                  NA             9713298
144             19908595                  NA             9713298
145              3678328                  NA             1837913
146              3678328                  NA             1837913
147              1420825                  NA              698689
148              1254675                  NA              635422
149              1254675                  NA              635422
150              6094752                  NA             2965233
151              6094752                  NA             2965233
152              6094752                  NA             2965233
153              1990873                  NA              978574
154              2253528                  NA             1113732
155              2253528                  NA             1113732
156              7673379                  NA             3806912
157              4375604                  NA             2148947
158              4375604                  NA             2148947
159              4375604                  NA             2148947
160              4375604                  NA             2148947
161              1010100                  NA              512085
162             19908595                  NA             9713298
163             19908595                  NA             9713298
164              1420825                  NA              698689
165              2570862                  NA             1280273
166              4001701                  NA             2024424
167              1254675                  NA              635422
168              1254675                  NA              635422
169              1254675                  NA              635422
170              1254675                  NA              635422
171              6094752                  NA             2965233
172              4375604                  NA             2148947
173              4375604                  NA             2148947
174              4375604                  NA             2148947
175              4375604                  NA             2148947
176              4375604                  NA             2148947
177              6123949                  NA             3001027
178              3678328                  NA             1837913
179              3678328                  NA             1837913
180              3678328                  NA             1837913
181              3678328                  NA             1837913
182              3678328                  NA             1837913
183              9566955                  NA             4718471
184               844461                  NA              407362
185              3194310                  NA             1562880
186             13111917                  NA             6515114
187              6094752                  NA             2965233
188              6094752                  NA             2965233
189              3678328                  NA             1837913
190              6094752                  NA             2965233
191              6094752                  NA             2965233
192              6094752                  NA             2965233
193              6094752                  NA             2965233
194              4375604                  NA             2148947
195              4375604                  NA             2148947
196             19908595                  NA             9713298
197             19908595                  NA             9713298
198              3678328                  NA             1837913
199              6094752                  NA             2965233
200              6094752                  NA             2965233
201              6094752                  NA             2965233
202              6094752                  NA             2965233
203              6094752                  NA             2965233
204              3678328                  NA             1837913
205              1254675                  NA              635422
206              6094752                  NA             2965233
207              6094752                  NA             2965233
208              6094752                  NA             2965233
209              3678328                  NA             1837913
210              6094752                  NA             2965233
211              6094752                  NA             2965233
212              6094752                  NA             2965233
213              6094752                  NA             2965233
214              2296377                  NA             1160944
215              1990873                  NA              978574
216              4912449                  NA             2407307
217              6346083                  NA             3128067
218              2959386                  NA             1493164
219              7673379                  NA             3806912
220              4375604                  NA             2148947
221              4375604                  NA             2148947
222              4375604                  NA             2148947
223             19908595                  NA             9713298
224              2265926                  NA             1137581
225             13111917                  NA             6515114
226             19908595                  NA             9713298
227             19908595                  NA             9713298
228              2679298                  NA             1318555
229              1264357                  NA              612537
230              9566955                  NA             4718471
231              2505312                  NA             1250855
232              6232894                  NA             3033772
233              1420825                  NA              698689
234               772902                  NA              380685
235              4001701                  NA             2024424
236              3194310                  NA             1562880
237              4375604                  NA             2148947
238              4375604                  NA             2148947
239              3678328                  NA             1837913
240              3678328                  NA             1837913
241              6094752                  NA             2965233
242              6094752                  NA             2965233
243              1254675                  NA              635422
244              1254675                  NA              635422
245              6094752                  NA             2965233
246              3678328                  NA             1837913
247              1254675                  NA              635422
248              6094752                  NA             2965233
249              4912449                  NA             2407307
250              4375604                  NA             2148947
251             19908595                  NA             9713298
252             19908595                  NA             9713298
253              3678328                  NA             1837913
254              3678328                  NA             1837913
255              4001701                  NA             2024424
256              6094752                  NA             2965233
257              6094752                  NA             2965233
258              3678328                  NA             1837913
259              4001701                  NA             2024424
260              1254675                  NA              635422
261              1254675                  NA              635422
262              1254675                  NA              635422
263              1254675                  NA              635422
264              6094752                  NA             2965233
265              6094752                  NA             2965233
266              4375604                  NA             2148947
267              3678328                  NA             1837913
268              6094752                  NA             2965233
269             19908595                  NA             9713298
270              3678328                  NA             1837913
271              6094752                  NA             2965233
272              6094752                  NA             2965233
273              6094752                  NA             2965233
274              4375604                  NA             2148947
275              6123949                  NA             3001027
276              2265926                  NA             1137581
277             13111917                  NA             6515114
278             13111917                  NA             6515114
279              2679298                  NA             1318555
280              4001701                  NA             2024424
281              6094752                  NA             2965233
282              6094752                  NA             2965233
283             19908595                  NA             9713298
284              4375604                  NA             2148947
285              4001701                  NA             2024424
286              1254675                  NA              635422
287              1254675                  NA              635422
288              6094752                  NA             2965233
289              6094752                  NA             2965233
290              4375604                  NA             2148947
291              4375604                  NA             2148947
292              2265926                  NA             1137581
293             13111917                  NA             6515114
294              3678328                  NA             1837913
295              4864209                  NA             2434382
296              3289701                  NA             1667851
297              1254675                  NA              635422
298             13111917                  NA             6515114
299              4001701                  NA             2024424
300              1254675                  NA              635422
301              1254675                  NA              635422
302              3678328                  NA             1837913
303              1254675                  NA              635422
304               771602                  NA              388362
305              7673379                  NA             3806912
306              4375604                  NA             2148947
307              4375604                  NA             2148947
308              4375604                  NA             2148947
309             19908595                  NA             9713298
310               585485                  NA              292820
311             19908595                  NA             9713298
312              2265926                  NA             1137581
313             13111917                  NA             6515114
314              3678328                  NA             1837913
315              4610050                  NA             2315218
316              3289701                  NA             1667851
317              4692242                  NA             2342253
318              1981584                  NA             1011796
319             13111917                  NA             6515114
320              3678328                  NA             1837913
321              1254675                  NA              635422
322              6094752                  NA             2965233
323              3678328                  NA             1837913
324              4001701                  NA             2024424
325              1254675                  NA              635422
326              6094752                  NA             2965233
327              3678328                  NA             1837913
328              6094752                  NA             2965233
329              6094752                  NA             2965233
330              6094752                  NA             2965233
331              4375604                  NA             2148947
332              4375604                  NA             2148947
333             19908595                  NA             9713298
334             19908595                  NA             9713298
335              3678328                  NA             1837913
336              2265926                  NA             1137581
337              4610050                  NA             2315218
338              2265926                  NA             1137581
339              2679298                  NA             1318555
340              2679298                  NA             1318555
341              2959386                  NA             1493164
342              2265926                  NA             1137581
343              6232894                  NA             3033772
344              1008280                  NA              506526
345              9566955                  NA             4718471
346              3194310                  NA             1562880
347              3194310                  NA             1562880
348               383732                  NA              189495
349              2959386                  NA             1493164
350              2265926                  NA             1137581
351              6232894                  NA             3033772
352              2265926                  NA             1137581
353              2265926                  NA             1137581
354              2679298                  NA             1318555
355              3194310                  NA             1562880
356              3289701                  NA             1667851
357              2073546                  NA              975289
358              2265926                  NA             1137581
359              2265926                  NA             1137581
360             19908595                  NA             9713298
361              6346083                  NA             3128067
362             19908595                  NA             9713298
363              9566955                  NA             4718471
364              6346083                  NA             3128067
365              9566955                  NA             4718471
366              9566955                  NA             4718471
367             19908595                  NA             9713298
368              2079759                  NA             1012336
369              2668688                  NA             1305000
370              6346083                  NA             3128067
371               775169                  NA              372915
372              2109957                  NA             1038760
373              1086859                  NA              532509
374              6346083                  NA             3128067
375             19908595                  NA             9713298
376              9566955                  NA             4718471
377               218515                  NA              108665
378              2109957                  NA             1038760
379              6346083                  NA             3128067
380              9566955                  NA             4718471
381              9566955                  NA             4718471
382              9566955                  NA             4718471
383             19908595                  NA             9713298
384             19908595                  NA             9713298
385              6346083                  NA             3128067
386              6346083                  NA             3128067
387             19908595                  NA             9713298
388             19908595                  NA             9713298
389             19908595                  NA             9713298
390              9566955                  NA             4718471
391              9566955                  NA             4718471
392             19908595                  NA             9713298
393             19908595                  NA             9713298
394              6346083                  NA             3128067
395              9566955                  NA             4718471
396              9566955                  NA             4718471
397              9566955                  NA             4718471
398              9566955                  NA             4718471
399              2668688                  NA             1305000
400              6123949                  NA             3001027
401              9566955                  NA             4718471
402              1990873                  NA              978574
403              2253528                  NA             1113732
404              1428923                  NA              708697
405              9566955                  NA             4718471
406              2296377                  NA             1160944
407              9566955                  NA             4718471
408              9566955                  NA             4718471
409              9566955                  NA             4718471
410              9566955                  NA             4718471
411              7673379                  NA             3806912
412              9566955                  NA             4718471
413              7673379                  NA             3806912
414              7673379                  NA             3806912
415              7673379                  NA             3806912
416              9566955                  NA             4718471
417              6346083                  NA             3128067
418              6346083                  NA             3128067
419              6123949                  NA             3001027
420              6123949                  NA             3001027
421              6123949                  NA             3001027
422              9566955                  NA             4718471
423              7673379                  NA             3806912
424              4375604                  NA             2148947
425              1335804                  NA              641128
426               216217                  NA              106627
427                47759                  NA               23950
428              7673379                  NA             3806912
429              9566955                  NA             4718471
430              7673379                  NA             3806912
431              9566955                  NA             4718471
432              9566955                  NA             4718471
433              7673379                  NA             3806912
434              9566955                  NA             4718471
435              7673379                  NA             3806912
436              7673379                  NA             3806912
437              7673379                  NA             3806912
438              7673379                  NA             3806912
439              7673379                  NA             3806912
440              2668688                  NA             1305000
441              6123949                  NA             3001027
442              9566955                  NA             4718471
443              9566955                  NA             4718471
444              9566955                  NA             4718471
445              7673379                  NA             3806912
446              7673379                  NA             3806912
447              7673379                  NA             3806912
448              7673379                  NA             3806912
449              7673379                  NA             3806912
450              2668688                  NA             1305000
451              9566955                  NA             4718471
452              7673379                  NA             3806912
453              9566955                  NA             4718471
454              2365501                  NA             1162773
455              7673379                  NA             3806912
456              9566955                  NA             4718471
457              7673379                  NA             3806912
458              9566955                  NA             4718471
459              9566955                  NA             4718471
460              7673379                  NA             3806912
461              9566955                  NA             4718471
462              2296377                  NA             1160944
463              2253528                  NA             1113732
464              1420825                  NA              698689
465              9566955                  NA             4718471
466              9566955                  NA             4718471
467              7673379                  NA             3806912
468              9566955                  NA             4718471
469              6123949                  NA             3001027
470              6123949                  NA             3001027
471              6123949                  NA             3001027
472              7673379                  NA             3806912
473              7673379                  NA             3806912
474              9566955                  NA             4718471
475              7673379                  NA             3806912
476              7673379                  NA             3806912
477              6123949                  NA             3001027
478              9566955                  NA             4718471
479              7673379                  NA             3806912
480              7673379                  NA             3806912
481              7673379                  NA             3806912
482              6123949                  NA             3001027
483               496299                  NA              240510
484               772902                  NA              380685
485             19908595                  NA             9713298
486              6123949                  NA             3001027
487              7142603                  NA             3563435
488              2265926                  NA             1137581
489              1264357                  NA              612537
490             13111917                  NA             6515114
491              3194310                  NA             1562880
492              6123949                  NA             3001027
493              2265926                  NA             1137581
494             13111917                  NA             6515114
495             19908595                  NA             9713298
496              2840005                  NA             1374325
497              6123949                  NA             3001027
498              2265926                  NA             1137581
499              2073546                  NA              975289
500              3194310                  NA             1562880
501              2265926                  NA             1137581
502              6123949                  NA             3001027
503              6123949                  NA             3001027
504              2265926                  NA             1137581
505              1264357                  NA              612537
506              3194310                  NA             1562880
507              4912449                  NA             2407307
508              2265926                  NA             1137581
509              2265926                  NA             1137581
510               772902                  NA              380685
511              3194310                  NA             1562880
512              2679298                  NA             1318555
513              2679298                  NA             1318555
514              2679298                  NA             1318555
515              7142603                  NA             3563435
516              6123949                  NA             3001027
517              2265926                  NA             1137581
518              1264357                  NA              612537
519              9566955                  NA             4718471
520              3194310                  NA             1562880
521              2265926                  NA             1137581
522              1990873                  NA              978574
523              6123949                  NA             3001027
524              7142603                  NA             3563435
525              2679298                  NA             1318555
526              2296377                  NA             1160944
527              1990873                  NA              978574
528              4912449                  NA             2407307
529              2840005                  NA             1374325
530              2959386                  NA             1493164
531             19908595                  NA             9713298
532              2109957                  NA             1038760
533              2265926                  NA             1137581
534             19908595                  NA             9713298
535             19908595                  NA             9713298
536              2265926                  NA             1137581
537              6123949                  NA             3001027
538              2265926                  NA             1137581
539              3194310                  NA             1562880
540              1990873                  NA              978574
541              4912449                  NA             2407307
542              4375604                  NA             2148947
543              2679298                  NA             1318555
544              1264357                  NA              612537
545              2365501                  NA             1162773
546              4001701                  NA             2024424
547              6123949                  NA             3001027
548              2190750                  NA             1084347
549              1264357                  NA              612537
550              6232894                  NA             3033772
551              1282588                  NA              630858
552              2679298                  NA             1318555
553               772902                  NA              380685
554              2265926                  NA             1137581
555             13111917                  NA             6515114
556              1990873                  NA              978574
557               308919                  NA              149938
558              2668688                  NA             1305000
559              2265926                  NA             1137581
560              2365501                  NA             1162773
561              2073546                  NA              975289
562              2265926                  NA             1137581
563              6123949                  NA             3001027
564              2265926                  NA             1137581
565              2265926                  NA             1137581
566              2265926                  NA             1137581
567              2679298                  NA             1318555
568              1264357                  NA              612537
569               772902                  NA              380685
570              2265926                  NA             1137581
571             13111917                  NA             6515114
572              2679298                  NA             1318555
573              9566955                  NA             4718471
574              4912449                  NA             2407307
575              3194310                  NA             1562880
576              6123949                  NA             3001027
577              4912449                  NA             2407307
578              2840005                  NA             1374325
579              2137223                  NA             1061042
580              2265926                  NA             1137581
581              2668688                  NA             1305000
582              2668688                  NA             1305000
583              6346083                  NA             3128067
584              6232894                  NA             3033772
585              6346083                  NA             3128067
586              2668688                  NA             1305000
587              2668688                  NA             1305000
588              2668688                  NA             1305000
589              2668688                  NA             1305000
590              2668688                  NA             1305000
591              2668688                  NA             1305000
592              6346083                  NA             3128067
593              6346083                  NA             3128067
594              6346083                  NA             3128067
595              2668688                  NA             1305000
596              2668688                  NA             1305000
597              2668688                  NA             1305000
598              2668688                  NA             1305000
599              6232894                  NA             3033772
600              2668688                  NA             1305000
601               863166                  NA              427343
602              1990873                  NA              978574
603             19908595                  NA             9713298
604              6346083                  NA             3128067
605               401702                  NA              198867
606              2668688                  NA             1305000
607              2668688                  NA             1305000
608              6232894                  NA             3033772
609              2668688                  NA             1305000
610              2668688                  NA             1305000
611              2668688                  NA             1305000
612              2668688                  NA             1305000
613              2668688                  NA             1305000
614              6346083                  NA             3128067
615              2668688                  NA             1305000
616               591397                  NA              285117
617              1613587                  NA              790463
618              1264357                  NA              612537
619              6232894                  NA             3033772
620               384740                  NA              183928
621              2668688                  NA             1305000
622              6346083                  NA             3128067
623              6346083                  NA             3128067
624              2668688                  NA             1305000
625              6232894                  NA             3033772
626              6232894                  NA             3033772
627              2668688                  NA             1305000
628              2668688                  NA             1305000
629              2668688                  NA             1305000
630              2668688                  NA             1305000
631              2668688                  NA             1305000
632              2668688                  NA             1305000
633              2668688                  NA             1305000
634              2668688                  NA             1305000
635              2668688                  NA             1305000
636              6346083                  NA             3128067
637              6346083                  NA             3128067
638              2668688                  NA             1305000
639              2668688                  NA             1305000
640              2668688                  NA             1305000
641              6346083                  NA             3128067
642              6346083                  NA             3128067
643              2668688                  NA             1305000
644              2668688                  NA             1305000
645              2668688                  NA             1305000
646              2668688                  NA             1305000
647              2668688                  NA             1305000
648              2668688                  NA             1305000
649              2668688                  NA             1305000
650              6346083                  NA             3128067
651              6346083                  NA             3128067
652              6232894                  NA             3033772
653              6232894                  NA             3033772
654              2668688                  NA             1305000
655              2668688                  NA             1305000
656              2668688                  NA             1305000
657              2668688                  NA             1305000
658              2668688                  NA             1305000
659              2668688                  NA             1305000
660              2668688                  NA             1305000
661              2668688                  NA             1305000
662              2668688                  NA             1305000
663              2668688                  NA             1305000
664              6346083                  NA             3128067
665              2668688                  NA             1305000
666              2668688                  NA             1305000
667              6346083                  NA             3128067
668              6232894                  NA             3033772
669              1990873                  NA              978574
670               803398                  NA              394257
671              6346083                  NA             3128067
672               289726                  NA              140509
673              1613587                  NA              790463
674              3678328                  NA             1837913
675              1420825                  NA              698689
676              2668688                  NA             1305000
677              2668688                  NA             1305000
678              6232894                  NA             3033772
679              6232894                  NA             3033772
680              6232894                  NA             3033772
681              6232894                  NA             3033772
682              6232894                  NA             3033772
683              2668688                  NA             1305000
684              2668688                  NA             1305000
685              6346083                  NA             3128067
686              6346083                  NA             3128067
687              6346083                  NA             3128067
688              6346083                  NA             3128067
689             13111917                  NA             6515114
690              2959386                  NA             1493164
691              9566955                  NA             4718471
692              9566955                  NA             4718471
693              9566955                  NA             4718471
694             13111917                  NA             6515114
695              3289701                  NA             1667851
696              2959386                  NA             1493164
697              9566955                  NA             4718471
698              9566955                  NA             4718471
699              2959386                  NA             1493164
700              4692242                  NA             2342253
701              2959386                  NA             1493164
702              9566955                  NA             4718471
703              2959386                  NA             1493164
704              7142603                  NA             3563435
705               585485                  NA              292820
706             13111917                  NA             6515114
707              2505312                  NA             1250855
708              4001701                  NA             2024424
709              4692242                  NA             2342253
710              1981584                  NA             1011796
711              4001701                  NA             2024424
712              1254675                  NA              635422
713              2959386                  NA             1493164
714              4864209                  NA             2434382
715              4864209                  NA             2434382
716              2505312                  NA             1250855
717              4692242                  NA             2342253
718             13111917                  NA             6515114
719              9566955                  NA             4718471
720              2959386                  NA             1493164
721              9566955                  NA             4718471
722              7673379                  NA             3806912
723              2959386                  NA             1493164
724              2959386                  NA             1493164
725             13111917                  NA             6515114
726              2959386                  NA             1493164
727             13111917                  NA             6515114
728              2296377                  NA             1160944
729               771602                  NA              388362
730               119685                  NA               62534
731               711490                  NA              355020
732              1335804                  NA              641128
733               966688                  NA              483251
734              2959386                  NA             1493164
735              2959386                  NA             1493164
736              3678328                  NA             1837913
737              2959386                  NA             1493164
738              2959386                  NA             1493164
739              9566955                  NA             4718471
740              4692242                  NA             2342253
741              4692242                  NA             2342253
742              4864209                  NA             2434382
743              2505312                  NA             1250855
744              3289701                  NA             1667851
745              4001701                  NA             2024424
746              4692242                  NA             2342253
747              4692242                  NA             2342253
748              3678328                  NA             1837913
749              1254675                  NA              635422
750              9566955                  NA             4718471
751              9566955                  NA             4718471
752              4375604                  NA             2148947
753               771602                  NA              388362
754               771602                  NA              388362
755             13111917                  NA             6515114
756              4001701                  NA             2024424
757              4692242                  NA             2342253
758              7142603                  NA             3563435
759              7142603                  NA             3563435
760              7142603                  NA             3563435
761              9566955                  NA             4718471
762              2959386                  NA             1493164
763              4375604                  NA             2148947
764              3678328                  NA             1837913
765              4375604                  NA             2148947
766               867161                  NA              431851
767              1254675                  NA              635422
768              2959386                  NA             1493164
769              2959386                  NA             1493164
770              9566955                  NA             4718471
771              6346083                  NA             3128067
772             13111917                  NA             6515114
773              4864209                  NA             2434382
774              1042393                  NA              516095
775               771602                  NA              388362
776               119685                  NA               62534
777               585485                  NA              292820
778               488436                  NA              240478
779              1981584                  NA             1011796
780                79008                  NA               40763
781              7142603                  NA             3563435
782              7142603                  NA             3563435
783              9566955                  NA             4718471
784              9566955                  NA             4718471
785              7673379                  NA             3806912
786              9566955                  NA             4718471
787              4864209                  NA             2434382
788              4692242                  NA             2342253
789              2959386                  NA             1493164
790              2959386                  NA             1493164
791              2959386                  NA             1493164
792              3289701                  NA             1667851
793              3678328                  NA             1837913
794               242972                  NA              122440
795              6346083                  NA             3128067
796              2959386                  NA             1493164
797              9566955                  NA             4718471
798              2505312                  NA             1250855
799              7673379                  NA             3806912
800             13111917                  NA             6515114
801              9566955                  NA             4718471
802              2959386                  NA             1493164
803              7142603                  NA             3563435
804             13111917                  NA             6515114
805              4375604                  NA             2148947
806              3678328                  NA             1837913
807              4864209                  NA             2434382
808              4864209                  NA             2434382
809              4692242                  NA             2342253
810              2079759                  NA             1012336
811               211078                  NA              103187
812               646794                  NA              322648
813               330119                  NA              161252
814               884359                  NA              435364
815              4375604                  NA             2148947
816             13111917                  NA             6515114
817              1008280                  NA              506526
818               222604                  NA              109360
819              4692242                  NA             2342253
820              3289701                  NA             1667851
821              4692242                  NA             2342253
822              2394673                  NA             1181313
823             13111917                  NA             6515114
824              4001701                  NA             2024424
825              4692242                  NA             2342253
826              1008280                  NA              506526
827              2959386                  NA             1493164
828              4375604                  NA             2148947
829              9566955                  NA             4718471
830              7142603                  NA             3563435
831              4864209                  NA             2434382
832              1981584                  NA             1011796
833              1254675                  NA              635422
834              4375604                  NA             2148947
835              2959386                  NA             1493164
836              4864209                  NA             2434382
837              4001701                  NA             2024424
838              1254675                  NA              635422
839              2959386                  NA             1493164
840              2959386                  NA             1493164
841              2959386                  NA             1493164
842              4001701                  NA             2024424
843              4864209                  NA             2434382
844              2394673                  NA             1181313
845              2296377                  NA             1160944
846              1008280                  NA              506526
847               437609                  NA              223186
848              2505312                  NA             1250855
849              1981584                  NA             1011796
850               488436                  NA              240478
851             13111917                  NA             6515114
852             13111917                  NA             6515114
853             13111917                  NA             6515114
854              4864209                  NA             2434382
855              4692242                  NA             2342253
856              4375604                  NA             2148947
857              2505312                  NA             1250855
858              3678328                  NA             1837913
859             13111917                  NA             6515114
860               771602                  NA              388362
861              1008280                  NA              506526
862               585485                  NA              292820
863              1981584                  NA             1011796
864              4610050                  NA             2315218
865              7673379                  NA             3806912
866              2505312                  NA             1250855
867              4864209                  NA             2434382
868             13111917                  NA             6515114
869               771602                  NA              388362
870              7673379                  NA             3806912
871               585485                  NA              292820
872              2296377                  NA             1160944
873               585485                  NA              292820
874             13111917                  NA             6515114
875              2505312                  NA             1250855
876              3289701                  NA             1667851
877              2959386                  NA             1493164
878              7673379                  NA             3806912
879              3289701                  NA             1667851
880             13111917                  NA             6515114
881              2959386                  NA             1493164
882              2959386                  NA             1493164
883              4692242                  NA             2342253
884              4692242                  NA             2342253
885              4692242                  NA             2342253
886               771602                  NA              388362
887              2505312                  NA             1250855
888              3289701                  NA             1667851
889              4001701                  NA             2024424
890              4001701                  NA             2024424
891              4692242                  NA             2342253
892              4692242                  NA             2342253
893              9566955                  NA             4718471
894              9566955                  NA             4718471
895              4864209                  NA             2434382
896             13111917                  NA             6515114
897              2505312                  NA             1250855
898              3289701                  NA             1667851
899              9566955                  NA             4718471
900              4375604                  NA             2148947
901             13111917                  NA             6515114
902              4001701                  NA             2024424
903              7142603                  NA             3563435
904              4692242                  NA             2342253
905              2505312                  NA             1250855
906              4001701                  NA             2024424
907              4001701                  NA             2024424
908              4001701                  NA             2024424
909                47141                  NA               23954
910              2394673                  NA             1181313
911              4001701                  NA             2024424
912              4001701                  NA             2024424
913              4001701                  NA             2024424
914              4001701                  NA             2024424
915              4001701                  NA             2024424
916              4001701                  NA             2024424
917              4001701                  NA             2024424
918              4001701                  NA             2024424
919              2505312                  NA             1250855
920              2505312                  NA             1250855
921              4001701                  NA             2024424
922              4692242                  NA             2342253
923              4001701                  NA             2024424
924              4001701                  NA             2024424
925              4001701                  NA             2024424
926              4692242                  NA             2342253
927             13111917                  NA             6515114
928              2505312                  NA             1250855
929              4001701                  NA             2024424
930               771602                  NA              388362
931               585485                  NA              292820
932              2265926                  NA             1137581
933             13111917                  NA             6515114
934               585485                  NA              292820
935              1981584                  NA             1011796
936              4692242                  NA             2342253
937              4001701                  NA             2024424
938              4001701                  NA             2024424
939             13111917                  NA             6515114
940              4001701                  NA             2024424
941              4001701                  NA             2024424
942               119685                  NA               62534
943               382218                  NA              189292
944               105950                  NA               53095
945                84423                  NA               43002
946               158478                  NA               79833
947               222604                  NA              109360
948               437609                  NA              223186
949               118541                  NA               59633
950              4692242                  NA             2342253
951              2505312                  NA             1250855
952                47141                  NA               23954
953               181852                  NA               89879
954               199352                  NA               99597
955               490769                  NA              249622
956              2394673                  NA             1181313
957              2265926                  NA             1137581
958               771602                  NA              388362
959               488436                  NA              240478
960              4001701                  NA             2024424
961              4001701                  NA             2024424
962              7142603                  NA             3563435
963              9566955                  NA             4718471
964              9566955                  NA             4718471
965              2959386                  NA             1493164
966              2959386                  NA             1493164
967              6346083                  NA             3128067
968              9566955                  NA             4718471
969              9566955                  NA             4718471
970              4912449                  NA             2407307
971              2959386                  NA             1493164
972              2959386                  NA             1493164
973             19908595                  NA             9713298
974              7142603                  NA             3563435
975              7142603                  NA             3563435
976              7142603                  NA             3563435
977              7142603                  NA             3563435
978              2959386                  NA             1493164
979              6346083                  NA             3128067
980              6346083                  NA             3128067
981              6346083                  NA             3128067
982              6346083                  NA             3128067
983              6346083                  NA             3128067
984              6346083                  NA             3128067
985               269418                  NA              135977
986              2959386                  NA             1493164
987              2959386                  NA             1493164
988              9566955                  NA             4718471
989              2959386                  NA             1493164
990              2959386                  NA             1493164
991             19908595                  NA             9713298
992             19908595                  NA             9713298
993             19908595                  NA             9713298
994             19908595                  NA             9713298
995             19908595                  NA             9713298
996              6346083                  NA             3128067
997              7142603                  NA             3563435
998             13111917                  NA             6515114
999              9566955                  NA             4718471
1000             4692242                  NA             2342253
1001            19908595                  NA             9713298
1002             6346083                  NA             3128067
1003             2959386                  NA             1493164
1004             9566955                  NA             4718471
1005             9566955                  NA             4718471
1006             4692242                  NA             2342253
1007             2959386                  NA             1493164
1008             2959386                  NA             1493164
1009             9566955                  NA             4718471
1010             9566955                  NA             4718471
1011             2959386                  NA             1493164
1012            19908595                  NA             9713298
1013             6123949                  NA             3001027
1014             6346083                  NA             3128067
1015             2959386                  NA             1493164
1016             9566955                  NA             4718471
1017             9566955                  NA             4718471
1018             4912449                  NA             2407307
1019            19908595                  NA             9713298
1020             6346083                  NA             3128067
1021             7142603                  NA             3563435
1022             7142603                  NA             3563435
1023            13111917                  NA             6515114
1024            13111917                  NA             6515114
1025             2190750                  NA             1084347
1026             9566955                  NA             4718471
1027             9566955                  NA             4718471
1028             9566955                  NA             4718471
1029             2505312                  NA             1250855
1030             4864209                  NA             2434382
1031             2570862                  NA             1280273
1032             2394673                  NA             1181313
1033            19908595                  NA             9713298
1034             9566955                  NA             4718471
1035             4692242                  NA             2342253
1036             2079759                  NA             1012336
1037             2079759                  NA             1012336
1038             2079759                  NA             1012336
1039             2959386                  NA             1493164
1040             2959386                  NA             1493164
1041             6346083                  NA             3128067
1042             7142603                  NA             3563435
1043             7142603                  NA             3563435
1044             1613587                  NA              790463
1045             2679298                  NA             1318555
1046             6123949                  NA             3001027
1047             9566955                  NA             4718471
1048             9566955                  NA             4718471
1049             6123949                  NA             3001027
1050             4864209                  NA             2434382
1051             1420825                  NA              698689
1052              772902                  NA              380685
1053             3289701                  NA             1667851
1054              406575                  NA              197548
1055             4692242                  NA             2342253
1056             2073546                  NA              975289
1057             1254675                  NA              635422
1058              844461                  NA              407362
1059             3194310                  NA             1562880
1060             2959386                  NA             1493164
1061             2959386                  NA             1493164
1062            19908595                  NA             9713298
1063             6346083                  NA             3128067
1064             7142603                  NA             3563435
1065             4692242                  NA             2342253
1066             2959386                  NA             1493164
1067             2959386                  NA             1493164
1068             9566955                  NA             4718471
1069            19908595                  NA             9713298
1070            19908595                  NA             9713298
1071            19908595                  NA             9713298
1072             7142603                  NA             3563435
1073             7142603                  NA             3563435
1074             7142603                  NA             3563435
1075             4692242                  NA             2342253
1076             4692242                  NA             2342253
1077             4692242                  NA             2342253
1078             1990873                  NA              978574
1079             4912449                  NA             2407307
1080             6123949                  NA             3001027
1081             1613587                  NA              790463
1082            13111917                  NA             6515114
1083             2679298                  NA             1318555
1084             6123949                  NA             3001027
1085             1420825                  NA              698689
1086             4692242                  NA             2342253
1087             3194310                  NA             1562880
1088             2959386                  NA             1493164
1089             1613587                  NA              790463
1090            13111917                  NA             6515114
1091            19908595                  NA             9713298
1092             1264357                  NA              612537
1093             9566955                  NA             4718471
1094             4864209                  NA             2434382
1095              772902                  NA              380685
1096             3194310                  NA             1562880
1097             2959386                  NA             1493164
1098             2959386                  NA             1493164
1099             2959386                  NA             1493164
1100            19908595                  NA             9713298
1101             6346083                  NA             3128067
1102             6346083                  NA             3128067
1103             7142603                  NA             3563435
1104             4692242                  NA             2342253
1105             2959386                  NA             1493164
1106             2959386                  NA             1493164
1107            19908595                  NA             9713298
1108            19908595                  NA             9713298
1109             6346083                  NA             3128067
1110             6346083                  NA             3128067
1111             7142603                  NA             3563435
1112             7142603                  NA             3563435
1113             7142603                  NA             3563435
1114             7142603                  NA             3563435
1115             7142603                  NA             3563435
1116             7142603                  NA             3563435
1117             9566955                  NA             4718471
1118             9566955                  NA             4718471
1119             2959386                  NA             1493164
1120            19908595                  NA             9713298
1121             7142603                  NA             3563435
1122             7142603                  NA             3563435
1123             7142603                  NA             3563435
1124             2265926                  NA             1137581
1125             2679298                  NA             1318555
1126             9566955                  NA             4718471
1127             2959386                  NA             1493164
1128             2959386                  NA             1493164
1129             6346083                  NA             3128067
1130             9566955                  NA             4718471
1131             2959386                  NA             1493164
1132            13111917                  NA             6515114
1133             2959386                  NA             1493164
1134            19908595                  NA             9713298
1135             6346083                  NA             3128067
1136             7142603                  NA             3563435
1137             7142603                  NA             3563435
1138             9566955                  NA             4718471
1139             7142603                  NA             3563435
1140             7142603                  NA             3563435
1141             2959386                  NA             1493164
1142             2959386                  NA             1493164
1143             2959386                  NA             1493164
1144             2959386                  NA             1493164
1145             6346083                  NA             3128067
1146             7142603                  NA             3563435
1147             2959386                  NA             1493164
1148             2959386                  NA             1493164
1149             2959386                  NA             1493164
1150             2959386                  NA             1493164
1151             2840005                  NA             1374325
1152             2079759                  NA             1012336
1153             6346083                  NA             3128067
1154             2959386                  NA             1493164
1155            19908595                  NA             9713298
1156             6123949                  NA             3001027
1157             1087068                  NA              546278
1158             6346083                  NA             3128067
1159             7142603                  NA             3563435
1160             2365501                  NA             1162773
1161             1316145                  NA              640643
1162             1086859                  NA              532509
1163             3289701                  NA             1667851
1164             2959386                  NA             1493164
1165             9566955                  NA             4718471
1166            19908595                  NA             9713298
1167             2959386                  NA             1493164
1168            19908595                  NA             9713298
1169             4692242                  NA             2342253
1170             4692242                  NA             2342253
1171             6346083                  NA             3128067
1172             9566955                  NA             4718471
1173             9566955                  NA             4718471
1174             2959386                  NA             1493164
1175             2959386                  NA             1493164
1176             9566955                  NA             4718471
1177             4692242                  NA             2342253
1178            19908595                  NA             9713298
1179             7142603                  NA             3563435
1180             7142603                  NA             3563435
1181             2959386                  NA             1493164
1182             2959386                  NA             1493164
1183             6346083                  NA             3128067
1184             9566955                  NA             4718471
1185             9566955                  NA             4718471
1186             9566955                  NA             4718471
1187             2296377                  NA             1160944
1188             6346083                  NA             3128067
1189            19908595                  NA             9713298
1190             6123949                  NA             3001027
1191             6346083                  NA             3128067
1192             6346083                  NA             3128067
1193             7142603                  NA             3563435
1194              164765                  21               82304
1195             9566955                  NA             4718471
1196             9566955                  NA             4718471
1197             9566955                  NA             4718471
1198            19908595                  NA             9713298
1199             7142603                  NA             3563435
1200             6346083                  NA             3128067
1201             2079759                  NA             1012336
1202             6346083                  NA             3128067
1203             7142603                  NA             3563435
1204             7142603                  NA             3563435
1205             7673379                  NA             3806912
1206             7673379                  NA             3806912
1207             2265926                  NA             1137581
1208             2296377                  NA             1160944
1209             2265926                  NA             1137581
1210             4864209                  NA             2434382
1211             2840005                  NA             1374325
1212             2840005                  NA             1374325
1213             2840005                  NA             1374325
1214             2840005                  NA             1374325
1215             2679298                  NA             1318555
1216             9566955                  NA             4718471
1217             9566955                  NA             4718471
1218             2840005                  NA             1374325
1219             2679298                  NA             1318555
1220             2265926                  NA             1137581
1221             7673379                  NA             3806912
1222             2840005                  NA             1374325
1223             7673379                  NA             3806912
1224             7673379                  NA             3806912
1225             7673379                  NA             3806912
1226             7673379                  NA             3806912
1227             7673379                  NA             3806912
1228             7142603                  NA             3563435
1229            19908595                  NA             9713298
1230             2679298                  NA             1318555
1231             9566955                  NA             4718471
1232             1568940                  NA              770847
1233             4864209                  NA             2434382
1234             4864209                  NA             2434382
1235             4864209                  NA             2434382
1236             2813523                  NA             1375126
1237             2296377                  NA             1160944
1238             1990873                  NA              978574
1239             2079759                  NA             1012336
1240              181055                  NA               90237
1241             6123949                  NA             3001027
1242             7142603                  NA             3563435
1243             2109957                  NA             1038760
1244              591397                  NA              285117
1245             2265926                  NA             1137581
1246              749290                  NA              363653
1247             2190750                  NA             1084347
1248             1335804                  NA              641128
1249              496299                  NA              240510
1250             6232894                  NA             3033772
1251             4864209                  NA             2434382
1252             2365501                  NA             1162773
1253             1316145                  NA              640643
1254              772902                  NA              380685
1255             3194310                  NA             1562880
1256             1990873                  NA              978574
1257             7673379                  NA             3806912
1258             7673379                  NA             3806912
1259             7673379                  NA             3806912
1260              867161                  NA              431851
1261             7142603                  NA             3563435
1262             7142603                  NA             3563435
1263            13111917                  NA             6515114
1264             9566955                  NA             4718471
1265             4864209                  NA             2434382
1266             4864209                  NA             2434382
1267             4864209                  NA             2434382
1268             3289701                  NA             1667851
1269            13111917                  NA             6515114
1270             2840005                  NA             1374325
1271             7673379                  NA             3806912
1272             6346083                  NA             3128067
1273             7142603                  NA             3563435
1274              421854                  NA              208182
1275            13111917                  NA             6515114
1276            13111917                  NA             6515114
1277             2190750                  NA             1084347
1278             9566955                  NA             4718471
1279             3678328                  NA             1837913
1280             1264357                  NA              612537
1281             4692242                  NA             2342253
1282             1420825                  NA              698689
1283            13111917                  NA             6515114
1284             2813523                  NA             1375126
1285             3194310                  NA             1562880
1286             9566955                  NA             4718471
1287             9566955                  NA             4718471
1288             2840005                  NA             1374325
1289             2679298                  NA             1318555
1290             2840005                  NA             1374325
1291             7673379                  NA             3806912
1292             7142603                  NA             3563435
1293             2679298                  NA             1318555
1294             9566955                  NA             4718471
1295             3194310                  NA             1562880
1296             2265926                  NA             1137581
1297             2296377                  NA             1160944
1298             1215703                 422              594920
1299             7673379                  NA             3806912
1300             2959386                  NA             1493164
1301             7142603                  NA             3563435
1302            19908595                  NA             9713298
1303             2190750                  NA             1084347
1304             2679298                  NA             1318555
1305             1798025                  NA              886709
1306             4864209                  NA             2434382
1307              772902                  NA              380685
1308             1981584                  NA             1011796
1309              844461                  NA              407362
1310             3194310                  NA             1562880
1311             4912449                  NA             2407307
1312             2840005                  NA             1374325
1313              803398                  NA              394257
1314             2079759                  NA             1012336
1315             2668688                  NA             1305000
1316             2137223                  NA             1061042
1317             4375604                  NA             2148947
1318              181055                  NA               90237
1319             1613587                  NA              790463
1320             9566955                  NA             4718471
1321             6123949                  NA             3001027
1322             1568940                  NA              770847
1323             1264357                  NA              612537
1324              496299                  NA              240510
1325             4692242                  NA             2342253
1326             4692242                  NA             2342253
1327             6232894                  NA             3033772
1328             2365501                  NA             1162773
1329              510290                  NA              256202
1330             1420825                  NA              698689
1331              406575                  NA              197548
1332              288639                  NA              146836
1333             2959386                  NA             1493164
1334             2959386                  NA             1493164
1335             2265926                  NA             1137581
1336             4692242                  NA             2342253
1337             4864209                  NA             2434382
1338             3289701                  NA             1667851
1339             2265926                  NA             1137581
1340             1990873                  NA              978574
1341             1990873                  NA              978574
1342             2840005                  NA             1374325
1343             2840005                  NA             1374325
1344             2840005                  NA             1374325
1345             2840005                  NA             1374325
1346             2840005                  NA             1374325
1347             2840005                  NA             1374325
1348             9566955                  NA             4718471
1349             9566955                  NA             4718471
1350             9566955                  NA             4718471
1351             9566955                  NA             4718471
1352             9566955                  NA             4718471
1353             9566955                  NA             4718471
1354             2840005                  NA             1374325
1355             6123949                  NA             3001027
1356             2679298                  NA             1318555
1357             9566955                  NA             4718471
1358             7673379                  NA             3806912
1359             7673379                  NA             3806912
1360             7673379                  NA             3806912
1361             7673379                  NA             3806912
1362             2265926                  NA             1137581
1363             2394673                  NA             1181313
1364             2296377                  NA             1160944
1365             2959386                  NA             1493164
1366             7142603                  NA             3563435
1367             4692242                  NA             2342253
1368             1981584                  NA             1011796
1369             1114368                  NA              538428
1370             1990873                  NA              978574
1371             1990873                  NA              978574
1372             2253528                  NA             1113732
1373             1087068                  NA              546278
1374             2109957                  NA             1038760
1375             9566955                  NA             4718471
1376              406575                  NA              197548
1377              288639                  NA              146836
1378             1215703                 422              594920
1379             1163462                  NA              568061
1380              803398                  NA              394257
1381             2079759                  NA             1012336
1382             6123949                  NA             3001027
1383              330119                  NA              161252
1384             7142603                  NA             3563435
1385            19908595                  NA             9713298
1386             2265926                  NA             1137581
1387            19908595                  NA             9713298
1388             9566955                  NA             4718471
1389             6123949                  NA             3001027
1390              496299                  NA              240510
1391             1798025                  NA              886709
1392             4864209                  NA             2434382
1393             2365501                  NA             1162773
1394             1670949                  NA              818990
1395              552916                  NA              270938
1396             1420825                  NA              698689
1397             1086859                  NA              532509
1398              772902                  NA              380685
1399             1282588                  NA              630858
1400             2959386                  NA             1493164
1401             2265926                  NA             1137581
1402             1990873                  NA              978574
1403             1990873                  NA              978574
1404             1990873                  NA              978574
1405             7673379                  NA             3806912
1406             9566955                  NA             4718471
1407             2813523                  NA             1375126
1408             1990873                  NA              978574
1409             1990873                  NA              978574
1410             2840005                  NA             1374325
1411             2265926                  NA             1137581
1412             9566955                  NA             4718471
1413             2813523                  NA             1375126
1414             1990873                  NA              978574
1415             9566955                  NA             4718471
1416             9566955                  NA             4718471
1417              844461                  NA              407362
1418             2813523                  NA             1375126
1419             1990873                  NA              978574
1420             2840005                  NA             1374325
1421             6346083                  NA             3128067
1422             2265926                  NA             1137581
1423             4864209                  NA             2434382
1424             2813523                  NA             1375126
1425             3194310                  NA             1562880
1426             2265926                  NA             1137581
1427             2265926                  NA             1137581
1428             4864209                  NA             2434382
1429             7142603                  NA             3563435
1430             7142603                  NA             3563435
1431             2959386                  NA             1493164
1432             9566955                  NA             4718471
1433             2840005                  NA             1374325
1434             2679298                  NA             1318555
1435             9566955                  NA             4718471
1436             9566955                  NA             4718471
1437             3194310                  NA             1562880
1438              915968                  NA              453044
1439             2296377                  NA             1160944
1440             1114368                  NA              538428
1441             2959386                  NA             1493164
1442             2959386                  NA             1493164
1443              867161                  NA              431851
1444             7142603                  NA             3563435
1445            19908595                  NA             9713298
1446            13111917                  NA             6515114
1447             2679298                  NA             1318555
1448             4692242                  NA             2342253
1449              966688                  NA              483251
1450             1981584                  NA             1011796
1451             1254675                  NA              635422
1452            13111917                  NA             6515114
1453             2813523                  NA             1375126
1454             3194310                  NA             1562880
1455              269278                 239              135933
1456             2296377                  NA             1160944
1457             2137223                  NA             1061042
1458              755081                  NA              384572
1459             6346083                  NA             3128067
1460              181055                  NA               90237
1461             6123949                  NA             3001027
1462             7142603                  NA             3563435
1463              322285                  NA              159719
1464              749290                  NA              363653
1465              174621                  NA               89435
1466             2190750                  NA             1084347
1467             9566955                  NA             4718471
1468             3678328                  NA             1837913
1469             1264357                  NA              612537
1470             9566955                  NA             4718471
1471             4864209                  NA             2434382
1472              510290                  NA              256202
1473             2570862                  NA             1280273
1474             1017724                  NA              503252
1475              288639                  NA              146836
1476             1990873                  NA              978574
1477             1990873                  NA              978574
1478             1990873                  NA              978574
1479             6123949                  NA             3001027
1480             9566955                  NA             4718471
1481             2813523                  NA             1375126
1482             2813523                  NA             1375126
1483             2137223                  NA             1061042
1484             7673379                  NA             3806912
1485             2679298                  NA             1318555
1486             1568940                  NA              770847
1487              966688                  NA              483251
1488              772902                  NA              380685
1489             2813523                  NA             1375126
1490             3194310                  NA             1562880
1491             1114368                  NA              538428
1492             1990873                  NA              978574
1493            13111917                  NA             6515114
1494             2840005                  NA             1374325
1495             2253528                  NA             1113732
1496             7673379                  NA             3806912
1497             7673379                  NA             3806912
1498              867161                  NA              431851
1499              585485                  NA              292820
1500             7142603                  NA             3563435
1501             2109957                  NA             1038760
1502             2265926                  NA             1137581
1503            19908595                  NA             9713298
1504             9566955                  NA             4718471
1505             9566955                  NA             4718471
1506             1568940                  NA              770847
1507              445213                  NA              223753
1508            13111917                  NA             6515114
1509             2813523                  NA             1375126
1510             1017724                  NA              503252
1511             1042393                  NA              516095
1512              915968                  NA              453044
1513             1163462                  NA              568061
1514              803398                  NA              394257
1515               24944                  NA               13144
1516             7142603                  NA             3563435
1517              646794                  NA              322648
1518             2265926                  NA             1137581
1519            13111917                  NA             6515114
1520              749290                  NA              363653
1521             6123949                  NA             3001027
1522             1264357                  NA              612537
1523             4692242                  NA             2342253
1524             1428923                  NA              708697
1525              490769                  NA              249622
1526             3289701                  NA             1667851
1527             3194310                  NA             1562880
1528             2813523                  NA             1375126
1529             1990873                  NA              978574
1530             9566955                  NA             4718471
1531             9566955                  NA             4718471
1532             1990873                  NA              978574
1533             2840005                  NA             1374325
1534             2813523                  NA             1375126
1535             7142603                  NA             3563435
1536             2813523                  NA             1375126
1537             2296377                  NA             1160944
1538             2959386                  NA             1493164
1539             7142603                  NA             3563435
1540             2265926                  NA             1137581
1541            13111917                  NA             6515114
1542             4864209                  NA             2434382
1543             2296377                  NA             1160944
1544             7142603                  NA             3563435
1545             7142603                  NA             3563435
1546             4864209                  NA             2434382
1547             2570862                  NA             1280273
1548             4692242                  NA             2342253
1549             2265926                  NA             1137581
1550             4692242                  NA             2342253
1551             2265926                  NA             1137581
1552             2840005                  NA             1374325
1553             7142603                  NA             3563435
1554             7142603                  NA             3563435
1555             7142603                  NA             3563435
1556             2679298                  NA             1318555
1557             1264357                  NA              612537
1558             1420825                  NA              698689
1559             2840005                  NA             1374325
1560             7673379                  NA             3806912
1561             6346083                  NA             3128067
1562             9566955                  NA             4718471
1563             4864209                  NA             2434382
1564             4864209                  NA             2434382
1565             2365501                  NA             1162773
1566             2570862                  NA             1280273
1567             3194310                  NA             1562880
1568             2959386                  NA             1493164
1569             2959386                  NA             1493164
1570             2265926                  NA             1137581
1571             9566955                  NA             4718471
1572             4864209                  NA             2434382
1573             2394673                  NA             1181313
1574             2265926                  NA             1137581
1575             4692242                  NA             2342253
1576             2840005                  NA             1374325
1577             7142603                  NA             3563435
1578               73511                  NA               36809
1579             4692242                  NA             2342253
1580             4692242                  NA             2342253
1581             4864209                  NA             2434382
1582             6094752                  NA             2965233
1583             1990873                  NA              978574
1584             2840005                  NA             1374325
1585             7673379                  NA             3806912
1586             2959386                  NA             1493164
1587              867161                  NA              431851
1588              330119                  NA              161252
1589             6123949                  NA             3001027
1590             3678328                  NA             1837913
1591             1264357                  NA              612537
1592             4864209                  NA             2434382
1593             2813523                  NA             1375126
1594             2813523                  NA             1375126
1595             2296377                  NA             1160944
1596            13111917                  NA             6515114
1597              181055                  NA               90237
1598             6123949                  NA             3001027
1599              421854                  NA              208182
1600             2265926                  NA             1137581
1601            13111917                  NA             6515114
1602              322285                  NA              159719
1603            19908595                  NA             9713298
1604            13111917                  NA             6515114
1605              174621                  NA               89435
1606             2679298                  NA             1318555
1607             1335804                  NA              641128
1608             4692242                  NA             2342253
1609             1428923                  NA              708697
1610             4610050                  NA             2315218
1611             6232894                  NA             3033772
1612              510290                  NA              256202
1613              772902                  NA              380685
1614             2570862                  NA             1280273
1615             2570862                  NA             1280273
1616              406575                  NA              197548
1617             1981584                  NA             1011796
1618             3194310                  NA             1562880
1619             1017724                  NA              503252
1620             7142603                  NA             3563435
1621             7142603                  NA             3563435
1622             9566955                  NA             4718471
1623             9566955                  NA             4718471
1624             7673379                  NA             3806912
1625             7673379                  NA             3806912
1626             9566955                  NA             4718471
1627             7673379                  NA             3806912
1628             7673379                  NA             3806912
1629             9566955                  NA             4718471
1630             2959386                  NA             1493164
1631             2813523                  NA             1375126
1632             2840005                  NA             1374325
1633             7673379                  NA             3806912
1634             7142603                  NA             3563435
1635             2679298                  NA             1318555
1636              772902                  NA              380685
1637              844461                  NA              407362
1638             1990873                  NA              978574
1639             2840005                  NA             1374325
1640             2840005                  NA             1374325
1641             2840005                  NA             1374325
1642             2813523                  NA             1375126
1643             1990873                  NA              978574
1644             9566955                  NA             4718471
1645             4864209                  NA             2434382
1646             4864209                  NA             2434382
1647             4864209                  NA             2434382
1648              915968                  NA              453044
1649              269278                 239              135933
1650             2296377                  NA             1160944
1651             2296377                  NA             1160944
1652             7673379                  NA             3806912
1653              585485                  NA              292820
1654             9566955                  NA             4718471
1655             1568940                  NA              770847
1656             4692242                  NA             2342253
1657             2505312                  NA             1250855
1658             2570862                  NA             1280273
1659             1254675                  NA              635422
1660             2394673                  NA             1181313
1661            13111917                  NA             6515114
1662             2813523                  NA             1375126
1663              771602                  NA              388362
1664            13111917                  NA             6515114
1665             2840005                  NA             1374325
1666              119685                  NA               62534
1667              755081                  NA              384572
1668              382218                  NA              189292
1669            13111917                  NA             6515114
1670             1568940                  NA              770847
1671             4610050                  NA             2315218
1672             4610050                  NA             2315218
1673              490769                  NA              249622
1674             3289701                  NA             1667851
1675              445213                  NA              223753
1676             1981584                  NA             1011796
1677             1017724                  NA              503252
1678             1042393                  NA              516095
1679              915968                  NA              453044
1680              867161                  NA              431851
1681             1010100                  NA              512085
1682             9566955                  NA             4718471
1683             1264357                  NA              612537
1684             1264357                  NA              612537
1685             4864209                  NA             2434382
1686             4864209                  NA             2434382
1687             2296377                  NA             1160944
1688             2296377                  NA             1160944
1689             7142603                  NA             3563435
1690              490769                  NA              249622
1691             2394673                  NA             1181313
1692             2394673                  NA             1181313
1693             2296377                  NA             1160944
1694             7673379                  NA             3806912
1695             2840005                  NA             1374325
1696             2840005                  NA             1374325
1697             7142603                  NA             3563435
1698             2813523                  NA             1375126
1699             2813523                  NA             1375126
1700             9566955                  NA             4718471
1701             1264357                  NA              612537
1702             2959386                  NA             1493164
1703             2265926                  NA             1137581
1704             4692242                  NA             2342253
1705             2394673                  NA             1181313
1706             2813523                  NA             1375126
1707             1010100                  NA              512085
1708             7142603                  NA             3563435
1709             7142603                  NA             3563435
1710             2265926                  NA             1137581
1711             9566955                  NA             4718471
1712              164765                  21               82304
1713              490769                  NA              249622
1714             2394673                  NA             1181313
1715             7673379                  NA             3806912
1716             7673379                  NA             3806912
1717             7142603                  NA             3563435
1718             2296377                  NA             1160944
1719             7673379                  NA             3806912
1720             9566955                  NA             4718471
1721             9566955                  NA             4718471
1722             2840005                  NA             1374325
1723             6123949                  NA             3001027
1724            19908595                  NA             9713298
1725             2679298                  NA             1318555
1726             1264357                  NA              612537
1727              772902                  NA              380685
1728             2840005                  NA             1374325
1729             7673379                  NA             3806912
1730             7673379                  NA             3806912
1731             7673379                  NA             3806912
1732             2959386                  NA             1493164
1733             7142603                  NA             3563435
1734             2190750                  NA             1084347
1735             2813523                  NA             1375126
1736             2813523                  NA             1375126
1737             2813523                  NA             1375126
1738              901729                  NA              444836
1739             1215703                 422              594920
1740             1114368                  NA              538428
1741             1163462                  NA              568061
1742             2253528                  NA             1113732
1743             6123949                  NA             3001027
1744             2109957                  NA             1038760
1745             1335804                  NA              641128
1746             1264357                  NA              612537
1747             1798025                  NA              886709
1748             4864209                  NA             2434382
1749             1282588                  NA              630858
1750             2813523                  NA             1375126
1751             2296377                  NA             1160944
1752             1114368                  NA              538428
1753             1990873                  NA              978574
1754             2840005                  NA             1374325
1755              803398                  NA              394257
1756             2137223                  NA             1061042
1757             7673379                  NA             3806912
1758             6346083                  NA             3128067
1759             2959386                  NA             1493164
1760             6123949                  NA             3001027
1761             1087068                  NA              546278
1762             6346083                  NA             3128067
1763             1613587                  NA              790463
1764            19908595                  NA             9713298
1765             2190750                  NA             1084347
1766             2679298                  NA             1318555
1767             3678328                  NA             1837913
1768             1264357                  NA              612537
1769              966688                  NA              483251
1770             1798025                  NA              886709
1771             4864209                  NA             2434382
1772             1670949                  NA              818990
1773             1316145                  NA              640643
1774             3289701                  NA             1667851
1775             1282588                  NA              630858
1776             4001701                  NA             2024424
1777             4692242                  NA             2342253
1778             3194310                  NA             1562880
1779             4912449                  NA             2407307
1780             1163462                  NA              568061
1781             2079759                  NA             1012336
1782             2079759                  NA             1012336
1783             2253528                  NA             1113732
1784             7142603                  NA             3563435
1785             7142603                  NA             3563435
1786            13111917                  NA             6515114
1787             1335804                  NA              641128
1788             6123949                  NA             3001027
1789              496299                  NA              240510
1790             4692242                  NA             2342253
1791             1428923                  NA              708697
1792             6232894                  NA             3033772
1793             2365501                  NA             1162773
1794             1420825                  NA              698689
1795              772902                  NA              380685
1796             2394673                  NA             1181313
1797            13111917                  NA             6515114
1798              844461                  NA              407362
1799             2813523                  NA             1375126
1800             1042393                  NA              516095
1801             2679298                  NA             1318555
1802             9566955                  NA             4718471
1803             7673379                  NA             3806912
1804             2959386                  NA             1493164
1805             7142603                  NA             3563435
1806             2840005                  NA             1374325
1807             2813523                  NA             1375126
1808             9566955                  NA             4718471
1809             1264357                  NA              612537
1810             2813523                  NA             1375126
1811             2840005                  NA             1374325
1812             6346083                  NA             3128067
1813             4864209                  NA             2434382
1814              772902                  NA              380685
1815             2813523                  NA             1375126
1816             7142603                  NA             3563435
1817             2813523                  NA             1375126
1818             7142603                  NA             3563435
1819             7142603                  NA             3563435
1820             2190750                  NA             1084347
1821             1990873                  NA              978574
1822             2840005                  NA             1374325
1823             6123949                  NA             3001027
1824            13111917                  NA             6515114
1825            19908595                  NA             9713298
1826             2679298                  NA             1318555
1827             2679298                  NA             1318555
1828             6123949                  NA             3001027
1829             2570862                  NA             1280273
1830             3194310                  NA             1562880
1831             7673379                  NA             3806912
1832             2840005                  NA             1374325
1833             9566955                  NA             4718471
1834             2296377                  NA             1160944
1835              226523                  NA              112654
1836            13111917                  NA             6515114
1837             1010100                  NA              512085
1838               73511                  NA               36809
1839             4610050                  NA             2315218
1840             4864209                  NA             2434382
1841             4610050                  NA             2315218
1842             3289701                  NA             1667851
1843              771602                  NA              388362
1844            13111917                  NA             6515114
1845              382218                  NA              189292
1846              585485                  NA              292820
1847              202163                  NA              100828
1848              445213                  NA              223753
1849            13111917                  NA             6515114
1850             1010100                  NA              512085
1851             2296377                  NA             1160944
1852             7142603                  NA             3563435
1853             9566955                  NA             4718471
1854             4864209                  NA             2434382
1855             2813523                  NA             1375126
1856             2265926                  NA             1137581
1857             9566955                  NA             4718471
1858             2813523                  NA             1375126
1859             7142603                  NA             3563435
1860             4692242                  NA             2342253
1861             1981584                  NA             1011796
1862             1990873                  NA              978574
1863             4864209                  NA             2434382
1864             1990873                  NA              978574
1865             7673379                  NA             3806912
1866             1990873                  NA              978574
1867             9566955                  NA             4718471
1868             2840005                  NA             1374325
1869             2679298                  NA             1318555
1870             9566955                  NA             4718471
1871             4864209                  NA             2434382
1872             4864209                  NA             2434382
1873             4864209                  NA             2434382
1874             1981584                  NA             1011796
1875             9566955                  NA             4718471
1876             2959386                  NA             1493164
1877             2296377                  NA             1160944
1878              585485                  NA              292820
1879             7142603                  NA             3563435
1880             4692242                  NA             2342253
1881             1428923                  NA              708697
1882             2505312                  NA             1250855
1883              490769                  NA              249622
1884             2570862                  NA             1280273
1885             1981584                  NA             1011796
1886             1254675                  NA              635422
1887             2394673                  NA             1181313
1888              915968                  NA              453044
1889             2296377                  NA             1160944
1890            13111917                  NA             6515114
1891             2137223                  NA             1061042
1892              755081                  NA              384572
1893              867161                  NA              431851
1894             6123949                  NA             3001027
1895            13111917                  NA             6515114
1896               73511                  NA               36809
1897             1568940                  NA              770847
1898              966688                  NA              483251
1899             4610050                  NA             2315218
1900             4610050                  NA             2315218
1901            13111917                  NA             6515114
1902             3194310                  NA             1562880
1903             4864209                  NA             2434382
1904              772902                  NA              380685
1905              844461                  NA              407362
1906             1990873                  NA              978574
1907             2840005                  NA             1374325
1908             6123949                  NA             3001027
1909             1990873                  NA              978574
1910             7673379                  NA             3806912
1911             7142603                  NA             3563435
1912             2394673                  NA             1181313
1913             2265926                  NA             1137581
1914             9566955                  NA             4718471
1915             2813523                  NA             1375126
1916             2840005                  NA             1374325
1917             2840005                  NA             1374325
1918             2679298                  NA             1318555
1919             3194310                  NA             1562880
1920             9566955                  NA             4718471
1921            13111917                  NA             6515114
1922            13111917                  NA             6515114
1923             3289701                  NA             1667851
1924             1981584                  NA             1011796
1925             2679298                  NA             1318555
1926             3194310                  NA             1562880
1927             9566955                  NA             4718471
1928             1568940                  NA              770847
1929             6346083                  NA             3128067
1930             2190750                  NA             1084347
1931             9566955                  NA             4718471
1932             1282588                  NA              630858
1933              771602                  NA              388362
1934             7673379                  NA             3806912
1935             7142603                  NA             3563435
1936             1981584                  NA             1011796
1937             1010100                  NA              512085
1938              164765                  21               82304
1939             1042393                  NA              516095
1940             7673379                  NA             3806912
1941             7142603                  NA             3563435
1942             1990873                  NA              978574
1943             7673379                  NA             3806912
1944              867161                  NA              431851
1945            13111917                  NA             6515114
1946             2265926                  NA             1137581
1947             4692242                  NA             2342253
1948             2679298                  NA             1318555
1949             9566955                  NA             4718471
1950             2840005                  NA             1374325
1951              772902                  NA              380685
1952             3194310                  NA             1562880
1953             4692242                  NA             2342253
1954             1981584                  NA             1011796
1955             4864209                  NA             2434382
1956            13111917                  NA             6515114
1957             3289701                  NA             1667851
1958             7673379                  NA             3806912
1959             2265926                  NA             1137581
1960              164765                  21               82304
1961              164765                  21               82304
1962             1010100                  NA              512085
1963              202163                  NA              100828
1964            13111917                  NA             6515114
1965             4610050                  NA             2315218
1966              490769                  NA              249622
1967            13111917                  NA             6515114
1968             2679298                  NA             1318555
1969             7673379                  NA             3806912
1970            13111917                  NA             6515114
1971             2679298                  NA             1318555
1972             2394673                  NA             1181313
1973              585485                  NA              292820
1974             3289701                  NA             1667851
1975             4001701                  NA             2024424
1976            13111917                  NA             6515114
1977             1010100                  NA              512085
1978            13111917                  NA             6515114
1979             4610050                  NA             2315218
1980             4610050                  NA             2315218
1981            13111917                  NA             6515114
1982             7673379                  NA             3806912
1983             4864209                  NA             2434382
1984             2296377                  NA             1160944
1985             2137223                  NA             1061042
1986             2296377                  NA             1160944
1987             2109957                  NA             1038760
1988            19908595                  NA             9713298
1989             2840005                  NA             1374325
1990             7673379                  NA             3806912
1991             6123949                  NA             3001027
1992             7142603                  NA             3563435
1993             1613587                  NA              790463
1994            19908595                  NA             9713298
1995            13111917                  NA             6515114
1996             9566955                  NA             4718471
1997             1264357                  NA              612537
1998             4001701                  NA             2024424
1999             2296377                  NA             1160944
2000             1990873                  NA              978574
2001             1990873                  NA              978574
2002             2137223                  NA             1061042
2003              711490                  NA              355020
2004              181055                  NA               90237
2005              646794                  NA              322648
2006            13111917                  NA             6515114
2007              749290                  NA              363653
2008             2190750                  NA             1084347
2009             2679298                  NA             1318555
2010             6123949                  NA             3001027
2011             1568940                  NA              770847
2012             1428923                  NA              708697
2013              966688                  NA              483251
2014             4864209                  NA             2434382
2015              510290                  NA              256202
2016              844461                  NA              407362
2017             1990873                  NA              978574
2018             2840005                  NA             1374325
2019             2137223                  NA             1061042
2020             6346083                  NA             3128067
2021             9566955                  NA             4718471
2022             1420825                  NA              698689
2023             1282588                  NA              630858
2024             1215703                 422              594920
2025             1114368                  NA              538428
2026             1163462                  NA              568061
2027             2253528                  NA             1113732
2028             6123949                  NA             3001027
2029             3289701                  NA             1667851
2030             2265926                  NA             1137581
2031             1990873                  NA              978574
2032             7673379                  NA             3806912
2033             7142603                  NA             3563435
2034             4864209                  NA             2434382
2035             6346083                  NA             3128067
2036             2813523                  NA             1375126
2037             7673379                  NA             3806912
2038             4864209                  NA             2434382
2039             7673379                  NA             3806912
2040             7673379                  NA             3806912
2041             7673379                  NA             3806912
2042            19908595                  NA             9713298
2043             2365501                  NA             1162773
2044              406575                  NA              197548
2045             1017724                  NA              503252
2046             7673379                  NA             3806912
2047             4864209                  NA             2434382
2048              906883                  NA              464093
2049              382218                  NA              189292
2050             7673379                  NA             3806912
2051             7673379                  NA             3806912
2052             7142603                  NA             3563435
2053             7142603                  NA             3563435
2054             7142603                  NA             3563435
2055             6346083                  NA             3128067
2056             6346083                  NA             3128067
2057             6232894                  NA             3033772
2058            19908595                  NA             9713298
2059             2109957                  NA             1038760
2060            19908595                  NA             9713298
2061             2137223                  NA             1061042
2062            19908595                  NA             9713298
2063            19908595                  NA             9713298
2064            19908595                  NA             9713298
2065            19908595                  NA             9713298
2066            19908595                  NA             9713298
2067            19908595                  NA             9713298
2068            19908595                  NA             9713298
2069             2365501                  NA             1162773
2070             1420825                  NA              698689
2071            19908595                  NA             9713298
2072            19908595                  NA             9713298
2073            19908595                  NA             9713298
2074             2668688                  NA             1305000
2075            19908595                  NA             9713298
2076            19908595                  NA             9713298
2077            19908595                  NA             9713298
2078            19908595                  NA             9713298
2079            19908595                  NA             9713298
2080            19908595                  NA             9713298
2081             4912449                  NA             2407307
2082             6232894                  NA             3033772
2083            19908595                  NA             9713298
2084             2668688                  NA             1305000
2085            19908595                  NA             9713298
2086             1420825                  NA              698689
2087             1282588                  NA              630858
2088             4912449                  NA             2407307
2089            19908595                  NA             9713298
2090              803398                  NA              394257
2091             4375604                  NA             2148947
2092               82044                  NA               42677
2093             1568940                  NA              770847
2094             1264357                  NA              612537
2095              552916                  NA              270938
2096             2668688                  NA             1305000
2097            19908595                  NA             9713298
2098             1264357                  NA              612537
2099              844461                  NA              407362
2100            19908595                  NA             9713298
2101             4912449                  NA             2407307
2102             2668688                  NA             1305000
2103             6346083                  NA             3128067
2104            19908595                  NA             9713298
2105             1990873                  NA              978574
2106             2840005                  NA             1374325
2107             2840005                  NA             1374325
2108             6346083                  NA             3128067
2109             1798025                  NA              886709
2110             6232894                  NA             3033772
2111             6232894                  NA             3033772
2112             2365501                  NA             1162773
2113             2079759                  NA             1012336
2114             2137223                  NA             1061042
2115             2109957                  NA             1038760
2116             2109957                  NA             1038760
2117             1316145                  NA              640643
2118             2253528                  NA             1113732
2119             2668688                  NA             1305000
2120             1613587                  NA              790463
2121             4912449                  NA             2407307
2122             1420825                  NA              698689
2123             2137223                  NA             1061042
2124             6346083                  NA             3128067
2125             6346083                  NA             3128067
2126            19908595                  NA             9713298
2127            19908595                  NA             9713298
2128             4912449                  NA             2407307
2129            19908595                  NA             9713298
2130            19908595                  NA             9713298
2131             9566955                  NA             4718471
2132             4912449                  NA             2407307
2133             6346083                  NA             3128067
2134            19908595                  NA             9713298
2135             6346083                  NA             3128067
2136             6232894                  NA             3033772
2137            19908595                  NA             9713298
2138             6346083                  NA             3128067
2139             2668688                  NA             1305000
2140            19908595                  NA             9713298
2141             2668688                  NA             1305000
2142             6346083                  NA             3128067
2143             9566955                  NA             4718471
2144             6346083                  NA             3128067
2145             6346083                  NA             3128067
2146             6346083                  NA             3128067
2147             1163462                  NA              568061
2148             6346083                  NA             3128067
2149             9566955                  NA             4718471
2150              775169                  NA              372915
2151            19908595                  NA             9713298
2152             6346083                  NA             3128067
2153             3678328                  NA             1837913
2154             3678328                  NA             1837913
2155              119685                  NA               62534
2156             4692242                  NA             2342253
2157             3678328                  NA             1837913
2158             6232894                  NA             3033772
2159             6232894                  NA             3033772
2160             6232894                  NA             3033772
2161             6232894                  NA             3033772
2162             6232894                  NA             3033772
2163             6232894                  NA             3033772
2164             6232894                  NA             3033772
2165             6232894                  NA             3033772
2166             6232894                  NA             3033772
2167             4912449                  NA             2407307
2168             6232894                  NA             3033772
2169              144705                  NA               71707
2170             2959386                  NA             1493164
2171             6346083                  NA             3128067
2172              749290                  NA              363653
2173            19908595                  NA             9713298
2174               82044                  NA               42677
2175             2679298                  NA             1318555
2176             2679298                  NA             1318555
2177             3194310                  NA             1562880
2178             6123949                  NA             3001027
2179             3194310                  NA             1562880
2180              866377                  58              420485
2181             4912449                  NA             2407307
2182             7142603                  NA             3563435
2183            19908595                  NA             9713298
2184             1568940                  NA              770847
2185            19908595                  NA             9713298
2186             2265926                  NA             1137581
2187             6123949                  NA             3001027
2188             4912449                  NA             2407307
2189             4610050                  NA             2315218
2190              164765                  21               82304
2191             7673379                  NA             3806912
2192             4864209                  NA             2434382
2193             7673379                  NA             3806912
2194                  NA                  NA                  NA
2195             3289701                  NA             1667851
2196             4692242                  NA             2342253
2197             2190750                  NA             1084347
2198             1420825                  NA              698689
2199             6123949                  NA             3001027
2200             4001701                  NA             2024424
2201             1010100                  NA              512085
2202              772902                  NA              380685
2203             4692242                  NA             2342253
2204              772902                  NA              380685
2205            19908595                  NA             9713298
2206             1215703                 422              594920
2207              915968                  NA              453044
2208             4912449                  NA             2407307
2209               35159                  NA               18160
2210              610723                  NA              300904
2211             6123949                  NA             3001027
2212             2505312                  NA             1250855
2213             2679298                  NA             1318555
2214            13111917                  NA             6515114
2215             2190750                  NA             1084347
2216             4864209                  NA             2434382
2217             7673379                  NA             3806912
2218             2296377                  NA             1160944
2219             2959386                  NA             1493164
2220             6123949                  NA             3001027
2221             2073546                  NA              975289
2222             2253528                  NA             1113732
2223            19908595                  NA             9713298
2224             1420825                  NA              698689
2225             6123949                  NA             3001027
2226             3289701                  NA             1667851
2227             6094752                  NA             2965233
2228             2296377                  NA             1160944
2229             2190750                  NA             1084347
2230             3678328                  NA             1837913
2231            13111917                  NA             6515114
2232             4001701                  NA             2024424
2233             2668688                  NA             1305000
2234            19908595                  NA             9713298
2235             4610050                  NA             2315218
2236              772902                  NA              380685
2237            13111917                  NA             6515114
2238             4912449                  NA             2407307
2239               24944                  NA               13144
2240              490769                  NA              249622
2241             1254675                  NA              635422
2242             4692242                  NA             2342253
2243             3194310                  NA             1562880
2244             1420825                  NA              698689
2245             2137223                  NA             1061042
2246             2190750                  NA             1084347
2247              915968                  NA              453044
2248            19908595                  NA             9713298
2249             4001701                  NA             2024424
2250             3678328                  NA             1837913
2251             1254675                  NA              635422
2252             3194310                  NA             1562880
2253             2073546                  NA              975289
2254             6123949                  NA             3001027
2255              399335                  NA              205955
2256             1010100                  NA              512085
2257                  NA                  NA                  NA
2258             1010100                  NA              512085
2259              202163                  NA              100828
2260             1010100                  NA              512085
2261              164765                  21               82304
2262             2265926                  NA             1137581
2263             6094752                  NA             2965233
2264              869755                  NA              427134
2265              341067                  NA              165567
2266              416839                  NA              205169
2267              515954                  NA              253400
2268              429312                  NA              206306
2269              314708                  NA              152116
2270              477056                  NA              234726
2271             1017724                  NA              503252
2272            19908595                  NA             9713298
2273             1568940                  NA              770847
2274             1316145                  NA              640643
2275             6094752                  NA             2965233
2276            19908595                  NA             9713298
2277             4912449                  NA             2407307
2278             4375604                  NA             2148947
2279              225745                  NA              112032
2280              803398                  NA              394257
2281              330119                  NA              161252
2282              552916                  NA              270938
2283             1420825                  NA              698689
2284             1086859                  NA              532509
2285              884359                  NA              435364
2286             2253528                  NA             1113732
2287             6094752                  NA             2965233
2288            19908595                  NA             9713298
2289              152640                  NA               75942
2290             1990873                  NA              978574
2291              803398                  NA              394257
2292              803398                  NA              394257
2293             2365501                  NA             1162773
2294              406575                  NA              197548
2295             1114368                  NA              538428
2296              775169                  NA              372915
2297              330119                  NA              161252
2298             1335804                  NA              641128
2299              552916                  NA              270938
2300              406575                  NA              197548
2301             6094752                  NA             2965233
2302             2253528                  NA             1113732
2303              711490                  NA              355020
2304            19908595                  NA             9713298
2305            19908595                  NA             9713298
2306             6094752                  NA             2965233
2307             4375604                  NA             2148947
2308            19908595                  NA             9713298
2309             3194310                  NA             1562880
2310             4912449                  NA             2407307
2311             7673379                  NA             3806912
2312            19908595                  NA             9713298
2313             6123949                  NA             3001027
2314             2296377                  NA             1160944
2315             7673379                  NA             3806912
2316             7673379                  NA             3806912
2317             4864209                  NA             2434382
2318             2668688                  NA             1305000
2319             2137223                  NA             1061042
2320             2265926                  NA             1137581
2321             3678328                  NA             1837913
2322             1264357                  NA              612537
2323             1798025                  NA              886709
2324             4864209                  NA             2434382
2325             2365501                  NA             1162773
2326              552916                  NA              270938
2327             3194310                  NA             1562880
2328             2668688                  NA             1305000
2329            19908595                  NA             9713298
2330             1613587                  NA              790463
2331             1335804                  NA              641128
2332              915968                  NA              453044
2333              152640                  NA               75942
2334             2137223                  NA             1061042
2335              775169                  NA              372915
2336              646794                  NA              322648
2337            13111917                  NA             6515114
2338              593318                  NA              293750
2339              873167                  NA              431639
2340             1568940                  NA              770847
2341             4610050                  NA             2315218
2342             6123949                  NA             3001027
2343              552916                  NA              270938
2344              772902                  NA              380685
2345             4692242                  NA             2342253
2346             9566955                  NA             4718471
2347             9566955                  NA             4718471
2348             2668688                  NA             1305000
2349             6123949                  NA             3001027
2350             7673379                  NA             3806912
2351             7673379                  NA             3806912
2352             6123949                  NA             3001027
2353             7673379                  NA             3806912
2354             2668688                  NA             1305000
2355             7673379                  NA             3806912
2356             2668688                  NA             1305000
2357             9566955                  NA             4718471
2358             2296377                  NA             1160944
2359             7673379                  NA             3806912
2360             2668688                  NA             1305000
2361             7673379                  NA             3806912
2362             7673379                  NA             3806912
2363             3194310                  NA             1562880
2364             2265926                  NA             1137581
2365             4864209                  NA             2434382
2366             4692242                  NA             2342253
2367             2073546                  NA              975289
2368                  NA                  NA                  NA
2369             2668688                  NA             1305000
2370             7673379                  NA             3806912
2371             7673379                  NA             3806912
2372               82044                  NA               42677
2373             4610050                  NA             2315218
2374             2073546                  NA              975289
2375            13111917                  NA             6515114
2376              844461                  NA              407362
2377             2668688                  NA             1305000
2378             7673379                  NA             3806912
2379              772902                  NA              380685
2380             4912449                  NA             2407307
2381            19908595                  NA             9713298
2382            19908595                  NA             9713298
2383             6123949                  NA             3001027
2384             2668688                  NA             1305000
2385             7673379                  NA             3806912
2386             6123949                  NA             3001027
2387             7673379                  NA             3806912
2388             7673379                  NA             3806912
2389             6232894                  NA             3033772
2390             2668688                  NA             1305000
2391             2668688                  NA             1305000
2392             2668688                  NA             1305000
2393             6123949                  NA             3001027
2394             6123949                  NA             3001027
2395             6232894                  NA             3033772
2396             7673379                  NA             3806912
2397             7673379                  NA             3806912
2398             1010100                  NA              512085
2399                  NA                  NA                  NA
2400              399335                  NA              205955
2401             4001701                  NA             2024424
2402             4001701                  NA             2024424
2403              399335                  NA              205955
2404              399335                  NA              205955
2405               73511                  NA               36809
2406             2505312                  NA             1250855
2407             4001701                  NA             2024424
2408              399335                  NA              205955
2409               73511                  NA               36809
2410             4001701                  NA             2024424
2411             4610050                  NA             2315218
2412             6123949                  NA             3001027
2413               73511                  NA               36809
2414             2679298                  NA             1318555
2415             6346083                  NA             3128067
2416            19908595                  NA             9713298
2417             4912449                  NA             2407307
2418             6123949                  NA             3001027
2419             6123949                  NA             3001027
2420             4692242                  NA             2342253
2421             1163462                  NA              568061
2422             6123949                  NA             3001027
2423             3289701                  NA             1667851
2424              844461                  NA              407362
2425            19908595                  NA             9713298
2426             6123949                  NA             3001027
2427             1316145                  NA              640643
2428              915968                  NA              453044
2429             4912449                  NA             2407307
2430            13111917                  NA             6515114
2431             6123949                  NA             3001027
2432             4610050                  NA             2315218
2433             1215703                 422              594920
2434             1163462                  NA              568061
2435            19908595                  NA             9713298
2436             2679298                  NA             1318555
2437             6123949                  NA             3001027
2438            19908595                  NA             9713298
2439            19908595                  NA             9713298
2440             3194310                  NA             1562880
2441            19908595                  NA             9713298
2442             4912449                  NA             2407307
2443             2679298                  NA             1318555
2444              901729                  NA              444836
2445             1215703                 422              594920
2446              771602                  NA              388362
2447              119685                  NA               62534
2448             2137223                  NA             1061042
2449              812506                  NA              397560
2450               55650                  NA               29968
2451              775169                  NA              372915
2452              493980                  NA              244298
2453              289726                  NA              140509
2454             1613587                  NA              790463
2455              966688                  NA              483251
2456             1798025                  NA              886709
2457              510290                  NA              256202
2458              552916                  NA              270938
2459             1420825                  NA              698689
2460             3289701                  NA             1667851
2461             4692242                  NA             2342253
2462             2073546                  NA              975289
2463            13111917                  NA             6515114
2464             1042393                  NA              516095
2465              288639                  NA              146836
2466             4375604                  NA             2148947
2467             4001701                  NA             2024424
2468             1254675                  NA              635422
2469             6123949                  NA             3001027
2470             3678328                  NA             1837913
2471             1254675                  NA              635422
2472             6123949                  NA             3001027
2473             2265926                  NA             1137581
2474              772902                  NA              380685
2475             4375604                  NA             2148947
2476            19908595                  NA             9713298
2477             2296377                  NA             1160944
2478             4912449                  NA             2407307
2479             1163462                  NA              568061
2480             1568940                  NA              770847
2481              496299                  NA              240510
2482             3289701                  NA             1667851
2483             2570862                  NA             1280273
2484             4692242                  NA             2342253
2485              844461                  NA              407362
2486             6094752                  NA             2965233
2487             6094752                  NA             2965233
2488             4001701                  NA             2024424
2489             1254675                  NA              635422
2490             1264357                  NA              612537
2491             6123949                  NA             3001027
2492             2109957                  NA             1038760
2493             3194310                  NA             1562880
2494             4912449                  NA             2407307
2495             1254675                  NA              635422
2496             4912449                  NA             2407307
2497            19908595                  NA             9713298
2498             1215703                 422              594920
2499             2840005                  NA             1374325
2500             4375604                  NA             2148947
2501             6123949                  NA             3001027
2502             2190750                  NA             1084347
2503             1568940                  NA              770847
2504              118541                  NA               59633
2505             4610050                  NA             2315218
2506             2570862                  NA             1280273
2507             2394673                  NA             1181313
2508            13111917                  NA             6515114
2509              844461                  NA              407362
2510             4912449                  NA             2407307
2511             4375604                  NA             2148947
2512             2253528                  NA             1113732
2513             4375604                  NA             2148947
2514             2296377                  NA             1160944
2515            19908595                  NA             9713298
2516             3678328                  NA             1837913
2517             3194310                  NA             1562880
2518             4912449                  NA             2407307
2519             6094752                  NA             2965233
2520             1990873                  NA              978574
2521             4912449                  NA             2407307
2522             2840005                  NA             1374325
2523             6346083                  NA             3128067
2524             6123949                  NA             3001027
2525             2109957                  NA             1038760
2526             1264357                  NA              612537
2527             2505312                  NA             1250855
2528             1420825                  NA              698689
2529              490769                  NA              249622
2530             2570862                  NA             1280273
2531             2813523                  NA             1375126
2532             3194310                  NA             1562880
2533             6094752                  NA             2965233
2534            19908595                  NA             9713298
2535              225745                  NA              112032
2536             1163462                  NA              568061
2537             1087068                  NA              546278
2538              330119                  NA              161252
2539              218515                  NA              108665
2540             1316145                  NA              640643
2541              225745                  NA              112032
2542             2813523                  NA             1375126
2543              202163                  NA              100828
2544             7673379                  NA             3806912
2545             7673379                  NA             3806912
2546              421854                  NA              208182
2547              831913                  NA              404751
2548              223223                  NA              111472
2549              422187                  NA              211290
2550              208406                  NA              100899
2551              884359                  NA              435364
2552             6123949                  NA             3001027
2553             6123949                  NA             3001027
2554             7673379                  NA             3806912
2555             7673379                  NA             3806912
2556             7673379                  NA             3806912
2557             7673379                  NA             3806912
2558             7673379                  NA             3806912
2559              966688                  NA              483251
2560             6123949                  NA             3001027
2561              966688                  NA              483251
2562              711490                  NA              355020
2563              225911                  NA              111978
2564             7673379                  NA             3806912
2565             6123949                  NA             3001027
2566             2668688                  NA             1305000
2567             2668688                  NA             1305000
2568              678995                  NA              341280
2569             2079759                  NA             1012336
2570             4375604                  NA             2148947
2571              479865                  NA              235485
2572              749290                  NA              363653
2573              593318                  NA              293750
2574              812506                  NA              397560
2575              884359                  NA              435364
2576             6346083                  NA             3128067
2577             6232894                  NA             3033772
2578              422733                  NA              212276
2579             6346083                  NA             3128067
2580             6346083                  NA             3128067
2581             3678328                  NA             1837913
2582             2959386                  NA             1493164
2583             7673379                  NA             3806912
2584              242972                  NA              122440
2585             1990873                  NA              978574
2586               79506                  NA               40147
2587              382218                  NA              189292
2588              174621                  NA               89435
2589             1798025                  NA              886709
2590             1282588                  NA              630858
2591                  NA                  NA                  NA
2592              901729                  NA              444836
2593              966688                  NA              483251
2594              323992                  NA              159346
2595             7673379                  NA             3806912
2596             9566955                  NA             4718471
2597             3678328                  NA             1837913
2598             2190750                  NA             1084347
2599             1568940                  NA              770847
2600             4610050                  NA             2315218
2601              550596                  NA              277195
2602             2959386                  NA             1493164
2603             2959386                  NA             1493164
2604             7142603                  NA             3563435
2605              133467                 110               67534
2606             1335804                  NA              641128
2607             1428923                  NA              708697
2608              966688                  NA              483251
2609             2365501                  NA             1162773
2610             1316145                  NA              640643
2611             1282588                  NA              630858
2612             3678328                  NA             1837913
2613             1215703                 422              594920
2614              901729                  NA              444836
2615             1114368                  NA              538428
2616             1335804                  NA              641128
2617              140356                  NA               72104
2618             4375604                  NA             2148947
2619               55983                  NA               28379
2620             3678328                  NA             1837913
2621             2959386                  NA             1493164
2622             4610050                  NA             2315218
2623              915968                  NA              453044
2624             1042393                  NA              516095
2625              915968                  NA              453044
2626             1008280                  NA              506526
2627               83760                  NA               42020
2628              304252                  NA              154587
2629             4610050                  NA             2315218
2630              140356                  NA               72104
2631             1042393                  NA              516095
2632             1254675                  NA              635422
2633              771602                  NA              388362
2634             4692242                  NA             2342253
2635               73511                  NA               36809
2636              678995                  NA              341280
2637              118541                  NA               59633
2638             7142603                  NA             3563435
2639             2570862                  NA             1280273
2640             2394673                  NA             1181313
2641             2959386                  NA             1493164
2642             7142603                  NA             3563435
2643             2505312                  NA             1250855
2644             4864209                  NA             2434382
2645             3289701                  NA             1667851
2646             2073546                  NA              975289
2647             2840005                  NA             1374325
2648             2137223                  NA             1061042
2649             2253528                  NA             1113732
2650             1010100                  NA              512085
2651               35159                  NA               18160
2652             6232894                  NA             3033772
2653             2365501                  NA             1162773
2654             4001701                  NA             2024424
2655            19908595                  NA             9713298
2656             7142603                  NA             3563435
2657             7142603                  NA             3563435
2658             7142603                  NA             3563435
2659            19908595                  NA             9713298
2660             9566955                  NA             4718471
2661             2840005                  NA             1374325
2662             1010100                  NA              512085
2663             2679298                  NA             1318555
2664             4001701                  NA             2024424
2665            19908595                  NA             9713298
2666             2959386                  NA             1493164
2667            19908595                  NA             9713298
2668             1981584                  NA             1011796
2669             1990873                  NA              978574
2670             2073546                  NA              975289
2671              772902                  NA              380685
2672              181055                  NA               90237
2673             7142603                  NA             3563435
2674             1010100                  NA              512085
2675             2190750                  NA             1084347
2676             1990873                  NA              978574
2677             1010100                  NA              512085
2678             2109957                  NA             1038760
2679             2570862                  NA             1280273
2680             6123949                  NA             3001027
2681             7142603                  NA             3563435
2682             7673379                  NA             3806912
2683              711490                  NA              355020
2684               82044                  NA               42677
2685             1282588                  NA              630858
2686             6346083                  NA             3128067
2687              803398                  NA              394257
2688             2079759                  NA             1012336
2689             1613587                  NA              790463
2690             4912449                  NA             2407307
2691            19908595                  NA             9713298
2692              678995                  NA              341280
2693             2137223                  NA             1061042
2694             2190750                  NA             1084347
2695             1335804                  NA              641128
2696              678995                  NA              341280
2697             1282588                  NA              630858
2698            19908595                  NA             9713298
2699              550596                  NA              277195
2700               82044                  NA               42677
2701             1282588                  NA              630858
2702            19908595                  NA             9713298
2703            19908595                  NA             9713298
2704              803398                  NA              394257
2705             1613587                  NA              790463
2706             1282588                  NA              630858
2707               82044                  NA               42677
2708             1264357                  NA              612537
2709             2668688                  NA             1305000
2710             4912449                  NA             2407307
2711            19908595                  NA             9713298
2712             9566955                  NA             4718471
2713              102555                  NA               50314
2714              831913                  NA              404751
2715              510290                  NA              256202
2716             9566955                  NA             4718471
2717              421854                  NA              208182
2718             3678328                  NA             1837913
2719              328011                  NA              164852
2720              421982                  NA              206161
2721             1282588                  NA              630858
2722             6232894                  NA             3033772
2723            19908595                  NA             9713298
2724              406575                  NA              197548
2725             7142603                  NA             3563435
2726               33828                 100               17746
2727              901729                  NA              444836
2728              429312                  NA              206306
2729             2813523                  NA             1375126
2730             7142603                  NA             3563435
2731             2959386                  NA             1493164
2732              863166                  NA              427343
2733            19908595                  NA             9713298
2734            19908595                  NA             9713298
2735            19908595                  NA             9713298
2736             3678328                  NA             1837913
2737            19908595                  NA             9713298
2738            19908595                  NA             9713298
2739              225745                  NA              112032
2740              552916                  NA              270938
2741              831913                  NA              404751
2742             1087068                  NA              546278
2743             1798025                  NA              886709
2744             6094752                  NA             2965233
2745            19908595                  NA             9713298
2746             4912449                  NA             2407307
2747            19908595                  NA             9713298
2748            19908595                  NA             9713298
2749            19908595                  NA             9713298
2750            19908595                  NA             9713298
2751             7673379                  NA             3806912
2752             7673379                  NA             3806912
2753             6123949                  NA             3001027
2754             4864209                  NA             2434382
2755             2668688                  NA             1305000
2756             2668688                  NA             1305000
2757             7673379                  NA             3806912
2758             7673379                  NA             3806912
2759             7673379                  NA             3806912
2760             7673379                  NA             3806912
2761             2668688                  NA             1305000
2762             2668688                  NA             1305000
2763             7673379                  NA             3806912
2764             6123949                  NA             3001027
2765             4864209                  NA             2434382
2766             9566955                  NA             4718471
2767             4912449                  NA             2407307
2768             1163462                  NA              568061
2769             2840005                  NA             1374325
2770             2253528                  NA             1113732
2771             7673379                  NA             3806912
2772               82044                  NA               42677
2773             6123949                  NA             3001027
2774            13111917                  NA             6515114
2775             6123949                  NA             3001027
2776             4864209                  NA             2434382
2777              772902                  NA              380685
2778             4692242                  NA             2342253
2779             2813523                  NA             1375126
2780              658694                  NA              322943
2781             7673379                  NA             3806912
2782             7673379                  NA             3806912
2783              844461                  NA              407362
2784             6232894                  NA             3033772
2785             1990873                  NA              978574
2786              771602                  NA              388362
2787            13111917                  NA             6515114
2788              755081                  NA              384572
2789             2253528                  NA             1113732
2790             6346083                  NA             3128067
2791               35159                  NA               18160
2792              749290                  NA              363653
2793             2190750                  NA             1084347
2794             2679298                  NA             1318555
2795             6123949                  NA             3001027
2796             2365501                  NA             1162773
2797             3289701                  NA             1667851
2798              406575                  NA              197548
2799             2073546                  NA              975289
2800             2394673                  NA             1181313
2801            13111917                  NA             6515114
2802             7673379                  NA             3806912
2803             2668688                  NA             1305000
2804             2668688                  NA             1305000
2805            13111917                  NA             6515114
2806             7673379                  NA             3806912
2807             7673379                  NA             3806912
2808             6123949                  NA             3001027
2809             7673379                  NA             3806912
2810             6123949                  NA             3001027
2811             6123949                  NA             3001027
2812             2668688                  NA             1305000
2813             7673379                  NA             3806912
2814             7673379                  NA             3806912
2815             2296377                  NA             1160944
2816             2668688                  NA             1305000
2817             2668688                  NA             1305000
2818             6346083                  NA             3128067
2819             7673379                  NA             3806912
2820             7673379                  NA             3806912
2821             7673379                  NA             3806912
2822             6232894                  NA             3033772
2823             2668688                  NA             1305000
2824             2668688                  NA             1305000
2825             2668688                  NA             1305000
2826             4864209                  NA             2434382
2827             7673379                  NA             3806912
2828             6123949                  NA             3001027
2829             1420825                  NA              698689
2830             1990873                  NA              978574
2831              803398                  NA              394257
2832             2668688                  NA             1305000
2833             6346083                  NA             3128067
2834             7673379                  NA             3806912
2835             1613587                  NA              790463
2836             4001701                  NA             2024424
2837             4864209                  NA             2434382
2838             2668688                  NA             1305000
2839             7673379                  NA             3806912
2840             6123949                  NA             3001027
2841             1042393                  NA              516095
2842             7673379                  NA             3806912
2843             6232894                  NA             3033772
2844             7673379                  NA             3806912
2845             2668688                  NA             1305000
2846             2668688                  NA             1305000
2847             2679298                  NA             1318555
2848              678995                  NA              341280
2849             7673379                  NA             3806912
2850             7673379                  NA             3806912
2851             4864209                  NA             2434382
2852             2668688                  NA             1305000
2853             7673379                  NA             3806912
2854             6123949                  NA             3001027
2855             7673379                  NA             3806912
2856             7673379                  NA             3806912
2857             6123949                  NA             3001027
2858             9566955                  NA             4718471
2859             6232894                  NA             3033772
2860             6123949                  NA             3001027
2861             7673379                  NA             3806912
2862             7673379                  NA             3806912
2863             6232894                  NA             3033772
2864             6232894                  NA             3033772
2865             7673379                  NA             3806912
2866             7673379                  NA             3806912
2867             4912449                  NA             2407307
2868             2668688                  NA             1305000
2869             6232894                  NA             3033772
2870             9566955                  NA             4718471
2871             4001701                  NA             2024424
2872             4001701                  NA             2024424
2873             4001701                  NA             2024424
2874             4001701                  NA             2024424
2875             4001701                  NA             2024424
2876             4001701                  NA             2024424
2877                  NA                  NA                  NA
2878               32108                  NA               16461
2879             3289701                  NA             1667851
2880             4001701                  NA             2024424
2881              915968                  NA              453044
2882             2679298                  NA             1318555
2883             4001701                  NA             2024424
2884            13111917                  NA             6515114
2885             2137223                  NA             1061042
2886             2253528                  NA             1113732
2887             2109957                  NA             1038760
2888             1568940                  NA              770847
2889              164765                  21               82304
2890             1428923                  NA              708697
2891              966688                  NA              483251
2892             1420825                  NA              698689
2893             2570862                  NA             1280273
2894             2813523                  NA             1375126
2895             1042393                  NA              516095
2896             1010100                  NA              512085
2897            13111917                  NA             6515114
2898             6123949                  NA             3001027
2899              772902                  NA              380685
2900               82044                  NA               42677
2901             2570862                  NA             1280273
2902              406575                  NA              197548
2903             2679298                  NA             1318555
2904             4912449                  NA             2407307
2905            13111917                  NA             6515114
2906             4912449                  NA             2407307
2907             4912449                  NA             2407307
2908             2073546                  NA              975289
2909                  NA                  NA                  NA
2910                  NA                  NA                  NA
2911             1613587                  NA              790463
2912             1670949                  NA              818990
2913             3289701                  NA             1667851
2914             2073546                  NA              975289
2915             1254675                  NA              635422
2916             2679298                  NA             1318555
2917             3194310                  NA             1562880
2918            19908595                  NA             9713298
2919             4912449                  NA             2407307
2920             6123949                  NA             3001027
2921            13111917                  NA             6515114
2922            19908595                  NA             9713298
2923              308919                  NA              149938
2924               82044                  NA               42677
2925             7142603                  NA             3563435
2926             2570862                  NA             1280273
2927              844461                  NA              407362
2928             1670949                  NA              818990
2929             1215703                 422              594920
2930             1215703                 422              594920
2931             4912449                  NA             2407307
2932            19908595                  NA             9713298
2933             1670949                  NA              818990
2934             2679298                  NA             1318555
2935             6123949                  NA             3001027
2936            13111917                  NA             6515114
2937             2679298                  NA             1318555
2938            19908595                  NA             9713298
2939            19908595                  NA             9713298
2940             6123949                  NA             3001027
2941             4912449                  NA             2407307
2942            19908595                  NA             9713298
2943             1420825                  NA              698689
2944            19908595                  NA             9713298
2945            19908595                  NA             9713298
2946             1254675                  NA              635422
2947             1163462                  NA              568061
2948              803398                  NA              394257
2949             1087068                  NA              546278
2950            19908595                  NA             9713298
2951             1670949                  NA              818990
2952              844461                  NA              407362
2953             3678328                  NA             1837913
2954             4375604                  NA             2148947
2955             1254675                  NA              635422
2956             6094752                  NA             2965233
2957             6094752                  NA             2965233
2958             1254675                  NA              635422
2959             6346083                  NA             3128067
2960             3678328                  NA             1837913
2961             3678328                  NA             1837913
2962             3678328                  NA             1837913
2963             4375604                  NA             2148947
2964             4375604                  NA             2148947
2965             6094752                  NA             2965233
2966             6094752                  NA             2965233
2967             6094752                  NA             2965233
2968             6094752                  NA             2965233
2969             4375604                  NA             2148947
2970            19908595                  NA             9713298
2971             3678328                  NA             1837913
2972             2253528                  NA             1113732
2973             1254675                  NA              635422
2974             1254675                  NA              635422
2975             6346083                  NA             3128067
2976             6094752                  NA             2965233
2977             4375604                  NA             2148947
2978              275693                  NA              137408
2979              251635                  NA              126980
2980             1420825                  NA              698689
2981              550596                  NA              277195
2982             6123949                  NA             3001027
2983             1420825                  NA              698689
2984              749290                  NA              363653
2985             2679298                  NA             1318555
2986              552916                  NA              270938
2987              658694                  NA              322943
2988             2265926                  NA             1137581
2989              383732                  NA              189495
2990             2679298                  NA             1318555
2991              772902                  NA              380685
2992             2959386                  NA             1493164
2993             2959386                  NA             1493164
2994             6346083                  NA             3128067
2995             9566955                  NA             4718471
2996              330119                  NA              161252
2997             1798025                  NA              886709
2998            19908595                  NA             9713298
2999             6346083                  NA             3128067
3000             7673379                  NA             3806912
3001             6123949                  NA             3001027
3002             7673379                  NA             3806912
3003             7673379                  NA             3806912
3004             7673379                  NA             3806912
3005             2109957                  NA             1038760
3006              469484                  NA              227358
3007              906883                  NA              464093
3008             1114368                  NA              538428
3009               42151                  NA               21738
3010              267282                  NA              132495
3011              496299                  NA              240510
3012              288639                  NA              146836
3013             6123949                  NA             3001027
3014             2253528                  NA             1113732
3015              406575                  NA              197548
3016              884359                  NA              435364
3017             2137223                  NA             1061042
3018              313961                  NA              153951
3019              749290                  NA              363653
3020             2570862                  NA             1280273
3021             2296377                  NA             1160944
3022             6123949                  NA             3001027
3023             7673379                  NA             3806912
3024             2679298                  NA             1318555
3025             2679298                  NA             1318555
3026            13111917                  NA             6515114
3027             2109957                  NA             1038760
3028             1568940                  NA              770847
3029            13111917                  NA             6515114
3030            13111917                  NA             6515114
3031             6346083                  NA             3128067
3032             6232894                  NA             3033772
3033              181055                  NA               90237
3034             1568940                  NA              770847
3035              386064                  NA              186619
3036              288639                  NA              146836
3037             6232894                  NA             3033772
3038              612898                  NA              299409
3039              901729                  NA              444836
3040              711490                  NA              355020
3041              493980                  NA              244298
3042              384740                  NA              183928
3043              552916                  NA              270938
3044             6346083                  NA             3128067
3045             6232894                  NA             3033772
3046             2668688                  NA             1305000
3047             2668688                  NA             1305000
3048             6346083                  NA             3128067
3049             2668688                  NA             1305000
3050             6346083                  NA             3128067
3051             2253528                  NA             1113732
3052             7673379                  NA             3806912
3053             4610050                  NA             2315218
3054             2959386                  NA             1493164
3055             2959386                  NA             1493164
3056             4692242                  NA             2342253
3057             1613587                  NA              790463
3058             4610050                  NA             2315218
3059              406575                  NA              197548
3060              322285                  NA              159719
3061              308386                  NA              152054
3062             1670949                  NA              818990
3063             7673379                  NA             3806912
3064             4001701                  NA             2024424
3065             7142603                  NA             3563435
3066             2959386                  NA             1493164
3067             1428923                  NA              708697
3068             1008280                  NA              506526
3069              222604                  NA              109360
3070             7142603                  NA             3563435
3071             7142603                  NA             3563435
3072             2137223                  NA             1061042
3073             1428923                  NA              708697
3074             4375604                  NA             2148947
3075             4864209                  NA             2434382
3076             9566955                  NA             4718471
3077             9566955                  NA             4718471
3078             2190750                  NA             1084347
3079              382218                  NA              189292
3080              222604                  NA              109360
3081             4610050                  NA             2315218
3082              445213                  NA              223753
3083              711490                  NA              355020
3084             1254675                  NA              635422
3085             7142603                  NA             3563435
3086             4001701                  NA             2024424
3087               96299                  NA               52279
3088              399335                  NA              205955
3089             4001701                  NA             2024424
3090             4610050                  NA             2315218
3091               62150                  NA               31276
3092             4692242                  NA             2342253
3093            19908595                  NA             9713298
3094             9566955                  NA             4718471
3095             9566955                  NA             4718471
3096             9566955                  NA             4718471
3097             7142603                  NA             3563435
3098             2365501                  NA             1162773
3099             1981584                  NA             1011796
3100              308919                  NA              149938
3101            13111917                  NA             6515114
3102             2296377                  NA             1160944
3103              772902                  NA              380685
3104              873167                  NA              431639
3105             2505312                  NA             1250855
3106             3289701                  NA             1667851
3107             1981584                  NA             1011796
3108             2394673                  NA             1181313
3109            13111917                  NA             6515114
3110             7142603                  NA             3563435
3111             4692242                  NA             2342253
3112             2840005                  NA             1374325
3113             2079759                  NA             1012336
3114             6346083                  NA             3128067
3115             6346083                  NA             3128067
3116             7142603                  NA             3563435
3117             2959386                  NA             1493164
3118             2959386                  NA             1493164
3119             7142603                  NA             3563435
3120             2959386                  NA             1493164
3121             4692242                  NA             2342253
3122             3289701                  NA             1667851
3123              915968                  NA              453044
3124              322285                  NA              159719
3125             2265926                  NA             1137581
3126             2813523                  NA             1375126
3127             4692242                  NA             2342253
3128             2394673                  NA             1181313
3129             1990873                  NA              978574
3130             3194310                  NA             1562880
3131              901729                  NA              444836
3132             2296377                  NA             1160944
3133             2137223                  NA             1061042
3134             7673379                  NA             3806912
3135             2190750                  NA             1084347
3136              422733                  NA              212276
3137              658694                  NA              322943
3138             1568940                  NA              770847
3139             6123949                  NA             3001027
3140             2570862                  NA             1280273
3141             7673379                  NA             3806912
3142             6123949                  NA             3001027
3143              496299                  NA              240510
3144             2109957                  NA             1038760
3145             1335804                  NA              641128
3146             6123949                  NA             3001027
3147             1568940                  NA              770847
3148             3289701                  NA             1667851
3149              406575                  NA              197548
3150              844461                  NA              407362
3151              772902                  NA              380685
3152             7142603                  NA             3563435
3153             2190750                  NA             1084347
3154              755081                  NA              384572
3155               47759                  NA               23950
3156            19908595                  NA             9713298
3157              915968                  NA              453044
3158              422187                  NA              211290
3159             6346083                  NA             3128067
3160              591397                  NA              285117
3161             2679298                  NA             1318555
3162             1008280                  NA              506526
3163             1428923                  NA              708697
3164             2265926                  NA             1137581
3165             7142603                  NA             3563435
3166             7673379                  NA             3806912
3167             2813523                  NA             1375126
3168             2265926                  NA             1137581
3169             7142603                  NA             3563435
3170             6346083                  NA             3128067
3171             2570862                  NA             1280273
3172             7142603                  NA             3563435
3173            19908595                  NA             9713298
3174             4375604                  NA             2148947
3175              422733                  NA              212276
3176              406575                  NA              197548
3177              915968                  NA              453044
3178             1215703                 422              594920
3179            13111917                  NA             6515114
3180             2570862                  NA             1280273
3181             3194310                  NA             1562880
3182             6123949                  NA             3001027
3183             1990873                  NA              978574
3184             7142603                  NA             3563435
3185             2190750                  NA             1084347
3186             6346083                  NA             3128067
3187             1990873                  NA              978574
3188             1428923                  NA              708697
3189              646794                  NA              322648
3190             2109957                  NA             1038760
3191             3194310                  NA             1562880
3192             4692242                  NA             2342253
3193             9566955                  NA             4718471
3194             6123949                  NA             3001027
3195             2813523                  NA             1375126
3196             4692242                  NA             2342253
3197            13111917                  NA             6515114
3198             2840005                  NA             1374325
3199             2365501                  NA             1162773
3200              490769                  NA              249622
3201             7673379                  NA             3806912
3202              755081                  NA              384572
3203             2813523                  NA             1375126
3204             7142603                  NA             3563435
3205             2265926                  NA             1137581
3206             2296377                  NA             1160944
3207              772902                  NA              380685
3208             1017724                  NA              503252
3209             1420825                  NA              698689
3210             1981584                  NA             1011796
3211            19908595                  NA             9713298
3212             2365501                  NA             1162773
3213             2109957                  NA             1038760
3214             2265926                  NA             1137581
3215             2813523                  NA             1375126
3216             7142603                  NA             3563435
3217             7142603                  NA             3563435
3218              867161                  NA              431851
3219              386064                  NA              186619
3220             4864209                  NA             2434382
3221              437609                  NA              223186
3222              445213                  NA              223753
3223             7142603                  NA             3563435
3224             6346083                  NA             3128067
3225             2190750                  NA             1084347
3226              152640                  NA               75942
3227              803398                  NA              394257
3228             2365501                  NA             1162773
3229             2813523                  NA             1375126
3230            19908595                  NA             9713298
3231             2253528                  NA             1113732
3232             6346083                  NA             3128067
3233             2079759                  NA             1012336
3234             1613587                  NA              790463
3235              314708                  NA              152116
3236              469484                  NA              227358
3237              291491                  NA              148126
3238              406575                  NA              197548
3239             2137223                  NA             1061042
3240             9566955                  NA             4718471
3241             6346083                  NA             3128067
3242             9566955                  NA             4718471
3243             6346083                  NA             3128067
3244             9566955                  NA             4718471
3245             9566955                  NA             4718471
3246             9566955                  NA             4718471
3247             6346083                  NA             3128067
3248             9566955                  NA             4718471
3249              884359                  NA              435364
3250             6346083                  NA             3128067
3251              221648                  NA              106730
3252             9566955                  NA             4718471
3253             6346083                  NA             3128067
3254             3678328                  NA             1837913
3255              416839                  NA              205169
3256             3678328                  NA             1837913
3257             1086859                  NA              532509
3258              564466                  NA              276108
3259             6232894                  NA             3033772
3260              469484                  NA              227358
3261              314708                  NA              152116
3262             4912449                  NA             2407307
3263             7142603                  NA             3563435
3264             6346083                  NA             3128067
3265              181055                  NA               90237
3266             2959386                  NA             1493164
3267             7673379                  NA             3806912
3268             2073546                  NA              975289
3269             2079759                  NA             1012336
3270                  NA                  NA                  NA
3271             7673379                  NA             3806912
3272            13111917                  NA             6515114
3273             7673379                  NA             3806912
3274              164765                  21               82304
3275             6232894                  NA             3033772
3276             7673379                  NA             3806912
3277             9566955                  NA             4718471
3278             2253528                  NA             1113732
3279             7673379                  NA             3806912
3280              202163                  NA              100828
3281              164765                  21               82304
3282                  NA                  NA                  NA
3283              399335                  NA              205955
3284              399335                  NA              205955
3285             4001701                  NA             2024424
3286             6123949                  NA             3001027
3287              772902                  NA              380685
3288              772902                  NA              380685
3289            19908595                  NA             9713298
3290              242972                  NA              122440
3291              275693                  NA              137408
3292             2394673                  NA             1181313
3293                  NA                  NA                  NA
3294                  NA                  NA                  NA
3295              406575                  NA              197548
3296             6094752                  NA             2965233
3297             6094752                  NA             2965233
3298             6094752                  NA             2965233
3299             3678328                  NA             1837913
3300            19908595                  NA             9713298
3301               82044                  NA               42677
3302              812506                  NA              397560
3303              147453                  NA               73990
3304             7673379                  NA             3806912
3305              700578                  NA              343022
3306              676035                  NA              330879
3307            19908595                  NA             9713298
3308              386064                  NA              186619
3309             2668688                  NA             1305000
3310             2079759                  NA             1012336
3311              658694                  NA              322943
3312             4864209                  NA             2434382
3313              105950                  NA               53095
3314             4692242                  NA             2342253
3315               35159                  NA               18160
3316             1010100                  NA              512085
3317            13111917                  NA             6515114
3318               55650                  NA               29968
3319             7142603                  NA             3563435
3320             6346083                  NA             3128067
3321             2959386                  NA             1493164
3322             1990873                  NA              978574
3323             3289701                  NA             1667851
3324              915968                  NA              453044
3325             3289701                  NA             1667851
3326            13111917                  NA             6515114
3327             4610050                  NA             2315218
3328             2679298                  NA             1318555
3329             9566955                  NA             4718471
3330             2840005                  NA             1374325
3331             1264357                  NA              612537
3332             9566955                  NA             4718471
3333             4692242                  NA             2342253
3334             2073546                  NA              975289
3335             7142603                  NA             3563435
3336              401702                  NA              198867
3337              510290                  NA              256202
3338              140356                  NA               72104
3339              119685                  NA               62534
3340              803398                  NA              394257
3341             1798025                  NA              886709
3342             7673379                  NA             3806912
3343              218515                  NA              108665
3344              242972                  NA              122440
3345              966688                  NA              483251
3346            19908595                  NA             9713298
3347             6123949                  NA             3001027
3348             2073546                  NA              975289
3349              152640                  NA               75942
3350             1087068                  NA              546278
3351               83760                  NA               42020
3352              391957                  NA              189194
3353             2959386                  NA             1493164
3354             1254675                  NA              635422
3355              164765                  21               82304
3356              419715                  NA              207197
3357             4864209                  NA             2434382
3358             1316145                  NA              640643
3359             3194310                  NA             1562880
3360             7673379                  NA             3806912
3361             4864209                  NA             2434382
3362             7673379                  NA             3806912
3363             9566955                  NA             4718471
3364                  NA                  NA                  NA
3365             7673379                  NA             3806912
3366               82044                  NA               42677
3367              386064                  NA              186619
3368             1254675                  NA              635422
3369             6123949                  NA             3001027
3370              277944                  NA              140783
3371             7673379                  NA             3806912
3372              118541                  NA               59633
3373              510290                  NA              256202
3374             1114368                  NA              538428
3375              406575                  NA              197548
3376              158478                  NA               79833
3377             3678328                  NA             1837913
3378              771602                  NA              388362
3379             3678328                  NA             1837913
3380               79008                  NA               40763
3381             7142603                  NA             3563435
3382             1010100                  NA              512085
3383              119685                  NA               62534
3384               55650                  NA               29968
3385             2296377                  NA             1160944
3386             4692242                  NA             2342253
3387              772902                  NA              380685
3388             4692242                  NA             2342253
3389             2679298                  NA             1318555
3390             7673379                  NA             3806912
3391              181055                  NA               90237
3392              289726                  NA              140509
3393                  NA                  NA                  NA
3394             4912449                  NA             2407307
3395              164765                  21               82304
3396             3678328                  NA             1837913
3397             6346083                  NA             3128067
3398             1010100                  NA              512085
3399             1010100                  NA              512085
3400              202163                  NA              100828
3401               47759                  NA               23950
3402              479865                  NA              235485
3403             6094752                  NA             2965233
3404             6094752                  NA             2965233
3405              166222                  NA               84066
3406              711490                  NA              355020
3407            19908595                  NA             9713298
3408             6094752                  NA             2965233
3409             3678328                  NA             1837913
3410             6094752                  NA             2965233
3411             2073546                  NA              975289
3412             6346083                  NA             3128067
3413             4864209                  NA             2434382
3414             6123949                  NA             3001027
3415             1215703                 422              594920
3416             1086859                  NA              532509
3417             3289701                  NA             1667851
3418             4001701                  NA             2024424
3419                  NA                  NA                  NA
3420                  NA                  NA                  NA
3421              490769                  NA              249622
3422               55650                  NA               29968
3423             1008280                  NA              506526
3424             1798025                  NA              886709
3425             1420825                  NA              698689
3426             7673379                  NA             3806912
3427             7673379                  NA             3806912
3428             7673379                  NA             3806912
3429             7673379                  NA             3806912
3430             2109957                  NA             1038760
3431             4864209                  NA             2434382
3432             7673379                  NA             3806912
3433             7673379                  NA             3806912
3434             4001701                  NA             2024424
3435             2079759                  NA             1012336
3436             6232894                  NA             3033772
3437             9566955                  NA             4718471
3438             7673379                  NA             3806912
3439            19908595                  NA             9713298
3440             4001701                  NA             2024424
3441             4001701                  NA             2024424
3442             4692242                  NA             2342253
3443              399335                  NA              205955
3444             2505312                  NA             1250855
3445             2296377                  NA             1160944
3446            13111917                  NA             6515114
3447             2679298                  NA             1318555
3448              164765                  21               82304
3449             4001701                  NA             2024424
3450              202163                  NA              100828
3451              915968                  NA              453044
3452              803398                  NA              394257
3453               32108                  NA               16461
3454               13910                  NA                7232
3455             1264357                  NA              612537
3456             4001701                  NA             2024424
3457              399335                  NA              205955
3458              202163                  NA              100828
3459             2505312                  NA             1250855
3460             2073546                  NA              975289
3461             1264357                  NA              612537
3462             2505312                  NA             1250855
3463             4610050                  NA             2315218
3464             1613587                  NA              790463
3465             6123949                  NA             3001027
3466               20543                  NA               10091
3467             1215703                 422              594920
3468              676035                  NA              330879
3469              646794                  NA              322648
3470             3678328                  NA             1837913
3471             1981584                  NA             1011796
3472             6094752                  NA             2965233
3473                  NA                  NA                  NA
3474             6094752                  NA             2965233
3475             6094752                  NA             2965233
3476             6094752                  NA             2965233
3477             6094752                  NA             2965233
3478             3678328                  NA             1837913
3479             1254675                  NA              635422
3480             1254675                  NA              635422
3481             1335804                  NA              641128
3482             4375604                  NA             2148947
3483            13111917                  NA             6515114
3484             3678328                  NA             1837913
3485             6094752                  NA             2965233
3486              185147                  NA               92047
3487             4375604                  NA             2148947
3488             1254675                  NA              635422
3489             6094752                  NA             2965233
3490             9566955                  NA             4718471
3491             7673379                  NA             3806912
3492              185147                  NA               92047
3493              869755                  NA              427134
3494              591397                  NA              285117
3495              844461                  NA              407362
3496             6123949                  NA             3001027
3497             1114368                  NA              538428
3498             2679298                  NA             1318555
3499              326159                  NA              160906
3500              225745                  NA              112032
3501             2668688                  NA             1305000
3502             6232894                  NA             3033772
3503              676035                  NA              330879
3504             2959386                  NA             1493164
3505             3678328                  NA             1837913
3506              133467                 110               67534
3507              156131                  NA               77615
3508              281712                  NA              142477
3509              884359                  NA              435364
3510               79008                  NA               40763
3511               55983                  NA               28379
3512              156131                  NA               77615
3513             3678328                  NA             1837913
3514             3678328                  NA             1837913
3515             4375604                  NA             2148947
3516             2079759                  NA             1012336
3517              105950                  NA               53095
3518             1254675                  NA              635422
3519              593318                  NA              293750
3520               25381                 138               13207
3521             4610050                  NA             2315218
3522              488436                  NA              240478
3523               55650                  NA               29968
3524              488436                  NA              240478
3525             9566955                  NA             4718471
3526             7673379                  NA             3806912
3527               35159                  NA               18160
3528             3289701                  NA             1667851
3529              185147                  NA               92047
3530              382218                  NA              189292
3531              118541                  NA               59633
3532             1428923                  NA              708697
3533              966688                  NA              483251
3534             4864209                  NA             2434382
3535              771602                  NA              388362
3536             3289701                  NA             1667851
3537              867161                  NA              431851
3538              445213                  NA              223753
3539             1316145                  NA              640643
3540             2570862                  NA             1280273
3541                  NA                  NA                  NA
3542             2073546                  NA              975289
3543             7142603                  NA             3563435
3544             2959386                  NA             1493164
3545             2959386                  NA             1493164
3546              225745                  NA              112032
3547             7142603                  NA             3563435
3548             4692242                  NA             2342253
3549              202163                  NA              100828
3550               73511                  NA               36809
3551             1010100                  NA              512085
3552             9566955                  NA             4718471
3553             2959386                  NA             1493164
3554             4001701                  NA             2024424
3555              844461                  NA              407362
3556             2137223                  NA             1061042
3557             2679298                  NA             1318555
3558             3289701                  NA             1667851
3559              867161                  NA              431851
3560              164765                  21               82304
3561             2296377                  NA             1160944
3562              164765                  21               82304
3563             6232894                  NA             3033772
3564             3289701                  NA             1667851
3565             6346083                  NA             3128067
3566             2190750                  NA             1084347
3567             2109957                  NA             1038760
3568              174621                  NA               89435
3569             4864209                  NA             2434382
3570             2109957                  NA             1038760
3571             2668688                  NA             1305000
3572             2190750                  NA             1084347
3573              863166                  NA              427343
3574             6232894                  NA             3033772
3575             1163462                  NA              568061
3576               55983                  NA               28379
3577             7142603                  NA             3563435
3578              477056                  NA              234726
3579            13111917                  NA             6515114
3580              171284                  NA               83922
3581              313961                  NA              153951
3582             4375604                  NA             2148947
3583              658694                  NA              322943
3584              221648                  NA              106730
3585              678995                  NA              341280
3586              678995                  NA              341280
3587              550596                  NA              277195
3588             4375604                  NA             2148947
3589             6094752                  NA             2965233
3590             7673379                  NA             3806912
3591             7673379                  NA             3806912
3592             1316145                  NA              640643
3593             7673379                  NA             3806912
3594             7673379                  NA             3806912
3595             2296377                  NA             1160944
3596              119685                  NA               62534
3597              966688                  NA              483251
3598             4864209                  NA             2434382
3599             7673379                  NA             3806912
3600             7673379                  NA             3806912
3601             7673379                  NA             3806912
3602              202163                  NA              100828
3603             9566955                  NA             4718471
3604             7673379                  NA             3806912
3605             2668688                  NA             1305000
3606             4864209                  NA             2434382
3607             2296377                  NA             1160944
3608             2505312                  NA             1250855
3609             2505312                  NA             1250855
3610              399335                  NA              205955
3611             1042393                  NA              516095
3612              202163                  NA              100828
3613             4610050                  NA             2315218
3614              585485                  NA              292820
3615                  NA                  NA                  NA
3616             2505312                  NA             1250855
3617              119685                  NA               62534
3618             2394673                  NA             1181313
3619              658694                  NA              322943
3620              550596                  NA              277195
3621             4375604                  NA             2148947
3622              771602                  NA              388362
3623             6094752                  NA             2965233
3624             6123949                  NA             3001027
3625              564466                  NA              276108
3626              269418                  NA              135977
3627              313961                  NA              153951
3628              429312                  NA              206306
3629             6123949                  NA             3001027
3630             6346083                  NA             3128067
3631             1282588                  NA              630858
3632             7673379                  NA             3806912
3633             6123949                  NA             3001027
3634             6346083                  NA             3128067
3635              966688                  NA              483251
3636              510290                  NA              256202
3637             2668688                  NA             1305000
3638             2668688                  NA             1305000
3639              884359                  NA              435364
3640             4692242                  NA             2342253
3641             1254675                  NA              635422
3642              323992                  NA              159346
3643             1087068                  NA              546278
3644             1335804                  NA              641128
3645             1798025                  NA              886709
3646             3289701                  NA             1667851
3647              140356                  NA               72104
3648               79008                  NA               40763
3649             2959386                  NA             1493164
3650               47759                  NA               23950
3651             4610050                  NA             2315218
3652              222604                  NA              109360
3653              199352                  NA               99597
3654             1017724                  NA              503252
3655             4001701                  NA             2024424
3656              445213                  NA              223753
3657              488436                  NA              240478
3658               35159                  NA               18160
3659            19908595                  NA             9713298
3660             2505312                  NA             1250855
3661             7142603                  NA             3563435
3662             2959386                  NA             1493164
3663            19908595                  NA             9713298
3664             6346083                  NA             3128067
3665             7142603                  NA             3563435
3666              490769                  NA              249622
3667             2296377                  NA             1160944
3668             7142603                  NA             3563435
3669             1568940                  NA              770847
3670             1981584                  NA             1011796
3671              164765                  21               82304
3672              915968                  NA              453044
3673               73511                  NA               36809
3674             2365501                  NA             1162773
3675             2265926                  NA             1137581
3676             9566955                  NA             4718471
3677              202163                  NA              100828
3678             2570862                  NA             1280273
3679              493980                  NA              244298
3680             4864209                  NA             2434382
3681             4864209                  NA             2434382
3682             1087068                  NA              546278
3683              330119                  NA              161252
3684             7673379                  NA             3806912
3685             7142603                  NA             3563435
3686             2079759                  NA             1012336
3687              406575                  NA              197548
3688              323992                  NA              159346
3689            19908595                  NA             9713298
3690             1215703                 422              594920
3691              812506                  NA              397560
3692              429312                  NA              206306
3693              884359                  NA              435364
3694              812506                  NA              397560
3695             1798025                  NA              886709
3696              884359                  NA              435364
3697             7142603                  NA             3563435
3698              831913                  NA              404751
3699            19908595                  NA             9713298
3700             7673379                  NA             3806912
3701             7673379                  NA             3806912
3702              711490                  NA              355020
3703             3289701                  NA             1667851
3704             7673379                  NA             3806912
3705              803398                  NA              394257
3706               82044                  NA               42677
3707              330119                  NA              161252
3708                  NA                  NA                  NA
3709             1010100                  NA              512085
3710             2109957                  NA             1038760
3711             1428923                  NA              708697
3712             2570862                  NA             1280273
3713              445213                  NA              223753
3714             7673379                  NA             3806912
3715               35159                  NA               18160
3716            13111917                  NA             6515114
3717             9566955                  NA             4718471
3718             9566955                  NA             4718471
3719             1215703                 422              594920
3720             6123949                  NA             3001027
3721             7673379                  NA             3806912
3722             2296377                  NA             1160944
3723             2668688                  NA             1305000
3724             6232894                  NA             3033772
3725                  NA                  NA                  NA
3726               32108                  NA               16461
3727              399335                  NA              205955
3728             1086859                  NA              532509
3729             6123949                  NA             3001027
3730             6346083                  NA             3128067
3731            19908595                  NA             9713298
3732              678995                  NA              341280
3733             4375604                  NA             2148947
3734             1670949                  NA              818990
3735              658694                  NA              322943
3736              479865                  NA              235485
3737              386064                  NA              186619
3738             6123949                  NA             3001027
3739             2679298                  NA             1318555
3740             2668688                  NA             1305000
3741              275693                  NA              137408
3742             1335804                  NA              641128
3743             1163462                  NA              568061
3744             1087068                  NA              546278
3745             6346083                  NA             3128067
3746             6346083                  NA             3128067
3747              133834                  NA               70614
3748             1042393                  NA              516095
3749               47759                  NA               23950
3750             2959386                  NA             1493164
3751              567287                  NA              281431
3752              658694                  NA              322943
3753               35159                  NA               18160
3754               64701                  NA               32652
3755             2959386                  NA             1493164
3756              119685                  NA               62534
3757              156131                  NA               77615
3758              399335                  NA              205955
3759             9566955                  NA             4718471
3760             7142603                  NA             3563435
3761             2394673                  NA             1181313
3762              915968                  NA              453044
3763             1010100                  NA              512085
3764             1420825                  NA              698689
3765             2840005                  NA             1374325
3766             3289701                  NA             1667851
3767             1981584                  NA             1011796
3768              915968                  NA              453044
3769              844461                  NA              407362
3770              901729                  NA              444836
3771             2959386                  NA             1493164
3772             3194310                  NA             1562880
3773             1254675                  NA              635422
3774             1114368                  NA              538428
3775             2137223                  NA             1061042
3776             1282588                  NA              630858
3777             1163462                  NA              568061
3778             2570862                  NA             1280273
3779             4864209                  NA             2434382
3780             2137223                  NA             1061042
3781             2505312                  NA             1250855
3782             2679298                  NA             1318555
3783             3194310                  NA             1562880
3784             3194310                  NA             1562880
3785             7673379                  NA             3806912
3786             9566955                  NA             4718471
3787             1163462                  NA              568061
3788             1282588                  NA              630858
3789             6123949                  NA             3001027
3790             7673379                  NA             3806912
3791             7142603                  NA             3563435
3792             2813523                  NA             1375126
3793             2394673                  NA             1181313
3794              275693                  NA              137408
3795              251635                  NA              126980
3796             6346083                  NA             3128067
3797             7142603                  NA             3563435
3798              275693                  NA              137408
3799              251635                  NA              126980
3800             1087068                  NA              546278
3801              812506                  NA              397560
3802             2365501                  NA             1162773
3803              314708                  NA              152116
3804              493980                  NA              244298
3805             6346083                  NA             3128067
3806             6232894                  NA             3033772
3807             9566955                  NA             4718471
3808             2668688                  NA             1305000
3809            19908595                  NA             9713298
3810             2679298                  NA             1318555
3811            19908595                  NA             9713298
3812              975551                 164              484741
3813              975551                 164              484741
3814             6123949                  NA             3001027
3815            19908595                  NA             9713298
3816                  NA                  NA                  NA
3817             2073546                  NA              975289
3818             6094752                  NA             2965233
3819             2679298                  NA             1318555
3820              772902                  NA              380685
3821              277944                  NA              140783
3822              421854                  NA              208182
3823             4610050                  NA             2315218
3824             2265926                  NA             1137581
3825             2265926                  NA             1137581
3826             2265926                  NA             1137581
3827             2679298                  NA             1318555
3828             2679298                  NA             1318555
3829              496299                  NA              240510
3830              772902                  NA              380685
3831             2813523                  NA             1375126
3832             2079759                  NA             1012336
3833             4610050                  NA             2315218
3834              383732                  NA              189495
3835            19908595                  NA             9713298
3836             2679298                  NA             1318555
3837              772902                  NA              380685
3838             1215703                 422              594920
3839              383732                  NA              189495
3840            19908595                  NA             9713298
3841             2679298                  NA             1318555
3842             3194310                  NA             1562880
3843             3194310                  NA             1562880
3844             1087068                  NA              546278
3845             6094752                  NA             2965233
3846             9566955                  NA             4718471
3847             6123949                  NA             3001027
3848             3194310                  NA             1562880
3849             6123949                  NA             3001027
3850             6123949                  NA             3001027
3851             3194310                  NA             1562880
3852              772902                  NA              380685
3853            13111917                  NA             6515114
3854              274339                  NA              133897
3855             1282588                  NA              630858
3856              510290                  NA              256202
3857             2079759                  NA             1012336
3858             2365501                  NA             1162773
3859              496299                  NA              240510
3860              496299                  NA              240510
3861              274339                  NA              133897
3862              422733                  NA              212276
3863                  NA                  NA                  NA
3864            19908595                  NA             9713298
3865             2365501                  NA             1162773
3866            19908595                  NA             9713298
3867             2679298                  NA             1318555
3868              496299                  NA              240510
3869              496299                  NA              240510
3870              274339                  NA              133897
3871             2365501                  NA             1162773
3872             6123949                  NA             3001027
3873             6346083                  NA             3128067
3874              437609                  NA              223186
3875              906883                  NA              464093
3876              185147                  NA               92047
3877             6346083                  NA             3128067
3878             2190750                  NA             1084347
3879             7142603                  NA             3563435
3880             9566955                  NA             4718471
3881             1010100                  NA              512085
3882             1428923                  NA              708697
3883            19908595                  NA             9713298
3884             6346083                  NA             3128067
3885             3678328                  NA             1837913
3886              469484                  NA              227358
3887             2109957                  NA             1038760
3888             6123949                  NA             3001027
3889             3678328                  NA             1837913
3890             3678328                  NA             1837913
3891              322285                  NA              159719
3892                  NA                  NA                  NA
3893               55650                  NA               29968
3894             2505312                  NA             1250855
3895             1254675                  NA              635422
3896             1316145                  NA              640643
3897              202163                  NA              100828
3898             2813523                  NA             1375126
3899              225911                  NA              111978
3900              328011                  NA              164852
3901             2190750                  NA             1084347
3902             1428923                  NA              708697
3903              844461                  NA              407362
3904              550596                  NA              277195
3905              711490                  NA              355020
3906                  NA                  NA                  NA
3907              399335                  NA              205955
3908             6346083                  NA             3128067
3909            19908595                  NA             9713298
3910            19908595                  NA             9713298
3911             2253528                  NA             1113732
3912              867161                  NA              431851
3913             1086859                  NA              532509
3914             2253528                  NA             1113732
3915             1254675                  NA              635422
3916             3678328                  NA             1837913
3917             1798025                  NA              886709
3918             7673379                  NA             3806912
3919             7673379                  NA             3806912
3920             2668688                  NA             1305000
3921             6346083                  NA             3128067
3922             1798025                  NA              886709
3923             6232894                  NA             3033772
3924              330119                  NA              161252
3925              678995                  NA              341280
3926             1798025                  NA              886709
3927             2959386                  NA             1493164
3928               79008                  NA               40763
3929              105950                  NA               53095
3930              222604                  NA              109360
3931               77140                  NA               40384
3932              158478                  NA               79833
3933              154481                  NA               75375
3934              222604                  NA              109360
3935             4692242                  NA             2342253
3936            13111917                  NA             6515114
3937             2959386                  NA             1493164
3938             7142603                  NA             3563435
3939             2109957                  NA             1038760
3940            13111917                  NA             6515114
3941             2265926                  NA             1137581
3942             4864209                  NA             2434382
3943             1613587                  NA              790463
3944             7142603                  NA             3563435
3945             7673379                  NA             3806912
3946               24944                  NA               13144
3947             1420825                  NA              698689
3948              772902                  NA              380685
3949             1017724                  NA              503252
3950             7142603                  NA             3563435
3951             4864209                  NA             2434382
3952             4864209                  NA             2434382
3953              171284                  NA               83922
3954             6123949                  NA             3001027
3955              218515                  NA              108665
3956            19908595                  NA             9713298
3957               82044                  NA               42677
3958             6346083                  NA             3128067
3959             1568940                  NA              770847
3960             6346083                  NA             3128067
3961             6094752                  NA             2965233
3962             7673379                  NA             3806912
3963             2668688                  NA             1305000
3964             2668688                  NA             1305000
3965             6232894                  NA             3033772
3966             6346083                  NA             3128067
3967             7673379                  NA             3806912
3968             2296377                  NA             1160944
3969            19908595                  NA             9713298
3970             6123949                  NA             3001027
3971             1017724                  NA              503252
3972             7673379                  NA             3806912
3973             9566955                  NA             4718471
3974             4864209                  NA             2434382
3975             2668688                  NA             1305000
3976             6232894                  NA             3033772
3977             6232894                  NA             3033772
3978             2668688                  NA             1305000
3979             2668688                  NA             1305000
3980             6346083                  NA             3128067
3981             9566955                  NA             4718471
3982             2137223                  NA             1061042
3983             7673379                  NA             3806912
3984             2668688                  NA             1305000
3985             2668688                  NA             1305000
3986             4001701                  NA             2024424
3987             2505312                  NA             1250855
3988             2505312                  NA             1250855
3989             1163462                  NA              568061
3990            19908595                  NA             9713298
3991             6123949                  NA             3001027
3992            19908595                  NA             9713298
3993             1282588                  NA              630858
3994             4375604                  NA             2148947
3995             4375604                  NA             2148947
3996             3678328                  NA             1837913
3997             6094752                  NA             2965233
3998             2253528                  NA             1113732
3999             4375604                  NA             2148947
4000             4375604                  NA             2148947
4001             2073546                  NA              975289
4002              658694                  NA              322943
4003             1017724                  NA              503252
4004             3289701                  NA             1667851
4005            13111917                  NA             6515114
4006              772902                  NA              380685
4007             2394673                  NA             1181313
4008              382983                  NA              189968
4009             1114368                  NA              538428
4010              884359                  NA              435364
4011             1042393                  NA              516095
4012             2505312                  NA             1250855
4013             2109957                  NA             1038760
4014             3289701                  NA             1667851
4015              612898                  NA              299409
4016             1215703                 422              594920
4017             1420825                  NA              698689
4018              496299                  NA              240510
4019               82044                  NA               42677
4020             2109957                  NA             1038760
4021              399335                  NA              205955
4022              550596                  NA              277195
4023              803398                  NA              394257
4024             6346083                  NA             3128067
4025              901729                  NA              444836
4026              314708                  NA              152116
4027             7142603                  NA             3563435
4028             6123949                  NA             3001027
4029             7142603                  NA             3563435
4030             1981584                  NA             1011796
4031             1990873                  NA              978574
4032             7673379                  NA             3806912
4033              202163                  NA              100828
4034             2365501                  NA             1162773
4035              391957                  NA              189194
4036             3678328                  NA             1837913
4037            19908595                  NA             9713298
4038             6123949                  NA             3001027
4039              144705                  NA               71707
4040              119685                  NA               62534
4041             2959386                  NA             1493164
4042             2668688                  NA             1305000
4043             2365501                  NA             1162773
4044              803398                  NA              394257
4045             1981584                  NA             1011796
4046             2679298                  NA             1318555
4047              222831                  NA              106479
4048              591397                  NA              285117
4049             1087068                  NA              546278
4050             2570862                  NA             1280273
4051             2505312                  NA             1250855
4052              399335                  NA              205955
4053               32108                  NA               16461
4054              330119                  NA              161252
4055             1254675                  NA              635422
4056              289726                  NA              140509
4057             2073546                  NA              975289
4058             2813523                  NA             1375126
4059             1613587                  NA              790463
4060              406575                  NA              197548
4061              490769                  NA              249622
4062             2813523                  NA             1375126
4063              496299                  NA              240510
4064              755081                  NA              384572
4065             1981584                  NA             1011796
4066             6123949                  NA             3001027
4067                  NA                  NA                  NA
4068             4912449                  NA             2407307
4069             6346083                  NA             3128067
4070            13111917                  NA             6515114
4071             2840005                  NA             1374325
4072            19908595                  NA             9713298
4073             4912449                  NA             2407307
4074               24944                  NA               13144
4075            19908595                  NA             9713298
4076             6094752                  NA             2965233
4077             1335804                  NA              641128
4078              496299                  NA              240510
4079              477056                  NA              234726
4080             6123949                  NA             3001027
4081             1114368                  NA              538428
4082              225745                  NA              112032
4083             2668688                  NA             1305000
4084              552916                  NA              270938
4085             7673379                  NA             3806912
4086              326159                  NA              160906
4087             1017724                  NA              503252
4088             7142603                  NA             3563435
4089             2109957                  NA             1038760
4090             2365501                  NA             1162773
4091             4864209                  NA             2434382
4092              552916                  NA              270938
4093             2296377                  NA             1160944
4094              844461                  NA              407362
4095              646794                  NA              322648
4096             3678328                  NA             1837913
4097              171284                  NA               83922
4098             2679298                  NA             1318555
4099             6094752                  NA             2965233
4100             1335804                  NA              641128
4101              493980                  NA              244298
4102              678995                  NA              341280
4103              510290                  NA              256202
4104              697704                  NA              348873
4105             1670949                  NA              818990
4106             2679298                  NA             1318555
4107              772902                  NA              380685
4108             4375604                  NA             2148947
4109             2570862                  NA             1280273
4110             6346083                  NA             3128067
4111             6123949                  NA             3001027
4112               13910                  NA                7232
4113              399335                  NA              205955
4114             4610050                  NA             2315218
4115             4912449                  NA             2407307
4116            13111917                  NA             6515114
4117             1254675                  NA              635422
4118             6094752                  NA             2965233
4119             1254675                  NA              635422
4120             1254675                  NA              635422
4121             6094752                  NA             2965233
4122             2253528                  NA             1113732
4123              477056                  NA              234726
4124              591397                  NA              285117
4125              510290                  NA              256202
4126             1670949                  NA              818990
4127             2109957                  NA             1038760
4128             6346083                  NA             3128067
4129              211078                  NA              103187
4130               66376                  NA               33782
4131             3678328                  NA             1837913
4132               35159                  NA               18160
4133             7673379                  NA             3806912
4134             2959386                  NA             1493164
4135             1087068                  NA              546278
4136             3678328                  NA             1837913
4137             2959386                  NA             1493164
4138             7142603                  NA             3563435
4139              164765                  21               82304
4140              202163                  NA              100828
4141              755081                  NA              384572
4142             9566955                  NA             4718471
4143             9566955                  NA             4718471
4144             2394673                  NA             1181313
4145            13111917                  NA             6515114
4146             1114368                  NA              538428
4147             1613587                  NA              790463
4148             1990873                  NA              978574
4149             1670949                  NA              818990
4150              277944                  NA              140783
4151              515954                  NA              253400
4152             7142603                  NA             3563435
4153             7142603                  NA             3563435
4154               35159                  NA               18160
4155             1010100                  NA              512085
4156             1798025                  NA              886709
4157              152640                  NA               75942
4158              225745                  NA              112032
4159             1086859                  NA              532509
4160              658694                  NA              322943
4161             4912449                  NA             2407307
4162             2668688                  NA             1305000
4163              269278                 239              135933
4164             9566955                  NA             4718471
4165             7673379                  NA             3806912
4166             2668688                  NA             1305000
4167             2296377                  NA             1160944
4168             6123949                  NA             3001027
4169             2190750                  NA             1084347
4170             1335804                  NA              641128
4171             2813523                  NA             1375126
4172             2668688                  NA             1305000
4173             7673379                  NA             3806912
4174              867161                  NA              431851
4175             7673379                  NA             3806912
4176             6232894                  NA             3033772
4177             9566955                  NA             4718471
4178             7673379                  NA             3806912
4179             6232894                  NA             3033772
4180             2668688                  NA             1305000
4181             6232894                  NA             3033772
4182             6232894                  NA             3033772
4183             7673379                  NA             3806912
4184             2505312                  NA             1250855
4185             4001701                  NA             2024424
4186              658694                  NA              322943
4187              901729                  NA              444836
4188              803398                  NA              394257
4189             2505312                  NA             1250855
4190             6123949                  NA             3001027
4191              803398                  NA              394257
4192             2265926                  NA             1137581
4193             1316145                  NA              640643
4194             6123949                  NA             3001027
4195             2265926                  NA             1137581
4196             4912449                  NA             2407307
4197             4375604                  NA             2148947
4198             3678328                  NA             1837913
4199             3678328                  NA             1837913
4200             4375604                  NA             2148947
4201               96299                  NA               52279
4202             4375604                  NA             2148947
4203             6094752                  NA             2965233
4204            19908595                  NA             9713298
4205             1420825                  NA              698689
4206             1087068                  NA              546278
4207             6232894                  NA             3033772
4208             6123949                  NA             3001027
4209             2679298                  NA             1318555
4210              658694                  NA              322943
4211             6346083                  NA             3128067
4212             9566955                  NA             4718471
4213             2296377                  NA             1160944
4214              416839                  NA              205169
4215              174621                  NA               89435
4216             7673379                  NA             3806912
4217             7673379                  NA             3806912
4218              515954                  NA              253400
4219              156131                  NA               77615
4220             6123949                  NA             3001027
4221             2073546                  NA              975289
4222                  NA                  NA                  NA
4223             3194310                  NA             1562880
4224             2073546                  NA              975289
4225            19908595                  NA             9713298
4226              274339                  NA              133897
4227             2668688                  NA             1305000
4228             6346083                  NA             3128067
4229              538985                  NA              265985
4230             2365501                  NA             1162773
4231             2668688                  NA             1305000
4232             6346083                  NA             3128067
4233             6346083                  NA             3128067
4234             7142603                  NA             3563435
4235             4864209                  NA             2434382
4236             7142603                  NA             3563435
4237             4692242                  NA             2342253
4238             2959386                  NA             1493164
4239              422187                  NA              211290
4240              382218                  NA              189292
4241              199352                  NA               99597
4242             7142603                  NA             3563435
4243             9566955                  NA             4718471
4244              405280                  NA              196717
4245              493980                  NA              244298
4246             1670949                  NA              818990
4247              281712                  NA              142477
4248             4864209                  NA             2434382
4249              199352                  NA               99597
4250              490769                  NA              249622
4251             7142603                  NA             3563435
4252             4001701                  NA             2024424
4253             4001701                  NA             2024424
4254            13111917                  NA             6515114
4255            19908595                  NA             9713298
4256             6346083                  NA             3128067
4257            19908595                  NA             9713298
4258             9566955                  NA             4718471
4259             2079759                  NA             1012336
4260             2959386                  NA             1493164
4261             2959386                  NA             1493164
4262             9566955                  NA             4718471
4263             6346083                  NA             3128067
4264             6346083                  NA             3128067
4265             4692242                  NA             2342253
4266             2959386                  NA             1493164
4267             6346083                  NA             3128067
4268             7142603                  NA             3563435
4269             4692242                  NA             2342253
4270             4692242                  NA             2342253
4271             2959386                  NA             1493164
4272             6346083                  NA             3128067
4273             9566955                  NA             4718471
4274             4864209                  NA             2434382
4275             9566955                  NA             4718471
4276             7673379                  NA             3806912
4277             2668688                  NA             1305000
4278             6123949                  NA             3001027
4279             2813523                  NA             1375126
4280             4375604                  NA             2148947
4281             2813523                  NA             1375126
4282              755081                  NA              384572
4283             3289701                  NA             1667851
4284             9566955                  NA             4718471
4285             7673379                  NA             3806912
4286             7142603                  NA             3563435
4287            13111917                  NA             6515114
4288             2959386                  NA             1493164
4289             2840005                  NA             1374325
4290            13111917                  NA             6515114
4291             7673379                  NA             3806912
4292            13111917                  NA             6515114
4293            13111917                  NA             6515114
4294            13111917                  NA             6515114
4295             4864209                  NA             2434382
4296            13111917                  NA             6515114
4297             2296377                  NA             1160944
4298             6346083                  NA             3128067
4299             7142603                  NA             3563435
4300              496299                  NA              240510
4301              591397                  NA              285117
4302              844461                  NA              407362
4303             6346083                  NA             3128067
4304             7142603                  NA             3563435
4305              119685                  NA               62534
4306             7142603                  NA             3563435
4307              288639                  NA              146836
4308             6346083                  NA             3128067
4309             1316145                  NA              640643
4310              289726                  NA              140509
4311             6232894                  NA             3033772
4312             1420825                  NA              698689
4313             6346083                  NA             3128067
4314              469484                  NA              227358
4315              812506                  NA              397560
4316              270495                  NA              134616
4317             1087068                  NA              546278
4318              772902                  NA              380685
4319              772902                  NA              380685
4320             4864209                  NA             2434382
4321              496299                  NA              240510
4322              189900                  NA               93505
4323             3194310                  NA             1562880
4324             2265926                  NA             1137581
4325             6232894                  NA             3033772
4326             4912449                  NA             2407307
4327              493980                  NA              244298
4328              550596                  NA              277195
4329              866377                  58              420485
4330              225745                  NA              112032
4331             7673379                  NA             3806912
4332              490769                  NA              249622
4333             1010100                  NA              512085
4334            19908595                  NA             9713298
4335             1163462                  NA              568061
4336             4375604                  NA             2148947
4337             7673379                  NA             3806912
4338             6346083                  NA             3128067
4339             7673379                  NA             3806912
4340             9566955                  NA             4718471
4341             7673379                  NA             3806912
4342             1163462                  NA              568061
4343             2668688                  NA             1305000
4344             7673379                  NA             3806912
4345               32108                  NA               16461
4346             1316145                  NA              640643
4347             6094752                  NA             2965233
4348             1254675                  NA              635422
4349             1254675                  NA              635422
4350             6094752                  NA             2965233
4351              383732                  NA              189495
4352              593318                  NA              293750
4353              884359                  NA              435364
4354              700578                  NA              343022
4355             6346083                  NA             3128067
4356              275693                  NA              137408
4357              538985                  NA              265985
4358             6346083                  NA             3128067
4359             3194310                  NA             1562880
4360              308919                  NA              149938
4361             2137223                  NA             1061042
4362             6123949                  NA             3001027
4363             3194310                  NA             1562880
4364             4912449                  NA             2407307
4365              700578                  NA              343022
4366             2137223                  NA             1061042
4367             6346083                  NA             3128067
4368              775169                  NA              372915
4369              775169                  NA              372915
4370              330119                  NA              161252
4371              610723                  NA              300904
4372             6232894                  NA             3033772
4373             1670949                  NA              818990
4374             1086859                  NA              532509
4375              658694                  NA              322943
4376             6232894                  NA             3033772
4377             1670949                  NA              818990
4378             7142603                  NA             3563435
4379             3678328                  NA             1837913
4380             1335804                  NA              641128
4381              510290                  NA              256202
4382             9566955                  NA             4718471
4383               96846                  NA               48894
4384              133467                 110               67534
4385              140356                  NA               72104
4386             2959386                  NA             1493164
4387             9566955                  NA             4718471
4388            13111917                  NA             6515114
4389             3678328                  NA             1837913
4390               35159                  NA               18160
4391             2505312                  NA             1250855
4392              552916                  NA              270938
4393             4692242                  NA             2342253
4394             6346083                  NA             3128067
4395             7142603                  NA             3563435
4396             7673379                  NA             3806912
4397             7673379                  NA             3806912
4398             2840005                  NA             1374325
4399             2190750                  NA             1084347
4400             2296377                  NA             1160944
4401             7142603                  NA             3563435
4402             4864209                  NA             2434382
4403             6232894                  NA             3033772
4404              803398                  NA              394257
4405             2137223                  NA             1061042
4406             1086859                  NA              532509
4407              775169                  NA              372915
4408             6346083                  NA             3128067
4409              289726                  NA              140509
4410              422733                  NA              212276
4411             1282588                  NA              630858
4412              658694                  NA              322943
4413              242972                  NA              122440
4414              510290                  NA              256202
4415             7673379                  NA             3806912
4416             7673379                  NA             3806912
4417             4864209                  NA             2434382
4418             7673379                  NA             3806912
4419             2668688                  NA             1305000
4420              490769                  NA              249622
4421             6094752                  NA             2965233
4422             1254675                  NA              635422
4423              225745                  NA              112032
4424             2959386                  NA             1493164
4425             1798025                  NA              886709
4426             2265926                  NA             1137581
4427              772902                  NA              380685
4428             6123949                  NA             3001027
4429              496299                  NA              240510
4430             2365501                  NA             1162773
4431             1215703                 422              594920
4432              405280                  NA              196717
4433              493980                  NA              244298
4434             6232894                  NA             3033772
4435             6346083                  NA             3128067
4436             4864209                  NA             2434382
4437             9566955                  NA             4718471
4438             9566955                  NA             4718471
4439             4001701                  NA             2024424
4440              281712                  NA              142477
4441             4001701                  NA             2024424
4442             9566955                  NA             4718471
4443             4692242                  NA             2342253
4444             2959386                  NA             1493164
4445             2959386                  NA             1493164
4446             7142603                  NA             3563435
4447             7142603                  NA             3563435
4448              422187                  NA              211290
4449             2190750                  NA             1084347
4450             2570862                  NA             1280273
4451              164765                  21               82304
4452             1990873                  NA              978574
4453             4692242                  NA             2342253
4454              119685                  NA               62534
4455             1990873                  NA              978574
4456              490769                  NA              249622
4457             1335804                  NA              641128
4458             6346083                  NA             3128067
4459             6346083                  NA             3128067
4460             1670949                  NA              818990
4461            13111917                  NA             6515114
4462             2265926                  NA             1137581
4463              136132                  NA               67729
4464              382218                  NA              189292
4465              222604                  NA              109360
4466              304252                  NA              154587
4467              199352                  NA               99597
4468              488436                  NA              240478
4469              866377                  58              420485
4470            13111917                  NA             6515114
4471             2679298                  NA             1318555
4472              772902                  NA              380685
4473            13111917                  NA             6515114
4474            13111917                  NA             6515114
4475              866377                  58              420485
4476            13111917                  NA             6515114
4477             3194310                  NA             1562880
4478              199352                  NA               99597
4479            13111917                  NA             6515114
4480             1215703                 422              594920
4481              202163                  NA              100828
4482              277944                  NA              140783
4483               73511                  NA               36809
4484             3289701                  NA             1667851
4485             6094752                  NA             2965233
4486             1981584                  NA             1011796
4487               79008                  NA               40763
4488              490769                  NA              249622
4489             7142603                  NA             3563435
4490               47759                  NA               23950
4491               55650                  NA               29968
4492               24944                  NA               13144
4493             4001701                  NA             2024424
4494             1042393                  NA              516095
4495            19908595                  NA             9713298
4496              391957                  NA              189194
4497              288639                  NA              146836
4498             1335804                  NA              641128
4499              419715                  NA              207197
4500               55650                  NA               29968
4501             2394673                  NA             1181313
4502             2959386                  NA             1493164
4503             2959386                  NA             1493164
4504             4692242                  NA             2342253
4505             1282588                  NA              630858
4506              242972                  NA              122440
4507             4864209                  NA             2434382
4508             6232894                  NA             3033772
4509             6346083                  NA             3128067
4510             1316145                  NA              640643
4511            19908595                  NA             9713298
4512             4912449                  NA             2407307
4513             4375604                  NA             2148947
4514             2679298                  NA             1318555
4515              755081                  NA              384572
4516             2679298                  NA             1318555
4517             1613587                  NA              790463
4518             2679298                  NA             1318555
4519             6123949                  NA             3001027
4520             2190750                  NA             1084347
4521             6123949                  NA             3001027
4522             2190750                  NA             1084347
4523            13111917                  NA             6515114
4524             4001701                  NA             2024424
4525             2959386                  NA             1493164
4526             9566955                  NA             4718471
4527             1428923                  NA              708697
4528             4610050                  NA             2315218
4529              202163                  NA              100828
4530             7142603                  NA             3563435
4531              591397                  NA              285117
4532            13111917                  NA             6515114
4533              844461                  NA              407362
4534             3194310                  NA             1562880
4535             2190750                  NA             1084347
4536            13111917                  NA             6515114
4537             1316145                  NA              640643
4538             2079759                  NA             1012336
4539             4864209                  NA             2434382
4540             2668688                  NA             1305000
4541              975551                 164              484741
4542             7673379                  NA             3806912
4543             2505312                  NA             1250855
4544                  NA                  NA                  NA
4545            19908595                  NA             9713298
4546            19908595                  NA             9713298
4547              119685                  NA               62534
4548            19908595                  NA             9713298
4549             1254675                  NA              635422
4550             4375604                  NA             2148947
4551             4375604                  NA             2148947
4552            19908595                  NA             9713298
4553              421854                  NA              208182
4554             7673379                  NA             3806912
4555              496299                  NA              240510
4556              700578                  NA              343022
4557              564466                  NA              276108
4558              289726                  NA              140509
4559              755081                  NA              384572
4560              771602                  NA              388362
4561             2959386                  NA             1493164
4562             2959386                  NA             1493164
4563             2959386                  NA             1493164
4564             2570862                  NA             1280273
4565             2840005                  NA             1374325
4566             1282588                  NA              630858
4567              803398                  NA              394257
4568             2190750                  NA             1084347
4569             1568940                  NA              770847
4570             2296377                  NA             1160944
4571              711490                  NA              355020
4572             4692242                  NA             2342253
4573            13111917                  NA             6515114
4574             7142603                  NA             3563435
4575              552916                  NA              270938
4576             2296377                  NA             1160944
4577              915968                  NA              453044
4578             1981584                  NA             1011796
4579             2296377                  NA             1160944
4580              406575                  NA              197548
4581             1428923                  NA              708697
4582             2570862                  NA             1280273
4583             1568940                  NA              770847
4584             4864209                  NA             2434382
4585              772902                  NA              380685
4586              291491                  NA              148126
4587              678995                  NA              341280
4588             3194310                  NA             1562880
4589             6123949                  NA             3001027
4590            13111917                  NA             6515114
4591             1264357                  NA              612537
4592             9566955                  NA             4718471
4593              119685                  NA               62534
4594             2073546                  NA              975289
4595             1316145                  NA              640643
4596             4610050                  NA             2315218
4597             4864209                  NA             2434382
4598             4864209                  NA             2434382
4599             1981584                  NA             1011796
4600             4001701                  NA             2024424
4601             4375604                  NA             2148947
4602             6094752                  NA             2965233
4603              171284                  NA               83922
4604              383732                  NA              189495
4605              274339                  NA              133897
4606                  NA                  NA                  NA
4607             2079759                  NA             1012336
4608             6232894                  NA             3033772
4609              422733                  NA              212276
4610             2959386                  NA             1493164
4611              711490                  NA              355020
4612             9566955                  NA             4718471
4613             2959386                  NA             1493164
4614             2959386                  NA             1493164
4615             2959386                  NA             1493164
4616             9566955                  NA             4718471
4617             6346083                  NA             3128067
4618             2959386                  NA             1493164
4619             6346083                  NA             3128067
4620             2959386                  NA             1493164
4621             2959386                  NA             1493164
4622             2959386                  NA             1493164
4623            13111917                  NA             6515114
4624             4692242                  NA             2342253
4625             2840005                  NA             1374325
4626             1428923                  NA              708697
4627             7142603                  NA             3563435
4628             1568940                  NA              770847
4629             1163462                  NA              568061
4630              966688                  NA              483251
4631             2253528                  NA             1113732
4632             7673379                  NA             3806912
4633              322285                  NA              159719
4634              174621                  NA               89435
4635              646794                  NA              322648
4636              510290                  NA              256202
4637             9566955                  NA             4718471
4638              901729                  NA              444836
4639             1335804                  NA              641128
4640             7673379                  NA             3806912
4641              749290                  NA              363653
4642             1087068                  NA              546278
4643             2190750                  NA             1084347
4644             3289701                  NA             1667851
4645             3194310                  NA             1562880
4646             2190750                  NA             1084347
4647             1568940                  NA              770847
4648             6346083                  NA             3128067
4649            13111917                  NA             6515114
4650             6346083                  NA             3128067
4651             9566955                  NA             4718471
4652             1798025                  NA              886709
4653             3678328                  NA             1837913
4654             3194310                  NA             1562880
4655               82044                  NA               42677
4656               24944                  NA               13144
4657             4001701                  NA             2024424
4658               47759                  NA               23950
4659             1017724                  NA              503252
4660            13111917                  NA             6515114
4661            13111917                  NA             6515114
4662             1010100                  NA              512085
4663                  NA                  NA                  NA
4664             1215703                 422              594920
4665             2365501                  NA             1162773
4666             6094752                  NA             2965233
4667             4375604                  NA             2148947
4668             6094752                  NA             2965233
4669             6094752                  NA             2965233
4670              437609                  NA              223186
4671               84423                  NA               43002
4672             2109957                  NA             1038760
4673              158665                  NA               83943
4674              339707                  NA              171627
4675              612898                  NA              299409
4676              308386                  NA              152054
4677              593318                  NA              293750
4678              901729                  NA              444836
4679              585485                  NA              292820
4680            19908595                  NA             9713298
4681              678995                  NA              341280
4682               76726                  NA               39209
4683              477056                  NA              234726
4684              831913                  NA              404751
4685              382983                  NA              189968
4686               79008                  NA               40763
4687               24944                  NA               13144
4688            19908595                  NA             9713298
4689              382983                  NA              189968
4690              422733                  NA              212276
4691             9566955                  NA             4718471
4692              469484                  NA              227358
4693              399335                  NA              205955
4694             4001701                  NA             2024424
4695                  NA                  NA                  NA
4696             2505312                  NA             1250855
4697            13111917                  NA             6515114
4698             4912449                  NA             2407307
4699            19908595                  NA             9713298
4700             1254675                  NA              635422
4701             1254675                  NA              635422
4702             1613587                  NA              790463
4703             2365501                  NA             1162773
4704             1215703                 422              594920
4705              869755                  NA              427134
4706              102555                  NA               50314
4707             1215703                 422              594920
4708              181055                  NA               90237
4709              437609                  NA              223186
4710              966688                  NA              483251
4711              154481                  NA               75375
4712             2959386                  NA             1493164
4713             9566955                  NA             4718471
4714             9566955                  NA             4718471
4715             2959386                  NA             1493164
4716             2959386                  NA             1493164
4717             3194310                  NA             1562880
4718             7142603                  NA             3563435
4719             9566955                  NA             4718471
4720             2137223                  NA             1061042
4721              755081                  NA              384572
4722             1990873                  NA              978574
4723              966688                  NA              483251
4724             1086859                  NA              532509
4725             6094752                  NA             2965233
4726             2679298                  NA             1318555
4727             2505312                  NA             1250855
4728              901729                  NA              444836
4729             1086859                  NA              532509
4730             1282588                  NA              630858
4731             6346083                  NA             3128067
4732             6346083                  NA             3128067
4733             1316145                  NA              640643
4734              269278                 239              135933
4735              421854                  NA              208182
4736              421854                  NA              208182
4737             2679298                  NA             1318555
4738               82044                  NA               42677
4739              113854                  NA               53949
4740              158665                  NA               83943
4741              550596                  NA              277195
4742             1215703                 422              594920
4743                  NA                  NA                  NA
4744             2505312                  NA             1250855
4745              399335                  NA              205955
4746               13910                  NA                7232
4747             4912449                  NA             2407307
4748              222831                  NA              106479
4749             2296377                  NA             1160944
4750             6123949                  NA             3001027
4751              422733                  NA              212276
4752             1114368                  NA              538428
4753             2668688                  NA             1305000
4754             2959386                  NA             1493164
4755              906883                  NA              464093
4756              140356                  NA               72104
4757              144705                  NA               71707
4758              678995                  NA              341280
4759             1282588                  NA              630858
4760              269278                 239              135933
4761             3678328                  NA             1837913
4762              339707                  NA              171627
4763                  NA                  NA                  NA
4764             2959386                  NA             1493164
4765              158478                  NA               79833
4766             3678328                  NA             1837913
4767              304252                  NA              154587
4768             9566955                  NA             4718471
4769             6346083                  NA             3128067
4770             2959386                  NA             1493164
4771             2679298                  NA             1318555
4772              844461                  NA              407362
4773             1042393                  NA              516095
4774             2394673                  NA             1181313
4775              164765                  21               82304
4776             2365501                  NA             1162773
4777             2394673                  NA             1181313
4778             2840005                  NA             1374325
4779              288639                  NA              146836
4780             2679298                  NA             1318555
4781             1114368                  NA              538428
4782               47759                  NA               23950
4783            19908595                  NA             9713298
4784              510290                  NA              256202
4785              339707                  NA              171627
4786              416839                  NA              205169
4787              267282                  NA              132495
4788             2505312                  NA             1250855
4789             1215703                 422              594920
4790              251635                  NA              126980
4791             1163462                  NA              568061
4792                  NA                  NA                  NA
4793              772902                  NA              380685
4794              593318                  NA              293750
4795              550596                  NA              277195
4796              281712                  NA              142477
4797             6346083                  NA             3128067
4798              771602                  NA              388362
4799             2505312                  NA             1250855
4800              251635                  NA              126980
4801              183297                  NA               91287
4802            13111917                  NA             6515114
4803             1042393                  NA              516095
4804             4001701                  NA             2024424
4805            19908595                  NA             9713298
4806             2365501                  NA             1162773
4807             2959386                  NA             1493164
4808             1428923                  NA              708697
4809             2365501                  NA             1162773
4810             1990873                  NA              978574
4811             3289701                  NA             1667851
4812              564466                  NA              276108
4813              313961                  NA              153951
4814              221648                  NA              106730
4815              382983                  NA              189968
4816              391957                  NA              189194
4817             1114368                  NA              538428
4818              515954                  NA              253400
4819              884359                  NA              435364
4820             4912449                  NA             2407307
4821              275693                  NA              137408
4822             3678328                  NA             1837913
4823             6232894                  NA             3033772
4824             4864209                  NA             2434382
4825             4864209                  NA             2434382
4826             6123949                  NA             3001027
4827             2668688                  NA             1305000
4828             4001701                  NA             2024424
4829              119685                  NA               62534
4830             1981584                  NA             1011796
4831            13111917                  NA             6515114
4832             1670949                  NA              818990
4833              585485                  NA              292820
4834              585485                  NA              292820
4835             1254675                  NA              635422
4836             1254675                  NA              635422
4837              749290                  NA              363653
4838              515954                  NA              253400
4839              166222                  NA               84066
4840              567287                  NA              281431
4841             6346083                  NA             3128067
4842            13111917                  NA             6515114
4843             2959386                  NA             1493164
4844              493980                  NA              244298
4845             2365501                  NA             1162773
4846              277944                  NA              140783
4847              104055                  NA               53837
4848               77140                  NA               40384
4849              323992                  NA              159346
4850              185147                  NA               92047
4851              136132                  NA               67729
4852             1008280                  NA              506526
4853             2959386                  NA             1493164
4854              585485                  NA              292820
4855            19908595                  NA             9713298
4856             2265926                  NA             1137581
4857             9566955                  NA             4718471
4858             9566955                  NA             4718471
4859             7673379                  NA             3806912
4860             2296377                  NA             1160944
4861             7673379                  NA             3806912
4862               73511                  NA               36809
4863              966688                  NA              483251
4864             1990873                  NA              978574
4865             2959386                  NA             1493164
4866             7142603                  NA             3563435
4867             7142603                  NA             3563435
4868             6346083                  NA             3128067
4869             7142603                  NA             3563435
4870             4692242                  NA             2342253
4871              341067                  NA              165567
4872              515954                  NA              253400
4873              257927                  NA              126314
4874              270495                  NA              134616
4875             3678328                  NA             1837913
4876              593318                  NA              293750
4877             1798025                  NA              886709
4878             6232894                  NA             3033772
4879              225745                  NA              112032
4880              419715                  NA              207197
4881              515954                  NA              253400
4882              869755                  NA              427134
4883              151721                  NA               75403
4884              206072                  NA               99873
4885             4375604                  NA             2148947
4886              863166                  NA              427343
4887              564466                  NA              276108
4888              275693                  NA              137408
4889              775169                  NA              372915
4890              102555                  NA               50314
4891              153733                  NA               76642
4892              328011                  NA              164852
4893              884359                  NA              435364
4894             3678328                  NA             1837913
4895             9566955                  NA             4718471
4896             6232894                  NA             3033772
4897             7673379                  NA             3806912
4898             1981584                  NA             1011796
4899                  NA                  NA                  NA
4900                  NA                  NA                  NA
4901               20543                  NA               10091
4902               20543                  NA               10091
4903                  NA                  NA                  NA
4904              658694                  NA              322943
4905              522537                  NA              259930
4906              277944                  NA              140783
4907              328011                  NA              164852
4908               35159                  NA               18160
4909             4375604                  NA             2148947
4910             4375604                  NA             2148947
4911             3678328                  NA             1837913
4912             4375604                  NA             2148947
4913                  NA                  NA                  NA
4914             7673379                  NA             3806912
4915              396279                  NA              201129
4916              419715                  NA              207197
4917              133834                  NA               70614
4918                  NA                  NA                  NA
4919               83584                  NA               41704
4920            13111917                  NA             6515114
4921              755081                  NA              384572
4922             9566955                  NA             4718471
4923              136132                  NA               67729
4924              181852                  NA               89879
4925             4692242                  NA             2342253
4926               66376                  NA               33782
4927              445213                  NA              223753
4928              281712                  NA              142477
4929              158478                  NA               79833
4930              399335                  NA              205955
4931             7142603                  NA             3563435
4932             4692242                  NA             2342253
4933             6232894                  NA             3033772
4934            13111917                  NA             6515114
4935             7142603                  NA             3563435
4936             9566955                  NA             4718471
4937             2394673                  NA             1181313
4938             4610050                  NA             2315218
4939            13111917                  NA             6515114
4940             2073546                  NA              975289
4941             2190750                  NA             1084347
4942            13111917                  NA             6515114
4943             4610050                  NA             2315218
4944              490769                  NA              249622
4945             1990873                  NA              978574
4946             1990873                  NA              978574
4947             2840005                  NA             1374325
4948            19908595                  NA             9713298
4949             6346083                  NA             3128067
4950              831913                  NA              404751
4951             3678328                  NA             1837913
4952                  NA                  NA                  NA
4953            13111917                  NA             6515114
4954             2265926                  NA             1137581
4955               20543                  NA               10091
4956              772902                  NA              380685
4957             2394673                  NA             1181313
4958             6094752                  NA             2965233
4959              304252                  NA              154587
4960             1568940                  NA              770847
4961             2079759                  NA             1012336
4962            13111917                  NA             6515114
4963              322285                  NA              159719
4964               13910                  NA                7232
4965              399335                  NA              205955
4966               13910                  NA                7232
4967              552916                  NA              270938
4968             3194310                  NA             1562880
4969              422733                  NA              212276
4970              775169                  NA              372915
4971               73103                  NA               37934
4972              646794                  NA              322648
4973             3289701                  NA             1667851
4974             7673379                  NA             3806912
4975               47759                  NA               23950
4976             6232894                  NA             3033772
4977             3678328                  NA             1837913
4978              270495                  NA              134616
4979             4001701                  NA             2024424
4980              164765                  21               82304
4981             7673379                  NA             3806912
4982              490769                  NA              249622
4983             2296377                  NA             1160944
4984             1981584                  NA             1011796
4985              330119                  NA              161252
4986              867161                  NA              431851
4987             9566955                  NA             4718471
4988              251635                  NA              126980
4989              151721                  NA               75403
4990              323992                  NA              159346
4991             2668688                  NA             1305000
4992               73103                  NA               37934
4993               35306                  NA               18120
4994              399335                  NA              205955
4995             4001701                  NA             2024424
4996               47759                  NA               23950
4997              966688                  NA              483251
4998             6123949                  NA             3001027
4999              288639                  NA              146836
     age_distributionM.x
1                    650
2                    195
3                    387
4                     NA
5                     NA
6                     NA
7                    650
8                    650
9                    326
10                   195
11                   452
12                    73
13                    73
14                    73
15                    73
16                   145
17                   249
18                   880
19                   880
20                   880
21                   880
22                   880
23                   880
24                   880
25                   880
26                   880
27                   880
28                   880
29                   880
30                   880
31                   880
32                   880
33                   880
34                   188
35                   188
36                   458
37                   458
38                   458
39                   458
40                   145
41                   145
42                   145
43                   880
44                   880
45                   458
46                   458
47                   880
48                   880
49                   880
50                   880
51                   880
52                   880
53                   880
54                   650
55                    NA
56                   650
57                   458
58                   145
59                   145
60                   458
61                   458
62                   458
63                   458
64                   145
65                   145
66                   145
67                   145
68                   145
69                   145
70                   145
71                   145
72                   145
73                   880
74                   880
75                   880
76                   188
77                   880
78                   880
79                   880
80                   880
81                   880
82                   880
83                   880
84                   880
85                   880
86                   880
87                   880
88                    NA
89                    NA
90                    NA
91                    NA
92                    NA
93                   458
94                   458
95                    73
96                   145
97                   880
98                   880
99                   880
100                  880
101                  880
102                  880
103                  880
104                  188
105                   NA
106                   NA
107                  458
108                  145
109                  880
110                  880
111                  880
112                  880
113                  880
114                  880
115                  880
116                  188
117                  188
118                   NA
119                   NA
120                   NA
121                  326
122                  326
123                  195
124                  195
125                   73
126                   73
127                   73
128                   73
129                   73
130                  145
131                  145
132                  145
133                  145
134                  249
135                   NA
136                   NA
137                   73
138                  880
139                  188
140                  188
141                  188
142                  188
143                  650
144                  650
145                  458
146                  458
147                  221
148                  145
149                  145
150                  880
151                  880
152                  880
153                  496
154                  640
155                  640
156                  442
157                  188
158                  188
159                  188
160                  188
161                   30
162                  650
163                  650
164                  221
165                  338
166                   73
167                  145
168                  145
169                  145
170                  145
171                  880
172                  188
173                  188
174                  188
175                  188
176                  188
177                  195
178                  458
179                  458
180                  458
181                  458
182                  458
183                  425
184                  124
185                  249
186                   NA
187                  880
188                  880
189                  458
190                  880
191                  880
192                  880
193                  880
194                  188
195                  188
196                  650
197                  650
198                  458
199                  880
200                  880
201                  880
202                  880
203                  880
204                  458
205                  145
206                  880
207                  880
208                  880
209                  458
210                  880
211                  880
212                  880
213                  880
214                  432
215                  496
216                  403
217                  735
218                  389
219                  442
220                  188
221                  188
222                  188
223                  650
224                   NA
225                   NA
226                  650
227                  650
228                  326
229                  452
230                  425
231                  406
232                  332
233                  221
234                   73
235                   73
236                  249
237                  188
238                  188
239                  458
240                  458
241                  880
242                  880
243                  145
244                  145
245                  880
246                  458
247                  145
248                  880
249                  403
250                  188
251                  650
252                  650
253                  458
254                  458
255                   73
256                  880
257                  880
258                  458
259                   73
260                  145
261                  145
262                  145
263                  145
264                  880
265                  880
266                  188
267                  458
268                  880
269                  650
270                  458
271                  880
272                  880
273                  880
274                  188
275                  195
276                   NA
277                   NA
278                   NA
279                  326
280                   73
281                  880
282                  880
283                  650
284                  188
285                   73
286                  145
287                  145
288                  880
289                  880
290                  188
291                  188
292                   NA
293                   NA
294                  458
295                  157
296                   NA
297                  145
298                   NA
299                   73
300                  145
301                  145
302                  458
303                  145
304                  230
305                  442
306                  188
307                  188
308                  188
309                  650
310                  126
311                  650
312                   NA
313                   NA
314                  458
315                  243
316                   NA
317                  320
318                  354
319                   NA
320                  458
321                  145
322                  880
323                  458
324                   73
325                  145
326                  880
327                  458
328                  880
329                  880
330                  880
331                  188
332                  188
333                  650
334                  650
335                  458
336                   NA
337                  243
338                   NA
339                  326
340                  326
341                  389
342                   NA
343                  332
344                   56
345                  425
346                  249
347                  249
348                   92
349                  389
350                   NA
351                  332
352                   NA
353                   NA
354                  326
355                  249
356                   NA
357                  435
358                   NA
359                   NA
360                  650
361                  735
362                  650
363                  425
364                  735
365                  425
366                  425
367                  650
368                  195
369                  381
370                  735
371                  218
372                  572
373                  342
374                  735
375                  650
376                  425
377                  349
378                  572
379                  735
380                  425
381                  425
382                  425
383                  650
384                  650
385                  735
386                  735
387                  650
388                  650
389                  650
390                  425
391                  425
392                  650
393                  650
394                  735
395                  425
396                  425
397                  425
398                  425
399                  381
400                  195
401                  425
402                  496
403                  640
404                  296
405                  425
406                  432
407                  425
408                  425
409                  425
410                  425
411                  442
412                  425
413                  442
414                  442
415                  442
416                  425
417                  735
418                  735
419                  195
420                  195
421                  195
422                  425
423                  442
424                  188
425                  280
426                  251
427                  207
428                  442
429                  425
430                  442
431                  425
432                  425
433                  442
434                  425
435                  442
436                  442
437                  442
438                  442
439                  442
440                  381
441                  195
442                  425
443                  425
444                  425
445                  442
446                  442
447                  442
448                  442
449                  442
450                  381
451                  425
452                  442
453                  425
454                  204
455                  442
456                  425
457                  442
458                  425
459                  425
460                  442
461                  425
462                  432
463                  640
464                  221
465                  425
466                  425
467                  442
468                  425
469                  195
470                  195
471                  195
472                  442
473                  442
474                  425
475                  442
476                  442
477                  195
478                  425
479                  442
480                  442
481                  442
482                  195
483                  173
484                   73
485                  650
486                  195
487                  532
488                   NA
489                  452
490                   NA
491                  249
492                  195
493                   NA
494                   NA
495                  650
496                  218
497                  195
498                   NA
499                  435
500                  249
501                   NA
502                  195
503                  195
504                   NA
505                  452
506                  249
507                  403
508                   NA
509                   NA
510                   73
511                  249
512                  326
513                  326
514                  326
515                  532
516                  195
517                   NA
518                  452
519                  425
520                  249
521                   NA
522                  496
523                  195
524                  532
525                  326
526                  432
527                  496
528                  403
529                  218
530                  389
531                  650
532                  572
533                   NA
534                  650
535                  650
536                   NA
537                  195
538                   NA
539                  249
540                  496
541                  403
542                  188
543                  326
544                  452
545                  204
546                   73
547                  195
548                  492
549                  452
550                  332
551                  398
552                  326
553                   73
554                   NA
555                   NA
556                  496
557                   90
558                  381
559                   NA
560                  204
561                  435
562                   NA
563                  195
564                   NA
565                   NA
566                   NA
567                  326
568                  452
569                   73
570                   NA
571                   NA
572                  326
573                  425
574                  403
575                  249
576                  195
577                  403
578                  218
579                  342
580                   NA
581                  381
582                  381
583                  735
584                  332
585                  735
586                  381
587                  381
588                  381
589                  381
590                  381
591                  381
592                  735
593                  735
594                  735
595                  381
596                  381
597                  381
598                  381
599                  332
600                  381
601                  249
602                  496
603                  650
604                  735
605                  193
606                  381
607                  381
608                  332
609                  381
610                  381
611                  381
612                  381
613                  381
614                  735
615                  381
616                  421
617                  387
618                  452
619                  332
620                  283
621                  381
622                  735
623                  735
624                  381
625                  332
626                  332
627                  381
628                  381
629                  381
630                  381
631                  381
632                  381
633                  381
634                  381
635                  381
636                  735
637                  735
638                  381
639                  381
640                  381
641                  735
642                  735
643                  381
644                  381
645                  381
646                  381
647                  381
648                  381
649                  381
650                  735
651                  735
652                  332
653                  332
654                  381
655                  381
656                  381
657                  381
658                  381
659                  381
660                  381
661                  381
662                  381
663                  381
664                  735
665                  381
666                  381
667                  735
668                  332
669                  496
670                  163
671                  735
672                  212
673                  387
674                  458
675                  221
676                  381
677                  381
678                  332
679                  332
680                  332
681                  332
682                  332
683                  381
684                  381
685                  735
686                  735
687                  735
688                  735
689                   NA
690                  389
691                  425
692                  425
693                  425
694                   NA
695                   NA
696                  389
697                  425
698                  425
699                  389
700                  320
701                  389
702                  425
703                  389
704                  532
705                  126
706                   NA
707                  406
708                   73
709                  320
710                  354
711                   73
712                  145
713                  389
714                  157
715                  157
716                  406
717                  320
718                   NA
719                  425
720                  389
721                  425
722                  442
723                  389
724                  389
725                   NA
726                  389
727                   NA
728                  432
729                  230
730                  190
731                  278
732                  280
733                  270
734                  389
735                  389
736                  458
737                  389
738                  389
739                  425
740                  320
741                  320
742                  157
743                  406
744                   NA
745                   73
746                  320
747                  320
748                  458
749                  145
750                  425
751                  425
752                  188
753                  230
754                  230
755                   NA
756                   73
757                  320
758                  532
759                  532
760                  532
761                  425
762                  389
763                  188
764                  458
765                  188
766                  177
767                  145
768                  389
769                  389
770                  425
771                  735
772                   NA
773                  157
774                  117
775                  230
776                  190
777                  126
778                  204
779                  354
780                  308
781                  532
782                  532
783                  425
784                  425
785                  442
786                  425
787                  157
788                  320
789                  389
790                  389
791                  389
792                   NA
793                  458
794                  180
795                  735
796                  389
797                  425
798                  406
799                  442
800                   NA
801                  425
802                  389
803                  532
804                   NA
805                  188
806                  458
807                  157
808                  157
809                  320
810                  195
811                  195
812                  249
813                  101
814                  356
815                  188
816                   NA
817                   56
818                  231
819                  320
820                   NA
821                  320
822                  252
823                   NA
824                   73
825                  320
826                   56
827                  389
828                  188
829                  425
830                  532
831                  157
832                  354
833                  145
834                  188
835                  389
836                  157
837                   73
838                  145
839                  389
840                  389
841                  389
842                   73
843                  157
844                  252
845                  432
846                   56
847                  110
848                  406
849                  354
850                  204
851                   NA
852                   NA
853                   NA
854                  157
855                  320
856                  188
857                  406
858                  458
859                   NA
860                  230
861                   56
862                  126
863                  354
864                  243
865                  442
866                  406
867                  157
868                   NA
869                  230
870                  442
871                  126
872                  432
873                  126
874                   NA
875                  406
876                   NA
877                  389
878                  442
879                   NA
880                   NA
881                  389
882                  389
883                  320
884                  320
885                  320
886                  230
887                  406
888                   NA
889                   73
890                   73
891                  320
892                  320
893                  425
894                  425
895                  157
896                   NA
897                  406
898                   NA
899                  425
900                  188
901                   NA
902                   73
903                  532
904                  320
905                  406
906                   73
907                   73
908                   73
909                  106
910                  252
911                   73
912                   73
913                   73
914                   73
915                   73
916                   73
917                   73
918                   73
919                  406
920                  406
921                   73
922                  320
923                   73
924                   73
925                   73
926                  320
927                   NA
928                  406
929                   73
930                  230
931                  126
932                   NA
933                   NA
934                  126
935                  354
936                  320
937                   73
938                   73
939                   NA
940                   73
941                   73
942                  190
943                   38
944                  130
945                  119
946                  230
947                  231
948                  110
949                  128
950                  320
951                  406
952                  106
953                  141
954                  226
955                  187
956                  252
957                   NA
958                  230
959                  204
960                   73
961                   73
962                  532
963                  425
964                  425
965                  389
966                  389
967                  735
968                  425
969                  425
970                  403
971                  389
972                  389
973                  650
974                  532
975                  532
976                  532
977                  532
978                  389
979                  735
980                  735
981                  735
982                  735
983                  735
984                  735
985                  189
986                  389
987                  389
988                  425
989                  389
990                  389
991                  650
992                  650
993                  650
994                  650
995                  650
996                  735
997                  532
998                   NA
999                  425
1000                 320
1001                 650
1002                 735
1003                 389
1004                 425
1005                 425
1006                 320
1007                 389
1008                 389
1009                 425
1010                 425
1011                 389
1012                 650
1013                 195
1014                 735
1015                 389
1016                 425
1017                 425
1018                 403
1019                 650
1020                 735
1021                 532
1022                 532
1023                  NA
1024                  NA
1025                 492
1026                 425
1027                 425
1028                 425
1029                 406
1030                 157
1031                 338
1032                 252
1033                 650
1034                 425
1035                 320
1036                 195
1037                 195
1038                 195
1039                 389
1040                 389
1041                 735
1042                 532
1043                 532
1044                 387
1045                 326
1046                 195
1047                 425
1048                 425
1049                 195
1050                 157
1051                 221
1052                  73
1053                  NA
1054                 414
1055                 320
1056                 435
1057                 145
1058                 124
1059                 249
1060                 389
1061                 389
1062                 650
1063                 735
1064                 532
1065                 320
1066                 389
1067                 389
1068                 425
1069                 650
1070                 650
1071                 650
1072                 532
1073                 532
1074                 532
1075                 320
1076                 320
1077                 320
1078                 496
1079                 403
1080                 195
1081                 387
1082                  NA
1083                 326
1084                 195
1085                 221
1086                 320
1087                 249
1088                 389
1089                 387
1090                  NA
1091                 650
1092                 452
1093                 425
1094                 157
1095                  73
1096                 249
1097                 389
1098                 389
1099                 389
1100                 650
1101                 735
1102                 735
1103                 532
1104                 320
1105                 389
1106                 389
1107                 650
1108                 650
1109                 735
1110                 735
1111                 532
1112                 532
1113                 532
1114                 532
1115                 532
1116                 532
1117                 425
1118                 425
1119                 389
1120                 650
1121                 532
1122                 532
1123                 532
1124                  NA
1125                 326
1126                 425
1127                 389
1128                 389
1129                 735
1130                 425
1131                 389
1132                  NA
1133                 389
1134                 650
1135                 735
1136                 532
1137                 532
1138                 425
1139                 532
1140                 532
1141                 389
1142                 389
1143                 389
1144                 389
1145                 735
1146                 532
1147                 389
1148                 389
1149                 389
1150                 389
1151                 218
1152                 195
1153                 735
1154                 389
1155                 650
1156                 195
1157                 323
1158                 735
1159                 532
1160                 204
1161                 629
1162                 342
1163                  NA
1164                 389
1165                 425
1166                 650
1167                 389
1168                 650
1169                 320
1170                 320
1171                 735
1172                 425
1173                 425
1174                 389
1175                 389
1176                 425
1177                 320
1178                 650
1179                 532
1180                 532
1181                 389
1182                 389
1183                 735
1184                 425
1185                 425
1186                 425
1187                 432
1188                 735
1189                 650
1190                 195
1191                 735
1192                 735
1193                 532
1194                 124
1195                 425
1196                 425
1197                 425
1198                 650
1199                 532
1200                 735
1201                 195
1202                 735
1203                 532
1204                 532
1205                 442
1206                 442
1207                  NA
1208                 432
1209                  NA
1210                 157
1211                 218
1212                 218
1213                 218
1214                 218
1215                 326
1216                 425
1217                 425
1218                 218
1219                 326
1220                  NA
1221                 442
1222                 218
1223                 442
1224                 442
1225                 442
1226                 442
1227                 442
1228                 532
1229                 650
1230                 326
1231                 425
1232                 201
1233                 157
1234                 157
1235                 157
1236                 423
1237                 432
1238                 496
1239                 195
1240                 148
1241                 195
1242                 532
1243                 572
1244                 421
1245                  NA
1246                 316
1247                 492
1248                 280
1249                 173
1250                 332
1251                 157
1252                 204
1253                 629
1254                  73
1255                 249
1256                 496
1257                 442
1258                 442
1259                 442
1260                 177
1261                 532
1262                 532
1263                  NA
1264                 425
1265                 157
1266                 157
1267                 157
1268                  NA
1269                  NA
1270                 218
1271                 442
1272                 735
1273                 532
1274                 136
1275                  NA
1276                  NA
1277                 492
1278                 425
1279                 458
1280                 452
1281                 320
1282                 221
1283                  NA
1284                 423
1285                 249
1286                 425
1287                 425
1288                 218
1289                 326
1290                 218
1291                 442
1292                 532
1293                 326
1294                 425
1295                 249
1296                  NA
1297                 432
1298                 926
1299                 442
1300                 389
1301                 532
1302                 650
1303                 492
1304                 326
1305                 642
1306                 157
1307                  73
1308                 354
1309                 124
1310                 249
1311                 403
1312                 218
1313                 163
1314                 195
1315                 381
1316                 342
1317                 188
1318                 148
1319                 387
1320                 425
1321                 195
1322                 201
1323                 452
1324                 173
1325                 320
1326                 320
1327                 332
1328                 204
1329                 214
1330                 221
1331                 414
1332                 223
1333                 389
1334                 389
1335                  NA
1336                 320
1337                 157
1338                  NA
1339                  NA
1340                 496
1341                 496
1342                 218
1343                 218
1344                 218
1345                 218
1346                 218
1347                 218
1348                 425
1349                 425
1350                 425
1351                 425
1352                 425
1353                 425
1354                 218
1355                 195
1356                 326
1357                 425
1358                 442
1359                 442
1360                 442
1361                 442
1362                  NA
1363                 252
1364                 432
1365                 389
1366                 532
1367                 320
1368                 354
1369                 383
1370                 496
1371                 496
1372                 640
1373                 323
1374                 572
1375                 425
1376                 414
1377                 223
1378                 926
1379                 155
1380                 163
1381                 195
1382                 195
1383                 101
1384                 532
1385                 650
1386                  NA
1387                 650
1388                 425
1389                 195
1390                 173
1391                 642
1392                 157
1393                 204
1394                 468
1395                 223
1396                 221
1397                 342
1398                  73
1399                 398
1400                 389
1401                  NA
1402                 496
1403                 496
1404                 496
1405                 442
1406                 425
1407                 423
1408                 496
1409                 496
1410                 218
1411                  NA
1412                 425
1413                 423
1414                 496
1415                 425
1416                 425
1417                 124
1418                 423
1419                 496
1420                 218
1421                 735
1422                  NA
1423                 157
1424                 423
1425                 249
1426                  NA
1427                  NA
1428                 157
1429                 532
1430                 532
1431                 389
1432                 425
1433                 218
1434                 326
1435                 425
1436                 425
1437                 249
1438                 376
1439                 432
1440                 383
1441                 389
1442                 389
1443                 177
1444                 532
1445                 650
1446                  NA
1447                 326
1448                 320
1449                 270
1450                 354
1451                 145
1452                  NA
1453                 423
1454                 249
1455                 280
1456                 432
1457                 342
1458                 211
1459                 735
1460                 148
1461                 195
1462                 532
1463                  88
1464                 316
1465                 316
1466                 492
1467                 425
1468                 458
1469                 452
1470                 425
1471                 157
1472                 214
1473                 338
1474                 211
1475                 223
1476                 496
1477                 496
1478                 496
1479                 195
1480                 425
1481                 423
1482                 423
1483                 342
1484                 442
1485                 326
1486                 201
1487                 270
1488                  73
1489                 423
1490                 249
1491                 383
1492                 496
1493                  NA
1494                 218
1495                 640
1496                 442
1497                 442
1498                 177
1499                 126
1500                 532
1501                 572
1502                  NA
1503                 650
1504                 425
1505                 425
1506                 201
1507                 185
1508                  NA
1509                 423
1510                 211
1511                 117
1512                 376
1513                 155
1514                 163
1515                 156
1516                 532
1517                 249
1518                  NA
1519                  NA
1520                 316
1521                 195
1522                 452
1523                 320
1524                 296
1525                 187
1526                  NA
1527                 249
1528                 423
1529                 496
1530                 425
1531                 425
1532                 496
1533                 218
1534                 423
1535                 532
1536                 423
1537                 432
1538                 389
1539                 532
1540                  NA
1541                  NA
1542                 157
1543                 432
1544                 532
1545                 532
1546                 157
1547                 338
1548                 320
1549                  NA
1550                 320
1551                  NA
1552                 218
1553                 532
1554                 532
1555                 532
1556                 326
1557                 452
1558                 221
1559                 218
1560                 442
1561                 735
1562                 425
1563                 157
1564                 157
1565                 204
1566                 338
1567                 249
1568                 389
1569                 389
1570                  NA
1571                 425
1572                 157
1573                 252
1574                  NA
1575                 320
1576                 218
1577                 532
1578                 115
1579                 320
1580                 320
1581                 157
1582                 880
1583                 496
1584                 218
1585                 442
1586                 389
1587                 177
1588                 101
1589                 195
1590                 458
1591                 452
1592                 157
1593                 423
1594                 423
1595                 432
1596                  NA
1597                 148
1598                 195
1599                 136
1600                  NA
1601                  NA
1602                  88
1603                 650
1604                  NA
1605                 316
1606                 326
1607                 280
1608                 320
1609                 296
1610                 243
1611                 332
1612                 214
1613                  73
1614                 338
1615                 338
1616                 414
1617                 354
1618                 249
1619                 211
1620                 532
1621                 532
1622                 425
1623                 425
1624                 442
1625                 442
1626                 425
1627                 442
1628                 442
1629                 425
1630                 389
1631                 423
1632                 218
1633                 442
1634                 532
1635                 326
1636                  73
1637                 124
1638                 496
1639                 218
1640                 218
1641                 218
1642                 423
1643                 496
1644                 425
1645                 157
1646                 157
1647                 157
1648                 376
1649                 280
1650                 432
1651                 432
1652                 442
1653                 126
1654                 425
1655                 201
1656                 320
1657                 406
1658                 338
1659                 145
1660                 252
1661                  NA
1662                 423
1663                 230
1664                  NA
1665                 218
1666                 190
1667                 211
1668                  38
1669                  NA
1670                 201
1671                 243
1672                 243
1673                 187
1674                  NA
1675                 185
1676                 354
1677                 211
1678                 117
1679                 376
1680                 177
1681                  30
1682                 425
1683                 452
1684                 452
1685                 157
1686                 157
1687                 432
1688                 432
1689                 532
1690                 187
1691                 252
1692                 252
1693                 432
1694                 442
1695                 218
1696                 218
1697                 532
1698                 423
1699                 423
1700                 425
1701                 452
1702                 389
1703                  NA
1704                 320
1705                 252
1706                 423
1707                  30
1708                 532
1709                 532
1710                  NA
1711                 425
1712                 124
1713                 187
1714                 252
1715                 442
1716                 442
1717                 532
1718                 432
1719                 442
1720                 425
1721                 425
1722                 218
1723                 195
1724                 650
1725                 326
1726                 452
1727                  73
1728                 218
1729                 442
1730                 442
1731                 442
1732                 389
1733                 532
1734                 492
1735                 423
1736                 423
1737                 423
1738                 160
1739                 926
1740                 383
1741                 155
1742                 640
1743                 195
1744                 572
1745                 280
1746                 452
1747                 642
1748                 157
1749                 398
1750                 423
1751                 432
1752                 383
1753                 496
1754                 218
1755                 163
1756                 342
1757                 442
1758                 735
1759                 389
1760                 195
1761                 323
1762                 735
1763                 387
1764                 650
1765                 492
1766                 326
1767                 458
1768                 452
1769                 270
1770                 642
1771                 157
1772                 468
1773                 629
1774                  NA
1775                 398
1776                  73
1777                 320
1778                 249
1779                 403
1780                 155
1781                 195
1782                 195
1783                 640
1784                 532
1785                 532
1786                  NA
1787                 280
1788                 195
1789                 173
1790                 320
1791                 296
1792                 332
1793                 204
1794                 221
1795                  73
1796                 252
1797                  NA
1798                 124
1799                 423
1800                 117
1801                 326
1802                 425
1803                 442
1804                 389
1805                 532
1806                 218
1807                 423
1808                 425
1809                 452
1810                 423
1811                 218
1812                 735
1813                 157
1814                  73
1815                 423
1816                 532
1817                 423
1818                 532
1819                 532
1820                 492
1821                 496
1822                 218
1823                 195
1824                  NA
1825                 650
1826                 326
1827                 326
1828                 195
1829                 338
1830                 249
1831                 442
1832                 218
1833                 425
1834                 432
1835                 110
1836                  NA
1837                  30
1838                 115
1839                 243
1840                 157
1841                 243
1842                  NA
1843                 230
1844                  NA
1845                  38
1846                 126
1847                  55
1848                 185
1849                  NA
1850                  30
1851                 432
1852                 532
1853                 425
1854                 157
1855                 423
1856                  NA
1857                 425
1858                 423
1859                 532
1860                 320
1861                 354
1862                 496
1863                 157
1864                 496
1865                 442
1866                 496
1867                 425
1868                 218
1869                 326
1870                 425
1871                 157
1872                 157
1873                 157
1874                 354
1875                 425
1876                 389
1877                 432
1878                 126
1879                 532
1880                 320
1881                 296
1882                 406
1883                 187
1884                 338
1885                 354
1886                 145
1887                 252
1888                 376
1889                 432
1890                  NA
1891                 342
1892                 211
1893                 177
1894                 195
1895                  NA
1896                 115
1897                 201
1898                 270
1899                 243
1900                 243
1901                  NA
1902                 249
1903                 157
1904                  73
1905                 124
1906                 496
1907                 218
1908                 195
1909                 496
1910                 442
1911                 532
1912                 252
1913                  NA
1914                 425
1915                 423
1916                 218
1917                 218
1918                 326
1919                 249
1920                 425
1921                  NA
1922                  NA
1923                  NA
1924                 354
1925                 326
1926                 249
1927                 425
1928                 201
1929                 735
1930                 492
1931                 425
1932                 398
1933                 230
1934                 442
1935                 532
1936                 354
1937                  30
1938                 124
1939                 117
1940                 442
1941                 532
1942                 496
1943                 442
1944                 177
1945                  NA
1946                  NA
1947                 320
1948                 326
1949                 425
1950                 218
1951                  73
1952                 249
1953                 320
1954                 354
1955                 157
1956                  NA
1957                  NA
1958                 442
1959                  NA
1960                 124
1961                 124
1962                  30
1963                  55
1964                  NA
1965                 243
1966                 187
1967                  NA
1968                 326
1969                 442
1970                  NA
1971                 326
1972                 252
1973                 126
1974                  NA
1975                  73
1976                  NA
1977                  30
1978                  NA
1979                 243
1980                 243
1981                  NA
1982                 442
1983                 157
1984                 432
1985                 342
1986                 432
1987                 572
1988                 650
1989                 218
1990                 442
1991                 195
1992                 532
1993                 387
1994                 650
1995                  NA
1996                 425
1997                 452
1998                  73
1999                 432
2000                 496
2001                 496
2002                 342
2003                 278
2004                 148
2005                 249
2006                  NA
2007                 316
2008                 492
2009                 326
2010                 195
2011                 201
2012                 296
2013                 270
2014                 157
2015                 214
2016                 124
2017                 496
2018                 218
2019                 342
2020                 735
2021                 425
2022                 221
2023                 398
2024                 926
2025                 383
2026                 155
2027                 640
2028                 195
2029                  NA
2030                  NA
2031                 496
2032                 442
2033                 532
2034                 157
2035                 735
2036                 423
2037                 442
2038                 157
2039                 442
2040                 442
2041                 442
2042                 650
2043                 204
2044                 414
2045                 211
2046                 442
2047                 157
2048                 104
2049                  38
2050                 442
2051                 442
2052                 532
2053                 532
2054                 532
2055                 735
2056                 735
2057                 332
2058                 650
2059                 572
2060                 650
2061                 342
2062                 650
2063                 650
2064                 650
2065                 650
2066                 650
2067                 650
2068                 650
2069                 204
2070                 221
2071                 650
2072                 650
2073                 650
2074                 381
2075                 650
2076                 650
2077                 650
2078                 650
2079                 650
2080                 650
2081                 403
2082                 332
2083                 650
2084                 381
2085                 650
2086                 221
2087                 398
2088                 403
2089                 650
2090                 163
2091                 188
2092                 177
2093                 201
2094                 452
2095                 223
2096                 381
2097                 650
2098                 452
2099                 124
2100                 650
2101                 403
2102                 381
2103                 735
2104                 650
2105                 496
2106                 218
2107                 218
2108                 735
2109                 642
2110                 332
2111                 332
2112                 204
2113                 195
2114                 342
2115                 572
2116                 572
2117                 629
2118                 640
2119                 381
2120                 387
2121                 403
2122                 221
2123                 342
2124                 735
2125                 735
2126                 650
2127                 650
2128                 403
2129                 650
2130                 650
2131                 425
2132                 403
2133                 735
2134                 650
2135                 735
2136                 332
2137                 650
2138                 735
2139                 381
2140                 650
2141                 381
2142                 735
2143                 425
2144                 735
2145                 735
2146                 735
2147                 155
2148                 735
2149                 425
2150                 218
2151                 650
2152                 735
2153                 458
2154                 458
2155                 190
2156                 320
2157                 458
2158                 332
2159                 332
2160                 332
2161                 332
2162                 332
2163                 332
2164                 332
2165                 332
2166                 332
2167                 403
2168                 332
2169                 113
2170                 389
2171                 735
2172                 316
2173                 650
2174                 177
2175                 326
2176                 326
2177                 249
2178                 195
2179                 249
2180                 915
2181                 403
2182                 532
2183                 650
2184                 201
2185                 650
2186                  NA
2187                 195
2188                 403
2189                 243
2190                 124
2191                 442
2192                 157
2193                 442
2194                  NA
2195                  NA
2196                 320
2197                 492
2198                 221
2199                 195
2200                  73
2201                  30
2202                  73
2203                 320
2204                  73
2205                 650
2206                 926
2207                 376
2208                 403
2209                 188
2210                  75
2211                 195
2212                 406
2213                 326
2214                  NA
2215                 492
2216                 157
2217                 442
2218                 432
2219                 389
2220                 195
2221                 435
2222                 640
2223                 650
2224                 221
2225                 195
2226                  NA
2227                 880
2228                 432
2229                 492
2230                 458
2231                  NA
2232                  73
2233                 381
2234                 650
2235                 243
2236                  73
2237                  NA
2238                 403
2239                 156
2240                 187
2241                 145
2242                 320
2243                 249
2244                 221
2245                 342
2246                 492
2247                 376
2248                 650
2249                  73
2250                 458
2251                 145
2252                 249
2253                 435
2254                 195
2255                 208
2256                  30
2257                  NA
2258                  30
2259                  55
2260                  30
2261                 124
2262                  NA
2263                 880
2264                 671
2265                 165
2266                 299
2267                 455
2268                 228
2269                 417
2270                 332
2271                 211
2272                 650
2273                 201
2274                 629
2275                 880
2276                 650
2277                 403
2278                 188
2279                 173
2280                 163
2281                 101
2282                 223
2283                 221
2284                 342
2285                 356
2286                 640
2287                 880
2288                 650
2289                 126
2290                 496
2291                 163
2292                 163
2293                 204
2294                 414
2295                 383
2296                 218
2297                 101
2298                 280
2299                 223
2300                 414
2301                 880
2302                 640
2303                 278
2304                 650
2305                 650
2306                 880
2307                 188
2308                 650
2309                 249
2310                 403
2311                 442
2312                 650
2313                 195
2314                 432
2315                 442
2316                 442
2317                 157
2318                 381
2319                 342
2320                  NA
2321                 458
2322                 452
2323                 642
2324                 157
2325                 204
2326                 223
2327                 249
2328                 381
2329                 650
2330                 387
2331                 280
2332                 376
2333                 126
2334                 342
2335                 218
2336                 249
2337                  NA
2338                 186
2339                 200
2340                 201
2341                 243
2342                 195
2343                 223
2344                  73
2345                 320
2346                 425
2347                 425
2348                 381
2349                 195
2350                 442
2351                 442
2352                 195
2353                 442
2354                 381
2355                 442
2356                 381
2357                 425
2358                 432
2359                 442
2360                 381
2361                 442
2362                 442
2363                 249
2364                  NA
2365                 157
2366                 320
2367                 435
2368                  NA
2369                 381
2370                 442
2371                 442
2372                 177
2373                 243
2374                 435
2375                  NA
2376                 124
2377                 381
2378                 442
2379                  73
2380                 403
2381                 650
2382                 650
2383                 195
2384                 381
2385                 442
2386                 195
2387                 442
2388                 442
2389                 332
2390                 381
2391                 381
2392                 381
2393                 195
2394                 195
2395                 332
2396                 442
2397                 442
2398                  30
2399                  NA
2400                 208
2401                  73
2402                  73
2403                 208
2404                 208
2405                 115
2406                 406
2407                  73
2408                 208
2409                 115
2410                  73
2411                 243
2412                 195
2413                 115
2414                 326
2415                 735
2416                 650
2417                 403
2418                 195
2419                 195
2420                 320
2421                 155
2422                 195
2423                  NA
2424                 124
2425                 650
2426                 195
2427                 629
2428                 376
2429                 403
2430                  NA
2431                 195
2432                 243
2433                 926
2434                 155
2435                 650
2436                 326
2437                 195
2438                 650
2439                 650
2440                 249
2441                 650
2442                 403
2443                 326
2444                 160
2445                 926
2446                 230
2447                 190
2448                 342
2449                 201
2450                 225
2451                 218
2452                 233
2453                 212
2454                 387
2455                 270
2456                 642
2457                 214
2458                 223
2459                 221
2460                  NA
2461                 320
2462                 435
2463                  NA
2464                 117
2465                 223
2466                 188
2467                  73
2468                 145
2469                 195
2470                 458
2471                 145
2472                 195
2473                  NA
2474                  73
2475                 188
2476                 650
2477                 432
2478                 403
2479                 155
2480                 201
2481                 173
2482                  NA
2483                 338
2484                 320
2485                 124
2486                 880
2487                 880
2488                  73
2489                 145
2490                 452
2491                 195
2492                 572
2493                 249
2494                 403
2495                 145
2496                 403
2497                 650
2498                 926
2499                 218
2500                 188
2501                 195
2502                 492
2503                 201
2504                 128
2505                 243
2506                 338
2507                 252
2508                  NA
2509                 124
2510                 403
2511                 188
2512                 640
2513                 188
2514                 432
2515                 650
2516                 458
2517                 249
2518                 403
2519                 880
2520                 496
2521                 403
2522                 218
2523                 735
2524                 195
2525                 572
2526                 452
2527                 406
2528                 221
2529                 187
2530                 338
2531                 423
2532                 249
2533                 880
2534                 650
2535                 173
2536                 155
2537                 323
2538                 101
2539                 349
2540                 629
2541                 173
2542                 423
2543                  55
2544                 442
2545                 442
2546                 136
2547                 336
2548                 223
2549                 199
2550                 142
2551                 356
2552                 195
2553                 195
2554                 442
2555                 442
2556                 442
2557                 442
2558                 442
2559                 270
2560                 195
2561                 270
2562                 278
2563                 102
2564                 442
2565                 195
2566                 381
2567                 381
2568                 162
2569                 195
2570                 188
2571                 329
2572                 316
2573                 186
2574                 201
2575                 356
2576                 735
2577                 332
2578                  44
2579                 735
2580                 735
2581                 458
2582                 389
2583                 442
2584                 180
2585                 496
2586                 166
2587                  38
2588                 316
2589                 642
2590                 398
2591                  NA
2592                 160
2593                 270
2594                 109
2595                 442
2596                 425
2597                 458
2598                 492
2599                 201
2600                 243
2601                 287
2602                 389
2603                 389
2604                 532
2605                 408
2606                 280
2607                 296
2608                 270
2609                 204
2610                 629
2611                 398
2612                 458
2613                 926
2614                 160
2615                 383
2616                 280
2617                 269
2618                 188
2619                  61
2620                 458
2621                 389
2622                 243
2623                 376
2624                 117
2625                 376
2626                  56
2627                 175
2628                 312
2629                 243
2630                 269
2631                 117
2632                 145
2633                 230
2634                 320
2635                 115
2636                 162
2637                 128
2638                 532
2639                 338
2640                 252
2641                 389
2642                 532
2643                 406
2644                 157
2645                  NA
2646                 435
2647                 218
2648                 342
2649                 640
2650                  30
2651                 188
2652                 332
2653                 204
2654                  73
2655                 650
2656                 532
2657                 532
2658                 532
2659                 650
2660                 425
2661                 218
2662                  30
2663                 326
2664                  73
2665                 650
2666                 389
2667                 650
2668                 354
2669                 496
2670                 435
2671                  73
2672                 148
2673                 532
2674                  30
2675                 492
2676                 496
2677                  30
2678                 572
2679                 338
2680                 195
2681                 532
2682                 442
2683                 278
2684                 177
2685                 398
2686                 735
2687                 163
2688                 195
2689                 387
2690                 403
2691                 650
2692                 162
2693                 342
2694                 492
2695                 280
2696                 162
2697                 398
2698                 650
2699                 287
2700                 177
2701                 398
2702                 650
2703                 650
2704                 163
2705                 387
2706                 398
2707                 177
2708                 452
2709                 381
2710                 403
2711                 650
2712                 425
2713                 236
2714                 336
2715                 214
2716                 425
2717                 136
2718                 458
2719                 168
2720                 308
2721                 398
2722                 332
2723                 650
2724                 414
2725                 532
2726                 253
2727                 160
2728                 228
2729                 423
2730                 532
2731                 389
2732                 249
2733                 650
2734                 650
2735                 650
2736                 458
2737                 650
2738                 650
2739                 173
2740                 223
2741                 336
2742                 323
2743                 642
2744                 880
2745                 650
2746                 403
2747                 650
2748                 650
2749                 650
2750                 650
2751                 442
2752                 442
2753                 195
2754                 157
2755                 381
2756                 381
2757                 442
2758                 442
2759                 442
2760                 442
2761                 381
2762                 381
2763                 442
2764                 195
2765                 157
2766                 425
2767                 403
2768                 155
2769                 218
2770                 640
2771                 442
2772                 177
2773                 195
2774                  NA
2775                 195
2776                 157
2777                  73
2778                 320
2779                 423
2780                 249
2781                 442
2782                 442
2783                 124
2784                 332
2785                 496
2786                 230
2787                  NA
2788                 211
2789                 640
2790                 735
2791                 188
2792                 316
2793                 492
2794                 326
2795                 195
2796                 204
2797                  NA
2798                 414
2799                 435
2800                 252
2801                  NA
2802                 442
2803                 381
2804                 381
2805                  NA
2806                 442
2807                 442
2808                 195
2809                 442
2810                 195
2811                 195
2812                 381
2813                 442
2814                 442
2815                 432
2816                 381
2817                 381
2818                 735
2819                 442
2820                 442
2821                 442
2822                 332
2823                 381
2824                 381
2825                 381
2826                 157
2827                 442
2828                 195
2829                 221
2830                 496
2831                 163
2832                 381
2833                 735
2834                 442
2835                 387
2836                  73
2837                 157
2838                 381
2839                 442
2840                 195
2841                 117
2842                 442
2843                 332
2844                 442
2845                 381
2846                 381
2847                 326
2848                 162
2849                 442
2850                 442
2851                 157
2852                 381
2853                 442
2854                 195
2855                 442
2856                 442
2857                 195
2858                 425
2859                 332
2860                 195
2861                 442
2862                 442
2863                 332
2864                 332
2865                 442
2866                 442
2867                 403
2868                 381
2869                 332
2870                 425
2871                  73
2872                  73
2873                  73
2874                  73
2875                  73
2876                  73
2877                  NA
2878                 170
2879                  NA
2880                  73
2881                 376
2882                 326
2883                  73
2884                  NA
2885                 342
2886                 640
2887                 572
2888                 201
2889                 124
2890                 296
2891                 270
2892                 221
2893                 338
2894                 423
2895                 117
2896                  30
2897                  NA
2898                 195
2899                  73
2900                 177
2901                 338
2902                 414
2903                 326
2904                 403
2905                  NA
2906                 403
2907                 403
2908                 435
2909                  NA
2910                  NA
2911                 387
2912                 468
2913                  NA
2914                 435
2915                 145
2916                 326
2917                 249
2918                 650
2919                 403
2920                 195
2921                  NA
2922                 650
2923                  90
2924                 177
2925                 532
2926                 338
2927                 124
2928                 468
2929                 926
2930                 926
2931                 403
2932                 650
2933                 468
2934                 326
2935                 195
2936                  NA
2937                 326
2938                 650
2939                 650
2940                 195
2941                 403
2942                 650
2943                 221
2944                 650
2945                 650
2946                 145
2947                 155
2948                 163
2949                 323
2950                 650
2951                 468
2952                 124
2953                 458
2954                 188
2955                 145
2956                 880
2957                 880
2958                 145
2959                 735
2960                 458
2961                 458
2962                 458
2963                 188
2964                 188
2965                 880
2966                 880
2967                 880
2968                 880
2969                 188
2970                 650
2971                 458
2972                 640
2973                 145
2974                 145
2975                 735
2976                 880
2977                 188
2978                 125
2979                 301
2980                 221
2981                 287
2982                 195
2983                 221
2984                 316
2985                 326
2986                 223
2987                 249
2988                  NA
2989                  92
2990                 326
2991                  73
2992                 389
2993                 389
2994                 735
2995                 425
2996                 101
2997                 642
2998                 650
2999                 735
3000                 442
3001                 195
3002                 442
3003                 442
3004                 442
3005                 572
3006                 262
3007                 104
3008                 383
3009                 161
3010                 136
3011                 173
3012                 223
3013                 195
3014                 640
3015                 414
3016                 356
3017                 342
3018                 276
3019                 316
3020                 338
3021                 432
3022                 195
3023                 442
3024                 326
3025                 326
3026                  NA
3027                 572
3028                 201
3029                  NA
3030                  NA
3031                 735
3032                 332
3033                 148
3034                 201
3035                 280
3036                 223
3037                 332
3038                 472
3039                 160
3040                 278
3041                 233
3042                 283
3043                 223
3044                 735
3045                 332
3046                 381
3047                 381
3048                 735
3049                 381
3050                 735
3051                 640
3052                 442
3053                 243
3054                 389
3055                 389
3056                 320
3057                 387
3058                 243
3059                 414
3060                  88
3061                 280
3062                 468
3063                 442
3064                  73
3065                 532
3066                 389
3067                 296
3068                  56
3069                 231
3070                 532
3071                 532
3072                 342
3073                 296
3074                 188
3075                 157
3076                 425
3077                 425
3078                 492
3079                  38
3080                 231
3081                 243
3082                 185
3083                 278
3084                 145
3085                 532
3086                  73
3087                 219
3088                 208
3089                  73
3090                 243
3091                 269
3092                 320
3093                 650
3094                 425
3095                 425
3096                 425
3097                 532
3098                 204
3099                 354
3100                  90
3101                  NA
3102                 432
3103                  73
3104                 200
3105                 406
3106                  NA
3107                 354
3108                 252
3109                  NA
3110                 532
3111                 320
3112                 218
3113                 195
3114                 735
3115                 735
3116                 532
3117                 389
3118                 389
3119                 532
3120                 389
3121                 320
3122                  NA
3123                 376
3124                  88
3125                  NA
3126                 423
3127                 320
3128                 252
3129                 496
3130                 249
3131                 160
3132                 432
3133                 342
3134                 442
3135                 492
3136                  44
3137                 249
3138                 201
3139                 195
3140                 338
3141                 442
3142                 195
3143                 173
3144                 572
3145                 280
3146                 195
3147                 201
3148                  NA
3149                 414
3150                 124
3151                  73
3152                 532
3153                 492
3154                 211
3155                 207
3156                 650
3157                 376
3158                 199
3159                 735
3160                 421
3161                 326
3162                  56
3163                 296
3164                  NA
3165                 532
3166                 442
3167                 423
3168                  NA
3169                 532
3170                 735
3171                 338
3172                 532
3173                 650
3174                 188
3175                  44
3176                 414
3177                 376
3178                 926
3179                  NA
3180                 338
3181                 249
3182                 195
3183                 496
3184                 532
3185                 492
3186                 735
3187                 496
3188                 296
3189                 249
3190                 572
3191                 249
3192                 320
3193                 425
3194                 195
3195                 423
3196                 320
3197                  NA
3198                 218
3199                 204
3200                 187
3201                 442
3202                 211
3203                 423
3204                 532
3205                  NA
3206                 432
3207                  73
3208                 211
3209                 221
3210                 354
3211                 650
3212                 204
3213                 572
3214                  NA
3215                 423
3216                 532
3217                 532
3218                 177
3219                 280
3220                 157
3221                 110
3222                 185
3223                 532
3224                 735
3225                 492
3226                 126
3227                 163
3228                 204
3229                 423
3230                 650
3231                 640
3232                 735
3233                 195
3234                 387
3235                 417
3236                 262
3237                 172
3238                 414
3239                 342
3240                 425
3241                 735
3242                 425
3243                 735
3244                 425
3245                 425
3246                 425
3247                 735
3248                 425
3249                 356
3250                 735
3251                 331
3252                 425
3253                 735
3254                 458
3255                 299
3256                 458
3257                 342
3258                 458
3259                 332
3260                 262
3261                 417
3262                 403
3263                 532
3264                 735
3265                 148
3266                 389
3267                 442
3268                 435
3269                 195
3270                  NA
3271                 442
3272                  NA
3273                 442
3274                 124
3275                 332
3276                 442
3277                 425
3278                 640
3279                 442
3280                  55
3281                 124
3282                  NA
3283                 208
3284                 208
3285                  73
3286                 195
3287                  73
3288                  73
3289                 650
3290                 180
3291                 125
3292                 252
3293                  NA
3294                  NA
3295                 414
3296                 880
3297                 880
3298                 880
3299                 458
3300                 650
3301                 177
3302                 201
3303                 284
3304                 442
3305                 159
3306                 298
3307                 650
3308                 280
3309                 381
3310                 195
3311                 249
3312                 157
3313                 130
3314                 320
3315                 188
3316                  30
3317                  NA
3318                 225
3319                 532
3320                 735
3321                 389
3322                 496
3323                  NA
3324                 376
3325                  NA
3326                  NA
3327                 243
3328                 326
3329                 425
3330                 218
3331                 452
3332                 425
3333                 320
3334                 435
3335                 532
3336                 193
3337                 214
3338                 269
3339                 190
3340                 163
3341                 642
3342                 442
3343                 349
3344                 180
3345                 270
3346                 650
3347                 195
3348                 435
3349                 126
3350                 323
3351                 175
3352                 244
3353                 389
3354                 145
3355                 124
3356                 118
3357                 157
3358                 629
3359                 249
3360                 442
3361                 157
3362                 442
3363                 425
3364                  NA
3365                 442
3366                 177
3367                 280
3368                 145
3369                 195
3370                 421
3371                 442
3372                 128
3373                 214
3374                 383
3375                 414
3376                 230
3377                 458
3378                 230
3379                 458
3380                 308
3381                 532
3382                  30
3383                 190
3384                 225
3385                 432
3386                 320
3387                  73
3388                 320
3389                 326
3390                 442
3391                 148
3392                 212
3393                  NA
3394                 403
3395                 124
3396                 458
3397                 735
3398                  30
3399                  30
3400                  55
3401                 207
3402                 329
3403                 880
3404                 880
3405                 154
3406                 278
3407                 650
3408                 880
3409                 458
3410                 880
3411                 435
3412                 735
3413                 157
3414                 195
3415                 926
3416                 342
3417                  NA
3418                  73
3419                  NA
3420                  NA
3421                 187
3422                 225
3423                  56
3424                 642
3425                 221
3426                 442
3427                 442
3428                 442
3429                 442
3430                 572
3431                 157
3432                 442
3433                 442
3434                  73
3435                 195
3436                 332
3437                 425
3438                 442
3439                 650
3440                  73
3441                  73
3442                 320
3443                 208
3444                 406
3445                 432
3446                  NA
3447                 326
3448                 124
3449                  73
3450                  55
3451                 376
3452                 163
3453                 170
3454                  51
3455                 452
3456                  73
3457                 208
3458                  55
3459                 406
3460                 435
3461                 452
3462                 406
3463                 243
3464                 387
3465                 195
3466                 308
3467                 926
3468                 298
3469                 249
3470                 458
3471                 354
3472                 880
3473                  NA
3474                 880
3475                 880
3476                 880
3477                 880
3478                 458
3479                 145
3480                 145
3481                 280
3482                 188
3483                  NA
3484                 458
3485                 880
3486                 125
3487                 188
3488                 145
3489                 880
3490                 425
3491                 442
3492                 125
3493                 671
3494                 421
3495                 124
3496                 195
3497                 383
3498                 326
3499                 371
3500                 173
3501                 381
3502                 332
3503                 298
3504                 389
3505                 458
3506                 408
3507                 112
3508                 194
3509                 356
3510                 308
3511                  61
3512                 112
3513                 458
3514                 458
3515                 188
3516                 195
3517                 130
3518                 145
3519                 186
3520                 222
3521                 243
3522                 204
3523                 225
3524                 204
3525                 425
3526                 442
3527                 188
3528                  NA
3529                 125
3530                  38
3531                 128
3532                 296
3533                 270
3534                 157
3535                 230
3536                  NA
3537                 177
3538                 185
3539                 629
3540                 338
3541                  NA
3542                 435
3543                 532
3544                 389
3545                 389
3546                 173
3547                 532
3548                 320
3549                  55
3550                 115
3551                  30
3552                 425
3553                 389
3554                  73
3555                 124
3556                 342
3557                 326
3558                  NA
3559                 177
3560                 124
3561                 432
3562                 124
3563                 332
3564                  NA
3565                 735
3566                 492
3567                 572
3568                 316
3569                 157
3570                 572
3571                 381
3572                 492
3573                 249
3574                 332
3575                 155
3576                  61
3577                 532
3578                 332
3579                  NA
3580                  37
3581                 276
3582                 188
3583                 249
3584                 331
3585                 162
3586                 162
3587                 287
3588                 188
3589                 880
3590                 442
3591                 442
3592                 629
3593                 442
3594                 442
3595                 432
3596                 190
3597                 270
3598                 157
3599                 442
3600                 442
3601                 442
3602                  55
3603                 425
3604                 442
3605                 381
3606                 157
3607                 432
3608                 406
3609                 406
3610                 208
3611                 117
3612                  55
3613                 243
3614                 126
3615                  NA
3616                 406
3617                 190
3618                 252
3619                 249
3620                 287
3621                 188
3622                 230
3623                 880
3624                 195
3625                 458
3626                 189
3627                 276
3628                 228
3629                 195
3630                 735
3631                 398
3632                 442
3633                 195
3634                 735
3635                 270
3636                 214
3637                 381
3638                 381
3639                 356
3640                 320
3641                 145
3642                 109
3643                 323
3644                 280
3645                 642
3646                  NA
3647                 269
3648                 308
3649                 389
3650                 207
3651                 243
3652                 231
3653                 226
3654                 211
3655                  73
3656                 185
3657                 204
3658                 188
3659                 650
3660                 406
3661                 532
3662                 389
3663                 650
3664                 735
3665                 532
3666                 187
3667                 432
3668                 532
3669                 201
3670                 354
3671                 124
3672                 376
3673                 115
3674                 204
3675                  NA
3676                 425
3677                  55
3678                 338
3679                 233
3680                 157
3681                 157
3682                 323
3683                 101
3684                 442
3685                 532
3686                 195
3687                 414
3688                 109
3689                 650
3690                 926
3691                 201
3692                 228
3693                 356
3694                 201
3695                 642
3696                 356
3697                 532
3698                 336
3699                 650
3700                 442
3701                 442
3702                 278
3703                  NA
3704                 442
3705                 163
3706                 177
3707                 101
3708                  NA
3709                  30
3710                 572
3711                 296
3712                 338
3713                 185
3714                 442
3715                 188
3716                  NA
3717                 425
3718                 425
3719                 926
3720                 195
3721                 442
3722                 432
3723                 381
3724                 332
3725                  NA
3726                 170
3727                 208
3728                 342
3729                 195
3730                 735
3731                 650
3732                 162
3733                 188
3734                 468
3735                 249
3736                 329
3737                 280
3738                 195
3739                 326
3740                 381
3741                 125
3742                 280
3743                 155
3744                 323
3745                 735
3746                 735
3747                 269
3748                 117
3749                 207
3750                 389
3751                 119
3752                 249
3753                 188
3754                 134
3755                 389
3756                 190
3757                 112
3758                 208
3759                 425
3760                 532
3761                 252
3762                 376
3763                  30
3764                 221
3765                 218
3766                  NA
3767                 354
3768                 376
3769                 124
3770                 160
3771                 389
3772                 249
3773                 145
3774                 383
3775                 342
3776                 398
3777                 155
3778                 338
3779                 157
3780                 342
3781                 406
3782                 326
3783                 249
3784                 249
3785                 442
3786                 425
3787                 155
3788                 398
3789                 195
3790                 442
3791                 532
3792                 423
3793                 252
3794                 125
3795                 301
3796                 735
3797                 532
3798                 125
3799                 301
3800                 323
3801                 201
3802                 204
3803                 417
3804                 233
3805                 735
3806                 332
3807                 425
3808                 381
3809                 650
3810                 326
3811                 650
3812                 608
3813                 608
3814                 195
3815                 650
3816                  NA
3817                 435
3818                 880
3819                 326
3820                  73
3821                 421
3822                 136
3823                 243
3824                  NA
3825                  NA
3826                  NA
3827                 326
3828                 326
3829                 173
3830                  73
3831                 423
3832                 195
3833                 243
3834                  92
3835                 650
3836                 326
3837                  73
3838                 926
3839                  92
3840                 650
3841                 326
3842                 249
3843                 249
3844                 323
3845                 880
3846                 425
3847                 195
3848                 249
3849                 195
3850                 195
3851                 249
3852                  73
3853                  NA
3854                  52
3855                 398
3856                 214
3857                 195
3858                 204
3859                 173
3860                 173
3861                  52
3862                  44
3863                  NA
3864                 650
3865                 204
3866                 650
3867                 326
3868                 173
3869                 173
3870                  52
3871                 204
3872                 195
3873                 735
3874                 110
3875                 104
3876                 125
3877                 735
3878                 492
3879                 532
3880                 425
3881                  30
3882                 296
3883                 650
3884                 735
3885                 458
3886                 262
3887                 572
3888                 195
3889                 458
3890                 458
3891                  88
3892                  NA
3893                 225
3894                 406
3895                 145
3896                 629
3897                  55
3898                 423
3899                 102
3900                 168
3901                 492
3902                 296
3903                 124
3904                 287
3905                 278
3906                  NA
3907                 208
3908                 735
3909                 650
3910                 650
3911                 640
3912                 177
3913                 342
3914                 640
3915                 145
3916                 458
3917                 642
3918                 442
3919                 442
3920                 381
3921                 735
3922                 642
3923                 332
3924                 101
3925                 162
3926                 642
3927                 389
3928                 308
3929                 130
3930                 231
3931                 211
3932                 230
3933                  58
3934                 231
3935                 320
3936                  NA
3937                 389
3938                 532
3939                 572
3940                  NA
3941                  NA
3942                 157
3943                 387
3944                 532
3945                 442
3946                 156
3947                 221
3948                  73
3949                 211
3950                 532
3951                 157
3952                 157
3953                  37
3954                 195
3955                 349
3956                 650
3957                 177
3958                 735
3959                 201
3960                 735
3961                 880
3962                 442
3963                 381
3964                 381
3965                 332
3966                 735
3967                 442
3968                 432
3969                 650
3970                 195
3971                 211
3972                 442
3973                 425
3974                 157
3975                 381
3976                 332
3977                 332
3978                 381
3979                 381
3980                 735
3981                 425
3982                 342
3983                 442
3984                 381
3985                 381
3986                  73
3987                 406
3988                 406
3989                 155
3990                 650
3991                 195
3992                 650
3993                 398
3994                 188
3995                 188
3996                 458
3997                 880
3998                 640
3999                 188
4000                 188
4001                 435
4002                 249
4003                 211
4004                  NA
4005                  NA
4006                  73
4007                 252
4008                 213
4009                 383
4010                 356
4011                 117
4012                 406
4013                 572
4014                  NA
4015                 472
4016                 926
4017                 221
4018                 173
4019                 177
4020                 572
4021                 208
4022                 287
4023                 163
4024                 735
4025                 160
4026                 417
4027                 532
4028                 195
4029                 532
4030                 354
4031                 496
4032                 442
4033                  55
4034                 204
4035                 244
4036                 458
4037                 650
4038                 195
4039                 113
4040                 190
4041                 389
4042                 381
4043                 204
4044                 163
4045                 354
4046                 326
4047                  NA
4048                 421
4049                 323
4050                 338
4051                 406
4052                 208
4053                 170
4054                 101
4055                 145
4056                 212
4057                 435
4058                 423
4059                 387
4060                 414
4061                 187
4062                 423
4063                 173
4064                 211
4065                 354
4066                 195
4067                  NA
4068                 403
4069                 735
4070                  NA
4071                 218
4072                 650
4073                 403
4074                 156
4075                 650
4076                 880
4077                 280
4078                 173
4079                 332
4080                 195
4081                 383
4082                 173
4083                 381
4084                 223
4085                 442
4086                 371
4087                 211
4088                 532
4089                 572
4090                 204
4091                 157
4092                 223
4093                 432
4094                 124
4095                 249
4096                 458
4097                  37
4098                 326
4099                 880
4100                 280
4101                 233
4102                 162
4103                 214
4104                  85
4105                 468
4106                 326
4107                  73
4108                 188
4109                 338
4110                 735
4111                 195
4112                  51
4113                 208
4114                 243
4115                 403
4116                  NA
4117                 145
4118                 880
4119                 145
4120                 145
4121                 880
4122                 640
4123                 332
4124                 421
4125                 214
4126                 468
4127                 572
4128                 735
4129                 195
4130                 113
4131                 458
4132                 188
4133                 442
4134                 389
4135                 323
4136                 458
4137                 389
4138                 532
4139                 124
4140                  55
4141                 211
4142                 425
4143                 425
4144                 252
4145                  NA
4146                 383
4147                 387
4148                 496
4149                 468
4150                 421
4151                 455
4152                 532
4153                 532
4154                 188
4155                  30
4156                 642
4157                 126
4158                 173
4159                 342
4160                 249
4161                 403
4162                 381
4163                 280
4164                 425
4165                 442
4166                 381
4167                 432
4168                 195
4169                 492
4170                 280
4171                 423
4172                 381
4173                 442
4174                 177
4175                 442
4176                 332
4177                 425
4178                 442
4179                 332
4180                 381
4181                 332
4182                 332
4183                 442
4184                 406
4185                  73
4186                 249
4187                 160
4188                 163
4189                 406
4190                 195
4191                 163
4192                  NA
4193                 629
4194                 195
4195                  NA
4196                 403
4197                 188
4198                 458
4199                 458
4200                 188
4201                 219
4202                 188
4203                 880
4204                 650
4205                 221
4206                 323
4207                 332
4208                 195
4209                 326
4210                 249
4211                 735
4212                 425
4213                 432
4214                 299
4215                 316
4216                 442
4217                 442
4218                 455
4219                 112
4220                 195
4221                 435
4222                  NA
4223                 249
4224                 435
4225                 650
4226                  52
4227                 381
4228                 735
4229                 207
4230                 204
4231                 381
4232                 735
4233                 735
4234                 532
4235                 157
4236                 532
4237                 320
4238                 389
4239                 199
4240                  38
4241                 226
4242                 532
4243                 425
4244                  99
4245                 233
4246                 468
4247                 194
4248                 157
4249                 226
4250                 187
4251                 532
4252                  73
4253                  73
4254                  NA
4255                 650
4256                 735
4257                 650
4258                 425
4259                 195
4260                 389
4261                 389
4262                 425
4263                 735
4264                 735
4265                 320
4266                 389
4267                 735
4268                 532
4269                 320
4270                 320
4271                 389
4272                 735
4273                 425
4274                 157
4275                 425
4276                 442
4277                 381
4278                 195
4279                 423
4280                 188
4281                 423
4282                 211
4283                  NA
4284                 425
4285                 442
4286                 532
4287                  NA
4288                 389
4289                 218
4290                  NA
4291                 442
4292                  NA
4293                  NA
4294                  NA
4295                 157
4296                  NA
4297                 432
4298                 735
4299                 532
4300                 173
4301                 421
4302                 124
4303                 735
4304                 532
4305                 190
4306                 532
4307                 223
4308                 735
4309                 629
4310                 212
4311                 332
4312                 221
4313                 735
4314                 262
4315                 201
4316                  70
4317                 323
4318                  73
4319                  73
4320                 157
4321                 173
4322                 124
4323                 249
4324                  NA
4325                 332
4326                 403
4327                 233
4328                 287
4329                 915
4330                 173
4331                 442
4332                 187
4333                  30
4334                 650
4335                 155
4336                 188
4337                 442
4338                 735
4339                 442
4340                 425
4341                 442
4342                 155
4343                 381
4344                 442
4345                 170
4346                 629
4347                 880
4348                 145
4349                 145
4350                 880
4351                  92
4352                 186
4353                 356
4354                 159
4355                 735
4356                 125
4357                 207
4358                 735
4359                 249
4360                  90
4361                 342
4362                 195
4363                 249
4364                 403
4365                 159
4366                 342
4367                 735
4368                 218
4369                 218
4370                 101
4371                  75
4372                 332
4373                 468
4374                 342
4375                 249
4376                 332
4377                 468
4378                 532
4379                 458
4380                 280
4381                 214
4382                 425
4383                 150
4384                 408
4385                 269
4386                 389
4387                 425
4388                  NA
4389                 458
4390                 188
4391                 406
4392                 223
4393                 320
4394                 735
4395                 532
4396                 442
4397                 442
4398                 218
4399                 492
4400                 432
4401                 532
4402                 157
4403                 332
4404                 163
4405                 342
4406                 342
4407                 218
4408                 735
4409                 212
4410                  44
4411                 398
4412                 249
4413                 180
4414                 214
4415                 442
4416                 442
4417                 157
4418                 442
4419                 381
4420                 187
4421                 880
4422                 145
4423                 173
4424                 389
4425                 642
4426                  NA
4427                  73
4428                 195
4429                 173
4430                 204
4431                 926
4432                  99
4433                 233
4434                 332
4435                 735
4436                 157
4437                 425
4438                 425
4439                  73
4440                 194
4441                  73
4442                 425
4443                 320
4444                 389
4445                 389
4446                 532
4447                 532
4448                 199
4449                 492
4450                 338
4451                 124
4452                 496
4453                 320
4454                 190
4455                 496
4456                 187
4457                 280
4458                 735
4459                 735
4460                 468
4461                  NA
4462                  NA
4463                 200
4464                  38
4465                 231
4466                 312
4467                 226
4468                 204
4469                 915
4470                  NA
4471                 326
4472                  73
4473                  NA
4474                  NA
4475                 915
4476                  NA
4477                 249
4478                 226
4479                  NA
4480                 926
4481                  55
4482                 421
4483                 115
4484                  NA
4485                 880
4486                 354
4487                 308
4488                 187
4489                 532
4490                 207
4491                 225
4492                 156
4493                  73
4494                 117
4495                 650
4496                 244
4497                 223
4498                 280
4499                 118
4500                 225
4501                 252
4502                 389
4503                 389
4504                 320
4505                 398
4506                 180
4507                 157
4508                 332
4509                 735
4510                 629
4511                 650
4512                 403
4513                 188
4514                 326
4515                 211
4516                 326
4517                 387
4518                 326
4519                 195
4520                 492
4521                 195
4522                 492
4523                  NA
4524                  73
4525                 389
4526                 425
4527                 296
4528                 243
4529                  55
4530                 532
4531                 421
4532                  NA
4533                 124
4534                 249
4535                 492
4536                  NA
4537                 629
4538                 195
4539                 157
4540                 381
4541                 608
4542                 442
4543                 406
4544                  NA
4545                 650
4546                 650
4547                 190
4548                 650
4549                 145
4550                 188
4551                 188
4552                 650
4553                 136
4554                 442
4555                 173
4556                 159
4557                 458
4558                 212
4559                 211
4560                 230
4561                 389
4562                 389
4563                 389
4564                 338
4565                 218
4566                 398
4567                 163
4568                 492
4569                 201
4570                 432
4571                 278
4572                 320
4573                  NA
4574                 532
4575                 223
4576                 432
4577                 376
4578                 354
4579                 432
4580                 414
4581                 296
4582                 338
4583                 201
4584                 157
4585                  73
4586                 172
4587                 162
4588                 249
4589                 195
4590                  NA
4591                 452
4592                 425
4593                 190
4594                 435
4595                 629
4596                 243
4597                 157
4598                 157
4599                 354
4600                  73
4601                 188
4602                 880
4603                  37
4604                  92
4605                  52
4606                  NA
4607                 195
4608                 332
4609                  44
4610                 389
4611                 278
4612                 425
4613                 389
4614                 389
4615                 389
4616                 425
4617                 735
4618                 389
4619                 735
4620                 389
4621                 389
4622                 389
4623                  NA
4624                 320
4625                 218
4626                 296
4627                 532
4628                 201
4629                 155
4630                 270
4631                 640
4632                 442
4633                  88
4634                 316
4635                 249
4636                 214
4637                 425
4638                 160
4639                 280
4640                 442
4641                 316
4642                 323
4643                 492
4644                  NA
4645                 249
4646                 492
4647                 201
4648                 735
4649                  NA
4650                 735
4651                 425
4652                 642
4653                 458
4654                 249
4655                 177
4656                 156
4657                  73
4658                 207
4659                 211
4660                  NA
4661                  NA
4662                  30
4663                  NA
4664                 926
4665                 204
4666                 880
4667                 188
4668                 880
4669                 880
4670                 110
4671                 119
4672                 572
4673                 173
4674                 120
4675                 472
4676                 280
4677                 186
4678                 160
4679                 126
4680                 650
4681                 162
4682                 176
4683                 332
4684                 336
4685                 213
4686                 308
4687                 156
4688                 650
4689                 213
4690                  44
4691                 425
4692                 262
4693                 208
4694                  73
4695                  NA
4696                 406
4697                  NA
4698                 403
4699                 650
4700                 145
4701                 145
4702                 387
4703                 204
4704                 926
4705                 671
4706                 236
4707                 926
4708                 148
4709                 110
4710                 270
4711                  58
4712                 389
4713                 425
4714                 425
4715                 389
4716                 389
4717                 249
4718                 532
4719                 425
4720                 342
4721                 211
4722                 496
4723                 270
4724                 342
4725                 880
4726                 326
4727                 406
4728                 160
4729                 342
4730                 398
4731                 735
4732                 735
4733                 629
4734                 280
4735                 136
4736                 136
4737                 326
4738                 177
4739                 292
4740                 173
4741                 287
4742                 926
4743                  NA
4744                 406
4745                 208
4746                  51
4747                 403
4748                  NA
4749                 432
4750                 195
4751                  44
4752                 383
4753                 381
4754                 389
4755                 104
4756                 269
4757                 113
4758                 162
4759                 398
4760                 280
4761                 458
4762                 120
4763                  NA
4764                 389
4765                 230
4766                 458
4767                 312
4768                 425
4769                 735
4770                 389
4771                 326
4772                 124
4773                 117
4774                 252
4775                 124
4776                 204
4777                 252
4778                 218
4779                 223
4780                 326
4781                 383
4782                 207
4783                 650
4784                 214
4785                 120
4786                 299
4787                 136
4788                 406
4789                 926
4790                 301
4791                 155
4792                  NA
4793                  73
4794                 186
4795                 287
4796                 194
4797                 735
4798                 230
4799                 406
4800                 301
4801                 232
4802                  NA
4803                 117
4804                  73
4805                 650
4806                 204
4807                 389
4808                 296
4809                 204
4810                 496
4811                  NA
4812                 458
4813                 276
4814                 331
4815                 213
4816                 244
4817                 383
4818                 455
4819                 356
4820                 403
4821                 125
4822                 458
4823                 332
4824                 157
4825                 157
4826                 195
4827                 381
4828                  73
4829                 190
4830                 354
4831                  NA
4832                 468
4833                 126
4834                 126
4835                 145
4836                 145
4837                 316
4838                 455
4839                 154
4840                 119
4841                 735
4842                  NA
4843                 389
4844                 233
4845                 204
4846                 421
4847                 193
4848                 211
4849                 109
4850                 125
4851                 200
4852                  56
4853                 389
4854                 126
4855                 650
4856                  NA
4857                 425
4858                 425
4859                 442
4860                 432
4861                 442
4862                 115
4863                 270
4864                 496
4865                 389
4866                 532
4867                 532
4868                 735
4869                 532
4870                 320
4871                 165
4872                 455
4873                 210
4874                  70
4875                 458
4876                 186
4877                 642
4878                 332
4879                 173
4880                 118
4881                 455
4882                 671
4883                 227
4884                 335
4885                 188
4886                 249
4887                 458
4888                 125
4889                 218
4890                 236
4891                 194
4892                 168
4893                 356
4894                 458
4895                 425
4896                 332
4897                 442
4898                 354
4899                  NA
4900                  NA
4901                 308
4902                 308
4903                  NA
4904                 249
4905                 196
4906                 421
4907                 168
4908                 188
4909                 188
4910                 188
4911                 458
4912                 188
4913                  NA
4914                 442
4915                 225
4916                 118
4917                 269
4918                  NA
4919                 155
4920                  NA
4921                 211
4922                 425
4923                 200
4924                 141
4925                 320
4926                 113
4927                 185
4928                 194
4929                 230
4930                 208
4931                 532
4932                 320
4933                 332
4934                  NA
4935                 532
4936                 425
4937                 252
4938                 243
4939                  NA
4940                 435
4941                 492
4942                  NA
4943                 243
4944                 187
4945                 496
4946                 496
4947                 218
4948                 650
4949                 735
4950                 336
4951                 458
4952                  NA
4953                  NA
4954                  NA
4955                 308
4956                  73
4957                 252
4958                 880
4959                 312
4960                 201
4961                 195
4962                  NA
4963                  88
4964                  51
4965                 208
4966                  51
4967                 223
4968                 249
4969                  44
4970                 218
4971                 180
4972                 249
4973                  NA
4974                 442
4975                 207
4976                 332
4977                 458
4978                  70
4979                  73
4980                 124
4981                 442
4982                 187
4983                 432
4984                 354
4985                 101
4986                 177
4987                 425
4988                 301
4989                 227
4990                 109
4991                 381
4992                 180
4993                 201
4994                 208
4995                  73
4996                 207
4997                 270
4998                 195
4999                 223
                                                        NAME.y
1                       Detroit-Warren-Dearborn, MI Metro Area
2                       Detroit-Warren-Dearborn, MI Metro Area
3                       Detroit-Warren-Dearborn, MI Metro Area
4                       Detroit-Warren-Dearborn, MI Metro Area
5                San Francisco-Oakland-Berkeley, CA Metro Area
6                         Phoenix-Mesa-Chandler, AZ Metro Area
7                       Detroit-Warren-Dearborn, MI Metro Area
8           Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
9                       Detroit-Warren-Dearborn, MI Metro Area
10                      Detroit-Warren-Dearborn, MI Metro Area
11                      Detroit-Warren-Dearborn, MI Metro Area
12                      Detroit-Warren-Dearborn, MI Metro Area
13              Portland-Vancouver-Hillsboro, OR-WA Metro Area
14                        Phoenix-Mesa-Chandler, AZ Metro Area
15               San Jose-Sunnyvale-Santa Clara, CA Metro Area
16               San Jose-Sunnyvale-Santa Clara, CA Metro Area
17                      Detroit-Warren-Dearborn, MI Metro Area
18                             Dayton-Kettering, OH Metro Area
19                          Buffalo-Cheektowaga, NY Metro Area
20                                  Panama City, FL Metro Area
21          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
22             Riverside-San Bernardino-Ontario, CA Metro Area
23                        Providence-Warwick, RI-MA Metro Area
24                                 Jacksonville, FL Metro Area
25          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
26                                    Asheville, NC Metro Area
27            New York-Newark-Jersey City, NY-NJ-PA Metro Area
28                                     Key West, FL Micro Area
29                                      Jackson, MS Metro Area
30               Los Angeles-Long Beach-Anaheim, CA Metro Area
31              Portland-Vancouver-Hillsboro, OR-WA Metro Area
32                                 Raleigh-Cary, NC Metro Area
33                  Sacramento-Roseville-Folsom, CA Metro Area
34          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
35               San Francisco-Oakland-Berkeley, CA Metro Area
36                       Denver-Aurora-Lakewood, CO Metro Area
37            New York-Newark-Jersey City, NY-NJ-PA Metro Area
38               San Diego-Chula Vista-Carlsbad, CA Metro Area
39                      Seattle-Tacoma-Bellevue, WA Metro Area
40               San Diego-Chula Vista-Carlsbad, CA Metro Area
41                  Sacramento-Roseville-Folsom, CA Metro Area
42                           Kennewick-Richland, WA Metro Area
43            New York-Newark-Jersey City, NY-NJ-PA Metro Area
44            New York-Newark-Jersey City, NY-NJ-PA Metro Area
45             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
46                  Dallas-Fort Worth-Arlington, TX Metro Area
47                                    Lafayette, LA Metro Area
48                 Austin-Round Rock-Georgetown, TX Metro Area
49                             Cincinnati, OH-KY-IN Metro Area
50                               Kansas City, MO-KS Metro Area
51               Chicago-Naperville-Elgin, IL-IN-WI Metro Area
52               San Diego-Chula Vista-Carlsbad, CA Metro Area
53                                     Syracuse, NY Metro Area
54          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
55                               Urban Honolulu, HI Metro Area
56                          Buffalo-Cheektowaga, NY Metro Area
57                                  Sioux Falls, SD Metro Area
58                                      Bozeman, MT Micro Area
59                      Seattle-Tacoma-Bellevue, WA Metro Area
60                   Des Moines-West Des Moines, IA Metro Area
61                   Boston-Cambridge-Newton, MA-NH Metro Area
62            New York-Newark-Jersey City, NY-NJ-PA Metro Area
63                                     Fargo, ND-MN Metro Area
64             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
65     Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
66            New York-Newark-Jersey City, NY-NJ-PA Metro Area
67                         New Orleans-Metairie, LA Metro Area
68                    San Antonio-New Braunfels, TX Metro Area
69               Los Angeles-Long Beach-Anaheim, CA Metro Area
70                                       Fresno, CA Metro Area
71                                  Idaho Falls, ID Metro Area
72             Riverside-San Bernardino-Ontario, CA Metro Area
73                              Gulfport-Biloxi, MS Metro Area
74                   Boston-Cambridge-Newton, MA-NH Metro Area
75                    Orlando-Kissimmee-Sanford, FL Metro Area
76                                  Spartanburg, SC Metro Area
77                      Albany-Schenectady-Troy, NY Metro Area
78            Hartford-East Hartford-Middletown, CT Metro Area
79                      Detroit-Warren-Dearborn, MI Metro Area
80                           Milwaukee-Waukesha, WI Metro Area
81                  Dallas-Fort Worth-Arlington, TX Metro Area
82                                Memphis, TN-MS-AR Metro Area
83                    Baltimore-Columbia-Towson, MD Metro Area
84                                     Columbus, OH Metro Area
85                         New Orleans-Metairie, LA Metro Area
86       Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
87                                   Pittsburgh, PA Metro Area
88          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
89                    Orlando-Kissimmee-Sanford, FL Metro Area
90                 Las Vegas-Henderson-Paradise, NV Metro Area
91               San Diego-Chula Vista-Carlsbad, CA Metro Area
92                  Sacramento-Roseville-Folsom, CA Metro Area
93                                 Raleigh-Cary, NC Metro Area
94                                     Columbus, OH Metro Area
95                    Orlando-Kissimmee-Sanford, FL Metro Area
96              Portland-Vancouver-Hillsboro, OR-WA Metro Area
97                      Omaha-Council Bluffs, NE-IA Metro Area
98           Deltona-Daytona Beach-Ormond Beach, FL Metro Area
99                 Indianapolis-Carmel-Anderson, IN Metro Area
100           New York-Newark-Jersey City, NY-NJ-PA Metro Area
101                              Salt Lake City, UT Metro Area
102               North Port-Sarasota-Bradenton, FL Metro Area
103          Crestview-Fort Walton Beach-Destin, FL Metro Area
104                  Boston-Cambridge-Newton, MA-NH Metro Area
105                Indianapolis-Carmel-Anderson, IN Metro Area
106                                      Tucson, AZ Metro Area
107              Los Angeles-Long Beach-Anaheim, CA Metro Area
108              Los Angeles-Long Beach-Anaheim, CA Metro Area
109              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
110                       Greensboro-High Point, NC Metro Area
111                            Cleveland-Elyria, OH Metro Area
112                       Grand Rapids-Kentwood, MI Metro Area
113     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
114              Los Angeles-Long Beach-Anaheim, CA Metro Area
115            Houston-The Woodlands-Sugar Land, TX Metro Area
116                           Kalamazoo-Portage, MI Metro Area
117           New York-Newark-Jersey City, NY-NJ-PA Metro Area
118           New York-Newark-Jersey City, NY-NJ-PA Metro Area
119                      Denver-Aurora-Lakewood, CO Metro Area
120                                        Hilo, HI Micro Area
121           New York-Newark-Jersey City, NY-NJ-PA Metro Area
122           New York-Newark-Jersey City, NY-NJ-PA Metro Area
123           New York-Newark-Jersey City, NY-NJ-PA Metro Area
124           New York-Newark-Jersey City, NY-NJ-PA Metro Area
125           New York-Newark-Jersey City, NY-NJ-PA Metro Area
126                                       Kapaa, HI Micro Area
127                              Salt Lake City, UT Metro Area
128              Los Angeles-Long Beach-Anaheim, CA Metro Area
129                      Spokane-Spokane Valley, WA Metro Area
130                      Spokane-Spokane Valley, WA Metro Area
131                                  Jackson, WY-ID Micro Area
132              San Francisco-Oakland-Berkeley, CA Metro Area
133                            Colorado Springs, CO Metro Area
134           New York-Newark-Jersey City, NY-NJ-PA Metro Area
135           New York-Newark-Jersey City, NY-NJ-PA Metro Area
136                                        Reno, NV Metro Area
137                                  Boise City, ID Metro Area
138                                Jacksonville, NC Metro Area
139                            Cincinnati, OH-KY-IN Metro Area
140                                    Syracuse, NY Metro Area
141                            Cleveland-Elyria, OH Metro Area
142             Tampa-St. Petersburg-Clearwater, FL Metro Area
143                                    Syracuse, NY Metro Area
144                Las Vegas-Henderson-Paradise, NV Metro Area
145                                   Duluth, MN-WI Metro Area
146           Hartford-East Hartford-Middletown, CT Metro Area
147           New York-Newark-Jersey City, NY-NJ-PA Metro Area
148                Austin-Round Rock-Georgetown, TX Metro Area
149                Las Vegas-Henderson-Paradise, NV Metro Area
150                  Augusta-Richmond County, GA-SC Metro Area
151                                    Richmond, VA Metro Area
152                   San Antonio-New Braunfels, TX Metro Area
153              Los Angeles-Long Beach-Anaheim, CA Metro Area
154           New York-Newark-Jersey City, NY-NJ-PA Metro Area
155                  Boston-Cambridge-Newton, MA-NH Metro Area
156              Los Angeles-Long Beach-Anaheim, CA Metro Area
157           Hartford-East Hartford-Middletown, CT Metro Area
158                         Buffalo-Cheektowaga, NY Metro Area
159           New York-Newark-Jersey City, NY-NJ-PA Metro Area
160                                    Richmond, VA Metro Area
161              Los Angeles-Long Beach-Anaheim, CA Metro Area
162                         Buffalo-Cheektowaga, NY Metro Area
163                                    Richmond, VA Metro Area
164                   Orlando-Kissimmee-Sanford, FL Metro Area
165              Los Angeles-Long Beach-Anaheim, CA Metro Area
166                                   Anchorage, AK Metro Area
167                                   Kalispell, MT Micro Area
168              Los Angeles-Long Beach-Anaheim, CA Metro Area
169                                    Missoula, MT Metro Area
170                                      Hailey, ID Micro Area
171                               Oklahoma City, OK Metro Area
172                       Grand Rapids-Kentwood, MI Metro Area
173              Los Angeles-Long Beach-Anaheim, CA Metro Area
174                       Phoenix-Mesa-Chandler, AZ Metro Area
175              San Diego-Chula Vista-Carlsbad, CA Metro Area
176                     Seattle-Tacoma-Bellevue, WA Metro Area
177           New York-Newark-Jersey City, NY-NJ-PA Metro Area
178                                  Boise City, ID Metro Area
179                      Spokane-Spokane Valley, WA Metro Area
180                       Phoenix-Mesa-Chandler, AZ Metro Area
181              San Francisco-Oakland-Berkeley, CA Metro Area
182                 Sacramento-Roseville-Folsom, CA Metro Area
183           New York-Newark-Jersey City, NY-NJ-PA Metro Area
184           New York-Newark-Jersey City, NY-NJ-PA Metro Area
185           New York-Newark-Jersey City, NY-NJ-PA Metro Area
186                  Boston-Cambridge-Newton, MA-NH Metro Area
187        Little Rock-North Little Rock-Conway, AR Metro Area
188                                 Baton Rouge, LA Metro Area
189             Portland-Vancouver-Hillsboro, OR-WA Metro Area
190                           Lexington-Fayette, KY Metro Area
191                              Urban Honolulu, HI Metro Area
192    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
193                                St. Louis, MO-IL Metro Area
194                   Orlando-Kissimmee-Sanford, FL Metro Area
195                       La Crosse-Onalaska, WI-MN Metro Area
196                   Orlando-Kissimmee-Sanford, FL Metro Area
197                   Orlando-Kissimmee-Sanford, FL Metro Area
198                                   Green Bay, WI Metro Area
199             Tampa-St. Petersburg-Clearwater, FL Metro Area
200                                      Tucson, AZ Metro Area
201                      Denver-Aurora-Lakewood, CO Metro Area
202              San Francisco-Oakland-Berkeley, CA Metro Area
203                                   Knoxville, TN Metro Area
204                                Cedar Rapids, IA Metro Area
205                      Denver-Aurora-Lakewood, CO Metro Area
206                                   Brunswick, GA Metro Area
207                       Cape Coral-Fort Myers, FL Metro Area
208                                 Spartanburg, SC Metro Area
209    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
210         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
211   Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
212                                    Savannah, GA Metro Area
213                                       Tulsa, OK Metro Area
214         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
215         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
216         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
217         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
218         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
219         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
220                 Dallas-Fort Worth-Arlington, TX Metro Area
221         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
222                       Cape Coral-Fort Myers, FL Metro Area
223         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
224         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
225         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
226                     Portland-South Portland, ME Metro Area
227         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
228         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
229         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
230         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
231         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
232         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
233         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
234         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
235         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
236         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
237                        Lansing-East Lansing, MI Metro Area
238                        New Orleans-Metairie, LA Metro Area
239                        New Orleans-Metairie, LA Metro Area
240              Los Angeles-Long Beach-Anaheim, CA Metro Area
241                           Birmingham-Hoover, AL Metro Area
242               Charlotte-Concord-Gastonia, NC-SC Metro Area
243                                Raleigh-Cary, NC Metro Area
244              San Francisco-Oakland-Berkeley, CA Metro Area
245                  Pensacola-Ferry Pass-Brent, FL Metro Area
246                   Orlando-Kissimmee-Sanford, FL Metro Area
247            Riverside-San Bernardino-Ontario, CA Metro Area
248                 Hilton Head Island-Bluffton, SC Metro Area
249              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
250              Louisville/Jefferson County, KY-IN Metro Area
251                                    Syracuse, NY Metro Area
252              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
253              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
254                                   Duluth, MN-WI Metro Area
255              Los Angeles-Long Beach-Anaheim, CA Metro Area
256                  Des Moines-West Des Moines, IA Metro Area
257                 Charleston-North Charleston, SC Metro Area
258                Indianapolis-Carmel-Anderson, IN Metro Area
259            Riverside-San Bernardino-Ontario, CA Metro Area
260                  Boston-Cambridge-Newton, MA-NH Metro Area
261                              Kansas City, MO-KS Metro Area
262                                 Albuquerque, NM Metro Area
263                                        Reno, NV Metro Area
264                                 Albuquerque, NM Metro Area
265         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
266     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
267                                   Rochester, MN Metro Area
268                     Portland-South Portland, ME Metro Area
269                  Boston-Cambridge-Newton, MA-NH Metro Area
270                     South Bend-Mishawaka, IN-MI Metro Area
271  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
272    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
273                Las Vegas-Henderson-Paradise, NV Metro Area
274                                Raleigh-Cary, NC Metro Area
275                                Raleigh-Cary, NC Metro Area
276                                Raleigh-Cary, NC Metro Area
277                                Raleigh-Cary, NC Metro Area
278              San Francisco-Oakland-Berkeley, CA Metro Area
279                                Raleigh-Cary, NC Metro Area
280                                Raleigh-Cary, NC Metro Area
281                 Dallas-Fort Worth-Arlington, TX Metro Area
282                 Burlington-South Burlington, VT Metro Area
283                       Cape Coral-Fort Myers, FL Metro Area
284                                   Green Bay, WI Metro Area
285              San Diego-Chula Vista-Carlsbad, CA Metro Area
286                   Orlando-Kissimmee-Sanford, FL Metro Area
287             Tampa-St. Petersburg-Clearwater, FL Metro Area
288                                Fayetteville, NC Metro Area
289                     Seattle-Tacoma-Bellevue, WA Metro Area
290                   Baltimore-Columbia-Towson, MD Metro Area
291    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
292                     Seattle-Tacoma-Bellevue, WA Metro Area
293                     Seattle-Tacoma-Bellevue, WA Metro Area
294                          Milwaukee-Waukesha, WI Metro Area
295                     Seattle-Tacoma-Bellevue, WA Metro Area
296                     Seattle-Tacoma-Bellevue, WA Metro Area
297                                  St. George, UT Metro Area
298                     Seattle-Tacoma-Bellevue, WA Metro Area
299  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
300                            Cincinnati, OH-KY-IN Metro Area
301         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
302                     Detroit-Warren-Dearborn, MI Metro Area
303                     Detroit-Warren-Dearborn, MI Metro Area
304                              Salt Lake City, UT Metro Area
305                              Salt Lake City, UT Metro Area
306                                Cedar Rapids, IA Metro Area
307                          Milwaukee-Waukesha, WI Metro Area
308                                    Columbus, OH Metro Area
309                              Salt Lake City, UT Metro Area
310                              Salt Lake City, UT Metro Area
311                              Salt Lake City, UT Metro Area
312                              Salt Lake City, UT Metro Area
313                              Salt Lake City, UT Metro Area
314           New York-Newark-Jersey City, NY-NJ-PA Metro Area
315                              Salt Lake City, UT Metro Area
316                              Salt Lake City, UT Metro Area
317                              Salt Lake City, UT Metro Area
318                              Salt Lake City, UT Metro Area
319                              Salt Lake City, UT Metro Area
320  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
321         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
322                              Chattanooga, TN-GA Metro Area
323                       Grand Rapids-Kentwood, MI Metro Area
324                          Eugene-Springfield, OR Metro Area
325                                        Bend, OR Metro Area
326              Louisville/Jefferson County, KY-IN Metro Area
327                                St. Louis, MO-IL Metro Area
328                      Spokane-Spokane Valley, WA Metro Area
329                                   Green Bay, WI Metro Area
330                                 Sioux Falls, SD Metro Area
331                                     Saginaw, MI Metro Area
332                Las Vegas-Henderson-Paradise, NV Metro Area
333             Tampa-St. Petersburg-Clearwater, FL Metro Area
334             Tampa-St. Petersburg-Clearwater, FL Metro Area
335             Tampa-St. Petersburg-Clearwater, FL Metro Area
336            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
337            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
338                Austin-Round Rock-Georgetown, TX Metro Area
339                   Baltimore-Columbia-Towson, MD Metro Area
340                            Cleveland-Elyria, OH Metro Area
341              San Diego-Chula Vista-Carlsbad, CA Metro Area
342            Riverside-San Bernardino-Ontario, CA Metro Area
343               Charlotte-Concord-Gastonia, NC-SC Metro Area
344                      Denver-Aurora-Lakewood, CO Metro Area
345                      Denver-Aurora-Lakewood, CO Metro Area
346           New York-Newark-Jersey City, NY-NJ-PA Metro Area
347                Las Vegas-Henderson-Paradise, NV Metro Area
348                   Orlando-Kissimmee-Sanford, FL Metro Area
349            Riverside-San Bernardino-Ontario, CA Metro Area
350                               Memphis, TN-MS-AR Metro Area
351         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
352             Portland-Vancouver-Hillsboro, OR-WA Metro Area
353     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
354     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
355     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
356                       Phoenix-Mesa-Chandler, AZ Metro Area
357                                Raleigh-Cary, NC Metro Area
358              San Diego-Chula Vista-Carlsbad, CA Metro Area
359                   San Antonio-New Braunfels, TX Metro Area
360                     San Juan-Bayamón-Caguas, PR Metro Area
361           New York-Newark-Jersey City, NY-NJ-PA Metro Area
362               Charlotte-Concord-Gastonia, NC-SC Metro Area
363               Charlotte-Concord-Gastonia, NC-SC Metro Area
364                              Urban Honolulu, HI Metro Area
365                Las Vegas-Henderson-Paradise, NV Metro Area
366                       Phoenix-Mesa-Chandler, AZ Metro Area
367         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
368            Houston-The Woodlands-Sugar Land, TX Metro Area
369           New York-Newark-Jersey City, NY-NJ-PA Metro Area
370                      Denver-Aurora-Lakewood, CO Metro Area
371           New York-Newark-Jersey City, NY-NJ-PA Metro Area
372           New York-Newark-Jersey City, NY-NJ-PA Metro Area
373           New York-Newark-Jersey City, NY-NJ-PA Metro Area
374                                   Asheville, NC Metro Area
375                       Greensboro-High Point, NC Metro Area
376                                 Springfield, IL Metro Area
377    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
378    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
379                                   Knoxville, TN Metro Area
380                       Cape Coral-Fort Myers, FL Metro Area
381            Houston-The Woodlands-Sugar Land, TX Metro Area
382              San Francisco-Oakland-Berkeley, CA Metro Area
383  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
384              San Francisco-Oakland-Berkeley, CA Metro Area
385              San Francisco-Oakland-Berkeley, CA Metro Area
386             Tampa-St. Petersburg-Clearwater, FL Metro Area
387                                Jacksonville, FL Metro Area
388                     Seattle-Tacoma-Bellevue, WA Metro Area
389                                   Rochester, NY Metro Area
390                     Seattle-Tacoma-Bellevue, WA Metro Area
391                                St. Louis, MO-IL Metro Area
392                                    Syracuse, NY Metro Area
393                Indianapolis-Carmel-Anderson, IN Metro Area
394                       Phoenix-Mesa-Chandler, AZ Metro Area
395        Little Rock-North Little Rock-Conway, AR Metro Area
396           New York-Newark-Jersey City, NY-NJ-PA Metro Area
397                                   Knoxville, TN Metro Area
398                                  Pittsburgh, PA Metro Area
399           Hartford-East Hartford-Middletown, CT Metro Area
400                                                       <NA>
401                   Orlando-Kissimmee-Sanford, FL Metro Area
402                Austin-Round Rock-Georgetown, TX Metro Area
403                Austin-Round Rock-Georgetown, TX Metro Area
404                Austin-Round Rock-Georgetown, TX Metro Area
405              Louisville/Jefferson County, KY-IN Metro Area
406                Las Vegas-Henderson-Paradise, NV Metro Area
407            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
408                                    Syracuse, NY Metro Area
409                  Boston-Cambridge-Newton, MA-NH Metro Area
410                                    Fargo, ND-MN Metro Area
411           New York-Newark-Jersey City, NY-NJ-PA Metro Area
412              Los Angeles-Long Beach-Anaheim, CA Metro Area
413                               Oklahoma City, OK Metro Area
414                                      Fresno, CA Metro Area
415              Fayetteville-Springdale-Rogers, AR Metro Area
416             Portland-Vancouver-Hillsboro, OR-WA Metro Area
417                   Orlando-Kissimmee-Sanford, FL Metro Area
418                            Cincinnati, OH-KY-IN Metro Area
419                   Orlando-Kissimmee-Sanford, FL Metro Area
420             Tampa-St. Petersburg-Clearwater, FL Metro Area
421                            Cincinnati, OH-KY-IN Metro Area
422                                     Wichita, KS Metro Area
423                                      Monroe, LA Metro Area
424    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
425    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
426                 Dallas-Fort Worth-Arlington, TX Metro Area
427                 Dallas-Fort Worth-Arlington, TX Metro Area
428                           Birmingham-Hoover, AL Metro Area
429              San Jose-Sunnyvale-Santa Clara, CA Metro Area
430                   Orlando-Kissimmee-Sanford, FL Metro Area
431         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
432                                    Richmond, VA Metro Area
433                                       Tulsa, OK Metro Area
434              Los Angeles-Long Beach-Anaheim, CA Metro Area
435                       Phoenix-Mesa-Chandler, AZ Metro Area
436         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
437                            Colorado Springs, CO Metro Area
438                      Spokane-Spokane Valley, WA Metro Area
439                                 Garden City, KS Micro Area
440                                   Lynchburg, VA Metro Area
441              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
442                                      Bangor, ME Metro Area
443                                Jacksonville, FL Metro Area
444                                 Sioux Falls, SD Metro Area
445              Louisville/Jefferson County, KY-IN Metro Area
446                                    Syracuse, NY Metro Area
447                Austin-Round Rock-Georgetown, TX Metro Area
448            Riverside-San Bernardino-Ontario, CA Metro Area
449                                   Lafayette, LA Metro Area
450    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
451                Austin-Round Rock-Georgetown, TX Metro Area
452              San Jose-Sunnyvale-Santa Clara, CA Metro Area
453                              Kansas City, MO-KS Metro Area
454         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
455  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
456                            Cleveland-Elyria, OH Metro Area
457                              Kansas City, MO-KS Metro Area
458                                  Fort Wayne, IN Metro Area
459                        New Orleans-Metairie, LA Metro Area
460                                    Columbia, SC Metro Area
461                           Lexington-Fayette, KY Metro Area
462              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
463              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
464              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
465                                        Reno, NV Metro Area
466                       Grand Rapids-Kentwood, MI Metro Area
467              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
468              Fayetteville-Springdale-Rogers, AR Metro Area
469              Los Angeles-Long Beach-Anaheim, CA Metro Area
470                                    Key West, FL Micro Area
471              Louisville/Jefferson County, KY-IN Metro Area
472            Houston-The Woodlands-Sugar Land, TX Metro Area
473                  Augusta-Richmond County, GA-SC Metro Area
474                                Raleigh-Cary, NC Metro Area
475                        New Orleans-Metairie, LA Metro Area
476                                 Albuquerque, NM Metro Area
477            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
478                        Lansing-East Lansing, MI Metro Area
479                      Denver-Aurora-Lakewood, CO Metro Area
480                Las Vegas-Henderson-Paradise, NV Metro Area
481                     Seattle-Tacoma-Bellevue, WA Metro Area
482                     Atlantic City-Hammonton, NJ Metro Area
483                     Atlantic City-Hammonton, NJ Metro Area
484                     Atlantic City-Hammonton, NJ Metro Area
485            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
486                Austin-Round Rock-Georgetown, TX Metro Area
487            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
488              Los Angeles-Long Beach-Anaheim, CA Metro Area
489            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
490            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
491           Hartford-East Hartford-Middletown, CT Metro Area
492  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
493  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
494  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
495  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
496                  Boston-Cambridge-Newton, MA-NH Metro Area
497                  Boston-Cambridge-Newton, MA-NH Metro Area
498                  Boston-Cambridge-Newton, MA-NH Metro Area
499                  Boston-Cambridge-Newton, MA-NH Metro Area
500                  Boston-Cambridge-Newton, MA-NH Metro Area
501              Los Angeles-Long Beach-Anaheim, CA Metro Area
502                   Baltimore-Columbia-Towson, MD Metro Area
503                      Denver-Aurora-Lakewood, CO Metro Area
504                   Baltimore-Columbia-Towson, MD Metro Area
505                   Baltimore-Columbia-Towson, MD Metro Area
506                   Baltimore-Columbia-Towson, MD Metro Area
507                   Baltimore-Columbia-Towson, MD Metro Area
508                            Cleveland-Elyria, OH Metro Area
509                   Orlando-Kissimmee-Sanford, FL Metro Area
510                            Cleveland-Elyria, OH Metro Area
511                            Cleveland-Elyria, OH Metro Area
512            Houston-The Woodlands-Sugar Land, TX Metro Area
513               Charlotte-Concord-Gastonia, NC-SC Metro Area
514                                    Columbus, OH Metro Area
515                   Baltimore-Columbia-Towson, MD Metro Area
516                 Dallas-Fort Worth-Arlington, TX Metro Area
517                 Dallas-Fort Worth-Arlington, TX Metro Area
518                 Dallas-Fort Worth-Arlington, TX Metro Area
519                 Dallas-Fort Worth-Arlington, TX Metro Area
520              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
521                     Detroit-Warren-Dearborn, MI Metro Area
522           New York-Newark-Jersey City, NY-NJ-PA Metro Area
523           New York-Newark-Jersey City, NY-NJ-PA Metro Area
524           New York-Newark-Jersey City, NY-NJ-PA Metro Area
525           New York-Newark-Jersey City, NY-NJ-PA Metro Area
526           New York-Newark-Jersey City, NY-NJ-PA Metro Area
527         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
528         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
529         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
530         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
531         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
532         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
533         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
534         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
535            Houston-The Woodlands-Sugar Land, TX Metro Area
536            Houston-The Woodlands-Sugar Land, TX Metro Area
537                Indianapolis-Carmel-Anderson, IN Metro Area
538                Indianapolis-Carmel-Anderson, IN Metro Area
539                Indianapolis-Carmel-Anderson, IN Metro Area
540                Las Vegas-Henderson-Paradise, NV Metro Area
541                Las Vegas-Henderson-Paradise, NV Metro Area
542            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
543                       Greensboro-High Point, NC Metro Area
544                Las Vegas-Henderson-Paradise, NV Metro Area
545                Las Vegas-Henderson-Paradise, NV Metro Area
546                Las Vegas-Henderson-Paradise, NV Metro Area
547              Los Angeles-Long Beach-Anaheim, CA Metro Area
548              Los Angeles-Long Beach-Anaheim, CA Metro Area
549             Tampa-St. Petersburg-Clearwater, FL Metro Area
550              Los Angeles-Long Beach-Anaheim, CA Metro Area
551              Los Angeles-Long Beach-Anaheim, CA Metro Area
552                                  Pittsburgh, PA Metro Area
553                                  Pittsburgh, PA Metro Area
554                              Kansas City, MO-KS Metro Area
555                              Kansas City, MO-KS Metro Area
556                   Orlando-Kissimmee-Sanford, FL Metro Area
557                   Orlando-Kissimmee-Sanford, FL Metro Area
558                   Orlando-Kissimmee-Sanford, FL Metro Area
559              San Francisco-Oakland-Berkeley, CA Metro Area
560                   Orlando-Kissimmee-Sanford, FL Metro Area
561                   Orlando-Kissimmee-Sanford, FL Metro Area
562                          Milwaukee-Waukesha, WI Metro Area
563     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
564                        New Orleans-Metairie, LA Metro Area
565           New York-Newark-Jersey City, NY-NJ-PA Metro Area
566              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
567              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
568              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
569              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
570                                  Pittsburgh, PA Metro Area
571                                  Pittsburgh, PA Metro Area
572                                  Pittsburgh, PA Metro Area
573              San Diego-Chula Vista-Carlsbad, CA Metro Area
574                     San Juan-Bayamón-Caguas, PR Metro Area
575                                St. Louis, MO-IL Metro Area
576            Houston-The Woodlands-Sugar Land, TX Metro Area
577             Tampa-St. Petersburg-Clearwater, FL Metro Area
578             Tampa-St. Petersburg-Clearwater, FL Metro Area
579             Tampa-St. Petersburg-Clearwater, FL Metro Area
580             Tampa-St. Petersburg-Clearwater, FL Metro Area
581               North Port-Sarasota-Bradenton, FL Metro Area
582              Louisville/Jefferson County, KY-IN Metro Area
583          Crestview-Fort Walton Beach-Destin, FL Metro Area
584                Las Vegas-Henderson-Paradise, NV Metro Area
585                       Phoenix-Mesa-Chandler, AZ Metro Area
586                     Albany-Schenectady-Troy, NY Metro Area
587                Las Vegas-Henderson-Paradise, NV Metro Area
588           New York-Newark-Jersey City, NY-NJ-PA Metro Area
589         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
590     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
591         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
592  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
593           New York-Newark-Jersey City, NY-NJ-PA Metro Area
594           New York-Newark-Jersey City, NY-NJ-PA Metro Area
595             Tampa-St. Petersburg-Clearwater, FL Metro Area
596          Crestview-Fort Walton Beach-Destin, FL Metro Area
597                                St. Louis, MO-IL Metro Area
598                   San Antonio-New Braunfels, TX Metro Area
599                 Charleston-North Charleston, SC Metro Area
600                   Baltimore-Columbia-Towson, MD Metro Area
601               Charlotte-Concord-Gastonia, NC-SC Metro Area
602               Charlotte-Concord-Gastonia, NC-SC Metro Area
603               Charlotte-Concord-Gastonia, NC-SC Metro Area
604               Charlotte-Concord-Gastonia, NC-SC Metro Area
605               Charlotte-Concord-Gastonia, NC-SC Metro Area
606         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
607                               Oklahoma City, OK Metro Area
608                   Orlando-Kissimmee-Sanford, FL Metro Area
609                Indianapolis-Carmel-Anderson, IN Metro Area
610                               Memphis, TN-MS-AR Metro Area
611                       Phoenix-Mesa-Chandler, AZ Metro Area
612                                       Akron, OH Metro Area
613                            Cleveland-Elyria, OH Metro Area
614                            Dayton-Kettering, OH Metro Area
615                Austin-Round Rock-Georgetown, TX Metro Area
616    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
617    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
618    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
619              San Francisco-Oakland-Berkeley, CA Metro Area
620                 Dallas-Fort Worth-Arlington, TX Metro Area
621    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
622           New York-Newark-Jersey City, NY-NJ-PA Metro Area
623                       Providence-Warwick, RI-MA Metro Area
624            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
625                     Detroit-Warren-Dearborn, MI Metro Area
626                     Portland-South Portland, ME Metro Area
627                                    Savannah, GA Metro Area
628        Little Rock-North Little Rock-Conway, AR Metro Area
629               Palm Bay-Melbourne-Titusville, FL Metro Area
630                     Detroit-Warren-Dearborn, MI Metro Area
631                              Kansas City, MO-KS Metro Area
632              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
633                          Milwaukee-Waukesha, WI Metro Area
634                                       Flint, MI Metro Area
635                            Dayton-Kettering, OH Metro Area
636                  Boston-Cambridge-Newton, MA-NH Metro Area
637                                  Pittsburgh, PA Metro Area
638                 Dallas-Fort Worth-Arlington, TX Metro Area
639                     Omaha-Council Bluffs, NE-IA Metro Area
640           New York-Newark-Jersey City, NY-NJ-PA Metro Area
641         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
642            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
643                       Cape Coral-Fort Myers, FL Metro Area
644                         Buffalo-Cheektowaga, NY Metro Area
645                                  Pittsburgh, PA Metro Area
646               Allentown-Bethlehem-Easton, PA-NJ Metro Area
647      Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
648      Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
649                                Jacksonville, FL Metro Area
650                                Jacksonville, FL Metro Area
651                           Manchester-Nashua, NH Metro Area
652                  Boston-Cambridge-Newton, MA-NH Metro Area
653                                Jacksonville, FL Metro Area
654                                   Asheville, NC Metro Area
655                                Raleigh-Cary, NC Metro Area
656                                Fayetteville, NC Metro Area
657                                Jacksonville, NC Metro Area
658                         Harrisburg-Carlisle, PA Metro Area
659         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
660                 Charleston-North Charleston, SC Metro Area
661            Houston-The Woodlands-Sugar Land, TX Metro Area
662                  Des Moines-West Des Moines, IA Metro Area
663                                 Spartanburg, SC Metro Area
664                     Portland-South Portland, ME Metro Area
665                        New Orleans-Metairie, LA Metro Area
666                                     Jackson, MS Metro Area
667                        New Orleans-Metairie, LA Metro Area
668                           Lexington-Fayette, KY Metro Area
669     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
670     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
671                           Birmingham-Hoover, AL Metro Area
672     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
673     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
674     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
675     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
676                      Denver-Aurora-Lakewood, CO Metro Area
677              San Diego-Chula Vista-Carlsbad, CA Metro Area
678                     Seattle-Tacoma-Bellevue, WA Metro Area
679                Indianapolis-Carmel-Anderson, IN Metro Area
680           New York-Newark-Jersey City, NY-NJ-PA Metro Area
681              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
682           Hartford-East Hartford-Middletown, CT Metro Area
683                                   Knoxville, TN Metro Area
684                       Providence-Warwick, RI-MA Metro Area
685                                Raleigh-Cary, NC Metro Area
686                                St. Louis, MO-IL Metro Area
687                                    Syracuse, NY Metro Area
688              Louisville/Jefferson County, KY-IN Metro Area
689                                 Albuquerque, NM Metro Area
690            Houston-The Woodlands-Sugar Land, TX Metro Area
691                                     Lincoln, NE Metro Area
692                     Albany-Schenectady-Troy, NY Metro Area
693            Riverside-San Bernardino-Ontario, CA Metro Area
694                            Glenwood Springs, CO Micro Area
695                              Urban Honolulu, HI Metro Area
696                     Seattle-Tacoma-Bellevue, WA Metro Area
697                                 Albuquerque, NM Metro Area
698  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
699                              Kansas City, MO-KS Metro Area
700                                                       <NA>
701                                     Medford, OR Metro Area
702            Riverside-San Bernardino-Ontario, CA Metro Area
703                   Santa Maria-Santa Barbara, CA Metro Area
704              Los Angeles-Long Beach-Anaheim, CA Metro Area
705                                  Boise City, ID Metro Area
706                                  Boise City, ID Metro Area
707                                  Boise City, ID Metro Area
708            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
709                                  Boise City, ID Metro Area
710                                  Boise City, ID Metro Area
711                                        Hilo, HI Micro Area
712              Los Angeles-Long Beach-Anaheim, CA Metro Area
713                                  Boise City, ID Metro Area
714                         Santa Rosa-Petaluma, CA Metro Area
715              Los Angeles-Long Beach-Anaheim, CA Metro Area
716              Los Angeles-Long Beach-Anaheim, CA Metro Area
717                     Kahului-Wailuku-Lahaina, HI Metro Area
718                                     Bozeman, MT Micro Area
719                   Baltimore-Columbia-Towson, MD Metro Area
720                                     Bozeman, MT Micro Area
721                               Oklahoma City, OK Metro Area
722                              Killeen-Temple, TX Metro Area
723                  Boston-Cambridge-Newton, MA-NH Metro Area
724           New York-Newark-Jersey City, NY-NJ-PA Metro Area
725                            Colorado Springs, CO Metro Area
726              Los Angeles-Long Beach-Anaheim, CA Metro Area
727                 Dallas-Fort Worth-Arlington, TX Metro Area
728                      Denver-Aurora-Lakewood, CO Metro Area
729                      Denver-Aurora-Lakewood, CO Metro Area
730                      Denver-Aurora-Lakewood, CO Metro Area
731                      Denver-Aurora-Lakewood, CO Metro Area
732                      Denver-Aurora-Lakewood, CO Metro Area
733                      Denver-Aurora-Lakewood, CO Metro Area
734                                      Tucson, AZ Metro Area
735                              Salt Lake City, UT Metro Area
736                                  Pittsburgh, PA Metro Area
737                  Des Moines-West Des Moines, IA Metro Area
738                          Kennewick-Richland, WA Metro Area
739                         Harrisburg-Carlisle, PA Metro Area
740                          Eugene-Springfield, OR Metro Area
741                      Denver-Aurora-Lakewood, CO Metro Area
742                                      Fresno, CA Metro Area
743                                      Fresno, CA Metro Area
744                                      Fresno, CA Metro Area
745                                      Fresno, CA Metro Area
746                                        Bend, OR Metro Area
747              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
748                                   Kalispell, MT Micro Area
749              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
750         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
751               North Port-Sarasota-Bradenton, FL Metro Area
752                                Jacksonville, FL Metro Area
753                       Phoenix-Mesa-Chandler, AZ Metro Area
754                      Spokane-Spokane Valley, WA Metro Area
755                      Spokane-Spokane Valley, WA Metro Area
756                  Boston-Cambridge-Newton, MA-NH Metro Area
757  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
758         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
759         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
760              San Jose-Sunnyvale-Santa Clara, CA Metro Area
761               Allentown-Bethlehem-Easton, PA-NJ Metro Area
762                           Steamboat Springs, CO Micro Area
763                              Salt Lake City, UT Metro Area
764                       La Crosse-Onalaska, WI-MN Metro Area
765            Houston-The Woodlands-Sugar Land, TX Metro Area
766            Houston-The Woodlands-Sugar Land, TX Metro Area
767                                   Pocatello, ID Metro Area
768                            Cleveland-Elyria, OH Metro Area
769                                    Fargo, ND-MN Metro Area
770    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
771                                  Pittsburgh, PA Metro Area
772              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
773              Los Angeles-Long Beach-Anaheim, CA Metro Area
774              Los Angeles-Long Beach-Anaheim, CA Metro Area
775              Los Angeles-Long Beach-Anaheim, CA Metro Area
776              Los Angeles-Long Beach-Anaheim, CA Metro Area
777              Los Angeles-Long Beach-Anaheim, CA Metro Area
778              Los Angeles-Long Beach-Anaheim, CA Metro Area
779              Los Angeles-Long Beach-Anaheim, CA Metro Area
780              Los Angeles-Long Beach-Anaheim, CA Metro Area
781                                 Baton Rouge, LA Metro Area
782              San Francisco-Oakland-Berkeley, CA Metro Area
783                Indianapolis-Carmel-Anderson, IN Metro Area
784                           Kalamazoo-Portage, MI Metro Area
785                   San Antonio-New Braunfels, TX Metro Area
786                                     Madison, WI Metro Area
787         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
788              San Diego-Chula Vista-Carlsbad, CA Metro Area
789                          Milwaukee-Waukesha, WI Metro Area
790                Las Vegas-Henderson-Paradise, NV Metro Area
791                          Eugene-Springfield, OR Metro Area
792                                     Salinas, CA Metro Area
793                                     Madison, WI Metro Area
794         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
795         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
796                                 Great Falls, MT Metro Area
797                                   Green Bay, WI Metro Area
798              San Francisco-Oakland-Berkeley, CA Metro Area
799                                     Roswell, NM Micro Area
800                     Kahului-Wailuku-Lahaina, HI Metro Area
801                      Scranton--Wilkes-Barre, PA Metro Area
802           New York-Newark-Jersey City, NY-NJ-PA Metro Area
803                                Jacksonville, FL Metro Area
804                     Omaha-Council Bluffs, NE-IA Metro Area
805                       Providence-Warwick, RI-MA Metro Area
806                            Sault Ste. Marie, MI Micro Area
807            Riverside-San Bernardino-Ontario, CA Metro Area
808                   San Antonio-New Braunfels, TX Metro Area
809            Riverside-San Bernardino-Ontario, CA Metro Area
810         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
811              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
812              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
813              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
814              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
815                      Denver-Aurora-Lakewood, CO Metro Area
816             Portland-Vancouver-Hillsboro, OR-WA Metro Area
817             Portland-Vancouver-Hillsboro, OR-WA Metro Area
818             Portland-Vancouver-Hillsboro, OR-WA Metro Area
819             Portland-Vancouver-Hillsboro, OR-WA Metro Area
820             Portland-Vancouver-Hillsboro, OR-WA Metro Area
821             Portland-Vancouver-Hillsboro, OR-WA Metro Area
822             Portland-Vancouver-Hillsboro, OR-WA Metro Area
823             Portland-Vancouver-Hillsboro, OR-WA Metro Area
824                              Kansas City, MO-KS Metro Area
825                                        Hilo, HI Micro Area
826                       Phoenix-Mesa-Chandler, AZ Metro Area
827                       Phoenix-Mesa-Chandler, AZ Metro Area
828                                  Pittsburgh, PA Metro Area
829                          Milwaukee-Waukesha, WI Metro Area
830                Las Vegas-Henderson-Paradise, NV Metro Area
831                                        Bend, OR Metro Area
832            Riverside-San Bernardino-Ontario, CA Metro Area
833                                  Boise City, ID Metro Area
834                                     Madison, WI Metro Area
835                                  Rapid City, SD Metro Area
836                               Memphis, TN-MS-AR Metro Area
837            Riverside-San Bernardino-Ontario, CA Metro Area
838                                      Helena, MT Micro Area
839                                    Appleton, WI Metro Area
840               Charlotte-Concord-Gastonia, NC-SC Metro Area
841                                    Richmond, VA Metro Area
842                                        Reno, NV Metro Area
843                 Sacramento-Roseville-Folsom, CA Metro Area
844              San Diego-Chula Vista-Carlsbad, CA Metro Area
845              San Diego-Chula Vista-Carlsbad, CA Metro Area
846              San Diego-Chula Vista-Carlsbad, CA Metro Area
847              San Diego-Chula Vista-Carlsbad, CA Metro Area
848              San Diego-Chula Vista-Carlsbad, CA Metro Area
849              San Diego-Chula Vista-Carlsbad, CA Metro Area
850              San Diego-Chula Vista-Carlsbad, CA Metro Area
851                                     Salinas, CA Metro Area
852                    Prescott Valley-Prescott, AZ Metro Area
853                 San Luis Obispo-Paso Robles, CA Metro Area
854                Las Vegas-Henderson-Paradise, NV Metro Area
855                   Santa Maria-Santa Barbara, CA Metro Area
856                                St. Louis, MO-IL Metro Area
857                 San Luis Obispo-Paso Robles, CA Metro Area
858                Las Vegas-Henderson-Paradise, NV Metro Area
859         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
860                     Seattle-Tacoma-Bellevue, WA Metro Area
861                     Seattle-Tacoma-Bellevue, WA Metro Area
862                     Seattle-Tacoma-Bellevue, WA Metro Area
863                     Seattle-Tacoma-Bellevue, WA Metro Area
864              San Francisco-Oakland-Berkeley, CA Metro Area
865              San Francisco-Oakland-Berkeley, CA Metro Area
866              San Francisco-Oakland-Berkeley, CA Metro Area
867              San Francisco-Oakland-Berkeley, CA Metro Area
868              San Francisco-Oakland-Berkeley, CA Metro Area
869              San Francisco-Oakland-Berkeley, CA Metro Area
870              San Francisco-Oakland-Berkeley, CA Metro Area
871              San Francisco-Oakland-Berkeley, CA Metro Area
872              San Jose-Sunnyvale-Santa Clara, CA Metro Area
873              San Jose-Sunnyvale-Santa Clara, CA Metro Area
874              San Jose-Sunnyvale-Santa Clara, CA Metro Area
875              San Jose-Sunnyvale-Santa Clara, CA Metro Area
876              San Jose-Sunnyvale-Santa Clara, CA Metro Area
877                     Detroit-Warren-Dearborn, MI Metro Area
878                                      Tucson, AZ Metro Area
879                                        Hilo, HI Micro Area
880                              Salt Lake City, UT Metro Area
881                                     Durango, CO Micro Area
882                   Orlando-Kissimmee-Sanford, FL Metro Area
883                                 Bakersfield, CA Metro Area
884                 San Luis Obispo-Paso Robles, CA Metro Area
885                              Urban Honolulu, HI Metro Area
886                 Sacramento-Roseville-Folsom, CA Metro Area
887                 Sacramento-Roseville-Folsom, CA Metro Area
888                 Sacramento-Roseville-Folsom, CA Metro Area
889                              Urban Honolulu, HI Metro Area
890                                        Bend, OR Metro Area
891                     Seattle-Tacoma-Bellevue, WA Metro Area
892              Los Angeles-Long Beach-Anaheim, CA Metro Area
893                           Birmingham-Hoover, AL Metro Area
894                     South Bend-Mishawaka, IN-MI Metro Area
895                 Dallas-Fort Worth-Arlington, TX Metro Area
896                         Santa Rosa-Petaluma, CA Metro Area
897                         Santa Rosa-Petaluma, CA Metro Area
898                         Santa Rosa-Petaluma, CA Metro Area
899                     Omaha-Council Bluffs, NE-IA Metro Area
900                     Omaha-Council Bluffs, NE-IA Metro Area
901                                   Anchorage, AK Metro Area
902                                      Tucson, AZ Metro Area
903    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
904              Los Angeles-Long Beach-Anaheim, CA Metro Area
905                                 Albuquerque, NM Metro Area
906                                    Billings, MT Metro Area
907              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
908                                  Boise City, ID Metro Area
909                                  Boise City, ID Metro Area
910                                  Boise City, ID Metro Area
911                                     Bozeman, MT Micro Area
912                          Kennewick-Richland, WA Metro Area
913                     Detroit-Warren-Dearborn, MI Metro Area
914           New York-Newark-Jersey City, NY-NJ-PA Metro Area
915                        New Orleans-Metairie, LA Metro Area
916                                    Missoula, MT Metro Area
917                                   Kalispell, MT Micro Area
918                      Spokane-Spokane Valley, WA Metro Area
919           New York-Newark-Jersey City, NY-NJ-PA Metro Area
920                   Santa Maria-Santa Barbara, CA Metro Area
921           New York-Newark-Jersey City, NY-NJ-PA Metro Area
922                      Spokane-Spokane Valley, WA Metro Area
923                                     Medford, OR Metro Area
924                                      Helena, MT Micro Area
925                                 Idaho Falls, ID Metro Area
926              Los Angeles-Long Beach-Anaheim, CA Metro Area
927                                     Medford, OR Metro Area
928                                     Medford, OR Metro Area
929              San Francisco-Oakland-Berkeley, CA Metro Area
930                     Seattle-Tacoma-Bellevue, WA Metro Area
931                     Seattle-Tacoma-Bellevue, WA Metro Area
932                     Seattle-Tacoma-Bellevue, WA Metro Area
933                     Seattle-Tacoma-Bellevue, WA Metro Area
934             Portland-Vancouver-Hillsboro, OR-WA Metro Area
935             Portland-Vancouver-Hillsboro, OR-WA Metro Area
936            Riverside-San Bernardino-Ontario, CA Metro Area
937                                     El Paso, TX Metro Area
938                                     Pullman, WA Micro Area
939                                        Bend, OR Metro Area
940              San Diego-Chula Vista-Carlsbad, CA Metro Area
941                   Santa Maria-Santa Barbara, CA Metro Area
942                     Seattle-Tacoma-Bellevue, WA Metro Area
943                     Seattle-Tacoma-Bellevue, WA Metro Area
944                     Seattle-Tacoma-Bellevue, WA Metro Area
945                     Seattle-Tacoma-Bellevue, WA Metro Area
946                     Seattle-Tacoma-Bellevue, WA Metro Area
947                     Seattle-Tacoma-Bellevue, WA Metro Area
948                     Seattle-Tacoma-Bellevue, WA Metro Area
949                     Seattle-Tacoma-Bellevue, WA Metro Area
950                     Seattle-Tacoma-Bellevue, WA Metro Area
951                     Seattle-Tacoma-Bellevue, WA Metro Area
952                     Seattle-Tacoma-Bellevue, WA Metro Area
953                     Seattle-Tacoma-Bellevue, WA Metro Area
954                     Seattle-Tacoma-Bellevue, WA Metro Area
955                     Seattle-Tacoma-Bellevue, WA Metro Area
956                     Seattle-Tacoma-Bellevue, WA Metro Area
957              San Francisco-Oakland-Berkeley, CA Metro Area
958              San Jose-Sunnyvale-Santa Clara, CA Metro Area
959              Los Angeles-Long Beach-Anaheim, CA Metro Area
960                         Santa Rosa-Petaluma, CA Metro Area
961                      Denver-Aurora-Lakewood, CO Metro Area
962                Austin-Round Rock-Georgetown, TX Metro Area
963           Hartford-East Hartford-Middletown, CT Metro Area
964     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
965                                   Kalispell, MT Micro Area
966                                    Missoula, MT Metro Area
967            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
968                                                       <NA>
969                                    Appleton, WI Metro Area
970                      Denver-Aurora-Lakewood, CO Metro Area
971                Austin-Round Rock-Georgetown, TX Metro Area
972                     Omaha-Council Bluffs, NE-IA Metro Area
973                Austin-Round Rock-Georgetown, TX Metro Area
974                                    Meridian, MS Micro Area
975                     Seattle-Tacoma-Bellevue, WA Metro Area
976              Los Angeles-Long Beach-Anaheim, CA Metro Area
977           New York-Newark-Jersey City, NY-NJ-PA Metro Area
978              Los Angeles-Long Beach-Anaheim, CA Metro Area
979                Austin-Round Rock-Georgetown, TX Metro Area
980           Hartford-East Hartford-Middletown, CT Metro Area
981              Los Angeles-Long Beach-Anaheim, CA Metro Area
982                                Raleigh-Cary, NC Metro Area
983                                    Savannah, GA Metro Area
984                       Greensboro-High Point, NC Metro Area
985                           Birmingham-Hoover, AL Metro Area
986                            Cincinnati, OH-KY-IN Metro Area
987            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
988                                  Boise City, ID Metro Area
989                                  Jackson, WY-ID Micro Area
990                                        Bend, OR Metro Area
991                  Boston-Cambridge-Newton, MA-NH Metro Area
992                      Denver-Aurora-Lakewood, CO Metro Area
993                   Orlando-Kissimmee-Sanford, FL Metro Area
994                        New Orleans-Metairie, LA Metro Area
995             Tampa-St. Petersburg-Clearwater, FL Metro Area
996                 Hilton Head Island-Bluffton, SC Metro Area
997                  Boston-Cambridge-Newton, MA-NH Metro Area
998                                       Kapaa, HI Micro Area
999                  Des Moines-West Des Moines, IA Metro Area
1000                                      Kapaa, HI Micro Area
1001                        Buffalo-Cheektowaga, NY Metro Area
1002          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1003                             Urban Honolulu, HI Metro Area
1004                             Urban Honolulu, HI Metro Area
1005                    Kahului-Wailuku-Lahaina, HI Metro Area
1006               Las Vegas-Henderson-Paradise, NV Metro Area
1007                       New Orleans-Metairie, LA Metro Area
1008                                 Pittsburgh, PA Metro Area
1009                                    Saginaw, MI Metro Area
1010                    Portland-South Portland, ME Metro Area
1011                                    Lincoln, NE Metro Area
1012                           Cleveland-Elyria, OH Metro Area
1013                           Cleveland-Elyria, OH Metro Area
1014                      Cape Coral-Fort Myers, FL Metro Area
1015                                       Reno, NV Metro Area
1016                           Colorado Springs, CO Metro Area
1017                                     Salina, KS Micro Area
1018          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1019        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1020                 Boston-Cambridge-Newton, MA-NH Metro Area
1021         Crestview-Fort Walton Beach-Destin, FL Metro Area
1022                     Denver-Aurora-Lakewood, CO Metro Area
1023                  Santa Maria-Santa Barbara, CA Metro Area
1024          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1025                     Denver-Aurora-Lakewood, CO Metro Area
1026   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1027     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1028                                  Duluth, MN-WI Metro Area
1029                     Denver-Aurora-Lakewood, CO Metro Area
1030                     Denver-Aurora-Lakewood, CO Metro Area
1031                     Denver-Aurora-Lakewood, CO Metro Area
1032                     Denver-Aurora-Lakewood, CO Metro Area
1033                Dallas-Fort Worth-Arlington, TX Metro Area
1034                                     Joplin, MO Metro Area
1035           Houston-The Woodlands-Sugar Land, TX Metro Area
1036                     Denver-Aurora-Lakewood, CO Metro Area
1037                      Cape Coral-Fort Myers, FL Metro Area
1038          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1039                           Colorado Springs, CO Metro Area
1040                Sacramento-Roseville-Folsom, CA Metro Area
1041 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1042                           Colorado Springs, CO Metro Area
1043                              Oklahoma City, OK Metro Area
1044          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1045        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1046          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1047                             Salt Lake City, UT Metro Area
1048                                 Jackson, WY-ID Micro Area
1049          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1050          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1051          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1052          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1053          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1054          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1055          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1056          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1057          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1058          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1059          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1060                                Sioux Falls, SD Metro Area
1061             San Francisco-Oakland-Berkeley, CA Metro Area
1062                                                      <NA>
1063        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1064                             Killeen-Temple, TX Metro Area
1065        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1066            Tampa-St. Petersburg-Clearwater, FL Metro Area
1067                  San Antonio-New Braunfels, TX Metro Area
1068                                Spartanburg, SC Metro Area
1069                                 Pittsburgh, PA Metro Area
1070             Louisville/Jefferson County, KY-IN Metro Area
1071              North Port-Sarasota-Bradenton, FL Metro Area
1072                                Panama City, FL Metro Area
1073                       New Orleans-Metairie, LA Metro Area
1074             Louisville/Jefferson County, KY-IN Metro Area
1075                Sacramento-Roseville-Folsom, CA Metro Area
1076                  Baltimore-Columbia-Towson, MD Metro Area
1077                  Orlando-Kissimmee-Sanford, FL Metro Area
1078   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1079   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1080   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1081   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1082   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1083   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1084   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1085   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1086                         Kennewick-Richland, WA Metro Area
1087   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1088                                Albuquerque, NM Metro Area
1089           Houston-The Woodlands-Sugar Land, TX Metro Area
1090           Houston-The Woodlands-Sugar Land, TX Metro Area
1091           Houston-The Woodlands-Sugar Land, TX Metro Area
1092           Houston-The Woodlands-Sugar Land, TX Metro Area
1093                                 Paducah, KY-IL Micro Area
1094           Houston-The Woodlands-Sugar Land, TX Metro Area
1095           Houston-The Woodlands-Sugar Land, TX Metro Area
1096           Houston-The Woodlands-Sugar Land, TX Metro Area
1097                Charleston-North Charleston, SC Metro Area
1098                              Oklahoma City, OK Metro Area
1099   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1100                    Portland-South Portland, ME Metro Area
1101                                  Rochester, NY Metro Area
1102                               Jacksonville, FL Metro Area
1103                  San Antonio-New Braunfels, TX Metro Area
1104          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1105                  Baltimore-Columbia-Towson, MD Metro Area
1106                                   Columbus, OH Metro Area
1107                                   Richmond, VA Metro Area
1108               Las Vegas-Henderson-Paradise, NV Metro Area
1109                                     Bangor, ME Metro Area
1110                          Manchester-Nashua, NH Metro Area
1111 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1112                         Milwaukee-Waukesha, WI Metro Area
1113                           Cleveland-Elyria, OH Metro Area
1114               Indianapolis-Carmel-Anderson, IN Metro Area
1115                  Orlando-Kissimmee-Sanford, FL Metro Area
1116            Tampa-St. Petersburg-Clearwater, FL Metro Area
1117                                   Columbus, OH Metro Area
1118                           Cincinnati, OH-KY-IN Metro Area
1119                                    Madison, WI Metro Area
1120                           Cincinnati, OH-KY-IN Metro Area
1121                    Detroit-Warren-Dearborn, MI Metro Area
1122                           Cincinnati, OH-KY-IN Metro Area
1123                      Cape Coral-Fort Myers, FL Metro Area
1124             Los Angeles-Long Beach-Anaheim, CA Metro Area
1125             Los Angeles-Long Beach-Anaheim, CA Metro Area
1126                    Detroit-Warren-Dearborn, MI Metro Area
1127             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1128            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1129                     Denver-Aurora-Lakewood, CO Metro Area
1130                Sacramento-Roseville-Folsom, CA Metro Area
1131                               Raleigh-Cary, NC Metro Area
1132                  Baltimore-Columbia-Towson, MD Metro Area
1133                    Kahului-Wailuku-Lahaina, HI Metro Area
1134                      Cape Coral-Fort Myers, FL Metro Area
1135     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1136                      Phoenix-Mesa-Chandler, AZ Metro Area
1137             San Diego-Chula Vista-Carlsbad, CA Metro Area
1138                                      Flint, MI Metro Area
1139        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1140                                  Lafayette, LA Metro Area
1141   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1142                          Birmingham-Hoover, AL Metro Area
1143                                   Billings, MT Metro Area
1144                                       Hilo, HI Micro Area
1145                                   Syracuse, NY Metro Area
1146                             Salt Lake City, UT Metro Area
1147                               St. Louis, MO-IL Metro Area
1148          Hartford-East Hartford-Middletown, CT Metro Area
1149               Indianapolis-Carmel-Anderson, IN Metro Area
1150             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1151             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1152             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1153             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1154           Riverside-San Bernardino-Ontario, CA Metro Area
1155             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1156             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1157                     Denver-Aurora-Lakewood, CO Metro Area
1158             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1159             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1160             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1161             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1162             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1163             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1164                                      Kapaa, HI Micro Area
1165                              Memphis, TN-MS-AR Metro Area
1166                                   Columbus, OH Metro Area
1167                               Cedar Rapids, IA Metro Area
1168            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1169   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1170                      Phoenix-Mesa-Chandler, AZ Metro Area
1171                        Buffalo-Cheektowaga, NY Metro Area
1172                             Chattanooga, TN-GA Metro Area
1173                                    Bozeman, MT Micro Area
1174             Louisville/Jefferson County, KY-IN Metro Area
1175 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1176                                     Peoria, IL Metro Area
1177                                    Medford, OR Metro Area
1178                  San Antonio-New Braunfels, TX Metro Area
1179                Dallas-Fort Worth-Arlington, TX Metro Area
1180           Riverside-San Bernardino-Ontario, CA Metro Area
1181            Davenport-Moline-Rock Island, IA-IL Metro Area
1182                Dallas-Fort Worth-Arlington, TX Metro Area
1183                                     Ithaca, NY Metro Area
1184                Burlington-South Burlington, VT Metro Area
1185                               Cedar Rapids, IA Metro Area
1186                           Dayton-Kettering, OH Metro Area
1187             San Francisco-Oakland-Berkeley, CA Metro Area
1188          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1189                      Providence-Warwick, RI-MA Metro Area
1190             San Francisco-Oakland-Berkeley, CA Metro Area
1191                    Portland-South Portland, ME Metro Area
1192    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1193                               St. Louis, MO-IL Metro Area
1194             San Francisco-Oakland-Berkeley, CA Metro Area
1195                      Providence-Warwick, RI-MA Metro Area
1196                                  Rochester, NY Metro Area
1197            Davenport-Moline-Rock Island, IA-IL Metro Area
1198   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1199          Hartford-East Hartford-Middletown, CT Metro Area
1200        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1201            Tampa-St. Petersburg-Clearwater, FL Metro Area
1202                           Cincinnati, OH-KY-IN Metro Area
1203           Riverside-San Bernardino-Ontario, CA Metro Area
1204                                     Tucson, AZ Metro Area
1205                                Panama City, FL Metro Area
1206                                Albuquerque, NM Metro Area
1207                                      Kapaa, HI Micro Area
1208                                Albuquerque, NM Metro Area
1209                                Albuquerque, NM Metro Area
1210                                Albuquerque, NM Metro Area
1211                    Albany-Schenectady-Troy, NY Metro Area
1212                  Orlando-Kissimmee-Sanford, FL Metro Area
1213        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1214                      Cape Coral-Fort Myers, FL Metro Area
1215                      Cape Coral-Fort Myers, FL Metro Area
1216                Sacramento-Roseville-Folsom, CA Metro Area
1217                    Albany-Schenectady-Troy, NY Metro Area
1218                Sacramento-Roseville-Folsom, CA Metro Area
1219                    Albany-Schenectady-Troy, NY Metro Area
1220                                   Amarillo, TX Metro Area
1221                                   Amarillo, TX Metro Area
1222           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1223           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1224                                    El Paso, TX Metro Area
1225               Las Vegas-Henderson-Paradise, NV Metro Area
1226             Los Angeles-Long Beach-Anaheim, CA Metro Area
1227                      Phoenix-Mesa-Chandler, AZ Metro Area
1228           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1229           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1230           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1231           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1232           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1233             Los Angeles-Long Beach-Anaheim, CA Metro Area
1234             San Francisco-Oakland-Berkeley, CA Metro Area
1235                             Salt Lake City, UT Metro Area
1236           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1237           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1238           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1239           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1240           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1241           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1242                                      Tulsa, OK Metro Area
1243           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1244           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1245                    Kahului-Wailuku-Lahaina, HI Metro Area
1246           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1247           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1248           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1249           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1250           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1251                             Urban Honolulu, HI Metro Area
1252           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1253           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1254           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1255           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1256                 Boston-Cambridge-Newton, MA-NH Metro Area
1257          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1258                    Omaha-Council Bluffs, NE-IA Metro Area
1259                                   Savannah, GA Metro Area
1260               Austin-Round Rock-Georgetown, TX Metro Area
1261        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1262                    Omaha-Council Bluffs, NE-IA Metro Area
1263             San Francisco-Oakland-Berkeley, CA Metro Area
1264                    Seattle-Tacoma-Bellevue, WA Metro Area
1265           Riverside-San Bernardino-Ontario, CA Metro Area
1266             San Diego-Chula Vista-Carlsbad, CA Metro Area
1267               Austin-Round Rock-Georgetown, TX Metro Area
1268               Austin-Round Rock-Georgetown, TX Metro Area
1269               Austin-Round Rock-Georgetown, TX Metro Area
1270               Austin-Round Rock-Georgetown, TX Metro Area
1271               Austin-Round Rock-Georgetown, TX Metro Area
1272               Austin-Round Rock-Georgetown, TX Metro Area
1273               Austin-Round Rock-Georgetown, TX Metro Area
1274               Austin-Round Rock-Georgetown, TX Metro Area
1275               Austin-Round Rock-Georgetown, TX Metro Area
1276               Austin-Round Rock-Georgetown, TX Metro Area
1277               Austin-Round Rock-Georgetown, TX Metro Area
1278               Austin-Round Rock-Georgetown, TX Metro Area
1279               Austin-Round Rock-Georgetown, TX Metro Area
1280               Austin-Round Rock-Georgetown, TX Metro Area
1281               Austin-Round Rock-Georgetown, TX Metro Area
1282               Austin-Round Rock-Georgetown, TX Metro Area
1283               Austin-Round Rock-Georgetown, TX Metro Area
1284               Austin-Round Rock-Georgetown, TX Metro Area
1285                      Providence-Warwick, RI-MA Metro Area
1286               Las Vegas-Henderson-Paradise, NV Metro Area
1287           Riverside-San Bernardino-Ontario, CA Metro Area
1288          Hartford-East Hartford-Middletown, CT Metro Area
1289          Hartford-East Hartford-Middletown, CT Metro Area
1290                          Birmingham-Hoover, AL Metro Area
1291                          Birmingham-Hoover, AL Metro Area
1292                          Birmingham-Hoover, AL Metro Area
1293                          Birmingham-Hoover, AL Metro Area
1294                          Birmingham-Hoover, AL Metro Area
1295                          Birmingham-Hoover, AL Metro Area
1296                                 Bellingham, WA Metro Area
1297 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1298 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1299 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1300                                   Montrose, CO Micro Area
1301 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1302 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1303 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1304 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1305 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1306                                       Reno, NV Metro Area
1307 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1308             Los Angeles-Long Beach-Anaheim, CA Metro Area
1309 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1310 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1311 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1312 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1313 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1314 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1315 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1316 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1317 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1318 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1319 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1320 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1321 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1322 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1323 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1324 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1325                             Urban Honolulu, HI Metro Area
1326                    Kahului-Wailuku-Lahaina, HI Metro Area
1327 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1328 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1329 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1330 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1331 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1332 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1333                        Buffalo-Cheektowaga, NY Metro Area
1334        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1335                                 Boise City, ID Metro Area
1336                                 Boise City, ID Metro Area
1337                                 Boise City, ID Metro Area
1338                                 Boise City, ID Metro Area
1339                                       Reno, NV Metro Area
1340                Dallas-Fort Worth-Arlington, TX Metro Area
1341           Houston-The Woodlands-Sugar Land, TX Metro Area
1342                Charleston-North Charleston, SC Metro Area
1343                                Spartanburg, SC Metro Area
1344               Indianapolis-Carmel-Anderson, IN Metro Area
1345                               Jacksonville, FL Metro Area
1346                      Phoenix-Mesa-Chandler, AZ Metro Area
1347                                   Savannah, GA Metro Area
1348                     Denver-Aurora-Lakewood, CO Metro Area
1349             Los Angeles-Long Beach-Anaheim, CA Metro Area
1350        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1351                      Phoenix-Mesa-Chandler, AZ Metro Area
1352             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1353                 Boston-Cambridge-Newton, MA-NH Metro Area
1354              North Port-Sarasota-Bradenton, FL Metro Area
1355                        Buffalo-Cheektowaga, NY Metro Area
1356                        Buffalo-Cheektowaga, NY Metro Area
1357                        Buffalo-Cheektowaga, NY Metro Area
1358             Los Angeles-Long Beach-Anaheim, CA Metro Area
1359                       New Orleans-Metairie, LA Metro Area
1360                               Raleigh-Cary, NC Metro Area
1361            Tampa-St. Petersburg-Clearwater, FL Metro Area
1362                              Oklahoma City, OK Metro Area
1363             Los Angeles-Long Beach-Anaheim, CA Metro Area
1364             Los Angeles-Long Beach-Anaheim, CA Metro Area
1365             Los Angeles-Long Beach-Anaheim, CA Metro Area
1366             Los Angeles-Long Beach-Anaheim, CA Metro Area
1367             Los Angeles-Long Beach-Anaheim, CA Metro Area
1368             Los Angeles-Long Beach-Anaheim, CA Metro Area
1369                  Baltimore-Columbia-Towson, MD Metro Area
1370                  Baltimore-Columbia-Towson, MD Metro Area
1371                    Seattle-Tacoma-Bellevue, WA Metro Area
1372                  Baltimore-Columbia-Towson, MD Metro Area
1373                  Baltimore-Columbia-Towson, MD Metro Area
1374                  Baltimore-Columbia-Towson, MD Metro Area
1375                  Baltimore-Columbia-Towson, MD Metro Area
1376                  Baltimore-Columbia-Towson, MD Metro Area
1377                  Baltimore-Columbia-Towson, MD Metro Area
1378                  Baltimore-Columbia-Towson, MD Metro Area
1379                  Baltimore-Columbia-Towson, MD Metro Area
1380                  Baltimore-Columbia-Towson, MD Metro Area
1381                  Baltimore-Columbia-Towson, MD Metro Area
1382                    San Juan-Bayamón-Caguas, PR Metro Area
1383                  Baltimore-Columbia-Towson, MD Metro Area
1384                  Baltimore-Columbia-Towson, MD Metro Area
1385                  Baltimore-Columbia-Towson, MD Metro Area
1386                                       Hilo, HI Micro Area
1387                  Baltimore-Columbia-Towson, MD Metro Area
1388   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1389                  Baltimore-Columbia-Towson, MD Metro Area
1390                  Baltimore-Columbia-Towson, MD Metro Area
1391                  Baltimore-Columbia-Towson, MD Metro Area
1392                                       Hilo, HI Micro Area
1393                  Baltimore-Columbia-Towson, MD Metro Area
1394                  Baltimore-Columbia-Towson, MD Metro Area
1395                  Baltimore-Columbia-Towson, MD Metro Area
1396                  Baltimore-Columbia-Towson, MD Metro Area
1397                  Baltimore-Columbia-Towson, MD Metro Area
1398                  Baltimore-Columbia-Towson, MD Metro Area
1399                  Baltimore-Columbia-Towson, MD Metro Area
1400                      Cape Coral-Fort Myers, FL Metro Area
1401                                    Bozeman, MT Micro Area
1402                             Kansas City, MO-KS Metro Area
1403                         Milwaukee-Waukesha, WI Metro Area
1404                Charleston-North Charleston, SC Metro Area
1405                           Colorado Springs, CO Metro Area
1406                Charleston-North Charleston, SC Metro Area
1407             Los Angeles-Long Beach-Anaheim, CA Metro Area
1408                      Cape Coral-Fort Myers, FL Metro Area
1409                           Cleveland-Elyria, OH Metro Area
1410                           Cleveland-Elyria, OH Metro Area
1411                             Urban Honolulu, HI Metro Area
1412                           Cleveland-Elyria, OH Metro Area
1413                           Cleveland-Elyria, OH Metro Area
1414                                   Columbus, OH Metro Area
1415                                   Columbus, OH Metro Area
1416                                     Tucson, AZ Metro Area
1417                                   Columbus, OH Metro Area
1418                      Phoenix-Mesa-Chandler, AZ Metro Area
1419                                Panama City, FL Metro Area
1420                                   Columbus, OH Metro Area
1421                                   Columbus, OH Metro Area
1422                                   Columbus, OH Metro Area
1423                                   Columbus, OH Metro Area
1424                                   Columbus, OH Metro Area
1425                                   Columbus, OH Metro Area
1426                  Santa Maria-Santa Barbara, CA Metro Area
1427                           Colorado Springs, CO Metro Area
1428                           Colorado Springs, CO Metro Area
1429                             Corpus Christi, TX Metro Area
1430                      Cape Coral-Fort Myers, FL Metro Area
1431                     Spokane-Spokane Valley, WA Metro Area
1432             San Francisco-Oakland-Berkeley, CA Metro Area
1433                           Cincinnati, OH-KY-IN Metro Area
1434                           Cincinnati, OH-KY-IN Metro Area
1435                           Cincinnati, OH-KY-IN Metro Area
1436            Tampa-St. Petersburg-Clearwater, FL Metro Area
1437                           Cincinnati, OH-KY-IN Metro Area
1438                Dallas-Fort Worth-Arlington, TX Metro Area
1439             Los Angeles-Long Beach-Anaheim, CA Metro Area
1440                Dallas-Fort Worth-Arlington, TX Metro Area
1441             San Francisco-Oakland-Berkeley, CA Metro Area
1442                Dallas-Fort Worth-Arlington, TX Metro Area
1443                Dallas-Fort Worth-Arlington, TX Metro Area
1444                Dallas-Fort Worth-Arlington, TX Metro Area
1445                Dallas-Fort Worth-Arlington, TX Metro Area
1446                Dallas-Fort Worth-Arlington, TX Metro Area
1447                Dallas-Fort Worth-Arlington, TX Metro Area
1448                Dallas-Fort Worth-Arlington, TX Metro Area
1449                Dallas-Fort Worth-Arlington, TX Metro Area
1450                Dallas-Fort Worth-Arlington, TX Metro Area
1451                Dallas-Fort Worth-Arlington, TX Metro Area
1452                Dallas-Fort Worth-Arlington, TX Metro Area
1453                Dallas-Fort Worth-Arlington, TX Metro Area
1454                Dallas-Fort Worth-Arlington, TX Metro Area
1455                Dallas-Fort Worth-Arlington, TX Metro Area
1456                Dallas-Fort Worth-Arlington, TX Metro Area
1457                Dallas-Fort Worth-Arlington, TX Metro Area
1458                Dallas-Fort Worth-Arlington, TX Metro Area
1459                Dallas-Fort Worth-Arlington, TX Metro Area
1460                Dallas-Fort Worth-Arlington, TX Metro Area
1461                Dallas-Fort Worth-Arlington, TX Metro Area
1462                Dallas-Fort Worth-Arlington, TX Metro Area
1463                Dallas-Fort Worth-Arlington, TX Metro Area
1464                Dallas-Fort Worth-Arlington, TX Metro Area
1465                Dallas-Fort Worth-Arlington, TX Metro Area
1466                Dallas-Fort Worth-Arlington, TX Metro Area
1467                Dallas-Fort Worth-Arlington, TX Metro Area
1468                Dallas-Fort Worth-Arlington, TX Metro Area
1469                Dallas-Fort Worth-Arlington, TX Metro Area
1470                Dallas-Fort Worth-Arlington, TX Metro Area
1471                Dallas-Fort Worth-Arlington, TX Metro Area
1472                Dallas-Fort Worth-Arlington, TX Metro Area
1473                Dallas-Fort Worth-Arlington, TX Metro Area
1474                Dallas-Fort Worth-Arlington, TX Metro Area
1475                Dallas-Fort Worth-Arlington, TX Metro Area
1476             San Francisco-Oakland-Berkeley, CA Metro Area
1477              North Port-Sarasota-Bradenton, FL Metro Area
1478   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1479   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1480   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1481                     Denver-Aurora-Lakewood, CO Metro Area
1482   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1483   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1484   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1485   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1486   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1487   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1488   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1489                  Baltimore-Columbia-Towson, MD Metro Area
1490   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1491                     Denver-Aurora-Lakewood, CO Metro Area
1492          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1493                     Denver-Aurora-Lakewood, CO Metro Area
1494          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1495                     Denver-Aurora-Lakewood, CO Metro Area
1496              North Port-Sarasota-Bradenton, FL Metro Area
1497                     Denver-Aurora-Lakewood, CO Metro Area
1498                     Denver-Aurora-Lakewood, CO Metro Area
1499                     Denver-Aurora-Lakewood, CO Metro Area
1500              North Port-Sarasota-Bradenton, FL Metro Area
1501                     Denver-Aurora-Lakewood, CO Metro Area
1502                     Denver-Aurora-Lakewood, CO Metro Area
1503                     Denver-Aurora-Lakewood, CO Metro Area
1504                  Orlando-Kissimmee-Sanford, FL Metro Area
1505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1506                     Denver-Aurora-Lakewood, CO Metro Area
1507                     Denver-Aurora-Lakewood, CO Metro Area
1508                     Denver-Aurora-Lakewood, CO Metro Area
1509        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1510                     Denver-Aurora-Lakewood, CO Metro Area
1511                     Denver-Aurora-Lakewood, CO Metro Area
1512                     Denver-Aurora-Lakewood, CO Metro Area
1513                     Denver-Aurora-Lakewood, CO Metro Area
1514                     Denver-Aurora-Lakewood, CO Metro Area
1515                     Denver-Aurora-Lakewood, CO Metro Area
1516                     Denver-Aurora-Lakewood, CO Metro Area
1517                     Denver-Aurora-Lakewood, CO Metro Area
1518                Sacramento-Roseville-Folsom, CA Metro Area
1519                     Denver-Aurora-Lakewood, CO Metro Area
1520                     Denver-Aurora-Lakewood, CO Metro Area
1521                     Denver-Aurora-Lakewood, CO Metro Area
1522                     Denver-Aurora-Lakewood, CO Metro Area
1523                     Denver-Aurora-Lakewood, CO Metro Area
1524                     Denver-Aurora-Lakewood, CO Metro Area
1525                     Denver-Aurora-Lakewood, CO Metro Area
1526                     Denver-Aurora-Lakewood, CO Metro Area
1527                     Denver-Aurora-Lakewood, CO Metro Area
1528            Tampa-St. Petersburg-Clearwater, FL Metro Area
1529           Houston-The Woodlands-Sugar Land, TX Metro Area
1530           Houston-The Woodlands-Sugar Land, TX Metro Area
1531             San Diego-Chula Vista-Carlsbad, CA Metro Area
1532                    Detroit-Warren-Dearborn, MI Metro Area
1533                    Detroit-Warren-Dearborn, MI Metro Area
1534                    Detroit-Warren-Dearborn, MI Metro Area
1535                                Albuquerque, NM Metro Area
1536    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1537                                    El Paso, TX Metro Area
1538                                    El Paso, TX Metro Area
1539                                    El Paso, TX Metro Area
1540                                    El Paso, TX Metro Area
1541                                    El Paso, TX Metro Area
1542             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1543            Tampa-St. Petersburg-Clearwater, FL Metro Area
1544                               Jacksonville, FL Metro Area
1545            Tampa-St. Petersburg-Clearwater, FL Metro Area
1546                                    El Paso, TX Metro Area
1547                                    El Paso, TX Metro Area
1548             San Diego-Chula Vista-Carlsbad, CA Metro Area
1549                         Eugene-Springfield, OR Metro Area
1550                         Eugene-Springfield, OR Metro Area
1551                                     Fresno, CA Metro Area
1552                     Denver-Aurora-Lakewood, CO Metro Area
1553               Las Vegas-Henderson-Paradise, NV Metro Area
1554             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1555        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1556               Austin-Round Rock-Georgetown, TX Metro Area
1557        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1558        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1559                      Providence-Warwick, RI-MA Metro Area
1560        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1561        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1562        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1563        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1564             Los Angeles-Long Beach-Anaheim, CA Metro Area
1565        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1566        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1567        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1568     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1569                                      Tulsa, OK Metro Area
1570                     Spokane-Spokane Valley, WA Metro Area
1571                          Manchester-Nashua, NH Metro Area
1572                     Spokane-Spokane Valley, WA Metro Area
1573                     Spokane-Spokane Valley, WA Metro Area
1574                      Phoenix-Mesa-Chandler, AZ Metro Area
1575                     Spokane-Spokane Valley, WA Metro Area
1576                      Grand Rapids-Kentwood, MI Metro Area
1577                                Spartanburg, SC Metro Area
1578             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1579             Los Angeles-Long Beach-Anaheim, CA Metro Area
1580                             Salt Lake City, UT Metro Area
1581 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1582           Houston-The Woodlands-Sugar Land, TX Metro Area
1583                               Raleigh-Cary, NC Metro Area
1584          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1585           Houston-The Woodlands-Sugar Land, TX Metro Area
1586           Houston-The Woodlands-Sugar Land, TX Metro Area
1587           Houston-The Woodlands-Sugar Land, TX Metro Area
1588           Houston-The Woodlands-Sugar Land, TX Metro Area
1589           Houston-The Woodlands-Sugar Land, TX Metro Area
1590           Houston-The Woodlands-Sugar Land, TX Metro Area
1591           Houston-The Woodlands-Sugar Land, TX Metro Area
1592           Houston-The Woodlands-Sugar Land, TX Metro Area
1593           Houston-The Woodlands-Sugar Land, TX Metro Area
1594          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1595           Houston-The Woodlands-Sugar Land, TX Metro Area
1596           Houston-The Woodlands-Sugar Land, TX Metro Area
1597           Houston-The Woodlands-Sugar Land, TX Metro Area
1598           Houston-The Woodlands-Sugar Land, TX Metro Area
1599           Houston-The Woodlands-Sugar Land, TX Metro Area
1600           Houston-The Woodlands-Sugar Land, TX Metro Area
1601           Houston-The Woodlands-Sugar Land, TX Metro Area
1602           Houston-The Woodlands-Sugar Land, TX Metro Area
1603           Houston-The Woodlands-Sugar Land, TX Metro Area
1604           Houston-The Woodlands-Sugar Land, TX Metro Area
1605           Houston-The Woodlands-Sugar Land, TX Metro Area
1606           Houston-The Woodlands-Sugar Land, TX Metro Area
1607           Houston-The Woodlands-Sugar Land, TX Metro Area
1608           Houston-The Woodlands-Sugar Land, TX Metro Area
1609           Houston-The Woodlands-Sugar Land, TX Metro Area
1610           Houston-The Woodlands-Sugar Land, TX Metro Area
1611           Houston-The Woodlands-Sugar Land, TX Metro Area
1612           Houston-The Woodlands-Sugar Land, TX Metro Area
1613           Houston-The Woodlands-Sugar Land, TX Metro Area
1614           Houston-The Woodlands-Sugar Land, TX Metro Area
1615          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1616           Houston-The Woodlands-Sugar Land, TX Metro Area
1617           Houston-The Woodlands-Sugar Land, TX Metro Area
1618           Houston-The Woodlands-Sugar Land, TX Metro Area
1619           Houston-The Woodlands-Sugar Land, TX Metro Area
1620                                    Jackson, MS Metro Area
1621                      Brownsville-Harlingen, TX Metro Area
1622                           Colorado Springs, CO Metro Area
1623                             Salt Lake City, UT Metro Area
1624             San Francisco-Oakland-Berkeley, CA Metro Area
1625                Sacramento-Roseville-Folsom, CA Metro Area
1626                      Grand Rapids-Kentwood, MI Metro Area
1627           Houston-The Woodlands-Sugar Land, TX Metro Area
1628                  Orlando-Kissimmee-Sanford, FL Metro Area
1629           Houston-The Woodlands-Sugar Land, TX Metro Area
1630                                    Wichita, KS Metro Area
1631                                    Wichita, KS Metro Area
1632                    Portland-South Portland, ME Metro Area
1633               Indianapolis-Carmel-Anderson, IN Metro Area
1634               Indianapolis-Carmel-Anderson, IN Metro Area
1635               Indianapolis-Carmel-Anderson, IN Metro Area
1636               Indianapolis-Carmel-Anderson, IN Metro Area
1637               Indianapolis-Carmel-Anderson, IN Metro Area
1638          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1639        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1640         Crestview-Fort Walton Beach-Destin, FL Metro Area
1641                          Manchester-Nashua, NH Metro Area
1642                               Jacksonville, FL Metro Area
1643                               Jacksonville, FL Metro Area
1644                               Jacksonville, FL Metro Area
1645           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1646                  Baltimore-Columbia-Towson, MD Metro Area
1647                              Oklahoma City, OK Metro Area
1648               Las Vegas-Henderson-Paradise, NV Metro Area
1649               Las Vegas-Henderson-Paradise, NV Metro Area
1650               Indianapolis-Carmel-Anderson, IN Metro Area
1651                       New Orleans-Metairie, LA Metro Area
1652                                 Pittsburgh, PA Metro Area
1653               Las Vegas-Henderson-Paradise, NV Metro Area
1654                                 Pittsburgh, PA Metro Area
1655            Tampa-St. Petersburg-Clearwater, FL Metro Area
1656               Las Vegas-Henderson-Paradise, NV Metro Area
1657               Las Vegas-Henderson-Paradise, NV Metro Area
1658           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1659             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1660               Las Vegas-Henderson-Paradise, NV Metro Area
1661               Las Vegas-Henderson-Paradise, NV Metro Area
1662                                 Pittsburgh, PA Metro Area
1663               Las Vegas-Henderson-Paradise, NV Metro Area
1664               Las Vegas-Henderson-Paradise, NV Metro Area
1665               Las Vegas-Henderson-Paradise, NV Metro Area
1666               Las Vegas-Henderson-Paradise, NV Metro Area
1667               Las Vegas-Henderson-Paradise, NV Metro Area
1668               Las Vegas-Henderson-Paradise, NV Metro Area
1669               Las Vegas-Henderson-Paradise, NV Metro Area
1670               Las Vegas-Henderson-Paradise, NV Metro Area
1671               Las Vegas-Henderson-Paradise, NV Metro Area
1672               Las Vegas-Henderson-Paradise, NV Metro Area
1673               Las Vegas-Henderson-Paradise, NV Metro Area
1674               Las Vegas-Henderson-Paradise, NV Metro Area
1675               Las Vegas-Henderson-Paradise, NV Metro Area
1676               Las Vegas-Henderson-Paradise, NV Metro Area
1677               Las Vegas-Henderson-Paradise, NV Metro Area
1678               Las Vegas-Henderson-Paradise, NV Metro Area
1679             Los Angeles-Long Beach-Anaheim, CA Metro Area
1680             Los Angeles-Long Beach-Anaheim, CA Metro Area
1681                                      Kapaa, HI Micro Area
1682                       New Orleans-Metairie, LA Metro Area
1683                  San Antonio-New Braunfels, TX Metro Area
1684             Los Angeles-Long Beach-Anaheim, CA Metro Area
1685                                      Tulsa, OK Metro Area
1686                  Orlando-Kissimmee-Sanford, FL Metro Area
1687        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1688             Los Angeles-Long Beach-Anaheim, CA Metro Area
1689             Los Angeles-Long Beach-Anaheim, CA Metro Area
1690             Los Angeles-Long Beach-Anaheim, CA Metro Area
1691             Los Angeles-Long Beach-Anaheim, CA Metro Area
1692           Riverside-San Bernardino-Ontario, CA Metro Area
1693                               Raleigh-Cary, NC Metro Area
1694                                    Lubbock, TX Metro Area
1695                Dallas-Fort Worth-Arlington, TX Metro Area
1696           Houston-The Woodlands-Sugar Land, TX Metro Area
1697          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1698                       New Orleans-Metairie, LA Metro Area
1699                              Oklahoma City, OK Metro Area
1700          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1701          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1702             Los Angeles-Long Beach-Anaheim, CA Metro Area
1703             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1704             Los Angeles-Long Beach-Anaheim, CA Metro Area
1705             Los Angeles-Long Beach-Anaheim, CA Metro Area
1706             Los Angeles-Long Beach-Anaheim, CA Metro Area
1707             Los Angeles-Long Beach-Anaheim, CA Metro Area
1708             Los Angeles-Long Beach-Anaheim, CA Metro Area
1709           Riverside-San Bernardino-Ontario, CA Metro Area
1710             Los Angeles-Long Beach-Anaheim, CA Metro Area
1711             Los Angeles-Long Beach-Anaheim, CA Metro Area
1712             Los Angeles-Long Beach-Anaheim, CA Metro Area
1713             Los Angeles-Long Beach-Anaheim, CA Metro Area
1714             Los Angeles-Long Beach-Anaheim, CA Metro Area
1715       Little Rock-North Little Rock-Conway, AR Metro Area
1716                                    Midland, TX Metro Area
1717                                    Midland, TX Metro Area
1718                             Kansas City, MO-KS Metro Area
1719                             Kansas City, MO-KS Metro Area
1720              North Port-Sarasota-Bradenton, FL Metro Area
1721                             Kansas City, MO-KS Metro Area
1722                             Kansas City, MO-KS Metro Area
1723                             Kansas City, MO-KS Metro Area
1724                             Kansas City, MO-KS Metro Area
1725                             Kansas City, MO-KS Metro Area
1726                             Kansas City, MO-KS Metro Area
1727                             Kansas City, MO-KS Metro Area
1728                        Buffalo-Cheektowaga, NY Metro Area
1729                                    Bozeman, MT Micro Area
1730           Riverside-San Bernardino-Ontario, CA Metro Area
1731                    Seattle-Tacoma-Bellevue, WA Metro Area
1732                                     Fresno, CA Metro Area
1733                      Phoenix-Mesa-Chandler, AZ Metro Area
1734                  Orlando-Kissimmee-Sanford, FL Metro Area
1735                 Boston-Cambridge-Newton, MA-NH Metro Area
1736                 Des Moines-West Des Moines, IA Metro Area
1737             San Diego-Chula Vista-Carlsbad, CA Metro Area
1738                  Orlando-Kissimmee-Sanford, FL Metro Area
1739                  Orlando-Kissimmee-Sanford, FL Metro Area
1740                  Orlando-Kissimmee-Sanford, FL Metro Area
1741                  Orlando-Kissimmee-Sanford, FL Metro Area
1742                  Orlando-Kissimmee-Sanford, FL Metro Area
1743                  Orlando-Kissimmee-Sanford, FL Metro Area
1744                  Orlando-Kissimmee-Sanford, FL Metro Area
1745                  Orlando-Kissimmee-Sanford, FL Metro Area
1746                  Orlando-Kissimmee-Sanford, FL Metro Area
1747                  Orlando-Kissimmee-Sanford, FL Metro Area
1748                                      Kapaa, HI Micro Area
1749                  Orlando-Kissimmee-Sanford, FL Metro Area
1750                  Orlando-Kissimmee-Sanford, FL Metro Area
1751             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1752             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1753             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1754             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1755             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1756             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1757             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1758             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1759             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1760             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1761             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1762             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1763             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1764             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1765             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1766             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1767             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1768             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1769             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1770             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1771             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1772             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1773             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1774             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1775             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1776             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1777             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1778             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1779             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1780             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1781             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1782                               St. Louis, MO-IL Metro Area
1783             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1784             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1785             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1786             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1787             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1788             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1789             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1790             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1791             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1792             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1793             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1794             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1795             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1796             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1797             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1798             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1799             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1800             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1801                              Memphis, TN-MS-AR Metro Area
1802                              Memphis, TN-MS-AR Metro Area
1803                              Memphis, TN-MS-AR Metro Area
1804                              Memphis, TN-MS-AR Metro Area
1805                              Memphis, TN-MS-AR Metro Area
1806                  San Antonio-New Braunfels, TX Metro Area
1807        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1808        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1809        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1810                             Kansas City, MO-KS Metro Area
1811                         Milwaukee-Waukesha, WI Metro Area
1812                         Milwaukee-Waukesha, WI Metro Area
1813                         Milwaukee-Waukesha, WI Metro Area
1814                         Milwaukee-Waukesha, WI Metro Area
1815                         Milwaukee-Waukesha, WI Metro Area
1816        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1817                      Cape Coral-Fort Myers, FL Metro Area
1818             San Diego-Chula Vista-Carlsbad, CA Metro Area
1819                       New Orleans-Metairie, LA Metro Area
1820                       New Orleans-Metairie, LA Metro Area
1821                       New Orleans-Metairie, LA Metro Area
1822                       New Orleans-Metairie, LA Metro Area
1823                       New Orleans-Metairie, LA Metro Area
1824                       New Orleans-Metairie, LA Metro Area
1825                       New Orleans-Metairie, LA Metro Area
1826                       New Orleans-Metairie, LA Metro Area
1827                           Colorado Springs, CO Metro Area
1828                       New Orleans-Metairie, LA Metro Area
1829                       New Orleans-Metairie, LA Metro Area
1830                       New Orleans-Metairie, LA Metro Area
1831                                      Tulsa, OK Metro Area
1832  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1833  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1834             San Francisco-Oakland-Berkeley, CA Metro Area
1835             San Francisco-Oakland-Berkeley, CA Metro Area
1836             San Francisco-Oakland-Berkeley, CA Metro Area
1837             San Francisco-Oakland-Berkeley, CA Metro Area
1838             San Diego-Chula Vista-Carlsbad, CA Metro Area
1839             San Francisco-Oakland-Berkeley, CA Metro Area
1840               Indianapolis-Carmel-Anderson, IN Metro Area
1841             San Francisco-Oakland-Berkeley, CA Metro Area
1842             San Francisco-Oakland-Berkeley, CA Metro Area
1843             San Francisco-Oakland-Berkeley, CA Metro Area
1844             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1845             San Francisco-Oakland-Berkeley, CA Metro Area
1846             San Francisco-Oakland-Berkeley, CA Metro Area
1847             San Francisco-Oakland-Berkeley, CA Metro Area
1848             San Francisco-Oakland-Berkeley, CA Metro Area
1849             San Francisco-Oakland-Berkeley, CA Metro Area
1850                Sacramento-Roseville-Folsom, CA Metro Area
1851                              Oklahoma City, OK Metro Area
1852                              Oklahoma City, OK Metro Area
1853                              Oklahoma City, OK Metro Area
1854                    Kahului-Wailuku-Lahaina, HI Metro Area
1855              North Port-Sarasota-Bradenton, FL Metro Area
1856                    Omaha-Council Bluffs, NE-IA Metro Area
1857                    Omaha-Council Bluffs, NE-IA Metro Area
1858                    Omaha-Council Bluffs, NE-IA Metro Area
1859                  San Antonio-New Braunfels, TX Metro Area
1860           Riverside-San Bernardino-Ontario, CA Metro Area
1861           Riverside-San Bernardino-Ontario, CA Metro Area
1862                                   Savannah, GA Metro Area
1863             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1864             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1865             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1866     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1867     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1868     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1869     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1870          Hartford-East Hartford-Middletown, CT Metro Area
1871                    Omaha-Council Bluffs, NE-IA Metro Area
1872            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1873            Tampa-St. Petersburg-Clearwater, FL Metro Area
1874                                      Kapaa, HI Micro Area
1875             San Francisco-Oakland-Berkeley, CA Metro Area
1876    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1877        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1878                      Phoenix-Mesa-Chandler, AZ Metro Area
1879                         Milwaukee-Waukesha, WI Metro Area
1880                      Phoenix-Mesa-Chandler, AZ Metro Area
1881           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1882                      Phoenix-Mesa-Chandler, AZ Metro Area
1883                      Phoenix-Mesa-Chandler, AZ Metro Area
1884                      Phoenix-Mesa-Chandler, AZ Metro Area
1885                      Phoenix-Mesa-Chandler, AZ Metro Area
1886                      Phoenix-Mesa-Chandler, AZ Metro Area
1887                      Phoenix-Mesa-Chandler, AZ Metro Area
1888                      Phoenix-Mesa-Chandler, AZ Metro Area
1889                      Phoenix-Mesa-Chandler, AZ Metro Area
1890                      Phoenix-Mesa-Chandler, AZ Metro Area
1891                      Phoenix-Mesa-Chandler, AZ Metro Area
1892                      Phoenix-Mesa-Chandler, AZ Metro Area
1893                      Phoenix-Mesa-Chandler, AZ Metro Area
1894                      Phoenix-Mesa-Chandler, AZ Metro Area
1895                      Phoenix-Mesa-Chandler, AZ Metro Area
1896                             Urban Honolulu, HI Metro Area
1897                      Phoenix-Mesa-Chandler, AZ Metro Area
1898                      Phoenix-Mesa-Chandler, AZ Metro Area
1899                      Phoenix-Mesa-Chandler, AZ Metro Area
1900                      Phoenix-Mesa-Chandler, AZ Metro Area
1901                      Phoenix-Mesa-Chandler, AZ Metro Area
1902                      Phoenix-Mesa-Chandler, AZ Metro Area
1903                                 Pittsburgh, PA Metro Area
1904                                 Pittsburgh, PA Metro Area
1905                                 Pittsburgh, PA Metro Area
1906                                 Pittsburgh, PA Metro Area
1907                                 Pittsburgh, PA Metro Area
1908                                 Pittsburgh, PA Metro Area
1909                 Pensacola-Ferry Pass-Brent, FL Metro Area
1910                 Pensacola-Ferry Pass-Brent, FL Metro Area
1911                 Pensacola-Ferry Pass-Brent, FL Metro Area
1912           Riverside-San Bernardino-Ontario, CA Metro Area
1913           Riverside-San Bernardino-Ontario, CA Metro Area
1914                               Raleigh-Cary, NC Metro Area
1915             San Francisco-Oakland-Berkeley, CA Metro Area
1916                               Raleigh-Cary, NC Metro Area
1917                    San Juan-Bayamón-Caguas, PR Metro Area
1918                  San Antonio-New Braunfels, TX Metro Area
1919                               Raleigh-Cary, NC Metro Area
1920                                   Richmond, VA Metro Area
1921                                       Reno, NV Metro Area
1922                                       Reno, NV Metro Area
1923                                       Reno, NV Metro Area
1924                                       Reno, NV Metro Area
1925                                  Rochester, NY Metro Area
1926                                  Rochester, NY Metro Area
1927                    Detroit-Warren-Dearborn, MI Metro Area
1928                      Cape Coral-Fort Myers, FL Metro Area
1929                      Cape Coral-Fort Myers, FL Metro Area
1930                      Cape Coral-Fort Myers, FL Metro Area
1931                      Cape Coral-Fort Myers, FL Metro Area
1932                      Cape Coral-Fort Myers, FL Metro Area
1933             San Diego-Chula Vista-Carlsbad, CA Metro Area
1934         Crestview-Fort Walton Beach-Destin, FL Metro Area
1935                Charleston-North Charleston, SC Metro Area
1936                     Spokane-Spokane Valley, WA Metro Area
1937             San Diego-Chula Vista-Carlsbad, CA Metro Area
1938             San Diego-Chula Vista-Carlsbad, CA Metro Area
1939             San Diego-Chula Vista-Carlsbad, CA Metro Area
1940        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1941                                     Tucson, AZ Metro Area
1942                  San Antonio-New Braunfels, TX Metro Area
1943                  San Antonio-New Braunfels, TX Metro Area
1944                  San Antonio-New Braunfels, TX Metro Area
1945                  San Antonio-New Braunfels, TX Metro Area
1946                Dallas-Fort Worth-Arlington, TX Metro Area
1947                  Santa Maria-Santa Barbara, CA Metro Area
1948             Louisville/Jefferson County, KY-IN Metro Area
1949             Louisville/Jefferson County, KY-IN Metro Area
1950             Louisville/Jefferson County, KY-IN Metro Area
1951             Louisville/Jefferson County, KY-IN Metro Area
1952             Louisville/Jefferson County, KY-IN Metro Area
1953             Los Angeles-Long Beach-Anaheim, CA Metro Area
1954             Los Angeles-Long Beach-Anaheim, CA Metro Area
1955                               Raleigh-Cary, NC Metro Area
1956             San Francisco-Oakland-Berkeley, CA Metro Area
1957             San Francisco-Oakland-Berkeley, CA Metro Area
1958             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1959             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1960                             Urban Honolulu, HI Metro Area
1961             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1962                    Kahului-Wailuku-Lahaina, HI Metro Area
1963                    Kahului-Wailuku-Lahaina, HI Metro Area
1964             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1965             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1966             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1967             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1968                    San Juan-Bayamón-Caguas, PR Metro Area
1969                             Salt Lake City, UT Metro Area
1970                             Salt Lake City, UT Metro Area
1971                             Salt Lake City, UT Metro Area
1972                             Salt Lake City, UT Metro Area
1973                Sacramento-Roseville-Folsom, CA Metro Area
1974                             Kansas City, MO-KS Metro Area
1975                Sacramento-Roseville-Folsom, CA Metro Area
1976                Sacramento-Roseville-Folsom, CA Metro Area
1977                                       Hilo, HI Micro Area
1978                Sacramento-Roseville-Folsom, CA Metro Area
1979                Sacramento-Roseville-Folsom, CA Metro Area
1980                Sacramento-Roseville-Folsom, CA Metro Area
1981                Sacramento-Roseville-Folsom, CA Metro Area
1982             Los Angeles-Long Beach-Anaheim, CA Metro Area
1983                       New Orleans-Metairie, LA Metro Area
1984             Los Angeles-Long Beach-Anaheim, CA Metro Area
1985              North Port-Sarasota-Bradenton, FL Metro Area
1986              North Port-Sarasota-Bradenton, FL Metro Area
1987              North Port-Sarasota-Bradenton, FL Metro Area
1988              North Port-Sarasota-Bradenton, FL Metro Area
1989                               St. Louis, MO-IL Metro Area
1990                               St. Louis, MO-IL Metro Area
1991                               St. Louis, MO-IL Metro Area
1992                               St. Louis, MO-IL Metro Area
1993                               St. Louis, MO-IL Metro Area
1994                               St. Louis, MO-IL Metro Area
1995                               St. Louis, MO-IL Metro Area
1996                               St. Louis, MO-IL Metro Area
1997                               St. Louis, MO-IL Metro Area
1998                               St. Louis, MO-IL Metro Area
1999                               St. Louis, MO-IL Metro Area
2000          Hartford-East Hartford-Middletown, CT Metro Area
2001                               St. Louis, MO-IL Metro Area
2002                               St. Louis, MO-IL Metro Area
2003                               St. Louis, MO-IL Metro Area
2004                               St. Louis, MO-IL Metro Area
2005                               St. Louis, MO-IL Metro Area
2006                               St. Louis, MO-IL Metro Area
2007                               St. Louis, MO-IL Metro Area
2008                               St. Louis, MO-IL Metro Area
2009                               St. Louis, MO-IL Metro Area
2010                               St. Louis, MO-IL Metro Area
2011                               St. Louis, MO-IL Metro Area
2012                               St. Louis, MO-IL Metro Area
2013                               St. Louis, MO-IL Metro Area
2014                               St. Louis, MO-IL Metro Area
2015                               St. Louis, MO-IL Metro Area
2016                               St. Louis, MO-IL Metro Area
2017            Tampa-St. Petersburg-Clearwater, FL Metro Area
2018                                   Syracuse, NY Metro Area
2019                     Denver-Aurora-Lakewood, CO Metro Area
2020            Tampa-St. Petersburg-Clearwater, FL Metro Area
2021            Tampa-St. Petersburg-Clearwater, FL Metro Area
2022            Tampa-St. Petersburg-Clearwater, FL Metro Area
2023            Tampa-St. Petersburg-Clearwater, FL Metro Area
2024            Tampa-St. Petersburg-Clearwater, FL Metro Area
2025            Tampa-St. Petersburg-Clearwater, FL Metro Area
2026            Tampa-St. Petersburg-Clearwater, FL Metro Area
2027            Tampa-St. Petersburg-Clearwater, FL Metro Area
2028            Tampa-St. Petersburg-Clearwater, FL Metro Area
2029                                     Tucson, AZ Metro Area
2030                                     Tucson, AZ Metro Area
2031         Crestview-Fort Walton Beach-Destin, FL Metro Area
2032                         Milwaukee-Waukesha, WI Metro Area
2033                    Shreveport-Bossier City, LA Metro Area
2034                                    Medford, OR Metro Area
2035                  Orlando-Kissimmee-Sanford, FL Metro Area
2036                Dallas-Fort Worth-Arlington, TX Metro Area
2037                Sacramento-Roseville-Folsom, CA Metro Area
2038                           Cincinnati, OH-KY-IN Metro Area
2039                               Jacksonville, FL Metro Area
2040             San Diego-Chula Vista-Carlsbad, CA Metro Area
2041                               Raleigh-Cary, NC Metro Area
2042   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2043   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2044           Houston-The Woodlands-Sugar Land, TX Metro Area
2045           Houston-The Woodlands-Sugar Land, TX Metro Area
2046          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2048                      Phoenix-Mesa-Chandler, AZ Metro Area
2049                      Phoenix-Mesa-Chandler, AZ Metro Area
2050             Los Angeles-Long Beach-Anaheim, CA Metro Area
2051                 Pensacola-Ferry Pass-Brent, FL Metro Area
2052        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2053                    San Juan-Bayamón-Caguas, PR Metro Area
2054   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2055                                     Bangor, ME Metro Area
2056                        Buffalo-Cheektowaga, NY Metro Area
2057                        Harrisburg-Carlisle, PA Metro Area
2058                               Jacksonville, FL Metro Area
2059                 Boston-Cambridge-Newton, MA-NH Metro Area
2060                           Cincinnati, OH-KY-IN Metro Area
2061                 Boston-Cambridge-Newton, MA-NH Metro Area
2062                     Denver-Aurora-Lakewood, CO Metro Area
2063                       New Orleans-Metairie, LA Metro Area
2064                 Des Moines-West Des Moines, IA Metro Area
2065     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2066                Dallas-Fort Worth-Arlington, TX Metro Area
2067        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2068                 Boston-Cambridge-Newton, MA-NH Metro Area
2069                 Boston-Cambridge-Newton, MA-NH Metro Area
2070                 Boston-Cambridge-Newton, MA-NH Metro Area
2071             San Francisco-Oakland-Berkeley, CA Metro Area
2072                          Manchester-Nashua, NH Metro Area
2073                Charleston-North Charleston, SC Metro Area
2074                                      Tulsa, OK Metro Area
2075                           Cleveland-Elyria, OH Metro Area
2076                           Cleveland-Elyria, OH Metro Area
2077              Charlotte-Concord-Gastonia, NC-SC Metro Area
2078              Charlotte-Concord-Gastonia, NC-SC Metro Area
2079               Indianapolis-Carmel-Anderson, IN Metro Area
2080                                   Columbus, OH Metro Area
2081                                   Columbus, OH Metro Area
2082                                   Columbus, OH Metro Area
2083                           Cincinnati, OH-KY-IN Metro Area
2084                Sacramento-Roseville-Folsom, CA Metro Area
2085   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2086   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2087   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2088   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2089                                    Madison, WI Metro Area
2090          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2091          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2092          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2093          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2094          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2095          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2096                 Pensacola-Ferry Pass-Brent, FL Metro Area
2097                      Greensboro-High Point, NC Metro Area
2098   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2099   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2100                                 Wilmington, NC Metro Area
2101               Indianapolis-Carmel-Anderson, IN Metro Area
2102         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
2103               Indianapolis-Carmel-Anderson, IN Metro Area
2104                         Milwaukee-Waukesha, WI Metro Area
2105                          Carbondale-Marion, IL Metro Area
2106                Dallas-Fort Worth-Arlington, TX Metro Area
2107          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2108                                Panama City, FL Metro Area
2109          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2110                      Phoenix-Mesa-Chandler, AZ Metro Area
2111                                  Knoxville, TN Metro Area
2112          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2113          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2114          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2115          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2116          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2117          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2118          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2119          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2120          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2121          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2122          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2123          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2124                                Spartanburg, SC Metro Area
2125     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2126                    Omaha-Council Bluffs, NE-IA Metro Area
2127     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2128    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2129                                 Pittsburgh, PA Metro Area
2130                                 Pittsburgh, PA Metro Area
2131                                  Fairbanks, AK Metro Area
2132                                 Pittsburgh, PA Metro Area
2133                                   Savannah, GA Metro Area
2134                                   Savannah, GA Metro Area
2135             Louisville/Jefferson County, KY-IN Metro Area
2136                               Raleigh-Cary, NC Metro Area
2137                               Raleigh-Cary, NC Metro Area
2138                      Providence-Warwick, RI-MA Metro Area
2139                 Boston-Cambridge-Newton, MA-NH Metro Area
2140             Louisville/Jefferson County, KY-IN Metro Area
2141                                   Columbus, OH Metro Area
2142              Charlotte-Concord-Gastonia, NC-SC Metro Area
2143                Charleston-North Charleston, SC Metro Area
2144                           Cleveland-Elyria, OH Metro Area
2145                            Charlottesville, VA Metro Area
2146                                      Akron, OH Metro Area
2147   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2148                    Seattle-Tacoma-Bellevue, WA Metro Area
2149                           Sioux City, IA-NE-SD Metro Area
2150             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2151             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2152               Las Vegas-Henderson-Paradise, NV Metro Area
2153                  San Antonio-New Braunfels, TX Metro Area
2154                      Phoenix-Mesa-Chandler, AZ Metro Area
2155        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2156        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2157                                 Eau Claire, WI Metro Area
2158                    Albany-Schenectady-Troy, NY Metro Area
2159                                 Wilmington, NC Metro Area
2160                     Denver-Aurora-Lakewood, CO Metro Area
2161   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2162             San Diego-Chula Vista-Carlsbad, CA Metro Area
2163  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2164                      Cape Coral-Fort Myers, FL Metro Area
2165                                   Richmond, VA Metro Area
2166                      Greensboro-High Point, NC Metro Area
2167                                   Syracuse, NY Metro Area
2168                             Kansas City, MO-KS Metro Area
2169                     Denver-Aurora-Lakewood, CO Metro Area
2170                      Grand Rapids-Kentwood, MI Metro Area
2171                                 Huntsville, AL Metro Area
2172           Houston-The Woodlands-Sugar Land, TX Metro Area
2173             Los Angeles-Long Beach-Anaheim, CA Metro Area
2174        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2175                 Pensacola-Ferry Pass-Brent, FL Metro Area
2176                     Denver-Aurora-Lakewood, CO Metro Area
2177                 Pensacola-Ferry Pass-Brent, FL Metro Area
2178                          New Haven-Milford, CT Metro Area
2179                          New Haven-Milford, CT Metro Area
2180                  Orlando-Kissimmee-Sanford, FL Metro Area
2181             Los Angeles-Long Beach-Anaheim, CA Metro Area
2182                           Glenwood Springs, CO Micro Area
2183                          Birmingham-Hoover, AL Metro Area
2184          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2185                         Milwaukee-Waukesha, WI Metro Area
2186   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2187   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2188                Dallas-Fort Worth-Arlington, TX Metro Area
2189                Dallas-Fort Worth-Arlington, TX Metro Area
2190                Dallas-Fort Worth-Arlington, TX Metro Area
2191                             Urban Honolulu, HI Metro Area
2192          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2193           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2194             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2195    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2197                      Phoenix-Mesa-Chandler, AZ Metro Area
2198                      Phoenix-Mesa-Chandler, AZ Metro Area
2199             San Diego-Chula Vista-Carlsbad, CA Metro Area
2200                                  Fairbanks, AK Metro Area
2201            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2202                 Boston-Cambridge-Newton, MA-NH Metro Area
2203                 Boston-Cambridge-Newton, MA-NH Metro Area
2204          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2205           Riverside-San Bernardino-Ontario, CA Metro Area
2206             San Francisco-Oakland-Berkeley, CA Metro Area
2207           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2208           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2209           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2210           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2211           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2212           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2213                 Boston-Cambridge-Newton, MA-NH Metro Area
2214   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2215                    Detroit-Warren-Dearborn, MI Metro Area
2216                    Detroit-Warren-Dearborn, MI Metro Area
2217                    Detroit-Warren-Dearborn, MI Metro Area
2218          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2219          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2220          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2221          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2222             Los Angeles-Long Beach-Anaheim, CA Metro Area
2223             Los Angeles-Long Beach-Anaheim, CA Metro Area
2224             Los Angeles-Long Beach-Anaheim, CA Metro Area
2225        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2226        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2227             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2228                             Salt Lake City, UT Metro Area
2229                             Salt Lake City, UT Metro Area
2230                             Salt Lake City, UT Metro Area
2231            Tampa-St. Petersburg-Clearwater, FL Metro Area
2232            Tampa-St. Petersburg-Clearwater, FL Metro Area
2233             Los Angeles-Long Beach-Anaheim, CA Metro Area
2234                    Detroit-Warren-Dearborn, MI Metro Area
2235             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2236                     Denver-Aurora-Lakewood, CO Metro Area
2237          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2238           Houston-The Woodlands-Sugar Land, TX Metro Area
2239           Houston-The Woodlands-Sugar Land, TX Metro Area
2240           Houston-The Woodlands-Sugar Land, TX Metro Area
2241           Houston-The Woodlands-Sugar Land, TX Metro Area
2242                               Raleigh-Cary, NC Metro Area
2243             San Francisco-Oakland-Berkeley, CA Metro Area
2244           Houston-The Woodlands-Sugar Land, TX Metro Area
2245          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2246          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2247             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2248                                   Richmond, VA Metro Area
2249    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2250                             Kansas City, MO-KS Metro Area
2251                Dallas-Fort Worth-Arlington, TX Metro Area
2252                      Grand Rapids-Kentwood, MI Metro Area
2253    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2254  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2255                                  Fairbanks, AK Metro Area
2256                                                      <NA>
2257                                                      <NA>
2258                    Seattle-Tacoma-Bellevue, WA Metro Area
2259                    Seattle-Tacoma-Bellevue, WA Metro Area
2260                             Salt Lake City, UT Metro Area
2261                     Denver-Aurora-Lakewood, CO Metro Area
2262   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2263              Allentown-Bethlehem-Easton, PA-NJ Metro Area
2264           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2265           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2266           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2267           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2268           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2269           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2270           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2271           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2272                                     Bangor, ME Metro Area
2273                 Boston-Cambridge-Newton, MA-NH Metro Area
2274                 Boston-Cambridge-Newton, MA-NH Metro Area
2275                            Charlottesville, VA Metro Area
2276                Charleston-North Charleston, SC Metro Area
2277                           Cincinnati, OH-KY-IN Metro Area
2278                        Harrisburg-Carlisle, PA Metro Area
2279                    Detroit-Warren-Dearborn, MI Metro Area
2280                    Detroit-Warren-Dearborn, MI Metro Area
2281                    Detroit-Warren-Dearborn, MI Metro Area
2282                    Detroit-Warren-Dearborn, MI Metro Area
2283                    Detroit-Warren-Dearborn, MI Metro Area
2284                    Detroit-Warren-Dearborn, MI Metro Area
2285                    Detroit-Warren-Dearborn, MI Metro Area
2286          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2287                      Phoenix-Mesa-Chandler, AZ Metro Area
2288               Indianapolis-Carmel-Anderson, IN Metro Area
2289          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2290          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2291          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2292          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2293          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2294          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2295          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2296          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2297          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2298          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2299          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2300          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2301                        Harrisburg-Carlisle, PA Metro Area
2302        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2303        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2304        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2305                               Raleigh-Cary, NC Metro Area
2306                                    Roanoke, VA Metro Area
2307                                  Rochester, NY Metro Area
2308                                  Knoxville, TN Metro Area
2309               Austin-Round Rock-Georgetown, TX Metro Area
2310               Austin-Round Rock-Georgetown, TX Metro Area
2311                                    Madison, WI Metro Area
2312               Austin-Round Rock-Georgetown, TX Metro Area
2313          Hartford-East Hartford-Middletown, CT Metro Area
2314                 Boston-Cambridge-Newton, MA-NH Metro Area
2315                 Boston-Cambridge-Newton, MA-NH Metro Area
2316               Indianapolis-Carmel-Anderson, IN Metro Area
2317                 Boston-Cambridge-Newton, MA-NH Metro Area
2318             San Francisco-Oakland-Berkeley, CA Metro Area
2319              Charlotte-Concord-Gastonia, NC-SC Metro Area
2320              Charlotte-Concord-Gastonia, NC-SC Metro Area
2321              Charlotte-Concord-Gastonia, NC-SC Metro Area
2322              Charlotte-Concord-Gastonia, NC-SC Metro Area
2323              Charlotte-Concord-Gastonia, NC-SC Metro Area
2324                                    Salinas, CA Metro Area
2325              Charlotte-Concord-Gastonia, NC-SC Metro Area
2326              Charlotte-Concord-Gastonia, NC-SC Metro Area
2327              Charlotte-Concord-Gastonia, NC-SC Metro Area
2328                           Cincinnati, OH-KY-IN Metro Area
2329   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2330                Dallas-Fort Worth-Arlington, TX Metro Area
2331                Dallas-Fort Worth-Arlington, TX Metro Area
2332                Dallas-Fort Worth-Arlington, TX Metro Area
2333                Dallas-Fort Worth-Arlington, TX Metro Area
2334                Dallas-Fort Worth-Arlington, TX Metro Area
2335                Dallas-Fort Worth-Arlington, TX Metro Area
2336                Dallas-Fort Worth-Arlington, TX Metro Area
2337                Dallas-Fort Worth-Arlington, TX Metro Area
2338                Dallas-Fort Worth-Arlington, TX Metro Area
2339                Dallas-Fort Worth-Arlington, TX Metro Area
2340                Dallas-Fort Worth-Arlington, TX Metro Area
2341                Dallas-Fort Worth-Arlington, TX Metro Area
2342                Dallas-Fort Worth-Arlington, TX Metro Area
2343                Dallas-Fort Worth-Arlington, TX Metro Area
2344                Dallas-Fort Worth-Arlington, TX Metro Area
2345                Dallas-Fort Worth-Arlington, TX Metro Area
2346                                Springfield, MO Metro Area
2347                                   Columbia, MO Metro Area
2348                    Seattle-Tacoma-Bellevue, WA Metro Area
2349           Houston-The Woodlands-Sugar Land, TX Metro Area
2350        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2351          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2352               Las Vegas-Henderson-Paradise, NV Metro Area
2353                    Shreveport-Bossier City, LA Metro Area
2354                                 Wilmington, NC Metro Area
2355                                   Richmond, VA Metro Area
2356                Burlington-South Burlington, VT Metro Area
2357          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2358                  Orlando-Kissimmee-Sanford, FL Metro Area
2359                        Harrisburg-Carlisle, PA Metro Area
2360                    Portland-South Portland, ME Metro Area
2361       Little Rock-North Little Rock-Conway, AR Metro Area
2362                   McAllen-Edinburg-Mission, TX Metro Area
2363        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2364        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2365        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2366        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2367        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2368        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2369                                Tallahassee, FL Metro Area
2370        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2371                Charleston-North Charleston, SC Metro Area
2372             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2373             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2374             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2375             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2376             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2377                            Charlottesville, VA Metro Area
2378    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2379    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2380                      Phoenix-Mesa-Chandler, AZ Metro Area
2381                      Phoenix-Mesa-Chandler, AZ Metro Area
2382                      Phoenix-Mesa-Chandler, AZ Metro Area
2383                      Phoenix-Mesa-Chandler, AZ Metro Area
2384            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2385                                Baton Rouge, LA Metro Area
2386                               Raleigh-Cary, NC Metro Area
2387                      Cape Coral-Fort Myers, FL Metro Area
2388                       Kingsport-Bristol, TN-VA Metro Area
2389                                 Pittsburgh, PA Metro Area
2390                      Greensboro-High Point, NC Metro Area
2391                                    Roanoke, VA Metro Area
2392                          Birmingham-Hoover, AL Metro Area
2393                    San Juan-Bayamón-Caguas, PR Metro Area
2394                                   Columbus, OH Metro Area
2395             Louisville/Jefferson County, KY-IN Metro Area
2396                                   Fargo, ND-MN Metro Area
2397                                       Yuma, AZ Metro Area
2398                                  Anchorage, AK Metro Area
2399                                  Anchorage, AK Metro Area
2400                                                      <NA>
2401   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2402                                  Ketchikan, AK Micro Area
2403                             Urban Honolulu, HI Metro Area
2404                                  Ketchikan, AK Micro Area
2405             Los Angeles-Long Beach-Anaheim, CA Metro Area
2406             Los Angeles-Long Beach-Anaheim, CA Metro Area
2407                    Omaha-Council Bluffs, NE-IA Metro Area
2408                                                      <NA>
2409            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2410                    Kahului-Wailuku-Lahaina, HI Metro Area
2411                    Seattle-Tacoma-Bellevue, WA Metro Area
2412                    Seattle-Tacoma-Bellevue, WA Metro Area
2413                    Seattle-Tacoma-Bellevue, WA Metro Area
2414                    Seattle-Tacoma-Bellevue, WA Metro Area
2415             San Francisco-Oakland-Berkeley, CA Metro Area
2416                                Albuquerque, NM Metro Area
2417                      Cape Coral-Fort Myers, FL Metro Area
2418                    Albany-Schenectady-Troy, NY Metro Area
2419          Hartford-East Hartford-Middletown, CT Metro Area
2420          Hartford-East Hartford-Middletown, CT Metro Area
2421                 Boston-Cambridge-Newton, MA-NH Metro Area
2422                 Boston-Cambridge-Newton, MA-NH Metro Area
2423                 Boston-Cambridge-Newton, MA-NH Metro Area
2424                 Boston-Cambridge-Newton, MA-NH Metro Area
2425             Los Angeles-Long Beach-Anaheim, CA Metro Area
2426   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2427        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2428          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2429                    Seattle-Tacoma-Bellevue, WA Metro Area
2430          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2431          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2432          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2433             Los Angeles-Long Beach-Anaheim, CA Metro Area
2434             Los Angeles-Long Beach-Anaheim, CA Metro Area
2435           Riverside-San Bernardino-Ontario, CA Metro Area
2436                      Providence-Warwick, RI-MA Metro Area
2437                      Providence-Warwick, RI-MA Metro Area
2438             San Diego-Chula Vista-Carlsbad, CA Metro Area
2439                    San Juan-Bayamón-Caguas, PR Metro Area
2440                    San Juan-Bayamón-Caguas, PR Metro Area
2441                Sacramento-Roseville-Folsom, CA Metro Area
2442              North Port-Sarasota-Bradenton, FL Metro Area
2443                                   Syracuse, NY Metro Area
2444           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2445           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2446           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2447           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2448           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2449           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2450           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2451           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2452           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2453           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2454           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2455           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2456           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2457           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2458           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2459           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2460           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2461           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2462           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2463           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2464           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2465           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2466               Austin-Round Rock-Georgetown, TX Metro Area
2467               Austin-Round Rock-Georgetown, TX Metro Area
2468 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2469                 Boston-Cambridge-Newton, MA-NH Metro Area
2470                                 Jackson, WY-ID Micro Area
2471              Charlotte-Concord-Gastonia, NC-SC Metro Area
2472                           Cincinnati, OH-KY-IN Metro Area
2473                           Cincinnati, OH-KY-IN Metro Area
2474                           Cincinnati, OH-KY-IN Metro Area
2475                              Traverse City, MI Micro Area
2476                Dallas-Fort Worth-Arlington, TX Metro Area
2477                    Detroit-Warren-Dearborn, MI Metro Area
2478                    Detroit-Warren-Dearborn, MI Metro Area
2479                    Detroit-Warren-Dearborn, MI Metro Area
2480                    Detroit-Warren-Dearborn, MI Metro Area
2481                    Detroit-Warren-Dearborn, MI Metro Area
2482                    Detroit-Warren-Dearborn, MI Metro Area
2483                    Detroit-Warren-Dearborn, MI Metro Area
2484                    Detroit-Warren-Dearborn, MI Metro Area
2485                    Detroit-Warren-Dearborn, MI Metro Area
2486                                    El Paso, TX Metro Area
2487              Palm Bay-Melbourne-Titusville, FL Metro Area
2488   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2489               Indianapolis-Carmel-Anderson, IN Metro Area
2490          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2491          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2492             Los Angeles-Long Beach-Anaheim, CA Metro Area
2493             Los Angeles-Long Beach-Anaheim, CA Metro Area
2494                  Orlando-Kissimmee-Sanford, FL Metro Area
2495                              Memphis, TN-MS-AR Metro Area
2496        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2497        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2498        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2499        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2500        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2501        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2502        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2503        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2504        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2505        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2506        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2507        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2508        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2509        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2510          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2511                      Greensboro-High Point, NC Metro Area
2512                      Cape Coral-Fort Myers, FL Metro Area
2513                  San Antonio-New Braunfels, TX Metro Area
2514                    Seattle-Tacoma-Bellevue, WA Metro Area
2515                    Seattle-Tacoma-Bellevue, WA Metro Area
2516                                 Rapid City, SD Metro Area
2517                    Seattle-Tacoma-Bellevue, WA Metro Area
2518             San Francisco-Oakland-Berkeley, CA Metro Area
2519                    San Juan-Bayamón-Caguas, PR Metro Area
2520                             Salt Lake City, UT Metro Area
2521                             Salt Lake City, UT Metro Area
2522                             Salt Lake City, UT Metro Area
2523                             Salt Lake City, UT Metro Area
2524                             Salt Lake City, UT Metro Area
2525                             Salt Lake City, UT Metro Area
2526                             Salt Lake City, UT Metro Area
2527                             Salt Lake City, UT Metro Area
2528                             Salt Lake City, UT Metro Area
2529                             Salt Lake City, UT Metro Area
2530                             Salt Lake City, UT Metro Area
2531                             Salt Lake City, UT Metro Area
2532                             Salt Lake City, UT Metro Area
2533                       Kingsport-Bristol, TN-VA Metro Area
2534                Burlington-South Burlington, VT Metro Area
2535          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2536          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2537          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2538          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2539          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2540          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2541   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2542   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2543             Los Angeles-Long Beach-Anaheim, CA Metro Area
2544                                Tallahassee, FL Metro Area
2545                      Brownsville-Harlingen, TX Metro Area
2546                Dallas-Fort Worth-Arlington, TX Metro Area
2547                Dallas-Fort Worth-Arlington, TX Metro Area
2548                Dallas-Fort Worth-Arlington, TX Metro Area
2549                Dallas-Fort Worth-Arlington, TX Metro Area
2550                Dallas-Fort Worth-Arlington, TX Metro Area
2551                Dallas-Fort Worth-Arlington, TX Metro Area
2552                 Des Moines-West Des Moines, IA Metro Area
2553    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2554                              Fort Smith, AR-OK Metro Area
2555                             Grand Junction, CO Metro Area
2556                                    Wichita, KS Metro Area
2557                                    Jackson, MS Metro Area
2558                               Lake Charles, LA Metro Area
2559        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2560                    Omaha-Council Bluffs, NE-IA Metro Area
2561             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2563             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2564                                Springfield, IL Metro Area
2565                                Tallahassee, FL Metro Area
2566                             Salt Lake City, UT Metro Area
2567                                    El Paso, TX Metro Area
2568              Charlotte-Concord-Gastonia, NC-SC Metro Area
2569              Charlotte-Concord-Gastonia, NC-SC Metro Area
2570              Charlotte-Concord-Gastonia, NC-SC Metro Area
2571              Charlotte-Concord-Gastonia, NC-SC Metro Area
2572              Charlotte-Concord-Gastonia, NC-SC Metro Area
2573              Charlotte-Concord-Gastonia, NC-SC Metro Area
2574   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2575   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2576                      Greensboro-High Point, NC Metro Area
2577                                    Madison, WI Metro Area
2578    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2579                 Pensacola-Ferry Pass-Brent, FL Metro Area
2580                                 Huntsville, AL Metro Area
2581                                   Bismarck, ND Metro Area
2582                                     Casper, WY Metro Area
2583                             Corpus Christi, TX Metro Area
2584                     Denver-Aurora-Lakewood, CO Metro Area
2585                     Denver-Aurora-Lakewood, CO Metro Area
2586                     Denver-Aurora-Lakewood, CO Metro Area
2587                     Denver-Aurora-Lakewood, CO Metro Area
2588                     Denver-Aurora-Lakewood, CO Metro Area
2589                     Denver-Aurora-Lakewood, CO Metro Area
2590                     Denver-Aurora-Lakewood, CO Metro Area
2591                     Denver-Aurora-Lakewood, CO Metro Area
2592                    Detroit-Warren-Dearborn, MI Metro Area
2593                    Detroit-Warren-Dearborn, MI Metro Area
2594                    Detroit-Warren-Dearborn, MI Metro Area
2595                               St. Louis, MO-IL Metro Area
2596          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2597           Houston-The Woodlands-Sugar Land, TX Metro Area
2598           Houston-The Woodlands-Sugar Land, TX Metro Area
2599           Houston-The Woodlands-Sugar Land, TX Metro Area
2600           Houston-The Woodlands-Sugar Land, TX Metro Area
2601             Los Angeles-Long Beach-Anaheim, CA Metro Area
2602                                    Lubbock, TX Metro Area
2603                                    Midland, TX Metro Area
2604                             Kansas City, MO-KS Metro Area
2605        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2606        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2607        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2608        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2609        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2610        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2611        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2612                    Omaha-Council Bluffs, NE-IA Metro Area
2613             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2614             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2615             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2616             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2617             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2618     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2619                      Phoenix-Mesa-Chandler, AZ Metro Area
2620                                   Richmond, VA Metro Area
2621                                   Savannah, GA Metro Area
2622                    Seattle-Tacoma-Bellevue, WA Metro Area
2623             San Francisco-Oakland-Berkeley, CA Metro Area
2624             San Francisco-Oakland-Berkeley, CA Metro Area
2625                             Salt Lake City, UT Metro Area
2626                             Salt Lake City, UT Metro Area
2627                             Salt Lake City, UT Metro Area
2628                             Salt Lake City, UT Metro Area
2629                             Salt Lake City, UT Metro Area
2630                             Salt Lake City, UT Metro Area
2631                             Salt Lake City, UT Metro Area
2632                                     Tucson, AZ Metro Area
2633            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2634   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2635                     Denver-Aurora-Lakewood, CO Metro Area
2636                     Denver-Aurora-Lakewood, CO Metro Area
2637                     Denver-Aurora-Lakewood, CO Metro Area
2638                 Des Moines-West Des Moines, IA Metro Area
2639          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2640          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2641                                  Anchorage, AK Metro Area
2642                Sacramento-Roseville-Folsom, CA Metro Area
2643   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2644   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2645   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2646   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2647           Houston-The Woodlands-Sugar Land, TX Metro Area
2648           Houston-The Woodlands-Sugar Land, TX Metro Area
2649           Houston-The Woodlands-Sugar Land, TX Metro Area
2650           Houston-The Woodlands-Sugar Land, TX Metro Area
2651           Houston-The Woodlands-Sugar Land, TX Metro Area
2652           Houston-The Woodlands-Sugar Land, TX Metro Area
2653           Houston-The Woodlands-Sugar Land, TX Metro Area
2654           Houston-The Woodlands-Sugar Land, TX Metro Area
2655                             Kansas City, MO-KS Metro Area
2656                   McAllen-Edinburg-Mission, TX Metro Area
2657                    Omaha-Council Bluffs, NE-IA Metro Area
2658                                 Pittsburgh, PA Metro Area
2659             San Diego-Chula Vista-Carlsbad, CA Metro Area
2660                           Glenwood Springs, CO Micro Area
2661             San Francisco-Oakland-Berkeley, CA Metro Area
2662             San Francisco-Oakland-Berkeley, CA Metro Area
2663             San Francisco-Oakland-Berkeley, CA Metro Area
2664             San Francisco-Oakland-Berkeley, CA Metro Area
2665                Sacramento-Roseville-Folsom, CA Metro Area
2666                           Glenwood Springs, CO Micro Area
2667             Los Angeles-Long Beach-Anaheim, CA Metro Area
2668               Austin-Round Rock-Georgetown, TX Metro Area
2669             Los Angeles-Long Beach-Anaheim, CA Metro Area
2670                  Baltimore-Columbia-Towson, MD Metro Area
2671                                   Columbus, OH Metro Area
2672                     Denver-Aurora-Lakewood, CO Metro Area
2673            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2674               Las Vegas-Henderson-Paradise, NV Metro Area
2675               Las Vegas-Henderson-Paradise, NV Metro Area
2676             San Diego-Chula Vista-Carlsbad, CA Metro Area
2677                      Phoenix-Mesa-Chandler, AZ Metro Area
2678                      Cape Coral-Fort Myers, FL Metro Area
2679             San Diego-Chula Vista-Carlsbad, CA Metro Area
2680                         Milwaukee-Waukesha, WI Metro Area
2681                                    El Paso, TX Metro Area
2682                                Sioux Falls, SD Metro Area
2683           Houston-The Woodlands-Sugar Land, TX Metro Area
2684           Houston-The Woodlands-Sugar Land, TX Metro Area
2685           Houston-The Woodlands-Sugar Land, TX Metro Area
2686                             Kansas City, MO-KS Metro Area
2687                 Boston-Cambridge-Newton, MA-NH Metro Area
2688                 Boston-Cambridge-Newton, MA-NH Metro Area
2689                 Boston-Cambridge-Newton, MA-NH Metro Area
2690                Charleston-North Charleston, SC Metro Area
2691                                   Columbus, OH Metro Area
2692   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2693                    Detroit-Warren-Dearborn, MI Metro Area
2694          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2695          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2696          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2697          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2698                                Spartanburg, SC Metro Area
2699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2700          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2701          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2702                              Oklahoma City, OK Metro Area
2703             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2704             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2705             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2706             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2707    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2708    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2709                    Shreveport-Bossier City, LA Metro Area
2710                               Raleigh-Cary, NC Metro Area
2711             Fayetteville-Springdale-Rogers, AR Metro Area
2712                              Evansville, IN-KY Metro Area
2713   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2714             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2715             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2716                 Pensacola-Ferry Pass-Brent, FL Metro Area
2717        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2718           Riverside-San Bernardino-Ontario, CA Metro Area
2719                      Cape Coral-Fort Myers, FL Metro Area
2720              Charlotte-Concord-Gastonia, NC-SC Metro Area
2721              Charlotte-Concord-Gastonia, NC-SC Metro Area
2722                          Manchester-Nashua, NH Metro Area
2723    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2725                          Birmingham-Hoover, AL Metro Area
2726                     Denver-Aurora-Lakewood, CO Metro Area
2727   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2728           Houston-The Woodlands-Sugar Land, TX Metro Area
2729           Houston-The Woodlands-Sugar Land, TX Metro Area
2730                                    Wichita, KS Metro Area
2731       Little Rock-North Little Rock-Conway, AR Metro Area
2732           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2733                                     Bangor, ME Metro Area
2734 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2735                Burlington-South Burlington, VT Metro Area
2736                  Baltimore-Columbia-Towson, MD Metro Area
2737                      Grand Rapids-Kentwood, MI Metro Area
2738                                Spartanburg, SC Metro Area
2739          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2740          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2741          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2742          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2743          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2744             Fayetteville-Springdale-Rogers, AR Metro Area
2745                               Raleigh-Cary, NC Metro Area
2746                                   Richmond, VA Metro Area
2747                                  Rochester, NY Metro Area
2748                                  Rochester, NY Metro Area
2749                                   Savannah, GA Metro Area
2750                                   Savannah, GA Metro Area
2751            Tampa-St. Petersburg-Clearwater, FL Metro Area
2752                                 Huntsville, AL Metro Area
2753               Austin-Round Rock-Georgetown, TX Metro Area
2754                                     Tucson, AZ Metro Area
2755                             Chattanooga, TN-GA Metro Area
2756                                 Greenville, NC Metro Area
2757                                 Boise City, ID Metro Area
2758                    Kahului-Wailuku-Lahaina, HI Metro Area
2759                                    Midland, TX Metro Area
2760             Los Angeles-Long Beach-Anaheim, CA Metro Area
2761                             Urban Honolulu, HI Metro Area
2762                                  Lafayette, LA Metro Area
2763                           Cleveland-Elyria, OH Metro Area
2764                           Cleveland-Elyria, OH Metro Area
2765                           Cleveland-Elyria, OH Metro Area
2766                                  Anchorage, AK Metro Area
2767              Charlotte-Concord-Gastonia, NC-SC Metro Area
2768              Charlotte-Concord-Gastonia, NC-SC Metro Area
2769              Charlotte-Concord-Gastonia, NC-SC Metro Area
2770              Charlotte-Concord-Gastonia, NC-SC Metro Area
2771              Charlotte-Concord-Gastonia, NC-SC Metro Area
2772              Charlotte-Concord-Gastonia, NC-SC Metro Area
2773              Charlotte-Concord-Gastonia, NC-SC Metro Area
2774              Charlotte-Concord-Gastonia, NC-SC Metro Area
2775              Charlotte-Concord-Gastonia, NC-SC Metro Area
2776              Charlotte-Concord-Gastonia, NC-SC Metro Area
2777              Charlotte-Concord-Gastonia, NC-SC Metro Area
2778              Charlotte-Concord-Gastonia, NC-SC Metro Area
2779              Charlotte-Concord-Gastonia, NC-SC Metro Area
2780              Charlotte-Concord-Gastonia, NC-SC Metro Area
2781                           Cincinnati, OH-KY-IN Metro Area
2782   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2783   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2784                Dallas-Fort Worth-Arlington, TX Metro Area
2785                Dallas-Fort Worth-Arlington, TX Metro Area
2786                Dallas-Fort Worth-Arlington, TX Metro Area
2787                Dallas-Fort Worth-Arlington, TX Metro Area
2788                Dallas-Fort Worth-Arlington, TX Metro Area
2789                Dallas-Fort Worth-Arlington, TX Metro Area
2790                Dallas-Fort Worth-Arlington, TX Metro Area
2791                Dallas-Fort Worth-Arlington, TX Metro Area
2792                Dallas-Fort Worth-Arlington, TX Metro Area
2793                Dallas-Fort Worth-Arlington, TX Metro Area
2794                Dallas-Fort Worth-Arlington, TX Metro Area
2795                Dallas-Fort Worth-Arlington, TX Metro Area
2796                Dallas-Fort Worth-Arlington, TX Metro Area
2797                Dallas-Fort Worth-Arlington, TX Metro Area
2798                Dallas-Fort Worth-Arlington, TX Metro Area
2799                Dallas-Fort Worth-Arlington, TX Metro Area
2800                Dallas-Fort Worth-Arlington, TX Metro Area
2801                Dallas-Fort Worth-Arlington, TX Metro Area
2802                    Omaha-Council Bluffs, NE-IA Metro Area
2803                          Lexington-Fayette, KY Metro Area
2804                                   Syracuse, NY Metro Area
2805                              Oklahoma City, OK Metro Area
2806                                   Columbia, MO Metro Area
2807                                       Reno, NV Metro Area
2808                                                      <NA>
2809                                   Columbus, OH Metro Area
2810               Indianapolis-Carmel-Anderson, IN Metro Area
2811                               Jacksonville, FL Metro Area
2812                     Scranton--Wilkes-Barre, PA Metro Area
2813                            Gulfport-Biloxi, MS Metro Area
2814         Crestview-Fort Walton Beach-Destin, FL Metro Area
2815                                      Tulsa, OK Metro Area
2816                                     Bangor, ME Metro Area
2817                 Augusta-Richmond County, GA-SC Metro Area
2818             Los Angeles-Long Beach-Anaheim, CA Metro Area
2819              North Port-Sarasota-Bradenton, FL Metro Area
2820                               Grand Island, NE Metro Area
2821                              Memphis, TN-MS-AR Metro Area
2822                      Providence-Warwick, RI-MA Metro Area
2823                                   Columbia, SC Metro Area
2824  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2825                                     Mobile, AL Metro Area
2826                             Kansas City, MO-KS Metro Area
2827                          Steamboat Springs, CO Micro Area
2828                              Memphis, TN-MS-AR Metro Area
2829        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2830        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2831        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2832                                       Reno, NV Metro Area
2833        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2834                 Des Moines-West Des Moines, IA Metro Area
2835        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2836        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2837                                    Madison, WI Metro Area
2838                                   Richmond, VA Metro Area
2839                                       Waco, TX Metro Area
2840             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2841             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2842           Riverside-San Bernardino-Ontario, CA Metro Area
2843        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2844                                    El Paso, TX Metro Area
2845                                   New Bern, NC Metro Area
2846                    San Juan-Bayamón-Caguas, PR Metro Area
2847                      Phoenix-Mesa-Chandler, AZ Metro Area
2848                      Phoenix-Mesa-Chandler, AZ Metro Area
2849                                 Pittsburgh, PA Metro Area
2850                  Baltimore-Columbia-Towson, MD Metro Area
2851                             Grand Junction, CO Metro Area
2852                                  Rochester, NY Metro Area
2853     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2854                 Pensacola-Ferry Pass-Brent, FL Metro Area
2855             Los Angeles-Long Beach-Anaheim, CA Metro Area
2856                      Brownsville-Harlingen, TX Metro Area
2857                    Seattle-Tacoma-Bellevue, WA Metro Area
2858                          Manchester-Nashua, NH Metro Area
2859                                  Asheville, NC Metro Area
2860             San Francisco-Oakland-Berkeley, CA Metro Area
2861           Houston-The Woodlands-Sugar Land, TX Metro Area
2862            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2863                    San Juan-Bayamón-Caguas, PR Metro Area
2864                                   Columbia, SC Metro Area
2865                                  Asheville, NC Metro Area
2866                          Lexington-Fayette, KY Metro Area
2867                               St. Louis, MO-IL Metro Area
2868                                Columbus, GA-AL Metro Area
2869            Tampa-St. Petersburg-Clearwater, FL Metro Area
2870                                     Tucson, AZ Metro Area
2871                                Albuquerque, NM Metro Area
2872                Dallas-Fort Worth-Arlington, TX Metro Area
2873                              Oklahoma City, OK Metro Area
2874                Charleston-North Charleston, SC Metro Area
2875                  Baltimore-Columbia-Towson, MD Metro Area
2876               Indianapolis-Carmel-Anderson, IN Metro Area
2877                                  Ketchikan, AK Micro Area
2878                                  Ketchikan, AK Micro Area
2879                  Orlando-Kissimmee-Sanford, FL Metro Area
2880                         Milwaukee-Waukesha, WI Metro Area
2881            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2882             San Diego-Chula Vista-Carlsbad, CA Metro Area
2883                  San Antonio-New Braunfels, TX Metro Area
2884                    Seattle-Tacoma-Bellevue, WA Metro Area
2885                    Seattle-Tacoma-Bellevue, WA Metro Area
2886                    Seattle-Tacoma-Bellevue, WA Metro Area
2887                    Seattle-Tacoma-Bellevue, WA Metro Area
2888                    Seattle-Tacoma-Bellevue, WA Metro Area
2889                    Seattle-Tacoma-Bellevue, WA Metro Area
2890                    Seattle-Tacoma-Bellevue, WA Metro Area
2891                    Seattle-Tacoma-Bellevue, WA Metro Area
2892                    Seattle-Tacoma-Bellevue, WA Metro Area
2893                    Seattle-Tacoma-Bellevue, WA Metro Area
2894                    Seattle-Tacoma-Bellevue, WA Metro Area
2895                    Seattle-Tacoma-Bellevue, WA Metro Area
2896             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2897          Hartford-East Hartford-Middletown, CT Metro Area
2898          Hartford-East Hartford-Middletown, CT Metro Area
2899          Hartford-East Hartford-Middletown, CT Metro Area
2900                 Boston-Cambridge-Newton, MA-NH Metro Area
2901                 Boston-Cambridge-Newton, MA-NH Metro Area
2902                 Boston-Cambridge-Newton, MA-NH Metro Area
2903                          Aguadilla-Isabela, PR Metro Area
2904                        Buffalo-Cheektowaga, NY Metro Area
2905                Charleston-North Charleston, SC Metro Area
2906                           Cleveland-Elyria, OH Metro Area
2907             San Diego-Chula Vista-Carlsbad, CA Metro Area
2908   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2909          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2910          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2911        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2912        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2913        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2914        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2915        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2916          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2917          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2918           Houston-The Woodlands-Sugar Land, TX Metro Area
2919                               Jacksonville, FL Metro Area
2920                               Jacksonville, FL Metro Area
2921                               Jacksonville, FL Metro Area
2922                               Jacksonville, FL Metro Area
2923          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2924          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2925          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2926          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2927          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2928                  Orlando-Kissimmee-Sanford, FL Metro Area
2929        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2930        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2931        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2932        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2933        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2934                                      Ponce, PR Metro Area
2935                                   Richmond, VA Metro Area
2936                                   Richmond, VA Metro Area
2937                                   Richmond, VA Metro Area
2938                                       Reno, NV Metro Area
2939                      Cape Coral-Fort Myers, FL Metro Area
2940             San Diego-Chula Vista-Carlsbad, CA Metro Area
2941                  San Antonio-New Braunfels, TX Metro Area
2942             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2943                    San Juan-Bayamón-Caguas, PR Metro Area
2944                Burlington-South Burlington, VT Metro Area
2945              North Port-Sarasota-Bradenton, FL Metro Area
2946                              Oklahoma City, OK Metro Area
2947           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2948           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2949           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2950           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2951           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2952           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2953                                   Billings, MT Metro Area
2954                                 Fort Wayne, IN Metro Area
2955                             Urban Honolulu, HI Metro Area
2956                                 Huntsville, AL Metro Area
2957                                                      <NA>
2958   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2959                    Detroit-Warren-Dearborn, MI Metro Area
2960            Davenport-Moline-Rock Island, IA-IL Metro Area
2961        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2962                           Cleveland-Elyria, OH Metro Area
2963                          Lexington-Fayette, KY Metro Area
2964                                     Elmira, NY Metro Area
2965                                Columbus, GA-AL Metro Area
2966                                 Fort Wayne, IN Metro Area
2967                                 Wilmington, NC Metro Area
2968                                     Albany, GA Metro Area
2969             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2970            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2971                      Cape Coral-Fort Myers, FL Metro Area
2972   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2973                               St. Louis, MO-IL Metro Area
2974                             Grand Junction, CO Metro Area
2975                             Salt Lake City, UT Metro Area
2976                                  Rochester, NY Metro Area
2977               Indianapolis-Carmel-Anderson, IN Metro Area
2978                     Denver-Aurora-Lakewood, CO Metro Area
2979                     Denver-Aurora-Lakewood, CO Metro Area
2980                     Denver-Aurora-Lakewood, CO Metro Area
2981                     Denver-Aurora-Lakewood, CO Metro Area
2982          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2983               Las Vegas-Henderson-Paradise, NV Metro Area
2984                  Orlando-Kissimmee-Sanford, FL Metro Area
2985           Riverside-San Bernardino-Ontario, CA Metro Area
2986                      Cape Coral-Fort Myers, FL Metro Area
2987                      Cape Coral-Fort Myers, FL Metro Area
2988                               St. Louis, MO-IL Metro Area
2989            Tampa-St. Petersburg-Clearwater, FL Metro Area
2990                          Trenton-Princeton, NJ Metro Area
2991                          Trenton-Princeton, NJ Metro Area
2992                                  Knoxville, TN Metro Area
2993             Fayetteville-Springdale-Rogers, AR Metro Area
2994                      Grand Rapids-Kentwood, MI Metro Area
2995                      Greensboro-High Point, NC Metro Area
2996   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2997             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2998                          Aguadilla-Isabela, PR Metro Area
2999                               St. Louis, MO-IL Metro Area
3000                                     Mobile, AL Metro Area
3001                          Birmingham-Hoover, AL Metro Area
3002                                     Lawton, OK Metro Area
3003                             Chattanooga, TN-GA Metro Area
3004                               Cedar Rapids, IA Metro Area
3005   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3006                Dallas-Fort Worth-Arlington, TX Metro Area
3007                Dallas-Fort Worth-Arlington, TX Metro Area
3008                Dallas-Fort Worth-Arlington, TX Metro Area
3009                Dallas-Fort Worth-Arlington, TX Metro Area
3010                Dallas-Fort Worth-Arlington, TX Metro Area
3011                Dallas-Fort Worth-Arlington, TX Metro Area
3012                Dallas-Fort Worth-Arlington, TX Metro Area
3013                      Grand Rapids-Kentwood, MI Metro Area
3014        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3015        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3016        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3017             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3018             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3019             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3020             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3021              Charlotte-Concord-Gastonia, NC-SC Metro Area
3022                                   Savannah, GA Metro Area
3023                                  Knoxville, TN Metro Area
3024                    Atlantic City-Hammonton, NJ Metro Area
3025                                      Akron, OH Metro Area
3026                           Cleveland-Elyria, OH Metro Area
3027               Las Vegas-Henderson-Paradise, NV Metro Area
3028             Los Angeles-Long Beach-Anaheim, CA Metro Area
3029                         Milwaukee-Waukesha, WI Metro Area
3030             Louisville/Jefferson County, KY-IN Metro Area
3031                 Augusta-Richmond County, GA-SC Metro Area
3032                           Cleveland-Elyria, OH Metro Area
3033              Charlotte-Concord-Gastonia, NC-SC Metro Area
3034              Charlotte-Concord-Gastonia, NC-SC Metro Area
3035              Charlotte-Concord-Gastonia, NC-SC Metro Area
3036              Charlotte-Concord-Gastonia, NC-SC Metro Area
3037                           Cincinnati, OH-KY-IN Metro Area
3038   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3039   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3040   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3041   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3042   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3043   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3044                 Des Moines-West Des Moines, IA Metro Area
3045                          Birmingham-Hoover, AL Metro Area
3046                                Panama City, FL Metro Area
3047                                Gainesville, FL Metro Area
3048                      Grand Rapids-Kentwood, MI Metro Area
3049                                       Erie, PA Metro Area
3050               Indianapolis-Carmel-Anderson, IN Metro Area
3051    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3052                    South Bend-Mishawaka, IN-MI Metro Area
3053               Austin-Round Rock-Georgetown, TX Metro Area
3054                                Bakersfield, CA Metro Area
3055                   Prescott Valley-Prescott, AZ Metro Area
3056                        Santa Rosa-Petaluma, CA Metro Area
3057                     Denver-Aurora-Lakewood, CO Metro Area
3058                     Denver-Aurora-Lakewood, CO Metro Area
3059                     Denver-Aurora-Lakewood, CO Metro Area
3060                Dallas-Fort Worth-Arlington, TX Metro Area
3061                Dallas-Fort Worth-Arlington, TX Metro Area
3062                    Detroit-Warren-Dearborn, MI Metro Area
3063                                 Fort Wayne, IN Metro Area
3064                                     Juneau, AK Micro Area
3065                                      Hobbs, NM Micro Area
3066                                Idaho Falls, ID Metro Area
3067             Los Angeles-Long Beach-Anaheim, CA Metro Area
3068             Los Angeles-Long Beach-Anaheim, CA Metro Area
3069             Los Angeles-Long Beach-Anaheim, CA Metro Area
3070                                 Alexandria, LA Metro Area
3071                                   Victoria, TX Metro Area
3072        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3073             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3074                    Portland-South Portland, ME Metro Area
3075                                   Santa Fe, NM Metro Area
3076                                   Savannah, GA Metro Area
3077                                    Roanoke, VA Metro Area
3078                    Seattle-Tacoma-Bellevue, WA Metro Area
3079             San Francisco-Oakland-Berkeley, CA Metro Area
3080             San Francisco-Oakland-Berkeley, CA Metro Area
3081             San Francisco-Oakland-Berkeley, CA Metro Area
3082             San Francisco-Oakland-Berkeley, CA Metro Area
3083                             Salt Lake City, UT Metro Area
3084                         Eugene-Springfield, OR Metro Area
3085     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3086                                Walla Walla, WA Metro Area
3087                                  Anchorage, AK Metro Area
3088             Los Angeles-Long Beach-Anaheim, CA Metro Area
3089                                    Salinas, CA Metro Area
3090                    Seattle-Tacoma-Bellevue, WA Metro Area
3091                    Seattle-Tacoma-Bellevue, WA Metro Area
3092               Austin-Round Rock-Georgetown, TX Metro Area
3093                             Urban Honolulu, HI Metro Area
3094                                   Sikeston, MO Micro Area
3095                                      Tulsa, OK Metro Area
3096                    San Juan-Bayamón-Caguas, PR Metro Area
3097                                   Columbus, OH Metro Area
3098                     Denver-Aurora-Lakewood, CO Metro Area
3099                     Denver-Aurora-Lakewood, CO Metro Area
3100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3101                                     Fresno, CA Metro Area
3102   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3103   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3104           Houston-The Woodlands-Sugar Land, TX Metro Area
3105           Houston-The Woodlands-Sugar Land, TX Metro Area
3106           Houston-The Woodlands-Sugar Land, TX Metro Area
3107           Houston-The Woodlands-Sugar Land, TX Metro Area
3108           Houston-The Woodlands-Sugar Land, TX Metro Area
3109           Houston-The Woodlands-Sugar Land, TX Metro Area
3110            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3111                                    Redding, CA Metro Area
3112             Los Angeles-Long Beach-Anaheim, CA Metro Area
3113             Los Angeles-Long Beach-Anaheim, CA Metro Area
3114                                                      <NA>
3115                    San Juan-Bayamón-Caguas, PR Metro Area
3116    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3117                                     Salina, KS Micro Area
3118              North Port-Sarasota-Bradenton, FL Metro Area
3119                             Corpus Christi, TX Metro Area
3120                                    Liberal, KS Micro Area
3121                                Albuquerque, NM Metro Area
3122                                Albuquerque, NM Metro Area
3123               Austin-Round Rock-Georgetown, TX Metro Area
3124               Austin-Round Rock-Georgetown, TX Metro Area
3125                          Birmingham-Hoover, AL Metro Area
3126 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3127 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3128 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3129                      Phoenix-Mesa-Chandler, AZ Metro Area
3130                        Buffalo-Cheektowaga, NY Metro Area
3131                  Baltimore-Columbia-Towson, MD Metro Area
3132                  Baltimore-Columbia-Towson, MD Metro Area
3133                  Baltimore-Columbia-Towson, MD Metro Area
3134                  Baltimore-Columbia-Towson, MD Metro Area
3135                  Baltimore-Columbia-Towson, MD Metro Area
3136                  Baltimore-Columbia-Towson, MD Metro Area
3137                  Baltimore-Columbia-Towson, MD Metro Area
3138                  Baltimore-Columbia-Towson, MD Metro Area
3139                  Baltimore-Columbia-Towson, MD Metro Area
3140                  Baltimore-Columbia-Towson, MD Metro Area
3141                Charleston-North Charleston, SC Metro Area
3142                                   Columbus, OH Metro Area
3143                                   Columbus, OH Metro Area
3144                Dallas-Fort Worth-Arlington, TX Metro Area
3145                Dallas-Fort Worth-Arlington, TX Metro Area
3146                Dallas-Fort Worth-Arlington, TX Metro Area
3147                Dallas-Fort Worth-Arlington, TX Metro Area
3148                Dallas-Fort Worth-Arlington, TX Metro Area
3149                Dallas-Fort Worth-Arlington, TX Metro Area
3150                Dallas-Fort Worth-Arlington, TX Metro Area
3151                Dallas-Fort Worth-Arlington, TX Metro Area
3152   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3153   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3154                     Denver-Aurora-Lakewood, CO Metro Area
3155                     Denver-Aurora-Lakewood, CO Metro Area
3156        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3157           Houston-The Woodlands-Sugar Land, TX Metro Area
3158           Houston-The Woodlands-Sugar Land, TX Metro Area
3159           Houston-The Woodlands-Sugar Land, TX Metro Area
3160           Houston-The Woodlands-Sugar Land, TX Metro Area
3161          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3162               Las Vegas-Henderson-Paradise, NV Metro Area
3163               Las Vegas-Henderson-Paradise, NV Metro Area
3164                                    Lubbock, TX Metro Area
3165                                    Lubbock, TX Metro Area
3166             Los Angeles-Long Beach-Anaheim, CA Metro Area
3167       Little Rock-North Little Rock-Conway, AR Metro Area
3168                                    Midland, TX Metro Area
3169                             Kansas City, MO-KS Metro Area
3170                             Kansas City, MO-KS Metro Area
3171                  Orlando-Kissimmee-Sanford, FL Metro Area
3172                  Orlando-Kissimmee-Sanford, FL Metro Area
3173                  Orlando-Kissimmee-Sanford, FL Metro Area
3174             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3175             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3176             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3177             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3178             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3179             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3180             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3181                              Memphis, TN-MS-AR Metro Area
3182                         Milwaukee-Waukesha, WI Metro Area
3183  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3184             San Francisco-Oakland-Berkeley, CA Metro Area
3185             San Francisco-Oakland-Berkeley, CA Metro Area
3186                    Omaha-Council Bluffs, NE-IA Metro Area
3187                    Omaha-Council Bluffs, NE-IA Metro Area
3188                      Phoenix-Mesa-Chandler, AZ Metro Area
3189                      Phoenix-Mesa-Chandler, AZ Metro Area
3190                      Phoenix-Mesa-Chandler, AZ Metro Area
3191                                 Pittsburgh, PA Metro Area
3192           Riverside-San Bernardino-Ontario, CA Metro Area
3193                      Providence-Warwick, RI-MA Metro Area
3194                      Providence-Warwick, RI-MA Metro Area
3195                               Raleigh-Cary, NC Metro Area
3196                                       Reno, NV Metro Area
3197                                       Reno, NV Metro Area
3198                                  Rochester, NY Metro Area
3199                      Cape Coral-Fort Myers, FL Metro Area
3200             San Diego-Chula Vista-Carlsbad, CA Metro Area
3201             San Diego-Chula Vista-Carlsbad, CA Metro Area
3202                  San Antonio-New Braunfels, TX Metro Area
3203                  San Antonio-New Braunfels, TX Metro Area
3204                                   Savannah, GA Metro Area
3205             Louisville/Jefferson County, KY-IN Metro Area
3206                Sacramento-Roseville-Folsom, CA Metro Area
3207                               St. Louis, MO-IL Metro Area
3208                               St. Louis, MO-IL Metro Area
3209                               St. Louis, MO-IL Metro Area
3210                               St. Louis, MO-IL Metro Area
3211            Tampa-St. Petersburg-Clearwater, FL Metro Area
3212            Tampa-St. Petersburg-Clearwater, FL Metro Area
3213            Tampa-St. Petersburg-Clearwater, FL Metro Area
3214                                      Tulsa, OK Metro Area
3215                                      Tulsa, OK Metro Area
3216                                   Savannah, GA Metro Area
3217              Charlotte-Concord-Gastonia, NC-SC Metro Area
3218                Dallas-Fort Worth-Arlington, TX Metro Area
3219                Dallas-Fort Worth-Arlington, TX Metro Area
3220                                       Yuma, AZ Metro Area
3221                      Phoenix-Mesa-Chandler, AZ Metro Area
3222                      Phoenix-Mesa-Chandler, AZ Metro Area
3223                                   Richmond, VA Metro Area
3224          Hartford-East Hartford-Middletown, CT Metro Area
3225                 Boston-Cambridge-Newton, MA-NH Metro Area
3226   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3227   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3228          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3229          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3230   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3231   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3232                                   Columbus, OH Metro Area
3233          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3234          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3235          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3236             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3237             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3238             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3239    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3240                                      Akron, OH Metro Area
3241              North Port-Sarasota-Bradenton, FL Metro Area
3242                                  Asheville, NC Metro Area
3243            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3244                                     Fresno, CA Metro Area
3245                                   Columbia, SC Metro Area
3246                              Wausau-Weston, WI Metro Area
3247           Houston-The Woodlands-Sugar Land, TX Metro Area
3248                                       Erie, PA Metro Area
3249   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3250                         Milwaukee-Waukesha, WI Metro Area
3251             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3252                              State College, PA Metro Area
3253                     Scranton--Wilkes-Barre, PA Metro Area
3254                           Cincinnati, OH-KY-IN Metro Area
3255        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3256        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3257                 Boston-Cambridge-Newton, MA-NH Metro Area
3258              Charlotte-Concord-Gastonia, NC-SC Metro Area
3259                      Grand Rapids-Kentwood, MI Metro Area
3260    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3261    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3262                                  Rochester, NY Metro Area
3263                                Spartanburg, SC Metro Area
3264                       New Orleans-Metairie, LA Metro Area
3265           Houston-The Woodlands-Sugar Land, TX Metro Area
3266                                   Santa Fe, NM Metro Area
3267          Hartford-East Hartford-Middletown, CT Metro Area
3268              Charlotte-Concord-Gastonia, NC-SC Metro Area
3269                Dallas-Fort Worth-Arlington, TX Metro Area
3270                Dallas-Fort Worth-Arlington, TX Metro Area
3271                                 Montgomery, AL Metro Area
3272    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3273                                       Hilo, HI Micro Area
3274             Los Angeles-Long Beach-Anaheim, CA Metro Area
3275                               Salisbury, MD-DE Metro Area
3276                                 San Angelo, TX Metro Area
3277                                  Marquette, MI Micro Area
3278                      Phoenix-Mesa-Chandler, AZ Metro Area
3279                       Beaumont-Port Arthur, TX Metro Area
3280                                  Anchorage, AK Metro Area
3281                                  Anchorage, AK Metro Area
3282                                  Anchorage, AK Metro Area
3283                    Seattle-Tacoma-Bellevue, WA Metro Area
3284                                                      <NA>
3285                                                      <NA>
3286          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3287          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3288                      Providence-Warwick, RI-MA Metro Area
3289                  San Antonio-New Braunfels, TX Metro Area
3290           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3291           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3292           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3293           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3294           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3295           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3296                                Gainesville, FL Metro Area
3297                                  Anchorage, AK Metro Area
3298                    Shreveport-Bossier City, LA Metro Area
3299                                    Bozeman, MT Micro Area
3300                               St. Louis, MO-IL Metro Area
3301   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3302                Dallas-Fort Worth-Arlington, TX Metro Area
3303                Dallas-Fort Worth-Arlington, TX Metro Area
3304                                    Salinas, CA Metro Area
3305              Charlotte-Concord-Gastonia, NC-SC Metro Area
3306              Charlotte-Concord-Gastonia, NC-SC Metro Area
3307   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3308   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3309                               Salisbury, MD-DE Metro Area
3310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3311                     Denver-Aurora-Lakewood, CO Metro Area
3312                                    Lubbock, TX Metro Area
3313             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3314                  San Antonio-New Braunfels, TX Metro Area
3315             San Francisco-Oakland-Berkeley, CA Metro Area
3316          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3317          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3318           Houston-The Woodlands-Sugar Land, TX Metro Area
3319                             Urban Honolulu, HI Metro Area
3320             San Diego-Chula Vista-Carlsbad, CA Metro Area
3321                                      Minot, ND Micro Area
3322             San Francisco-Oakland-Berkeley, CA Metro Area
3323                  Baltimore-Columbia-Towson, MD Metro Area
3324   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3325                         Eugene-Springfield, OR Metro Area
3326                     Spokane-Spokane Valley, WA Metro Area
3327             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3328                    Omaha-Council Bluffs, NE-IA Metro Area
3329             Los Angeles-Long Beach-Anaheim, CA Metro Area
3330             San Diego-Chula Vista-Carlsbad, CA Metro Area
3331             San Diego-Chula Vista-Carlsbad, CA Metro Area
3332             Los Angeles-Long Beach-Anaheim, CA Metro Area
3333                               St. Louis, MO-IL Metro Area
3334            Tampa-St. Petersburg-Clearwater, FL Metro Area
3335                Charleston-North Charleston, SC Metro Area
3336                Dallas-Fort Worth-Arlington, TX Metro Area
3337                Dallas-Fort Worth-Arlington, TX Metro Area
3338                Dallas-Fort Worth-Arlington, TX Metro Area
3339           Houston-The Woodlands-Sugar Land, TX Metro Area
3340           Houston-The Woodlands-Sugar Land, TX Metro Area
3341           Houston-The Woodlands-Sugar Land, TX Metro Area
3342                                 Rapid City, SD Metro Area
3343              Charlotte-Concord-Gastonia, NC-SC Metro Area
3344              Charlotte-Concord-Gastonia, NC-SC Metro Area
3345          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3346     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3347    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3348        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3349    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3350    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3351                     Denver-Aurora-Lakewood, CO Metro Area
3352                     Denver-Aurora-Lakewood, CO Metro Area
3353                    Shreveport-Bossier City, LA Metro Area
3354    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3355             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3356           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3357   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3358                Dallas-Fort Worth-Arlington, TX Metro Area
3359                Dallas-Fort Worth-Arlington, TX Metro Area
3360                                     Peoria, IL Metro Area
3361                San Luis Obispo-Paso Robles, CA Metro Area
3362                      College Station-Bryan, TX Metro Area
3363        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3364    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3365                           Champaign-Urbana, IL Metro Area
3366           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3367           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3368                  Baltimore-Columbia-Towson, MD Metro Area
3369                    Detroit-Warren-Dearborn, MI Metro Area
3370             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3371                                Bakersfield, CA Metro Area
3372                Dallas-Fort Worth-Arlington, TX Metro Area
3373        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3374   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3375   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3376                     Denver-Aurora-Lakewood, CO Metro Area
3377                                                      <NA>
3378             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3379                         Kennewick-Richland, WA Metro Area
3380             San Francisco-Oakland-Berkeley, CA Metro Area
3381                                       Reno, NV Metro Area
3382                     Denver-Aurora-Lakewood, CO Metro Area
3383          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3384          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3385           Houston-The Woodlands-Sugar Land, TX Metro Area
3386               Indianapolis-Carmel-Anderson, IN Metro Area
3387             San Francisco-Oakland-Berkeley, CA Metro Area
3388                      Cape Coral-Fort Myers, FL Metro Area
3389               Las Vegas-Henderson-Paradise, NV Metro Area
3390                                   Amarillo, TX Metro Area
3391                Dallas-Fort Worth-Arlington, TX Metro Area
3392                Dallas-Fort Worth-Arlington, TX Metro Area
3393           Houston-The Woodlands-Sugar Land, TX Metro Area
3394                             Kansas City, MO-KS Metro Area
3395                             Salt Lake City, UT Metro Area
3396             Louisville/Jefferson County, KY-IN Metro Area
3397           Houston-The Woodlands-Sugar Land, TX Metro Area
3398              Charlotte-Concord-Gastonia, NC-SC Metro Area
3399           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3400                Dallas-Fort Worth-Arlington, TX Metro Area
3401          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3402           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3403                                Bloomington, IL Metro Area
3404                               Cedar Rapids, IA Metro Area
3405                    Detroit-Warren-Dearborn, MI Metro Area
3406          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3407                              Memphis, TN-MS-AR Metro Area
3408            Davenport-Moline-Rock Island, IA-IL Metro Area
3409                             Urban Honolulu, HI Metro Area
3410                    South Bend-Mishawaka, IN-MI Metro Area
3411               Austin-Round Rock-Georgetown, TX Metro Area
3412                                Spartanburg, SC Metro Area
3413                                    Durango, CO Micro Area
3414              Charlotte-Concord-Gastonia, NC-SC Metro Area
3415              Charlotte-Concord-Gastonia, NC-SC Metro Area
3416              Charlotte-Concord-Gastonia, NC-SC Metro Area
3417              Charlotte-Concord-Gastonia, NC-SC Metro Area
3418              Charlotte-Concord-Gastonia, NC-SC Metro Area
3419              Charlotte-Concord-Gastonia, NC-SC Metro Area
3420              Charlotte-Concord-Gastonia, NC-SC Metro Area
3421                Dallas-Fort Worth-Arlington, TX Metro Area
3422                Dallas-Fort Worth-Arlington, TX Metro Area
3423                Dallas-Fort Worth-Arlington, TX Metro Area
3424                Dallas-Fort Worth-Arlington, TX Metro Area
3425                Dallas-Fort Worth-Arlington, TX Metro Area
3426                                 Jackson, WY-ID Micro Area
3427                                Springfield, MO Metro Area
3428                                    Abilene, TX Metro Area
3429                    San Juan-Bayamón-Caguas, PR Metro Area
3430        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3431                                   Bismarck, ND Metro Area
3432                      Grand Rapids-Kentwood, MI Metro Area
3433                  Santa Maria-Santa Barbara, CA Metro Area
3434                                 Bellingham, WA Metro Area
3435                      Phoenix-Mesa-Chandler, AZ Metro Area
3436                Burlington-South Burlington, VT Metro Area
3437                  San Antonio-New Braunfels, TX Metro Area
3438                              Wichita Falls, TX Metro Area
3439             Los Angeles-Long Beach-Anaheim, CA Metro Area
3440                                 Pittsburgh, PA Metro Area
3441             Los Angeles-Long Beach-Anaheim, CA Metro Area
3442                Dallas-Fort Worth-Arlington, TX Metro Area
3443                      Phoenix-Mesa-Chandler, AZ Metro Area
3444           Riverside-San Bernardino-Ontario, CA Metro Area
3445            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3446            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3447            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3448            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3449                San Luis Obispo-Paso Robles, CA Metro Area
3450             San Diego-Chula Vista-Carlsbad, CA Metro Area
3451                    Seattle-Tacoma-Bellevue, WA Metro Area
3452                    Seattle-Tacoma-Bellevue, WA Metro Area
3453                    Seattle-Tacoma-Bellevue, WA Metro Area
3454                    Seattle-Tacoma-Bellevue, WA Metro Area
3455                    Seattle-Tacoma-Bellevue, WA Metro Area
3456                                                      <NA>
3457                                                      <NA>
3458             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3459             Los Angeles-Long Beach-Anaheim, CA Metro Area
3460          Hartford-East Hartford-Middletown, CT Metro Area
3461                 Boston-Cambridge-Newton, MA-NH Metro Area
3462                 Boston-Cambridge-Newton, MA-NH Metro Area
3463          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3464             Los Angeles-Long Beach-Anaheim, CA Metro Area
3465             Los Angeles-Long Beach-Anaheim, CA Metro Area
3466          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3467                    San Juan-Bayamón-Caguas, PR Metro Area
3468           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3469           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3470                             Grand Forks, ND-MN Metro Area
3471           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3472                                    Wichita, KS Metro Area
3473                 Boston-Cambridge-Newton, MA-NH Metro Area
3474                                    Bozeman, MT Micro Area
3475                                 Boise City, ID Metro Area
3476                                Tallahassee, FL Metro Area
3477                                   Columbia, SC Metro Area
3478                                      Minot, ND Micro Area
3479                                Lewiston, ID-WA Metro Area
3480                                    Medford, OR Metro Area
3481             Los Angeles-Long Beach-Anaheim, CA Metro Area
3482                             Kansas City, MO-KS Metro Area
3483                              Memphis, TN-MS-AR Metro Area
3484                                   Missoula, MT Metro Area
3485                           Glenwood Springs, CO Micro Area
3486        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3487            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3488                                      Tulsa, OK Metro Area
3489                                     Mobile, AL Metro Area
3490                              Traverse City, MI Micro Area
3491                           Dayton-Kettering, OH Metro Area
3492                Dallas-Fort Worth-Arlington, TX Metro Area
3493                Dallas-Fort Worth-Arlington, TX Metro Area
3494                Dallas-Fort Worth-Arlington, TX Metro Area
3495                Dallas-Fort Worth-Arlington, TX Metro Area
3496                                Gainesville, FL Metro Area
3497        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3498                                 Charleston, WV Metro Area
3499              Charlotte-Concord-Gastonia, NC-SC Metro Area
3500   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3501                                    Madison, WI Metro Area
3502     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3503    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3504                                   Bismarck, ND Metro Area
3505                                   Brainerd, MN Micro Area
3506                     Denver-Aurora-Lakewood, CO Metro Area
3507                     Denver-Aurora-Lakewood, CO Metro Area
3508                     Denver-Aurora-Lakewood, CO Metro Area
3509                     Denver-Aurora-Lakewood, CO Metro Area
3510                Dallas-Fort Worth-Arlington, TX Metro Area
3511                Dallas-Fort Worth-Arlington, TX Metro Area
3512                Dallas-Fort Worth-Arlington, TX Metro Area
3513   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3514                                   Appleton, WI Metro Area
3515                                  Marquette, MI Micro Area
3516        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3517        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3518                    Omaha-Council Bluffs, NE-IA Metro Area
3519             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3520             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3521            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3522            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3523                      Phoenix-Mesa-Chandler, AZ Metro Area
3524                      Phoenix-Mesa-Chandler, AZ Metro Area
3525                     Spokane-Spokane Valley, WA Metro Area
3526   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3527             San Diego-Chula Vista-Carlsbad, CA Metro Area
3528                San Luis Obispo-Paso Robles, CA Metro Area
3529                             Salt Lake City, UT Metro Area
3530                             Salt Lake City, UT Metro Area
3531                             Salt Lake City, UT Metro Area
3532                             Salt Lake City, UT Metro Area
3533                             Salt Lake City, UT Metro Area
3534                    Seattle-Tacoma-Bellevue, WA Metro Area
3535                                    Pullman, WA Micro Area
3536                  Santa Maria-Santa Barbara, CA Metro Area
3537                    Seattle-Tacoma-Bellevue, WA Metro Area
3538                    Seattle-Tacoma-Bellevue, WA Metro Area
3539                     Denver-Aurora-Lakewood, CO Metro Area
3540   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3541   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3542           Houston-The Woodlands-Sugar Land, TX Metro Area
3543                                  Knoxville, TN Metro Area
3544                                                      <NA>
3545                                   Syracuse, NY Metro Area
3546             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3547                                    Jackson, MS Metro Area
3548                                       Reno, NV Metro Area
3549             San Francisco-Oakland-Berkeley, CA Metro Area
3550             San Francisco-Oakland-Berkeley, CA Metro Area
3551             Los Angeles-Long Beach-Anaheim, CA Metro Area
3552                                 Charleston, WV Metro Area
3553                             Grand Junction, CO Metro Area
3554                Dallas-Fort Worth-Arlington, TX Metro Area
3555                     Denver-Aurora-Lakewood, CO Metro Area
3556        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3557                      Grand Rapids-Kentwood, MI Metro Area
3558           Houston-The Woodlands-Sugar Land, TX Metro Area
3559               Las Vegas-Henderson-Paradise, NV Metro Area
3560                      Phoenix-Mesa-Chandler, AZ Metro Area
3561                                 Pittsburgh, PA Metro Area
3562                Sacramento-Roseville-Folsom, CA Metro Area
3563                               St. Louis, MO-IL Metro Area
3564                               St. Louis, MO-IL Metro Area
3565                Sacramento-Roseville-Folsom, CA Metro Area
3566   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3567           Houston-The Woodlands-Sugar Land, TX Metro Area
3568           Houston-The Woodlands-Sugar Land, TX Metro Area
3569                  Santa Maria-Santa Barbara, CA Metro Area
3570              Charlotte-Concord-Gastonia, NC-SC Metro Area
3571                      Grand Rapids-Kentwood, MI Metro Area
3572    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3573             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3574                           Dayton-Kettering, OH Metro Area
3575    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3576                     Denver-Aurora-Lakewood, CO Metro Area
3577                                 Boise City, ID Metro Area
3578           Houston-The Woodlands-Sugar Land, TX Metro Area
3579                         Eugene-Springfield, OR Metro Area
3580           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3581           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3582                 Des Moines-West Des Moines, IA Metro Area
3583                    Detroit-Warren-Dearborn, MI Metro Area
3584          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3585          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3586        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3587        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3588                                  Knoxville, TN Metro Area
3589                                Springfield, MO Metro Area
3590                                    Bozeman, MT Micro Area
3591                San Luis Obispo-Paso Robles, CA Metro Area
3592              Charlotte-Concord-Gastonia, NC-SC Metro Area
3593                                   Missoula, MT Metro Area
3594                                Panama City, FL Metro Area
3595                Dallas-Fort Worth-Arlington, TX Metro Area
3596                Dallas-Fort Worth-Arlington, TX Metro Area
3597                Dallas-Fort Worth-Arlington, TX Metro Area
3598                 Des Moines-West Des Moines, IA Metro Area
3599                         Eugene-Springfield, OR Metro Area
3600                        Buffalo-Cheektowaga, NY Metro Area
3601                                    Edwards, CO Micro Area
3602                      Phoenix-Mesa-Chandler, AZ Metro Area
3603                                Bloomington, IL Metro Area
3604                                   Key West, FL Micro Area
3605                                                      <NA>
3606                                  Anchorage, AK Metro Area
3607                                 Boise City, ID Metro Area
3608                Dallas-Fort Worth-Arlington, TX Metro Area
3609                             Urban Honolulu, HI Metro Area
3610             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3611            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3612            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3613            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3614             San Diego-Chula Vista-Carlsbad, CA Metro Area
3615                    Seattle-Tacoma-Bellevue, WA Metro Area
3616                                     Tucson, AZ Metro Area
3617                 Boston-Cambridge-Newton, MA-NH Metro Area
3618          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3619           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3620           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3621                    South Bend-Mishawaka, IN-MI Metro Area
3622        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3623                                   Columbus, MS Micro Area
3624                             Salt Lake City, UT Metro Area
3625                Dallas-Fort Worth-Arlington, TX Metro Area
3626                Dallas-Fort Worth-Arlington, TX Metro Area
3627                Dallas-Fort Worth-Arlington, TX Metro Area
3628                Dallas-Fort Worth-Arlington, TX Metro Area
3629                  San Antonio-New Braunfels, TX Metro Area
3630       Little Rock-North Little Rock-Conway, AR Metro Area
3631        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3632  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3633                          Aguadilla-Isabela, PR Metro Area
3634                                   Columbia, SC Metro Area
3635              Charlotte-Concord-Gastonia, NC-SC Metro Area
3636   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3637                                Sioux Falls, SD Metro Area
3638                          Manchester-Nashua, NH Metro Area
3639    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3640                                Albuquerque, NM Metro Area
3641                                   Billings, MT Metro Area
3642                Dallas-Fort Worth-Arlington, TX Metro Area
3643                Dallas-Fort Worth-Arlington, TX Metro Area
3644                    Detroit-Warren-Dearborn, MI Metro Area
3645                    Detroit-Warren-Dearborn, MI Metro Area
3646                     Spokane-Spokane Valley, WA Metro Area
3647        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3648             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3649                                    Edwards, CO Micro Area
3650             San Francisco-Oakland-Berkeley, CA Metro Area
3651             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3652                             Salt Lake City, UT Metro Area
3653                             Salt Lake City, UT Metro Area
3654                             Salt Lake City, UT Metro Area
3655               Las Vegas-Henderson-Paradise, NV Metro Area
3656             San Diego-Chula Vista-Carlsbad, CA Metro Area
3657                    Seattle-Tacoma-Bellevue, WA Metro Area
3658                     Denver-Aurora-Lakewood, CO Metro Area
3659                Hilton Head Island-Bluffton, SC Metro Area
3660             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3661                 Pensacola-Ferry Pass-Brent, FL Metro Area
3662                                     Helena, MT Micro Area
3663                                   Key West, FL Micro Area
3664                  San Antonio-New Braunfels, TX Metro Area
3665                            Gulfport-Biloxi, MS Metro Area
3666             Los Angeles-Long Beach-Anaheim, CA Metro Area
3667   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3668          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3669                  Orlando-Kissimmee-Sanford, FL Metro Area
3670             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3671             San Francisco-Oakland-Berkeley, CA Metro Area
3672             San Francisco-Oakland-Berkeley, CA Metro Area
3673             San Francisco-Oakland-Berkeley, CA Metro Area
3674                      Phoenix-Mesa-Chandler, AZ Metro Area
3675                                    Wichita, KS Metro Area
3676              Charlotte-Concord-Gastonia, NC-SC Metro Area
3677                Sacramento-Roseville-Folsom, CA Metro Area
3678                               St. Louis, MO-IL Metro Area
3679                Dallas-Fort Worth-Arlington, TX Metro Area
3680                                   Fargo, ND-MN Metro Area
3681                                Sioux Falls, SD Metro Area
3682           Houston-The Woodlands-Sugar Land, TX Metro Area
3683           Houston-The Woodlands-Sugar Land, TX Metro Area
3684            Davenport-Moline-Rock Island, IA-IL Metro Area
3685                               Raleigh-Cary, NC Metro Area
3686   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3687   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3688          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3689                              Memphis, TN-MS-AR Metro Area
3690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3691             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3692              Charlotte-Concord-Gastonia, NC-SC Metro Area
3693              Charlotte-Concord-Gastonia, NC-SC Metro Area
3694    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3695    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3696           Houston-The Woodlands-Sugar Land, TX Metro Area
3697                                     Mobile, AL Metro Area
3698           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3699                    Detroit-Warren-Dearborn, MI Metro Area
3700                                  Anchorage, AK Metro Area
3701                                     Bangor, ME Metro Area
3702              Charlotte-Concord-Gastonia, NC-SC Metro Area
3703        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3704                                    Lubbock, TX Metro Area
3705                Dallas-Fort Worth-Arlington, TX Metro Area
3706                Dallas-Fort Worth-Arlington, TX Metro Area
3707                Dallas-Fort Worth-Arlington, TX Metro Area
3708                Dallas-Fort Worth-Arlington, TX Metro Area
3709                Dallas-Fort Worth-Arlington, TX Metro Area
3710                Dallas-Fort Worth-Arlington, TX Metro Area
3711                Dallas-Fort Worth-Arlington, TX Metro Area
3712                Dallas-Fort Worth-Arlington, TX Metro Area
3713                Dallas-Fort Worth-Arlington, TX Metro Area
3714                         Milwaukee-Waukesha, WI Metro Area
3715          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3716          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3717                        Buffalo-Cheektowaga, NY Metro Area
3718                          Steamboat Springs, CO Micro Area
3719        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3720     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3721                                   Savannah, GA Metro Area
3722                    San Juan-Bayamón-Caguas, PR Metro Area
3723                                Springfield, MO Metro Area
3724                             Salt Lake City, UT Metro Area
3725                                  Anchorage, AK Metro Area
3726                                                      <NA>
3727                                                      <NA>
3728          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3729               Las Vegas-Henderson-Paradise, NV Metro Area
3730                    San Juan-Bayamón-Caguas, PR Metro Area
3731            Tampa-St. Petersburg-Clearwater, FL Metro Area
3732           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3733                              Memphis, TN-MS-AR Metro Area
3734          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3735                Dallas-Fort Worth-Arlington, TX Metro Area
3736                Dallas-Fort Worth-Arlington, TX Metro Area
3737        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3738                              Oklahoma City, OK Metro Area
3739                         Milwaukee-Waukesha, WI Metro Area
3740                               Cedar Rapids, IA Metro Area
3741              Charlotte-Concord-Gastonia, NC-SC Metro Area
3742              Charlotte-Concord-Gastonia, NC-SC Metro Area
3743   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3744   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3745                              Memphis, TN-MS-AR Metro Area
3746                    Albany-Schenectady-Troy, NY Metro Area
3747                Dallas-Fort Worth-Arlington, TX Metro Area
3748           Houston-The Woodlands-Sugar Land, TX Metro Area
3749             Los Angeles-Long Beach-Anaheim, CA Metro Area
3750                                Lewiston, ID-WA Metro Area
3751             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3752             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3753             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3754                      Phoenix-Mesa-Chandler, AZ Metro Area
3755                San Luis Obispo-Paso Robles, CA Metro Area
3756             San Francisco-Oakland-Berkeley, CA Metro Area
3757                             Salt Lake City, UT Metro Area
3758                                                      <NA>
3759                                 Huntsville, AL Metro Area
3760                      Brownsville-Harlingen, TX Metro Area
3761   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3762           Houston-The Woodlands-Sugar Land, TX Metro Area
3763             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3764             San Francisco-Oakland-Berkeley, CA Metro Area
3765                                Albuquerque, NM Metro Area
3766 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3767 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3768                  Baltimore-Columbia-Towson, MD Metro Area
3769                  Baltimore-Columbia-Towson, MD Metro Area
3770                     Denver-Aurora-Lakewood, CO Metro Area
3771                               Jacksonville, FL Metro Area
3772                          Steamboat Springs, CO Micro Area
3773           Houston-The Woodlands-Sugar Land, TX Metro Area
3774               Las Vegas-Henderson-Paradise, NV Metro Area
3775               Las Vegas-Henderson-Paradise, NV Metro Area
3776               Las Vegas-Henderson-Paradise, NV Metro Area
3777               Las Vegas-Henderson-Paradise, NV Metro Area
3778               Las Vegas-Henderson-Paradise, NV Metro Area
3779       Little Rock-North Little Rock-Conway, AR Metro Area
3780                  Orlando-Kissimmee-Sanford, FL Metro Area
3781             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3782                          Manchester-Nashua, NH Metro Area
3783                          Manchester-Nashua, NH Metro Area
3784                         Milwaukee-Waukesha, WI Metro Area
3785            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3786            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3787                      Phoenix-Mesa-Chandler, AZ Metro Area
3788                      Phoenix-Mesa-Chandler, AZ Metro Area
3789                  San Antonio-New Braunfels, TX Metro Area
3790             Louisville/Jefferson County, KY-IN Metro Area
3791                Sacramento-Roseville-Folsom, CA Metro Area
3792                Sacramento-Roseville-Folsom, CA Metro Area
3793                               St. Louis, MO-IL Metro Area
3794                Dallas-Fort Worth-Arlington, TX Metro Area
3795                Dallas-Fort Worth-Arlington, TX Metro Area
3796                    Detroit-Warren-Dearborn, MI Metro Area
3797                                 Huntsville, AL Metro Area
3798                      Phoenix-Mesa-Chandler, AZ Metro Area
3799                      Phoenix-Mesa-Chandler, AZ Metro Area
3800              Charlotte-Concord-Gastonia, NC-SC Metro Area
3801          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3802                               Raleigh-Cary, NC Metro Area
3803             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3804   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3805                              Oklahoma City, OK Metro Area
3806                               Worcester, MA-CT Metro Area
3807                                   Billings, MT Metro Area
3808                Hilton Head Island-Bluffton, SC Metro Area
3809                  Baltimore-Columbia-Towson, MD Metro Area
3810        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3811                Charleston-North Charleston, SC Metro Area
3812        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3813          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3814                               Worcester, MA-CT Metro Area
3815                               Worcester, MA-CT Metro Area
3816                    San Juan-Bayamón-Caguas, PR Metro Area
3817                                                      <NA>
3818                                    Madison, WI Metro Area
3819                                Bloomington, IL Metro Area
3820                        Buffalo-Cheektowaga, NY Metro Area
3821                     Denver-Aurora-Lakewood, CO Metro Area
3822                     Denver-Aurora-Lakewood, CO Metro Area
3823                     Denver-Aurora-Lakewood, CO Metro Area
3824                 Des Moines-West Des Moines, IA Metro Area
3825                                    Durango, CO Micro Area
3826                                Sioux Falls, SD Metro Area
3827                      Brownsville-Harlingen, TX Metro Area
3828    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3829          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3830          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3831               Las Vegas-Henderson-Paradise, NV Metro Area
3832                  Orlando-Kissimmee-Sanford, FL Metro Area
3833                  Orlando-Kissimmee-Sanford, FL Metro Area
3834             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3835        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3836                    Portland-South Portland, ME Metro Area
3837                    Portland-South Portland, ME Metro Area
3838                               Raleigh-Cary, NC Metro Area
3839                               Raleigh-Cary, NC Metro Area
3840                      Cape Coral-Fort Myers, FL Metro Area
3841           Poughkeepsie-Newburgh-Middletown, NY Metro Area
3842           Poughkeepsie-Newburgh-Middletown, NY Metro Area
3843                                   Syracuse, NY Metro Area
3844            Tampa-St. Petersburg-Clearwater, FL Metro Area
3845                          Trenton-Princeton, NJ Metro Area
3846                          Trenton-Princeton, NJ Metro Area
3847                          Trenton-Princeton, NJ Metro Area
3848                          Trenton-Princeton, NJ Metro Area
3849                Charleston-North Charleston, SC Metro Area
3850                    Atlantic City-Hammonton, NJ Metro Area
3851                    Atlantic City-Hammonton, NJ Metro Area
3852                                      Akron, OH Metro Area
3853                                   Columbus, OH Metro Area
3854        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3855        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3856               Indianapolis-Carmel-Anderson, IN Metro Area
3857               Las Vegas-Henderson-Paradise, NV Metro Area
3858             Los Angeles-Long Beach-Anaheim, CA Metro Area
3859                                 Pittsburgh, PA Metro Area
3860          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3861                  Orlando-Kissimmee-Sanford, FL Metro Area
3862                  Orlando-Kissimmee-Sanford, FL Metro Area
3863                  Orlando-Kissimmee-Sanford, FL Metro Area
3864  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3865  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3866  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3867                                                      <NA>
3868             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3870                      Cape Coral-Fort Myers, FL Metro Area
3871                      Cape Coral-Fort Myers, FL Metro Area
3872             Louisville/Jefferson County, KY-IN Metro Area
3873                                  Knoxville, TN Metro Area
3874             Los Angeles-Long Beach-Anaheim, CA Metro Area
3875             San Francisco-Oakland-Berkeley, CA Metro Area
3876                     Denver-Aurora-Lakewood, CO Metro Area
3877              Allentown-Bethlehem-Easton, PA-NJ Metro Area
3878             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3879                    Detroit-Warren-Dearborn, MI Metro Area
3880                                   Savannah, GA Metro Area
3881                                       Hilo, HI Micro Area
3882           Houston-The Woodlands-Sugar Land, TX Metro Area
3883                               Worcester, MA-CT Metro Area
3884                           Cleveland-Elyria, OH Metro Area
3885                                  Asheville, NC Metro Area
3886        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3887        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3888        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3889        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3890                                Punta Gorda, FL Metro Area
3891           Houston-The Woodlands-Sugar Land, TX Metro Area
3892                             Urban Honolulu, HI Metro Area
3893          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3894                                  Anchorage, AK Metro Area
3895                                  Anchorage, AK Metro Area
3896           Houston-The Woodlands-Sugar Land, TX Metro Area
3897             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3898             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3899           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3900                    Detroit-Warren-Dearborn, MI Metro Area
3901              Charlotte-Concord-Gastonia, NC-SC Metro Area
3902              Charlotte-Concord-Gastonia, NC-SC Metro Area
3903              Charlotte-Concord-Gastonia, NC-SC Metro Area
3904                Dallas-Fort Worth-Arlington, TX Metro Area
3905                      Phoenix-Mesa-Chandler, AZ Metro Area
3906                                  Anchorage, AK Metro Area
3907                                                      <NA>
3908                    Seattle-Tacoma-Bellevue, WA Metro Area
3909        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3910                                                      <NA>
3911           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3912           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3913           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3914               Las Vegas-Henderson-Paradise, NV Metro Area
3915                                     Casper, WY Metro Area
3916                                   Aberdeen, SD Micro Area
3917          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3918                      Greensboro-High Point, NC Metro Area
3919                                   Billings, MT Metro Area
3920                                Baton Rouge, LA Metro Area
3921                                 Charleston, WV Metro Area
3922   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3923                                Spartanburg, SC Metro Area
3924    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3925    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3926    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3927                                   Gillette, WY Micro Area
3928                     Denver-Aurora-Lakewood, CO Metro Area
3929                     Denver-Aurora-Lakewood, CO Metro Area
3930                     Denver-Aurora-Lakewood, CO Metro Area
3931                     Denver-Aurora-Lakewood, CO Metro Area
3932                Dallas-Fort Worth-Arlington, TX Metro Area
3933                Dallas-Fort Worth-Arlington, TX Metro Area
3934                      Phoenix-Mesa-Chandler, AZ Metro Area
3935                                     Hailey, ID Micro Area
3936                         Eugene-Springfield, OR Metro Area
3937                                 Twin Falls, ID Metro Area
3938                                Albuquerque, NM Metro Area
3939             San Francisco-Oakland-Berkeley, CA Metro Area
3940           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3941                        Buffalo-Cheektowaga, NY Metro Area
3942                        Buffalo-Cheektowaga, NY Metro Area
3943                  Baltimore-Columbia-Towson, MD Metro Area
3944                                   Columbus, OH Metro Area
3945                                   Columbus, OH Metro Area
3946                Dallas-Fort Worth-Arlington, TX Metro Area
3947                Dallas-Fort Worth-Arlington, TX Metro Area
3948                      Grand Rapids-Kentwood, MI Metro Area
3949                      Phoenix-Mesa-Chandler, AZ Metro Area
3950                                Panama City, FL Metro Area
3951             Louisville/Jefferson County, KY-IN Metro Area
3952                               Cedar Rapids, IA Metro Area
3953                Dallas-Fort Worth-Arlington, TX Metro Area
3954           Houston-The Woodlands-Sugar Land, TX Metro Area
3955           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3956                           Dayton-Kettering, OH Metro Area
3957   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3958                Burlington-South Burlington, VT Metro Area
3959    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3960          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3961                                 Montgomery, AL Metro Area
3962                                    Durango, CO Micro Area
3963                                   Florence, SC Metro Area
3964                                 Huntsville, AL Metro Area
3965        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3966                Charleston-North Charleston, SC Metro Area
3967                                     Laredo, TX Metro Area
3968                           Cincinnati, OH-KY-IN Metro Area
3969    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3970                      Greensboro-High Point, NC Metro Area
3971                Dallas-Fort Worth-Arlington, TX Metro Area
3972                                Bloomington, IL Metro Area
3973                      La Crosse-Onalaska, WI-MN Metro Area
3974                                Bakersfield, CA Metro Area
3975                    South Bend-Mishawaka, IN-MI Metro Area
3976                                  Rochester, NY Metro Area
3977          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3978           Riverside-San Bernardino-Ontario, CA Metro Area
3979                       Kingsport-Bristol, TN-VA Metro Area
3980                Burlington-South Burlington, VT Metro Area
3981                                  Rochester, MN Metro Area
3982        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3983                                    Del Rio, TX Micro Area
3984                                 Charleston, WV Metro Area
3985                              Evansville, IN-KY Metro Area
3986                                Great Falls, MT Metro Area
3987           Riverside-San Bernardino-Ontario, CA Metro Area
3988                                       Reno, NV Metro Area
3989          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3990                    Portland-South Portland, ME Metro Area
3991                Charleston-North Charleston, SC Metro Area
3992                                                      <NA>
3993           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3994                                   Appleton, WI Metro Area
3995                    Albany-Schenectady-Troy, NY Metro Area
3996                                    Wichita, KS Metro Area
3997                                  Rochester, MN Metro Area
3998        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3999                              Wausau-Weston, WI Metro Area
4000                             Chattanooga, TN-GA Metro Area
4001                               Jacksonville, FL Metro Area
4002          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4003              Charlotte-Concord-Gastonia, NC-SC Metro Area
4004                       New Orleans-Metairie, LA Metro Area
4005           Houston-The Woodlands-Sugar Land, TX Metro Area
4006                  Orlando-Kissimmee-Sanford, FL Metro Area
4007             San Francisco-Oakland-Berkeley, CA Metro Area
4008        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4009           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4010           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4011                      Phoenix-Mesa-Chandler, AZ Metro Area
4012                     Spokane-Spokane Valley, WA Metro Area
4013                    Detroit-Warren-Dearborn, MI Metro Area
4014                                      Kapaa, HI Micro Area
4015              Charlotte-Concord-Gastonia, NC-SC Metro Area
4016   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4017              Charlotte-Concord-Gastonia, NC-SC Metro Area
4018        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4019        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4020             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4021            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4022             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4023              Charlotte-Concord-Gastonia, NC-SC Metro Area
4024    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4025    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4026   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4027                                     Monroe, LA Metro Area
4028   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4029                             Salt Lake City, UT Metro Area
4030                             Urban Honolulu, HI Metro Area
4031             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4032                      Cape Coral-Fort Myers, FL Metro Area
4033                             Urban Honolulu, HI Metro Area
4034           Houston-The Woodlands-Sugar Land, TX Metro Area
4035           Houston-The Woodlands-Sugar Land, TX Metro Area
4036                                   Escanaba, MI Micro Area
4037   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4038                                                      <NA>
4039                      Phoenix-Mesa-Chandler, AZ Metro Area
4040                             Salt Lake City, UT Metro Area
4041                                  Watertown, SD Micro Area
4042             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4043                               St. Louis, MO-IL Metro Area
4044                Dallas-Fort Worth-Arlington, TX Metro Area
4045                    Kahului-Wailuku-Lahaina, HI Metro Area
4046             Los Angeles-Long Beach-Anaheim, CA Metro Area
4047                  Orlando-Kissimmee-Sanford, FL Metro Area
4048                  Baltimore-Columbia-Towson, MD Metro Area
4049             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4050           Houston-The Woodlands-Sugar Land, TX Metro Area
4051                                       Hilo, HI Micro Area
4052                             Salt Lake City, UT Metro Area
4053                                  Anchorage, AK Metro Area
4054           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4055                    Kahului-Wailuku-Lahaina, HI Metro Area
4056              Charlotte-Concord-Gastonia, NC-SC Metro Area
4057             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4058             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4059              Charlotte-Concord-Gastonia, NC-SC Metro Area
4060              Charlotte-Concord-Gastonia, NC-SC Metro Area
4061               Austin-Round Rock-Georgetown, TX Metro Area
4062             Los Angeles-Long Beach-Anaheim, CA Metro Area
4063                                 Pittsburgh, PA Metro Area
4064             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4065                Dallas-Fort Worth-Arlington, TX Metro Area
4066                                 Pittsburgh, PA Metro Area
4067                                  Anchorage, AK Metro Area
4068            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4069            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4070                      Cape Coral-Fort Myers, FL Metro Area
4071                    Seattle-Tacoma-Bellevue, WA Metro Area
4072                  Orlando-Kissimmee-Sanford, FL Metro Area
4073                       New Orleans-Metairie, LA Metro Area
4074           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4075           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4076                                       Reno, NV Metro Area
4077                             Salt Lake City, UT Metro Area
4078          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4079              Charlotte-Concord-Gastonia, NC-SC Metro Area
4080                                   Richmond, VA Metro Area
4081              Charlotte-Concord-Gastonia, NC-SC Metro Area
4082              Charlotte-Concord-Gastonia, NC-SC Metro Area
4083                                     Ithaca, NY Metro Area
4084    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4085                           Glenwood Springs, CO Micro Area
4086                Dallas-Fort Worth-Arlington, TX Metro Area
4087             Los Angeles-Long Beach-Anaheim, CA Metro Area
4088                                                      <NA>
4089               Austin-Round Rock-Georgetown, TX Metro Area
4090              North Port-Sarasota-Bradenton, FL Metro Area
4091                                 St. George, UT Metro Area
4092             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4093    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4094    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4095           Houston-The Woodlands-Sugar Land, TX Metro Area
4096                                  Anchorage, AK Metro Area
4097                     Denver-Aurora-Lakewood, CO Metro Area
4098                                  Green Bay, WI Metro Area
4099          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4100               Las Vegas-Henderson-Paradise, NV Metro Area
4101                  Orlando-Kissimmee-Sanford, FL Metro Area
4102                  Orlando-Kissimmee-Sanford, FL Metro Area
4103                  Orlando-Kissimmee-Sanford, FL Metro Area
4104                  Orlando-Kissimmee-Sanford, FL Metro Area
4105        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4106                                    Madison, WI Metro Area
4107                                   Syracuse, NY Metro Area
4108                                                      <NA>
4109              Charlotte-Concord-Gastonia, NC-SC Metro Area
4110                Dallas-Fort Worth-Arlington, TX Metro Area
4111                                Spartanburg, SC Metro Area
4112                                                      <NA>
4113                                                      <NA>
4114                 Boston-Cambridge-Newton, MA-NH Metro Area
4115             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4116                           Cincinnati, OH-KY-IN Metro Area
4117                                 Twin Falls, ID Metro Area
4118                                      Ozark, AL Micro Area
4119                                Great Falls, MT Metro Area
4120                           Butte-Silver Bow, MT Micro Area
4121                                 Charleston, WV Metro Area
4122                             Salt Lake City, UT Metro Area
4123                Dallas-Fort Worth-Arlington, TX Metro Area
4124              Charlotte-Concord-Gastonia, NC-SC Metro Area
4125              Charlotte-Concord-Gastonia, NC-SC Metro Area
4126              Charlotte-Concord-Gastonia, NC-SC Metro Area
4127    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4128                                Tallahassee, FL Metro Area
4129                Dallas-Fort Worth-Arlington, TX Metro Area
4130                    Detroit-Warren-Dearborn, MI Metro Area
4131                                  Marquette, MI Micro Area
4132             Los Angeles-Long Beach-Anaheim, CA Metro Area
4133                        Santa Rosa-Petaluma, CA Metro Area
4134                                                      <NA>
4135        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4136                              Oklahoma City, OK Metro Area
4137                                 St. George, UT Metro Area
4138                      Brownsville-Harlingen, TX Metro Area
4139          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4140             Los Angeles-Long Beach-Anaheim, CA Metro Area
4141             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4142                                Albuquerque, NM Metro Area
4143                    San Juan-Bayamón-Caguas, PR Metro Area
4144               Austin-Round Rock-Georgetown, TX Metro Area
4145                Dallas-Fort Worth-Arlington, TX Metro Area
4146           Houston-The Woodlands-Sugar Land, TX Metro Area
4147           Houston-The Woodlands-Sugar Land, TX Metro Area
4148             Los Angeles-Long Beach-Anaheim, CA Metro Area
4149            Tampa-St. Petersburg-Clearwater, FL Metro Area
4150                Dallas-Fort Worth-Arlington, TX Metro Area
4151              Charlotte-Concord-Gastonia, NC-SC Metro Area
4152                                    Bozeman, MT Micro Area
4153             Fayetteville-Springdale-Rogers, AR Metro Area
4154          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4155        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4156                 Boston-Cambridge-Newton, MA-NH Metro Area
4157          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4158          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4159          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4160          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4161     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4162                                 Jackson, WY-ID Micro Area
4163                Dallas-Fort Worth-Arlington, TX Metro Area
4164                                    El Paso, TX Metro Area
4165                                Spartanburg, SC Metro Area
4166                                 Montgomery, AL Metro Area
4167                               Jacksonville, FL Metro Area
4168                             Kansas City, MO-KS Metro Area
4169        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4170        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4171        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4172                            Gulfport-Biloxi, MS Metro Area
4173                                Columbus, GA-AL Metro Area
4174             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4175                    Portland-South Portland, ME Metro Area
4176                        Watertown-Fort Drum, NY Metro Area
4177                                     Toledo, OH Metro Area
4178                                 Alexandria, LA Metro Area
4179                        Buffalo-Cheektowaga, NY Metro Area
4180                                   Key West, FL Micro Area
4181                                   Savannah, GA Metro Area
4182                                   Syracuse, NY Metro Area
4183                                Gainesville, FL Metro Area
4184               Austin-Round Rock-Georgetown, TX Metro Area
4185                           Cincinnati, OH-KY-IN Metro Area
4186                 Boston-Cambridge-Newton, MA-NH Metro Area
4187        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4188        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4189        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4190          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4191             Los Angeles-Long Beach-Anaheim, CA Metro Area
4192          Hartford-East Hartford-Middletown, CT Metro Area
4193             Los Angeles-Long Beach-Anaheim, CA Metro Area
4194            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4195                                   Richmond, VA Metro Area
4196                                   Savannah, GA Metro Area
4197                Burlington-South Burlington, VT Metro Area
4198             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4199                                    Lincoln, NE Metro Area
4200              Allentown-Bethlehem-Easton, PA-NJ Metro Area
4201                    Seattle-Tacoma-Bellevue, WA Metro Area
4202                          Birmingham-Hoover, AL Metro Area
4203                              Evansville, IN-KY Metro Area
4204           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4205          Hartford-East Hartford-Middletown, CT Metro Area
4206                  Orlando-Kissimmee-Sanford, FL Metro Area
4207                       New Orleans-Metairie, LA Metro Area
4208                      Providence-Warwick, RI-MA Metro Area
4209                                Sioux Falls, SD Metro Area
4210          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4211                    Albany-Schenectady-Troy, NY Metro Area
4212                       Waterloo-Cedar Falls, IA Metro Area
4213                                       Reno, NV Metro Area
4214                Dallas-Fort Worth-Arlington, TX Metro Area
4215                Dallas-Fort Worth-Arlington, TX Metro Area
4216                                Idaho Falls, ID Metro Area
4217                              Evansville, IN-KY Metro Area
4218             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4219                      Phoenix-Mesa-Chandler, AZ Metro Area
4220                                  Knoxville, TN Metro Area
4221                    Atlantic City-Hammonton, NJ Metro Area
4222        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4223                                 Pittsburgh, PA Metro Area
4224          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4225                    San Juan-Bayamón-Caguas, PR Metro Area
4226            Tampa-St. Petersburg-Clearwater, FL Metro Area
4227                                    Bozeman, MT Micro Area
4228                                      Tulsa, OK Metro Area
4229   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4230   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4231                   Huntington-Ashland, WV-KY-OH Metro Area
4232                                 Wilmington, NC Metro Area
4233                       Lansing-East Lansing, MI Metro Area
4234                      College Station-Bryan, TX Metro Area
4235                      Grand Rapids-Kentwood, MI Metro Area
4236                                   Amarillo, TX Metro Area
4237                           Cleveland-Elyria, OH Metro Area
4238                                  Flagstaff, AZ Metro Area
4239           Houston-The Woodlands-Sugar Land, TX Metro Area
4240             Los Angeles-Long Beach-Anaheim, CA Metro Area
4241             Los Angeles-Long Beach-Anaheim, CA Metro Area
4242                                    Midland, TX Metro Area
4243  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4244             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4245             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4246             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4247                      Phoenix-Mesa-Chandler, AZ Metro Area
4248                                    Roswell, NM Micro Area
4249             San Francisco-Oakland-Berkeley, CA Metro Area
4250             San Francisco-Oakland-Berkeley, CA Metro Area
4251                                      Tulsa, OK Metro Area
4252                      Cape Coral-Fort Myers, FL Metro Area
4253                                    Redding, CA Metro Area
4254                        Santa Rosa-Petaluma, CA Metro Area
4255                    Albany-Schenectady-Troy, NY Metro Area
4256                                   Richmond, VA Metro Area
4257                      Grand Rapids-Kentwood, MI Metro Area
4258                                 Eau Claire, WI Metro Area
4259        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4260                                Spartanburg, SC Metro Area
4261                               North Platte, NE Micro Area
4262                            Charlottesville, VA Metro Area
4263                        Harrisburg-Carlisle, PA Metro Area
4264                           Dayton-Kettering, OH Metro Area
4265                                     Tucson, AZ Metro Area
4266                                   Amarillo, TX Metro Area
4267                                       Erie, PA Metro Area
4268                              Memphis, TN-MS-AR Metro Area
4269            Tampa-St. Petersburg-Clearwater, FL Metro Area
4270                                    Salinas, CA Metro Area
4271                                  Rochester, MN Metro Area
4272                                 Wilmington, NC Metro Area
4273                  San Antonio-New Braunfels, TX Metro Area
4274                                    Wichita, KS Metro Area
4275                                       Reno, NV Metro Area
4276                                 Boise City, ID Metro Area
4277                Dallas-Fort Worth-Arlington, TX Metro Area
4278          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4279                                Panama City, FL Metro Area
4280           Houston-The Woodlands-Sugar Land, TX Metro Area
4281            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4282                        Buffalo-Cheektowaga, NY Metro Area
4283     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4284                                Spartanburg, SC Metro Area
4285                          Steamboat Springs, CO Micro Area
4286             Los Angeles-Long Beach-Anaheim, CA Metro Area
4287                    Omaha-Council Bluffs, NE-IA Metro Area
4288                    Albany-Schenectady-Troy, NY Metro Area
4289             San Francisco-Oakland-Berkeley, CA Metro Area
4290             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4291        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4292 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4293                              Oklahoma City, OK Metro Area
4294 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4295                          Manchester-Nashua, NH Metro Area
4296                     Spokane-Spokane Valley, WA Metro Area
4297                                    Lubbock, TX Metro Area
4298                              State College, PA Metro Area
4299                Dallas-Fort Worth-Arlington, TX Metro Area
4300   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4301           Houston-The Woodlands-Sugar Land, TX Metro Area
4302           Houston-The Woodlands-Sugar Land, TX Metro Area
4303  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4304                                    Lubbock, TX Metro Area
4305                      Phoenix-Mesa-Chandler, AZ Metro Area
4306              North Port-Sarasota-Bradenton, FL Metro Area
4307               Austin-Round Rock-Georgetown, TX Metro Area
4308                Charleston-North Charleston, SC Metro Area
4309          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4310          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4311                              State College, PA Metro Area
4312                                 Pittsburgh, PA Metro Area
4313        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4314   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4315   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4316   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4317   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4318                                  Duluth, MN-WI Metro Area
4319                                  Green Bay, WI Metro Area
4320        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4321        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4322        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4323        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4324                                                      <NA>
4325               Austin-Round Rock-Georgetown, TX Metro Area
4326                        Harrisburg-Carlisle, PA Metro Area
4327           Houston-The Woodlands-Sugar Land, TX Metro Area
4328           Houston-The Woodlands-Sugar Land, TX Metro Area
4329            Tampa-St. Petersburg-Clearwater, FL Metro Area
4330           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4331                                 Wilmington, NC Metro Area
4332          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4333          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4334                            Charlottesville, VA Metro Area
4335          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4336                           Iron Mountain, MI-WI Micro Area
4337                                 Stillwater, OK Micro Area
4338                                    Jackson, MS Metro Area
4339                               Fayetteville, NC Metro Area
4340                                    Dubuque, IA Metro Area
4341                                  Manhattan, KS Metro Area
4342             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4343             Fayetteville-Springdale-Rogers, AR Metro Area
4344                                   Montrose, CO Micro Area
4345                                                      <NA>
4346                  Orlando-Kissimmee-Sanford, FL Metro Area
4347                                   Appleton, WI Metro Area
4348                                                      <NA>
4349                         Milwaukee-Waukesha, WI Metro Area
4350                                   Montrose, CO Micro Area
4351           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4352                  Orlando-Kissimmee-Sanford, FL Metro Area
4353                  Orlando-Kissimmee-Sanford, FL Metro Area
4354             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4355                                   Columbia, SC Metro Area
4356             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4358                                      Akron, OH Metro Area
4359                                      Akron, OH Metro Area
4360        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4361             Los Angeles-Long Beach-Anaheim, CA Metro Area
4362                                 Pittsburgh, PA Metro Area
4363                             Kansas City, MO-KS Metro Area
4364  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4365                      Cape Coral-Fort Myers, FL Metro Area
4366                      Cape Coral-Fort Myers, FL Metro Area
4367                                  Rochester, NY Metro Area
4368              Charlotte-Concord-Gastonia, NC-SC Metro Area
4369   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4370   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4371   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4372     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4373   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4374   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4375   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4376                                      Akron, OH Metro Area
4377    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4378       Little Rock-North Little Rock-Conway, AR Metro Area
4379                              Memphis, TN-MS-AR Metro Area
4380           Houston-The Woodlands-Sugar Land, TX Metro Area
4381           Houston-The Woodlands-Sugar Land, TX Metro Area
4382                                    Kearney, NE Micro Area
4383        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4384                      Phoenix-Mesa-Chandler, AZ Metro Area
4385                      Phoenix-Mesa-Chandler, AZ Metro Area
4386                                     Joplin, MO Metro Area
4387                                  Manhattan, KS Metro Area
4388           Riverside-San Bernardino-Ontario, CA Metro Area
4389                                                      <NA>
4390                    Seattle-Tacoma-Bellevue, WA Metro Area
4391          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4392   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4393                                     Fresno, CA Metro Area
4394                                    Roanoke, VA Metro Area
4395                                     Laurel, MS Micro Area
4396              Charlotte-Concord-Gastonia, NC-SC Metro Area
4397                             Corpus Christi, TX Metro Area
4398                              Memphis, TN-MS-AR Metro Area
4399            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4400                      Brownsville-Harlingen, TX Metro Area
4401                                 Pittsburgh, PA Metro Area
4402                                    Midland, TX Metro Area
4403                         Milwaukee-Waukesha, WI Metro Area
4404   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4405   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4406   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4407    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4408                             Chattanooga, TN-GA Metro Area
4409   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4410   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4411   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4412   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4413             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4414            Tampa-St. Petersburg-Clearwater, FL Metro Area
4415                                  Fairbanks, AK Metro Area
4416                                 St. George, UT Metro Area
4417                                Idaho Falls, ID Metro Area
4418                                   Santa Fe, NM Metro Area
4419                                 Fort Wayne, IN Metro Area
4420            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4421                                     Monroe, LA Metro Area
4422                                       Elko, NV Micro Area
4423                     Denver-Aurora-Lakewood, CO Metro Area
4424                      Brownsville-Harlingen, TX Metro Area
4425        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4426                                    Madison, WI Metro Area
4427                    Omaha-Council Bluffs, NE-IA Metro Area
4428                    Atlantic City-Hammonton, NJ Metro Area
4429          Hartford-East Hartford-Middletown, CT Metro Area
4430        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4431  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4432              Charlotte-Concord-Gastonia, NC-SC Metro Area
4433              Charlotte-Concord-Gastonia, NC-SC Metro Area
4434                            Charlottesville, VA Metro Area
4435  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4436                                 Rapid City, SD Metro Area
4437                                   Muskegon, MI Metro Area
4438                                 Mason City, IA Micro Area
4439           Riverside-San Bernardino-Ontario, CA Metro Area
4440                    Seattle-Tacoma-Bellevue, WA Metro Area
4441                                  Wenatchee, WA Metro Area
4442                                    Decatur, IL Metro Area
4443                              Eureka-Arcata, CA Micro Area
4444                               Rock Springs, WY Micro Area
4445                                                      <NA>
4446                                     Laredo, TX Metro Area
4447    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4448                Dallas-Fort Worth-Arlington, TX Metro Area
4449                 Pensacola-Ferry Pass-Brent, FL Metro Area
4450             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4451                                       Hilo, HI Micro Area
4452                                Albuquerque, NM Metro Area
4453                                 Bellingham, WA Metro Area
4454             San Diego-Chula Vista-Carlsbad, CA Metro Area
4455                                   Richmond, VA Metro Area
4456             Los Angeles-Long Beach-Anaheim, CA Metro Area
4457            Tampa-St. Petersburg-Clearwater, FL Metro Area
4458                                  Johnstown, PA Metro Area
4459                                   Staunton, VA Metro Area
4460   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4461                              Eureka-Arcata, CA Micro Area
4462                              Eureka-Arcata, CA Micro Area
4463             Los Angeles-Long Beach-Anaheim, CA Metro Area
4464             Los Angeles-Long Beach-Anaheim, CA Metro Area
4465             Los Angeles-Long Beach-Anaheim, CA Metro Area
4466             Los Angeles-Long Beach-Anaheim, CA Metro Area
4467             Los Angeles-Long Beach-Anaheim, CA Metro Area
4468             Los Angeles-Long Beach-Anaheim, CA Metro Area
4469        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4470                               Fort Collins, CO Metro Area
4471                          New Haven-Milford, CT Metro Area
4472                          New Haven-Milford, CT Metro Area
4473                                    Medford, OR Metro Area
4474                           Ogden-Clearfield, UT Metro Area
4475        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4476                        Santa Rosa-Petaluma, CA Metro Area
4477            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4478                     Denver-Aurora-Lakewood, CO Metro Area
4479                                      Tulsa, OK Metro Area
4480                     Denver-Aurora-Lakewood, CO Metro Area
4481                     Denver-Aurora-Lakewood, CO Metro Area
4482                      Phoenix-Mesa-Chandler, AZ Metro Area
4483                      Phoenix-Mesa-Chandler, AZ Metro Area
4484                    Kahului-Wailuku-Lahaina, HI Metro Area
4485                                    Edwards, CO Micro Area
4486        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4487               Austin-Round Rock-Georgetown, TX Metro Area
4488             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4489                                 Jackson, WY-ID Micro Area
4490           Houston-The Woodlands-Sugar Land, TX Metro Area
4491        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4492             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4493        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4494                Dallas-Fort Worth-Arlington, TX Metro Area
4495                                                      <NA>
4496                Dallas-Fort Worth-Arlington, TX Metro Area
4497   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4498    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4499                Dallas-Fort Worth-Arlington, TX Metro Area
4500             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4501             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4502                                 Huntsville, AL Metro Area
4503                                Springfield, MO Metro Area
4504                             Kansas City, MO-KS Metro Area
4505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4506                    Detroit-Warren-Dearborn, MI Metro Area
4507                                  Flagstaff, AZ Metro Area
4508                                     Bangor, ME Metro Area
4509               Las Vegas-Henderson-Paradise, NV Metro Area
4510        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4511                          Aguadilla-Isabela, PR Metro Area
4512                                     Bangor, ME Metro Area
4513                                Bloomington, IL Metro Area
4514                Burlington-South Burlington, VT Metro Area
4515                  Orlando-Kissimmee-Sanford, FL Metro Area
4516                        Harrisburg-Carlisle, PA Metro Area
4517                    San Juan-Bayamón-Caguas, PR Metro Area
4518                                  Knoxville, TN Metro Area
4519                                                      <NA>
4520        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4521                          Manchester-Nashua, NH Metro Area
4522            Tampa-St. Petersburg-Clearwater, FL Metro Area
4523                                    Redding, CA Metro Area
4524             Los Angeles-Long Beach-Anaheim, CA Metro Area
4525                                     Hailey, ID Micro Area
4526                    Portland-South Portland, ME Metro Area
4527 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4528                Dallas-Fort Worth-Arlington, TX Metro Area
4529                             Urban Honolulu, HI Metro Area
4530                                 Boise City, ID Metro Area
4531                  Orlando-Kissimmee-Sanford, FL Metro Area
4532             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4533                      Providence-Warwick, RI-MA Metro Area
4534                                   Richmond, VA Metro Area
4535                  San Antonio-New Braunfels, TX Metro Area
4536   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4537            Tampa-St. Petersburg-Clearwater, FL Metro Area
4538   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4539                                  Green Bay, WI Metro Area
4540                                 Alexandria, LA Metro Area
4541          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4542                                   Bismarck, ND Metro Area
4543                                       Bend, OR Metro Area
4544                                     Juneau, AK Micro Area
4545                                   Key West, FL Micro Area
4546        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4547          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4548                                      Ponce, PR Metro Area
4549                                    Bozeman, MT Micro Area
4550                                 Binghamton, NY Metro Area
4551  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4552             Fayetteville-Springdale-Rogers, AR Metro Area
4553                Dallas-Fort Worth-Arlington, TX Metro Area
4554                                      Tyler, TX Metro Area
4555                 Boston-Cambridge-Newton, MA-NH Metro Area
4556   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4557   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4558   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4559             Los Angeles-Long Beach-Anaheim, CA Metro Area
4560               Austin-Round Rock-Georgetown, TX Metro Area
4561                                      Hobbs, NM Micro Area
4562                                 Dodge City, KS Micro Area
4563                           Sioux City, IA-NE-SD Metro Area
4564 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4565            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4566                Dallas-Fort Worth-Arlington, TX Metro Area
4567           Houston-The Woodlands-Sugar Land, TX Metro Area
4568           Houston-The Woodlands-Sugar Land, TX Metro Area
4569           Houston-The Woodlands-Sugar Land, TX Metro Area
4570                                Panama City, FL Metro Area
4571               Las Vegas-Henderson-Paradise, NV Metro Area
4572                                      Kapaa, HI Micro Area
4573                             Kansas City, MO-KS Metro Area
4574                                       Reno, NV Metro Area
4575             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4576          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4577             San Diego-Chula Vista-Carlsbad, CA Metro Area
4578                           Colorado Springs, CO Metro Area
4579                      Grand Rapids-Kentwood, MI Metro Area
4580                               St. Louis, MO-IL Metro Area
4581            Tampa-St. Petersburg-Clearwater, FL Metro Area
4582            Tampa-St. Petersburg-Clearwater, FL Metro Area
4583   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4584                                  Duluth, MN-WI Metro Area
4585                                    Madison, WI Metro Area
4586                      Phoenix-Mesa-Chandler, AZ Metro Area
4587                      Cape Coral-Fort Myers, FL Metro Area
4588                                Tallahassee, FL Metro Area
4589                          New Haven-Milford, CT Metro Area
4590                                       Bend, OR Metro Area
4591                      Phoenix-Mesa-Chandler, AZ Metro Area
4592                                     Hailey, ID Micro Area
4593             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4594                                                      <NA>
4595                    Detroit-Warren-Dearborn, MI Metro Area
4596             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4597                         Eugene-Springfield, OR Metro Area
4598                                   Billings, MT Metro Area
4599             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4600                                     Yakima, WA Metro Area
4601                                     Alpena, MI Micro Area
4602           Riverside-San Bernardino-Ontario, CA Metro Area
4603                  Orlando-Kissimmee-Sanford, FL Metro Area
4604        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4605        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4606        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4607  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4608                              Memphis, TN-MS-AR Metro Area
4609              Charlotte-Concord-Gastonia, NC-SC Metro Area
4610                                   Cheyenne, WY Metro Area
4611                Dallas-Fort Worth-Arlington, TX Metro Area
4612                                  Watertown, SD Micro Area
4613                                     Vernal, UT Micro Area
4614                                    Laramie, WY Micro Area
4615                                                      <NA>
4616                                   Houghton, MI Micro Area
4617                         Ogdensburg-Massena, NY Micro Area
4618                              Eureka-Arcata, CA Micro Area
4619              North Port-Sarasota-Bradenton, FL Metro Area
4620                                Scottsbluff, NE Micro Area
4621                                    Kearney, NE Micro Area
4622                                       Hays, KS Micro Area
4623                    Albany-Schenectady-Troy, NY Metro Area
4624                  Baltimore-Columbia-Towson, MD Metro Area
4625                                    Jackson, MS Metro Area
4626   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4627                                   Montrose, CO Micro Area
4628        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4629        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4630           Houston-The Woodlands-Sugar Land, TX Metro Area
4631           Houston-The Woodlands-Sugar Land, TX Metro Area
4632    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4633               Las Vegas-Henderson-Paradise, NV Metro Area
4634               Las Vegas-Henderson-Paradise, NV Metro Area
4635               Las Vegas-Henderson-Paradise, NV Metro Area
4636                             Kansas City, MO-KS Metro Area
4637         Crestview-Fort Walton Beach-Destin, FL Metro Area
4638             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4639                      Phoenix-Mesa-Chandler, AZ Metro Area
4640                      Brownsville-Harlingen, TX Metro Area
4641                      Phoenix-Mesa-Chandler, AZ Metro Area
4642                      Cape Coral-Fort Myers, FL Metro Area
4643             San Diego-Chula Vista-Carlsbad, CA Metro Area
4644                  San Antonio-New Braunfels, TX Metro Area
4645                  San Antonio-New Braunfels, TX Metro Area
4646              North Port-Sarasota-Bradenton, FL Metro Area
4647              North Port-Sarasota-Bradenton, FL Metro Area
4648                  San Antonio-New Braunfels, TX Metro Area
4649                Dallas-Fort Worth-Arlington, TX Metro Area
4650                                 Clarksburg, WV Micro Area
4651                          Fort Leonard Wood, MO Micro Area
4652   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4653              North Port-Sarasota-Bradenton, FL Metro Area
4654                                   Key West, FL Micro Area
4655            Tampa-St. Petersburg-Clearwater, FL Metro Area
4656                Dallas-Fort Worth-Arlington, TX Metro Area
4657                                 Jackson, WY-ID Micro Area
4658           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4659             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4660                                     Hailey, ID Micro Area
4661                             Urban Honolulu, HI Metro Area
4662   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4663           Houston-The Woodlands-Sugar Land, TX Metro Area
4664           Houston-The Woodlands-Sugar Land, TX Metro Area
4665                    Seattle-Tacoma-Bellevue, WA Metro Area
4666                                                      <NA>
4667                              State College, PA Metro Area
4668                                   Valdosta, GA Metro Area
4669                                 Alexandria, LA Metro Area
4670                Dallas-Fort Worth-Arlington, TX Metro Area
4671                             Salt Lake City, UT Metro Area
4672           Houston-The Woodlands-Sugar Land, TX Metro Area
4673             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4674                     Denver-Aurora-Lakewood, CO Metro Area
4675           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4676           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4677                    Detroit-Warren-Dearborn, MI Metro Area
4678              Charlotte-Concord-Gastonia, NC-SC Metro Area
4679                Dallas-Fort Worth-Arlington, TX Metro Area
4680                      Cape Coral-Fort Myers, FL Metro Area
4681                Dallas-Fort Worth-Arlington, TX Metro Area
4682                Dallas-Fort Worth-Arlington, TX Metro Area
4683             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4684   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4685                     Denver-Aurora-Lakewood, CO Metro Area
4686           Houston-The Woodlands-Sugar Land, TX Metro Area
4687          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4688               Las Vegas-Henderson-Paradise, NV Metro Area
4689                Dallas-Fort Worth-Arlington, TX Metro Area
4690   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4691                                   Key West, FL Micro Area
4692          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4693                                       Hilo, HI Micro Area
4694                                   Columbus, OH Metro Area
4695                                     Juneau, AK Micro Area
4696                  Orlando-Kissimmee-Sanford, FL Metro Area
4697                        Buffalo-Cheektowaga, NY Metro Area
4698                            Barnstable Town, MA Metro Area
4699                             Vineyard Haven, MA Micro Area
4700                                    Durango, CO Micro Area
4701                                 Cedar City, UT Micro Area
4702               Austin-Round Rock-Georgetown, TX Metro Area
4703  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4704                      Cape Coral-Fort Myers, FL Metro Area
4705              Charlotte-Concord-Gastonia, NC-SC Metro Area
4706              Charlotte-Concord-Gastonia, NC-SC Metro Area
4707   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4708   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4709                     Denver-Aurora-Lakewood, CO Metro Area
4710           Houston-The Woodlands-Sugar Land, TX Metro Area
4711                      Phoenix-Mesa-Chandler, AZ Metro Area
4712                                                      <NA>
4713                                       Hilo, HI Micro Area
4714                                  Johnstown, PA Metro Area
4715                                  Jamestown, ND Micro Area
4716                                                      <NA>
4717                    Albany-Schenectady-Troy, NY Metro Area
4718                        Buffalo-Cheektowaga, NY Metro Area
4719           Riverside-San Bernardino-Ontario, CA Metro Area
4720           Houston-The Woodlands-Sugar Land, TX Metro Area
4721           Houston-The Woodlands-Sugar Land, TX Metro Area
4722                 Des Moines-West Des Moines, IA Metro Area
4723                  Orlando-Kissimmee-Sanford, FL Metro Area
4724                  Orlando-Kissimmee-Sanford, FL Metro Area
4725             San Francisco-Oakland-Berkeley, CA Metro Area
4726                              Oklahoma City, OK Metro Area
4727                               St. Louis, MO-IL Metro Area
4728            Tampa-St. Petersburg-Clearwater, FL Metro Area
4729            Tampa-St. Petersburg-Clearwater, FL Metro Area
4730                Dallas-Fort Worth-Arlington, TX Metro Area
4731                                   Key West, FL Micro Area
4732                          Lexington-Fayette, KY Metro Area
4733    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4734                     Denver-Aurora-Lakewood, CO Metro Area
4735           Houston-The Woodlands-Sugar Land, TX Metro Area
4736           Houston-The Woodlands-Sugar Land, TX Metro Area
4737                                   Key West, FL Micro Area
4738                  Orlando-Kissimmee-Sanford, FL Metro Area
4739           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4740                    Detroit-Warren-Dearborn, MI Metro Area
4741              Charlotte-Concord-Gastonia, NC-SC Metro Area
4742                Dallas-Fort Worth-Arlington, TX Metro Area
4743                                  Anchorage, AK Metro Area
4744   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4745                                     Juneau, AK Micro Area
4746                                     Juneau, AK Micro Area
4747                                                      <NA>
4748          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4749                      Cape Coral-Fort Myers, FL Metro Area
4750             Fayetteville-Springdale-Rogers, AR Metro Area
4751            Tampa-St. Petersburg-Clearwater, FL Metro Area
4752    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4753                                     Peoria, IL Metro Area
4754                                   Sheridan, WY Micro Area
4755                     Denver-Aurora-Lakewood, CO Metro Area
4756                     Denver-Aurora-Lakewood, CO Metro Area
4757                Dallas-Fort Worth-Arlington, TX Metro Area
4758                    Detroit-Warren-Dearborn, MI Metro Area
4759                    Detroit-Warren-Dearborn, MI Metro Area
4760           Houston-The Woodlands-Sugar Land, TX Metro Area
4761                              Wausau-Weston, WI Metro Area
4762        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4763        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4764                                  Dickinson, ND Micro Area
4765                      Phoenix-Mesa-Chandler, AZ Metro Area
4766                                     Tucson, AZ Metro Area
4767                    Seattle-Tacoma-Bellevue, WA Metro Area
4768                                   Staunton, VA Metro Area
4769                                Plattsburgh, NY Micro Area
4770                                   Riverton, WY Micro Area
4771                                    El Paso, TX Metro Area
4772           Houston-The Woodlands-Sugar Land, TX Metro Area
4773           Houston-The Woodlands-Sugar Land, TX Metro Area
4774           Houston-The Woodlands-Sugar Land, TX Metro Area
4775               Las Vegas-Henderson-Paradise, NV Metro Area
4776                             Kansas City, MO-KS Metro Area
4777                    Kahului-Wailuku-Lahaina, HI Metro Area
4778             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4779                               St. Louis, MO-IL Metro Area
4780                                      Tulsa, OK Metro Area
4781           Houston-The Woodlands-Sugar Land, TX Metro Area
4782                      Phoenix-Mesa-Chandler, AZ Metro Area
4783                                 Jackson, WY-ID Micro Area
4784          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4785             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4786           Houston-The Woodlands-Sugar Land, TX Metro Area
4787           Houston-The Woodlands-Sugar Land, TX Metro Area
4788              Charlotte-Concord-Gastonia, NC-SC Metro Area
4789                    Detroit-Warren-Dearborn, MI Metro Area
4790             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4791                Dallas-Fort Worth-Arlington, TX Metro Area
4792        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4793             Los Angeles-Long Beach-Anaheim, CA Metro Area
4794           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4795   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4796                Dallas-Fort Worth-Arlington, TX Metro Area
4797             Fayetteville-Springdale-Rogers, AR Metro Area
4798           Houston-The Woodlands-Sugar Land, TX Metro Area
4799                             Kansas City, MO-KS Metro Area
4800        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4801                             Salt Lake City, UT Metro Area
4802             Fayetteville-Springdale-Rogers, AR Metro Area
4803                    Seattle-Tacoma-Bellevue, WA Metro Area
4804                                     Tucson, AZ Metro Area
4805                                    Bozeman, MT Micro Area
4806                Dallas-Fort Worth-Arlington, TX Metro Area
4807                                Panama City, FL Metro Area
4808                  Orlando-Kissimmee-Sanford, FL Metro Area
4809                  San Antonio-New Braunfels, TX Metro Area
4810                Sacramento-Roseville-Folsom, CA Metro Area
4811                                      Tulsa, OK Metro Area
4812             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4813              Charlotte-Concord-Gastonia, NC-SC Metro Area
4814           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4815           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4816           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4817                    Detroit-Warren-Dearborn, MI Metro Area
4818                    Detroit-Warren-Dearborn, MI Metro Area
4819          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4820                         Milwaukee-Waukesha, WI Metro Area
4821        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4822             Fayetteville-Springdale-Rogers, AR Metro Area
4823                                                      <NA>
4824                              Eureka-Arcata, CA Micro Area
4825                                   Montrose, CO Micro Area
4826       Little Rock-North Little Rock-Conway, AR Metro Area
4827                                   Appleton, WI Metro Area
4828                                    Wichita, KS Metro Area
4829        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4830          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4831        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4832                      Cape Coral-Fort Myers, FL Metro Area
4833           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4834        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4835                 Des Moines-West Des Moines, IA Metro Area
4836                           Cleveland-Elyria, OH Metro Area
4837   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4838                Dallas-Fort Worth-Arlington, TX Metro Area
4839             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4840              Charlotte-Concord-Gastonia, NC-SC Metro Area
4841                                 Montgomery, AL Metro Area
4842                              Eureka-Arcata, CA Micro Area
4843                                    Salinas, CA Metro Area
4844                     Denver-Aurora-Lakewood, CO Metro Area
4845                    Detroit-Warren-Dearborn, MI Metro Area
4846        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4847        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4848        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4849        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4850                      Phoenix-Mesa-Chandler, AZ Metro Area
4851             San Francisco-Oakland-Berkeley, CA Metro Area
4852             San Francisco-Oakland-Berkeley, CA Metro Area
4853                                     Pierre, SD Micro Area
4854             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4855                                    Madison, WI Metro Area
4856       Little Rock-North Little Rock-Conway, AR Metro Area
4857             Los Angeles-Long Beach-Anaheim, CA Metro Area
4858        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4859           Riverside-San Bernardino-Ontario, CA Metro Area
4860                                Spartanburg, SC Metro Area
4861                                   Montrose, CO Micro Area
4862               Las Vegas-Henderson-Paradise, NV Metro Area
4863             Los Angeles-Long Beach-Anaheim, CA Metro Area
4864                              Oklahoma City, OK Metro Area
4865                      Providence-Warwick, RI-MA Metro Area
4866              Charlotte-Concord-Gastonia, NC-SC Metro Area
4867                           Colorado Springs, CO Metro Area
4868             San Diego-Chula Vista-Carlsbad, CA Metro Area
4869                           Cincinnati, OH-KY-IN Metro Area
4870                                     Tucson, AZ Metro Area
4871                Dallas-Fort Worth-Arlington, TX Metro Area
4872   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4873             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4874             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4875                      Brownsville-Harlingen, TX Metro Area
4876                 Boston-Cambridge-Newton, MA-NH Metro Area
4877              Charlotte-Concord-Gastonia, NC-SC Metro Area
4878                                 Fort Wayne, IN Metro Area
4879    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4880    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4881    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4882           Houston-The Woodlands-Sugar Land, TX Metro Area
4883           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4884           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4885                Charleston-North Charleston, SC Metro Area
4886                    Detroit-Warren-Dearborn, MI Metro Area
4887                    Detroit-Warren-Dearborn, MI Metro Area
4888                    Detroit-Warren-Dearborn, MI Metro Area
4889                    Detroit-Warren-Dearborn, MI Metro Area
4890                    Detroit-Warren-Dearborn, MI Metro Area
4891                    Detroit-Warren-Dearborn, MI Metro Area
4892        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4893        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4894                                  Knoxville, TN Metro Area
4895                                                      <NA>
4896                                    Roanoke, VA Metro Area
4897                               Texarkana, TX-AR Metro Area
4898                                       Hilo, HI Micro Area
4899                 Boston-Cambridge-Newton, MA-NH Metro Area
4900          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4901          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4902          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4903          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4904                  Orlando-Kissimmee-Sanford, FL Metro Area
4905           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4906           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4907           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4908        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4909                                     Ithaca, NY Metro Area
4910                           Dayton-Kettering, OH Metro Area
4911                                    Bemidji, MN Micro Area
4912              North Port-Sarasota-Bradenton, FL Metro Area
4913          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4914                                   Longview, TX Metro Area
4915                Dallas-Fort Worth-Arlington, TX Metro Area
4916             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4917             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4918                     Denver-Aurora-Lakewood, CO Metro Area
4919                    Detroit-Warren-Dearborn, MI Metro Area
4920                                    Edwards, CO Micro Area
4921           Houston-The Woodlands-Sugar Land, TX Metro Area
4922                                    Edwards, CO Micro Area
4923             Los Angeles-Long Beach-Anaheim, CA Metro Area
4924             Los Angeles-Long Beach-Anaheim, CA Metro Area
4925                                   Coos Bay, OR Micro Area
4926        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4927            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4928             San Diego-Chula Vista-Carlsbad, CA Metro Area
4929                             Salt Lake City, UT Metro Area
4930                    Kahului-Wailuku-Lahaina, HI Metro Area
4931                                Springfield, MO Metro Area
4932                                    Bozeman, MT Micro Area
4933   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4934                                       Hilo, HI Micro Area
4935                               Lake Charles, LA Metro Area
4936                                 Rapid City, SD Metro Area
4937                Dallas-Fort Worth-Arlington, TX Metro Area
4938                                    El Paso, TX Metro Area
4939                             Urban Honolulu, HI Metro Area
4940           Houston-The Woodlands-Sugar Land, TX Metro Area
4941         Crestview-Fort Walton Beach-Destin, FL Metro Area
4942                                    El Paso, TX Metro Area
4943                                     Tucson, AZ Metro Area
4944             San Francisco-Oakland-Berkeley, CA Metro Area
4945                                      Tulsa, OK Metro Area
4946                    San Juan-Bayamón-Caguas, PR Metro Area
4947       Little Rock-North Little Rock-Conway, AR Metro Area
4948                                   Columbia, SC Metro Area
4949                                   Key West, FL Micro Area
4950   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4951                    San Juan-Bayamón-Caguas, PR Metro Area
4952          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4953                         Kennewick-Richland, WA Metro Area
4954                        Santa Rosa-Petaluma, CA Metro Area
4955   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4956                          Manchester-Nashua, NH Metro Area
4957              Charlotte-Concord-Gastonia, NC-SC Metro Area
4958                                 Jackson, WY-ID Micro Area
4959                     Denver-Aurora-Lakewood, CO Metro Area
4960                             Salt Lake City, UT Metro Area
4961             San Francisco-Oakland-Berkeley, CA Metro Area
4962                               St. Louis, MO-IL Metro Area
4963                     Denver-Aurora-Lakewood, CO Metro Area
4964                                  Anchorage, AK Metro Area
4965                                                      <NA>
4966                                                      <NA>
4967                  Orlando-Kissimmee-Sanford, FL Metro Area
4968                    Portland-South Portland, ME Metro Area
4969          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4970        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4971           Houston-The Woodlands-Sugar Land, TX Metro Area
4972                    Seattle-Tacoma-Bellevue, WA Metro Area
4973                                    El Paso, TX Metro Area
4974                           Cleveland-Elyria, OH Metro Area
4975                Dallas-Fort Worth-Arlington, TX Metro Area
4976                                 Charleston, WV Metro Area
4977                                 Fort Wayne, IN Metro Area
4978              Charlotte-Concord-Gastonia, NC-SC Metro Area
4979                                                      <NA>
4980                                      Kapaa, HI Micro Area
4981                                       Reno, NV Metro Area
4982           Houston-The Woodlands-Sugar Land, TX Metro Area
4983           Riverside-San Bernardino-Ontario, CA Metro Area
4984                       New Orleans-Metairie, LA Metro Area
4985                 Boston-Cambridge-Newton, MA-NH Metro Area
4986              Charlotte-Concord-Gastonia, NC-SC Metro Area
4987                           Champaign-Urbana, IL Metro Area
4988                  Orlando-Kissimmee-Sanford, FL Metro Area
4989              Charlotte-Concord-Gastonia, NC-SC Metro Area
4990              Charlotte-Concord-Gastonia, NC-SC Metro Area
4991                                  Kalispell, MT Micro Area
4992                     Denver-Aurora-Lakewood, CO Metro Area
4993                             Salt Lake City, UT Metro Area
4994                                                      <NA>
4995                      Phoenix-Mesa-Chandler, AZ Metro Area
4996             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4997 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4998             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4999             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
     total_populationE.y total_populationM.y age_distributionE.y
1                4375604                  NA             2148947
2                4375604                  NA             2148947
3                4375604                  NA             2148947
4                4375604                  NA             2148947
5                4692242                  NA             2342253
6                4864209                  NA             2434382
7                4375604                  NA             2148947
8                6123949                  NA             3001027
9                4375604                  NA             2148947
10               4375604                  NA             2148947
11               4375604                  NA             2148947
12               4375604                  NA             2148947
13               2505312                  NA             1250855
14               4864209                  NA             2434382
15               1981584                  NA             1011796
16               1981584                  NA             1011796
17               4375604                  NA             2148947
18                812506                  NA              397560
19               1163462                  NA              568061
20                181055                  NA               90237
21               3678328                  NA             1837913
22               4610050                  NA             2315218
23               1670949                  NA              818990
24               1613587                  NA              790463
25               6123949                  NA             3001027
26                469484                  NA              227358
27              19908595                  NA             9713298
28                 82044                  NA               42677
29                591397                  NA              285117
30              13111917                  NA             6515114
31               2505312                  NA             1250855
32               1420825                  NA              698689
33               2394673                  NA             1181313
34               6123949                  NA             3001027
35               4692242                  NA             2342253
36               2959386                  NA             1493164
37              19908595                  NA             9713298
38               3289701                  NA             1667851
39               4001701                  NA             2024424
40               3289701                  NA             1667851
41               2394673                  NA             1181313
42                304252                  NA              154587
43              19908595                  NA             9713298
44              19908595                  NA             9713298
45               6094752                  NA             2965233
46               7673379                  NA             3806912
47                479865                  NA              235485
48               2296377                  NA             1160944
49               2253528                  NA             1113732
50               2190750                  NA             1084347
51               9566955                  NA             4718471
52               3289701                  NA             1667851
53                658694                  NA              322943
54               6123949                  NA             3001027
55               1010100                  NA              512085
56               1163462                  NA              568061
57                277944                  NA              140783
58                119685                  NA               62534
59               4001701                  NA             2024424
60                711490                  NA              355020
61               4912449                  NA             2407307
62              19908595                  NA             9713298
63                251635                  NA              126980
64               6094752                  NA             2965233
65               6346083                  NA             3128067
66              19908595                  NA             9713298
67               1264357                  NA              612537
68               2570862                  NA             1280273
69              13111917                  NA             6515114
70               1008280                  NA              506526
71                158478                  NA               79833
72               4610050                  NA             2315218
73                416839                  NA              205169
74               4912449                  NA             2407307
75               2679298                  NA             1318555
76                330119                  NA              161252
77                901729                  NA              444836
78               1215703                 422              594920
79               4375604                  NA             2148947
80               1568940                  NA              770847
81               7673379                  NA             3806912
82               1335804                  NA              641128
83               2840005                  NA             1374325
84               2137223                  NA             1061042
85               1264357                  NA              612537
86               1798025                  NA              886709
87               2365501                  NA             1162773
88               6123949                  NA             3001027
89               2679298                  NA             1318555
90               2265926                  NA             1137581
91               3289701                  NA             1667851
92               2394673                  NA             1181313
93               1420825                  NA              698689
94               2137223                  NA             1061042
95               2679298                  NA             1318555
96               2505312                  NA             1250855
97                966688                  NA              483251
98                676035                  NA              330879
99               2109957                  NA             1038760
100             19908595                  NA             9713298
101              1254675                  NA              635422
102               844461                  NA              407362
103               288639                  NA              146836
104              4912449                  NA             2407307
105              2109957                  NA             1038760
106              1042393                  NA              516095
107             13111917                  NA             6515114
108             13111917                  NA             6515114
109              9566955                  NA             4718471
110               775169                  NA              372915
111              2079759                  NA             1012336
112              1087068                  NA              546278
113              6232894                  NA             3033772
114             13111917                  NA             6515114
115              7142603                  NA             3563435
116               261426                  NA              128595
117             19908595                  NA             9713298
118             19908595                  NA             9713298
119              2959386                  NA             1493164
120               202163                  NA              100828
121             19908595                  NA             9713298
122             19908595                  NA             9713298
123             19908595                  NA             9713298
124             19908595                  NA             9713298
125             19908595                  NA             9713298
126                73511                  NA               36809
127              1254675                  NA              635422
128             13111917                  NA             6515114
129               585485                  NA              292820
130               585485                  NA              292820
131                35159                  NA               18160
132              4692242                  NA             2342253
133               755081                  NA              384572
134             19908595                  NA             9713298
135             19908595                  NA             9713298
136               490769                  NA              249622
137               771602                  NA              388362
138               203686                  NA              113368
139              2253528                  NA             1113732
140               658694                  NA              322943
141              2079759                  NA             1012336
142              3194310                  NA             1562880
143               658694                  NA              322943
144              2265926                  NA             1137581
145               291491                  NA              148126
146              1215703                 422              594920
147             19908595                  NA             9713298
148              2296377                  NA             1160944
149              2265926                  NA             1137581
150               612898                  NA              299409
151              1316145                  NA              640643
152              2570862                  NA             1280273
153             13111917                  NA             6515114
154             19908595                  NA             9713298
155              4912449                  NA             2407307
156             13111917                  NA             6515114
157              1215703                 422              594920
158              1163462                  NA              568061
159             19908595                  NA             9713298
160              1316145                  NA              640643
161             13111917                  NA             6515114
162              1163462                  NA              568061
163              1316145                  NA              640643
164              2679298                  NA             1318555
165             13111917                  NA             6515114
166               399335                  NA              205955
167               105950                  NA               53095
168             13111917                  NA             6515114
169               118541                  NA               59633
170                25381                 138               13207
171              1428923                  NA              708697
172              1087068                  NA              546278
173             13111917                  NA             6515114
174              4864209                  NA             2434382
175              3289701                  NA             1667851
176              4001701                  NA             2024424
177             19908595                  NA             9713298
178               771602                  NA              388362
179               585485                  NA              292820
180              4864209                  NA             2434382
181              4692242                  NA             2342253
182              2394673                  NA             1181313
183             19908595                  NA             9713298
184             19908595                  NA             9713298
185             19908595                  NA             9713298
186              4912449                  NA             2407307
187               749290                  NA              363653
188               869755                  NA              427134
189              2505312                  NA             1250855
190               515954                  NA              253400
191              1010100                  NA              512085
192              6346083                  NA             3128067
193              2813523                  NA             1375126
194              2679298                  NA             1318555
195               139042                  NA               68498
196              2679298                  NA             1318555
197              2679298                  NA             1318555
198               328011                  NA              164852
199              3194310                  NA             1562880
200              1042393                  NA              516095
201              2959386                  NA             1493164
202              4692242                  NA             2342253
203               884359                  NA              435364
204               275693                  NA              137408
205              2959386                  NA             1493164
206               113854                  NA               53949
207               772902                  NA              380685
208               330119                  NA              161252
209              6346083                  NA             3128067
210              6123949                  NA             3001027
211               496299                  NA              240510
212               406575                  NA              197548
213              1017724                  NA              503252
214              3678328                  NA             1837913
215              3678328                  NA             1837913
216              3678328                  NA             1837913
217              3678328                  NA             1837913
218              3678328                  NA             1837913
219              3678328                  NA             1837913
220              7673379                  NA             3806912
221              6123949                  NA             3001027
222               772902                  NA              380685
223              3678328                  NA             1837913
224              3678328                  NA             1837913
225              3678328                  NA             1837913
226               552916                  NA              270938
227              3678328                  NA             1837913
228              3678328                  NA             1837913
229              3678328                  NA             1837913
230              3678328                  NA             1837913
231              3678328                  NA             1837913
232              3678328                  NA             1837913
233              3678328                  NA             1837913
234              3678328                  NA             1837913
235              3678328                  NA             1837913
236              3678328                  NA             1837913
237               538985                  NA              265985
238              1264357                  NA              612537
239              1264357                  NA              612537
240             13111917                  NA             6515114
241              1114368                  NA              538428
242              2668688                  NA             1305000
243              1420825                  NA              698689
244              4692242                  NA             2342253
245               510290                  NA              256202
246              2679298                  NA             1318555
247              4610050                  NA             2315218
248               218515                  NA              108665
249              9566955                  NA             4718471
250              1282588                  NA              630858
251               658694                  NA              322943
252              9566955                  NA             4718471
253              9566955                  NA             4718471
254               291491                  NA              148126
255             13111917                  NA             6515114
256               711490                  NA              355020
257               803398                  NA              394257
258              2109957                  NA             1038760
259              4610050                  NA             2315218
260              4912449                  NA             2407307
261              2190750                  NA             1084347
262               915968                  NA              453044
263               490769                  NA              249622
264               915968                  NA              453044
265              6123949                  NA             3001027
266              6232894                  NA             3033772
267               225911                  NA              111978
268               552916                  NA              270938
269              4912449                  NA             2407307
270               323992                  NA              159346
271              1990873                  NA              978574
272              6346083                  NA             3128067
273              2265926                  NA             1137581
274              1420825                  NA              698689
275              1420825                  NA              698689
276              1420825                  NA              698689
277              1420825                  NA              698689
278              4692242                  NA             2342253
279              1420825                  NA              698689
280              1420825                  NA              698689
281              7673379                  NA             3806912
282               225745                  NA              112032
283               772902                  NA              380685
284               328011                  NA              164852
285              3289701                  NA             1667851
286              2679298                  NA             1318555
287              3194310                  NA             1562880
288               522537                  NA              259930
289              4001701                  NA             2024424
290              2840005                  NA             1374325
291              6346083                  NA             3128067
292              4001701                  NA             2024424
293              4001701                  NA             2024424
294              1568940                  NA              770847
295              4001701                  NA             2024424
296              4001701                  NA             2024424
297               183297                  NA               91287
298              4001701                  NA             2024424
299              1990873                  NA              978574
300              2253528                  NA             1113732
301              6123949                  NA             3001027
302              4375604                  NA             2148947
303              4375604                  NA             2148947
304              1254675                  NA              635422
305              1254675                  NA              635422
306               275693                  NA              137408
307              1568940                  NA              770847
308              2137223                  NA             1061042
309              1254675                  NA              635422
310              1254675                  NA              635422
311              1254675                  NA              635422
312              1254675                  NA              635422
313              1254675                  NA              635422
314             19908595                  NA             9713298
315              1254675                  NA              635422
316              1254675                  NA              635422
317              1254675                  NA              635422
318              1254675                  NA              635422
319              1254675                  NA              635422
320              1990873                  NA              978574
321              3678328                  NA             1837913
322               564466                  NA              276108
323              1087068                  NA              546278
324               382218                  NA              189292
325               199352                  NA               99597
326              1282588                  NA              630858
327              2813523                  NA             1375126
328               585485                  NA              292820
329               328011                  NA              164852
330               277944                  NA              140783
331               189821                  NA               92665
332              2265926                  NA             1137581
333              3194310                  NA             1562880
334              3194310                  NA             1562880
335              3194310                  NA             1562880
336              6094752                  NA             2965233
337              6094752                  NA             2965233
338              2296377                  NA             1160944
339              2840005                  NA             1374325
340              2079759                  NA             1012336
341              3289701                  NA             1667851
342              4610050                  NA             2315218
343              2668688                  NA             1305000
344              2959386                  NA             1493164
345              2959386                  NA             1493164
346             19908595                  NA             9713298
347              2265926                  NA             1137581
348              2679298                  NA             1318555
349              4610050                  NA             2315218
350              1335804                  NA              641128
351              6123949                  NA             3001027
352              2505312                  NA             1250855
353              6232894                  NA             3033772
354              6232894                  NA             3033772
355              6232894                  NA             3033772
356              4864209                  NA             2434382
357              1420825                  NA              698689
358              3289701                  NA             1667851
359              2570862                  NA             1280273
360              2073546                  NA              975289
361             19908595                  NA             9713298
362              2668688                  NA             1305000
363              2668688                  NA             1305000
364              1010100                  NA              512085
365              2265926                  NA             1137581
366              4864209                  NA             2434382
367              6123949                  NA             3001027
368              7142603                  NA             3563435
369             19908595                  NA             9713298
370              2959386                  NA             1493164
371             19908595                  NA             9713298
372             19908595                  NA             9713298
373             19908595                  NA             9713298
374               469484                  NA              227358
375               775169                  NA              372915
376               208406                  NA              100899
377              6346083                  NA             3128067
378              6346083                  NA             3128067
379               884359                  NA              435364
380               772902                  NA              380685
381              7142603                  NA             3563435
382              4692242                  NA             2342253
383              1990873                  NA              978574
384              4692242                  NA             2342253
385              4692242                  NA             2342253
386              3194310                  NA             1562880
387              1613587                  NA              790463
388              4001701                  NA             2024424
389              1086859                  NA              532509
390              4001701                  NA             2024424
391              2813523                  NA             1375126
392               658694                  NA              322943
393              2109957                  NA             1038760
394              4864209                  NA             2434382
395               749290                  NA              363653
396             19908595                  NA             9713298
397               884359                  NA              435364
398              2365501                  NA             1162773
399              1215703                 422              594920
400                   NA                  NA                  NA
401              2679298                  NA             1318555
402              2296377                  NA             1160944
403              2296377                  NA             1160944
404              2296377                  NA             1160944
405              1282588                  NA              630858
406              2265926                  NA             1137581
407              6094752                  NA             2965233
408               658694                  NA              322943
409              4912449                  NA             2407307
410               251635                  NA              126980
411             19908595                  NA             9713298
412             13111917                  NA             6515114
413              1428923                  NA              708697
414              1008280                  NA              506526
415               550596                  NA              277195
416              2505312                  NA             1250855
417              2679298                  NA             1318555
418              2253528                  NA             1113732
419              2679298                  NA             1318555
420              3194310                  NA             1562880
421              2253528                  NA             1113732
422               646794                  NA              322648
423               206072                  NA               99873
424              6346083                  NA             3128067
425              6346083                  NA             3128067
426              7673379                  NA             3806912
427              7673379                  NA             3806912
428              1114368                  NA              538428
429              1981584                  NA             1011796
430              2679298                  NA             1318555
431              6123949                  NA             3001027
432              1316145                  NA              640643
433              1017724                  NA              503252
434             13111917                  NA             6515114
435              4864209                  NA             2434382
436              6123949                  NA             3001027
437               755081                  NA              384572
438               585485                  NA              292820
439                42151                  NA               21738
440               262124                  NA              126417
441              9566955                  NA             4718471
442               152640                  NA               75942
443              1613587                  NA              790463
444               277944                  NA              140783
445              1282588                  NA              630858
446               658694                  NA              322943
447              2296377                  NA             1160944
448              4610050                  NA             2315218
449               479865                  NA              235485
450              6346083                  NA             3128067
451              2296377                  NA             1160944
452              1981584                  NA             1011796
453              2190750                  NA             1084347
454              6123949                  NA             3001027
455              1990873                  NA              978574
456              2079759                  NA             1012336
457              2190750                  NA             1084347
458               419715                  NA              207197
459              1264357                  NA              612537
460               831913                  NA              404751
461               515954                  NA              253400
462              9566955                  NA             4718471
463              9566955                  NA             4718471
464              9566955                  NA             4718471
465               490769                  NA              249622
466              1087068                  NA              546278
467              9566955                  NA             4718471
468               550596                  NA              277195
469             13111917                  NA             6515114
470                82044                  NA               42677
471              1282588                  NA              630858
472              7142603                  NA             3563435
473               612898                  NA              299409
474              1420825                  NA              698689
475              1264357                  NA              612537
476               915968                  NA              453044
477              6094752                  NA             2965233
478               538985                  NA              265985
479              2959386                  NA             1493164
480              2265926                  NA             1137581
481              4001701                  NA             2024424
482               274339                  NA              133897
483               274339                  NA              133897
484               274339                  NA              133897
485              6094752                  NA             2965233
486              2296377                  NA             1160944
487              6094752                  NA             2965233
488             13111917                  NA             6515114
489              6094752                  NA             2965233
490              6094752                  NA             2965233
491              1215703                 422              594920
492              1990873                  NA              978574
493              1990873                  NA              978574
494              1990873                  NA              978574
495              1990873                  NA              978574
496              4912449                  NA             2407307
497              4912449                  NA             2407307
498              4912449                  NA             2407307
499              4912449                  NA             2407307
500              4912449                  NA             2407307
501             13111917                  NA             6515114
502              2840005                  NA             1374325
503              2959386                  NA             1493164
504              2840005                  NA             1374325
505              2840005                  NA             1374325
506              2840005                  NA             1374325
507              2840005                  NA             1374325
508              2079759                  NA             1012336
509              2679298                  NA             1318555
510              2079759                  NA             1012336
511              2079759                  NA             1012336
512              7142603                  NA             3563435
513              2668688                  NA             1305000
514              2137223                  NA             1061042
515              2840005                  NA             1374325
516              7673379                  NA             3806912
517              7673379                  NA             3806912
518              7673379                  NA             3806912
519              7673379                  NA             3806912
520              9566955                  NA             4718471
521              4375604                  NA             2148947
522             19908595                  NA             9713298
523             19908595                  NA             9713298
524             19908595                  NA             9713298
525             19908595                  NA             9713298
526             19908595                  NA             9713298
527              6123949                  NA             3001027
528              6123949                  NA             3001027
529              6123949                  NA             3001027
530              6123949                  NA             3001027
531              6123949                  NA             3001027
532              6123949                  NA             3001027
533              6123949                  NA             3001027
534              6123949                  NA             3001027
535              7142603                  NA             3563435
536              7142603                  NA             3563435
537              2109957                  NA             1038760
538              2109957                  NA             1038760
539              2109957                  NA             1038760
540              2265926                  NA             1137581
541              2265926                  NA             1137581
542              6094752                  NA             2965233
543               775169                  NA              372915
544              2265926                  NA             1137581
545              2265926                  NA             1137581
546              2265926                  NA             1137581
547             13111917                  NA             6515114
548             13111917                  NA             6515114
549              3194310                  NA             1562880
550             13111917                  NA             6515114
551             13111917                  NA             6515114
552              2365501                  NA             1162773
553              2365501                  NA             1162773
554              2190750                  NA             1084347
555              2190750                  NA             1084347
556              2679298                  NA             1318555
557              2679298                  NA             1318555
558              2679298                  NA             1318555
559              4692242                  NA             2342253
560              2679298                  NA             1318555
561              2679298                  NA             1318555
562              1568940                  NA              770847
563              6232894                  NA             3033772
564              1264357                  NA              612537
565             19908595                  NA             9713298
566              9566955                  NA             4718471
567              9566955                  NA             4718471
568              9566955                  NA             4718471
569              9566955                  NA             4718471
570              2365501                  NA             1162773
571              2365501                  NA             1162773
572              2365501                  NA             1162773
573              3289701                  NA             1667851
574              2073546                  NA              975289
575              2813523                  NA             1375126
576              7142603                  NA             3563435
577              3194310                  NA             1562880
578              3194310                  NA             1562880
579              3194310                  NA             1562880
580              3194310                  NA             1562880
581               844461                  NA              407362
582              1282588                  NA              630858
583               288639                  NA              146836
584              2265926                  NA             1137581
585              4864209                  NA             2434382
586               901729                  NA              444836
587              2265926                  NA             1137581
588             19908595                  NA             9713298
589              3678328                  NA             1837913
590              6232894                  NA             3033772
591              6123949                  NA             3001027
592              1990873                  NA              978574
593             19908595                  NA             9713298
594             19908595                  NA             9713298
595              3194310                  NA             1562880
596               288639                  NA              146836
597              2813523                  NA             1375126
598              2570862                  NA             1280273
599               803398                  NA              394257
600              2840005                  NA             1374325
601              2668688                  NA             1305000
602              2668688                  NA             1305000
603              2668688                  NA             1305000
604              2668688                  NA             1305000
605              2668688                  NA             1305000
606              6123949                  NA             3001027
607              1428923                  NA              708697
608              2679298                  NA             1318555
609              2109957                  NA             1038760
610              1335804                  NA              641128
611              4864209                  NA             2434382
612               700578                  NA              343022
613              2079759                  NA             1012336
614               812506                  NA              397560
615              2296377                  NA             1160944
616              6346083                  NA             3128067
617              6346083                  NA             3128067
618              6346083                  NA             3128067
619              4692242                  NA             2342253
620              7673379                  NA             3806912
621              6346083                  NA             3128067
622             19908595                  NA             9713298
623              1670949                  NA              818990
624              6094752                  NA             2965233
625              4375604                  NA             2148947
626               552916                  NA              270938
627               406575                  NA              197548
628               749290                  NA              363653
629               610723                  NA              300904
630              4375604                  NA             2148947
631              2190750                  NA             1084347
632              9566955                  NA             4718471
633              1568940                  NA              770847
634               405280                  NA              196717
635               812506                  NA              397560
636              4912449                  NA             2407307
637              2365501                  NA             1162773
638              7673379                  NA             3806912
639               966688                  NA              483251
640             19908595                  NA             9713298
641              6123949                  NA             3001027
642              6094752                  NA             2965233
643               772902                  NA              380685
644              1163462                  NA              568061
645              2365501                  NA             1162773
646               863166                  NA              427343
647              1798025                  NA              886709
648              1798025                  NA              886709
649              1613587                  NA              790463
650              1613587                  NA              790463
651               422733                  NA              212276
652              4912449                  NA             2407307
653              1613587                  NA              790463
654               469484                  NA              227358
655              1420825                  NA              698689
656               522537                  NA              259930
657               203686                  NA              113368
658               593318                  NA              293750
659              6123949                  NA             3001027
660               803398                  NA              394257
661              7142603                  NA             3563435
662               711490                  NA              355020
663               330119                  NA              161252
664               552916                  NA              270938
665              1264357                  NA              612537
666               591397                  NA              285117
667              1264357                  NA              612537
668               515954                  NA              253400
669              6232894                  NA             3033772
670              6232894                  NA             3033772
671              1114368                  NA              538428
672              6232894                  NA             3033772
673              6232894                  NA             3033772
674              6232894                  NA             3033772
675              6232894                  NA             3033772
676              2959386                  NA             1493164
677              3289701                  NA             1667851
678              4001701                  NA             2024424
679              2109957                  NA             1038760
680             19908595                  NA             9713298
681              9566955                  NA             4718471
682              1215703                 422              594920
683               884359                  NA              435364
684              1670949                  NA              818990
685              1420825                  NA              698689
686              2813523                  NA             1375126
687               658694                  NA              322943
688              1282588                  NA              630858
689               915968                  NA              453044
690              7142603                  NA             3563435
691               339707                  NA              171627
692               901729                  NA              444836
693              4610050                  NA             2315218
694                79008                  NA               40763
695              1010100                  NA              512085
696              4001701                  NA             2024424
697               915968                  NA              453044
698              1990873                  NA              978574
699              2190750                  NA             1084347
700                   NA                  NA                  NA
701               222604                  NA              109360
702              4610050                  NA             2315218
703               445213                  NA              223753
704             13111917                  NA             6515114
705               771602                  NA              388362
706               771602                  NA              388362
707               771602                  NA              388362
708              6094752                  NA             2965233
709               771602                  NA              388362
710               771602                  NA              388362
711               202163                  NA              100828
712             13111917                  NA             6515114
713               771602                  NA              388362
714               488436                  NA              240478
715             13111917                  NA             6515114
716             13111917                  NA             6515114
717               164765                  21               82304
718               119685                  NA               62534
719              2840005                  NA             1374325
720               119685                  NA               62534
721              1428923                  NA              708697
722               477577                  NA              239362
723              4912449                  NA             2407307
724             19908595                  NA             9713298
725               755081                  NA              384572
726             13111917                  NA             6515114
727              7673379                  NA             3806912
728              2959386                  NA             1493164
729              2959386                  NA             1493164
730              2959386                  NA             1493164
731              2959386                  NA             1493164
732              2959386                  NA             1493164
733              2959386                  NA             1493164
734              1042393                  NA              516095
735              1254675                  NA              635422
736              2365501                  NA             1162773
737               711490                  NA              355020
738               304252                  NA              154587
739               593318                  NA              293750
740               382218                  NA              189292
741              2959386                  NA             1493164
742              1008280                  NA              506526
743              1008280                  NA              506526
744              1008280                  NA              506526
745              1008280                  NA              506526
746               199352                  NA               99597
747              9566955                  NA             4718471
748               105950                  NA               53095
749              9566955                  NA             4718471
750              6123949                  NA             3001027
751               844461                  NA              407362
752              1613587                  NA              790463
753              4864209                  NA             2434382
754               585485                  NA              292820
755               585485                  NA              292820
756              4912449                  NA             2407307
757              1990873                  NA              978574
758              6123949                  NA             3001027
759              6123949                  NA             3001027
760              1981584                  NA             1011796
761               863166                  NA              427343
762                24944                  NA               13144
763              1254675                  NA              635422
764               139042                  NA               68498
765              7142603                  NA             3563435
766              7142603                  NA             3563435
767                95352                  NA               48019
768              2079759                  NA             1012336
769               251635                  NA              126980
770              6346083                  NA             3128067
771              2365501                  NA             1162773
772              9566955                  NA             4718471
773             13111917                  NA             6515114
774             13111917                  NA             6515114
775             13111917                  NA             6515114
776             13111917                  NA             6515114
777             13111917                  NA             6515114
778             13111917                  NA             6515114
779             13111917                  NA             6515114
780             13111917                  NA             6515114
781               869755                  NA              427134
782              4692242                  NA             2342253
783              2109957                  NA             1038760
784               261426                  NA              128595
785              2570862                  NA             1280273
786               678995                  NA              341280
787              3678328                  NA             1837913
788              3289701                  NA             1667851
789              1568940                  NA              770847
790              2265926                  NA             1137581
791               382218                  NA              189292
792               437609                  NA              223186
793               678995                  NA              341280
794              3678328                  NA             1837913
795              3678328                  NA             1837913
796                84423                  NA               43002
797               328011                  NA              164852
798              4692242                  NA             2342253
799                64701                  NA               32652
800               164765                  21               82304
801               567287                  NA              281431
802             19908595                  NA             9713298
803              1613587                  NA              790463
804               966688                  NA              483251
805              1670949                  NA              818990
806                36670                  NA               19879
807              4610050                  NA             2315218
808              2570862                  NA             1280273
809              4610050                  NA             2315218
810              6123949                  NA             3001027
811              9566955                  NA             4718471
812              9566955                  NA             4718471
813              9566955                  NA             4718471
814              9566955                  NA             4718471
815              2959386                  NA             1493164
816              2505312                  NA             1250855
817              2505312                  NA             1250855
818              2505312                  NA             1250855
819              2505312                  NA             1250855
820              2505312                  NA             1250855
821              2505312                  NA             1250855
822              2505312                  NA             1250855
823              2505312                  NA             1250855
824              2190750                  NA             1084347
825               202163                  NA              100828
826              4864209                  NA             2434382
827              4864209                  NA             2434382
828              2365501                  NA             1162773
829              1568940                  NA              770847
830              2265926                  NA             1137581
831               199352                  NA               99597
832              4610050                  NA             2315218
833               771602                  NA              388362
834               678995                  NA              341280
835               140356                  NA               72104
836              1335804                  NA              641128
837              4610050                  NA             2315218
838                83760                  NA               42020
839               242972                  NA              122440
840              2668688                  NA             1305000
841              1316145                  NA              640643
842               490769                  NA              249622
843              2394673                  NA             1181313
844              3289701                  NA             1667851
845              3289701                  NA             1667851
846              3289701                  NA             1667851
847              3289701                  NA             1667851
848              3289701                  NA             1667851
849              3289701                  NA             1667851
850              3289701                  NA             1667851
851               437609                  NA              223186
852               237830                  NA              117352
853               281712                  NA              142477
854              2265926                  NA             1137581
855               445213                  NA              223753
856              2813523                  NA             1375126
857               281712                  NA              142477
858              2265926                  NA             1137581
859              6123949                  NA             3001027
860              4001701                  NA             2024424
861              4001701                  NA             2024424
862              4001701                  NA             2024424
863              4001701                  NA             2024424
864              4692242                  NA             2342253
865              4692242                  NA             2342253
866              4692242                  NA             2342253
867              4692242                  NA             2342253
868              4692242                  NA             2342253
869              4692242                  NA             2342253
870              4692242                  NA             2342253
871              4692242                  NA             2342253
872              1981584                  NA             1011796
873              1981584                  NA             1011796
874              1981584                  NA             1011796
875              1981584                  NA             1011796
876              1981584                  NA             1011796
877              4375604                  NA             2148947
878              1042393                  NA              516095
879               202163                  NA              100828
880              1254675                  NA              635422
881                55983                  NA               28379
882              2679298                  NA             1318555
883               906883                  NA              464093
884               281712                  NA              142477
885              1010100                  NA              512085
886              2394673                  NA             1181313
887              2394673                  NA             1181313
888              2394673                  NA             1181313
889              1010100                  NA              512085
890               199352                  NA               99597
891              4001701                  NA             2024424
892             13111917                  NA             6515114
893              1114368                  NA              538428
894               323992                  NA              159346
895              7673379                  NA             3806912
896               488436                  NA              240478
897               488436                  NA              240478
898               488436                  NA              240478
899               966688                  NA              483251
900               966688                  NA              483251
901               399335                  NA              205955
902              1042393                  NA              516095
903              6346083                  NA             3128067
904             13111917                  NA             6515114
905               915968                  NA              453044
906               185147                  NA               92047
907              9566955                  NA             4718471
908               771602                  NA              388362
909               771602                  NA              388362
910               771602                  NA              388362
911               119685                  NA               62534
912               304252                  NA              154587
913              4375604                  NA             2148947
914             19908595                  NA             9713298
915              1264357                  NA              612537
916               118541                  NA               59633
917               105950                  NA               53095
918               585485                  NA              292820
919             19908595                  NA             9713298
920               445213                  NA              223753
921             19908595                  NA             9713298
922               585485                  NA              292820
923               222604                  NA              109360
924                83760                  NA               42020
925               158478                  NA               79833
926             13111917                  NA             6515114
927               222604                  NA              109360
928               222604                  NA              109360
929              4692242                  NA             2342253
930              4001701                  NA             2024424
931              4001701                  NA             2024424
932              4001701                  NA             2024424
933              4001701                  NA             2024424
934              2505312                  NA             1250855
935              2505312                  NA             1250855
936              4610050                  NA             2315218
937               867161                  NA              431851
938                47141                  NA               23954
939               199352                  NA               99597
940              3289701                  NA             1667851
941               445213                  NA              223753
942              4001701                  NA             2024424
943              4001701                  NA             2024424
944              4001701                  NA             2024424
945              4001701                  NA             2024424
946              4001701                  NA             2024424
947              4001701                  NA             2024424
948              4001701                  NA             2024424
949              4001701                  NA             2024424
950              4001701                  NA             2024424
951              4001701                  NA             2024424
952              4001701                  NA             2024424
953              4001701                  NA             2024424
954              4001701                  NA             2024424
955              4001701                  NA             2024424
956              4001701                  NA             2024424
957              4692242                  NA             2342253
958              1981584                  NA             1011796
959             13111917                  NA             6515114
960               488436                  NA              240478
961              2959386                  NA             1493164
962              2296377                  NA             1160944
963              1215703                 422              594920
964              6232894                  NA             3033772
965               105950                  NA               53095
966               118541                  NA               59633
967              6094752                  NA             2965233
968                   NA                  NA                  NA
969               242972                  NA              122440
970              2959386                  NA             1493164
971              2296377                  NA             1160944
972               966688                  NA              483251
973              2296377                  NA             1160944
974                97274                  NA               47217
975              4001701                  NA             2024424
976             13111917                  NA             6515114
977             19908595                  NA             9713298
978             13111917                  NA             6515114
979              2296377                  NA             1160944
980              1215703                 422              594920
981             13111917                  NA             6515114
982              1420825                  NA              698689
983               406575                  NA              197548
984               775169                  NA              372915
985              1114368                  NA              538428
986              2253528                  NA             1113732
987              6094752                  NA             2965233
988               771602                  NA              388362
989                35159                  NA               18160
990               199352                  NA               99597
991              4912449                  NA             2407307
992              2959386                  NA             1493164
993              2679298                  NA             1318555
994              1264357                  NA              612537
995              3194310                  NA             1562880
996               218515                  NA              108665
997              4912449                  NA             2407307
998                73511                  NA               36809
999               711490                  NA              355020
1000               73511                  NA               36809
1001             1163462                  NA              568061
1002            19908595                  NA             9713298
1003             1010100                  NA              512085
1004             1010100                  NA              512085
1005              164765                  21               82304
1006             2265926                  NA             1137581
1007             1264357                  NA              612537
1008             2365501                  NA             1162773
1009              189821                  NA               92665
1010              552916                  NA              270938
1011              339707                  NA              171627
1012             2079759                  NA             1012336
1013             2079759                  NA             1012336
1014              772902                  NA              380685
1015              490769                  NA              249622
1016              755081                  NA              384572
1017               59928                  NA               30012
1018            19908595                  NA             9713298
1019             6123949                  NA             3001027
1020             4912449                  NA             2407307
1021              288639                  NA              146836
1022             2959386                  NA             1493164
1023              445213                  NA              223753
1024            19908595                  NA             9713298
1025             2959386                  NA             1493164
1026             6346083                  NA             3128067
1027             1798025                  NA              886709
1028              291491                  NA              148126
1029             2959386                  NA             1493164
1030             2959386                  NA             1493164
1031             2959386                  NA             1493164
1032             2959386                  NA             1493164
1033             7673379                  NA             3806912
1034              181807                  NA               90224
1035             7142603                  NA             3563435
1036             2959386                  NA             1493164
1037              772902                  NA              380685
1038            19908595                  NA             9713298
1039              755081                  NA              384572
1040             2394673                  NA             1181313
1041             1990873                  NA              978574
1042              755081                  NA              384572
1043             1428923                  NA              708697
1044            19908595                  NA             9713298
1045             6123949                  NA             3001027
1046            19908595                  NA             9713298
1047             1254675                  NA              635422
1048               35159                  NA               18160
1049            19908595                  NA             9713298
1050            19908595                  NA             9713298
1051            19908595                  NA             9713298
1052            19908595                  NA             9713298
1053            19908595                  NA             9713298
1054            19908595                  NA             9713298
1055            19908595                  NA             9713298
1056            19908595                  NA             9713298
1057            19908595                  NA             9713298
1058            19908595                  NA             9713298
1059            19908595                  NA             9713298
1060              277944                  NA              140783
1061             4692242                  NA             2342253
1062                  NA                  NA                  NA
1063             6123949                  NA             3001027
1064              477577                  NA              239362
1065             6123949                  NA             3001027
1066             3194310                  NA             1562880
1067             2570862                  NA             1280273
1068              330119                  NA              161252
1069             2365501                  NA             1162773
1070             1282588                  NA              630858
1071              844461                  NA              407362
1072              181055                  NA               90237
1073             1264357                  NA              612537
1074             1282588                  NA              630858
1075             2394673                  NA             1181313
1076             2840005                  NA             1374325
1077             2679298                  NA             1318555
1078             6346083                  NA             3128067
1079             6346083                  NA             3128067
1080             6346083                  NA             3128067
1081             6346083                  NA             3128067
1082             6346083                  NA             3128067
1083             6346083                  NA             3128067
1084             6346083                  NA             3128067
1085             6346083                  NA             3128067
1086              304252                  NA              154587
1087             6346083                  NA             3128067
1088              915968                  NA              453044
1089             7142603                  NA             3563435
1090             7142603                  NA             3563435
1091             7142603                  NA             3563435
1092             7142603                  NA             3563435
1093               98430                  NA               48073
1094             7142603                  NA             3563435
1095             7142603                  NA             3563435
1096             7142603                  NA             3563435
1097              803398                  NA              394257
1098             1428923                  NA              708697
1099             6346083                  NA             3128067
1100              552916                  NA              270938
1101             1086859                  NA              532509
1102             1613587                  NA              790463
1103             2570862                  NA             1280273
1104            19908595                  NA             9713298
1105             2840005                  NA             1374325
1106             2137223                  NA             1061042
1107             1316145                  NA              640643
1108             2265926                  NA             1137581
1109              152640                  NA               75942
1110              422733                  NA              212276
1111             1990873                  NA              978574
1112             1568940                  NA              770847
1113             2079759                  NA             1012336
1114             2109957                  NA             1038760
1115             2679298                  NA             1318555
1116             3194310                  NA             1562880
1117             2137223                  NA             1061042
1118             2253528                  NA             1113732
1119              678995                  NA              341280
1120             2253528                  NA             1113732
1121             4375604                  NA             2148947
1122             2253528                  NA             1113732
1123              772902                  NA              380685
1124            13111917                  NA             6515114
1125            13111917                  NA             6515114
1126             4375604                  NA             2148947
1127             1981584                  NA             1011796
1128             2505312                  NA             1250855
1129             2959386                  NA             1493164
1130             2394673                  NA             1181313
1131             1420825                  NA              698689
1132             2840005                  NA             1374325
1133              164765                  21               82304
1134              772902                  NA              380685
1135             1798025                  NA              886709
1136             4864209                  NA             2434382
1137             3289701                  NA             1667851
1138              405280                  NA              196717
1139             6123949                  NA             3001027
1140              479865                  NA              235485
1141             6346083                  NA             3128067
1142             1114368                  NA              538428
1143              185147                  NA               92047
1144              202163                  NA              100828
1145              658694                  NA              322943
1146             1254675                  NA              635422
1147             2813523                  NA             1375126
1148             1215703                 422              594920
1149             2109957                  NA             1038760
1150             9566955                  NA             4718471
1151             9566955                  NA             4718471
1152             9566955                  NA             4718471
1153             9566955                  NA             4718471
1154             4610050                  NA             2315218
1155             9566955                  NA             4718471
1156             9566955                  NA             4718471
1157             2959386                  NA             1493164
1158             9566955                  NA             4718471
1159             9566955                  NA             4718471
1160             9566955                  NA             4718471
1161             9566955                  NA             4718471
1162             9566955                  NA             4718471
1163             9566955                  NA             4718471
1164               73511                  NA               36809
1165             1335804                  NA              641128
1166             2137223                  NA             1061042
1167              275693                  NA              137408
1168             2505312                  NA             1250855
1169             6346083                  NA             3128067
1170             4864209                  NA             2434382
1171             1163462                  NA              568061
1172              564466                  NA              276108
1173              119685                  NA               62534
1174             1282588                  NA              630858
1175             1990873                  NA              978574
1176              401702                  NA              198867
1177              222604                  NA              109360
1178             2570862                  NA             1280273
1179             7673379                  NA             3806912
1180             4610050                  NA             2315218
1181              382983                  NA              189968
1182             7673379                  NA             3806912
1183              102555                  NA               50314
1184              225745                  NA              112032
1185              275693                  NA              137408
1186              812506                  NA              397560
1187             4692242                  NA             2342253
1188            19908595                  NA             9713298
1189             1670949                  NA              818990
1190             4692242                  NA             2342253
1191              552916                  NA              270938
1192             6232894                  NA             3033772
1193             2813523                  NA             1375126
1194             4692242                  NA             2342253
1195             1670949                  NA              818990
1196             1086859                  NA              532509
1197              382983                  NA              189968
1198             6346083                  NA             3128067
1199             1215703                 422              594920
1200             6123949                  NA             3001027
1201             3194310                  NA             1562880
1202             2253528                  NA             1113732
1203             4610050                  NA             2315218
1204             1042393                  NA              516095
1205              181055                  NA               90237
1206              915968                  NA              453044
1207               73511                  NA               36809
1208              915968                  NA              453044
1209              915968                  NA              453044
1210              915968                  NA              453044
1211              901729                  NA              444836
1212             2679298                  NA             1318555
1213             6123949                  NA             3001027
1214              772902                  NA              380685
1215              772902                  NA              380685
1216             2394673                  NA             1181313
1217              901729                  NA              444836
1218             2394673                  NA             1181313
1219              901729                  NA              444836
1220              269278                 239              135933
1221              269278                 239              135933
1222             6094752                  NA             2965233
1223             6094752                  NA             2965233
1224              867161                  NA              431851
1225             2265926                  NA             1137581
1226            13111917                  NA             6515114
1227             4864209                  NA             2434382
1228             6094752                  NA             2965233
1229             6094752                  NA             2965233
1230             6094752                  NA             2965233
1231             6094752                  NA             2965233
1232             6094752                  NA             2965233
1233            13111917                  NA             6515114
1234             4692242                  NA             2342253
1235             1254675                  NA              635422
1236             6094752                  NA             2965233
1237             6094752                  NA             2965233
1238             6094752                  NA             2965233
1239             6094752                  NA             2965233
1240             6094752                  NA             2965233
1241             6094752                  NA             2965233
1242             1017724                  NA              503252
1243             6094752                  NA             2965233
1244             6094752                  NA             2965233
1245              164765                  21               82304
1246             6094752                  NA             2965233
1247             6094752                  NA             2965233
1248             6094752                  NA             2965233
1249             6094752                  NA             2965233
1250             6094752                  NA             2965233
1251             1010100                  NA              512085
1252             6094752                  NA             2965233
1253             6094752                  NA             2965233
1254             6094752                  NA             2965233
1255             6094752                  NA             2965233
1256             4912449                  NA             2407307
1257            19908595                  NA             9713298
1258              966688                  NA              483251
1259              406575                  NA              197548
1260             2296377                  NA             1160944
1261             6123949                  NA             3001027
1262              966688                  NA              483251
1263             4692242                  NA             2342253
1264             4001701                  NA             2024424
1265             4610050                  NA             2315218
1266             3289701                  NA             1667851
1267             2296377                  NA             1160944
1268             2296377                  NA             1160944
1269             2296377                  NA             1160944
1270             2296377                  NA             1160944
1271             2296377                  NA             1160944
1272             2296377                  NA             1160944
1273             2296377                  NA             1160944
1274             2296377                  NA             1160944
1275             2296377                  NA             1160944
1276             2296377                  NA             1160944
1277             2296377                  NA             1160944
1278             2296377                  NA             1160944
1279             2296377                  NA             1160944
1280             2296377                  NA             1160944
1281             2296377                  NA             1160944
1282             2296377                  NA             1160944
1283             2296377                  NA             1160944
1284             2296377                  NA             1160944
1285             1670949                  NA              818990
1286             2265926                  NA             1137581
1287             4610050                  NA             2315218
1288             1215703                 422              594920
1289             1215703                 422              594920
1290             1114368                  NA              538428
1291             1114368                  NA              538428
1292             1114368                  NA              538428
1293             1114368                  NA              538428
1294             1114368                  NA              538428
1295             1114368                  NA              538428
1296              226523                  NA              112654
1297             1990873                  NA              978574
1298             1990873                  NA              978574
1299             1990873                  NA              978574
1300               47759                  NA               23950
1301             1990873                  NA              978574
1302             1990873                  NA              978574
1303             1990873                  NA              978574
1304             1990873                  NA              978574
1305             1990873                  NA              978574
1306              490769                  NA              249622
1307             1990873                  NA              978574
1308            13111917                  NA             6515114
1309             1990873                  NA              978574
1310             1990873                  NA              978574
1311             1990873                  NA              978574
1312             1990873                  NA              978574
1313             1990873                  NA              978574
1314             1990873                  NA              978574
1315             1990873                  NA              978574
1316             1990873                  NA              978574
1317             1990873                  NA              978574
1318             1990873                  NA              978574
1319             1990873                  NA              978574
1320             1990873                  NA              978574
1321             1990873                  NA              978574
1322             1990873                  NA              978574
1323             1990873                  NA              978574
1324             1990873                  NA              978574
1325             1010100                  NA              512085
1326              164765                  21               82304
1327             1990873                  NA              978574
1328             1990873                  NA              978574
1329             1990873                  NA              978574
1330             1990873                  NA              978574
1331             1990873                  NA              978574
1332             1990873                  NA              978574
1333             1163462                  NA              568061
1334             6123949                  NA             3001027
1335              771602                  NA              388362
1336              771602                  NA              388362
1337              771602                  NA              388362
1338              771602                  NA              388362
1339              490769                  NA              249622
1340             7673379                  NA             3806912
1341             7142603                  NA             3563435
1342              803398                  NA              394257
1343              330119                  NA              161252
1344             2109957                  NA             1038760
1345             1613587                  NA              790463
1346             4864209                  NA             2434382
1347              406575                  NA              197548
1348             2959386                  NA             1493164
1349            13111917                  NA             6515114
1350             3678328                  NA             1837913
1351             4864209                  NA             2434382
1352             1981584                  NA             1011796
1353             4912449                  NA             2407307
1354              844461                  NA              407362
1355             1163462                  NA              568061
1356             1163462                  NA              568061
1357             1163462                  NA              568061
1358            13111917                  NA             6515114
1359             1264357                  NA              612537
1360             1420825                  NA              698689
1361             3194310                  NA             1562880
1362             1428923                  NA              708697
1363            13111917                  NA             6515114
1364            13111917                  NA             6515114
1365            13111917                  NA             6515114
1366            13111917                  NA             6515114
1367            13111917                  NA             6515114
1368            13111917                  NA             6515114
1369             2840005                  NA             1374325
1370             2840005                  NA             1374325
1371             4001701                  NA             2024424
1372             2840005                  NA             1374325
1373             2840005                  NA             1374325
1374             2840005                  NA             1374325
1375             2840005                  NA             1374325
1376             2840005                  NA             1374325
1377             2840005                  NA             1374325
1378             2840005                  NA             1374325
1379             2840005                  NA             1374325
1380             2840005                  NA             1374325
1381             2840005                  NA             1374325
1382             2073546                  NA              975289
1383             2840005                  NA             1374325
1384             2840005                  NA             1374325
1385             2840005                  NA             1374325
1386              202163                  NA              100828
1387             2840005                  NA             1374325
1388             6346083                  NA             3128067
1389             2840005                  NA             1374325
1390             2840005                  NA             1374325
1391             2840005                  NA             1374325
1392              202163                  NA              100828
1393             2840005                  NA             1374325
1394             2840005                  NA             1374325
1395             2840005                  NA             1374325
1396             2840005                  NA             1374325
1397             2840005                  NA             1374325
1398             2840005                  NA             1374325
1399             2840005                  NA             1374325
1400              772902                  NA              380685
1401              119685                  NA               62534
1402             2190750                  NA             1084347
1403             1568940                  NA              770847
1404              803398                  NA              394257
1405              755081                  NA              384572
1406              803398                  NA              394257
1407            13111917                  NA             6515114
1408              772902                  NA              380685
1409             2079759                  NA             1012336
1410             2079759                  NA             1012336
1411             1010100                  NA              512085
1412             2079759                  NA             1012336
1413             2079759                  NA             1012336
1414             2137223                  NA             1061042
1415             2137223                  NA             1061042
1416             1042393                  NA              516095
1417             2137223                  NA             1061042
1418             4864209                  NA             2434382
1419              181055                  NA               90237
1420             2137223                  NA             1061042
1421             2137223                  NA             1061042
1422             2137223                  NA             1061042
1423             2137223                  NA             1061042
1424             2137223                  NA             1061042
1425             2137223                  NA             1061042
1426              445213                  NA              223753
1427              755081                  NA              384572
1428              755081                  NA              384572
1429              422187                  NA              211290
1430              772902                  NA              380685
1431              585485                  NA              292820
1432             4692242                  NA             2342253
1433             2253528                  NA             1113732
1434             2253528                  NA             1113732
1435             2253528                  NA             1113732
1436             3194310                  NA             1562880
1437             2253528                  NA             1113732
1438             7673379                  NA             3806912
1439            13111917                  NA             6515114
1440             7673379                  NA             3806912
1441             4692242                  NA             2342253
1442             7673379                  NA             3806912
1443             7673379                  NA             3806912
1444             7673379                  NA             3806912
1445             7673379                  NA             3806912
1446             7673379                  NA             3806912
1447             7673379                  NA             3806912
1448             7673379                  NA             3806912
1449             7673379                  NA             3806912
1450             7673379                  NA             3806912
1451             7673379                  NA             3806912
1452             7673379                  NA             3806912
1453             7673379                  NA             3806912
1454             7673379                  NA             3806912
1455             7673379                  NA             3806912
1456             7673379                  NA             3806912
1457             7673379                  NA             3806912
1458             7673379                  NA             3806912
1459             7673379                  NA             3806912
1460             7673379                  NA             3806912
1461             7673379                  NA             3806912
1462             7673379                  NA             3806912
1463             7673379                  NA             3806912
1464             7673379                  NA             3806912
1465             7673379                  NA             3806912
1466             7673379                  NA             3806912
1467             7673379                  NA             3806912
1468             7673379                  NA             3806912
1469             7673379                  NA             3806912
1470             7673379                  NA             3806912
1471             7673379                  NA             3806912
1472             7673379                  NA             3806912
1473             7673379                  NA             3806912
1474             7673379                  NA             3806912
1475             7673379                  NA             3806912
1476             4692242                  NA             2342253
1477              844461                  NA              407362
1478             6346083                  NA             3128067
1479             6346083                  NA             3128067
1480             6346083                  NA             3128067
1481             2959386                  NA             1493164
1482             6346083                  NA             3128067
1483             6346083                  NA             3128067
1484             6346083                  NA             3128067
1485             6346083                  NA             3128067
1486             6346083                  NA             3128067
1487             6346083                  NA             3128067
1488             6346083                  NA             3128067
1489             2840005                  NA             1374325
1490             6346083                  NA             3128067
1491             2959386                  NA             1493164
1492            19908595                  NA             9713298
1493             2959386                  NA             1493164
1494            19908595                  NA             9713298
1495             2959386                  NA             1493164
1496              844461                  NA              407362
1497             2959386                  NA             1493164
1498             2959386                  NA             1493164
1499             2959386                  NA             1493164
1500              844461                  NA              407362
1501             2959386                  NA             1493164
1502             2959386                  NA             1493164
1503             2959386                  NA             1493164
1504             2679298                  NA             1318555
1505             6232894                  NA             3033772
1506             2959386                  NA             1493164
1507             2959386                  NA             1493164
1508             2959386                  NA             1493164
1509             6123949                  NA             3001027
1510             2959386                  NA             1493164
1511             2959386                  NA             1493164
1512             2959386                  NA             1493164
1513             2959386                  NA             1493164
1514             2959386                  NA             1493164
1515             2959386                  NA             1493164
1516             2959386                  NA             1493164
1517             2959386                  NA             1493164
1518             2394673                  NA             1181313
1519             2959386                  NA             1493164
1520             2959386                  NA             1493164
1521             2959386                  NA             1493164
1522             2959386                  NA             1493164
1523             2959386                  NA             1493164
1524             2959386                  NA             1493164
1525             2959386                  NA             1493164
1526             2959386                  NA             1493164
1527             2959386                  NA             1493164
1528             3194310                  NA             1562880
1529             7142603                  NA             3563435
1530             7142603                  NA             3563435
1531             3289701                  NA             1667851
1532             4375604                  NA             2148947
1533             4375604                  NA             2148947
1534             4375604                  NA             2148947
1535              915968                  NA              453044
1536             6232894                  NA             3033772
1537              867161                  NA              431851
1538              867161                  NA              431851
1539              867161                  NA              431851
1540              867161                  NA              431851
1541              867161                  NA              431851
1542             1981584                  NA             1011796
1543             3194310                  NA             1562880
1544             1613587                  NA              790463
1545             3194310                  NA             1562880
1546              867161                  NA              431851
1547              867161                  NA              431851
1548             3289701                  NA             1667851
1549              382218                  NA              189292
1550              382218                  NA              189292
1551             1008280                  NA              506526
1552             2959386                  NA             1493164
1553             2265926                  NA             1137581
1554             1981584                  NA             1011796
1555             6123949                  NA             3001027
1556             2296377                  NA             1160944
1557             6123949                  NA             3001027
1558             6123949                  NA             3001027
1559             1670949                  NA              818990
1560             6123949                  NA             3001027
1561             6123949                  NA             3001027
1562             6123949                  NA             3001027
1563             6123949                  NA             3001027
1564            13111917                  NA             6515114
1565             6123949                  NA             3001027
1566             6123949                  NA             3001027
1567             6123949                  NA             3001027
1568             1798025                  NA              886709
1569             1017724                  NA              503252
1570              585485                  NA              292820
1571              422733                  NA              212276
1572              585485                  NA              292820
1573              585485                  NA              292820
1574             4864209                  NA             2434382
1575              585485                  NA              292820
1576             1087068                  NA              546278
1577              330119                  NA              161252
1578             1981584                  NA             1011796
1579            13111917                  NA             6515114
1580             1254675                  NA              635422
1581             1990873                  NA              978574
1582             7142603                  NA             3563435
1583             1420825                  NA              698689
1584            19908595                  NA             9713298
1585             7142603                  NA             3563435
1586             7142603                  NA             3563435
1587             7142603                  NA             3563435
1588             7142603                  NA             3563435
1589             7142603                  NA             3563435
1590             7142603                  NA             3563435
1591             7142603                  NA             3563435
1592             7142603                  NA             3563435
1593             7142603                  NA             3563435
1594            19908595                  NA             9713298
1595             7142603                  NA             3563435
1596             7142603                  NA             3563435
1597             7142603                  NA             3563435
1598             7142603                  NA             3563435
1599             7142603                  NA             3563435
1600             7142603                  NA             3563435
1601             7142603                  NA             3563435
1602             7142603                  NA             3563435
1603             7142603                  NA             3563435
1604             7142603                  NA             3563435
1605             7142603                  NA             3563435
1606             7142603                  NA             3563435
1607             7142603                  NA             3563435
1608             7142603                  NA             3563435
1609             7142603                  NA             3563435
1610             7142603                  NA             3563435
1611             7142603                  NA             3563435
1612             7142603                  NA             3563435
1613             7142603                  NA             3563435
1614             7142603                  NA             3563435
1615            19908595                  NA             9713298
1616             7142603                  NA             3563435
1617             7142603                  NA             3563435
1618             7142603                  NA             3563435
1619             7142603                  NA             3563435
1620              591397                  NA              285117
1621              421854                  NA              208182
1622              755081                  NA              384572
1623             1254675                  NA              635422
1624             4692242                  NA             2342253
1625             2394673                  NA             1181313
1626             1087068                  NA              546278
1627             7142603                  NA             3563435
1628             2679298                  NA             1318555
1629             7142603                  NA             3563435
1630              646794                  NA              322648
1631              646794                  NA              322648
1632              552916                  NA              270938
1633             2109957                  NA             1038760
1634             2109957                  NA             1038760
1635             2109957                  NA             1038760
1636             2109957                  NA             1038760
1637             2109957                  NA             1038760
1638            19908595                  NA             9713298
1639             6123949                  NA             3001027
1640              288639                  NA              146836
1641              422733                  NA              212276
1642             1613587                  NA              790463
1643             1613587                  NA              790463
1644             1613587                  NA              790463
1645             6094752                  NA             2965233
1646             2840005                  NA             1374325
1647             1428923                  NA              708697
1648             2265926                  NA             1137581
1649             2265926                  NA             1137581
1650             2109957                  NA             1038760
1651             1264357                  NA              612537
1652             2365501                  NA             1162773
1653             2265926                  NA             1137581
1654             2365501                  NA             1162773
1655             3194310                  NA             1562880
1656             2265926                  NA             1137581
1657             2265926                  NA             1137581
1658             6094752                  NA             2965233
1659             9566955                  NA             4718471
1660             2265926                  NA             1137581
1661             2265926                  NA             1137581
1662             2365501                  NA             1162773
1663             2265926                  NA             1137581
1664             2265926                  NA             1137581
1665             2265926                  NA             1137581
1666             2265926                  NA             1137581
1667             2265926                  NA             1137581
1668             2265926                  NA             1137581
1669             2265926                  NA             1137581
1670             2265926                  NA             1137581
1671             2265926                  NA             1137581
1672             2265926                  NA             1137581
1673             2265926                  NA             1137581
1674             2265926                  NA             1137581
1675             2265926                  NA             1137581
1676             2265926                  NA             1137581
1677             2265926                  NA             1137581
1678             2265926                  NA             1137581
1679            13111917                  NA             6515114
1680            13111917                  NA             6515114
1681               73511                  NA               36809
1682             1264357                  NA              612537
1683             2570862                  NA             1280273
1684            13111917                  NA             6515114
1685             1017724                  NA              503252
1686             2679298                  NA             1318555
1687             6123949                  NA             3001027
1688            13111917                  NA             6515114
1689            13111917                  NA             6515114
1690            13111917                  NA             6515114
1691            13111917                  NA             6515114
1692             4610050                  NA             2315218
1693             1420825                  NA              698689
1694              322285                  NA              159719
1695             7673379                  NA             3806912
1696             7142603                  NA             3563435
1697            19908595                  NA             9713298
1698             1264357                  NA              612537
1699             1428923                  NA              708697
1700            19908595                  NA             9713298
1701            19908595                  NA             9713298
1702            13111917                  NA             6515114
1703             9566955                  NA             4718471
1704            13111917                  NA             6515114
1705            13111917                  NA             6515114
1706            13111917                  NA             6515114
1707            13111917                  NA             6515114
1708            13111917                  NA             6515114
1709             4610050                  NA             2315218
1710            13111917                  NA             6515114
1711            13111917                  NA             6515114
1712            13111917                  NA             6515114
1713            13111917                  NA             6515114
1714            13111917                  NA             6515114
1715              749290                  NA              363653
1716              174621                  NA               89435
1717              174621                  NA               89435
1718             2190750                  NA             1084347
1719             2190750                  NA             1084347
1720              844461                  NA              407362
1721             2190750                  NA             1084347
1722             2190750                  NA             1084347
1723             2190750                  NA             1084347
1724             2190750                  NA             1084347
1725             2190750                  NA             1084347
1726             2190750                  NA             1084347
1727             2190750                  NA             1084347
1728             1163462                  NA              568061
1729              119685                  NA               62534
1730             4610050                  NA             2315218
1731             4001701                  NA             2024424
1732             1008280                  NA              506526
1733             4864209                  NA             2434382
1734             2679298                  NA             1318555
1735             4912449                  NA             2407307
1736              711490                  NA              355020
1737             3289701                  NA             1667851
1738             2679298                  NA             1318555
1739             2679298                  NA             1318555
1740             2679298                  NA             1318555
1741             2679298                  NA             1318555
1742             2679298                  NA             1318555
1743             2679298                  NA             1318555
1744             2679298                  NA             1318555
1745             2679298                  NA             1318555
1746             2679298                  NA             1318555
1747             2679298                  NA             1318555
1748               73511                  NA               36809
1749             2679298                  NA             1318555
1750             2679298                  NA             1318555
1751             9566955                  NA             4718471
1752             9566955                  NA             4718471
1753             9566955                  NA             4718471
1754             9566955                  NA             4718471
1755             9566955                  NA             4718471
1756             9566955                  NA             4718471
1757             9566955                  NA             4718471
1758             9566955                  NA             4718471
1759             9566955                  NA             4718471
1760             9566955                  NA             4718471
1761             9566955                  NA             4718471
1762             9566955                  NA             4718471
1763             9566955                  NA             4718471
1764             9566955                  NA             4718471
1765             9566955                  NA             4718471
1766             9566955                  NA             4718471
1767             9566955                  NA             4718471
1768             9566955                  NA             4718471
1769             9566955                  NA             4718471
1770             9566955                  NA             4718471
1771             9566955                  NA             4718471
1772             9566955                  NA             4718471
1773             9566955                  NA             4718471
1774             9566955                  NA             4718471
1775             9566955                  NA             4718471
1776             9566955                  NA             4718471
1777             9566955                  NA             4718471
1778             9566955                  NA             4718471
1779             9566955                  NA             4718471
1780             9566955                  NA             4718471
1781             9566955                  NA             4718471
1782             2813523                  NA             1375126
1783             9566955                  NA             4718471
1784             9566955                  NA             4718471
1785             9566955                  NA             4718471
1786             9566955                  NA             4718471
1787             9566955                  NA             4718471
1788             9566955                  NA             4718471
1789             9566955                  NA             4718471
1790             9566955                  NA             4718471
1791             9566955                  NA             4718471
1792             9566955                  NA             4718471
1793             9566955                  NA             4718471
1794             9566955                  NA             4718471
1795             9566955                  NA             4718471
1796             9566955                  NA             4718471
1797             9566955                  NA             4718471
1798             9566955                  NA             4718471
1799             9566955                  NA             4718471
1800             9566955                  NA             4718471
1801             1335804                  NA              641128
1802             1335804                  NA              641128
1803             1335804                  NA              641128
1804             1335804                  NA              641128
1805             1335804                  NA              641128
1806             2570862                  NA             1280273
1807             3678328                  NA             1837913
1808             6123949                  NA             3001027
1809             6123949                  NA             3001027
1810             2190750                  NA             1084347
1811             1568940                  NA              770847
1812             1568940                  NA              770847
1813             1568940                  NA              770847
1814             1568940                  NA              770847
1815             1568940                  NA              770847
1816             3678328                  NA             1837913
1817              772902                  NA              380685
1818             3289701                  NA             1667851
1819             1264357                  NA              612537
1820             1264357                  NA              612537
1821             1264357                  NA              612537
1822             1264357                  NA              612537
1823             1264357                  NA              612537
1824             1264357                  NA              612537
1825             1264357                  NA              612537
1826             1264357                  NA              612537
1827              755081                  NA              384572
1828             1264357                  NA              612537
1829             1264357                  NA              612537
1830             1264357                  NA              612537
1831             1017724                  NA              503252
1832              496299                  NA              240510
1833              496299                  NA              240510
1834             4692242                  NA             2342253
1835             4692242                  NA             2342253
1836             4692242                  NA             2342253
1837             4692242                  NA             2342253
1838             3289701                  NA             1667851
1839             4692242                  NA             2342253
1840             2109957                  NA             1038760
1841             4692242                  NA             2342253
1842             4692242                  NA             2342253
1843             4692242                  NA             2342253
1844             1981584                  NA             1011796
1845             4692242                  NA             2342253
1846             4692242                  NA             2342253
1847             4692242                  NA             2342253
1848             4692242                  NA             2342253
1849             4692242                  NA             2342253
1850             2394673                  NA             1181313
1851             1428923                  NA              708697
1852             1428923                  NA              708697
1853             1428923                  NA              708697
1854              164765                  21               82304
1855              844461                  NA              407362
1856              966688                  NA              483251
1857              966688                  NA              483251
1858              966688                  NA              483251
1859             2570862                  NA             1280273
1860             4610050                  NA             2315218
1861             4610050                  NA             2315218
1862              406575                  NA              197548
1863             9566955                  NA             4718471
1864             9566955                  NA             4718471
1865             9566955                  NA             4718471
1866             1798025                  NA              886709
1867             1798025                  NA              886709
1868             1798025                  NA              886709
1869             1798025                  NA              886709
1870             1215703                 422              594920
1871              966688                  NA              483251
1872             2505312                  NA             1250855
1873             3194310                  NA             1562880
1874               73511                  NA               36809
1875             4692242                  NA             2342253
1876             6232894                  NA             3033772
1877             6123949                  NA             3001027
1878             4864209                  NA             2434382
1879             1568940                  NA              770847
1880             4864209                  NA             2434382
1881             6094752                  NA             2965233
1882             4864209                  NA             2434382
1883             4864209                  NA             2434382
1884             4864209                  NA             2434382
1885             4864209                  NA             2434382
1886             4864209                  NA             2434382
1887             4864209                  NA             2434382
1888             4864209                  NA             2434382
1889             4864209                  NA             2434382
1890             4864209                  NA             2434382
1891             4864209                  NA             2434382
1892             4864209                  NA             2434382
1893             4864209                  NA             2434382
1894             4864209                  NA             2434382
1895             4864209                  NA             2434382
1896             1010100                  NA              512085
1897             4864209                  NA             2434382
1898             4864209                  NA             2434382
1899             4864209                  NA             2434382
1900             4864209                  NA             2434382
1901             4864209                  NA             2434382
1902             4864209                  NA             2434382
1903             2365501                  NA             1162773
1904             2365501                  NA             1162773
1905             2365501                  NA             1162773
1906             2365501                  NA             1162773
1907             2365501                  NA             1162773
1908             2365501                  NA             1162773
1909              510290                  NA              256202
1910              510290                  NA              256202
1911              510290                  NA              256202
1912             4610050                  NA             2315218
1913             4610050                  NA             2315218
1914             1420825                  NA              698689
1915             4692242                  NA             2342253
1916             1420825                  NA              698689
1917             2073546                  NA              975289
1918             2570862                  NA             1280273
1919             1420825                  NA              698689
1920             1316145                  NA              640643
1921              490769                  NA              249622
1922              490769                  NA              249622
1923              490769                  NA              249622
1924              490769                  NA              249622
1925             1086859                  NA              532509
1926             1086859                  NA              532509
1927             4375604                  NA             2148947
1928              772902                  NA              380685
1929              772902                  NA              380685
1930              772902                  NA              380685
1931              772902                  NA              380685
1932              772902                  NA              380685
1933             3289701                  NA             1667851
1934              288639                  NA              146836
1935              803398                  NA              394257
1936              585485                  NA              292820
1937             3289701                  NA             1667851
1938             3289701                  NA             1667851
1939             3289701                  NA             1667851
1940             3678328                  NA             1837913
1941             1042393                  NA              516095
1942             2570862                  NA             1280273
1943             2570862                  NA             1280273
1944             2570862                  NA             1280273
1945             2570862                  NA             1280273
1946             7673379                  NA             3806912
1947              445213                  NA              223753
1948             1282588                  NA              630858
1949             1282588                  NA              630858
1950             1282588                  NA              630858
1951             1282588                  NA              630858
1952             1282588                  NA              630858
1953            13111917                  NA             6515114
1954            13111917                  NA             6515114
1955             1420825                  NA              698689
1956             4692242                  NA             2342253
1957             4692242                  NA             2342253
1958             1981584                  NA             1011796
1959             1981584                  NA             1011796
1960             1010100                  NA              512085
1961             1981584                  NA             1011796
1962              164765                  21               82304
1963              164765                  21               82304
1964             1981584                  NA             1011796
1965             1981584                  NA             1011796
1966             1981584                  NA             1011796
1967             1981584                  NA             1011796
1968             2073546                  NA              975289
1969             1254675                  NA              635422
1970             1254675                  NA              635422
1971             1254675                  NA              635422
1972             1254675                  NA              635422
1973             2394673                  NA             1181313
1974             2190750                  NA             1084347
1975             2394673                  NA             1181313
1976             2394673                  NA             1181313
1977              202163                  NA              100828
1978             2394673                  NA             1181313
1979             2394673                  NA             1181313
1980             2394673                  NA             1181313
1981             2394673                  NA             1181313
1982            13111917                  NA             6515114
1983             1264357                  NA              612537
1984            13111917                  NA             6515114
1985              844461                  NA              407362
1986              844461                  NA              407362
1987              844461                  NA              407362
1988              844461                  NA              407362
1989             2813523                  NA             1375126
1990             2813523                  NA             1375126
1991             2813523                  NA             1375126
1992             2813523                  NA             1375126
1993             2813523                  NA             1375126
1994             2813523                  NA             1375126
1995             2813523                  NA             1375126
1996             2813523                  NA             1375126
1997             2813523                  NA             1375126
1998             2813523                  NA             1375126
1999             2813523                  NA             1375126
2000             1215703                 422              594920
2001             2813523                  NA             1375126
2002             2813523                  NA             1375126
2003             2813523                  NA             1375126
2004             2813523                  NA             1375126
2005             2813523                  NA             1375126
2006             2813523                  NA             1375126
2007             2813523                  NA             1375126
2008             2813523                  NA             1375126
2009             2813523                  NA             1375126
2010             2813523                  NA             1375126
2011             2813523                  NA             1375126
2012             2813523                  NA             1375126
2013             2813523                  NA             1375126
2014             2813523                  NA             1375126
2015             2813523                  NA             1375126
2016             2813523                  NA             1375126
2017             3194310                  NA             1562880
2018              658694                  NA              322943
2019             2959386                  NA             1493164
2020             3194310                  NA             1562880
2021             3194310                  NA             1562880
2022             3194310                  NA             1562880
2023             3194310                  NA             1562880
2024             3194310                  NA             1562880
2025             3194310                  NA             1562880
2026             3194310                  NA             1562880
2027             3194310                  NA             1562880
2028             3194310                  NA             1562880
2029             1042393                  NA              516095
2030             1042393                  NA              516095
2031              288639                  NA              146836
2032             1568940                  NA              770847
2033              391957                  NA              189194
2034              222604                  NA              109360
2035             2679298                  NA             1318555
2036             7673379                  NA             3806912
2037             2394673                  NA             1181313
2038             2253528                  NA             1113732
2039             1613587                  NA              790463
2040             3289701                  NA             1667851
2041             1420825                  NA              698689
2042             6346083                  NA             3128067
2043             6346083                  NA             3128067
2044             7142603                  NA             3563435
2045             7142603                  NA             3563435
2046            19908595                  NA             9713298
2047             6232894                  NA             3033772
2048             4864209                  NA             2434382
2049             4864209                  NA             2434382
2050            13111917                  NA             6515114
2051              510290                  NA              256202
2052             3678328                  NA             1837913
2053             2073546                  NA              975289
2054             6346083                  NA             3128067
2055              152640                  NA               75942
2056             1163462                  NA              568061
2057              593318                  NA              293750
2058             1613587                  NA              790463
2059             4912449                  NA             2407307
2060             2253528                  NA             1113732
2061             4912449                  NA             2407307
2062             2959386                  NA             1493164
2063             1264357                  NA              612537
2064              711490                  NA              355020
2065             1798025                  NA              886709
2066             7673379                  NA             3806912
2067             6123949                  NA             3001027
2068             4912449                  NA             2407307
2069             4912449                  NA             2407307
2070             4912449                  NA             2407307
2071             4692242                  NA             2342253
2072              422733                  NA              212276
2073              803398                  NA              394257
2074             1017724                  NA              503252
2075             2079759                  NA             1012336
2076             2079759                  NA             1012336
2077             2668688                  NA             1305000
2078             2668688                  NA             1305000
2079             2109957                  NA             1038760
2080             2137223                  NA             1061042
2081             2137223                  NA             1061042
2082             2137223                  NA             1061042
2083             2253528                  NA             1113732
2084             2394673                  NA             1181313
2085             6346083                  NA             3128067
2086             6346083                  NA             3128067
2087             6346083                  NA             3128067
2088             6346083                  NA             3128067
2089              678995                  NA              341280
2090            19908595                  NA             9713298
2091            19908595                  NA             9713298
2092            19908595                  NA             9713298
2093            19908595                  NA             9713298
2094            19908595                  NA             9713298
2095            19908595                  NA             9713298
2096              510290                  NA              256202
2097              775169                  NA              372915
2098             6346083                  NA             3128067
2099             6346083                  NA             3128067
2100              289726                  NA              140509
2101             2109957                  NA             1038760
2102              676035                  NA              330879
2103             2109957                  NA             1038760
2104             1568940                  NA              770847
2105              133609                  NA               67870
2106             7673379                  NA             3806912
2107            19908595                  NA             9713298
2108              181055                  NA               90237
2109            19908595                  NA             9713298
2110             4864209                  NA             2434382
2111              884359                  NA              435364
2112            19908595                  NA             9713298
2113            19908595                  NA             9713298
2114            19908595                  NA             9713298
2115            19908595                  NA             9713298
2116            19908595                  NA             9713298
2117            19908595                  NA             9713298
2118            19908595                  NA             9713298
2119            19908595                  NA             9713298
2120            19908595                  NA             9713298
2121            19908595                  NA             9713298
2122            19908595                  NA             9713298
2123            19908595                  NA             9713298
2124              330119                  NA              161252
2125             1798025                  NA              886709
2126              966688                  NA              483251
2127             1798025                  NA              886709
2128             6232894                  NA             3033772
2129             2365501                  NA             1162773
2130             2365501                  NA             1162773
2131               96299                  NA               52279
2132             2365501                  NA             1162773
2133              406575                  NA              197548
2134              406575                  NA              197548
2135             1282588                  NA              630858
2136             1420825                  NA              698689
2137             1420825                  NA              698689
2138             1670949                  NA              818990
2139             4912449                  NA             2407307
2140             1282588                  NA              630858
2141             2137223                  NA             1061042
2142             2668688                  NA             1305000
2143              803398                  NA              394257
2144             2079759                  NA             1012336
2145              221648                  NA              106730
2146              700578                  NA              343022
2147             6346083                  NA             3128067
2148             4001701                  NA             2024424
2149              149113                  NA               74782
2150             9566955                  NA             4718471
2151             9566955                  NA             4718471
2152             2265926                  NA             1137581
2153             2570862                  NA             1280273
2154             4864209                  NA             2434382
2155             3678328                  NA             1837913
2156             3678328                  NA             1837913
2157              171951                  NA               87139
2158              901729                  NA              444836
2159              289726                  NA              140509
2160             2959386                  NA             1493164
2161             6346083                  NA             3128067
2162             3289701                  NA             1667851
2163              496299                  NA              240510
2164              772902                  NA              380685
2165             1316145                  NA              640643
2166              775169                  NA              372915
2167              658694                  NA              322943
2168             2190750                  NA             1084347
2169             2959386                  NA             1493164
2170             1087068                  NA              546278
2171              493980                  NA              244298
2172             7142603                  NA             3563435
2173            13111917                  NA             6515114
2174             6123949                  NA             3001027
2175              510290                  NA              256202
2176             2959386                  NA             1493164
2177              510290                  NA              256202
2178              866377                  58              420485
2179              866377                  58              420485
2180             2679298                  NA             1318555
2181            13111917                  NA             6515114
2182               79008                  NA               40763
2183             1114368                  NA              538428
2184            19908595                  NA             9713298
2185             1568940                  NA              770847
2186             6346083                  NA             3128067
2187             6346083                  NA             3128067
2188             7673379                  NA             3806912
2189             7673379                  NA             3806912
2190             7673379                  NA             3806912
2191             1010100                  NA              512085
2192            19908595                  NA             9713298
2193             6094752                  NA             2965233
2194             9566955                  NA             4718471
2195             6232894                  NA             3033772
2196             6232894                  NA             3033772
2197             4864209                  NA             2434382
2198             4864209                  NA             2434382
2199             3289701                  NA             1667851
2200               96299                  NA               52279
2201             2505312                  NA             1250855
2202             4912449                  NA             2407307
2203             4912449                  NA             2407307
2204            19908595                  NA             9713298
2205             4610050                  NA             2315218
2206             4692242                  NA             2342253
2207             6094752                  NA             2965233
2208             6094752                  NA             2965233
2209             6094752                  NA             2965233
2210             6094752                  NA             2965233
2211             6094752                  NA             2965233
2212             6094752                  NA             2965233
2213             4912449                  NA             2407307
2214             6346083                  NA             3128067
2215             4375604                  NA             2148947
2216             4375604                  NA             2148947
2217             4375604                  NA             2148947
2218            19908595                  NA             9713298
2219            19908595                  NA             9713298
2220            19908595                  NA             9713298
2221            19908595                  NA             9713298
2222            13111917                  NA             6515114
2223            13111917                  NA             6515114
2224            13111917                  NA             6515114
2225             3678328                  NA             1837913
2226             3678328                  NA             1837913
2227             1981584                  NA             1011796
2228             1254675                  NA              635422
2229             1254675                  NA              635422
2230             1254675                  NA              635422
2231             3194310                  NA             1562880
2232             3194310                  NA             1562880
2233            13111917                  NA             6515114
2234             4375604                  NA             2148947
2235             9566955                  NA             4718471
2236             2959386                  NA             1493164
2237            19908595                  NA             9713298
2238             7142603                  NA             3563435
2239             7142603                  NA             3563435
2240             7142603                  NA             3563435
2241             7142603                  NA             3563435
2242             1420825                  NA              698689
2243             4692242                  NA             2342253
2244             7142603                  NA             3563435
2245            19908595                  NA             9713298
2246            19908595                  NA             9713298
2247             9566955                  NA             4718471
2248             1316145                  NA              640643
2249             6232894                  NA             3033772
2250             2190750                  NA             1084347
2251             7673379                  NA             3806912
2252             1087068                  NA              546278
2253             6232894                  NA             3033772
2254              496299                  NA              240510
2255               96299                  NA               52279
2256                  NA                  NA                  NA
2257                  NA                  NA                  NA
2258             4001701                  NA             2024424
2259             4001701                  NA             2024424
2260             1254675                  NA              635422
2261             2959386                  NA             1493164
2262             6346083                  NA             3128067
2263              863166                  NA              427343
2264             6094752                  NA             2965233
2265             6094752                  NA             2965233
2266             6094752                  NA             2965233
2267             6094752                  NA             2965233
2268             6094752                  NA             2965233
2269             6094752                  NA             2965233
2270             6094752                  NA             2965233
2271             6094752                  NA             2965233
2272              152640                  NA               75942
2273             4912449                  NA             2407307
2274             4912449                  NA             2407307
2275              221648                  NA              106730
2276              803398                  NA              394257
2277             2253528                  NA             1113732
2278              593318                  NA              293750
2279             4375604                  NA             2148947
2280             4375604                  NA             2148947
2281             4375604                  NA             2148947
2282             4375604                  NA             2148947
2283             4375604                  NA             2148947
2284             4375604                  NA             2148947
2285             4375604                  NA             2148947
2286            19908595                  NA             9713298
2287             4864209                  NA             2434382
2288             2109957                  NA             1038760
2289            19908595                  NA             9713298
2290            19908595                  NA             9713298
2291            19908595                  NA             9713298
2292            19908595                  NA             9713298
2293            19908595                  NA             9713298
2294            19908595                  NA             9713298
2295            19908595                  NA             9713298
2296            19908595                  NA             9713298
2297            19908595                  NA             9713298
2298            19908595                  NA             9713298
2299            19908595                  NA             9713298
2300            19908595                  NA             9713298
2301              593318                  NA              293750
2302             3678328                  NA             1837913
2303             3678328                  NA             1837913
2304             3678328                  NA             1837913
2305             1420825                  NA              698689
2306              314708                  NA              152116
2307             1086859                  NA              532509
2308              884359                  NA              435364
2309             2296377                  NA             1160944
2310             2296377                  NA             1160944
2311              678995                  NA              341280
2312             2296377                  NA             1160944
2313             1215703                 422              594920
2314             4912449                  NA             2407307
2315             4912449                  NA             2407307
2316             2109957                  NA             1038760
2317             4912449                  NA             2407307
2318             4692242                  NA             2342253
2319             2668688                  NA             1305000
2320             2668688                  NA             1305000
2321             2668688                  NA             1305000
2322             2668688                  NA             1305000
2323             2668688                  NA             1305000
2324              437609                  NA              223186
2325             2668688                  NA             1305000
2326             2668688                  NA             1305000
2327             2668688                  NA             1305000
2328             2253528                  NA             1113732
2329             6346083                  NA             3128067
2330             7673379                  NA             3806912
2331             7673379                  NA             3806912
2332             7673379                  NA             3806912
2333             7673379                  NA             3806912
2334             7673379                  NA             3806912
2335             7673379                  NA             3806912
2336             7673379                  NA             3806912
2337             7673379                  NA             3806912
2338             7673379                  NA             3806912
2339             7673379                  NA             3806912
2340             7673379                  NA             3806912
2341             7673379                  NA             3806912
2342             7673379                  NA             3806912
2343             7673379                  NA             3806912
2344             7673379                  NA             3806912
2345             7673379                  NA             3806912
2346              477056                  NA              234726
2347              211078                  NA              103187
2348             4001701                  NA             2024424
2349             7142603                  NA             3563435
2350             6123949                  NA             3001027
2351            19908595                  NA             9713298
2352             2265926                  NA             1137581
2353              391957                  NA              189194
2354              289726                  NA              140509
2355             1316145                  NA              640643
2356              225745                  NA              112032
2357            19908595                  NA             9713298
2358             2679298                  NA             1318555
2359              593318                  NA              293750
2360              552916                  NA              270938
2361              749290                  NA              363653
2362              873167                  NA              431639
2363             6123949                  NA             3001027
2364             6123949                  NA             3001027
2365             6123949                  NA             3001027
2366             6123949                  NA             3001027
2367             6123949                  NA             3001027
2368             6123949                  NA             3001027
2369              386064                  NA              186619
2370             6123949                  NA             3001027
2371              803398                  NA              394257
2372             9566955                  NA             4718471
2373             9566955                  NA             4718471
2374             9566955                  NA             4718471
2375             9566955                  NA             4718471
2376             9566955                  NA             4718471
2377              221648                  NA              106730
2378             6232894                  NA             3033772
2379             6232894                  NA             3033772
2380             4864209                  NA             2434382
2381             4864209                  NA             2434382
2382             4864209                  NA             2434382
2383             4864209                  NA             2434382
2384             2505312                  NA             1250855
2385              869755                  NA              427134
2386             1420825                  NA              698689
2387              772902                  NA              380685
2388              308386                  NA              152054
2389             2365501                  NA             1162773
2390              775169                  NA              372915
2391              314708                  NA              152116
2392             1114368                  NA              538428
2393             2073546                  NA              975289
2394             2137223                  NA             1061042
2395             1282588                  NA              630858
2396              251635                  NA              126980
2397              204374                  NA              105162
2398              399335                  NA              205955
2399              399335                  NA              205955
2400                  NA                  NA                  NA
2401             6346083                  NA             3128067
2402               13910                  NA                7232
2403             1010100                  NA              512085
2404               13910                  NA                7232
2405            13111917                  NA             6515114
2406            13111917                  NA             6515114
2407              966688                  NA              483251
2408                  NA                  NA                  NA
2409             2505312                  NA             1250855
2410              164765                  21               82304
2411             4001701                  NA             2024424
2412             4001701                  NA             2024424
2413             4001701                  NA             2024424
2414             4001701                  NA             2024424
2415             4692242                  NA             2342253
2416              915968                  NA              453044
2417              772902                  NA              380685
2418              901729                  NA              444836
2419             1215703                 422              594920
2420             1215703                 422              594920
2421             4912449                  NA             2407307
2422             4912449                  NA             2407307
2423             4912449                  NA             2407307
2424             4912449                  NA             2407307
2425            13111917                  NA             6515114
2426             6346083                  NA             3128067
2427             6123949                  NA             3001027
2428            19908595                  NA             9713298
2429             4001701                  NA             2024424
2430            19908595                  NA             9713298
2431            19908595                  NA             9713298
2432            19908595                  NA             9713298
2433            13111917                  NA             6515114
2434            13111917                  NA             6515114
2435             4610050                  NA             2315218
2436             1670949                  NA              818990
2437             1670949                  NA              818990
2438             3289701                  NA             1667851
2439             2073546                  NA              975289
2440             2073546                  NA              975289
2441             2394673                  NA             1181313
2442              844461                  NA              407362
2443              658694                  NA              322943
2444             6094752                  NA             2965233
2445             6094752                  NA             2965233
2446             6094752                  NA             2965233
2447             6094752                  NA             2965233
2448             6094752                  NA             2965233
2449             6094752                  NA             2965233
2450             6094752                  NA             2965233
2451             6094752                  NA             2965233
2452             6094752                  NA             2965233
2453             6094752                  NA             2965233
2454             6094752                  NA             2965233
2455             6094752                  NA             2965233
2456             6094752                  NA             2965233
2457             6094752                  NA             2965233
2458             6094752                  NA             2965233
2459             6094752                  NA             2965233
2460             6094752                  NA             2965233
2461             6094752                  NA             2965233
2462             6094752                  NA             2965233
2463             6094752                  NA             2965233
2464             6094752                  NA             2965233
2465             6094752                  NA             2965233
2466             2296377                  NA             1160944
2467             2296377                  NA             1160944
2468             1990873                  NA              978574
2469             4912449                  NA             2407307
2470               35159                  NA               18160
2471             2668688                  NA             1305000
2472             2253528                  NA             1113732
2473             2253528                  NA             1113732
2474             2253528                  NA             1113732
2475              153733                  NA               76642
2476             7673379                  NA             3806912
2477             4375604                  NA             2148947
2478             4375604                  NA             2148947
2479             4375604                  NA             2148947
2480             4375604                  NA             2148947
2481             4375604                  NA             2148947
2482             4375604                  NA             2148947
2483             4375604                  NA             2148947
2484             4375604                  NA             2148947
2485             4375604                  NA             2148947
2486              867161                  NA              431851
2487              610723                  NA              300904
2488             6346083                  NA             3128067
2489             2109957                  NA             1038760
2490            19908595                  NA             9713298
2491            19908595                  NA             9713298
2492            13111917                  NA             6515114
2493            13111917                  NA             6515114
2494             2679298                  NA             1318555
2495             1335804                  NA              641128
2496             6123949                  NA             3001027
2497             6123949                  NA             3001027
2498             3678328                  NA             1837913
2499             3678328                  NA             1837913
2500             3678328                  NA             1837913
2501             3678328                  NA             1837913
2502             3678328                  NA             1837913
2503             3678328                  NA             1837913
2504             3678328                  NA             1837913
2505             3678328                  NA             1837913
2506             3678328                  NA             1837913
2507             3678328                  NA             1837913
2508             3678328                  NA             1837913
2509             3678328                  NA             1837913
2510            19908595                  NA             9713298
2511              775169                  NA              372915
2512              772902                  NA              380685
2513             2570862                  NA             1280273
2514             4001701                  NA             2024424
2515             4001701                  NA             2024424
2516              140356                  NA               72104
2517             4001701                  NA             2024424
2518             4692242                  NA             2342253
2519             2073546                  NA              975289
2520             1254675                  NA              635422
2521             1254675                  NA              635422
2522             1254675                  NA              635422
2523             1254675                  NA              635422
2524             1254675                  NA              635422
2525             1254675                  NA              635422
2526             1254675                  NA              635422
2527             1254675                  NA              635422
2528             1254675                  NA              635422
2529             1254675                  NA              635422
2530             1254675                  NA              635422
2531             1254675                  NA              635422
2532             1254675                  NA              635422
2533              308386                  NA              152054
2534              225745                  NA              112032
2535            19908595                  NA             9713298
2536            19908595                  NA             9713298
2537            19908595                  NA             9713298
2538            19908595                  NA             9713298
2539            19908595                  NA             9713298
2540            19908595                  NA             9713298
2541             6346083                  NA             3128067
2542             6346083                  NA             3128067
2543            13111917                  NA             6515114
2544              386064                  NA              186619
2545              421854                  NA              208182
2546             7673379                  NA             3806912
2547             7673379                  NA             3806912
2548             7673379                  NA             3806912
2549             7673379                  NA             3806912
2550             7673379                  NA             3806912
2551             7673379                  NA             3806912
2552              711490                  NA              355020
2553             6232894                  NA             3033772
2554              245475                  NA              121109
2555              156131                  NA               77615
2556              646794                  NA              322648
2557              591397                  NA              285117
2558              216217                  NA              106627
2559             6123949                  NA             3001027
2560              966688                  NA              483251
2561             9566955                  NA             4718471
2562             9566955                  NA             4718471
2563             9566955                  NA             4718471
2564              208406                  NA              100899
2565              386064                  NA              186619
2566             1254675                  NA              635422
2567              867161                  NA              431851
2568             2668688                  NA             1305000
2569             2668688                  NA             1305000
2570             2668688                  NA             1305000
2571             2668688                  NA             1305000
2572             2668688                  NA             1305000
2573             2668688                  NA             1305000
2574             6346083                  NA             3128067
2575             6346083                  NA             3128067
2576              775169                  NA              372915
2577              678995                  NA              341280
2578             6232894                  NA             3033772
2579              510290                  NA              256202
2580              493980                  NA              244298
2581              133467                 110               67534
2582               79506                  NA               40147
2583              422187                  NA              211290
2584             2959386                  NA             1493164
2585             2959386                  NA             1493164
2586             2959386                  NA             1493164
2587             2959386                  NA             1493164
2588             2959386                  NA             1493164
2589             2959386                  NA             1493164
2590             2959386                  NA             1493164
2591             2959386                  NA             1493164
2592             4375604                  NA             2148947
2593             4375604                  NA             2148947
2594             4375604                  NA             2148947
2595             2813523                  NA             1375126
2596            19908595                  NA             9713298
2597             7142603                  NA             3563435
2598             7142603                  NA             3563435
2599             7142603                  NA             3563435
2600             7142603                  NA             3563435
2601            13111917                  NA             6515114
2602              322285                  NA              159719
2603              174621                  NA               89435
2604             2190750                  NA             1084347
2605             3678328                  NA             1837913
2606             3678328                  NA             1837913
2607             3678328                  NA             1837913
2608             3678328                  NA             1837913
2609             3678328                  NA             1837913
2610             3678328                  NA             1837913
2611             3678328                  NA             1837913
2612              966688                  NA              483251
2613             9566955                  NA             4718471
2614             9566955                  NA             4718471
2615             9566955                  NA             4718471
2616             9566955                  NA             4718471
2617             9566955                  NA             4718471
2618             1798025                  NA              886709
2619             4864209                  NA             2434382
2620             1316145                  NA              640643
2621              406575                  NA              197548
2622             4001701                  NA             2024424
2623             4692242                  NA             2342253
2624             4692242                  NA             2342253
2625             1254675                  NA              635422
2626             1254675                  NA              635422
2627             1254675                  NA              635422
2628             1254675                  NA              635422
2629             1254675                  NA              635422
2630             1254675                  NA              635422
2631             1254675                  NA              635422
2632             1042393                  NA              516095
2633             2505312                  NA             1250855
2634             6346083                  NA             3128067
2635             2959386                  NA             1493164
2636             2959386                  NA             1493164
2637             2959386                  NA             1493164
2638              711490                  NA              355020
2639            19908595                  NA             9713298
2640            19908595                  NA             9713298
2641              399335                  NA              205955
2642             2394673                  NA             1181313
2643             6346083                  NA             3128067
2644             6346083                  NA             3128067
2645             6346083                  NA             3128067
2646             6346083                  NA             3128067
2647             7142603                  NA             3563435
2648             7142603                  NA             3563435
2649             7142603                  NA             3563435
2650             7142603                  NA             3563435
2651             7142603                  NA             3563435
2652             7142603                  NA             3563435
2653             7142603                  NA             3563435
2654             7142603                  NA             3563435
2655             2190750                  NA             1084347
2656              873167                  NA              431639
2657              966688                  NA              483251
2658             2365501                  NA             1162773
2659             3289701                  NA             1667851
2660               79008                  NA               40763
2661             4692242                  NA             2342253
2662             4692242                  NA             2342253
2663             4692242                  NA             2342253
2664             4692242                  NA             2342253
2665             2394673                  NA             1181313
2666               79008                  NA               40763
2667            13111917                  NA             6515114
2668             2296377                  NA             1160944
2669            13111917                  NA             6515114
2670             2840005                  NA             1374325
2671             2137223                  NA             1061042
2672             2959386                  NA             1493164
2673             2505312                  NA             1250855
2674             2265926                  NA             1137581
2675             2265926                  NA             1137581
2676             3289701                  NA             1667851
2677             4864209                  NA             2434382
2678              772902                  NA              380685
2679             3289701                  NA             1667851
2680             1568940                  NA              770847
2681              867161                  NA              431851
2682              277944                  NA              140783
2683             7142603                  NA             3563435
2684             7142603                  NA             3563435
2685             7142603                  NA             3563435
2686             2190750                  NA             1084347
2687             4912449                  NA             2407307
2688             4912449                  NA             2407307
2689             4912449                  NA             2407307
2690              803398                  NA              394257
2691             2137223                  NA             1061042
2692             6346083                  NA             3128067
2693             4375604                  NA             2148947
2694            19908595                  NA             9713298
2695            19908595                  NA             9713298
2696            19908595                  NA             9713298
2697            19908595                  NA             9713298
2698              330119                  NA              161252
2699            19908595                  NA             9713298
2700            19908595                  NA             9713298
2701            19908595                  NA             9713298
2702             1428923                  NA              708697
2703             9566955                  NA             4718471
2704             9566955                  NA             4718471
2705             9566955                  NA             4718471
2706             9566955                  NA             4718471
2707             6232894                  NA             3033772
2708             6232894                  NA             3033772
2709              391957                  NA              189194
2710             1420825                  NA              698689
2711              550596                  NA              277195
2712              313961                  NA              153951
2713             6346083                  NA             3128067
2714             9566955                  NA             4718471
2715             9566955                  NA             4718471
2716              510290                  NA              256202
2717             3678328                  NA             1837913
2718             4610050                  NA             2315218
2719              772902                  NA              380685
2720             2668688                  NA             1305000
2721             2668688                  NA             1305000
2722              422733                  NA              212276
2723             6232894                  NA             3033772
2724             6232894                  NA             3033772
2725             1114368                  NA              538428
2726             2959386                  NA             1493164
2727             6346083                  NA             3128067
2728             7142603                  NA             3563435
2729             7142603                  NA             3563435
2730              646794                  NA              322648
2731              749290                  NA              363653
2732             6094752                  NA             2965233
2733              152640                  NA               75942
2734             1990873                  NA              978574
2735              225745                  NA              112032
2736             2840005                  NA             1374325
2737             1087068                  NA              546278
2738              330119                  NA              161252
2739            19908595                  NA             9713298
2740            19908595                  NA             9713298
2741            19908595                  NA             9713298
2742            19908595                  NA             9713298
2743            19908595                  NA             9713298
2744              550596                  NA              277195
2745             1420825                  NA              698689
2746             1316145                  NA              640643
2747             1086859                  NA              532509
2748             1086859                  NA              532509
2749              406575                  NA              197548
2750              406575                  NA              197548
2751             3194310                  NA             1562880
2752              493980                  NA              244298
2753             2296377                  NA             1160944
2754             1042393                  NA              516095
2755              564466                  NA              276108
2756              171196                  NA               80857
2757              771602                  NA              388362
2758              164765                  21               82304
2759              174621                  NA               89435
2760            13111917                  NA             6515114
2761             1010100                  NA              512085
2762              479865                  NA              235485
2763             2079759                  NA             1012336
2764             2079759                  NA             1012336
2765             2079759                  NA             1012336
2766              399335                  NA              205955
2767             2668688                  NA             1305000
2768             2668688                  NA             1305000
2769             2668688                  NA             1305000
2770             2668688                  NA             1305000
2771             2668688                  NA             1305000
2772             2668688                  NA             1305000
2773             2668688                  NA             1305000
2774             2668688                  NA             1305000
2775             2668688                  NA             1305000
2776             2668688                  NA             1305000
2777             2668688                  NA             1305000
2778             2668688                  NA             1305000
2779             2668688                  NA             1305000
2780             2668688                  NA             1305000
2781             2253528                  NA             1113732
2782             6346083                  NA             3128067
2783             6346083                  NA             3128067
2784             7673379                  NA             3806912
2785             7673379                  NA             3806912
2786             7673379                  NA             3806912
2787             7673379                  NA             3806912
2788             7673379                  NA             3806912
2789             7673379                  NA             3806912
2790             7673379                  NA             3806912
2791             7673379                  NA             3806912
2792             7673379                  NA             3806912
2793             7673379                  NA             3806912
2794             7673379                  NA             3806912
2795             7673379                  NA             3806912
2796             7673379                  NA             3806912
2797             7673379                  NA             3806912
2798             7673379                  NA             3806912
2799             7673379                  NA             3806912
2800             7673379                  NA             3806912
2801             7673379                  NA             3806912
2802              966688                  NA              483251
2803              515954                  NA              253400
2804              658694                  NA              322943
2805             1428923                  NA              708697
2806              211078                  NA              103187
2807              490769                  NA              249622
2808                  NA                  NA                  NA
2809             2137223                  NA             1061042
2810             2109957                  NA             1038760
2811             1613587                  NA              790463
2812              567287                  NA              281431
2813              416839                  NA              205169
2814              288639                  NA              146836
2815             1017724                  NA              503252
2816              152640                  NA               75942
2817              612898                  NA              299409
2818            13111917                  NA             6515114
2819              844461                  NA              407362
2820               76726                  NA               39209
2821             1335804                  NA              641128
2822             1670949                  NA              818990
2823              831913                  NA              404751
2824              496299                  NA              240510
2825              429312                  NA              206306
2826             2190750                  NA             1084347
2827               24944                  NA               13144
2828             1335804                  NA              641128
2829             6123949                  NA             3001027
2830             6123949                  NA             3001027
2831             6123949                  NA             3001027
2832              490769                  NA              249622
2833             6123949                  NA             3001027
2834              711490                  NA              355020
2835             6123949                  NA             3001027
2836             6123949                  NA             3001027
2837              678995                  NA              341280
2838             1316145                  NA              640643
2839              278103                  NA              136234
2840             9566955                  NA             4718471
2841             9566955                  NA             4718471
2842             4610050                  NA             2315218
2843             6123949                  NA             3001027
2844              867161                  NA              431851
2845              122678                  NA               61536
2846             2073546                  NA              975289
2847             4864209                  NA             2434382
2848             4864209                  NA             2434382
2849             2365501                  NA             1162773
2850             2840005                  NA             1374325
2851              156131                  NA               77615
2852             1086859                  NA              532509
2853             1798025                  NA              886709
2854              510290                  NA              256202
2855            13111917                  NA             6515114
2856              421854                  NA              208182
2857             4001701                  NA             2024424
2858              422733                  NA              212276
2859              469484                  NA              227358
2860             4692242                  NA             2342253
2861             7142603                  NA             3563435
2862             2505312                  NA             1250855
2863             2073546                  NA              975289
2864              831913                  NA              404751
2865              469484                  NA              227358
2866              515954                  NA              253400
2867             2813523                  NA             1375126
2868              326159                  NA              160906
2869             3194310                  NA             1562880
2870             1042393                  NA              516095
2871              915968                  NA              453044
2872             7673379                  NA             3806912
2873             1428923                  NA              708697
2874              803398                  NA              394257
2875             2840005                  NA             1374325
2876             2109957                  NA             1038760
2877               13910                  NA                7232
2878               13910                  NA                7232
2879             2679298                  NA             1318555
2880             1568940                  NA              770847
2881             2505312                  NA             1250855
2882             3289701                  NA             1667851
2883             2570862                  NA             1280273
2884             4001701                  NA             2024424
2885             4001701                  NA             2024424
2886             4001701                  NA             2024424
2887             4001701                  NA             2024424
2888             4001701                  NA             2024424
2889             4001701                  NA             2024424
2890             4001701                  NA             2024424
2891             4001701                  NA             2024424
2892             4001701                  NA             2024424
2893             4001701                  NA             2024424
2894             4001701                  NA             2024424
2895             4001701                  NA             2024424
2896             1981584                  NA             1011796
2897             1215703                 422              594920
2898             1215703                 422              594920
2899             1215703                 422              594920
2900             4912449                  NA             2407307
2901             4912449                  NA             2407307
2902             4912449                  NA             2407307
2903              308919                  NA              149938
2904             1163462                  NA              568061
2905              803398                  NA              394257
2906             2079759                  NA             1012336
2907             3289701                  NA             1667851
2908             6346083                  NA             3128067
2909            19908595                  NA             9713298
2910            19908595                  NA             9713298
2911             6123949                  NA             3001027
2912             6123949                  NA             3001027
2913             6123949                  NA             3001027
2914             6123949                  NA             3001027
2915             6123949                  NA             3001027
2916            19908595                  NA             9713298
2917            19908595                  NA             9713298
2918             7142603                  NA             3563435
2919             1613587                  NA              790463
2920             1613587                  NA              790463
2921             1613587                  NA              790463
2922             1613587                  NA              790463
2923            19908595                  NA             9713298
2924            19908595                  NA             9713298
2925            19908595                  NA             9713298
2926            19908595                  NA             9713298
2927            19908595                  NA             9713298
2928             2679298                  NA             1318555
2929             6123949                  NA             3001027
2930             6123949                  NA             3001027
2931             6123949                  NA             3001027
2932             6123949                  NA             3001027
2933             6123949                  NA             3001027
2934              222831                  NA              106479
2935             1316145                  NA              640643
2936             1316145                  NA              640643
2937             1316145                  NA              640643
2938              490769                  NA              249622
2939              772902                  NA              380685
2940             3289701                  NA             1667851
2941             2570862                  NA             1280273
2942             1981584                  NA             1011796
2943             2073546                  NA              975289
2944              225745                  NA              112032
2945              844461                  NA              407362
2946             1428923                  NA              708697
2947             6094752                  NA             2965233
2948             6094752                  NA             2965233
2949             6094752                  NA             2965233
2950             6094752                  NA             2965233
2951             6094752                  NA             2965233
2952             6094752                  NA             2965233
2953              185147                  NA               92047
2954              419715                  NA              207197
2955             1010100                  NA              512085
2956              493980                  NA              244298
2957                  NA                  NA                  NA
2958             6346083                  NA             3128067
2959             4375604                  NA             2148947
2960              382983                  NA              189968
2961             6123949                  NA             3001027
2962             2079759                  NA             1012336
2963              515954                  NA              253400
2964               83584                  NA               41704
2965              326159                  NA              160906
2966              419715                  NA              207197
2967              289726                  NA              140509
2968              147716                  NA               70170
2969             9566955                  NA             4718471
2970             2505312                  NA             1250855
2971              772902                  NA              380685
2972             6346083                  NA             3128067
2973             2813523                  NA             1375126
2974              156131                  NA               77615
2975             1254675                  NA              635422
2976             1086859                  NA              532509
2977             2109957                  NA             1038760
2978             2959386                  NA             1493164
2979             2959386                  NA             1493164
2980             2959386                  NA             1493164
2981             2959386                  NA             1493164
2982            19908595                  NA             9713298
2983             2265926                  NA             1137581
2984             2679298                  NA             1318555
2985             4610050                  NA             2315218
2986              772902                  NA              380685
2987              772902                  NA              380685
2988             2813523                  NA             1375126
2989             3194310                  NA             1562880
2990              383732                  NA              189495
2991              383732                  NA              189495
2992              884359                  NA              435364
2993              550596                  NA              277195
2994             1087068                  NA              546278
2995              775169                  NA              372915
2996             6346083                  NA             3128067
2997             9566955                  NA             4718471
2998              308919                  NA              149938
2999             2813523                  NA             1375126
3000              429312                  NA              206306
3001             1114368                  NA              538428
3002              127314                  NA               65959
3003              564466                  NA              276108
3004              275693                  NA              137408
3005             6346083                  NA             3128067
3006             7673379                  NA             3806912
3007             7673379                  NA             3806912
3008             7673379                  NA             3806912
3009             7673379                  NA             3806912
3010             7673379                  NA             3806912
3011             7673379                  NA             3806912
3012             7673379                  NA             3806912
3013             1087068                  NA              546278
3014             6123949                  NA             3001027
3015             6123949                  NA             3001027
3016             6123949                  NA             3001027
3017             9566955                  NA             4718471
3018             9566955                  NA             4718471
3019             9566955                  NA             4718471
3020             9566955                  NA             4718471
3021             2668688                  NA             1305000
3022              406575                  NA              197548
3023              884359                  NA              435364
3024              274339                  NA              133897
3025              700578                  NA              343022
3026             2079759                  NA             1012336
3027             2265926                  NA             1137581
3028            13111917                  NA             6515114
3029             1568940                  NA              770847
3030             1282588                  NA              630858
3031              612898                  NA              299409
3032             2079759                  NA             1012336
3033             2668688                  NA             1305000
3034             2668688                  NA             1305000
3035             2668688                  NA             1305000
3036             2668688                  NA             1305000
3037             2253528                  NA             1113732
3038             6346083                  NA             3128067
3039             6346083                  NA             3128067
3040             6346083                  NA             3128067
3041             6346083                  NA             3128067
3042             6346083                  NA             3128067
3043             6346083                  NA             3128067
3044              711490                  NA              355020
3045             1114368                  NA              538428
3046              181055                  NA               90237
3047              341067                  NA              165567
3048             1087068                  NA              546278
3049              270495                  NA              134616
3050             2109957                  NA             1038760
3051             6232894                  NA             3033772
3052              323992                  NA              159346
3053             2296377                  NA             1160944
3054              906883                  NA              464093
3055              237830                  NA              117352
3056              488436                  NA              240478
3057             2959386                  NA             1493164
3058             2959386                  NA             1493164
3059             2959386                  NA             1493164
3060             7673379                  NA             3806912
3061             7673379                  NA             3806912
3062             4375604                  NA             2148947
3063              419715                  NA              207197
3064               32108                  NA               16461
3065               73103                  NA               37934
3066              158478                  NA               79833
3067            13111917                  NA             6515114
3068            13111917                  NA             6515114
3069            13111917                  NA             6515114
3070              151721                  NA               75403
3071               98301                  NA               48462
3072             3678328                  NA             1837913
3073             9566955                  NA             4718471
3074              552916                  NA              270938
3075              154481                  NA               75375
3076              406575                  NA              197548
3077              314708                  NA              152116
3078             4001701                  NA             2024424
3079             4692242                  NA             2342253
3080             4692242                  NA             2342253
3081             4692242                  NA             2342253
3082             4692242                  NA             2342253
3083             1254675                  NA              635422
3084              382218                  NA              189292
3085             1798025                  NA              886709
3086               62150                  NA               31276
3087              399335                  NA              205955
3088            13111917                  NA             6515114
3089              437609                  NA              223186
3090             4001701                  NA             2024424
3091             4001701                  NA             2024424
3092             2296377                  NA             1160944
3093             1010100                  NA              512085
3094               38055                  NA               18523
3095             1017724                  NA              503252
3096             2073546                  NA              975289
3097             2137223                  NA             1061042
3098             2959386                  NA             1493164
3099             2959386                  NA             1493164
3100            19908595                  NA             9713298
3101             1008280                  NA              506526
3102             6346083                  NA             3128067
3103             6346083                  NA             3128067
3104             7142603                  NA             3563435
3105             7142603                  NA             3563435
3106             7142603                  NA             3563435
3107             7142603                  NA             3563435
3108             7142603                  NA             3563435
3109             7142603                  NA             3563435
3110             2505312                  NA             1250855
3111              181852                  NA               89879
3112            13111917                  NA             6515114
3113            13111917                  NA             6515114
3114                  NA                  NA                  NA
3115             2073546                  NA              975289
3116             6232894                  NA             3033772
3117               59928                  NA               30012
3118              844461                  NA              407362
3119              422187                  NA              211290
3120               21942                  NA               11564
3121              915968                  NA              453044
3122              915968                  NA              453044
3123             2296377                  NA             1160944
3124             2296377                  NA             1160944
3125             1114368                  NA              538428
3126             1990873                  NA              978574
3127             1990873                  NA              978574
3128             1990873                  NA              978574
3129             4864209                  NA             2434382
3130             1163462                  NA              568061
3131             2840005                  NA             1374325
3132             2840005                  NA             1374325
3133             2840005                  NA             1374325
3134             2840005                  NA             1374325
3135             2840005                  NA             1374325
3136             2840005                  NA             1374325
3137             2840005                  NA             1374325
3138             2840005                  NA             1374325
3139             2840005                  NA             1374325
3140             2840005                  NA             1374325
3141              803398                  NA              394257
3142             2137223                  NA             1061042
3143             2137223                  NA             1061042
3144             7673379                  NA             3806912
3145             7673379                  NA             3806912
3146             7673379                  NA             3806912
3147             7673379                  NA             3806912
3148             7673379                  NA             3806912
3149             7673379                  NA             3806912
3150             7673379                  NA             3806912
3151             7673379                  NA             3806912
3152             6346083                  NA             3128067
3153             6346083                  NA             3128067
3154             2959386                  NA             1493164
3155             2959386                  NA             1493164
3156             6123949                  NA             3001027
3157             7142603                  NA             3563435
3158             7142603                  NA             3563435
3159             7142603                  NA             3563435
3160             7142603                  NA             3563435
3161            19908595                  NA             9713298
3162             2265926                  NA             1137581
3163             2265926                  NA             1137581
3164              322285                  NA              159719
3165              322285                  NA              159719
3166            13111917                  NA             6515114
3167              749290                  NA              363653
3168              174621                  NA               89435
3169             2190750                  NA             1084347
3170             2190750                  NA             1084347
3171             2679298                  NA             1318555
3172             2679298                  NA             1318555
3173             2679298                  NA             1318555
3174             9566955                  NA             4718471
3175             9566955                  NA             4718471
3176             9566955                  NA             4718471
3177             9566955                  NA             4718471
3178             9566955                  NA             4718471
3179             9566955                  NA             4718471
3180             9566955                  NA             4718471
3181             1335804                  NA              641128
3182             1568940                  NA              770847
3183              496299                  NA              240510
3184             4692242                  NA             2342253
3185             4692242                  NA             2342253
3186              966688                  NA              483251
3187              966688                  NA              483251
3188             4864209                  NA             2434382
3189             4864209                  NA             2434382
3190             4864209                  NA             2434382
3191             2365501                  NA             1162773
3192             4610050                  NA             2315218
3193             1670949                  NA              818990
3194             1670949                  NA              818990
3195             1420825                  NA              698689
3196              490769                  NA              249622
3197              490769                  NA              249622
3198             1086859                  NA              532509
3199              772902                  NA              380685
3200             3289701                  NA             1667851
3201             3289701                  NA             1667851
3202             2570862                  NA             1280273
3203             2570862                  NA             1280273
3204              406575                  NA              197548
3205             1282588                  NA              630858
3206             2394673                  NA             1181313
3207             2813523                  NA             1375126
3208             2813523                  NA             1375126
3209             2813523                  NA             1375126
3210             2813523                  NA             1375126
3211             3194310                  NA             1562880
3212             3194310                  NA             1562880
3213             3194310                  NA             1562880
3214             1017724                  NA              503252
3215             1017724                  NA              503252
3216              406575                  NA              197548
3217             2668688                  NA             1305000
3218             7673379                  NA             3806912
3219             7673379                  NA             3806912
3220              204374                  NA              105162
3221             4864209                  NA             2434382
3222             4864209                  NA             2434382
3223             1316145                  NA              640643
3224             1215703                 422              594920
3225             4912449                  NA             2407307
3226             6346083                  NA             3128067
3227             6346083                  NA             3128067
3228            19908595                  NA             9713298
3229            19908595                  NA             9713298
3230             6346083                  NA             3128067
3231             6346083                  NA             3128067
3232             2137223                  NA             1061042
3233            19908595                  NA             9713298
3234            19908595                  NA             9713298
3235            19908595                  NA             9713298
3236             9566955                  NA             4718471
3237             9566955                  NA             4718471
3238             9566955                  NA             4718471
3239             6232894                  NA             3033772
3240              700578                  NA              343022
3241              844461                  NA              407362
3242              469484                  NA              227358
3243             2505312                  NA             1250855
3244             1008280                  NA              506526
3245              831913                  NA              404751
3246              166222                  NA               84066
3247             7142603                  NA             3563435
3248              270495                  NA              134616
3249             6346083                  NA             3128067
3250             1568940                  NA              770847
3251             9566955                  NA             4718471
3252              158665                  NA               83943
3253              567287                  NA              281431
3254             2253528                  NA             1113732
3255             3678328                  NA             1837913
3256             6123949                  NA             3001027
3257             4912449                  NA             2407307
3258             2668688                  NA             1305000
3259             1087068                  NA              546278
3260             6232894                  NA             3033772
3261             6232894                  NA             3033772
3262             1086859                  NA              532509
3263              330119                  NA              161252
3264             1264357                  NA              612537
3265             7142603                  NA             3563435
3266              154481                  NA               75375
3267             1215703                 422              594920
3268             2668688                  NA             1305000
3269             7673379                  NA             3806912
3270             7673379                  NA             3806912
3271              384740                  NA              183928
3272             6232894                  NA             3033772
3273              202163                  NA              100828
3274            13111917                  NA             6515114
3275              421982                  NA              206161
3276              122229                 225               61221
3277               66376                  NA               33782
3278             4864209                  NA             2434382
3279              396279                  NA              201129
3280              399335                  NA              205955
3281              399335                  NA              205955
3282              399335                  NA              205955
3283             4001701                  NA             2024424
3284                  NA                  NA                  NA
3285                  NA                  NA                  NA
3286            19908595                  NA             9713298
3287            19908595                  NA             9713298
3288             1670949                  NA              818990
3289             2570862                  NA             1280273
3290             6094752                  NA             2965233
3291             6094752                  NA             2965233
3292             6094752                  NA             2965233
3293             6094752                  NA             2965233
3294             6094752                  NA             2965233
3295             6094752                  NA             2965233
3296              341067                  NA              165567
3297              399335                  NA              205955
3298              391957                  NA              189194
3299              119685                  NA               62534
3300             2813523                  NA             1375126
3301             6346083                  NA             3128067
3302             7673379                  NA             3806912
3303             7673379                  NA             3806912
3304              437609                  NA              223186
3305             2668688                  NA             1305000
3306             2668688                  NA             1305000
3307             6346083                  NA             3128067
3308             6346083                  NA             3128067
3309              421982                  NA              206161
3310             6232894                  NA             3033772
3311             2959386                  NA             1493164
3312              322285                  NA              159719
3313             9566955                  NA             4718471
3314             2570862                  NA             1280273
3315             4692242                  NA             2342253
3316            19908595                  NA             9713298
3317            19908595                  NA             9713298
3318             7142603                  NA             3563435
3319             1010100                  NA              512085
3320             3289701                  NA             1667851
3321               77140                  NA               40384
3322             4692242                  NA             2342253
3323             2840005                  NA             1374325
3324             6346083                  NA             3128067
3325              382218                  NA              189292
3326              585485                  NA              292820
3327             9566955                  NA             4718471
3328              966688                  NA              483251
3329            13111917                  NA             6515114
3330             3289701                  NA             1667851
3331             3289701                  NA             1667851
3332            13111917                  NA             6515114
3333             2813523                  NA             1375126
3334             3194310                  NA             1562880
3335              803398                  NA              394257
3336             7673379                  NA             3806912
3337             7673379                  NA             3806912
3338             7673379                  NA             3806912
3339             7142603                  NA             3563435
3340             7142603                  NA             3563435
3341             7142603                  NA             3563435
3342              140356                  NA               72104
3343             2668688                  NA             1305000
3344             2668688                  NA             1305000
3345            19908595                  NA             9713298
3346             1798025                  NA              886709
3347             6232894                  NA             3033772
3348             3678328                  NA             1837913
3349             6232894                  NA             3033772
3350             6232894                  NA             3033772
3351             2959386                  NA             1493164
3352             2959386                  NA             1493164
3353              391957                  NA              189194
3354             6232894                  NA             3033772
3355             9566955                  NA             4718471
3356             6094752                  NA             2965233
3357             6346083                  NA             3128067
3358             7673379                  NA             3806912
3359             7673379                  NA             3806912
3360              401702                  NA              198867
3361              281712                  NA              142477
3362              269418                  NA              135977
3363             6123949                  NA             3001027
3364             6232894                  NA             3033772
3365              223223                  NA              111472
3366             6094752                  NA             2965233
3367             6094752                  NA             2965233
3368             2840005                  NA             1374325
3369             4375604                  NA             2148947
3370             9566955                  NA             4718471
3371              906883                  NA              464093
3372             7673379                  NA             3806912
3373             6123949                  NA             3001027
3374             6346083                  NA             3128067
3375             6346083                  NA             3128067
3376             2959386                  NA             1493164
3377                  NA                  NA                  NA
3378             9566955                  NA             4718471
3379              304252                  NA              154587
3380             4692242                  NA             2342253
3381              490769                  NA              249622
3382             2959386                  NA             1493164
3383            19908595                  NA             9713298
3384            19908595                  NA             9713298
3385             7142603                  NA             3563435
3386             2109957                  NA             1038760
3387             4692242                  NA             2342253
3388              772902                  NA              380685
3389             2265926                  NA             1137581
3390              269278                 239              135933
3391             7673379                  NA             3806912
3392             7673379                  NA             3806912
3393             7142603                  NA             3563435
3394             2190750                  NA             1084347
3395             1254675                  NA              635422
3396             1282588                  NA              630858
3397             7142603                  NA             3563435
3398             2668688                  NA             1305000
3399             6094752                  NA             2965233
3400             7673379                  NA             3806912
3401            19908595                  NA             9713298
3402             6094752                  NA             2965233
3403              171284                  NA               83922
3404              275693                  NA              137408
3405             4375604                  NA             2148947
3406            19908595                  NA             9713298
3407             1335804                  NA              641128
3408              382983                  NA              189968
3409             1010100                  NA              512085
3410              323992                  NA              159346
3411             2296377                  NA             1160944
3412              330119                  NA              161252
3413               55983                  NA               28379
3414             2668688                  NA             1305000
3415             2668688                  NA             1305000
3416             2668688                  NA             1305000
3417             2668688                  NA             1305000
3418             2668688                  NA             1305000
3419             2668688                  NA             1305000
3420             2668688                  NA             1305000
3421             7673379                  NA             3806912
3422             7673379                  NA             3806912
3423             7673379                  NA             3806912
3424             7673379                  NA             3806912
3425             7673379                  NA             3806912
3426               35159                  NA               18160
3427              477056                  NA              234726
3428              176656                  NA               89507
3429             2073546                  NA              975289
3430             6123949                  NA             3001027
3431              133467                 110               67534
3432             1087068                  NA              546278
3433              445213                  NA              223753
3434              226523                  NA              112654
3435             4864209                  NA             2434382
3436              225745                  NA              112032
3437             2570862                  NA             1280273
3438              148523                  NA               76658
3439            13111917                  NA             6515114
3440             2365501                  NA             1162773
3441            13111917                  NA             6515114
3442             7673379                  NA             3806912
3443             4864209                  NA             2434382
3444             4610050                  NA             2315218
3445             2505312                  NA             1250855
3446             2505312                  NA             1250855
3447             2505312                  NA             1250855
3448             2505312                  NA             1250855
3449              281712                  NA              142477
3450             3289701                  NA             1667851
3451             4001701                  NA             2024424
3452             4001701                  NA             2024424
3453             4001701                  NA             2024424
3454             4001701                  NA             2024424
3455             4001701                  NA             2024424
3456                  NA                  NA                  NA
3457                  NA                  NA                  NA
3458             1981584                  NA             1011796
3459            13111917                  NA             6515114
3460             1215703                 422              594920
3461             4912449                  NA             2407307
3462             4912449                  NA             2407307
3463            19908595                  NA             9713298
3464            13111917                  NA             6515114
3465            13111917                  NA             6515114
3466            19908595                  NA             9713298
3467             2073546                  NA              975289
3468             6094752                  NA             2965233
3469             6094752                  NA             2965233
3470              104055                  NA               53837
3471             6094752                  NA             2965233
3472              646794                  NA              322648
3473             4912449                  NA             2407307
3474              119685                  NA               62534
3475              771602                  NA              388362
3476              386064                  NA              186619
3477              831913                  NA              404751
3478               77140                  NA               40384
3479               64570                  NA               32031
3480              222604                  NA              109360
3481            13111917                  NA             6515114
3482             2190750                  NA             1084347
3483             1335804                  NA              641128
3484              118541                  NA               59633
3485               79008                  NA               40763
3486             3678328                  NA             1837913
3487             2505312                  NA             1250855
3488             1017724                  NA              503252
3489              429312                  NA              206306
3490              153733                  NA               76642
3491              812506                  NA              397560
3492             7673379                  NA             3806912
3493             7673379                  NA             3806912
3494             7673379                  NA             3806912
3495             7673379                  NA             3806912
3496              341067                  NA              165567
3497             6123949                  NA             3001027
3498              257927                  NA              126314
3499             2668688                  NA             1305000
3500             6346083                  NA             3128067
3501              678995                  NA              341280
3502             1798025                  NA              886709
3503             6232894                  NA             3033772
3504              133467                 110               67534
3505               96846                  NA               48894
3506             2959386                  NA             1493164
3507             2959386                  NA             1493164
3508             2959386                  NA             1493164
3509             2959386                  NA             1493164
3510             7673379                  NA             3806912
3511             7673379                  NA             3806912
3512             7673379                  NA             3806912
3513             6346083                  NA             3128067
3514              242972                  NA              122440
3515               66376                  NA               33782
3516             3678328                  NA             1837913
3517             3678328                  NA             1837913
3518              966688                  NA              483251
3519             9566955                  NA             4718471
3520             9566955                  NA             4718471
3521             2505312                  NA             1250855
3522             2505312                  NA             1250855
3523             4864209                  NA             2434382
3524             4864209                  NA             2434382
3525              585485                  NA              292820
3526             6346083                  NA             3128067
3527             3289701                  NA             1667851
3528              281712                  NA              142477
3529             1254675                  NA              635422
3530             1254675                  NA              635422
3531             1254675                  NA              635422
3532             1254675                  NA              635422
3533             1254675                  NA              635422
3534             4001701                  NA             2024424
3535               47141                  NA               23954
3536              445213                  NA              223753
3537             4001701                  NA             2024424
3538             4001701                  NA             2024424
3539             2959386                  NA             1493164
3540             6346083                  NA             3128067
3541             6346083                  NA             3128067
3542             7142603                  NA             3563435
3543              884359                  NA              435364
3544                  NA                  NA                  NA
3545              658694                  NA              322943
3546             9566955                  NA             4718471
3547              591397                  NA              285117
3548              490769                  NA              249622
3549             4692242                  NA             2342253
3550             4692242                  NA             2342253
3551            13111917                  NA             6515114
3552              257927                  NA              126314
3553              156131                  NA               77615
3554             7673379                  NA             3806912
3555             2959386                  NA             1493164
3556             6123949                  NA             3001027
3557             1087068                  NA              546278
3558             7142603                  NA             3563435
3559             2265926                  NA             1137581
3560             4864209                  NA             2434382
3561             2365501                  NA             1162773
3562             2394673                  NA             1181313
3563             2813523                  NA             1375126
3564             2813523                  NA             1375126
3565             2394673                  NA             1181313
3566             6346083                  NA             3128067
3567             7142603                  NA             3563435
3568             7142603                  NA             3563435
3569              445213                  NA              223753
3570             2668688                  NA             1305000
3571             1087068                  NA              546278
3572             6232894                  NA             3033772
3573             9566955                  NA             4718471
3574              812506                  NA              397560
3575             6232894                  NA             3033772
3576             2959386                  NA             1493164
3577              771602                  NA              388362
3578             7142603                  NA             3563435
3579              382218                  NA              189292
3580             6094752                  NA             2965233
3581             6094752                  NA             2965233
3582              711490                  NA              355020
3583             4375604                  NA             2148947
3584            19908595                  NA             9713298
3585            19908595                  NA             9713298
3586             3678328                  NA             1837913
3587             3678328                  NA             1837913
3588              884359                  NA              435364
3589              477056                  NA              234726
3590              119685                  NA               62534
3591              281712                  NA              142477
3592             2668688                  NA             1305000
3593              118541                  NA               59633
3594              181055                  NA               90237
3595             7673379                  NA             3806912
3596             7673379                  NA             3806912
3597             7673379                  NA             3806912
3598              711490                  NA              355020
3599              382218                  NA              189292
3600             1163462                  NA              568061
3601               55650                  NA               29968
3602             4864209                  NA             2434382
3603              171284                  NA               83922
3604               82044                  NA               42677
3605                  NA                  NA                  NA
3606              399335                  NA              205955
3607              771602                  NA              388362
3608             7673379                  NA             3806912
3609             1010100                  NA              512085
3610             9566955                  NA             4718471
3611             2505312                  NA             1250855
3612             2505312                  NA             1250855
3613             2505312                  NA             1250855
3614             3289701                  NA             1667851
3615             4001701                  NA             2024424
3616             1042393                  NA              516095
3617             4912449                  NA             2407307
3618            19908595                  NA             9713298
3619             6094752                  NA             2965233
3620             6094752                  NA             2965233
3621              323992                  NA              159346
3622             3678328                  NA             1837913
3623               58547                  NA               27946
3624             1254675                  NA              635422
3625             7673379                  NA             3806912
3626             7673379                  NA             3806912
3627             7673379                  NA             3806912
3628             7673379                  NA             3806912
3629             2570862                  NA             1280273
3630              749290                  NA              363653
3631             6123949                  NA             3001027
3632              496299                  NA              240510
3633              308919                  NA              149938
3634              831913                  NA              404751
3635             2668688                  NA             1305000
3636             6346083                  NA             3128067
3637              277944                  NA              140783
3638              422733                  NA              212276
3639             6232894                  NA             3033772
3640              915968                  NA              453044
3641              185147                  NA               92047
3642             7673379                  NA             3806912
3643             7673379                  NA             3806912
3644             4375604                  NA             2148947
3645             4375604                  NA             2148947
3646              585485                  NA              292820
3647             3678328                  NA             1837913
3648             9566955                  NA             4718471
3649               55650                  NA               29968
3650             4692242                  NA             2342253
3651             1981584                  NA             1011796
3652             1254675                  NA              635422
3653             1254675                  NA              635422
3654             1254675                  NA              635422
3655             2265926                  NA             1137581
3656             3289701                  NA             1667851
3657             4001701                  NA             2024424
3658             2959386                  NA             1493164
3659              218515                  NA              108665
3660             9566955                  NA             4718471
3661              510290                  NA              256202
3662               83760                  NA               42020
3663               82044                  NA               42677
3664             2570862                  NA             1280273
3665              416839                  NA              205169
3666            13111917                  NA             6515114
3667             6346083                  NA             3128067
3668            19908595                  NA             9713298
3669             2679298                  NA             1318555
3670             9566955                  NA             4718471
3671             4692242                  NA             2342253
3672             4692242                  NA             2342253
3673             4692242                  NA             2342253
3674             4864209                  NA             2434382
3675              646794                  NA              322648
3676             2668688                  NA             1305000
3677             2394673                  NA             1181313
3678             2813523                  NA             1375126
3679             7673379                  NA             3806912
3680              251635                  NA              126980
3681              277944                  NA              140783
3682             7142603                  NA             3563435
3683             7142603                  NA             3563435
3684              382983                  NA              189968
3685             1420825                  NA              698689
3686             6346083                  NA             3128067
3687             6346083                  NA             3128067
3688            19908595                  NA             9713298
3689             1335804                  NA              641128
3690             6232894                  NA             3033772
3691             9566955                  NA             4718471
3692             2668688                  NA             1305000
3693             2668688                  NA             1305000
3694             6232894                  NA             3033772
3695             6232894                  NA             3033772
3696             7142603                  NA             3563435
3697              429312                  NA              206306
3698             6094752                  NA             2965233
3699             4375604                  NA             2148947
3700              399335                  NA              205955
3701              152640                  NA               75942
3702             2668688                  NA             1305000
3703             6123949                  NA             3001027
3704              322285                  NA              159719
3705             7673379                  NA             3806912
3706             7673379                  NA             3806912
3707             7673379                  NA             3806912
3708             7673379                  NA             3806912
3709             7673379                  NA             3806912
3710             7673379                  NA             3806912
3711             7673379                  NA             3806912
3712             7673379                  NA             3806912
3713             7673379                  NA             3806912
3714             1568940                  NA              770847
3715            19908595                  NA             9713298
3716            19908595                  NA             9713298
3717             1163462                  NA              568061
3718               24944                  NA               13144
3719             6123949                  NA             3001027
3720             1798025                  NA              886709
3721              406575                  NA              197548
3722             2073546                  NA              975289
3723              477056                  NA              234726
3724             1254675                  NA              635422
3725              399335                  NA              205955
3726                  NA                  NA                  NA
3727                  NA                  NA                  NA
3728            19908595                  NA             9713298
3729             2265926                  NA             1137581
3730             2073546                  NA              975289
3731             3194310                  NA             1562880
3732             6094752                  NA             2965233
3733             1335804                  NA              641128
3734            19908595                  NA             9713298
3735             7673379                  NA             3806912
3736             7673379                  NA             3806912
3737             6123949                  NA             3001027
3738             1428923                  NA              708697
3739             1568940                  NA              770847
3740              275693                  NA              137408
3741             2668688                  NA             1305000
3742             2668688                  NA             1305000
3743             6346083                  NA             3128067
3744             6346083                  NA             3128067
3745             1335804                  NA              641128
3746              901729                  NA              444836
3747             7673379                  NA             3806912
3748             7142603                  NA             3563435
3749            13111917                  NA             6515114
3750               64570                  NA               32031
3751             9566955                  NA             4718471
3752             9566955                  NA             4718471
3753             9566955                  NA             4718471
3754             4864209                  NA             2434382
3755              281712                  NA              142477
3756             4692242                  NA             2342253
3757             1254675                  NA              635422
3758                  NA                  NA                  NA
3759              493980                  NA              244298
3760              421854                  NA              208182
3761             6346083                  NA             3128067
3762             7142603                  NA             3563435
3763             9566955                  NA             4718471
3764             4692242                  NA             2342253
3765              915968                  NA              453044
3766             1990873                  NA              978574
3767             1990873                  NA              978574
3768             2840005                  NA             1374325
3769             2840005                  NA             1374325
3770             2959386                  NA             1493164
3771             1613587                  NA              790463
3772               24944                  NA               13144
3773             7142603                  NA             3563435
3774             2265926                  NA             1137581
3775             2265926                  NA             1137581
3776             2265926                  NA             1137581
3777             2265926                  NA             1137581
3778             2265926                  NA             1137581
3779              749290                  NA              363653
3780             2679298                  NA             1318555
3781             9566955                  NA             4718471
3782              422733                  NA              212276
3783              422733                  NA              212276
3784             1568940                  NA              770847
3785             2505312                  NA             1250855
3786             2505312                  NA             1250855
3787             4864209                  NA             2434382
3788             4864209                  NA             2434382
3789             2570862                  NA             1280273
3790             1282588                  NA              630858
3791             2394673                  NA             1181313
3792             2394673                  NA             1181313
3793             2813523                  NA             1375126
3794             7673379                  NA             3806912
3795             7673379                  NA             3806912
3796             4375604                  NA             2148947
3797              493980                  NA              244298
3798             4864209                  NA             2434382
3799             4864209                  NA             2434382
3800             2668688                  NA             1305000
3801            19908595                  NA             9713298
3802             1420825                  NA              698689
3803             9566955                  NA             4718471
3804             6346083                  NA             3128067
3805             1428923                  NA              708697
3806              975551                 164              484741
3807              185147                  NA               92047
3808              218515                  NA              108665
3809             2840005                  NA             1374325
3810             6123949                  NA             3001027
3811              803398                  NA              394257
3812             6123949                  NA             3001027
3813            19908595                  NA             9713298
3814              975551                 164              484741
3815              975551                 164              484741
3816             2073546                  NA              975289
3817                  NA                  NA                  NA
3818              678995                  NA              341280
3819              171284                  NA               83922
3820             1163462                  NA              568061
3821             2959386                  NA             1493164
3822             2959386                  NA             1493164
3823             2959386                  NA             1493164
3824              711490                  NA              355020
3825               55983                  NA               28379
3826              277944                  NA              140783
3827              421854                  NA              208182
3828             6232894                  NA             3033772
3829            19908595                  NA             9713298
3830            19908595                  NA             9713298
3831             2265926                  NA             1137581
3832             2679298                  NA             1318555
3833             2679298                  NA             1318555
3834             9566955                  NA             4718471
3835             6123949                  NA             3001027
3836              552916                  NA              270938
3837              552916                  NA              270938
3838             1420825                  NA              698689
3839             1420825                  NA              698689
3840              772902                  NA              380685
3841              697704                  NA              348873
3842              697704                  NA              348873
3843              658694                  NA              322943
3844             3194310                  NA             1562880
3845              383732                  NA              189495
3846              383732                  NA              189495
3847              383732                  NA              189495
3848              383732                  NA              189495
3849              803398                  NA              394257
3850              274339                  NA              133897
3851              274339                  NA              133897
3852              700578                  NA              343022
3853             2137223                  NA             1061042
3854             6123949                  NA             3001027
3855             6123949                  NA             3001027
3856             2109957                  NA             1038760
3857             2265926                  NA             1137581
3858            13111917                  NA             6515114
3859             2365501                  NA             1162773
3860            19908595                  NA             9713298
3861             2679298                  NA             1318555
3862             2679298                  NA             1318555
3863             2679298                  NA             1318555
3864              496299                  NA              240510
3865              496299                  NA              240510
3866              496299                  NA              240510
3867                  NA                  NA                  NA
3868             9566955                  NA             4718471
3869             6232894                  NA             3033772
3870              772902                  NA              380685
3871              772902                  NA              380685
3872             1282588                  NA              630858
3873              884359                  NA              435364
3874            13111917                  NA             6515114
3875             4692242                  NA             2342253
3876             2959386                  NA             1493164
3877              863166                  NA              427343
3878             9566955                  NA             4718471
3879             4375604                  NA             2148947
3880              406575                  NA              197548
3881              202163                  NA              100828
3882             7142603                  NA             3563435
3883              975551                 164              484741
3884             2079759                  NA             1012336
3885              469484                  NA              227358
3886             3678328                  NA             1837913
3887             3678328                  NA             1837913
3888             3678328                  NA             1837913
3889             6123949                  NA             3001027
3890              189900                  NA               93505
3891             7142603                  NA             3563435
3892             1010100                  NA              512085
3893            19908595                  NA             9713298
3894              399335                  NA              205955
3895              399335                  NA              205955
3896             7142603                  NA             3563435
3897             9566955                  NA             4718471
3898             1981584                  NA             1011796
3899             6094752                  NA             2965233
3900             4375604                  NA             2148947
3901             2668688                  NA             1305000
3902             2668688                  NA             1305000
3903             2668688                  NA             1305000
3904             7673379                  NA             3806912
3905             4864209                  NA             2434382
3906              399335                  NA              205955
3907                  NA                  NA                  NA
3908             4001701                  NA             2024424
3909             6123949                  NA             3001027
3910                  NA                  NA                  NA
3911             6094752                  NA             2965233
3912             6094752                  NA             2965233
3913             6094752                  NA             2965233
3914             2265926                  NA             1137581
3915               79506                  NA               40147
3916               42292                  NA               21066
3917            19908595                  NA             9713298
3918              775169                  NA              372915
3919              185147                  NA               92047
3920              869755                  NA              427134
3921              257927                  NA              126314
3922             6346083                  NA             3128067
3923              330119                  NA              161252
3924             6232894                  NA             3033772
3925             6232894                  NA             3033772
3926             6232894                  NA             3033772
3927               60985                  NA               31578
3928             2959386                  NA             1493164
3929             2959386                  NA             1493164
3930             2959386                  NA             1493164
3931             2959386                  NA             1493164
3932             7673379                  NA             3806912
3933             7673379                  NA             3806912
3934             4864209                  NA             2434382
3935               25381                 138               13207
3936              382218                  NA              189292
3937              115066                  NA               57649
3938              915968                  NA              453044
3939             4692242                  NA             2342253
3940             6094752                  NA             2965233
3941             1163462                  NA              568061
3942             1163462                  NA              568061
3943             2840005                  NA             1374325
3944             2137223                  NA             1061042
3945             2137223                  NA             1061042
3946             7673379                  NA             3806912
3947             7673379                  NA             3806912
3948             1087068                  NA              546278
3949             4864209                  NA             2434382
3950              181055                  NA               90237
3951             1282588                  NA              630858
3952              275693                  NA              137408
3953             7673379                  NA             3806912
3954             7142603                  NA             3563435
3955             6094752                  NA             2965233
3956              812506                  NA              397560
3957             6346083                  NA             3128067
3958              225745                  NA              112032
3959             6232894                  NA             3033772
3960            19908595                  NA             9713298
3961              384740                  NA              183928
3962               55983                  NA               28379
3963              200040                  NA               94821
3964              493980                  NA              244298
3965             6123949                  NA             3001027
3966              803398                  NA              394257
3967              267282                  NA              132495
3968             2253528                  NA             1113732
3969             6232894                  NA             3033772
3970              775169                  NA              372915
3971             7673379                  NA             3806912
3972              171284                  NA               83922
3973              139042                  NA               68498
3974              906883                  NA              464093
3975              323992                  NA              159346
3976             1086859                  NA              532509
3977            19908595                  NA             9713298
3978             4610050                  NA             2315218
3979              308386                  NA              152054
3980              225745                  NA              112032
3981              225911                  NA              111978
3982             6123949                  NA             3001027
3983               47693                  NA               24643
3984              257927                  NA              126314
3985              313961                  NA              153951
3986               84423                  NA               43002
3987             4610050                  NA             2315218
3988              490769                  NA              249622
3989            19908595                  NA             9713298
3990              552916                  NA              270938
3991              803398                  NA              394257
3992                  NA                  NA                  NA
3993             6094752                  NA             2965233
3994              242972                  NA              122440
3995              901729                  NA              444836
3996              646794                  NA              322648
3997              225911                  NA              111978
3998             6123949                  NA             3001027
3999              166222                  NA               84066
4000              564466                  NA              276108
4001             1613587                  NA              790463
4002            19908595                  NA             9713298
4003             2668688                  NA             1305000
4004             1264357                  NA              612537
4005             7142603                  NA             3563435
4006             2679298                  NA             1318555
4007             4692242                  NA             2342253
4008             3678328                  NA             1837913
4009             6094752                  NA             2965233
4010             6094752                  NA             2965233
4011             4864209                  NA             2434382
4012              585485                  NA              292820
4013             4375604                  NA             2148947
4014               73511                  NA               36809
4015             2668688                  NA             1305000
4016             6346083                  NA             3128067
4017             2668688                  NA             1305000
4018             6123949                  NA             3001027
4019             6123949                  NA             3001027
4020             9566955                  NA             4718471
4021             2505312                  NA             1250855
4022             9566955                  NA             4718471
4023             2668688                  NA             1305000
4024             6232894                  NA             3033772
4025             6232894                  NA             3033772
4026             6346083                  NA             3128067
4027              206072                  NA               99873
4028             6346083                  NA             3128067
4029             1254675                  NA              635422
4030             1010100                  NA              512085
4031             1981584                  NA             1011796
4032              772902                  NA              380685
4033             1010100                  NA              512085
4034             7142603                  NA             3563435
4035             7142603                  NA             3563435
4036               36839                  NA               18645
4037             6346083                  NA             3128067
4038                  NA                  NA                  NA
4039             4864209                  NA             2434382
4040             1254675                  NA              635422
4041               34598                  NA               17590
4042             9566955                  NA             4718471
4043             2813523                  NA             1375126
4044             7673379                  NA             3806912
4045              164765                  21               82304
4046            13111917                  NA             6515114
4047             2679298                  NA             1318555
4048             2840005                  NA             1374325
4049             9566955                  NA             4718471
4050             7142603                  NA             3563435
4051              202163                  NA              100828
4052             1254675                  NA              635422
4053              399335                  NA              205955
4054             6094752                  NA             2965233
4055              164765                  21               82304
4056             2668688                  NA             1305000
4057             9566955                  NA             4718471
4058             9566955                  NA             4718471
4059             2668688                  NA             1305000
4060             2668688                  NA             1305000
4061             2296377                  NA             1160944
4062            13111917                  NA             6515114
4063             2365501                  NA             1162773
4064             9566955                  NA             4718471
4065             7673379                  NA             3806912
4066             2365501                  NA             1162773
4067              399335                  NA              205955
4068             2505312                  NA             1250855
4069             2505312                  NA             1250855
4070              772902                  NA              380685
4071             4001701                  NA             2024424
4072             2679298                  NA             1318555
4073             1264357                  NA              612537
4074             6094752                  NA             2965233
4075             6094752                  NA             2965233
4076              490769                  NA              249622
4077             1254675                  NA              635422
4078            19908595                  NA             9713298
4079             2668688                  NA             1305000
4080             1316145                  NA              640643
4081             2668688                  NA             1305000
4082             2668688                  NA             1305000
4083              102555                  NA               50314
4084             6232894                  NA             3033772
4085               79008                  NA               40763
4086             7673379                  NA             3806912
4087            13111917                  NA             6515114
4088                  NA                  NA                  NA
4089             2296377                  NA             1160944
4090              844461                  NA              407362
4091              183297                  NA               91287
4092             9566955                  NA             4718471
4093             6232894                  NA             3033772
4094             6232894                  NA             3033772
4095             7142603                  NA             3563435
4096              399335                  NA              205955
4097             2959386                  NA             1493164
4098              328011                  NA              164852
4099            19908595                  NA             9713298
4100             2265926                  NA             1137581
4101             2679298                  NA             1318555
4102             2679298                  NA             1318555
4103             2679298                  NA             1318555
4104             2679298                  NA             1318555
4105             6123949                  NA             3001027
4106              678995                  NA              341280
4107              658694                  NA              322943
4108                  NA                  NA                  NA
4109             2668688                  NA             1305000
4110             7673379                  NA             3806912
4111              330119                  NA              161252
4112                  NA                  NA                  NA
4113                  NA                  NA                  NA
4114             4912449                  NA             2407307
4115             1981584                  NA             1011796
4116             2253528                  NA             1113732
4117              115066                  NA               57649
4118               49455                  NA               24461
4119               84423                  NA               43002
4120               35306                  NA               18120
4121              257927                  NA              126314
4122             1254675                  NA              635422
4123             7673379                  NA             3806912
4124             2668688                  NA             1305000
4125             2668688                  NA             1305000
4126             2668688                  NA             1305000
4127             6232894                  NA             3033772
4128              386064                  NA              186619
4129             7673379                  NA             3806912
4130             4375604                  NA             2148947
4131               66376                  NA               33782
4132            13111917                  NA             6515114
4133              488436                  NA              240478
4134                  NA                  NA                  NA
4135             3678328                  NA             1837913
4136             1428923                  NA              708697
4137              183297                  NA               91287
4138              421854                  NA              208182
4139            19908595                  NA             9713298
4140            13111917                  NA             6515114
4141             9566955                  NA             4718471
4142              915968                  NA              453044
4143             2073546                  NA              975289
4144             2296377                  NA             1160944
4145             7673379                  NA             3806912
4146             7142603                  NA             3563435
4147             7142603                  NA             3563435
4148            13111917                  NA             6515114
4149             3194310                  NA             1562880
4150             7673379                  NA             3806912
4151             2668688                  NA             1305000
4152              119685                  NA               62534
4153              550596                  NA              277195
4154            19908595                  NA             9713298
4155             3678328                  NA             1837913
4156             4912449                  NA             2407307
4157            19908595                  NA             9713298
4158            19908595                  NA             9713298
4159            19908595                  NA             9713298
4160            19908595                  NA             9713298
4161             1798025                  NA              886709
4162               35159                  NA               18160
4163             7673379                  NA             3806912
4164              867161                  NA              431851
4165              330119                  NA              161252
4166              384740                  NA              183928
4167             1613587                  NA              790463
4168             2190750                  NA             1084347
4169             6123949                  NA             3001027
4170             6123949                  NA             3001027
4171             6123949                  NA             3001027
4172              416839                  NA              205169
4173              326159                  NA              160906
4174             9566955                  NA             4718471
4175              552916                  NA              270938
4176              117445                  NA               62226
4177              644547                  NA              316451
4178              151721                  NA               75403
4179             1163462                  NA              568061
4180               82044                  NA               42677
4181              406575                  NA              197548
4182              658694                  NA              322943
4183              341067                  NA              165567
4184             2296377                  NA             1160944
4185             2253528                  NA             1113732
4186             4912449                  NA             2407307
4187             6123949                  NA             3001027
4188             6123949                  NA             3001027
4189             6123949                  NA             3001027
4190            19908595                  NA             9713298
4191            13111917                  NA             6515114
4192             1215703                 422              594920
4193            13111917                  NA             6515114
4194             2505312                  NA             1250855
4195             1316145                  NA              640643
4196              406575                  NA              197548
4197              225745                  NA              112032
4198             1981584                  NA             1011796
4199              339707                  NA              171627
4200              863166                  NA              427343
4201             4001701                  NA             2024424
4202             1114368                  NA              538428
4203              313961                  NA              153951
4204             6094752                  NA             2965233
4205             1215703                 422              594920
4206             2679298                  NA             1318555
4207             1264357                  NA              612537
4208             1670949                  NA              818990
4209              277944                  NA              140783
4210            19908595                  NA             9713298
4211              901729                  NA              444836
4212              168404                  NA               83312
4213              490769                  NA              249622
4214             7673379                  NA             3806912
4215             7673379                  NA             3806912
4216              158478                  NA               79833
4217              313961                  NA              153951
4218             9566955                  NA             4718471
4219             4864209                  NA             2434382
4220              884359                  NA              435364
4221              274339                  NA              133897
4222             6123949                  NA             3001027
4223             2365501                  NA             1162773
4224            19908595                  NA             9713298
4225             2073546                  NA              975289
4226             3194310                  NA             1562880
4227              119685                  NA               62534
4228             1017724                  NA              503252
4229             6346083                  NA             3128067
4230             6346083                  NA             3128067
4231              359005                  NA              177218
4232              289726                  NA              140509
4233              538985                  NA              265985
4234              269418                  NA              135977
4235             1087068                  NA              546278
4236              269278                 239              135933
4237             2079759                  NA             1012336
4238              144705                  NA               71707
4239             7142603                  NA             3563435
4240            13111917                  NA             6515114
4241            13111917                  NA             6515114
4242              174621                  NA               89435
4243              496299                  NA              240510
4244             9566955                  NA             4718471
4245             9566955                  NA             4718471
4246             9566955                  NA             4718471
4247             4864209                  NA             2434382
4248               64701                  NA               32652
4249             4692242                  NA             2342253
4250             4692242                  NA             2342253
4251             1017724                  NA              503252
4252              772902                  NA              380685
4253              181852                  NA               89879
4254              488436                  NA              240478
4255              901729                  NA              444836
4256             1316145                  NA              640643
4257             1087068                  NA              546278
4258              171951                  NA               87139
4259             6123949                  NA             3001027
4260              330119                  NA              161252
4261               35827                 103               17945
4262              221648                  NA              106730
4263              593318                  NA              293750
4264              812506                  NA              397560
4265             1042393                  NA              516095
4266              269278                 239              135933
4267              270495                  NA              134616
4268             1335804                  NA              641128
4269             3194310                  NA             1562880
4270              437609                  NA              223186
4271              225911                  NA              111978
4272              289726                  NA              140509
4273             2570862                  NA             1280273
4274              646794                  NA              322648
4275              490769                  NA              249622
4276              771602                  NA              388362
4277             7673379                  NA             3806912
4278            19908595                  NA             9713298
4279              181055                  NA               90237
4280             7142603                  NA             3563435
4281             2505312                  NA             1250855
4282             1163462                  NA              568061
4283             1798025                  NA              886709
4284              330119                  NA              161252
4285               24944                  NA               13144
4286            13111917                  NA             6515114
4287              966688                  NA              483251
4288              901729                  NA              444836
4289             4692242                  NA             2342253
4290             9566955                  NA             4718471
4291             6123949                  NA             3001027
4292             1990873                  NA              978574
4293             1428923                  NA              708697
4294             1990873                  NA              978574
4295              422733                  NA              212276
4296              585485                  NA              292820
4297              322285                  NA              159719
4298              158665                  NA               83943
4299             7673379                  NA             3806912
4300             6346083                  NA             3128067
4301             7142603                  NA             3563435
4302             7142603                  NA             3563435
4303              496299                  NA              240510
4304              322285                  NA              159719
4305             4864209                  NA             2434382
4306              844461                  NA              407362
4307             2296377                  NA             1160944
4308              803398                  NA              394257
4309            19908595                  NA             9713298
4310            19908595                  NA             9713298
4311              158665                  NA               83943
4312             2365501                  NA             1162773
4313             6123949                  NA             3001027
4314             6346083                  NA             3128067
4315             6346083                  NA             3128067
4316             6346083                  NA             3128067
4317             6346083                  NA             3128067
4318              291491                  NA              148126
4319              328011                  NA              164852
4320             3678328                  NA             1837913
4321             3678328                  NA             1837913
4322             3678328                  NA             1837913
4323             3678328                  NA             1837913
4324                  NA                  NA                  NA
4325             2296377                  NA             1160944
4326              593318                  NA              293750
4327             7142603                  NA             3563435
4328             7142603                  NA             3563435
4329             3194310                  NA             1562880
4330             6094752                  NA             2965233
4331              289726                  NA              140509
4332            19908595                  NA             9713298
4333            19908595                  NA             9713298
4334              221648                  NA              106730
4335            19908595                  NA             9713298
4336               30511                  NA               15556
4337               82058                  NA               42359
4338              591397                  NA              285117
4339              522537                  NA              259930
4340               98812                  NA               49036
4341              133834                  NA               70614
4342             9566955                  NA             4718471
4343              550596                  NA              277195
4344               47759                  NA               23950
4345                  NA                  NA                  NA
4346             2679298                  NA             1318555
4347              242972                  NA              122440
4348                  NA                  NA                  NA
4349             1568940                  NA              770847
4350               47759                  NA               23950
4351             6094752                  NA             2965233
4352             2679298                  NA             1318555
4353             2679298                  NA             1318555
4354             9566955                  NA             4718471
4355              831913                  NA              404751
4356             9566955                  NA             4718471
4357             9566955                  NA             4718471
4358              700578                  NA              343022
4359              700578                  NA              343022
4360             6123949                  NA             3001027
4361            13111917                  NA             6515114
4362             2365501                  NA             1162773
4363             2190750                  NA             1084347
4364              496299                  NA              240510
4365              772902                  NA              380685
4366              772902                  NA              380685
4367             1086859                  NA              532509
4368             2668688                  NA             1305000
4369             6346083                  NA             3128067
4370             6346083                  NA             3128067
4371             6346083                  NA             3128067
4372             1798025                  NA              886709
4373             6346083                  NA             3128067
4374             6346083                  NA             3128067
4375             6346083                  NA             3128067
4376              700578                  NA              343022
4377             6232894                  NA             3033772
4378              749290                  NA              363653
4379             1335804                  NA              641128
4380             7142603                  NA             3563435
4381             7142603                  NA             3563435
4382               56758                  NA               28464
4383             3678328                  NA             1837913
4384             4864209                  NA             2434382
4385             4864209                  NA             2434382
4386              181807                  NA               90224
4387              133834                  NA               70614
4388             4610050                  NA             2315218
4389                  NA                  NA                  NA
4390             4001701                  NA             2024424
4391            19908595                  NA             9713298
4392             6346083                  NA             3128067
4393             1008280                  NA              506526
4394              314708                  NA              152116
4395               83472                  NA               40947
4396             2668688                  NA             1305000
4397              422187                  NA              211290
4398             1335804                  NA              641128
4399             2505312                  NA             1250855
4400              421854                  NA              208182
4401             2365501                  NA             1162773
4402              174621                  NA               89435
4403             1568940                  NA              770847
4404             6346083                  NA             3128067
4405             6346083                  NA             3128067
4406             6346083                  NA             3128067
4407             6232894                  NA             3033772
4408              564466                  NA              276108
4409             6346083                  NA             3128067
4410             6346083                  NA             3128067
4411             6346083                  NA             3128067
4412             6346083                  NA             3128067
4413             9566955                  NA             4718471
4414             3194310                  NA             1562880
4415               96299                  NA               52279
4416              183297                  NA               91287
4417              158478                  NA               79833
4418              154481                  NA               75375
4419              419715                  NA              207197
4420             2505312                  NA             1250855
4421              206072                  NA               99873
4422               55222                 265               28888
4423             2959386                  NA             1493164
4424              421854                  NA              208182
4425             6123949                  NA             3001027
4426              678995                  NA              341280
4427              966688                  NA              483251
4428              274339                  NA              133897
4429             1215703                 422              594920
4430             6123949                  NA             3001027
4431              496299                  NA              240510
4432             2668688                  NA             1305000
4433             2668688                  NA             1305000
4434              221648                  NA              106730
4435              496299                  NA              240510
4436              140356                  NA               72104
4437              175947                  NA               88360
4438               50396                  NA               25247
4439             4610050                  NA             2315218
4440             4001701                  NA             2024424
4441              122265                  NA               62244
4442              103542                  NA               49921
4443              136132                  NA               67729
4444               42079                  NA               21793
4445                  NA                  NA                  NA
4446              267282                  NA              132495
4447             6232894                  NA             3033772
4448             7673379                  NA             3806912
4449              510290                  NA              256202
4450             1981584                  NA             1011796
4451              202163                  NA              100828
4452              915968                  NA              453044
4453              226523                  NA              112654
4454             3289701                  NA             1667851
4455             1316145                  NA              640643
4456            13111917                  NA             6515114
4457             3194310                  NA             1562880
4458              133263                  NA               66411
4459              125355                  NA               62257
4460             6346083                  NA             3128067
4461              136132                  NA               67729
4462              136132                  NA               67729
4463            13111917                  NA             6515114
4464            13111917                  NA             6515114
4465            13111917                  NA             6515114
4466            13111917                  NA             6515114
4467            13111917                  NA             6515114
4468            13111917                  NA             6515114
4469             6123949                  NA             3001027
4470              359363                  NA              180193
4471              866377                  58              420485
4472              866377                  58              420485
4473              222604                  NA              109360
4474              696650                  NA              354035
4475             6123949                  NA             3001027
4476              488436                  NA              240478
4477             2505312                  NA             1250855
4478             2959386                  NA             1493164
4479             1017724                  NA              503252
4480             2959386                  NA             1493164
4481             2959386                  NA             1493164
4482             4864209                  NA             2434382
4483             4864209                  NA             2434382
4484              164765                  21               82304
4485               55650                  NA               29968
4486             3678328                  NA             1837913
4487             2296377                  NA             1160944
4488             9566955                  NA             4718471
4489               35159                  NA               18160
4490             7142603                  NA             3563435
4491             6123949                  NA             3001027
4492             9566955                  NA             4718471
4493             6123949                  NA             3001027
4494             7673379                  NA             3806912
4495                  NA                  NA                  NA
4496             7673379                  NA             3806912
4497             6346083                  NA             3128067
4498             6232894                  NA             3033772
4499             7673379                  NA             3806912
4500             9566955                  NA             4718471
4501             9566955                  NA             4718471
4502              493980                  NA              244298
4503              477056                  NA              234726
4504             2190750                  NA             1084347
4505             6232894                  NA             3033772
4506             4375604                  NA             2148947
4507              144705                  NA               71707
4508              152640                  NA               75942
4509             2265926                  NA             1137581
4510             6123949                  NA             3001027
4511              308919                  NA              149938
4512              152640                  NA               75942
4513              171284                  NA               83922
4514              225745                  NA              112032
4515             2679298                  NA             1318555
4516              593318                  NA              293750
4517             2073546                  NA              975289
4518              884359                  NA              435364
4519                  NA                  NA                  NA
4520             6123949                  NA             3001027
4521              422733                  NA              212276
4522             3194310                  NA             1562880
4523              181852                  NA               89879
4524            13111917                  NA             6515114
4525               25381                 138               13207
4526              552916                  NA              270938
4527             1990873                  NA              978574
4528             7673379                  NA             3806912
4529             1010100                  NA              512085
4530              771602                  NA              388362
4531             2679298                  NA             1318555
4532             9566955                  NA             4718471
4533             1670949                  NA              818990
4534             1316145                  NA              640643
4535             2570862                  NA             1280273
4536             6346083                  NA             3128067
4537             3194310                  NA             1562880
4538             6346083                  NA             3128067
4539              328011                  NA              164852
4540              151721                  NA               75403
4541            19908595                  NA             9713298
4542              133467                 110               67534
4543              199352                  NA               99597
4544               32108                  NA               16461
4545               82044                  NA               42677
4546             6123949                  NA             3001027
4547            19908595                  NA             9713298
4548              222831                  NA              106479
4549              119685                  NA               62534
4550              246709                  NA              122218
4551              496299                  NA              240510
4552              550596                  NA              277195
4553             7673379                  NA             3806912
4554              234667                  NA              113874
4555             4912449                  NA             2407307
4556             6346083                  NA             3128067
4557             6346083                  NA             3128067
4558             6346083                  NA             3128067
4559            13111917                  NA             6515114
4560             2296377                  NA             1160944
4561               73103                  NA               37934
4562               34212                  NA               17709
4563              149113                  NA               74782
4564             1990873                  NA              978574
4565             2505312                  NA             1250855
4566             7673379                  NA             3806912
4567             7142603                  NA             3563435
4568             7142603                  NA             3563435
4569             7142603                  NA             3563435
4570              181055                  NA               90237
4571             2265926                  NA             1137581
4572               73511                  NA               36809
4573             2190750                  NA             1084347
4574              490769                  NA              249622
4575             9566955                  NA             4718471
4576            19908595                  NA             9713298
4577             3289701                  NA             1667851
4578              755081                  NA              384572
4579             1087068                  NA              546278
4580             2813523                  NA             1375126
4581             3194310                  NA             1562880
4582             3194310                  NA             1562880
4583             6346083                  NA             3128067
4584              291491                  NA              148126
4585              678995                  NA              341280
4586             4864209                  NA             2434382
4587              772902                  NA              380685
4588              386064                  NA              186619
4589              866377                  58              420485
4590              199352                  NA               99597
4591             4864209                  NA             2434382
4592               25381                 138               13207
4593             9566955                  NA             4718471
4594                  NA                  NA                  NA
4595             4375604                  NA             2148947
4596             9566955                  NA             4718471
4597              382218                  NA              189292
4598              185147                  NA               92047
4599             9566955                  NA             4718471
4600              256143                  NA              128661
4601               28911                  NA               14366
4602             4610050                  NA             2315218
4603             2679298                  NA             1318555
4604             6123949                  NA             3001027
4605             6123949                  NA             3001027
4606             6123949                  NA             3001027
4607              496299                  NA              240510
4608             1335804                  NA              641128
4609             2668688                  NA             1305000
4610              100316                  NA               51152
4611             7673379                  NA             3806912
4612               34598                  NA               17590
4613               35951                  NA               18211
4614               37525                  NA               19594
4615                  NA                  NA                  NA
4616               39502                  NA               21669
4617              108670                  NA               55702
4618              136132                  NA               67729
4619              844461                  NA              407362
4620               37880                 187               18420
4621               56758                  NA               28464
4622               28921                  NA               14463
4623              901729                  NA              444836
4624             2840005                  NA             1374325
4625              591397                  NA              285117
4626             6346083                  NA             3128067
4627               47759                  NA               23950
4628             6123949                  NA             3001027
4629             6123949                  NA             3001027
4630             7142603                  NA             3563435
4631             7142603                  NA             3563435
4632             6232894                  NA             3033772
4633             2265926                  NA             1137581
4634             2265926                  NA             1137581
4635             2265926                  NA             1137581
4636             2190750                  NA             1084347
4637              288639                  NA              146836
4638             9566955                  NA             4718471
4639             4864209                  NA             2434382
4640              421854                  NA              208182
4641             4864209                  NA             2434382
4642              772902                  NA              380685
4643             3289701                  NA             1667851
4644             2570862                  NA             1280273
4645             2570862                  NA             1280273
4646              844461                  NA              407362
4647              844461                  NA              407362
4648             2570862                  NA             1280273
4649             7673379                  NA             3806912
4650               90311                  NA               45306
4651               53726                  NA               29982
4652             6346083                  NA             3128067
4653              844461                  NA              407362
4654               82044                  NA               42677
4655             3194310                  NA             1562880
4656             7673379                  NA             3806912
4657               35159                  NA               18160
4658             6094752                  NA             2965233
4659             9566955                  NA             4718471
4660               25381                 138               13207
4661             1010100                  NA              512085
4662             6346083                  NA             3128067
4663             7142603                  NA             3563435
4664             7142603                  NA             3563435
4665             4001701                  NA             2024424
4666                  NA                  NA                  NA
4667              158665                  NA               83943
4668              148203                  NA               71801
4669              151721                  NA               75403
4670             7673379                  NA             3806912
4671             1254675                  NA              635422
4672             7142603                  NA             3563435
4673             9566955                  NA             4718471
4674             2959386                  NA             1493164
4675             6094752                  NA             2965233
4676             6094752                  NA             2965233
4677             4375604                  NA             2148947
4678             2668688                  NA             1305000
4679             7673379                  NA             3806912
4680              772902                  NA              380685
4681             7673379                  NA             3806912
4682             7673379                  NA             3806912
4683             9566955                  NA             4718471
4684             6346083                  NA             3128067
4685             2959386                  NA             1493164
4686             7142603                  NA             3563435
4687            19908595                  NA             9713298
4688             2265926                  NA             1137581
4689             7673379                  NA             3806912
4690             6346083                  NA             3128067
4691               82044                  NA               42677
4692            19908595                  NA             9713298
4693              202163                  NA              100828
4694             2137223                  NA             1061042
4695               32108                  NA               16461
4696             2679298                  NA             1318555
4697             1163462                  NA              568061
4698              229436                  NA              110706
4699               20543                  NA               10091
4700               55983                  NA               28379
4701               58068                  NA               29210
4702             2296377                  NA             1160944
4703              496299                  NA              240510
4704              772902                  NA              380685
4705             2668688                  NA             1305000
4706             2668688                  NA             1305000
4707             6346083                  NA             3128067
4708             6346083                  NA             3128067
4709             2959386                  NA             1493164
4710             7142603                  NA             3563435
4711             4864209                  NA             2434382
4712                  NA                  NA                  NA
4713              202163                  NA              100828
4714              133263                  NA               66411
4715               21609                  NA               10985
4716                  NA                  NA                  NA
4717              901729                  NA              444836
4718             1163462                  NA              568061
4719             4610050                  NA             2315218
4720             7142603                  NA             3563435
4721             7142603                  NA             3563435
4722              711490                  NA              355020
4723             2679298                  NA             1318555
4724             2679298                  NA             1318555
4725             4692242                  NA             2342253
4726             1428923                  NA              708697
4727             2813523                  NA             1375126
4728             3194310                  NA             1562880
4729             3194310                  NA             1562880
4730             7673379                  NA             3806912
4731               82044                  NA               42677
4732              515954                  NA              253400
4733             6232894                  NA             3033772
4734             2959386                  NA             1493164
4735             7142603                  NA             3563435
4736             7142603                  NA             3563435
4737               82044                  NA               42677
4738             2679298                  NA             1318555
4739             6094752                  NA             2965233
4740             4375604                  NA             2148947
4741             2668688                  NA             1305000
4742             7673379                  NA             3806912
4743              399335                  NA              205955
4744             6346083                  NA             3128067
4745               32108                  NA               16461
4746               32108                  NA               16461
4747                  NA                  NA                  NA
4748            19908595                  NA             9713298
4749              772902                  NA              380685
4750              550596                  NA              277195
4751             3194310                  NA             1562880
4752             6232894                  NA             3033772
4753              401702                  NA              198867
4754               31176                  NA               15564
4755             2959386                  NA             1493164
4756             2959386                  NA             1493164
4757             7673379                  NA             3806912
4758             4375604                  NA             2148947
4759             4375604                  NA             2148947
4760             7142603                  NA             3563435
4761              166222                  NA               84066
4762             3678328                  NA             1837913
4763             3678328                  NA             1837913
4764               33828                 100               17746
4765             4864209                  NA             2434382
4766             1042393                  NA              516095
4767             4001701                  NA             2024424
4768              125355                  NA               62257
4769               79839                  NA               41064
4770               39402                  NA               19959
4771              867161                  NA              431851
4772             7142603                  NA             3563435
4773             7142603                  NA             3563435
4774             7142603                  NA             3563435
4775             2265926                  NA             1137581
4776             2190750                  NA             1084347
4777              164765                  21               82304
4778             1981584                  NA             1011796
4779             2813523                  NA             1375126
4780             1017724                  NA              503252
4781             7142603                  NA             3563435
4782             4864209                  NA             2434382
4783               35159                  NA               18160
4784            19908595                  NA             9713298
4785             9566955                  NA             4718471
4786             7142603                  NA             3563435
4787             7142603                  NA             3563435
4788             2668688                  NA             1305000
4789             4375604                  NA             2148947
4790             9566955                  NA             4718471
4791             7673379                  NA             3806912
4792             6123949                  NA             3001027
4793            13111917                  NA             6515114
4794             6094752                  NA             2965233
4795             6346083                  NA             3128067
4796             7673379                  NA             3806912
4797              550596                  NA              277195
4798             7142603                  NA             3563435
4799             2190750                  NA             1084347
4800             3678328                  NA             1837913
4801             1254675                  NA              635422
4802              550596                  NA              277195
4803             4001701                  NA             2024424
4804             1042393                  NA              516095
4805              119685                  NA               62534
4806             7673379                  NA             3806912
4807              181055                  NA               90237
4808             2679298                  NA             1318555
4809             2570862                  NA             1280273
4810             2394673                  NA             1181313
4811             1017724                  NA              503252
4812             9566955                  NA             4718471
4813             2668688                  NA             1305000
4814             6094752                  NA             2965233
4815             6094752                  NA             2965233
4816             6094752                  NA             2965233
4817             4375604                  NA             2148947
4818             4375604                  NA             2148947
4819            19908595                  NA             9713298
4820             1568940                  NA              770847
4821             3678328                  NA             1837913
4822              550596                  NA              277195
4823                  NA                  NA                  NA
4824              136132                  NA               67729
4825               47759                  NA               23950
4826              749290                  NA              363653
4827              242972                  NA              122440
4828              646794                  NA              322648
4829             6123949                  NA             3001027
4830            19908595                  NA             9713298
4831             6123949                  NA             3001027
4832              772902                  NA              380685
4833             6094752                  NA             2965233
4834             3678328                  NA             1837913
4835              711490                  NA              355020
4836             2079759                  NA             1012336
4837             6346083                  NA             3128067
4838             7673379                  NA             3806912
4839             9566955                  NA             4718471
4840             2668688                  NA             1305000
4841              384740                  NA              183928
4842              136132                  NA               67729
4843              437609                  NA              223186
4844             2959386                  NA             1493164
4845             4375604                  NA             2148947
4846             3678328                  NA             1837913
4847             3678328                  NA             1837913
4848             3678328                  NA             1837913
4849             3678328                  NA             1837913
4850             4864209                  NA             2434382
4851             4692242                  NA             2342253
4852             4692242                  NA             2342253
4853               20791                  NA               10570
4854             9566955                  NA             4718471
4855              678995                  NA              341280
4856              749290                  NA              363653
4857            13111917                  NA             6515114
4858             6123949                  NA             3001027
4859             4610050                  NA             2315218
4860              330119                  NA              161252
4861               47759                  NA               23950
4862             2265926                  NA             1137581
4863            13111917                  NA             6515114
4864             1428923                  NA              708697
4865             1670949                  NA              818990
4866             2668688                  NA             1305000
4867              755081                  NA              384572
4868             3289701                  NA             1667851
4869             2253528                  NA             1113732
4870             1042393                  NA              516095
4871             7673379                  NA             3806912
4872             6346083                  NA             3128067
4873             9566955                  NA             4718471
4874             9566955                  NA             4718471
4875              421854                  NA              208182
4876             4912449                  NA             2407307
4877             2668688                  NA             1305000
4878              419715                  NA              207197
4879             6232894                  NA             3033772
4880             6232894                  NA             3033772
4881             6232894                  NA             3033772
4882             7142603                  NA             3563435
4883             6094752                  NA             2965233
4884             6094752                  NA             2965233
4885              803398                  NA              394257
4886             4375604                  NA             2148947
4887             4375604                  NA             2148947
4888             4375604                  NA             2148947
4889             4375604                  NA             2148947
4890             4375604                  NA             2148947
4891             4375604                  NA             2148947
4892             3678328                  NA             1837913
4893             3678328                  NA             1837913
4894              884359                  NA              435364
4895                  NA                  NA                  NA
4896              314708                  NA              152116
4897              147453                  NA               73990
4898              202163                  NA              100828
4899             4912449                  NA             2407307
4900            19908595                  NA             9713298
4901            19908595                  NA             9713298
4902            19908595                  NA             9713298
4903            19908595                  NA             9713298
4904             2679298                  NA             1318555
4905             6094752                  NA             2965233
4906             6094752                  NA             2965233
4907             6094752                  NA             2965233
4908             3678328                  NA             1837913
4909              102555                  NA               50314
4910              812506                  NA              397560
4911               46274                  NA               23299
4912              844461                  NA              407362
4913            19908595                  NA             9713298
4914              287359                  NA              143576
4915             7673379                  NA             3806912
4916             9566955                  NA             4718471
4917             9566955                  NA             4718471
4918             2959386                  NA             1493164
4919             4375604                  NA             2148947
4920               55650                  NA               29968
4921             7142603                  NA             3563435
4922               55650                  NA               29968
4923            13111917                  NA             6515114
4924            13111917                  NA             6515114
4925               64908                  NA               32219
4926             3678328                  NA             1837913
4927             2505312                  NA             1250855
4928             3289701                  NA             1667851
4929             1254675                  NA              635422
4930              164765                  21               82304
4931              477056                  NA              234726
4932              119685                  NA               62534
4933             6346083                  NA             3128067
4934              202163                  NA              100828
4935              216217                  NA              106627
4936              140356                  NA               72104
4937             7673379                  NA             3806912
4938              867161                  NA              431851
4939             1010100                  NA              512085
4940             7142603                  NA             3563435
4941              288639                  NA              146836
4942              867161                  NA              431851
4943             1042393                  NA              516095
4944             4692242                  NA             2342253
4945             1017724                  NA              503252
4946             2073546                  NA              975289
4947              749290                  NA              363653
4948              831913                  NA              404751
4949               82044                  NA               42677
4950             6346083                  NA             3128067
4951             2073546                  NA              975289
4952            19908595                  NA             9713298
4953              304252                  NA              154587
4954              488436                  NA              240478
4955             6346083                  NA             3128067
4956              422733                  NA              212276
4957             2668688                  NA             1305000
4958               35159                  NA               18160
4959             2959386                  NA             1493164
4960             1254675                  NA              635422
4961             4692242                  NA             2342253
4962             2813523                  NA             1375126
4963             2959386                  NA             1493164
4964              399335                  NA              205955
4965                  NA                  NA                  NA
4966                  NA                  NA                  NA
4967             2679298                  NA             1318555
4968              552916                  NA              270938
4969            19908595                  NA             9713298
4970             6123949                  NA             3001027
4971             7142603                  NA             3563435
4972             4001701                  NA             2024424
4973              867161                  NA              431851
4974             2079759                  NA             1012336
4975             7673379                  NA             3806912
4976              257927                  NA              126314
4977              419715                  NA              207197
4978             2668688                  NA             1305000
4979                  NA                  NA                  NA
4980               73511                  NA               36809
4981              490769                  NA              249622
4982             7142603                  NA             3563435
4983             4610050                  NA             2315218
4984             1264357                  NA              612537
4985             4912449                  NA             2407307
4986             2668688                  NA             1305000
4987              223223                  NA              111472
4988             2679298                  NA             1318555
4989             2668688                  NA             1305000
4990             2668688                  NA             1305000
4991              105950                  NA               53095
4992             2959386                  NA             1493164
4993             1254675                  NA              635422
4994                  NA                  NA                  NA
4995             4864209                  NA             2434382
4996             9566955                  NA             4718471
4997             1990873                  NA              978574
4998             9566955                  NA             4718471
4999             9566955                  NA             4718471
     age_distributionM.y
1                    188
2                    188
3                    188
4                    188
5                    320
6                    157
7                    188
8                    195
9                    188
10                   188
11                   188
12                   188
13                   406
14                   157
15                   354
16                   354
17                   188
18                   201
19                   155
20                   148
21                   458
22                   243
23                   468
24                   387
25                   195
26                   262
27                   650
28                   177
29                   421
30                    NA
31                   406
32                   221
33                   252
34                   195
35                   320
36                   389
37                   650
38                    NA
39                    73
40                    NA
41                   252
42                   312
43                   650
44                   650
45                   880
46                   442
47                   329
48                   432
49                   640
50                   492
51                   425
52                    NA
53                   249
54                   195
55                    30
56                   155
57                   421
58                   190
59                    73
60                   278
61                   403
62                   650
63                   301
64                   880
65                   735
66                   650
67                   452
68                   338
69                    NA
70                    56
71                   230
72                   243
73                   299
74                   403
75                   326
76                   101
77                   160
78                   926
79                   188
80                   201
81                   442
82                   280
83                   218
84                   342
85                   452
86                   642
87                   204
88                   195
89                   326
90                    NA
91                    NA
92                   252
93                   221
94                   342
95                   326
96                   406
97                   270
98                   298
99                   572
100                  650
101                  145
102                  124
103                  223
104                  403
105                  572
106                  117
107                   NA
108                   NA
109                  425
110                  218
111                  195
112                  323
113                  332
114                   NA
115                  532
116                   91
117                  650
118                  650
119                  389
120                   55
121                  650
122                  650
123                  650
124                  650
125                  650
126                  115
127                  145
128                   NA
129                  126
130                  126
131                  188
132                  320
133                  211
134                  650
135                  650
136                  187
137                  230
138                  208
139                  640
140                  249
141                  195
142                  249
143                  249
144                   NA
145                  172
146                  926
147                  650
148                  432
149                   NA
150                  472
151                  629
152                  338
153                   NA
154                  650
155                  403
156                   NA
157                  926
158                  155
159                  650
160                  629
161                   NA
162                  155
163                  629
164                  326
165                   NA
166                  208
167                  130
168                   NA
169                  128
170                  222
171                  296
172                  323
173                   NA
174                  157
175                   NA
176                   73
177                  650
178                  230
179                  126
180                  157
181                  320
182                  252
183                  650
184                  650
185                  650
186                  403
187                  316
188                  671
189                  406
190                  455
191                   30
192                  735
193                  423
194                  326
195                  143
196                  326
197                  326
198                  168
199                  249
200                  117
201                  389
202                  320
203                  356
204                  125
205                  389
206                  292
207                   73
208                  101
209                  735
210                  195
211                  173
212                  414
213                  211
214                  458
215                  458
216                  458
217                  458
218                  458
219                  458
220                  442
221                  195
222                   73
223                  458
224                  458
225                  458
226                  223
227                  458
228                  458
229                  458
230                  458
231                  458
232                  458
233                  458
234                  458
235                  458
236                  458
237                  207
238                  452
239                  452
240                   NA
241                  383
242                  381
243                  221
244                  320
245                  214
246                  326
247                  243
248                  349
249                  425
250                  398
251                  249
252                  425
253                  425
254                  172
255                   NA
256                  278
257                  163
258                  572
259                  243
260                  403
261                  492
262                  376
263                  187
264                  376
265                  195
266                  332
267                  102
268                  223
269                  403
270                  109
271                  496
272                  735
273                   NA
274                  221
275                  221
276                  221
277                  221
278                  320
279                  221
280                  221
281                  442
282                  173
283                   73
284                  168
285                   NA
286                  326
287                  249
288                  196
289                   73
290                  218
291                  735
292                   73
293                   73
294                  201
295                   73
296                   73
297                  232
298                   73
299                  496
300                  640
301                  195
302                  188
303                  188
304                  145
305                  145
306                  125
307                  201
308                  342
309                  145
310                  145
311                  145
312                  145
313                  145
314                  650
315                  145
316                  145
317                  145
318                  145
319                  145
320                  496
321                  458
322                  458
323                  323
324                   38
325                  226
326                  398
327                  423
328                  126
329                  168
330                  421
331                  101
332                   NA
333                  249
334                  249
335                  249
336                  880
337                  880
338                  432
339                  218
340                  195
341                   NA
342                  243
343                  381
344                  389
345                  389
346                  650
347                   NA
348                  326
349                  243
350                  280
351                  195
352                  406
353                  332
354                  332
355                  332
356                  157
357                  221
358                   NA
359                  338
360                  435
361                  650
362                  381
363                  381
364                   30
365                   NA
366                  157
367                  195
368                  532
369                  650
370                  389
371                  650
372                  650
373                  650
374                  262
375                  218
376                  142
377                  735
378                  735
379                  356
380                   73
381                  532
382                  320
383                  496
384                  320
385                  320
386                  249
387                  387
388                   73
389                  342
390                   73
391                  423
392                  249
393                  572
394                  157
395                  316
396                  650
397                  356
398                  204
399                  926
400                   NA
401                  326
402                  432
403                  432
404                  432
405                  398
406                   NA
407                  880
408                  249
409                  403
410                  301
411                  650
412                   NA
413                  296
414                   56
415                  287
416                  406
417                  326
418                  640
419                  326
420                  249
421                  640
422                  249
423                  335
424                  735
425                  735
426                  442
427                  442
428                  383
429                  354
430                  326
431                  195
432                  629
433                  211
434                   NA
435                  157
436                  195
437                  211
438                  126
439                  161
440                  337
441                  425
442                  126
443                  387
444                  421
445                  398
446                  249
447                  432
448                  243
449                  329
450                  735
451                  432
452                  354
453                  492
454                  195
455                  496
456                  195
457                  492
458                  118
459                  452
460                  336
461                  455
462                  425
463                  425
464                  425
465                  187
466                  323
467                  425
468                  287
469                   NA
470                  177
471                  398
472                  532
473                  472
474                  221
475                  452
476                  376
477                  880
478                  207
479                  389
480                   NA
481                   73
482                   52
483                   52
484                   52
485                  880
486                  432
487                  880
488                   NA
489                  880
490                  880
491                  926
492                  496
493                  496
494                  496
495                  496
496                  403
497                  403
498                  403
499                  403
500                  403
501                   NA
502                  218
503                  389
504                  218
505                  218
506                  218
507                  218
508                  195
509                  326
510                  195
511                  195
512                  532
513                  381
514                  342
515                  218
516                  442
517                  442
518                  442
519                  442
520                  425
521                  188
522                  650
523                  650
524                  650
525                  650
526                  650
527                  195
528                  195
529                  195
530                  195
531                  195
532                  195
533                  195
534                  195
535                  532
536                  532
537                  572
538                  572
539                  572
540                   NA
541                   NA
542                  880
543                  218
544                   NA
545                   NA
546                   NA
547                   NA
548                   NA
549                  249
550                   NA
551                   NA
552                  204
553                  204
554                  492
555                  492
556                  326
557                  326
558                  326
559                  320
560                  326
561                  326
562                  201
563                  332
564                  452
565                  650
566                  425
567                  425
568                  425
569                  425
570                  204
571                  204
572                  204
573                   NA
574                  435
575                  423
576                  532
577                  249
578                  249
579                  249
580                  249
581                  124
582                  398
583                  223
584                   NA
585                  157
586                  160
587                   NA
588                  650
589                  458
590                  332
591                  195
592                  496
593                  650
594                  650
595                  249
596                  223
597                  423
598                  338
599                  163
600                  218
601                  381
602                  381
603                  381
604                  381
605                  381
606                  195
607                  296
608                  326
609                  572
610                  280
611                  157
612                  159
613                  195
614                  201
615                  432
616                  735
617                  735
618                  735
619                  320
620                  442
621                  735
622                  650
623                  468
624                  880
625                  188
626                  223
627                  414
628                  316
629                   75
630                  188
631                  492
632                  425
633                  201
634                   99
635                  201
636                  403
637                  204
638                  442
639                  270
640                  650
641                  195
642                  880
643                   73
644                  155
645                  204
646                  249
647                  642
648                  642
649                  387
650                  387
651                   44
652                  403
653                  387
654                  262
655                  221
656                  196
657                  208
658                  186
659                  195
660                  163
661                  532
662                  278
663                  101
664                  223
665                  452
666                  421
667                  452
668                  455
669                  332
670                  332
671                  383
672                  332
673                  332
674                  332
675                  332
676                  389
677                   NA
678                   73
679                  572
680                  650
681                  425
682                  926
683                  356
684                  468
685                  221
686                  423
687                  249
688                  398
689                  376
690                  532
691                  120
692                  160
693                  243
694                  308
695                   30
696                   73
697                  376
698                  496
699                  492
700                   NA
701                  231
702                  243
703                  185
704                   NA
705                  230
706                  230
707                  230
708                  880
709                  230
710                  230
711                   55
712                   NA
713                  230
714                  204
715                   NA
716                   NA
717                  124
718                  190
719                  218
720                  190
721                  296
722                  248
723                  403
724                  650
725                  211
726                   NA
727                  442
728                  389
729                  389
730                  389
731                  389
732                  389
733                  389
734                  117
735                  145
736                  204
737                  278
738                  312
739                  186
740                   38
741                  389
742                   56
743                   56
744                   56
745                   56
746                  226
747                  425
748                  130
749                  425
750                  195
751                  124
752                  387
753                  157
754                  126
755                  126
756                  403
757                  496
758                  195
759                  195
760                  354
761                  249
762                  156
763                  145
764                  143
765                  532
766                  532
767                  204
768                  195
769                  301
770                  735
771                  204
772                  425
773                   NA
774                   NA
775                   NA
776                   NA
777                   NA
778                   NA
779                   NA
780                   NA
781                  671
782                  320
783                  572
784                   91
785                  338
786                  162
787                  458
788                   NA
789                  201
790                   NA
791                   38
792                  110
793                  162
794                  458
795                  458
796                  119
797                  168
798                  320
799                  134
800                  124
801                  119
802                  650
803                  387
804                  270
805                  468
806                  216
807                  243
808                  338
809                  243
810                  195
811                  425
812                  425
813                  425
814                  425
815                  389
816                  406
817                  406
818                  406
819                  406
820                  406
821                  406
822                  406
823                  406
824                  492
825                   55
826                  157
827                  157
828                  204
829                  201
830                   NA
831                  226
832                  243
833                  230
834                  162
835                  269
836                  280
837                  243
838                  175
839                  180
840                  381
841                  629
842                  187
843                  252
844                   NA
845                   NA
846                   NA
847                   NA
848                   NA
849                   NA
850                   NA
851                  110
852                  106
853                  194
854                   NA
855                  185
856                  423
857                  194
858                   NA
859                  195
860                   73
861                   73
862                   73
863                   73
864                  320
865                  320
866                  320
867                  320
868                  320
869                  320
870                  320
871                  320
872                  354
873                  354
874                  354
875                  354
876                  354
877                  188
878                  117
879                   55
880                  145
881                   61
882                  326
883                  104
884                  194
885                   30
886                  252
887                  252
888                  252
889                   30
890                  226
891                   73
892                   NA
893                  383
894                  109
895                  442
896                  204
897                  204
898                  204
899                  270
900                  270
901                  208
902                  117
903                  735
904                   NA
905                  376
906                  125
907                  425
908                  230
909                  230
910                  230
911                  190
912                  312
913                  188
914                  650
915                  452
916                  128
917                  130
918                  126
919                  650
920                  185
921                  650
922                  126
923                  231
924                  175
925                  230
926                   NA
927                  231
928                  231
929                  320
930                   73
931                   73
932                   73
933                   73
934                  406
935                  406
936                  243
937                  177
938                  106
939                  226
940                   NA
941                  185
942                   73
943                   73
944                   73
945                   73
946                   73
947                   73
948                   73
949                   73
950                   73
951                   73
952                   73
953                   73
954                   73
955                   73
956                   73
957                  320
958                  354
959                   NA
960                  204
961                  389
962                  432
963                  926
964                  332
965                  130
966                  128
967                  880
968                   NA
969                  180
970                  389
971                  432
972                  270
973                  432
974                  187
975                   73
976                   NA
977                  650
978                   NA
979                  432
980                  926
981                   NA
982                  221
983                  414
984                  218
985                  383
986                  640
987                  880
988                  230
989                  188
990                  226
991                  403
992                  389
993                  326
994                  452
995                  249
996                  349
997                  403
998                  115
999                  278
1000                 115
1001                 155
1002                 650
1003                  30
1004                  30
1005                 124
1006                  NA
1007                 452
1008                 204
1009                 101
1010                 223
1011                 120
1012                 195
1013                 195
1014                  73
1015                 187
1016                 211
1017                 172
1018                 650
1019                 195
1020                 403
1021                 223
1022                 389
1023                 185
1024                 650
1025                 389
1026                 735
1027                 642
1028                 172
1029                 389
1030                 389
1031                 389
1032                 389
1033                 442
1034                 217
1035                 532
1036                 389
1037                  73
1038                 650
1039                 211
1040                 252
1041                 496
1042                 211
1043                 296
1044                 650
1045                 195
1046                 650
1047                 145
1048                 188
1049                 650
1050                 650
1051                 650
1052                 650
1053                 650
1054                 650
1055                 650
1056                 650
1057                 650
1058                 650
1059                 650
1060                 421
1061                 320
1062                  NA
1063                 195
1064                 248
1065                 195
1066                 249
1067                 338
1068                 101
1069                 204
1070                 398
1071                 124
1072                 148
1073                 452
1074                 398
1075                 252
1076                 218
1077                 326
1078                 735
1079                 735
1080                 735
1081                 735
1082                 735
1083                 735
1084                 735
1085                 735
1086                 312
1087                 735
1088                 376
1089                 532
1090                 532
1091                 532
1092                 532
1093                 167
1094                 532
1095                 532
1096                 532
1097                 163
1098                 296
1099                 735
1100                 223
1101                 342
1102                 387
1103                 338
1104                 650
1105                 218
1106                 342
1107                 629
1108                  NA
1109                 126
1110                  44
1111                 496
1112                 201
1113                 195
1114                 572
1115                 326
1116                 249
1117                 342
1118                 640
1119                 162
1120                 640
1121                 188
1122                 640
1123                  73
1124                  NA
1125                  NA
1126                 188
1127                 354
1128                 406
1129                 389
1130                 252
1131                 221
1132                 218
1133                 124
1134                  73
1135                 642
1136                 157
1137                  NA
1138                  99
1139                 195
1140                 329
1141                 735
1142                 383
1143                 125
1144                  55
1145                 249
1146                 145
1147                 423
1148                 926
1149                 572
1150                 425
1151                 425
1152                 425
1153                 425
1154                 243
1155                 425
1156                 425
1157                 389
1158                 425
1159                 425
1160                 425
1161                 425
1162                 425
1163                 425
1164                 115
1165                 280
1166                 342
1167                 125
1168                 406
1169                 735
1170                 157
1171                 155
1172                 458
1173                 190
1174                 398
1175                 496
1176                 193
1177                 231
1178                 338
1179                 442
1180                 243
1181                 213
1182                 442
1183                 236
1184                 173
1185                 125
1186                 201
1187                 320
1188                 650
1189                 468
1190                 320
1191                 223
1192                 332
1193                 423
1194                 320
1195                 468
1196                 342
1197                 213
1198                 735
1199                 926
1200                 195
1201                 249
1202                 640
1203                 243
1204                 117
1205                 148
1206                 376
1207                 115
1208                 376
1209                 376
1210                 376
1211                 160
1212                 326
1213                 195
1214                  73
1215                  73
1216                 252
1217                 160
1218                 252
1219                 160
1220                 280
1221                 280
1222                 880
1223                 880
1224                 177
1225                  NA
1226                  NA
1227                 157
1228                 880
1229                 880
1230                 880
1231                 880
1232                 880
1233                  NA
1234                 320
1235                 145
1236                 880
1237                 880
1238                 880
1239                 880
1240                 880
1241                 880
1242                 211
1243                 880
1244                 880
1245                 124
1246                 880
1247                 880
1248                 880
1249                 880
1250                 880
1251                  30
1252                 880
1253                 880
1254                 880
1255                 880
1256                 403
1257                 650
1258                 270
1259                 414
1260                 432
1261                 195
1262                 270
1263                 320
1264                  73
1265                 243
1266                  NA
1267                 432
1268                 432
1269                 432
1270                 432
1271                 432
1272                 432
1273                 432
1274                 432
1275                 432
1276                 432
1277                 432
1278                 432
1279                 432
1280                 432
1281                 432
1282                 432
1283                 432
1284                 432
1285                 468
1286                  NA
1287                 243
1288                 926
1289                 926
1290                 383
1291                 383
1292                 383
1293                 383
1294                 383
1295                 383
1296                 110
1297                 496
1298                 496
1299                 496
1300                 207
1301                 496
1302                 496
1303                 496
1304                 496
1305                 496
1306                 187
1307                 496
1308                  NA
1309                 496
1310                 496
1311                 496
1312                 496
1313                 496
1314                 496
1315                 496
1316                 496
1317                 496
1318                 496
1319                 496
1320                 496
1321                 496
1322                 496
1323                 496
1324                 496
1325                  30
1326                 124
1327                 496
1328                 496
1329                 496
1330                 496
1331                 496
1332                 496
1333                 155
1334                 195
1335                 230
1336                 230
1337                 230
1338                 230
1339                 187
1340                 442
1341                 532
1342                 163
1343                 101
1344                 572
1345                 387
1346                 157
1347                 414
1348                 389
1349                  NA
1350                 458
1351                 157
1352                 354
1353                 403
1354                 124
1355                 155
1356                 155
1357                 155
1358                  NA
1359                 452
1360                 221
1361                 249
1362                 296
1363                  NA
1364                  NA
1365                  NA
1366                  NA
1367                  NA
1368                  NA
1369                 218
1370                 218
1371                  73
1372                 218
1373                 218
1374                 218
1375                 218
1376                 218
1377                 218
1378                 218
1379                 218
1380                 218
1381                 218
1382                 435
1383                 218
1384                 218
1385                 218
1386                  55
1387                 218
1388                 735
1389                 218
1390                 218
1391                 218
1392                  55
1393                 218
1394                 218
1395                 218
1396                 218
1397                 218
1398                 218
1399                 218
1400                  73
1401                 190
1402                 492
1403                 201
1404                 163
1405                 211
1406                 163
1407                  NA
1408                  73
1409                 195
1410                 195
1411                  30
1412                 195
1413                 195
1414                 342
1415                 342
1416                 117
1417                 342
1418                 157
1419                 148
1420                 342
1421                 342
1422                 342
1423                 342
1424                 342
1425                 342
1426                 185
1427                 211
1428                 211
1429                 199
1430                  73
1431                 126
1432                 320
1433                 640
1434                 640
1435                 640
1436                 249
1437                 640
1438                 442
1439                  NA
1440                 442
1441                 320
1442                 442
1443                 442
1444                 442
1445                 442
1446                 442
1447                 442
1448                 442
1449                 442
1450                 442
1451                 442
1452                 442
1453                 442
1454                 442
1455                 442
1456                 442
1457                 442
1458                 442
1459                 442
1460                 442
1461                 442
1462                 442
1463                 442
1464                 442
1465                 442
1466                 442
1467                 442
1468                 442
1469                 442
1470                 442
1471                 442
1472                 442
1473                 442
1474                 442
1475                 442
1476                 320
1477                 124
1478                 735
1479                 735
1480                 735
1481                 389
1482                 735
1483                 735
1484                 735
1485                 735
1486                 735
1487                 735
1488                 735
1489                 218
1490                 735
1491                 389
1492                 650
1493                 389
1494                 650
1495                 389
1496                 124
1497                 389
1498                 389
1499                 389
1500                 124
1501                 389
1502                 389
1503                 389
1504                 326
1505                 332
1506                 389
1507                 389
1508                 389
1509                 195
1510                 389
1511                 389
1512                 389
1513                 389
1514                 389
1515                 389
1516                 389
1517                 389
1518                 252
1519                 389
1520                 389
1521                 389
1522                 389
1523                 389
1524                 389
1525                 389
1526                 389
1527                 389
1528                 249
1529                 532
1530                 532
1531                  NA
1532                 188
1533                 188
1534                 188
1535                 376
1536                 332
1537                 177
1538                 177
1539                 177
1540                 177
1541                 177
1542                 354
1543                 249
1544                 387
1545                 249
1546                 177
1547                 177
1548                  NA
1549                  38
1550                  38
1551                  56
1552                 389
1553                  NA
1554                 354
1555                 195
1556                 432
1557                 195
1558                 195
1559                 468
1560                 195
1561                 195
1562                 195
1563                 195
1564                  NA
1565                 195
1566                 195
1567                 195
1568                 642
1569                 211
1570                 126
1571                  44
1572                 126
1573                 126
1574                 157
1575                 126
1576                 323
1577                 101
1578                 354
1579                  NA
1580                 145
1581                 496
1582                 532
1583                 221
1584                 650
1585                 532
1586                 532
1587                 532
1588                 532
1589                 532
1590                 532
1591                 532
1592                 532
1593                 532
1594                 650
1595                 532
1596                 532
1597                 532
1598                 532
1599                 532
1600                 532
1601                 532
1602                 532
1603                 532
1604                 532
1605                 532
1606                 532
1607                 532
1608                 532
1609                 532
1610                 532
1611                 532
1612                 532
1613                 532
1614                 532
1615                 650
1616                 532
1617                 532
1618                 532
1619                 532
1620                 421
1621                 136
1622                 211
1623                 145
1624                 320
1625                 252
1626                 323
1627                 532
1628                 326
1629                 532
1630                 249
1631                 249
1632                 223
1633                 572
1634                 572
1635                 572
1636                 572
1637                 572
1638                 650
1639                 195
1640                 223
1641                  44
1642                 387
1643                 387
1644                 387
1645                 880
1646                 218
1647                 296
1648                  NA
1649                  NA
1650                 572
1651                 452
1652                 204
1653                  NA
1654                 204
1655                 249
1656                  NA
1657                  NA
1658                 880
1659                 425
1660                  NA
1661                  NA
1662                 204
1663                  NA
1664                  NA
1665                  NA
1666                  NA
1667                  NA
1668                  NA
1669                  NA
1670                  NA
1671                  NA
1672                  NA
1673                  NA
1674                  NA
1675                  NA
1676                  NA
1677                  NA
1678                  NA
1679                  NA
1680                  NA
1681                 115
1682                 452
1683                 338
1684                  NA
1685                 211
1686                 326
1687                 195
1688                  NA
1689                  NA
1690                  NA
1691                  NA
1692                 243
1693                 221
1694                  88
1695                 442
1696                 532
1697                 650
1698                 452
1699                 296
1700                 650
1701                 650
1702                  NA
1703                 425
1704                  NA
1705                  NA
1706                  NA
1707                  NA
1708                  NA
1709                 243
1710                  NA
1711                  NA
1712                  NA
1713                  NA
1714                  NA
1715                 316
1716                 316
1717                 316
1718                 492
1719                 492
1720                 124
1721                 492
1722                 492
1723                 492
1724                 492
1725                 492
1726                 492
1727                 492
1728                 155
1729                 190
1730                 243
1731                  73
1732                  56
1733                 157
1734                 326
1735                 403
1736                 278
1737                  NA
1738                 326
1739                 326
1740                 326
1741                 326
1742                 326
1743                 326
1744                 326
1745                 326
1746                 326
1747                 326
1748                 115
1749                 326
1750                 326
1751                 425
1752                 425
1753                 425
1754                 425
1755                 425
1756                 425
1757                 425
1758                 425
1759                 425
1760                 425
1761                 425
1762                 425
1763                 425
1764                 425
1765                 425
1766                 425
1767                 425
1768                 425
1769                 425
1770                 425
1771                 425
1772                 425
1773                 425
1774                 425
1775                 425
1776                 425
1777                 425
1778                 425
1779                 425
1780                 425
1781                 425
1782                 423
1783                 425
1784                 425
1785                 425
1786                 425
1787                 425
1788                 425
1789                 425
1790                 425
1791                 425
1792                 425
1793                 425
1794                 425
1795                 425
1796                 425
1797                 425
1798                 425
1799                 425
1800                 425
1801                 280
1802                 280
1803                 280
1804                 280
1805                 280
1806                 338
1807                 458
1808                 195
1809                 195
1810                 492
1811                 201
1812                 201
1813                 201
1814                 201
1815                 201
1816                 458
1817                  73
1818                  NA
1819                 452
1820                 452
1821                 452
1822                 452
1823                 452
1824                 452
1825                 452
1826                 452
1827                 211
1828                 452
1829                 452
1830                 452
1831                 211
1832                 173
1833                 173
1834                 320
1835                 320
1836                 320
1837                 320
1838                  NA
1839                 320
1840                 572
1841                 320
1842                 320
1843                 320
1844                 354
1845                 320
1846                 320
1847                 320
1848                 320
1849                 320
1850                 252
1851                 296
1852                 296
1853                 296
1854                 124
1855                 124
1856                 270
1857                 270
1858                 270
1859                 338
1860                 243
1861                 243
1862                 414
1863                 425
1864                 425
1865                 425
1866                 642
1867                 642
1868                 642
1869                 642
1870                 926
1871                 270
1872                 406
1873                 249
1874                 115
1875                 320
1876                 332
1877                 195
1878                 157
1879                 201
1880                 157
1881                 880
1882                 157
1883                 157
1884                 157
1885                 157
1886                 157
1887                 157
1888                 157
1889                 157
1890                 157
1891                 157
1892                 157
1893                 157
1894                 157
1895                 157
1896                  30
1897                 157
1898                 157
1899                 157
1900                 157
1901                 157
1902                 157
1903                 204
1904                 204
1905                 204
1906                 204
1907                 204
1908                 204
1909                 214
1910                 214
1911                 214
1912                 243
1913                 243
1914                 221
1915                 320
1916                 221
1917                 435
1918                 338
1919                 221
1920                 629
1921                 187
1922                 187
1923                 187
1924                 187
1925                 342
1926                 342
1927                 188
1928                  73
1929                  73
1930                  73
1931                  73
1932                  73
1933                  NA
1934                 223
1935                 163
1936                 126
1937                  NA
1938                  NA
1939                  NA
1940                 458
1941                 117
1942                 338
1943                 338
1944                 338
1945                 338
1946                 442
1947                 185
1948                 398
1949                 398
1950                 398
1951                 398
1952                 398
1953                  NA
1954                  NA
1955                 221
1956                 320
1957                 320
1958                 354
1959                 354
1960                  30
1961                 354
1962                 124
1963                 124
1964                 354
1965                 354
1966                 354
1967                 354
1968                 435
1969                 145
1970                 145
1971                 145
1972                 145
1973                 252
1974                 492
1975                 252
1976                 252
1977                  55
1978                 252
1979                 252
1980                 252
1981                 252
1982                  NA
1983                 452
1984                  NA
1985                 124
1986                 124
1987                 124
1988                 124
1989                 423
1990                 423
1991                 423
1992                 423
1993                 423
1994                 423
1995                 423
1996                 423
1997                 423
1998                 423
1999                 423
2000                 926
2001                 423
2002                 423
2003                 423
2004                 423
2005                 423
2006                 423
2007                 423
2008                 423
2009                 423
2010                 423
2011                 423
2012                 423
2013                 423
2014                 423
2015                 423
2016                 423
2017                 249
2018                 249
2019                 389
2020                 249
2021                 249
2022                 249
2023                 249
2024                 249
2025                 249
2026                 249
2027                 249
2028                 249
2029                 117
2030                 117
2031                 223
2032                 201
2033                 244
2034                 231
2035                 326
2036                 442
2037                 252
2038                 640
2039                 387
2040                  NA
2041                 221
2042                 735
2043                 735
2044                 532
2045                 532
2046                 650
2047                 332
2048                 157
2049                 157
2050                  NA
2051                 214
2052                 458
2053                 435
2054                 735
2055                 126
2056                 155
2057                 186
2058                 387
2059                 403
2060                 640
2061                 403
2062                 389
2063                 452
2064                 278
2065                 642
2066                 442
2067                 195
2068                 403
2069                 403
2070                 403
2071                 320
2072                  44
2073                 163
2074                 211
2075                 195
2076                 195
2077                 381
2078                 381
2079                 572
2080                 342
2081                 342
2082                 342
2083                 640
2084                 252
2085                 735
2086                 735
2087                 735
2088                 735
2089                 162
2090                 650
2091                 650
2092                 650
2093                 650
2094                 650
2095                 650
2096                 214
2097                 218
2098                 735
2099                 735
2100                 212
2101                 572
2102                 298
2103                 572
2104                 201
2105                 249
2106                 442
2107                 650
2108                 148
2109                 650
2110                 157
2111                 356
2112                 650
2113                 650
2114                 650
2115                 650
2116                 650
2117                 650
2118                 650
2119                 650
2120                 650
2121                 650
2122                 650
2123                 650
2124                 101
2125                 642
2126                 270
2127                 642
2128                 332
2129                 204
2130                 204
2131                 219
2132                 204
2133                 414
2134                 414
2135                 398
2136                 221
2137                 221
2138                 468
2139                 403
2140                 398
2141                 342
2142                 381
2143                 163
2144                 195
2145                 331
2146                 159
2147                 735
2148                  73
2149                 229
2150                 425
2151                 425
2152                  NA
2153                 338
2154                 157
2155                 458
2156                 458
2157                 155
2158                 160
2159                 212
2160                 389
2161                 735
2162                  NA
2163                 173
2164                  73
2165                 629
2166                 218
2167                 249
2168                 492
2169                 389
2170                 323
2171                 233
2172                 532
2173                  NA
2174                 195
2175                 214
2176                 389
2177                 214
2178                 915
2179                 915
2180                 326
2181                  NA
2182                 308
2183                 383
2184                 650
2185                 201
2186                 735
2187                 735
2188                 442
2189                 442
2190                 442
2191                  30
2192                 650
2193                 880
2194                 425
2195                 332
2196                 332
2197                 157
2198                 157
2199                  NA
2200                 219
2201                 406
2202                 403
2203                 403
2204                 650
2205                 243
2206                 320
2207                 880
2208                 880
2209                 880
2210                 880
2211                 880
2212                 880
2213                 403
2214                 735
2215                 188
2216                 188
2217                 188
2218                 650
2219                 650
2220                 650
2221                 650
2222                  NA
2223                  NA
2224                  NA
2225                 458
2226                 458
2227                 354
2228                 145
2229                 145
2230                 145
2231                 249
2232                 249
2233                  NA
2234                 188
2235                 425
2236                 389
2237                 650
2238                 532
2239                 532
2240                 532
2241                 532
2242                 221
2243                 320
2244                 532
2245                 650
2246                 650
2247                 425
2248                 629
2249                 332
2250                 492
2251                 442
2252                 323
2253                 332
2254                 173
2255                 219
2256                  NA
2257                  NA
2258                  73
2259                  73
2260                 145
2261                 389
2262                 735
2263                 249
2264                 880
2265                 880
2266                 880
2267                 880
2268                 880
2269                 880
2270                 880
2271                 880
2272                 126
2273                 403
2274                 403
2275                 331
2276                 163
2277                 640
2278                 186
2279                 188
2280                 188
2281                 188
2282                 188
2283                 188
2284                 188
2285                 188
2286                 650
2287                 157
2288                 572
2289                 650
2290                 650
2291                 650
2292                 650
2293                 650
2294                 650
2295                 650
2296                 650
2297                 650
2298                 650
2299                 650
2300                 650
2301                 186
2302                 458
2303                 458
2304                 458
2305                 221
2306                 417
2307                 342
2308                 356
2309                 432
2310                 432
2311                 162
2312                 432
2313                 926
2314                 403
2315                 403
2316                 572
2317                 403
2318                 320
2319                 381
2320                 381
2321                 381
2322                 381
2323                 381
2324                 110
2325                 381
2326                 381
2327                 381
2328                 640
2329                 735
2330                 442
2331                 442
2332                 442
2333                 442
2334                 442
2335                 442
2336                 442
2337                 442
2338                 442
2339                 442
2340                 442
2341                 442
2342                 442
2343                 442
2344                 442
2345                 442
2346                 332
2347                 195
2348                  73
2349                 532
2350                 195
2351                 650
2352                  NA
2353                 244
2354                 212
2355                 629
2356                 173
2357                 650
2358                 326
2359                 186
2360                 223
2361                 316
2362                 200
2363                 195
2364                 195
2365                 195
2366                 195
2367                 195
2368                 195
2369                 280
2370                 195
2371                 163
2372                 425
2373                 425
2374                 425
2375                 425
2376                 425
2377                 331
2378                 332
2379                 332
2380                 157
2381                 157
2382                 157
2383                 157
2384                 406
2385                 671
2386                 221
2387                  73
2388                 280
2389                 204
2390                 218
2391                 417
2392                 383
2393                 435
2394                 342
2395                 398
2396                 301
2397                 131
2398                 208
2399                 208
2400                  NA
2401                 735
2402                  51
2403                  30
2404                  51
2405                  NA
2406                  NA
2407                 270
2408                  NA
2409                 406
2410                 124
2411                  73
2412                  73
2413                  73
2414                  73
2415                 320
2416                 376
2417                  73
2418                 160
2419                 926
2420                 926
2421                 403
2422                 403
2423                 403
2424                 403
2425                  NA
2426                 735
2427                 195
2428                 650
2429                  73
2430                 650
2431                 650
2432                 650
2433                  NA
2434                  NA
2435                 243
2436                 468
2437                 468
2438                  NA
2439                 435
2440                 435
2441                 252
2442                 124
2443                 249
2444                 880
2445                 880
2446                 880
2447                 880
2448                 880
2449                 880
2450                 880
2451                 880
2452                 880
2453                 880
2454                 880
2455                 880
2456                 880
2457                 880
2458                 880
2459                 880
2460                 880
2461                 880
2462                 880
2463                 880
2464                 880
2465                 880
2466                 432
2467                 432
2468                 496
2469                 403
2470                 188
2471                 381
2472                 640
2473                 640
2474                 640
2475                 194
2476                 442
2477                 188
2478                 188
2479                 188
2480                 188
2481                 188
2482                 188
2483                 188
2484                 188
2485                 188
2486                 177
2487                  75
2488                 735
2489                 572
2490                 650
2491                 650
2492                  NA
2493                  NA
2494                 326
2495                 280
2496                 195
2497                 195
2498                 458
2499                 458
2500                 458
2501                 458
2502                 458
2503                 458
2504                 458
2505                 458
2506                 458
2507                 458
2508                 458
2509                 458
2510                 650
2511                 218
2512                  73
2513                 338
2514                  73
2515                  73
2516                 269
2517                  73
2518                 320
2519                 435
2520                 145
2521                 145
2522                 145
2523                 145
2524                 145
2525                 145
2526                 145
2527                 145
2528                 145
2529                 145
2530                 145
2531                 145
2532                 145
2533                 280
2534                 173
2535                 650
2536                 650
2537                 650
2538                 650
2539                 650
2540                 650
2541                 735
2542                 735
2543                  NA
2544                 280
2545                 136
2546                 442
2547                 442
2548                 442
2549                 442
2550                 442
2551                 442
2552                 278
2553                 332
2554                 337
2555                 112
2556                 249
2557                 421
2558                 251
2559                 195
2560                 270
2561                 425
2562                 425
2563                 425
2564                 142
2565                 280
2566                 145
2567                 177
2568                 381
2569                 381
2570                 381
2571                 381
2572                 381
2573                 381
2574                 735
2575                 735
2576                 218
2577                 162
2578                 332
2579                 214
2580                 233
2581                 408
2582                 166
2583                 199
2584                 389
2585                 389
2586                 389
2587                 389
2588                 389
2589                 389
2590                 389
2591                 389
2592                 188
2593                 188
2594                 188
2595                 423
2596                 650
2597                 532
2598                 532
2599                 532
2600                 532
2601                  NA
2602                  88
2603                 316
2604                 492
2605                 458
2606                 458
2607                 458
2608                 458
2609                 458
2610                 458
2611                 458
2612                 270
2613                 425
2614                 425
2615                 425
2616                 425
2617                 425
2618                 642
2619                 157
2620                 629
2621                 414
2622                  73
2623                 320
2624                 320
2625                 145
2626                 145
2627                 145
2628                 145
2629                 145
2630                 145
2631                 145
2632                 117
2633                 406
2634                 735
2635                 389
2636                 389
2637                 389
2638                 278
2639                 650
2640                 650
2641                 208
2642                 252
2643                 735
2644                 735
2645                 735
2646                 735
2647                 532
2648                 532
2649                 532
2650                 532
2651                 532
2652                 532
2653                 532
2654                 532
2655                 492
2656                 200
2657                 270
2658                 204
2659                  NA
2660                 308
2661                 320
2662                 320
2663                 320
2664                 320
2665                 252
2666                 308
2667                  NA
2668                 432
2669                  NA
2670                 218
2671                 342
2672                 389
2673                 406
2674                  NA
2675                  NA
2676                  NA
2677                 157
2678                  73
2679                  NA
2680                 201
2681                 177
2682                 421
2683                 532
2684                 532
2685                 532
2686                 492
2687                 403
2688                 403
2689                 403
2690                 163
2691                 342
2692                 735
2693                 188
2694                 650
2695                 650
2696                 650
2697                 650
2698                 101
2699                 650
2700                 650
2701                 650
2702                 296
2703                 425
2704                 425
2705                 425
2706                 425
2707                 332
2708                 332
2709                 244
2710                 221
2711                 287
2712                 276
2713                 735
2714                 425
2715                 425
2716                 214
2717                 458
2718                 243
2719                  73
2720                 381
2721                 381
2722                  44
2723                 332
2724                 332
2725                 383
2726                 389
2727                 735
2728                 532
2729                 532
2730                 249
2731                 316
2732                 880
2733                 126
2734                 496
2735                 173
2736                 218
2737                 323
2738                 101
2739                 650
2740                 650
2741                 650
2742                 650
2743                 650
2744                 287
2745                 221
2746                 629
2747                 342
2748                 342
2749                 414
2750                 414
2751                 249
2752                 233
2753                 432
2754                 117
2755                 458
2756                 190
2757                 230
2758                 124
2759                 316
2760                  NA
2761                  30
2762                 329
2763                 195
2764                 195
2765                 195
2766                 208
2767                 381
2768                 381
2769                 381
2770                 381
2771                 381
2772                 381
2773                 381
2774                 381
2775                 381
2776                 381
2777                 381
2778                 381
2779                 381
2780                 381
2781                 640
2782                 735
2783                 735
2784                 442
2785                 442
2786                 442
2787                 442
2788                 442
2789                 442
2790                 442
2791                 442
2792                 442
2793                 442
2794                 442
2795                 442
2796                 442
2797                 442
2798                 442
2799                 442
2800                 442
2801                 442
2802                 270
2803                 455
2804                 249
2805                 296
2806                 195
2807                 187
2808                  NA
2809                 342
2810                 572
2811                 387
2812                 119
2813                 299
2814                 223
2815                 211
2816                 126
2817                 472
2818                  NA
2819                 124
2820                 176
2821                 280
2822                 468
2823                 336
2824                 173
2825                 228
2826                 492
2827                 156
2828                 280
2829                 195
2830                 195
2831                 195
2832                 187
2833                 195
2834                 278
2835                 195
2836                 195
2837                 162
2838                 629
2839                 143
2840                 425
2841                 425
2842                 243
2843                 195
2844                 177
2845                 236
2846                 435
2847                 157
2848                 157
2849                 204
2850                 218
2851                 112
2852                 342
2853                 642
2854                 214
2855                  NA
2856                 136
2857                  73
2858                  44
2859                 262
2860                 320
2861                 532
2862                 406
2863                 435
2864                 336
2865                 262
2866                 455
2867                 423
2868                 371
2869                 249
2870                 117
2871                 376
2872                 442
2873                 296
2874                 163
2875                 218
2876                 572
2877                  51
2878                  51
2879                 326
2880                 201
2881                 406
2882                  NA
2883                 338
2884                  73
2885                  73
2886                  73
2887                  73
2888                  73
2889                  73
2890                  73
2891                  73
2892                  73
2893                  73
2894                  73
2895                  73
2896                 354
2897                 926
2898                 926
2899                 926
2900                 403
2901                 403
2902                 403
2903                  90
2904                 155
2905                 163
2906                 195
2907                  NA
2908                 735
2909                 650
2910                 650
2911                 195
2912                 195
2913                 195
2914                 195
2915                 195
2916                 650
2917                 650
2918                 532
2919                 387
2920                 387
2921                 387
2922                 387
2923                 650
2924                 650
2925                 650
2926                 650
2927                 650
2928                 326
2929                 195
2930                 195
2931                 195
2932                 195
2933                 195
2934                  NA
2935                 629
2936                 629
2937                 629
2938                 187
2939                  73
2940                  NA
2941                 338
2942                 354
2943                 435
2944                 173
2945                 124
2946                 296
2947                 880
2948                 880
2949                 880
2950                 880
2951                 880
2952                 880
2953                 125
2954                 118
2955                  30
2956                 233
2957                  NA
2958                 735
2959                 188
2960                 213
2961                 195
2962                 195
2963                 455
2964                 155
2965                 371
2966                 118
2967                 212
2968                 349
2969                 425
2970                 406
2971                  73
2972                 735
2973                 423
2974                 112
2975                 145
2976                 342
2977                 572
2978                 389
2979                 389
2980                 389
2981                 389
2982                 650
2983                  NA
2984                 326
2985                 243
2986                  73
2987                  73
2988                 423
2989                 249
2990                  92
2991                  92
2992                 356
2993                 287
2994                 323
2995                 218
2996                 735
2997                 425
2998                  90
2999                 423
3000                 228
3001                 383
3002                 122
3003                 458
3004                 125
3005                 735
3006                 442
3007                 442
3008                 442
3009                 442
3010                 442
3011                 442
3012                 442
3013                 323
3014                 195
3015                 195
3016                 195
3017                 425
3018                 425
3019                 425
3020                 425
3021                 381
3022                 414
3023                 356
3024                  52
3025                 159
3026                 195
3027                  NA
3028                  NA
3029                 201
3030                 398
3031                 472
3032                 195
3033                 381
3034                 381
3035                 381
3036                 381
3037                 640
3038                 735
3039                 735
3040                 735
3041                 735
3042                 735
3043                 735
3044                 278
3045                 383
3046                 148
3047                 165
3048                 323
3049                  70
3050                 572
3051                 332
3052                 109
3053                 432
3054                 104
3055                 106
3056                 204
3057                 389
3058                 389
3059                 389
3060                 442
3061                 442
3062                 188
3063                 118
3064                 170
3065                 180
3066                 230
3067                  NA
3068                  NA
3069                  NA
3070                 227
3071                 179
3072                 458
3073                 425
3074                 223
3075                  58
3076                 414
3077                 417
3078                  73
3079                 320
3080                 320
3081                 320
3082                 320
3083                 145
3084                  38
3085                 642
3086                 269
3087                 208
3088                  NA
3089                 110
3090                  73
3091                  73
3092                 432
3093                  30
3094                 202
3095                 211
3096                 435
3097                 342
3098                 389
3099                 389
3100                 650
3101                  56
3102                 735
3103                 735
3104                 532
3105                 532
3106                 532
3107                 532
3108                 532
3109                 532
3110                 406
3111                 141
3112                  NA
3113                  NA
3114                  NA
3115                 435
3116                 332
3117                 172
3118                 124
3119                 199
3120                 166
3121                 376
3122                 376
3123                 432
3124                 432
3125                 383
3126                 496
3127                 496
3128                 496
3129                 157
3130                 155
3131                 218
3132                 218
3133                 218
3134                 218
3135                 218
3136                 218
3137                 218
3138                 218
3139                 218
3140                 218
3141                 163
3142                 342
3143                 342
3144                 442
3145                 442
3146                 442
3147                 442
3148                 442
3149                 442
3150                 442
3151                 442
3152                 735
3153                 735
3154                 389
3155                 389
3156                 195
3157                 532
3158                 532
3159                 532
3160                 532
3161                 650
3162                  NA
3163                  NA
3164                  88
3165                  88
3166                  NA
3167                 316
3168                 316
3169                 492
3170                 492
3171                 326
3172                 326
3173                 326
3174                 425
3175                 425
3176                 425
3177                 425
3178                 425
3179                 425
3180                 425
3181                 280
3182                 201
3183                 173
3184                 320
3185                 320
3186                 270
3187                 270
3188                 157
3189                 157
3190                 157
3191                 204
3192                 243
3193                 468
3194                 468
3195                 221
3196                 187
3197                 187
3198                 342
3199                  73
3200                  NA
3201                  NA
3202                 338
3203                 338
3204                 414
3205                 398
3206                 252
3207                 423
3208                 423
3209                 423
3210                 423
3211                 249
3212                 249
3213                 249
3214                 211
3215                 211
3216                 414
3217                 381
3218                 442
3219                 442
3220                 131
3221                 157
3222                 157
3223                 629
3224                 926
3225                 403
3226                 735
3227                 735
3228                 650
3229                 650
3230                 735
3231                 735
3232                 342
3233                 650
3234                 650
3235                 650
3236                 425
3237                 425
3238                 425
3239                 332
3240                 159
3241                 124
3242                 262
3243                 406
3244                  56
3245                 336
3246                 154
3247                 532
3248                  70
3249                 735
3250                 201
3251                 425
3252                 173
3253                 119
3254                 640
3255                 458
3256                 195
3257                 403
3258                 381
3259                 323
3260                 332
3261                 332
3262                 342
3263                 101
3264                 452
3265                 532
3266                  58
3267                 926
3268                 381
3269                 442
3270                 442
3271                 283
3272                 332
3273                  55
3274                  NA
3275                 308
3276                 230
3277                 113
3278                 157
3279                 225
3280                 208
3281                 208
3282                 208
3283                  73
3284                  NA
3285                  NA
3286                 650
3287                 650
3288                 468
3289                 338
3290                 880
3291                 880
3292                 880
3293                 880
3294                 880
3295                 880
3296                 165
3297                 208
3298                 244
3299                 190
3300                 423
3301                 735
3302                 442
3303                 442
3304                 110
3305                 381
3306                 381
3307                 735
3308                 735
3309                 308
3310                 332
3311                 389
3312                  88
3313                 425
3314                 338
3315                 320
3316                 650
3317                 650
3318                 532
3319                  30
3320                  NA
3321                 211
3322                 320
3323                 218
3324                 735
3325                  38
3326                 126
3327                 425
3328                 270
3329                  NA
3330                  NA
3331                  NA
3332                  NA
3333                 423
3334                 249
3335                 163
3336                 442
3337                 442
3338                 442
3339                 532
3340                 532
3341                 532
3342                 269
3343                 381
3344                 381
3345                 650
3346                 642
3347                 332
3348                 458
3349                 332
3350                 332
3351                 389
3352                 389
3353                 244
3354                 332
3355                 425
3356                 880
3357                 735
3358                 442
3359                 442
3360                 193
3361                 194
3362                 189
3363                 195
3364                 332
3365                 223
3366                 880
3367                 880
3368                 218
3369                 188
3370                 425
3371                 104
3372                 442
3373                 195
3374                 735
3375                 735
3376                 389
3377                  NA
3378                 425
3379                 312
3380                 320
3381                 187
3382                 389
3383                 650
3384                 650
3385                 532
3386                 572
3387                 320
3388                  73
3389                  NA
3390                 280
3391                 442
3392                 442
3393                 532
3394                 492
3395                 145
3396                 398
3397                 532
3398                 381
3399                 880
3400                 442
3401                 650
3402                 880
3403                  37
3404                 125
3405                 188
3406                 650
3407                 280
3408                 213
3409                  30
3410                 109
3411                 432
3412                 101
3413                  61
3414                 381
3415                 381
3416                 381
3417                 381
3418                 381
3419                 381
3420                 381
3421                 442
3422                 442
3423                 442
3424                 442
3425                 442
3426                 188
3427                 332
3428                 216
3429                 435
3430                 195
3431                 408
3432                 323
3433                 185
3434                 110
3435                 157
3436                 173
3437                 338
3438                 121
3439                  NA
3440                 204
3441                  NA
3442                 442
3443                 157
3444                 243
3445                 406
3446                 406
3447                 406
3448                 406
3449                 194
3450                  NA
3451                  73
3452                  73
3453                  73
3454                  73
3455                  73
3456                  NA
3457                  NA
3458                 354
3459                  NA
3460                 926
3461                 403
3462                 403
3463                 650
3464                  NA
3465                  NA
3466                 650
3467                 435
3468                 880
3469                 880
3470                 193
3471                 880
3472                 249
3473                 403
3474                 190
3475                 230
3476                 280
3477                 336
3478                 211
3479                 282
3480                 231
3481                  NA
3482                 492
3483                 280
3484                 128
3485                 308
3486                 458
3487                 406
3488                 211
3489                 228
3490                 194
3491                 201
3492                 442
3493                 442
3494                 442
3495                 442
3496                 165
3497                 195
3498                 210
3499                 381
3500                 735
3501                 162
3502                 642
3503                 332
3504                 408
3505                 150
3506                 389
3507                 389
3508                 389
3509                 389
3510                 442
3511                 442
3512                 442
3513                 735
3514                 180
3515                 113
3516                 458
3517                 458
3518                 270
3519                 425
3520                 425
3521                 406
3522                 406
3523                 157
3524                 157
3525                 126
3526                 735
3527                  NA
3528                 194
3529                 145
3530                 145
3531                 145
3532                 145
3533                 145
3534                  73
3535                 106
3536                 185
3537                  73
3538                  73
3539                 389
3540                 735
3541                 735
3542                 532
3543                 356
3544                  NA
3545                 249
3546                 425
3547                 421
3548                 187
3549                 320
3550                 320
3551                  NA
3552                 210
3553                 112
3554                 442
3555                 389
3556                 195
3557                 323
3558                 532
3559                  NA
3560                 157
3561                 204
3562                 252
3563                 423
3564                 423
3565                 252
3566                 735
3567                 532
3568                 532
3569                 185
3570                 381
3571                 323
3572                 332
3573                 425
3574                 201
3575                 332
3576                 389
3577                 230
3578                 532
3579                  38
3580                 880
3581                 880
3582                 278
3583                 188
3584                 650
3585                 650
3586                 458
3587                 458
3588                 356
3589                 332
3590                 190
3591                 194
3592                 381
3593                 128
3594                 148
3595                 442
3596                 442
3597                 442
3598                 278
3599                  38
3600                 155
3601                 225
3602                 157
3603                  37
3604                 177
3605                  NA
3606                 208
3607                 230
3608                 442
3609                  30
3610                 425
3611                 406
3612                 406
3613                 406
3614                  NA
3615                  73
3616                 117
3617                 403
3618                 650
3619                 880
3620                 880
3621                 109
3622                 458
3623                  92
3624                 145
3625                 442
3626                 442
3627                 442
3628                 442
3629                 338
3630                 316
3631                 195
3632                 173
3633                  90
3634                 336
3635                 381
3636                 735
3637                 421
3638                  44
3639                 332
3640                 376
3641                 125
3642                 442
3643                 442
3644                 188
3645                 188
3646                 126
3647                 458
3648                 425
3649                 225
3650                 320
3651                 354
3652                 145
3653                 145
3654                 145
3655                  NA
3656                  NA
3657                  73
3658                 389
3659                 349
3660                 425
3661                 214
3662                 175
3663                 177
3664                 338
3665                 299
3666                  NA
3667                 735
3668                 650
3669                 326
3670                 425
3671                 320
3672                 320
3673                 320
3674                 157
3675                 249
3676                 381
3677                 252
3678                 423
3679                 442
3680                 301
3681                 421
3682                 532
3683                 532
3684                 213
3685                 221
3686                 735
3687                 735
3688                 650
3689                 280
3690                 332
3691                 425
3692                 381
3693                 381
3694                 332
3695                 332
3696                 532
3697                 228
3698                 880
3699                 188
3700                 208
3701                 126
3702                 381
3703                 195
3704                  88
3705                 442
3706                 442
3707                 442
3708                 442
3709                 442
3710                 442
3711                 442
3712                 442
3713                 442
3714                 201
3715                 650
3716                 650
3717                 155
3718                 156
3719                 195
3720                 642
3721                 414
3722                 435
3723                 332
3724                 145
3725                 208
3726                  NA
3727                  NA
3728                 650
3729                  NA
3730                 435
3731                 249
3732                 880
3733                 280
3734                 650
3735                 442
3736                 442
3737                 195
3738                 296
3739                 201
3740                 125
3741                 381
3742                 381
3743                 735
3744                 735
3745                 280
3746                 160
3747                 442
3748                 532
3749                  NA
3750                 282
3751                 425
3752                 425
3753                 425
3754                 157
3755                 194
3756                 320
3757                 145
3758                  NA
3759                 233
3760                 136
3761                 735
3762                 532
3763                 425
3764                 320
3765                 376
3766                 496
3767                 496
3768                 218
3769                 218
3770                 389
3771                 387
3772                 156
3773                 532
3774                  NA
3775                  NA
3776                  NA
3777                  NA
3778                  NA
3779                 316
3780                 326
3781                 425
3782                  44
3783                  44
3784                 201
3785                 406
3786                 406
3787                 157
3788                 157
3789                 338
3790                 398
3791                 252
3792                 252
3793                 423
3794                 442
3795                 442
3796                 188
3797                 233
3798                 157
3799                 157
3800                 381
3801                 650
3802                 221
3803                 425
3804                 735
3805                 296
3806                 608
3807                 125
3808                 349
3809                 218
3810                 195
3811                 163
3812                 195
3813                 650
3814                 608
3815                 608
3816                 435
3817                  NA
3818                 162
3819                  37
3820                 155
3821                 389
3822                 389
3823                 389
3824                 278
3825                  61
3826                 421
3827                 136
3828                 332
3829                 650
3830                 650
3831                  NA
3832                 326
3833                 326
3834                 425
3835                 195
3836                 223
3837                 223
3838                 221
3839                 221
3840                  73
3841                  85
3842                  85
3843                 249
3844                 249
3845                  92
3846                  92
3847                  92
3848                  92
3849                 163
3850                  52
3851                  52
3852                 159
3853                 342
3854                 195
3855                 195
3856                 572
3857                  NA
3858                  NA
3859                 204
3860                 650
3861                 326
3862                 326
3863                 326
3864                 173
3865                 173
3866                 173
3867                  NA
3868                 425
3869                 332
3870                  73
3871                  73
3872                 398
3873                 356
3874                  NA
3875                 320
3876                 389
3877                 249
3878                 425
3879                 188
3880                 414
3881                  55
3882                 532
3883                 608
3884                 195
3885                 262
3886                 458
3887                 458
3888                 458
3889                 195
3890                 124
3891                 532
3892                  30
3893                 650
3894                 208
3895                 208
3896                 532
3897                 425
3898                 354
3899                 880
3900                 188
3901                 381
3902                 381
3903                 381
3904                 442
3905                 157
3906                 208
3907                  NA
3908                  73
3909                 195
3910                  NA
3911                 880
3912                 880
3913                 880
3914                  NA
3915                 166
3916                 257
3917                 650
3918                 218
3919                 125
3920                 671
3921                 210
3922                 735
3923                 101
3924                 332
3925                 332
3926                 332
3927                 240
3928                 389
3929                 389
3930                 389
3931                 389
3932                 442
3933                 442
3934                 157
3935                 222
3936                  38
3937                 153
3938                 376
3939                 320
3940                 880
3941                 155
3942                 155
3943                 218
3944                 342
3945                 342
3946                 442
3947                 442
3948                 323
3949                 157
3950                 148
3951                 398
3952                 125
3953                 442
3954                 532
3955                 880
3956                 201
3957                 735
3958                 173
3959                 332
3960                 650
3961                 283
3962                  61
3963                 166
3964                 233
3965                 195
3966                 163
3967                 136
3968                 640
3969                 332
3970                 218
3971                 442
3972                  37
3973                 143
3974                 104
3975                 109
3976                 342
3977                 650
3978                 243
3979                 280
3980                 173
3981                 102
3982                 195
3983                 101
3984                 210
3985                 276
3986                 119
3987                 243
3988                 187
3989                 650
3990                 223
3991                 163
3992                  NA
3993                 880
3994                 180
3995                 160
3996                 249
3997                 102
3998                 195
3999                 154
4000                 458
4001                 387
4002                 650
4003                 381
4004                 452
4005                 532
4006                 326
4007                 320
4008                 458
4009                 880
4010                 880
4011                 157
4012                 126
4013                 188
4014                 115
4015                 381
4016                 735
4017                 381
4018                 195
4019                 195
4020                 425
4021                 406
4022                 425
4023                 381
4024                 332
4025                 332
4026                 735
4027                 335
4028                 735
4029                 145
4030                  30
4031                 354
4032                  73
4033                  30
4034                 532
4035                 532
4036                  89
4037                 735
4038                  NA
4039                 157
4040                 145
4041                 141
4042                 425
4043                 423
4044                 442
4045                 124
4046                  NA
4047                 326
4048                 218
4049                 425
4050                 532
4051                  55
4052                 145
4053                 208
4054                 880
4055                 124
4056                 381
4057                 425
4058                 425
4059                 381
4060                 381
4061                 432
4062                  NA
4063                 204
4064                 425
4065                 442
4066                 204
4067                 208
4068                 406
4069                 406
4070                  73
4071                  73
4072                 326
4073                 452
4074                 880
4075                 880
4076                 187
4077                 145
4078                 650
4079                 381
4080                 629
4081                 381
4082                 381
4083                 236
4084                 332
4085                 308
4086                 442
4087                  NA
4088                  NA
4089                 432
4090                 124
4091                 232
4092                 425
4093                 332
4094                 332
4095                 532
4096                 208
4097                 389
4098                 168
4099                 650
4100                  NA
4101                 326
4102                 326
4103                 326
4104                 326
4105                 195
4106                 162
4107                 249
4108                  NA
4109                 381
4110                 442
4111                 101
4112                  NA
4113                  NA
4114                 403
4115                 354
4116                 640
4117                 153
4118                 104
4119                 119
4120                 201
4121                 210
4122                 145
4123                 442
4124                 381
4125                 381
4126                 381
4127                 332
4128                 280
4129                 442
4130                 188
4131                 113
4132                  NA
4133                 204
4134                  NA
4135                 458
4136                 296
4137                 232
4138                 136
4139                 650
4140                  NA
4141                 425
4142                 376
4143                 435
4144                 432
4145                 442
4146                 532
4147                 532
4148                  NA
4149                 249
4150                 442
4151                 381
4152                 190
4153                 287
4154                 650
4155                 458
4156                 403
4157                 650
4158                 650
4159                 650
4160                 650
4161                 642
4162                 188
4163                 442
4164                 177
4165                 101
4166                 283
4167                 387
4168                 492
4169                 195
4170                 195
4171                 195
4172                 299
4173                 371
4174                 425
4175                 223
4176                 152
4177                 198
4178                 227
4179                 155
4180                 177
4181                 414
4182                 249
4183                 165
4184                 432
4185                 640
4186                 403
4187                 195
4188                 195
4189                 195
4190                 650
4191                  NA
4192                 926
4193                  NA
4194                 406
4195                 629
4196                 414
4197                 173
4198                 354
4199                 120
4200                 249
4201                  73
4202                 383
4203                 276
4204                 880
4205                 926
4206                 326
4207                 452
4208                 468
4209                 421
4210                 650
4211                 160
4212                 139
4213                 187
4214                 442
4215                 442
4216                 230
4217                 276
4218                 425
4219                 157
4220                 356
4221                  52
4222                 195
4223                 204
4224                 650
4225                 435
4226                 249
4227                 190
4228                 211
4229                 735
4230                 735
4231                 392
4232                 212
4233                 207
4234                 189
4235                 323
4236                 280
4237                 195
4238                 113
4239                 532
4240                  NA
4241                  NA
4242                 316
4243                 173
4244                 425
4245                 425
4246                 425
4247                 157
4248                 134
4249                 320
4250                 320
4251                 211
4252                  73
4253                 141
4254                 204
4255                 160
4256                 629
4257                 323
4258                 155
4259                 195
4260                 101
4261                 136
4262                 331
4263                 186
4264                 201
4265                 117
4266                 280
4267                  70
4268                 280
4269                 249
4270                 110
4271                 102
4272                 212
4273                 338
4274                 249
4275                 187
4276                 230
4277                 442
4278                 650
4279                 148
4280                 532
4281                 406
4282                 155
4283                 642
4284                 101
4285                 156
4286                  NA
4287                 270
4288                 160
4289                 320
4290                 425
4291                 195
4292                 496
4293                 296
4294                 496
4295                  44
4296                 126
4297                  88
4298                 173
4299                 442
4300                 735
4301                 532
4302                 532
4303                 173
4304                  88
4305                 157
4306                 124
4307                 432
4308                 163
4309                 650
4310                 650
4311                 173
4312                 204
4313                 195
4314                 735
4315                 735
4316                 735
4317                 735
4318                 172
4319                 168
4320                 458
4321                 458
4322                 458
4323                 458
4324                  NA
4325                 432
4326                 186
4327                 532
4328                 532
4329                 249
4330                 880
4331                 212
4332                 650
4333                 650
4334                 331
4335                 650
4336                 130
4337                 212
4338                 421
4339                 196
4340                 180
4341                 269
4342                 425
4343                 287
4344                 207
4345                  NA
4346                 326
4347                 180
4348                  NA
4349                 201
4350                 207
4351                 880
4352                 326
4353                 326
4354                 425
4355                 336
4356                 425
4357                 425
4358                 159
4359                 159
4360                 195
4361                  NA
4362                 204
4363                 492
4364                 173
4365                  73
4366                  73
4367                 342
4368                 381
4369                 735
4370                 735
4371                 735
4372                 642
4373                 735
4374                 735
4375                 735
4376                 159
4377                 332
4378                 316
4379                 280
4380                 532
4381                 532
4382                 138
4383                 458
4384                 157
4385                 157
4386                 217
4387                 269
4388                 243
4389                  NA
4390                  73
4391                 650
4392                 735
4393                  56
4394                 417
4395                 296
4396                 381
4397                 199
4398                 280
4399                 406
4400                 136
4401                 204
4402                 316
4403                 201
4404                 735
4405                 735
4406                 735
4407                 332
4408                 458
4409                 735
4410                 735
4411                 735
4412                 735
4413                 425
4414                 249
4415                 219
4416                 232
4417                 230
4418                  58
4419                 118
4420                 406
4421                 335
4422                 254
4423                 389
4424                 136
4425                 195
4426                 162
4427                 270
4428                  52
4429                 926
4430                 195
4431                 173
4432                 381
4433                 381
4434                 331
4435                 173
4436                 269
4437                  81
4438                 160
4439                 243
4440                  73
4441                 220
4442                  87
4443                 200
4444                  94
4445                  NA
4446                 136
4447                 332
4448                 442
4449                 214
4450                 354
4451                  55
4452                 376
4453                 110
4454                  NA
4455                 629
4456                  NA
4457                 249
4458                  90
4459                 279
4460                 735
4461                 200
4462                 200
4463                  NA
4464                  NA
4465                  NA
4466                  NA
4467                  NA
4468                  NA
4469                 195
4470                  78
4471                 915
4472                 915
4473                 231
4474                 260
4475                 195
4476                 204
4477                 406
4478                 389
4479                 211
4480                 389
4481                 389
4482                 157
4483                 157
4484                 124
4485                 225
4486                 458
4487                 432
4488                 425
4489                 188
4490                 532
4491                 195
4492                 425
4493                 195
4494                 442
4495                  NA
4496                 442
4497                 735
4498                 332
4499                 442
4500                 425
4501                 425
4502                 233
4503                 332
4504                 492
4505                 332
4506                 188
4507                 113
4508                 126
4509                  NA
4510                 195
4511                  90
4512                 126
4513                  37
4514                 173
4515                 326
4516                 186
4517                 435
4518                 356
4519                  NA
4520                 195
4521                  44
4522                 249
4523                 141
4524                  NA
4525                 222
4526                 223
4527                 496
4528                 442
4529                  30
4530                 230
4531                 326
4532                 425
4533                 468
4534                 629
4535                 338
4536                 735
4537                 249
4538                 735
4539                 168
4540                 227
4541                 650
4542                 408
4543                 226
4544                 170
4545                 177
4546                 195
4547                 650
4548                  NA
4549                 190
4550                 196
4551                 173
4552                 287
4553                 442
4554                  95
4555                 403
4556                 735
4557                 735
4558                 735
4559                  NA
4560                 432
4561                 180
4562                 192
4563                 229
4564                 496
4565                 406
4566                 442
4567                 532
4568                 532
4569                 532
4570                 148
4571                  NA
4572                 115
4573                 492
4574                 187
4575                 425
4576                 650
4577                  NA
4578                 211
4579                 323
4580                 423
4581                 249
4582                 249
4583                 735
4584                 172
4585                 162
4586                 157
4587                  73
4588                 280
4589                 915
4590                 226
4591                 157
4592                 222
4593                 425
4594                  NA
4595                 188
4596                 425
4597                  38
4598                 125
4599                 425
4600                 105
4601                 101
4602                 243
4603                 326
4604                 195
4605                 195
4606                 195
4607                 173
4608                 280
4609                 381
4610                 225
4611                 442
4612                 141
4613                 149
4614                 176
4615                  NA
4616                  55
4617                 147
4618                 200
4619                 124
4620                 190
4621                 138
4622                 132
4623                 160
4624                 218
4625                 421
4626                 735
4627                 207
4628                 195
4629                 195
4630                 532
4631                 532
4632                 332
4633                  NA
4634                  NA
4635                  NA
4636                 492
4637                 223
4638                 425
4639                 157
4640                 136
4641                 157
4642                  73
4643                  NA
4644                 338
4645                 338
4646                 124
4647                 124
4648                 338
4649                 442
4650                 194
4651                 336
4652                 735
4653                 124
4654                 177
4655                 249
4656                 442
4657                 188
4658                 880
4659                 425
4660                 222
4661                  30
4662                 735
4663                 532
4664                 532
4665                  73
4666                  NA
4667                 173
4668                 403
4669                 227
4670                 442
4671                 145
4672                 532
4673                 425
4674                 389
4675                 880
4676                 880
4677                 188
4678                 381
4679                 442
4680                  73
4681                 442
4682                 442
4683                 425
4684                 735
4685                 389
4686                 532
4687                 650
4688                  NA
4689                 442
4690                 735
4691                 177
4692                 650
4693                  55
4694                 342
4695                 170
4696                 326
4697                 155
4698                 267
4699                 308
4700                  61
4701                 308
4702                 432
4703                 173
4704                  73
4705                 381
4706                 381
4707                 735
4708                 735
4709                 389
4710                 532
4711                 157
4712                  NA
4713                  55
4714                  90
4715                 127
4716                  NA
4717                 160
4718                 155
4719                 243
4720                 532
4721                 532
4722                 278
4723                 326
4724                 326
4725                 320
4726                 296
4727                 423
4728                 249
4729                 249
4730                 442
4731                 177
4732                 455
4733                 332
4734                 389
4735                 532
4736                 532
4737                 177
4738                 326
4739                 880
4740                 188
4741                 381
4742                 442
4743                 208
4744                 735
4745                 170
4746                 170
4747                  NA
4748                 650
4749                  73
4750                 287
4751                 249
4752                 332
4753                 193
4754                 151
4755                 389
4756                 389
4757                 442
4758                 188
4759                 188
4760                 532
4761                 154
4762                 458
4763                 458
4764                 253
4765                 157
4766                 117
4767                  73
4768                 279
4769                 159
4770                  76
4771                 177
4772                 532
4773                 532
4774                 532
4775                  NA
4776                 492
4777                 124
4778                 354
4779                 423
4780                 211
4781                 532
4782                 157
4783                 188
4784                 650
4785                 425
4786                 532
4787                 532
4788                 381
4789                 188
4790                 425
4791                 442
4792                 195
4793                  NA
4794                 880
4795                 735
4796                 442
4797                 287
4798                 532
4799                 492
4800                 458
4801                 145
4802                 287
4803                  73
4804                 117
4805                 190
4806                 442
4807                 148
4808                 326
4809                 338
4810                 252
4811                 211
4812                 425
4813                 381
4814                 880
4815                 880
4816                 880
4817                 188
4818                 188
4819                 650
4820                 201
4821                 458
4822                 287
4823                  NA
4824                 200
4825                 207
4826                 316
4827                 180
4828                 249
4829                 195
4830                 650
4831                 195
4832                  73
4833                 880
4834                 458
4835                 278
4836                 195
4837                 735
4838                 442
4839                 425
4840                 381
4841                 283
4842                 200
4843                 110
4844                 389
4845                 188
4846                 458
4847                 458
4848                 458
4849                 458
4850                 157
4851                 320
4852                 320
4853                 158
4854                 425
4855                 162
4856                 316
4857                  NA
4858                 195
4859                 243
4860                 101
4861                 207
4862                  NA
4863                  NA
4864                 296
4865                 468
4866                 381
4867                 211
4868                  NA
4869                 640
4870                 117
4871                 442
4872                 735
4873                 425
4874                 425
4875                 136
4876                 403
4877                 381
4878                 118
4879                 332
4880                 332
4881                 332
4882                 532
4883                 880
4884                 880
4885                 163
4886                 188
4887                 188
4888                 188
4889                 188
4890                 188
4891                 188
4892                 458
4893                 458
4894                 356
4895                  NA
4896                 417
4897                 284
4898                  55
4899                 403
4900                 650
4901                 650
4902                 650
4903                 650
4904                 326
4905                 880
4906                 880
4907                 880
4908                 458
4909                 236
4910                 201
4911                 143
4912                 124
4913                 650
4914                 285
4915                 442
4916                 425
4917                 425
4918                 389
4919                 188
4920                 225
4921                 532
4922                 225
4923                  NA
4924                  NA
4925                 162
4926                 458
4927                 406
4928                  NA
4929                 145
4930                 124
4931                 332
4932                 190
4933                 735
4934                  55
4935                 251
4936                 269
4937                 442
4938                 177
4939                  30
4940                 532
4941                 223
4942                 177
4943                 117
4944                 320
4945                 211
4946                 435
4947                 316
4948                 336
4949                 177
4950                 735
4951                 435
4952                 650
4953                 312
4954                 204
4955                 735
4956                  44
4957                 381
4958                 188
4959                 389
4960                 145
4961                 320
4962                 423
4963                 389
4964                 208
4965                  NA
4966                  NA
4967                 326
4968                 223
4969                 650
4970                 195
4971                 532
4972                  73
4973                 177
4974                 195
4975                 442
4976                 210
4977                 118
4978                 381
4979                  NA
4980                 115
4981                 187
4982                 532
4983                 243
4984                 452
4985                 403
4986                 381
4987                 223
4988                 326
4989                 381
4990                 381
4991                 130
4992                 389
4993                 145
4994                  NA
4995                 157
4996                 425
4997                 496
4998                 425
4999                 425
 [ reached 'max' / getOption("max.print") -- omitted 4503 rows ]

grouping by GEOID to ensure areas with multiple airports are accurate

grouped_origin_passengers = join_2 |>
  filter(str_detect(NAME.x, "Metro Area")) |>
  group_by(origin_cbsa) |>
  summarize(grouped_origin_passengers = sum(passengers))|>
  ungroup()
print(grouped_origin_passengers)
# A tibble: 242 × 2
   origin_cbsa grouped_origin_passengers
   <chr>                           <int>
 1 10180                           67640
 2 10380                          326020
 3 10420                          171760
 4 10500                           33770
 5 10580                         1153460
 6 10740                         2105300
 7 10780                           96210
 8 10900                          199170
 9 11100                          331090
10 11260                         2196870
# ℹ 232 more rows
grouped_dest_passengers = join_2 |>
  filter(str_detect(NAME.x, "Metro Area")) |>
  group_by(dest_cbsa) |>
  summarize(grouped_dest_passengers = sum(passengers))|>
  ungroup()
print(grouped_dest_passengers)
# A tibble: 319 × 2
   dest_cbsa grouped_dest_passengers
   <chr>                       <int>
 1 10100                       25970
 2 10180                       67510
 3 10380                      324420
 4 10420                      173950
 5 10500                       33350
 6 10580                     1166370
 7 10740                     2092800
 8 10780                       88430
 9 10900                      200770
10 10980                       13860
# ℹ 309 more rows

#just a cheeky double check

test = join_2 |>
  filter(origin_cbsa == "31080") |>
  summarize(total_passengers = sum(passengers))|>
  ungroup()
print(test)
  total_passengers
1         30962410

#grouping and discovering the total population based on location

origin_pop = join_2 |>
  group_by(origin_cbsa)|>
  summarize(origin_pop = sum(total_populationE.x, na.rm = TRUE))|>
  ungroup()
print(origin_pop)
# A tibble: 319 × 2
   origin_cbsa origin_pop
   <chr>            <dbl>
 1 10100            42292
 2 10180           353312
 3 10380          1544595
 4 10420          6305202
 5 10500           147716
 6 10580         46889908
 7 10740         67781632
 8 10780           606884
 9 10900          5178996
10 10980            86733
# ℹ 309 more rows
dest_pop = join_2 |>
  group_by(dest_cbsa)|>
  summarize(dest_pop = sum(total_populationE.y)) |>
  ungroup()
print(dest_pop)
# A tibble: 319 × 2
   dest_cbsa dest_pop
   <chr>        <dbl>
 1 10100        42292
 2 10180       176656
 3 10380      1544595
 4 10420      6305202
 5 10500       147716
 6 10580     51398553
 7 10740     69613568
 8 10780       606884
 9 10900      6042162
10 10980        86733
# ℹ 309 more rows

#create data for first scatterplot

combined_data = grouped_origin_passengers |>
  left_join(origin_pop, grouped_origin_passengers, by = "origin_cbsa")
print(combined_data)
# A tibble: 242 × 3
   origin_cbsa grouped_origin_passengers origin_pop
   <chr>                           <int>      <dbl>
 1 10180                           67640     353312
 2 10380                          326020    1544595
 3 10420                          171760    6305202
 4 10500                           33770     147716
 5 10580                         1153460   46889908
 6 10740                         2105300   67781632
 7 10780                           96210     606884
 8 10900                          199170    5178996
 9 11100                          331090    9963286
10 11260                         2196870   13577390
# ℹ 232 more rows

#change numbers to numerical

combined_data = combined_data |>
  mutate(
    grouped_origin_passengers = as.numeric(grouped_origin_passengers),
    origin_pop = as.numeric(origin_pop))

#create plot

plot_origin = combined_data |>
ggplot(aes(x = origin_pop, y = grouped_origin_passengers)) + geom_point() +labs(title = "Scatterplot of grouped origin passengers VS total Population", x = "origin_passengers", y = "total population")
print(plot_origin)

#data for second plot

combined_data_dest = grouped_dest_passengers |>
  left_join(dest_pop, by = "dest_cbsa") |>
  mutate(
    grouped_dest_passengers = as.numeric(grouped_dest_passengers), dest_pop = as.numeric(dest_pop))
print(combined_data_dest)
# A tibble: 319 × 3
   dest_cbsa grouped_dest_passengers dest_pop
   <chr>                       <dbl>    <dbl>
 1 10100                       25970    42292
 2 10180                       67510   176656
 3 10380                      324420  1544595
 4 10420                      173950  6305202
 5 10500                       33350   147716
 6 10580                     1166370 51398553
 7 10740                     2092800 69613568
 8 10780                       88430   606884
 9 10900                      200770  6042162
10 10980                       13860    86733
# ℹ 309 more rows
combined_data_dest = grouped_dest_passengers |>
left_join(dest_pop, by = "dest_cbsa") |>
mutate(
  grouped_dest_passengers = as.numeric(grouped_dest_passengers),
  dest_pop = as.numeric(dest_pop))
print(combined_data_dest)
# A tibble: 319 × 3
   dest_cbsa grouped_dest_passengers dest_pop
   <chr>                       <dbl>    <dbl>
 1 10100                       25970    42292
 2 10180                       67510   176656
 3 10380                      324420  1544595
 4 10420                      173950  6305202
 5 10500                       33350   147716
 6 10580                     1166370 51398553
 7 10740                     2092800 69613568
 8 10780                       88430   606884
 9 10900                      200770  6042162
10 10980                       13860    86733
# ℹ 309 more rows

#creating scatterplot

plot_2 = combined_data_dest |>
  ggplot(aes(x = dest_pop, y = grouped_dest_passengers)) + geom_point() + labs(title = "Scatterplot of grouped destination passengers VS total population", x = "Total Population" ,y = "Grouped Destination Passengers")
print(plot_2)
Warning: Removed 1 row containing missing values or values outside the scale range
(`geom_point()`).

#grouping by travel distance and getting the number of passengers

distance_pass = join_2 |>
  group_by(distancemiles) |>
  summarize(distance_pass = sum(passengers))|>
  ungroup()
print(distance_pass)
# A tibble: 2,176 × 2
   distancemiles distance_pass
           <int>         <int>
 1            11           170
 2            15            50
 3            17            10
 4            21           170
 5            24            70
 6            29            20
 7            30            70
 8            31           910
 9            36           330
10            39          1890
# ℹ 2,166 more rows

#scatterplot

plot_distance = distance_pass |>
  ggplot(aes(x = distancemiles, y = distance_pass)) + geom_point() + labs(title = "Scatterplot of Flight Distance and Passengers",x = "Distance of flight",y = "Passengers")
print(plot_distance)

#combining data for the regression

join_2 = join_2 |>
  left_join(combined_data_dest, by = "dest_cbsa") |>
  left_join(combined_data, by = "origin_cbsa")

print(join_2)
     origin dest passengers distancemiles
1       EWR  DTW     205100           488
2       FLL  DTW     378280          1127
3       JAX  DTW      68740           813
4       LAX  DTW     422730          1979
5       LAX  OAK     418340           337
6       LAX  PHX     662760           370
7       LGA  DTW     382450           502
8       LGA  MIA     750650          1096
9       MCO  DTW     576280           957
10      MIA  DTW     204770          1145
11      MSY  DTW     116190           926
12      RSW  DTW     337790          1084
13      SEA  PDX     511400           129
14      SEA  PHX     795450          1107
15      SEA  SJC     455450           696
16      SLC  SJC     170090           584
17      TPA  DTW     327990           983
18      ATL  DAY     104470           432
19      ATL  BUF     166580           712
20      ATL  ECP     260070           240
21      ATL  MSP     488860           907
22      ATL  ONT     143830          1900
23      ATL  PVD     133160           903
24      ATL  JAX     615330           270
25      ATL  PBI     556290           545
26      ATL  AVL     136170           164
27      ATL  EWR     665820           746
28      ATL  EYW     156910           646
29      ATL  JAN     228330           341
30      ATL  LAX     796790          1947
31      ATL  PDX     195350          2172
32      ATL  RDU     537720           356
33      ATL  SMF     138670          2092
34      DTW  FLL     379710          1127
35      DTW  SFO     198170          2079
36      MSP  DEN     717630           680
37      MSP  EWR     203530          1008
38      MSP  SAN     237560          1532
39      MSP  SEA     428250          1399
40      SLC  SAN     308880           626
41      SLC  SMF     201930           532
42      SLC  PSC      58870           521
43      ATL  HPN     118010           780
44      ATL  LGA     911360           762
45      MSP  ATL     487210           907
46      MSP  DFW     378840           852
47      ATL  LFT      47170           503
48      ATL  AUS     475980           813
49      ATL  CVG     292510           373
50      ATL  MCI     335950           692
51      ATL  ORD     592170           606
52      ATL  SAN     313120          1892
53      ATL  SYR     124930           794
54      JFK  FLL     588470          1069
55      LAX  HNL     797610          2556
56      LGA  BUF      71730           292
57      MSP  FSD      95530           196
58      SLC  BZN     111160           347
59      SLC  SEA     424050           689
60      MSP  DSM      57090           232
61      MSP  BOS     299520          1124
62      MSP  LGA     250120          1020
63      MSP  FAR     127590           223
64      SLC  ATL     464470          1590
65      SLC  DCA      61750          1851
66      SLC  JFK     280840          1990
67      SLC  MSY      52980          1428
68      SLC  SAT      91220          1087
69      SLC  SNA     226830           588
70      SLC  FAT      74330           501
71      SLC  IDA      82980           188
72      SLC  PSP      62640           541
73      ATL  GPT      99980           352
74      ATL  BOS     577460           946
75      ATL  MCO    1143930           404
76      DTW  GSP      32370           508
77      ATL  ALB     125600           853
78      ATL  BDL     265460           859
79      ATL  DTW     609260           594
80      ATL  MKE     276270           669
81      ATL  DAL     353130           721
82      ATL  MEM     376700           332
83      ATL  BWI     631380           577
84      ATL  CMH     324310           447
85      ATL  MSY     525540           425
86      ATL  ORF     337330           516
87      ATL  PIT     304270           526
88      LAX  FLL     297470          2343
89      LAX  MCO     454250          2218
90      LAX  LAS    1046680           236
91      LAX  SAN      49300           109
92      LAX  SMF     349900           373
93      MSP  RDU     126900           980
94      MSP  CMH      79600           626
95      SEA  MCO     260490          2554
96      SLC  PDX     280140           630
97      ATL  OMA     196310           821
98      ATL  DAB     172330           366
99      ATL  IND     397560           432
100     ATL  JFK     344030           760
101     ATL  SLC     468780          1590
102     ATL  SRQ     349790           444
103     ATL  VPS     226580           250
104     DTW  BOS     264470           632
105     LAX  IND      80390          1814
106     LAX  TUS     147880           451
107     MSP  LAX     472490          1535
108     SLC  LAX     597950           590
109     ATL  MDW     363690           591
110     ATL  GSO     229550           306
111     ATL  CLE     363070           554
112     ATL  GRR     175370           640
113     ATL  PHL     640040           666
114     ATL  SNA     139330          1919
115     ATL  IAH     450090           689
116     DTW  AZO      36720           113
117     DTW  JFK      89350           509
118     LAS  JFK     408930          2248
119     LAX  DEN     790700           862
120     LAX  KOA     241250          2504
121     MCO  JFK     620540           944
122     MCO  LGA     638260           950
123     MIA  JFK     736430          1089
124     MIA  LGA     767670          1096
125     RSW  JFK     168630          1074
126     SEA  LIH     132790          2701
127     SEA  SLC     424580           689
128     SEA  SNA     409810           978
129     SEA  GEG     432600           224
130     SLC  GEG     148960           546
131     SLC  JAC      76580           205
132     SLC  OAK     231730           588
133     SLC  COS      44620           411
134     TPA  JFK     265210          1005
135     SAN  JFK     304560          2446
136     LAX  RNO     214400           391
137     SEA  BOI     301640           399
138     ATL  OAJ      56390           399
139     DTW  CVG      71580           229
140     DTW  SYR      64510           374
141     DTW  CLE      82190            95
142     DTW  TPA     334470           983
143     JFK  SYR      60720           209
144     JFK  LAS     391010          2248
145     MSP  DLH      77650           144
146     MSP  BDL     102230          1050
147     RDU  JFK     183080           427
148     SLC  AUS     167430          1086
149     SLC  LAS     500620           368
150     ATL  AGS     122800           143
151     ATL  RIC     415870           481
152     ATL  SAT     361450           874
153     BNA  LAX     276900          1797
154     CVG  LGA     114670           585
155     CVG  BOS      90330           752
156     DFW  LAX     922130          1235
157     DTW  BDL     109560           549
158     DTW  BUF     104490           241
159     DTW  LGA     386380           502
160     DTW  RIC      54910           456
161     HNL  LAX     810630          2556
162     JFK  BUF     143910           301
163     JFK  RIC      63770           288
164     RDU  MCO     259640           534
165     SAT  LAX     160300          1211
166     SEA  ANC     926610          1448
167     SLC  FCA      84770           531
168     SLC  LGB      89230           588
169     SLC  MSO      71240           436
170     SLC  SUN      44060           222
171     ATL  OKC     208440           761
172     DTW  GRR     125570           120
173     DTW  LAX     415560          1979
174     DTW  PHX     323680          1671
175     DTW  SAN     149480          1956
176     DTW  SEA     293100          1927
177     FLL  LGA     614620          1076
178     MSP  BOI      91780          1142
179     MSP  GEG     102350          1175
180     MSP  PHX     622720          1276
181     MSP  SFO     281270          1589
182     MSP  SMF      76560          1517
183     ORD  LGA    1049510           733
184     SRQ  LGA      58400          1047
185     TPA  LGA     353540          1010
186     LAX  BOS     571010          2611
187     ATL  LIT     219160           453
188     ATL  BTR     100670           448
189     MSP  PDX     231840          1426
190     ATL  LEX     162920           304
191     ATL  HNL      82300          4502
192     ATL  IAD     272690           534
193     ATL  STL     349720           484
194     DTW  MCO     592530           957
195     DTW  LSE       3940           416
196     JFK  MCO     612830           944
197     LGA  MCO     630040           950
198     MSP  GRB      50530           252
199     ATL  TPA     851260           406
200     ATL  TUS     117330          1541
201     ATL  DEN     800470          1199
202     ATL  SFO     363180          2139
203     ATL  TYS     194700           152
204     MSP  CID      28630           220
205     SLC  DEN     709950           391
206     ATL  BQK      35430           238
207     ATL  RSW     486050           515
208     ATL  GSP     310880           153
209     MSP  DCA     234830           931
210     ATL  FLL    1020520           581
211     ATL  MYR     141230           317
212     ATL  SAV     339340           214
213     ATL  TUL     110620           674
214     AUS  MSP     136110          1042
215     BNA  MSP     189690           695
216     BOS  MSP     296190          1124
217     DCA  MSP     235600           931
218     DEN  MSP     730620           680
219     DFW  MSP     379400           852
220     DTW  DFW     359950           986
221     DTW  MIA     211190          1145
222     DTW  RSW     340660          1084
223     EWR  MSP     209200          1008
224     LAS  MSP     560980          1299
225     LAX  MSP     469880          1535
226     LGA  PWM      79570           269
227     LGA  MSP     239110          1020
228     MCO  MSP     500880          1310
229     MSY  MSP      57240          1039
230     ORD  MSP     461170           334
231     PDX  MSP     231140          1426
232     PHL  MSP     152970           980
233     RDU  MSP     123300           980
234     RSW  MSP     362870          1416
235     SEA  MSP     421790          1399
236     TPA  MSP     266030          1306
237     DTW  LAN      34510            74
238     DTW  MSY     117390           926
239     MSP  MSY      56220          1039
240     MSP  SNA      90030          1522
241     ATL  BHM     315480           134
242     ATL  CLT     383000           226
243     SLC  RDU      58390          1823
244     SLC  SFO     266060           599
245     ATL  PNS     354230           271
246     MSP  MCO     506460          1310
247     SLC  ONT     137530           558
248     ATL  HHH      31830           238
249     BOS  ORD     671890           867
250     DTW  SDF      49240           306
251     LGA  SYR      52060           198
252     LGA  ORD    1033110           733
253     MSP  ORD     481950           334
254     MSP  HIB      13420           174
255     SEA  LAX     729000           954
256     ATL  DSM      91410           743
257     ATL  CHS     384440           259
258     MSP  IND     131980           503
259     SEA  PSP     180730           987
260     SLC  BOS     167120          2105
261     SLC  MCI     110110           920
262     SLC  ABQ      64360           493
263     SLC  RNO     119190           422
264     ATL  ABQ     152080          1269
265     ATL  MIA     817720           594
266     DTW  PHL     172800           453
267     MSP  RST      42770            76
268     ATL  PWM      74110          1027
269     JFK  BOS     312700           187
270     MSP  SBN      20420           411
271     ATL  BNA     471810           214
272     ATL  DCA     641730           547
273     ATL  LAS     739940          1747
274     DTW  RDU     124700           501
275     FLL  RDU      97440           680
276     LAS  RDU      94100          2026
277     LAX  RDU     104750          2239
278     LAX  SFO     949530           337
279     MCO  RDU     259570           534
280     SEA  RDU     110710          2354
281     ATL  DFW     781170           731
282     ATL  BTV      34280           961
283     LGA  RSW     132660          1080
284     DTW  GRB      49380           287
285     SEA  SAN     538340          1050
286     SLC  MCO     318030          1931
287     SLC  TPA      59460          1888
288     ATL  FAY      48590           331
289     ATL  SEA     491550          2182
290     DTW  BWI     196210           409
291     DTW  IAD     114470           383
292     LAS  SEA     849910           867
293     LAX  SEA     740440           954
294     MSP  MKE     137210           297
295     PHX  SEA     796950          1107
296     SAN  SEA     541490          1050
297     SLC  SGU      59310           272
298     SNA  SEA     411270           978
299     SEA  BNA     142310          1978
300     SLC  CVG      79400          1450
301     SLC  MIA      71270          2088
302     MSP  DTW     252630           528
303     SLC  DTW     227150          1481
304     BOI  SLC     142450           290
305     DFW  SLC     450160           989
306     DTW  CID      22070           430
307     DTW  MKE     106640           237
308     DTW  CMH      70810           155
309     EWR  SLC     101530          1969
310     GEG  SLC     148900           546
311     JFK  SLC     277250          1990
312     LAS  SLC     481120           368
313     LAX  SLC     594160           590
314     MSP  JFK      88060          1029
315     ONT  SLC     130560           558
316     SAN  SLC     310710           626
317     SFO  SLC     266780           599
318     SJC  SLC     169040           584
319     SNA  SLC     228840           588
320     MSP  BNA     197320           695
321     SLC  MSP     256980           991
322     ATL  CHA     173700           106
323     MSP  GRR     117170           408
324     SEA  EUG     159000           234
325     SLC  RDM      49740           525
326     ATL  SDF     285220           321
327     MSP  STL     147900           448
328     ATL  GEG      57000          1969
329     ATL  GRB      37500           774
330     ATL  FSD      32410           954
331     DTW  MBS      38930            98
332     DTW  LAS     507640          1749
333     JFK  TPA     265120          1005
334     LGA  TPA     343460          1010
335     MSP  TPA     263590          1306
336     LAS  ATL     744000          1747
337     ONT  ATL     146200          1900
338     LAS  AUS     399400          1090
339     MCO  BWI     649380           787
340     MCO  CLE     317690           895
341     DEN  SAN     678240           853
342     LAS  ONT     248060           197
343     PHL  CLT     356980           449
344     FAT  DEN     120220           844
345     ORD  DEN     906020           888
346     TPA  ISP      78410          1034
347     TPA  LAS     151140          1984
348     TTN  MCO     115060           896
349     DEN  ONT     283320           819
350     LAS  MEM      36460          1416
351     PHL  MIA     366980          1013
352     LAS  PDX     434240           763
353     LAS  PHL     264790          2176
354     MCO  PHL     865350           861
355     TPA  PHL     343200           920
356     SAN  PHX     617170           304
357     SJU  RDU      37840          1433
358     LAS  SAN     685770           258
359     LAS  SAT     198810          1069
360     EWR  SJU     332700          1608
361     IAD  LGA      95370           229
362     EWR  CLT     384930           529
363     ORD  CLT     452110           599
364     IAD  HNL      26940          4817
365     ORD  LAS     741580          1514
366     ORD  PHX     777970          1440
367     EWR  PBI     392820          1023
368     CLE  IAH      84410          1091
369     CLT  EWR     395740           529
370     DCA  DEN     217890          1476
371     GSO  EWR      37070           445
372     IND  EWR      92770           645
373     ROC  EWR      53170           246
374     IAD  AVL       9730           370
375     EWR  GSO      38360           445
376     ORD  SPI      16300           174
377     HHH  IAD      12420           498
378     IND  IAD      59540           476
379     IAD  TYS      24540           420
380     ORD  RSW     408390          1120
381     ORD  IAH     520970           925
382     ORD  SFO     706430          1846
383     EWR  BNA     171930           748
384     EWR  SFO     725590          2565
385     IAD  SFO     325210          2419
386     IAD  TPA     101050           811
387     EWR  JAX     125160           820
388     EWR  SEA     264120          2402
389     EWR  ROC      56390           246
390     ORD  SEA     634720          1721
391     ORD  STL     161270           258
392     EWR  SYR      36090           195
393     EWR  IND      91900           645
394     IAD  PHX      62340          1956
395     ORD  LIT      65730           552
396     ORD  EWR     613040           719
397     ORD  TYS      75270           475
398     ORD  PIT     209740           413
399     CLT  BDL     237770           644
400     MIA  STX      91470          1139
401     ORD  MCO     781340          1005
402     BNA  AUS     213440           756
403     CVG  AUS      47620           958
404     OKC  AUS      48750           358
405     ORD  SDF      96290           286
406     AUS  LAS     388970          1090
407     ORD  ATL     582040           606
408     ORD  SYR     125730           607
409     ORD  BOS     688500           867
410     ORD  FAR      64540           557
411     DFW  EWR     387260          1372
412     ORD  SNA     288370          1726
413     DFW  OKC     256360           175
414     DFW  FAT     158660          1313
415     DFW  XNA     155510           280
416     ORD  PDX     252220          1739
417     DCA  MCO     482830           759
418     DCA  CVG      99020           411
419     MIA  MCO     308320           192
420     MIA  TPA     182120           204
421     MIA  CVG      54390           948
422     ORD  ICT      72330           588
423     DFW  MLU      40860           293
424     DTW  DCA     233870           405
425     MEM  DCA      60870           762
426     LCH  DFW      35700           295
427     MTJ  DFW      55950           722
428     DFW  BHM     129870           597
429     ORD  SJC      30600          1829
430     DFW  MCO     657430           985
431     ORD  MIA     493050          1197
432     ORD  RIC     112050           642
433     DFW  TUL     241460           237
434     ORD  LAX    1026760          1744
435     DFW  PHX     593600           868
436     DFW  MIA     491540          1121
437     DFW  COS     180400           592
438     DFW  GEG      43660          1477
439     DFW  GCK      27370           404
440     CLT  LYH      73900           175
441     MIA  ORD     485330          1197
442     ORD  BGR      20300           978
443     ORD  JAX     105830           864
444     ORD  FSD      76840           463
445     DFW  SDF     121650           733
446     DFW  SYR      35200          1336
447     DFW  AUS     443610           190
448     DFW  ONT     308710          1188
449     DFW  LFT      64170           351
450     CLT  IAD     157030           322
451     ORD  AUS     336610           977
452     DFW  SJC     121400          1438
453     ORD  MCI     199940           403
454     PIT  MIA      53540          1013
455     DFW  BNA     337180           631
456     ORD  CLE     273780           315
457     DFW  MCI     250780           460
458     ORD  FWA      67390           157
459     ORD  MSY     182000           836
460     DFW  CAE      56760           922
461     ORD  LEX      68950           323
462     AUS  ORD     341420           977
463     CVG  ORD     144330           264
464     RDU  ORD     201390           646
465     ORD  RNO      21410          1671
466     ORD  GRR     148010           137
467     DFW  ORD     680380           801
468     ORD  XNA      88780           522
469     MIA  LAX     483190          2342
470     MIA  EYW      64800           126
471     MIA  SDF      27450           910
472     DFW  IAH     458700           224
473     DFW  AGS      21570           874
474     ORD  RDU     208960           646
475     DFW  MSY     302870           447
476     DFW  ABQ     286170           569
477     MIA  ATL     804300           594
478     ORD  LAN      32090           179
479     DFW  DEN     709240           641
480     DFW  LAS     864160          1055
481     DFW  SEA     515930          1660
482     MIA  ACY      23970           998
483     MYR  ACY      47990           466
484     RSW  ACY      59160           982
485     EWR  ATL     662630           746
486     FLL  AUS     143240          1105
487     IAH  ATL     453220           689
488     LAS  SNA     510450           226
489     MSY  ATL     538210           425
490     LAX  ATL     795360          1947
491     TPA  BDL      97450          1111
492     FLL  BNA     184870           793
493     LAS  BNA     198190          1587
494     LAX  BNA     275590          1797
495     LGA  BNA     377650           764
496     BWI  BOS     259980           369
497     FLL  BOS     365040          1237
498     LAS  BOS     215250          2381
499     SJU  BOS     215070          1674
500     TPA  BOS     307990          1185
501     LAS  BUR     408340           223
502     FLL  BWI     407020           925
503     FLL  DEN     278960          1703
504     LAS  BWI     236950          2106
505     MSY  BWI     138500           998
506     TPA  BWI     315870           842
507     BOS  BWI     257920           369
508     LAS  CLE     141620          1824
509     LAS  MCO     197860          2039
510     RSW  CLE     158200          1025
511     TPA  CLE     163880           927
512     MCO  IAH     485940           854
513     MCO  CLT     673680           468
514     MCO  CMH     221870           802
515     IAH  BWI     123760          1235
516     FLL  DFW     369480          1119
517     LAS  DFW     863420          1055
518     MSY  DFW     311110           447
519     ORD  DFW     667620           801
520     TPA  ORD     450750          1011
521     LAS  DTW     502190          1749
522     BNA  EWR     173770           748
523     FLL  EWR     669740          1065
524     IAH  EWR     420390          1400
525     MCO  EWR     925000           937
526     AUS  EWR     204470          1504
527     BNA  FLL     176790           793
528     BOS  FLL     364770          1237
529     BWI  FLL     414510           925
530     DEN  FLL     287330          1703
531     EWR  FLL     672010          1065
532     IND  FLL      85790          1005
533     LAS  FLL     116320          2173
534     LGA  FLL     597140          1076
535     EWR  IAH     403220          1400
536     LAS  IAH     511480          1222
537     FLL  IND      84930          1005
538     LAS  IND     185210          1590
539     TPA  IND     125650           837
540     BNA  LAS     205000          1587
541     BOS  LAS     211870          2381
542     DTW  ATL     592890           594
543     MCO  GSO       1840           535
544     MSY  LAS     147870          1500
545     PIT  LAS     109100          1910
546     SEA  LAS     844720           867
547     FLL  LAX     286200          2343
548     MCI  LAX     134110          1363
549     MSY  TPA     121940           488
550     PHL  LAX     340410          2402
551     SDF  LAX      31190          1843
552     MCO  LBE      51400           823
553     RSW  LBE       6840           956
554     LAS  MCI     208490          1139
555     LAX  MCI     142850          1363
556     BNA  MCO     317540           616
557     BQN  MCO     138520          1129
558     CLT  MCO     664450           468
559     LAS  OAK     598700           407
560     PIT  MCO     239840           834
561     SJU  MCO     914420          1189
562     LAS  MKE     171640          1524
563     FLL  PHL     336670           992
564     LAS  MSY     145170          1500
565     LAS  EWR     393300          2227
566     LAS  ORD     741240          1514
567     MCO  ORD     766710          1005
568     MSY  ORD     176200           836
569     RSW  ORD     408830          1120
570     LAS  PIT      99510          1910
571     LAX  PIT      40860          2136
572     MCO  PIT     244060           834
573     ORD  SAN     343770          1723
574     BOS  SJU     208980          1674
575     TPA  STL     121140           869
576     FLL  IAH     256240           966
577     BOS  TPA     302520          1185
578     BWI  TPA     330650           842
579     CMH  TPA     120990           829
580     LAS  TPA     152650          1984
581     CLT  SRQ     125900           547
582     CLT  SDF     121430           335
583     DCA  VPS      25460           789
584     PHL  LAS     264180          2176
585     DCA  PHX     175100          1979
586     CLT  ALB     113810           646
587     CLT  LAS     393500          1916
588     CLT  LGA     446700           544
589     CLT  MSP     226910           930
590     CLT  PHL     387840           449
591     CLT  PBI     246290           590
592     DCA  BNA     236750           562
593     DCA  JFK      81620           213
594     DCA  LGA     335100           214
595     CLT  TPA     432960           507
596     CLT  VPS     102230           460
597     CLT  STL     218240           575
598     CLT  SAT     157980          1095
599     PHL  CHS      74020           550
600     CLT  BWI     328250           361
601     ABE  CLT      59470           481
602     BNA  CLT     309970           328
603     HPN  CLT      67370           564
604     IAD  CLT     158290           322
605     PIA  CLT      34270           607
606     CLT  FLL     379430           632
607     CLT  OKC      71980           940
608     PHL  MCO     871340           861
609     CLT  IND     172270           427
610     CLT  MEM     182340           511
611     CLT  PHX     389020          1773
612     CLT  CAK      66940           394
613     CLT  CLE     160400           430
614     DCA  DAY      51150           391
615     CLT  AUS     252560          1032
616     JAN  DCA      18350           860
617     JAX  DCA     104690           634
618     MSY  DCA     151540           969
619     PHL  SFO     154510          2521
620     MGM  DFW      43840           622
621     CLT  DCA     279500           331
622     DCA  HPN      57610           234
623     DCA  PVD     152160           356
624     CLT  ATL     387660           226
625     PHL  DTW     176800           453
626     PHL  PWM      70980           364
627     CLT  SAV     182890           213
628     CLT  LIT      73050           640
629     CLT  MLB      60050           490
630     CLT  DTW     279850           500
631     CLT  MCI     139160           808
632     CLT  ORD     463030           599
633     CLT  MKE      86970           651
634     CLT  FNT      38150           555
635     CLT  DAY      77330           370
636     DCA  BOS     749190           399
637     DCA  PIT      73540           204
638     CLT  DFW     490140           936
639     CLT  OMA      78250           913
640     CLT  HPN      63150           564
641     DCA  PBI     143340           857
642     DCA  ATL     640780           547
643     CLT  RSW     261320           600
644     CLT  BUF     116850           546
645     CLT  PIT     220710           366
646     CLT  ABE      58310           481
647     CLT  ORF     227420           290
648     CLT  PHF      73730           282
649     CLT  JAX     249150           328
650     DCA  JAX     102530           634
651     DCA  MHT      57630           406
652     PHL  BOS     412720           280
653     PHL  JAX      87280           742
654     CLT  AVL     134970            91
655     CLT  RDU     378130           130
656     CLT  FAY      90440           118
657     CLT  OAJ      86830           191
658     CLT  MDT     122770           413
659     CLT  MIA     280400           650
660     CLT  CHS     222330           168
661     CLT  IAH     244240           912
662     CLT  DSM      62460           815
663     CLT  GSP     147130            75
664     DCA  PWM      85160           482
665     CLT  MSY     202240           651
666     CLT  JAN      60180           562
667     DCA  MSY     149130           969
668     PHL  LEX      12570           520
669     BNA  PHL     226160           675
670     CHS  PHL      74970           550
671     DCA  BHM      43310           653
672     ILM  PHL      32410           413
673     JAX  PHL      87640           742
674     MSP  PHL     156400           980
675     RDU  PHL     153970           337
676     CLT  DEN     378710          1337
677     CLT  SAN     196240          2077
678     PHL  SEA     142310          2378
679     PHL  IND      72460           588
680     PHL  ISP      23700           130
681     PHL  ORD     484390           678
682     PHL  BDL      64970           196
683     CLT  TYS     115730           177
684     CLT  PVD     148190           683
685     DCA  RDU     128190           227
686     DCA  STL     182230           719
687     DCA  SYR      59180           298
688     DCA  SDF      53190           474
689     LAX  ABQ     148090           677
690     DEN  IAH     640350           862
691     ORD  LNK      37540           466
692     ORD  ALB     140030           723
693     ORD  ONT       8140          1700
694     LAX  ASE      40390           737
695     SAN  HNL     155760          2614
696     DEN  SEA     754890          1024
697     ORD  ABQ      69910          1118
698     ORD  BNA     349350           409
699     DEN  MCI     391950           533
700     SFO  BIH       4930           221
701     DEN  MFR      72810           964
702     ORD  PSP      53720          1652
703     DEN  SBA     129340           916
704     IAH  LAX     605510          1379
705     GEG  BOI      51570           287
706     LAX  BOI      99200           674
707     PDX  BOI      81040           344
708     SEA  ATL     501710          2182
709     SFO  BOI      93730           522
710     SJC  BOI      68260           523
711     SEA  KOA     174780          2688
712     SLC  BUR     129250           574
713     DEN  BOI     228250           649
714     PHX  STS      28050           699
715     PHX  BUR     329820           369
716     PDX  BUR      71560           817
717     SFO  OGG     261320          2338
718     LAX  BZN      32920           902
719     ORD  BWI     265780           621
720     DEN  BZN     283600           524
721     ORD  OKC      76300           693
722     DFW  GRK      99920           134
723     DEN  BOS     403540          1754
724     DEN  EWR     369030          1605
725     LAX  COS      14600           833
726     DEN  LAX     807770           862
727     LAX  DAL     197350          1246
728     AUS  DEN     489110           775
729     BOI  DEN     244520           649
730     BZN  DEN     281420           524
731     DSM  DEN     204430           589
732     MEM  DEN     104340           872
733     OMA  DEN     291000           472
734     DEN  TUS     191010           639
735     DEN  SLC     724190           391
736     MSP  PIT      75180           726
737     DEN  DSM     207490           589
738     DEN  PSC      29700           852
739     ORD  MDT      96560           594
740     SFO  EUG      69090           451
741     SFO  DEN     659770           967
742     PHX  FAT      91850           493
743     PDX  FAT      27380           626
744     SAN  FAT      35090           314
745     SEA  FAT      71410           748
746     SFO  RDM      79600           462
747     SFO  ORD     714510          1846
748     MSP  FCA      45720          1026
749     SLC  ORD     275330          1250
750     ORD  FLL     410700          1182
751     ORD  SRQ      57630          1050
752     DTW  JAX      67140           813
753     BOI  PHX     153940           735
754     BOI  GEG      52140           287
755     LAX  GEG      47770           945
756     SEA  BOS     326650          2496
757     SFO  BNA      40570          1969
758     IAH  FLL     258150           966
759     IAH  MIA     326910           964
760     IAH  SJC      45440          1608
761     ORD  ABE      52090           654
762     DEN  HDN     113480           141
763     DTW  SLC     229940          1481
764     MSP  LSE      30000           119
765     DTW  IAH     219950          1075
766     ELP  IAH      78010           667
767     SLC  PIH      13370           150
768     DEN  CLE     272020          1201
769     DEN  FAR      74300           627
770     ORD  DCA     576940           612
771     IAD  PIT      55790           182
772     LAX  ORD    1047770          1744
773     PHX  LAX     676260           370
774     TUS  LAX     159140           451
775     BOI  LAX      94200           674
776     BZN  LAX      32480           902
777     GEG  LAX      50270           945
778     STS  LAX      32030           400
779     SJC  LAX     400480           308
780     ASE  LAX      39680           737
781     IAH  BTR      61690           253
782     IAH  SFO     352040          1635
783     ORD  IND     160010           177
784     ORD  AZO      36420           122
785     DFW  SAT     419980           247
786     ORD  MSN     150140           109
787     PHX  MSP     625350          1276
788     SFO  SAN     522370           447
789     DEN  MKE     227660           896
790     DEN  LAS    1028700           628
791     DEN  EUG      74040           996
792     SAN  MRY      20080           375
793     MSP  MSN      91790           228
794     ATW  MSP      48210           236
795     IAD  MSP      72850           908
796     DEN  GTF      48150           623
797     ORD  GRB      98880           174
798     PDX  OAK     196830           543
799     DFW  ROW      38170           435
800     LAX  OGG     430470          2486
801     ORD  AVP      54800           632
802     DEN  LGA     588630          1620
803     IAH  JAX      77780           817
804     LAX  OMA      21890          1330
805     DTW  PVD      55660           615
806     MSP  CIU      12540           435
807     PHX  ONT     288160           325
808     PHX  SAT     272840           843
809     SFO  ONT     102290           363
810     CLE  MIA      85750          1080
811     COU  ORD      34780           315
812     ICT  ORD      70940           588
813     GSP  ORD      62590           577
814     TYS  ORD      76340           475
815     DTW  DEN     383260          1123
816     BUR  PDX      73300           817
817     FAT  PDX      27910           626
818     MFR  PDX      26590           222
819     OAK  PDX     204640           543
820     SAN  PDX     194840           933
821     SFO  PDX     351220           550
822     SMF  PDX     176540           479
823     LAX  PDX     399550           834
824     SEA  MCI     117360          1489
825     SFO  KOA     166800          2367
826     FAT  PHX      91700           493
827     DEN  PHX    1037230           602
828     DTW  PIT      76720           201
829     ORD  MKE     131220            67
830     IAH  LAS     522440          1222
831     PHX  RDM      36820           893
832     SJC  PSP      15920           390
833     SLC  BOI     141000           290
834     DTW  MSN      80480           311
835     DEN  RAP      94560           300
836     PHX  MEM      55320          1264
837     SEA  ONT     231730           956
838     SLC  HLN      37050           402
839     DEN  ATW      15950           883
840     DEN  CLT     377220          1337
841     DEN  RIC      81960          1482
842     SEA  RNO     113340           564
843     PHX  SMF     377240           647
844     SMF  SAN     555330           480
845     AUS  SAN     209110          1164
846     FAT  SAN      35570           314
847     MRY  SAN      19520           375
848     PDX  SAN     195180           933
849     SJC  SAN     538830           417
850     STS  SAN      34170           508
851     LAX  MRY      28650           266
852     LAX  PRC       2420           346
853     LAX  SBP      17730           156
854     PHX  LAS     750310           255
855     SFO  SBA      80160           262
856     DTW  STL     140360           440
857     PDX  SBP      17890           722
858     MSP  LAS     549330          1299
859     LAX  MIA     480820          2342
860     BOI  SEA     302120           399
861     FAT  SEA      69480           748
862     GEG  SEA     430270           224
863     SJC  SEA     455150           696
864     PSP  SFO     157190           421
865     DAL  SFO      35180          1476
866     PDX  SFO     354140           550
867     PHX  SFO     462190           651
868     SNA  SFO     276710           372
869     BOI  SFO      96800           522
870     DFW  SFO     417720          1464
871     GEG  SFO      47660           733
872     AUS  SJC     140790          1476
873     GEG  SJC      47720           742
874     LAX  SJC     405420           308
875     PDX  SJC     240540           569
876     SAN  SJC     552300           417
877     DEN  DTW     372830          1123
878     DFW  TUS     309820           813
879     SAN  KOA      55920          2556
880     LGB  SLC      89730           588
881     DEN  DRO      88740           251
882     DEN  MCO     609380          1546
883     SFO  BFL      15270           238
884     SFO  SBP      39530           190
885     SFO  HNL     424250          2398
886     BOI  SMF      79310           437
887     PDX  SMF     173420           479
888     SAN  SMF     554030           480
889     SEA  HNL     284980          2677
890     SEA  RDM     165400           228
891     SFO  SEA     625070           679
892     SFO  SNA     278200           372
893     ORD  BHM      41220           583
894     ORD  SBN      66290            84
895     PHX  DFW     599400           868
896     LAX  STS      34730           400
897     PDX  STS      23120           489
898     SAN  STS      34500           508
899     ORD  OMA     148840           416
900     DTW  OMA      46940           651
901     LAX  ANC      40080          2345
902     SEA  TUS     103220          1216
903     IAH  DCA     176230          1208
904     SFO  BUR     193800           326
905     PDX  ABQ      28950          1111
906     SEA  BIL      45240           664
907     SEA  ORD     631010          1721
908     PAE  BOI      23970           419
909     PUW  BOI      12620           224
910     SMF  BOI      78540           437
911     SEA  BZN      89000           543
912     SEA  PSC     155600           172
913     SEA  DTW     291110          1927
914     SEA  JFK     414300          2422
915     SEA  MSY      61320          2086
916     SEA  MSO      65000           389
917     SEA  FCA      59690           379
918     PAE  GEG      22460           222
919     PDX  JFK     129440          2454
920     PDX  SBA      19440           784
921     SEA  EWR     274000          2402
922     SFO  GEG      48040           733
923     SEA  MFR     135050           352
924     SEA  HLN      21360           491
925     SEA  IDA      23200           566
926     SFO  LAX     931340           337
927     LAX  MFR      32630           630
928     PDX  MFR      23090           222
929     SEA  OAK     290000           672
930     BOI  PAE      22230           419
931     GEG  PAE      22170           222
932     LAS  PAE      40530           894
933     SNA  PAE      26100          1008
934     GEG  PDX      74860           279
935     SJC  PDX     247070           569
936     SFO  PSP     149350           421
937     SEA  ELP      37430          1368
938     SEA  PUW      52560           250
939     LAX  RDM      37430           726
940     PAE  SAN      19170          1080
941     SEA  SBA      38850           908
942     BZN  SEA      89700           543
943     EUG  SEA     160710           234
944     FCA  SEA      61720           379
945     GTF  SEA      22810           512
946     IDA  SEA      24750           566
947     MFR  SEA     134370           352
948     MRY  SEA      19130           750
949     MSO  SEA      66030           389
950     OAK  SEA     291230           672
951     PDX  SEA     504200           129
952     PUW  SEA      51450           250
953     RDD  SEA      20330           479
954     RDM  SEA     168190           228
955     RNO  SEA     116000           564
956     SMF  SEA     423510           605
957     LAS  SFO     620980           414
958     BOI  SJC      66440           523
959     STS  SNA      24270           433
960     SEA  STS      49420           618
961     SEA  DEN     751560          1024
962     IAH  AUS     167500           140
963     ORD  BDL     192390           783
964     ORD  PHL     491250           678
965     DEN  FCA     104460           752
966     DEN  MSO      93550           679
967     IAD  ATL     272450           534
968     ORD  LWB       5630           489
969     ORD  ATW      96120           161
970     BOS  DEN     412590          1754
971     DEN  AUS     505270           775
972     DEN  OMA     300040           472
973     EWR  AUS     207700          1504
974     IAH  MEI      10820           422
975     IAH  SEA     220560          1874
976     IAH  SNA     148790          1346
977     IAH  LGA     373400          1416
978     DEN  SNA     506420           846
979     IAD  AUS      95540          1297
980     IAD  BDL     115020           326
981     IAD  LAX     332730          2288
982     IAD  RDU      80640           224
983     IAD  SAV      34790           515
984     IAD  GSO       6780           239
985     CLL  BHM        190           600
986     DEN  CVG     221430          1069
987     DEN  ATL     792990          1199
988     ORD  BOI      79380          1437
989     DEN  JAC      89480           406
990     DEN  RDM      59300           898
991     EWR  BOS     314030           200
992     EWR  DEN     374430          1605
993     EWR  MCO     923020           937
994     EWR  MSY     165990          1167
995     EWR  TPA     363300           997
996     IAD  HHH      12000           498
997     IAH  BOS     195000          1597
998     LAX  LIH     216840          2615
999     ORD  DSM     131120           299
1000    SFO  LIH      92730          2447
1001    EWR  BUF      72080           282
1002    IAD  EWR     105790           212
1003    DEN  HNL     102290          3365
1004    ORD  HNL      95010          4243
1005    ORD  OGG      61410          4184
1006    SFO  LAS     616990           414
1007    DEN  MSY     277290          1062
1008    DEN  PIT     184680          1290
1009    ORD  MBS      29630           222
1010    ORD  PWM      84570           900
1011    DEN  LNK      43240           423
1012    EWR  CLE     134580           404
1013    FLL  CLE     136010          1062
1014    IAD  RSW      73820           891
1015    DEN  RNO     238960           804
1016    ORD  COS      57370           911
1017    ORD  SLN       5350           559
1018    BOS  EWR     297570           200
1019    EWR  MIA     548470          1085
1020    IAD  BOS     150390           413
1021    IAH  VPS      10210           528
1022    IAH  DEN     634840           862
1023    LAX  SBA      19690            89
1024    LAX  EWR     815750          2454
1025    MCI  DEN     400860           533
1026    ORD  IAD     162990           588
1027    ORD  ORF     109610           717
1028    ORD  DLH      30980           397
1029    PDX  DEN     474230           991
1030    PHX  DEN    1056610           602
1031    SAT  DEN     348530           794
1032    SMF  DEN     443410           909
1033    EWR  DFW     386740          1372
1034    ORD  JLN       6270           484
1035    SFO  IAH     350880          1635
1036    CLE  DEN     273400          1201
1037    CLE  RSW     161370          1025
1038    CLE  EWR     133080           404
1039    DEN  COS     277410            73
1040    DEN  SMF     453110           909
1041    IAD  BNA      68490           542
1042    IAH  COS      35020           809
1043    IAH  OKC     108730           395
1044    JAX  EWR     127780           820
1045    MCO  FLL     136660           177
1046    MIA  EWR     548920          1085
1047    ORD  SLC     275010          1250
1048    ORD  JAC      54440          1162
1049    PBI  EWR     395660          1023
1050    PHX  EWR     352900          2133
1051    RDU  EWR     195890           416
1052    RSW  EWR     297330          1068
1053    SAN  EWR     218790          2425
1054    SAV  EWR      64950           708
1055    SFO  EWR     728880          2565
1056    SJU  EWR     333830          1608
1057    SLC  EWR     103240          1969
1058    SRQ  EWR     101350          1034
1059    TPA  EWR     366080           997
1060    DEN  FSD     105460           483
1061    DEN  SFO     697100           967
1062    EWR  PQI      13770           515
1063    IAD  FLL     102090           901
1064    IAH  GRK       5640           166
1065    SFO  FLL     120150          2584
1066    DEN  TPA     377210          1506
1067    DEN  SAT     325580           794
1068    ORD  GSP      63480           577
1069    EWR  PIT      99010           319
1070    EWR  SDF      32880           642
1071    EWR  SRQ     101900          1034
1072    IAH  ECP      30990           572
1073    IAH  MSY     301870           305
1074    IAH  SDF      40000           788
1075    SFO  SMF      38490            86
1076    SFO  BWI      40520          2457
1077    SFO  MCO     160410          2446
1078    BNA  IAD      72320           542
1079    BOS  IAD     145230           413
1080    FLL  IAD     100400           901
1081    JAX  IAD      71760           630
1082    LAX  IAD     336730          2288
1083    MCO  IAD     196710           758
1084    PBI  IAD      25090           859
1085    RDU  IAD      78870           224
1086    SFO  PSC      14770           620
1087    TPA  IAD     105790           811
1088    DEN  ABQ     236050           349
1089    JAX  IAH      80410           817
1090    LAX  IAH     584590          1379
1091    LGA  IAH     359890          1416
1092    MSY  IAH     300970           305
1093    ORD  PAH      11570           342
1094    PHX  IAH     252910          1009
1095    RSW  IAH      75740           861
1096    TPA  IAH     176230           787
1097    DEN  CHS      78300          1449
1098    DEN  OKC     225600           495
1099    DEN  DCA     213650          1476
1100    EWR  PWM      74340           284
1101    IAD  ROC      40680           288
1102    IAD  JAX      73390           630
1103    IAH  SAT     198680           191
1104    SFO  JFK     855410          2586
1105    DEN  BWI     349370          1491
1106    DEN  CMH     194210          1154
1107    EWR  RIC      56630           277
1108    EWR  LAS     393420          2227
1109    IAD  BGR       5520           601
1110    IAD  MHT       4410           418
1111    IAH  BNA     218390           657
1112    IAH  MKE      37670           984
1113    IAH  CLE      89970          1091
1114    IAH  IND      62050           844
1115    IAH  MCO     493060           854
1116    IAH  TPA     175930           787
1117    ORD  CMH     170850           296
1118    ORD  CVG     144680           264
1119    DEN  MSN     118550           826
1120    EWR  CVG      86340           569
1121    IAH  DTW     214480          1075
1122    IAH  CVG      57820           871
1123    IAH  RSW      74990           861
1124    LAS  LAX    1039680           236
1125    MCO  LAX     455390          2218
1126    ORD  DTW     271920           235
1127    DEN  SJC     304810           948
1128    DEN  PDX     476960           991
1129    IAD  DEN     385420          1452
1130    ORD  SMF     143750          1781
1131    DEN  RDU     220540          1436
1132    LAX  BWI     178190          2329
1133    DEN  OGG      97550          3302
1134    EWR  RSW     290150          1068
1135    IAD  ORF      67470           157
1136    IAH  PHX     246550          1009
1137    IAH  SAN     202920          1303
1138    ORD  FNT      63100           223
1139    IAH  PBI      17430           956
1140    IAH  LFT      58870           201
1141    DEN  IAD     397950          1452
1142    DEN  BHM      89240          1083
1143    DEN  BIL      95860           455
1144    DEN  KOA      52450          3329
1145    IAD  SYR      54540           296
1146    IAH  SLC     181700          1195
1147    DEN  STL     395270           770
1148    DEN  BDL      86860          1671
1149    DEN  IND     275430           977
1150    DEN  ORD     916180           888
1151    BWI  ORD     277710           621
1152    CLE  ORD     274400           315
1153    DCA  ORD     571520           612
1154    DEN  PSP     146010           776
1155    EWR  ORD     606000           719
1156    FLL  ORD     405990          1182
1157    GRR  DEN     143870          1015
1158    IAD  ORD     175150           588
1159    IAH  ORD     529540           925
1160    PIT  ORD     208570           413
1161    RIC  ORD     113760           642
1162    ROC  ORD     140830           528
1163    SAN  ORD     351540          1723
1164    DEN  LIH      51940          3414
1165    ORD  MEM      88050           491
1166    EWR  CMH      79240           463
1167    DEN  CID     101470           692
1168    EWR  PDX     108340          2434
1169    SFO  IAD     335090          2419
1170    SFO  PHX     446950           651
1171    IAD  BUF      45740           283
1172    ORD  CHA      28990           500
1173    ORD  BZN      83800          1186
1174    DEN  SDF      98220          1024
1175    DEN  BNA     381320          1014
1176    ORD  PIA      53630           130
1177    SFO  MFR      55740           329
1178    EWR  SAT      62550          1569
1179    IAH  DFW     458750           224
1180    IAH  PSP      17580          1269
1181    DEN  MLI      31000           752
1182    DEN  DFW     712270           641
1183    IAD  ITH      10700           250
1184    ORD  BTV      83670           763
1185    ORD  CID     101750           196
1186    ORD  DAY      95740           240
1187    AUS  SFO     218470          1504
1188    DCA  EWR     107850           199
1189    EWR  PVD      49500           160
1190    FLL  SFO     119810          2584
1191    IAD  PWM      42160           493
1192    IAD  PHL      23160           135
1193    IAH  STL      59100           667
1194    OGG  SFO     256520          2338
1195    ORD  PVD      71440           849
1196    ORD  ROC     140970           528
1197    ORD  MLI      60930           139
1198    EWR  DCA     111770           199
1199    IAH  BDL      27180          1507
1200    IAD  MIA      52840           921
1201    CLE  TPA     168980           927
1202    IAD  CVG      39870           388
1203    IAH  ONT      32730          1334
1204    IAH  TUS      49160           936
1205    DAL  ECP      73700           674
1206    DAL  ABQ     162310           580
1207    LAS  LIH      32780          2818
1208    AUS  ABQ      67180           619
1209    LAS  ABQ     145850           486
1210    PHX  ABQ     247770           328
1211    BWI  ALB     174650           289
1212    BWI  MCO     651950           787
1213    BWI  PBI     120770           883
1214    BWI  RSW     154540           919
1215    MCO  RSW      40990           133
1216    MDW  SMF      56540          1790
1217    MDW  ALB      94850           717
1218    BWI  SMF       3010          2395
1219    MCO  ALB     120380          1073
1220    LAS  AMA      37600           758
1221    DAL  AMA     106030           323
1222    BWI  ATL     633670           577
1223    DAL  ATL     338830           721
1224    DAL  ELP     166980           562
1225    DAL  LAS     297050          1067
1226    DAL  LAX     205070          1246
1227    DAL  PHX     348590           879
1228    HOU  ATL     321530           696
1229    LGA  ATL     898100           762
1230    MCO  ATL    1137640           404
1231    MDW  ATL     353430           591
1232    MKE  ATL     282690           669
1233    PHX  LGB     190070           355
1234    PHX  OAK     266980           646
1235    PHX  SLC     528340           507
1236    STL  ATL     339570           484
1237    AUS  ATL     477050           813
1238    BNA  ATL     457750           214
1239    CLE  ATL     366130           554
1240    ECP  ATL     261440           240
1241    FLL  ATL    1015960           581
1242    HOU  TUL      63590           453
1243    IND  ATL     394950           432
1244    JAN  ATL     223610           341
1245    LAS  OGG      57120          2695
1246    LIT  ATL     219340           453
1247    MCI  ATL     341710           692
1248    MEM  ATL     378710           332
1249    MYR  ATL     147200           317
1250    PHL  ATL     635510           666
1251    PHX  HNL     172070          2917
1252    PIT  ATL     313180           526
1253    RIC  ATL     419640           481
1254    RSW  ATL     497710           515
1255    TPA  ATL     850170           406
1256    BNA  BOS     214300           942
1257    DAL  LGA     175140          1381
1258    DAL  OMA      39220           586
1259    DAL  SAV      42990           914
1260    ELP  AUS     157020           528
1261    HOU  MIA     127600           955
1262    HOU  OMA      38870           804
1263    LGB  OAK     165870           353
1264    MDW  SEA      70710          1733
1265    PHX  PSP     146650           261
1266    PHX  SAN     628240           304
1267    PHX  AUS     339670           872
1268    SAN  AUS     219480          1164
1269    BUR  AUS      49660          1241
1270    BWI  AUS     133950          1342
1271    DAL  AUS     220890           189
1272    DCA  AUS      45540          1315
1273    HOU  AUS     141730           148
1274    HRL  AUS      56590           273
1275    LAX  AUS     522100          1242
1276    LGB  AUS      67040          1226
1277    MCI  AUS      95550           650
1278    MDW  AUS     169270           972
1279    MSP  AUS     133670          1042
1280    MSY  AUS     157080           444
1281    OAK  AUS      56480          1497
1282    RDU  AUS     101110          1162
1283    SNA  AUS      60090          1209
1284    STL  AUS     130530           721
1285    TPA  PVD      71510          1136
1286    MDW  LAS     358740          1521
1287    MDW  ONT      47920          1706
1288    BWI  BDL     171510           283
1289    MCO  BDL     307940          1050
1290    BWI  BHM      40710           682
1291    DAL  BHM      88080           587
1292    HOU  BHM      50630           570
1293    MCO  BHM      57340           479
1294    MDW  BHM      52330           570
1295    TPA  BHM      38880           459
1296    LAS  BLI      34700           954
1297    AUS  BNA     225690           756
1298    BDL  BNA      44140           852
1299    DAL  BNA     231670           623
1300    DEN  MTJ     114710           196
1301    HOU  BNA     142000           670
1302    ISP  BNA      32330           803
1303    MCI  BNA     122920           491
1304    MCO  BNA     315080           616
1305    ORF  BNA      43320           585
1306    PHX  RNO     219780           601
1307    RSW  BNA      47340           722
1308    SJC  LGB      94660           324
1309    SRQ  BNA      76740           648
1310    TPA  BNA     190520           612
1311    BOS  BNA     214170           942
1312    BWI  BNA     174830           587
1313    CHS  BNA      74200           439
1314    CLE  BNA      88490           448
1315    CLT  BNA     311980           328
1316    CMH  BNA      70780           337
1317    DTW  BNA     217430           456
1318    ECP  BNA     108760           401
1319    JAX  BNA      89360           483
1320    MDW  BNA     205990           395
1321    MIA  BNA     196750           806
1322    MKE  BNA      83720           475
1323    MSY  BNA     117380           471
1324    MYR  BNA      59650           471
1325    OAK  HNL     127750          2409
1326    OAK  OGG      90980          2349
1327    PHL  BNA     220700           675
1328    PIT  BNA      80910           462
1329    PNS  BNA      83940           391
1330    RDU  BNA     141990           442
1331    SAV  BNA      46260           417
1332    VPS  BNA      79350           389
1333    DEN  BUF      66890          1359
1334    DEN  MIA     299070          1709
1335    LAS  BOI     102090           519
1336    OAK  BOI      85530           512
1337    PHX  BOI     160570           735
1338    SAN  BOI      56320           749
1339    LAS  RNO     348130           345
1340    BNA  DAL     232490           623
1341    BNA  HOU     146480           670
1342    BWI  CHS     122120           472
1343    BWI  GSP      38780           426
1344    BWI  IND      88920           516
1345    BWI  JAX     137550           663
1346    BWI  PHX     129510          1999
1347    BWI  SAV      80260           549
1348    MDW  DEN     367810           895
1349    MDW  LAX     174020          1750
1350    MDW  MSP     268720           349
1351    MDW  PHX     367880          1444
1352    MDW  SJC      60310          1838
1353    MDW  BOS     143840           861
1354    BWI  SRQ     130270           880
1355    FLL  BUF      65580          1166
1356    MCO  BUF     204450          1011
1357    MDW  BUF     112790           468
1358    DAL  BUR      25170          1243
1359    DAL  MSY     252900           436
1360    DAL  RDU      45370          1052
1361    DAL  TPA     145240           917
1362    LAS  OKC      87800           986
1363    SMF  BUR     251690           358
1364    AUS  BUR      51190          1241
1365    DEN  BUR     193030           850
1366    HOU  BUR      19420          1389
1367    OAK  BUR     301650           325
1368    SJC  BUR     236870           296
1369    BHM  BWI      37800           682
1370    BNA  BWI     166400           587
1371    BNA  SEA     146690          1978
1372    CVG  BWI      80020           430
1373    GRR  BWI      46640           528
1374    IND  BWI      94220           516
1375    MDW  BWI     180460           611
1376    SAV  BWI      77980           549
1377    VPS  BWI      36650           819
1378    BDL  BWI     172810           283
1379    BUF  BWI     164180           281
1380    CHS  BWI     122420           472
1381    CLE  BWI      89210           314
1382    FLL  SJU     345700          1046
1383    GSP  BWI      37960           426
1384    HOU  BWI     151910          1246
1385    ISP  BWI     130550           220
1386    LAS  KOA      29160          2717
1387    LGA  BWI      68520           185
1388    MDW  IAD      81120           577
1389    MIA  BWI     279100           946
1390    MYR  BWI     138330           399
1391    ORF  BWI     163750           159
1392    PHX  KOA      72100          2860
1393    PIT  BWI     101720           210
1394    PVD  BWI     176670           327
1395    PWM  BWI     126330           452
1396    RDU  BWI     130900           255
1397    ROC  BWI     122000           277
1398    RSW  BWI     156870           919
1399    SDF  BWI      76860           495
1400    DEN  RSW     152510          1607
1401    LAS  BZN      65790           701
1402    BNA  MCI     130620           491
1403    BNA  MKE      88800           475
1404    BNA  CHS      75940           439
1405    DAL  COS     104570           602
1406    MDW  CHS      61160           745
1407    STL  LAX     123180          1592
1408    BNA  RSW      49970           722
1409    BNA  CLE      87460           448
1410    BWI  CLE      91820           314
1411    LAS  HNL      88370          2762
1412    MDW  CLE     127550           307
1413    STL  CLE      50290           487
1414    BNA  CMH      78640           337
1415    MDW  CMH     133580           283
1416    MDW  TUS      28790          1440
1417    SRQ  CMH      23700           869
1418    STL  PHX     245520          1262
1419    BNA  ECP     104990           401
1420    BWI  CMH      95430           337
1421    DCA  CMH     111880           323
1422    LAS  CMH     131180          1771
1423    PHX  CMH     146330          1670
1424    STL  CMH      57270           409
1425    TPA  CMH     122650           829
1426    LAS  SBA      85620           289
1427    LAS  COS     127670           604
1428    PHX  COS     131770           551
1429    HOU  CRP      87150           187
1430    HOU  RSW      10380           853
1431    DEN  GEG     204250           836
1432    MDW  OAK      92230          1844
1433    BWI  CVG      79500           430
1434    MCO  CVG     230230           757
1435    MDW  CVG      97450           249
1436    MDW  TPA     224940           997
1437    TPA  CVG     104660           773
1438    ABQ  DAL     166250           580
1439    AUS  LGB      66330          1226
1440    BHM  DAL      86230           587
1441    DEN  OAK     255070           957
1442    DEN  DAL     373420           651
1443    ELP  DAL     167630           562
1444    HOU  DAL     330610           239
1445    LGA  DAL     169540          1381
1446    LGB  DAL      44190          1232
1447    MCO  DAL     268980           973
1448    OAK  DAL      93190          1468
1449    OMA  DAL      40340           586
1450    SJC  DAL      80340          1450
1451    SLC  DAL      79250           999
1452    SNA  DAL      41770          1216
1453    STL  DAL     185240           546
1454    TPA  DAL     146920           917
1455    AMA  DAL     110770           323
1456    AUS  DAL     224520           189
1457    CMH  DAL      48680           919
1458    COS  DAL     112490           602
1459    DCA  DAL     170500          1184
1460    ECP  DAL      75760           674
1461    FLL  DAL      94200          1108
1462    IAH  DAL     112030           216
1463    LBB  DAL     163100           293
1464    LIT  DAL      90640           296
1465    MAF  DAL     118770           319
1466    MCI  DAL     193630           461
1467    MDW  DAL     283100           793
1468    MSP  DAL       9090           853
1469    MSY  DAL     246160           436
1470    ORD  DAL     142660           798
1471    PHX  DAL     350330           879
1472    PNS  DAL      49190           592
1473    SAT  DAL     277840           247
1474    TUL  DAL     106360           238
1475    VPS  DAL      44500           630
1476    BNA  OAK      27650          1959
1477    BNA  SRQ      71310           648
1478    BNA  DCA     231320           562
1479    FLL  DCA     244730           899
1480    MDW  DCA     180450           601
1481    STL  DEN     402300           770
1482    STL  DCA     181260           719
1483    CMH  DCA     110650           323
1484    DAL  DCA     174580          1184
1485    MCO  DCA     496070           759
1486    MKE  DCA      56390           634
1487    OMA  DCA      42950          1012
1488    RSW  DCA     106820           892
1489    STL  BWI     110120           738
1490    TPA  DCA     238860           814
1491    BHM  DEN      85970          1083
1492    BNA  LGA     370250           764
1493    BUR  DEN     191920           850
1494    BWI  ISP     132790           220
1495    CVG  DEN     214950          1069
1496    DAL  SRQ      20390           934
1497    DAL  DEN     360880           651
1498    ELP  DEN     135400           563
1499    GEG  DEN     210010           836
1500    HOU  SRQ      34540           789
1501    IND  DEN     270060           977
1502    LAS  DEN    1031750           628
1503    LGA  DEN     577590          1620
1504    MDW  MCO     353770           990
1505    MDW  PHL     167820           668
1506    MKE  DEN     228930           896
1507    SBA  DEN     130540           916
1508    SNA  DEN     488960           846
1509    STL  FLL     109620          1057
1510    TUL  DEN     166230           541
1511    TUS  DEN     203990           639
1512    ABQ  DEN     241760           349
1513    BUF  DEN      70050          1359
1514    CHS  DEN      77220          1449
1515    HDN  DEN     115390           141
1516    HOU  DEN     279930           883
1517    ICT  DEN     137650           420
1518    LAS  SMF     537440           397
1519    LGB  DEN     120810           854
1520    LIT  DEN      93500           771
1521    MIA  DEN     296910          1709
1522    MSY  DEN     275790          1062
1523    OAK  DEN     250420           957
1524    OKC  DEN     228640           495
1525    RNO  DEN     252020           804
1526    SAN  DEN     667220           853
1527    TPA  DEN     387310          1506
1528    STL  TPA     121560           869
1529    BNA  IAH     207440           657
1530    MDW  HOU     215170           937
1531    MDW  SAN     154680          1728
1532    BNA  DTW     219550           456
1533    BWI  DTW     208200           409
1534    STL  DTW     132460           440
1535    HOU  ABQ      77710           759
1536    STL  PHL     112780           814
1537    AUS  ELP     143790           528
1538    DEN  ELP     129650           563
1539    HOU  ELP     104140           677
1540    LAS  ELP     103190           583
1541    LAX  ELP      81870           715
1542    PHX  SJC     305790           621
1543    AUS  TPA     135110           928
1544    HOU  JAX      36860           816
1545    HOU  TPA     124500           781
1546    PHX  ELP     217990           347
1547    SAT  ELP      60410           496
1548    OAK  SAN     342510           446
1549    LAS  EUG      45780           700
1550    OAK  EUG      76720           445
1551    LAS  FAT     120360           259
1552    BWI  DEN     346890          1491
1553    HOU  LAS     223600          1235
1554    HOU  SJC      47990          1621
1555    HOU  FLL     105270           957
1556    MCO  AUS     314670           994
1557    MSY  FLL     154190           674
1558    RDU  FLL      94610           680
1559    BWI  PVD     176540           327
1560    DAL  FLL      98170          1108
1561    DCA  FLL     228950           899
1562    MDW  FLL     163510          1167
1563    PHX  FLL      51320          1972
1564    PHX  SNA     487090           338
1565    PIT  FLL     111660           994
1566    SAT  FLL       6300          1145
1567    TPA  FLL     102890           197
1568    DEN  ORF      74180          1553
1569    DEN  TUL     169430           541
1570    LAS  GEG     103610           806
1571    MDW  MHT      61690           838
1572    PHX  GEG     105170          1020
1573    SMF  GEG      55540           649
1574    LAS  PHX     725740           255
1575    OAK  GEG      76630           723
1576    BWI  GRR      42560           528
1577    HOU  GSP      20550           845
1578    LIH  SJC      57680          2466
1579    OAK  LAX     411480           337
1580    OAK  SLC     233110           588
1581    PHX  BNA     216210          1449
1582    ATL  HOU     322810           696
1583    BNA  RDU     149660           442
1584    BWI  LGA      70880           185
1585    DAL  HOU     339930           239
1586    DEN  HOU     257970           883
1587    ELP  HOU     106340           677
1588    GSP  HOU      19440           845
1589    MIA  HOU     123770           955
1590    MSP  HOU      10220          1057
1591    MSY  HOU     198520           302
1592    PHX  HOU     206500          1020
1593    STL  HOU     127330           687
1594    STL  LGA     259480           888
1595    AUS  HOU     143500           148
1596    BUR  HOU      19930          1389
1597    ECP  HOU      59190           571
1598    FLL  HOU     110250           957
1599    HRL  HOU     143220           277
1600    LAS  HOU     228800          1235
1601    LAX  HOU     146730          1390
1602    LBB  HOU       4220           474
1603    LGA  HOU     123490          1428
1604    LGB  HOU      57140          1374
1605    MAF  HOU     102980           441
1606    MCO  HOU     240350           849
1607    MEM  HOU      41440           484
1608    OAK  HOU      82400          1642
1609    OKC  HOU     114060           419
1610    ONT  HOU      11410          1345
1611    PHL  HOU       3610          1336
1612    PNS  HOU      41600           488
1613    RSW  HOU      15200           853
1614    SAT  HOU     160720           192
1615    SAT  ISP         90          1624
1616    SAV  HOU      36130           853
1617    SJC  HOU      50090          1621
1618    TPA  HOU     128670           781
1619    TUL  HOU      67330           453
1620    HOU  JAN      75840           359
1621    HOU  HRL     135850           277
1622    MDW  COS      51760           917
1623    MDW  SLC      86710          1259
1624    DAL  OAK      91770          1468
1625    DAL  SMF      71810          1442
1626    MDW  GRR     109280           137
1627    DAL  IAH     114920           216
1628    DAL  MCO     253700           973
1629    MDW  IAH      80380           917
1630    DEN  ICT     142400           420
1631    STL  ICT      43110           392
1632    BWI  PWM     126240           452
1633    DAL  IND      63720           755
1634    HOU  IND      37110           861
1635    MCO  IND     242930           829
1636    RSW  IND     123690           945
1637    SRQ  IND      25520           876
1638    BNA  ISP      33770           803
1639    BWI  MIA     279780           946
1640    BWI  VPS      35900           819
1641    BWI  MHT     164550           377
1642    STL  JAX      42910           753
1643    BNA  JAX      90080           483
1644    MDW  JAX      47400           849
1645    PHX  ATL     512350          1587
1646    PHX  BWI     123070          1999
1647    PHX  OKC     139040           833
1648    ABQ  LAS     136810           486
1649    AMA  LAS      35570           758
1650    AUS  IND      80250           919
1651    AUS  MSY     163970           444
1652    DAL  PIT      14890          1060
1653    GEG  LAS     104090           806
1654    MDW  PIT     137430           402
1655    MKE  TPA      84380          1075
1656    OAK  LAS     607610           407
1657    PDX  LAS     441990           763
1658    SAT  ATL     380670           874
1659    SLC  MDW      92290          1259
1660    SMF  LAS     540530           397
1661    SNA  LAS     517190           226
1662    STL  PIT      46310           554
1663    BOI  LAS      97590           519
1664    BUR  LAS     417860           223
1665    BWI  LAS     226220          2106
1666    BZN  LAS      66190           701
1667    COS  LAS     125940           604
1668    EUG  LAS      47070           700
1669    LGB  LAS     187670           231
1670    MKE  LAS     174790          1524
1671    ONT  LAS     236440           197
1672    PSP  LAS      40530           173
1673    RNO  LAS     340660           345
1674    SAN  LAS     686560           258
1675    SBA  LAS      85080           289
1676    SJC  LAS     332880           386
1677    TUL  LAS      45160          1076
1678    TUS  LAS     105080           365
1679    ABQ  LAX     154950           677
1680    ELP  LAX      93150           715
1681    HNL  LIH     160190           102
1682    MDW  MSY     124290           825
1683    MSY  SAT      36080           494
1684    MSY  LAX     176780          1670
1685    PHX  TUL      69200           935
1686    PHX  MCO     264530          1849
1687    AUS  FLL     142410          1105
1688    AUS  LAX     527950          1242
1689    HOU  LAX     144390          1390
1690    RNO  LAX     213720           391
1691    SMF  LAX     348030           373
1692    SMF  ONT     206530           390
1693    AUS  RDU      95450          1162
1694    DAL  LBB     161190           293
1695    BWI  DAL     193120          1209
1696    BWI  HOU     139360          1246
1697    HOU  LGA     127500          1428
1698    STL  MSY      70180           604
1699    STL  OKC      53220           462
1700    MDW  LGA     211690           725
1701    MSY  LGA     121340          1183
1702    DEN  LGB     120530           854
1703    LAS  MDW     382590          1521
1704    OAK  LGB     166060           353
1705    SMF  SNA     271480           404
1706    STL  LGB      34780          1581
1707    HNL  LGB      52390          2569
1708    HOU  LGB      58650          1374
1709    HOU  ONT      10780          1345
1710    LAS  LGB     195860           231
1711    MDW  LGB      40910          1741
1712    OGG  LGB      33030          2498
1713    RNO  LGB      68950           402
1714    SMF  LGB     150830           387
1715    DAL  LIT      95650           296
1716    DAL  MAF     124560           319
1717    HOU  MAF      89320           441
1718    AUS  MCI      96870           650
1719    DAL  MCI     191990           461
1720    MDW  SRQ      65430          1035
1721    MDW  MCI     207870           405
1722    BWI  MCI      75940           967
1723    FLL  MCI      53560          1242
1724    LGA  MCI     150210          1107
1725    MCO  MCI     196840          1072
1726    MSY  MCI      30960           689
1727    RSW  MCI      33160          1155
1728    BWI  BUF     151300           281
1729    DAL  BZN       4600          1172
1730    DAL  ONT      38400          1200
1731    DAL  SEA      53890          1670
1732    DEN  FAT     116920           844
1733    HOU  PHX     210810          1020
1734    MCI  MCO     196490          1072
1735    STL  BOS     136380          1047
1736    STL  DSM      51600           259
1737    STL  SAN      52110          1557
1738    ALB  MCO     121660          1073
1739    BDL  MCO     306350          1050
1740    BHM  MCO      55280           479
1741    BUF  MCO     200620          1011
1742    CVG  MCO     234050           757
1743    FLL  MCO     136870           177
1744    IND  MCO     249430           829
1745    MEM  MCO      77650           684
1746    MSY  MCO     244650           551
1747    ORF  MCO      63310           655
1748    PHX  LIH      71970          2979
1749    SDF  MCO     103710           719
1750    STL  MCO     304110           882
1751    AUS  MDW     172550           972
1752    BHM  MDW      53230           570
1753    BNA  MDW     207930           395
1754    BWI  MDW     198130           611
1755    CHS  MDW      63160           745
1756    CMH  MDW     142900           283
1757    DAL  MDW     278260           793
1758    DCA  MDW     181400           601
1759    DEN  MDW     354270           895
1760    FLL  MDW     157960          1167
1761    GRR  MDW     106030           137
1762    IAD  MDW      86440           577
1763    JAX  MDW      42910           849
1764    LGA  MDW     212540           725
1765    MCI  MDW     213280           405
1766    MCO  MDW     351830           990
1767    MSP  MDW     260760           349
1768    MSY  MDW     123990           825
1769    OMA  MDW     149810           423
1770    ORF  MDW      59750           704
1771    PHX  MDW     342880          1444
1772    PVD  MDW      67610           842
1773    RIC  MDW      50900           629
1774    SAN  MDW     153910          1728
1775    SDF  MDW     106060           271
1776    SEA  MDW      73460          1733
1777    SFO  MDW      21760          1855
1778    TPA  MDW     227690           997
1779    BOS  MDW     145560           861
1780    BUF  MDW     107640           468
1781    CLE  MDW     130140           307
1782    CLE  STL      53060           487
1783    CVG  MDW      91110           249
1784    HOU  MDW     218500           937
1785    IAH  MDW      80310           917
1786    LAX  MDW     173980          1750
1787    MEM  MDW      86300           480
1788    MIA  MDW     120500          1182
1789    MYR  MDW      57200           738
1790    OAK  MDW      99150          1844
1791    OKC  MDW      48880           691
1792    PHL  MDW     169670           668
1793    PIT  MDW     146640           402
1794    RDU  MDW     118840           632
1795    RSW  MDW     167720          1105
1796    SMF  MDW      51720          1790
1797    SNA  MDW      33110          1731
1798    SRQ  MDW      72520          1035
1799    STL  MDW     177160           251
1800    TUS  MDW      30860          1440
1801    MCO  MEM      78050           684
1802    MDW  MEM      76030           480
1803    DAL  MEM      43480           423
1804    DEN  MEM     110130           872
1805    HOU  MEM      48840           484
1806    BWI  SAT      79340          1407
1807    STL  MSP     151230           448
1808    MDW  MIA     119820          1182
1809    MSY  MIA     154180           675
1810    STL  MCI      81380           237
1811    BWI  MKE      73550           641
1812    DCA  MKE      59300           634
1813    PHX  MKE     176210          1460
1814    RSW  MKE      81240          1183
1815    STL  MKE      61270           317
1816    HOU  MSP       7910          1057
1817    STL  RSW     103150           979
1818    HOU  SAN      91040          1313
1819    HOU  MSY     181310           302
1820    MCI  MSY      34320           689
1821    BNA  MSY     120260           471
1822    BWI  MSY     129260           998
1823    FLL  MSY     154720           674
1824    LAX  MSY     186010          1670
1825    LGA  MSY     121090          1183
1826    MCO  MSY     241480           551
1827    MCO  COS       6630          1520
1828    MIA  MSY     153990           675
1829    SAT  MSY      37830           494
1830    TPA  MSY     121360           488
1831    DAL  TUL     114160           238
1832    BWI  MYR     138100           399
1833    MDW  MYR      61870           738
1834    AUS  OAK      52510          1497
1835    BLI  OAK      51420           764
1836    BUR  OAK     296520           325
1837    HNL  OAK     128300          2409
1838    LIH  SAN      50420          2676
1839    ONT  OAK     169570           362
1840    PHX  IND     193560          1488
1841    PSP  OAK      65610           418
1842    SAN  OAK     356100           446
1843    BOI  OAK      79670           512
1844    BUR  SJC     230000           296
1845    EUG  OAK      75280           445
1846    GEG  OAK      67490           723
1847    KOA  OAK      51010          2378
1848    SBA  OAK      30370           263
1849    SNA  OAK     306740           371
1850    HNL  SMF      56790          2462
1851    AUS  OKC      48080           358
1852    HOU  OKC     117040           419
1853    MDW  OKC      50370           691
1854    PHX  OGG     137230          2845
1855    STL  SRQ      32170           903
1856    LAS  OMA     120200          1099
1857    MDW  OMA     154350           423
1858    STL  OMA      66860           342
1859    HOU  SAT     160370           192
1860    OAK  ONT     158690           362
1861    SJC  ONT     136880           333
1862    BNA  SAV      47440           417
1863    PHX  ORD     775390          1440
1864    BNA  ORD     338220           409
1865    DAL  ORD     142510           798
1866    BNA  ORF      46030           585
1867    MDW  ORF      64250           704
1868    BWI  ORF     159000           159
1869    MCO  ORF      60190           655
1870    MDW  BDL      82770           777
1871    PHX  OMA     176020          1037
1872    PHX  PDX     378980          1009
1873    PHX  TPA     117800          1788
1874    SJC  LIH      66700          2466
1875    MDW  SFO      18040          1855
1876    DEN  PHL     331900          1558
1877    AUS  MIA     213460          1103
1878    GEG  PHX     102430          1020
1879    HOU  MKE      13530          1004
1880    OAK  PHX     251160           646
1881    OKC  ATL     206540           761
1882    PDX  PHX     374630          1009
1883    RNO  PHX     214500           601
1884    SAT  PHX     281650           843
1885    SJC  PHX     301210           621
1886    SLC  PHX     523740           507
1887    SMF  PHX     368000           647
1888    ABQ  PHX     247990           328
1889    AUS  PHX     330280           872
1890    BUR  PHX     319390           369
1891    CMH  PHX     141590          1670
1892    COS  PHX     133720           551
1893    ELP  PHX     227050           347
1894    FLL  PHX      51020          1972
1895    LGB  PHX     189690           355
1896    LIH  HNL     166520           102
1897    MKE  PHX     174060          1460
1898    OMA  PHX     178800          1037
1899    ONT  PHX     273010           325
1900    PSP  PHX     151880           261
1901    SNA  PHX     468580           338
1902    TPA  PHX     118280          1788
1903    PHX  PIT      81680          1814
1904    RSW  PIT      74870           966
1905    SRQ  PIT      21660           912
1906    BNA  PIT      83390           462
1907    BWI  PIT     103120           210
1908    FLL  PIT     113040           994
1909    BNA  PNS      81360           391
1910    DAL  PNS      46250           592
1911    HOU  PNS      42450           488
1912    SMF  PSP      47270           439
1913    LAS  PSP      43000           173
1914    MDW  RDU     120530           632
1915    STL  OAK      16640          1725
1916    BWI  RDU     125660           255
1917    BWI  SJU     172010          1565
1918    MCO  SAT      93960          1041
1919    TPA  RDU     146790           587
1920    MDW  RIC      51720           629
1921    BUR  RNO      34690           374
1922    LGB  RNO      68760           402
1923    SAN  RNO      80120           488
1924    SJC  RNO      29010           188
1925    MCO  ROC      45190          1033
1926    TPA  ROC      14020          1079
1927    MDW  DTW     161610           228
1928    MKE  RSW      83750          1183
1929    DCA  RSW      96740           892
1930    MCI  RSW      32100          1155
1931    MDW  RSW     163070          1105
1932    SDF  RSW      19550           835
1933    BOI  SAN      57980           749
1934    DAL  VPS      45430           630
1935    HOU  CHS      27440           928
1936    SJC  GEG      47330           742
1937    HNL  SAN     150340          2614
1938    OGG  SAN      71240          2541
1939    TUS  SAN      42610           368
1940    DAL  MSP      12450           853
1941    HOU  TUS      36270           945
1942    BNA  SAT      71690           822
1943    DAL  SAT     292030           247
1944    ELP  SAT      66370           496
1945    LAX  SAT     157880          1211
1946    LAS  DAL     300690          1067
1947    OAK  SBA      29690           263
1948    MCO  SDF     101880           719
1949    MDW  SDF     116410           271
1950    BWI  SDF      70790           495
1951    RSW  SDF      18980           835
1952    TPA  SDF      53450           727
1953    OAK  SNA     299800           371
1954    SJC  SNA     290770           342
1955    PHX  RDU      51880          1891
1956    BUR  SFO     195390           326
1957    SAN  SFO     538260           447
1958    DAL  SJC      85050          1450
1959    LAS  SJC     344370           386
1960    OGG  HNL     256530           100
1961    OGG  SJC     111020          2355
1962    HNL  OGG     274070           100
1963    KOA  OGG      32720            84
1964    LGB  SJC     100340           324
1965    ONT  SJC     136980           333
1966    RNO  SJC      31370           188
1967    SNA  SJC     298720           342
1968    MCO  SJU     904050          1189
1969    DAL  SLC      77160           999
1970    BUR  SLC     130550           574
1971    MCO  SLC     321400          1931
1972    SMF  SLC     205270           532
1973    GEG  SMF      55070           649
1974    SAN  MCI      37000          1334
1975    SEA  SMF     433120           605
1976    BUR  SMF     248860           358
1977    HNL  KOA     145970           163
1978    LGB  SMF     153700           387
1979    ONT  SMF     203700           390
1980    PSP  SMF      47420           439
1981    SNA  SMF     275180           404
1982    DAL  SNA      41230          1216
1983    PHX  MSY      77020          1300
1984    AUS  SNA      58030          1209
1985    CMH  SRQ      23120           869
1986    AUS  SRQ       2000           936
1987    IND  SRQ      27530           876
1988    LGA  SRQ      56320          1047
1989    BWI  STL     115470           738
1990    DAL  STL     194160           546
1991    FLL  STL     104120          1057
1992    HOU  STL     126570           687
1993    JAX  STL      43260           753
1994    LGA  STL     266440           888
1995    LGB  STL      40140          1581
1996    MDW  STL     179550           251
1997    MSY  STL      70480           604
1998    SEA  STL      85030          1709
1999    AUS  STL     129080           721
2000    BNA  BDL      46820           852
2001    BNA  STL     112220           272
2002    CMH  STL      54690           409
2003    DSM  STL      53180           259
2004    ECP  STL      35370           634
2005    ICT  STL      48480           392
2006    LAX  STL     117510          1592
2007    LIT  STL      53570           296
2008    MCI  STL      82750           237
2009    MCO  STL     305360           882
2010    MIA  STL      98300          1068
2011    MKE  STL      56090           317
2012    OKC  STL      60340           462
2013    OMA  STL      67900           342
2014    PHX  STL     244100          1262
2015    PNS  STL      18770           598
2016    SRQ  STL      30960           903
2017    BNA  TPA     187610           612
2018    BWI  SYR      73020           273
2019    CMH  DEN     196120          1154
2020    DCA  TPA     226450           814
2021    ORD  TPA     457090          1011
2022    RDU  TPA     146550           587
2023    SDF  TPA      53110           727
2024    BDL  TPA      95470          1111
2025    BHM  TPA      40080           459
2026    BUF  TPA      93500          1053
2027    CVG  TPA     107020           773
2028    FLL  TPA     106160           197
2029    SAN  TUS      43390           368
2030    LAS  TUS     116680           365
2031    BNA  VPS      78380           389
2032    DAL  MKE      44140           850
2033    IAH  SHV      31870           192
2034    PHX  MFR      33990           854
2035    IAD  MCO     194250           758
2036    STL  DFW     211700           550
2037    DFW  SMF     208900          1431
2038    PHX  CVG      38970          1569
2039    DFW  JAX     219370           918
2040    DFW  SAN     476300          1171
2041    DFW  RDU     223120          1061
2042    LGA  IAD      89640           229
2043    PIT  IAD      53410           182
2044    SAV  IAH      29960           851
2045    TUL  IAH      85890           429
2046    DFW  LGA     742200          1389
2047    PHX  PHL     298260          2075
2048    BFL  PHX      56640           425
2049    EUG  PHX      37760           952
2050    DFW  SNA     409090          1205
2051    DFW  PNS     154530           604
2052    IAH  MSP     163230          1034
2053    IAH  SJU     129690          2007
2054    IAH  IAD     142840          1190
2055    DCA  BGR      58570           590
2056    DCA  BUF      55930           296
2057    PHL  MDT      49440            84
2058    JFK  JAX     159640           828
2059    IND  BOS      85120           818
2060    LGA  CVG     113960           585
2061    CMH  BOS      70830           640
2062    JFK  DEN     137640          1626
2063    JFK  MSY     123840          1182
2064    LGA  DSM      16750          1031
2065    LGA  ORF     106470           296
2066    LGA  DFW     727730          1389
2067    LGA  PBI     253180          1035
2068    LGA  BOS     432440           184
2069    PIT  BOS     115330           496
2070    RDU  BOS     215960           612
2071    JFK  SFO     830530          2586
2072    EWR  MHT      26450           209
2073    EWR  CHS     122220           628
2074    CLT  TUL      68580           842
2075    LGA  CLE     128330           419
2076    JFK  CLE      62780           425
2077    JFK  CLT     240930           541
2078    LGA  CLT     438570           544
2079    LGA  IND     132300           660
2080    LGA  CMH     154310           479
2081    BOS  CMH      69350           640
2082    PHL  CMH      60550           406
2083    JFK  CVG      23110           589
2084    CLT  SMF      39150          2244
2085    JFK  DCA      81780           213
2086    RDU  DCA     129930           227
2087    SDF  DCA      53990           474
2088    BOS  DCA     743410           399
2089    LGA  MSN      39680           812
2090    CHS  EWR     120790           628
2091    DTW  EWR     201160           488
2092    EYW  EWR      41890          1196
2093    MKE  EWR      49380           725
2094    MSY  EWR     157690          1167
2095    PWM  EWR      73590           284
2096    CLT  PNS     103880           488
2097    LGA  GSO      88980           461
2098    MSY  IAD      50690           955
2099    SRQ  IAD      14710           849
2100    LGA  ILM      63900           500
2101    BOS  IND      86400           818
2102    CLT  DAB      88710           416
2103    IAD  IND      60310           476
2104    EWR  MKE      50650           725
2105    BNA  MWA        470           171
2106    BWI  DFW     188990          1217
2107    BWI  JFK      54440           184
2108    DCA  ECP      21210           769
2109    ORF  JFK      71700           290
2110    PHL  PHX     303310          2075
2111    PHL  TYS      26040           554
2112    PIT  LGA     167630           335
2113    CLE  JFK      59700           425
2114    CMH  JFK      41350           483
2115    IND  JFK      51310           665
2116    IND  LGA     129780           660
2117    RIC  LGA     101090           292
2118    CVG  JFK      21320           589
2119    CLT  JFK     235220           541
2120    JAX  JFK     160610           828
2121    BOS  LGA     425410           184
2122    RDU  LGA     272810           431
2123    CMH  LGA     151830           479
2124    IAD  GSP      11630           384
2125    DCA  ORF      70350           142
2126    LGA  OMA      47860          1148
2127    JFK  ORF      75770           290
2128    BOS  PHL     396560           280
2129    JFK  PIT      62580           340
2130    LGA  PIT     166370           335
2131    ORD  FAI      13660          2785
2132    BOS  PIT     116640           496
2133    DCA  SAV      40460           519
2134    EWR  SAV      65390           708
2135    IAD  SDF      23780           451
2136    PHL  RDU     152980           337
2137    EWR  RDU     196960           416
2138    IAD  PVD      32390           371
2139    CLT  BOS     490360           728
2140    LGA  SDF      72440           659
2141    CLT  CMH     155470           347
2142    DCA  CLT     268420           331
2143    ORD  CHS      97260           760
2144    IAD  CLE      88930           288
2145    IAD  CHO      25660            77
2146    IAD  CAK       5750           251
2147    BUF  IAD      44250           283
2148    IAD  SEA     185200          2306
2149    ORD  SUX       9150           436
2150    GSO  ORD      54640           589
2151    HPN  ORD      79410           738
2152    IAD  LAS      89650          2065
2153    MSP  SAT      78830          1097
2154    MSP  AZA      12710          1267
2155    BZN  MSP     117540           874
2156    SFO  MSP     276700          1589
2157    MSP  EAU         90            85
2158    PHL  ALB      44320           212
2159    PHL  ILM      30910           413
2160    PHL  DEN     316840          1558
2161    PHL  DCA      44830           119
2162    PHL  SAN      90220          2370
2163    PHL  MYR      72060           473
2164    PHL  RSW     210180           993
2165    PHL  RIC      41980           198
2166    PHL  GSO      31120           365
2167    BOS  SYR      24480           265
2168    PHL  MCI      44730          1038
2169    FLG  DEN      22000           503
2170    DEN  GRR     143240          1015
2171    IAD  HSV      14580           596
2172    LIT  IAH      47480           374
2173    EWR  LAX     803750          2454
2174    EYW  FLL       5370           145
2175    MCO  PNS      30790           381
2176    MCO  DEN     602000          1546
2177    TPA  PNS       4450           330
2178    FLL  HVN      34580          1127
2179    TPA  HVN      26140          1067
2180    HVN  MCO      62910          1005
2181    BOS  LAX     560640          2611
2182    IAH  ASE      24320           913
2183    LGA  BHM      27850           866
2184    MKE  LGA      60370           738
2185    LGA  MKE      61860           738
2186    LAS  DCA      59280          2089
2187    MIA  DCA     315170           919
2188    BOS  DFW     409970          1562
2189    PSP  DFW     138700          1126
2190    OGG  DFW     153160          3711
2191    DFW  HNL     163900          3784
2192    PHX  JFK     312710          2153
2193    DFW  ATL     772690           731
2194    STT  ORD       8990          2115
2195    SAN  PHL      85840          2370
2196    SFO  PHL     160820          2521
2197    MCI  PHX     231390          1044
2198    RDU  PHX      50940          1891
2199    MIA  SAN      45540          2267
2200    SEA  FAI     232160          1533
2201    HNL  PDX      52600          2603
2202    RSW  BOS     250150          1249
2203    SFO  BOS     502000          2704
2204    RSW  LGA     139600          1080
2205    JFK  ONT      48230          2429
2206    BDL  SFO      11170          2625
2207    ABQ  ATL     152180          1269
2208    BOS  ATL     568900           946
2209    JAC  ATL      27200          1572
2210    MLB  ATL     128560           442
2211    PBI  ATL     560700           545
2212    PDX  ATL     197620          2172
2213    MCO  BOS     603310          1121
2214    LAX  DCA     230060          2311
2215    MCI  DTW      97660           629
2216    PHX  DTW     322850          1671
2217    DFW  DTW     355010           986
2218    AUS  JFK     250740          1521
2219    DEN  JFK     136420          1626
2220    FLL  JFK     603990          1069
2221    SJU  JFK     459370          1598
2222    CVG  LAX      42830          1900
2223    JFK  LAX    1252310          2475
2224    RDU  LAX     101210          2239
2225    MIA  MSP     148850          1501
2226    SAN  MSP     236620          1532
2227    ATL  SJC      82820          2116
2228    AUS  SLC     165250          1086
2229    MCI  SLC     107100           920
2230    MSP  SLC     250120           991
2231    LAX  TPA     145670          2158
2232    SEA  TPA     132890          2520
2233    CLT  LAX     366120          2125
2234    HPN  DTW      32220           505
2235    PSP  ORD      55430          1652
2236    RSW  DEN     153200          1607
2237    LAX  JFK    1256120          2475
2238    BOS  IAH     192930          1597
2239    HDN  IAH       8210           985
2240    RNO  IAH      22540          1530
2241    SLC  IAH     177560          1195
2242    SFO  RDU      50750          2400
2243    TPA  SFO      66680          2393
2244    RDU  IAH      60860          1042
2245    CMH  EWR      80640           463
2246    MCI  LGA     148090          1107
2247    ABQ  ORD      67980          1118
2248    LGA  RIC     101400           292
2249    SEA  PHL     147050          2378
2250    MSP  MCI      93040           393
2251    SLC  DFW     453590           989
2252    TPA  GRR      12000          1041
2253    SJU  PHL     300130          1576
2254    FLL  MYR      55400           529
2255    ANC  FAI     184100           261
2256    HNL  GUM      68890          3801
2257    GUM  SPN      26920           129
2258    HNL  SEA     293440          2677
2259    KOA  SEA     181850          2688
2260    HNL  SLC      82340          2994
2261    OGG  DEN     101370          3302
2262    LAS  IAD      90400          2065
2263    ATL  ABE      56460           692
2264    BTR  ATL     101020           448
2265    GNV  ATL     126620           300
2266    GPT  ATL     102330           352
2267    LEX  ATL     163620           304
2268    MOB  ATL      86380           302
2269    ROA  ATL      71640           357
2270    SGF  ATL      66210           563
2271    TUL  ATL     108590           674
2272    LGA  BGR      50190           378
2273    MKE  BOS      58450           860
2274    RIC  BOS     105510           474
2275    ATL  CHO      50630           457
2276    LGA  CHS     127520           641
2277    BOS  CVG      83130           752
2278    DTW  MDT      32790           371
2279    BTV  DTW      29040           537
2280    CHS  DTW      43580           667
2281    GSP  DTW      32710           508
2282    PWM  DTW      44570           668
2283    RDU  DTW     130110           501
2284    ROC  DTW      71990           296
2285    TYS  DTW      37480           443
2286    CVG  EWR      87590           569
2287    ATL  PHX     503560          1587
2288    JFK  IND      50730           665
2289    BGR  JFK      21370           382
2290    BNA  JFK     106860           765
2291    CHS  JFK     134230           636
2292    CHS  LGA     126180           641
2293    PIT  JFK      59190           340
2294    SAV  JFK     104080           718
2295    BHM  LGA      27700           866
2296    GSO  LGA      87970           461
2297    GSP  LGA      44700           610
2298    MEM  LGA      63780           963
2299    PWM  LGA      78050           269
2300    SAV  LGA      85320           722
2301    ATL  MDT      80600           620
2302    CVG  MSP      96220           596
2303    DSM  MSP      57110           232
2304    JFK  MSP      88160          1029
2305    LGA  RDU     274490           431
2306    ATL  ROA      70270           357
2307    DTW  ROC      65480           296
2308    LGA  TYS      35670           648
2309    TPA  AUS     137270           928
2310    BOS  AUS     163920          1698
2311    DFW  MSN      88220           821
2312    JFK  AUS     250420          1521
2313    MIA  BDL     122250          1194
2314    AUS  BOS     165430          1698
2315    DFW  BOS     414310          1562
2316    DFW  IND     194920           761
2317    PHX  BOS     251530          2300
2318    CLT  SFO     183110          2296
2319    CMH  CLT     151920           347
2320    LAS  CLT     401720          1916
2321    MSP  CLT     226560           930
2322    MSY  CLT     208980           651
2323    ORF  CLT     215040           290
2324    PHX  MRY      60040           598
2325    PIT  CLT     221870           366
2326    PWM  CLT      93090           813
2327    TPA  CLT     433860           507
2328    CLT  CVG     122100           335
2329    LGA  DCA     341730           214
2330    JAX  DFW     220980           918
2331    MEM  DFW     239980           431
2332    ABQ  DFW     290990           569
2333    BGR  DFW       1970          1717
2334    CMH  DFW     170780           926
2335    GSO  DFW      58320           999
2336    ICT  DFW     146740           328
2337    LAX  DFW     924080          1235
2338    MDT  DFW      37370          1231
2339    MFE  DFW     207090           469
2340    MKE  DFW     117230           853
2341    ONT  DFW     311440          1188
2342    PBI  DFW     116250          1102
2343    PWM  DFW       8210          1622
2344    RSW  DFW     190160          1017
2345    SFO  DFW     411610          1464
2346    ORD  SGF      57340           438
2347    ORD  COU      34260           315
2348    CLT  SEA     151840          2279
2349    MIA  IAH     320140           964
2350    DFW  FLL     373310          1119
2351    DFW  JFK     171400          1391
2352    MIA  LAS     231790          2174
2353    DFW  SHV      89090           190
2354    CLT  ILM     188250           185
2355    DFW  RIC     112220          1158
2356    CLT  BTV      54250           761
2357    ORD  JFK     158410           740
2358    AUS  MCO     315460           994
2359    DFW  MDT      36670          1231
2360    CLT  PWM      94470           813
2361    DFW  LIT     162300           304
2362    DFW  MFE     189060           469
2363    TPA  MIA     173050           204
2364    LAS  MIA     237140          2174
2365    PHX  MIA     164740          1972
2366    SFO  MIA     139220          2585
2367    SJU  MIA     389780          1045
2368    STT  MIA     138810          1107
2369    CLT  TLH      71450           386
2370    DFW  PBI     122120          1102
2371    DFW  CHS     113670           987
2372    EYW  ORD      37980          1251
2373    ONT  ORD       7520          1700
2374    SJU  ORD     118890          2072
2375    SNA  ORD     275440          1726
2376    SRQ  ORD      58220          1050
2377    CLT  CHO      99210           245
2378    DFW  PHL     399610          1303
2379    RSW  PHL     214510           993
2380    BOS  PHX     241940          2300
2381    EWR  PHX     345520          2133
2382    JFK  PHX     296470          2153
2383    MIA  PHX     157880          1972
2384    CLT  PDX      41730          2282
2385    DFW  BTR      84770           383
2386    MIA  RDU     200900           700
2387    DFW  RSW     189240          1017
2388    DFW  TRI      31400           868
2389    PHL  PIT      76580           268
2390    CLT  GSO     138100            83
2391    CLT  ROA      93210           155
2392    CLT  BHM     109970           350
2393    MIA  SJU     386580          1045
2394    MIA  CMH      36420           990
2395    PHL  SDF      31250           576
2396    DFW  FAR      38760           968
2397    DFW  YUM      21160          1022
2398    HNL  ANC      30590          2777
2399    BRW  ANC      30050           725
2400    ANC  BRW      30190           725
2401    SEA  DCA     105620          2329
2402    SEA  KTN      86220           680
2403    ANC  HNL      29830          2777
2404    ANC  KTN      13390           775
2405    LIH  LAX     219650          2615
2406    PDX  LAX     394570           834
2407    SEA  OMA      46880          1368
2408    ANC  OTZ      31920           548
2409    LIH  PDX      24440          2631
2410    SEA  OGG     195840          2640
2411    PSP  SEA     181570           987
2412    FLL  SEA      85170          2717
2413    LIH  SEA     140020          2701
2414    MCO  SEA     260360          2554
2415    DCA  SFO      95760          2442
2416    JFK  ABQ      40090          1826
2417    BOS  RSW     242510          1249
2418    FLL  ALB      51920          1204
2419    FLL  BDL      81380          1173
2420    SFO  BDL      11910          2625
2421    BUF  BOS      32020           395
2422    PBI  BOS     215780          1197
2423    SAN  BOS     168130          2588
2424    SRQ  BOS      34590          1220
2425    JFK  BUR      76460          2465
2426    PBI  DCA     153120           857
2427    RIC  FLL      67910           805
2428    ABQ  JFK      40830          1826
2429    BOS  SEA     326550          2496
2430    BUR  JFK      74740          2465
2431    PBI  JFK     254830          1028
2432    PSP  JFK      21600          2378
2433    BDL  LAX      29030          2527
2434    BUF  LAX      27650          2218
2435    JFK  PSP      22160          2378
2436    MCO  PVD     202960          1072
2437    PBI  PVD      26930          1148
2438    JFK  SAN     292370          2446
2439    JFK  SJU     451540          1598
2440    TPA  SJU     172530          1237
2441    JFK  SMF      41360          2521
2442    BOS  SRQ      33550          1220
2443    MCO  SYR      72000          1053
2444    ALB  ATL     122990           853
2445    BDL  ATL     264230           859
2446    BOI  ATL      56910          1838
2447    BZN  ATL      59650          1640
2448    CMH  ATL     316580           447
2449    DAY  ATL     102510           432
2450    EGE  ATL      15180          1312
2451    GSO  ATL     227430           306
2452    HSV  ATL     177410           151
2453    ILM  ATL      78430           377
2454    JAX  ATL     616980           270
2455    OMA  ATL     202420           821
2456    ORF  ATL     341020           516
2457    PNS  ATL     358330           271
2458    PWM  ATL      75530          1027
2459    RDU  ATL     540190           356
2460    SAN  ATL     319790          1892
2461    SFO  ATL     369910          2139
2462    SJU  ATL     210960          1547
2463    SNA  ATL     134240          1919
2464    TUS  ATL     118840          1541
2465    VPS  ATL     225830           250
2466    DTW  AUS     131150          1149
2467    SEA  AUS     192880          1770
2468    SLC  BNA      92550          1404
2469    MIA  BOS     442550          1258
2470    MSP  JAC       5990           872
2471    SLC  CLT     126220          1727
2472    FLL  CVG      37640           932
2473    LAS  CVG     116920          1678
2474    RSW  CVG     117590           879
2475    DTW  TVC      68580           207
2476    JFK  DFW     173890          1391
2477    AUS  DTW     124840          1149
2478    BOS  DTW     265770           632
2479    BUF  DTW     111030           241
2480    MKE  DTW     101970           237
2481    MYR  DTW      81640           636
2482    SAN  DTW     152810          1956
2483    SAT  DTW      63990          1214
2484    SFO  DTW     195790          2079
2485    SRQ  DTW      14400          1022
2486    ATL  ELP      88920          1282
2487    ATL  MLB     128060           442
2488    SEA  IAD     192200          2306
2489    SLC  IND       4510          1355
2490    MSY  JFK     126240          1182
2491    PBI  LGA     260700          1035
2492    IND  LAX      80170          1814
2493    TPA  LAX     139490          2158
2494    BOS  MCO     606680          1121
2495    SLC  MEM      49260          1262
2496    BOS  MIA     449030          1258
2497    JFK  MIA     729110          1089
2498    BDL  MSP     101690          1050
2499    BWI  MSP     180770           936
2500    DTW  MSP     264880           528
2501    FLL  MSP     124330          1487
2502    MCI  MSP      95600           393
2503    MKE  MSP     139840           297
2504    MSO  MSP      49950          1013
2505    PSP  MSP      45440          1454
2506    SAT  MSP      81870          1097
2507    SMF  MSP      78480          1517
2508    SNA  MSP      80090          1522
2509    SRQ  MSP      34040          1342
2510    BOS  JFK     281490           187
2511    DTW  GSO      14830           460
2512    CVG  RSW     116070           879
2513    DTW  SAT      62190          1214
2514    AUS  SEA     195780          1770
2515    JFK  SEA     409190          2422
2516    MSP  RAP      58710           489
2517    TPA  SEA     133400          2520
2518    BOS  SFO     493060          2704
2519    ATL  SJU     207670          1547
2520    BNA  SLC      91510          1404
2521    BOS  SLC     162250          2105
2522    BWI  SLC      72750          1865
2523    DCA  SLC      57690          1851
2524    FLL  SLC      93180          2084
2525    IND  SLC       4440          1355
2526    MSY  SLC      51260          1428
2527    PDX  SLC     279390           630
2528    RDU  SLC      55170          1823
2529    RNO  SLC     118080           422
2530    SAT  SLC      96310          1087
2531    STL  SLC     116740          1156
2532    TPA  SLC      59520          1888
2533    ATL  TRI      64760           227
2534    EWR  BTV      49800           266
2535    BTV  EWR      49520           266
2536    BUF  EWR      67160           282
2537    GRR  EWR      25390           605
2538    GSP  EWR      36910           594
2539    HHH  EWR       9730           687
2540    RIC  EWR      55640           277
2541    BTV  IAD      51920           441
2542    STL  IAD      19600           696
2543    KOA  LAX     234590          2504
2544    DFW  TLH      52970           767
2545    DFW  BRO      58830           482
2546    BRO  DFW      72370           482
2547    CAE  DFW      55860           922
2548    CMI  DFW      26770           692
2549    CRP  DFW     109380           354
2550    SPI  DFW      26910           630
2551    TYS  DFW      96850           771
2552    MIA  DSM       5690          1327
2553    MIA  PHL     375280          1013
2554    DFW  FSM      53030           227
2555    DFW  GJT      55270           773
2556    DFW  ICT     148000           328
2557    DFW  JAN      97020           408
2558    DFW  LCH      35540           295
2559    OMA  MIA       5670          1393
2560    MIA  OMA       4860          1393
2561    OMA  ORD     149660           416
2562    DSM  ORD     130960           299
2563    RST  ORD      33310           268
2564    DFW  SPI      27580           630
2565    MIA  TLH      52450           402
2566    CLT  SLC     117390          1727
2567    CLT  ELP       8050          1482
2568    MSN  CLT      63690           708
2569    CLE  CLT     161090           430
2570    DTW  CLT     280970           500
2571    LFT  CLT      31220           729
2572    LIT  CLT      74630           640
2573    MDT  CLT     121330           413
2574    DAY  DCA      51620           391
2575    TYS  DCA      43390           437
2576    DCA  GSO      35570           248
2577    PHL  MSN      17060           764
2578    MHT  PHL      44900           289
2579    DCA  PNS      45150           816
2580    DCA  HSV      57980           613
2581    MSP  BIS      86430           386
2582    DEN  CPR      54770           230
2583    DFW  CRP     107260           354
2584    ATW  DEN      16080           883
2585    BNA  DEN     380210          1014
2586    CPR  DEN      54230           230
2587    EUG  DEN      73690           996
2588    MAF  DEN      54340           563
2589    ORF  DEN      76180          1553
2590    SDF  DEN      94880          1024
2591    XWA  DEN      37790           582
2592    ALB  DTW      74430           489
2593    OMA  DTW      48370           651
2594    SBN  DTW      22720           157
2595    DFW  STL     218200           550
2596    ORD  HPN      80200           738
2597    MSP  IAH     165080          1034
2598    MCI  IAH      64060           643
2599    MKE  IAH      38020           984
2600    PSP  IAH      19140          1269
2601    XNA  LAX      17160          1371
2602    DEN  LBB      33600           456
2603    DEN  MAF      55520           563
2604    IAH  MCI      64530           643
2605    BIS  MSP      86710           386
2606    MEM  MSP      55800           700
2607    OKC  MSP      25310           694
2608    OMA  MSP      80100           282
2609    PIT  MSP      71340           726
2610    RIC  MSP       4970           970
2611    SDF  MSP      37300           604
2612    MSP  OMA      83890           282
2613    BDL  ORD     181640           783
2614    ALB  ORD     137780           723
2615    BHM  ORD      38280           583
2616    MEM  ORD      90450           491
2617    RAP  ORD      38900           780
2618    DTW  ORF      57480           529
2619    DRO  PHX      29410           351
2620    MSP  RIC       5480           970
2621    DEN  SAV      30830          1414
2622    ONT  SEA     237710           956
2623    ABQ  SFO      34510           896
2624    TUS  SFO      37540           751
2625    ABQ  SLC      65890           493
2626    FAT  SLC      73220           501
2627    HLN  SLC      37230           402
2628    PSC  SLC      56830           521
2629    PSP  SLC      62500           541
2630    RAP  SLC       8330           508
2631    TUS  SLC      68300           601
2632    SLC  TUS      64480           601
2633    BOI  PDX      81790           344
2634    SFO  DCA     101970          2442
2635    LIH  DEN      52090          3414
2636    MSN  DEN     117600           826
2637    MSO  DEN      95710           679
2638    IAH  DSM      37110           802
2639    SAT  EWR      65780          1569
2640    SMF  EWR      40530          2500
2641    DEN  ANC      68150          2405
2642    IAH  SMF      55630          1609
2643    PDX  IAD      39970          2327
2644    PHX  IAD      66530          1956
2645    SAN  IAD     119260          2253
2646    SJU  IAD      69580          1571
2647    BWI  IAH     121200          1235
2648    CMH  IAH      49220           986
2649    CVG  IAH      57270           871
2650    HNL  IAH      84810          3904
2651    JAC  IAH      12180          1265
2652    PHL  IAH     172490          1325
2653    PIT  IAH      89030          1117
2654    SEA  IAH     215880          1874
2655    EWR  MCI      54500          1092
2656    IAH  MFE     104690           316
2657    IAH  OMA      44350           781
2658    IAH  PIT      90560          1117
2659    EWR  SAN     203570          2425
2660    ORD  ASE      39220          1013
2661    BWI  SFO      38580          2457
2662    HNL  SFO     428870          2398
2663    MCO  SFO     158910          2446
2664    SEA  SFO     629450           679
2665    EWR  SMF      40290          2500
2666    DEN  ASE     111570           125
2667    EWR  SNA      96500          2434
2668    SJC  AUS     140970          1476
2669    BNA  BUR      27500          1791
2670    SJU  BWI     169200          1565
2671    RSW  CMH     101880           930
2672    ECP  DEN       7660          1250
2673    HOU  PDX       2110          1843
2674    HNL  LAS      93470          2762
2675    MCI  LAS     202010          1139
2676    BNA  SAN      76280          1751
2677    HNL  PHX     179430          2917
2678    IND  RSW     130080           945
2679    SAT  SAN      42680          1129
2680    FLL  MKE      26210          1243
2681    IAH  ELP      73340           667
2682    DFW  FSD      45890           737
2683    DSM  IAH      35940           802
2684    EYW  IAH       9270           915
2685    SDF  IAH      38380           788
2686    IAD  MCI      17570           926
2687    CHS  BOS      86700           818
2688    CLE  BOS     101670           563
2689    JAX  BOS     108470          1010
2690    BOS  CHS      88500           818
2691    JFK  CMH      42350           483
2692    MSN  DCA      13620           707
2693    CMH  DTW      68430           155
2694    MCI  EWR      49080          1092
2695    MEM  EWR      27230           946
2696    MSN  EWR      17990           799
2697    SDF  EWR      32300           642
2698    EWR  GSP      37800           594
2699    XNA  LGA      40820          1147
2700    EYW  LGA      14900          1207
2701    SDF  LGA      69700           659
2702    LGA  OKC      21350          1341
2703    JFK  ORD     163060           740
2704    CHS  ORD     100230           760
2705    JAX  ORD     105210           864
2706    SDF  ORD      97480           286
2707    EYW  PHL      35860          1121
2708    MSY  PHL      97100          1089
2709    CLT  SHV      37190           764
2710    BOS  RDU     216900           612
2711    LGA  XNA      42290          1147
2712    ORD  EVV      15100           272
2713    ITH  IAD      10710           250
2714    CAE  ORD      25370           666
2715    PNS  ORD      27040           794
2716    ORD  PNS      28070           794
2717    HRL  MSP      17570          1310
2718    MSP  PSP      46530          1454
2719    GRB  RSW       5050          1287
2720    SBY  CLT      30920           371
2721    SDF  CLT     123780           335
2722    PHL  MHT      43460           289
2723    ISP  PHL      23380           130
2724    SAV  PHL      46220           629
2725    IAH  BHM      48250           562
2726    DIK  DEN      20890           488
2727    ALB  IAD      40470           325
2728    MOB  IAH      39660           427
2729    STL  IAH      59390           667
2730    IAH  ICT      37770           542
2731    DEN  LIT      96300           771
2732    ABE  ATL      57290           692
2733    JFK  BGR      20680           382
2734    JFK  BNA     108520           765
2735    LGA  BTV      41860           258
2736    MSP  BWI     184510           936
2737    LGA  GRR      43440           618
2738    LGA  GSP      45140           610
2739    BTV  JFK      73480           266
2740    PWM  JFK      57670           273
2741    CAE  LGA      13990           617
2742    GRR  LGA      43150           618
2743    ORF  LGA     104880           296
2744    ATL  XNA      90120           589
2745    JFK  RDU     185520           427
2746    BOS  RIC     108410           474
2747    JFK  ROC      86330           264
2748    LGA  ROC      47860           254
2749    JFK  SAV      99740           718
2750    LGA  SAV      89150           722
2751    DFW  TPA     393830           929
2752    DFW  HSV      92680           603
2753    MIA  AUS     212280          1103
2754    PHX  TUS     142570           110
2755    CLT  CHA      84470           241
2756    CLT  PGV      33690           203
2757    DFW  BOI      76360          1272
2758    DFW  OGG     138090          3711
2759    DFW  MAF     114980           309
2760    DFW  BUR     107490          1231
2761    CLT  HNL      19730          4678
2762    CLT  LFT      30330           729
2763    DFW  CLE     180530          1021
2764    MIA  CLE      83840          1080
2765    PHX  CLE     119730          1737
2766    ORD  ANC     101360          2846
2767    BOS  CLT     491160           728
2768    BUF  CLT     115030           546
2769    BWI  CLT     328460           361
2770    CVG  CLT     122940           335
2771    DFW  CLT     496790           936
2772    EYW  CLT     116110           736
2773    FLL  CLT     377460           632
2774    LAX  CLT     379700          2125
2775    MIA  CLT     279810           650
2776    PHX  CLT     397310          1773
2777    RSW  CLT     262320           600
2778    SFO  CLT     187700          2296
2779    STL  CLT     220160           575
2780    SYR  CLT     125670           603
2781    DFW  CVG     160120           812
2782    DFW  DCA     393400          1192
2783    SRQ  DCA      47700           851
2784    PHL  DFW     393350          1303
2785    BNA  DFW     332400           631
2786    BOI  DFW      77810          1272
2787    BUR  DFW     105750          1231
2788    COS  DFW     180800           592
2789    CVG  DFW     156690           812
2790    DCA  DFW     392710          1192
2791    JAC  DFW      44760          1047
2792    LIT  DFW     160770           304
2793    MCI  DFW     241290           460
2794    MCO  DFW     660530           985
2795    MIA  DFW     467760          1121
2796    PIT  DFW     165020          1067
2797    SAN  DFW     487700          1171
2798    SAV  DFW      85240           925
2799    SJU  DFW      68040          2165
2800    SMF  DFW     213470          1431
2801    SNA  DFW     404790          1205
2802    DFW  OMA     133880           583
2803    CLT  LEX      68580           281
2804    CLT  SYR     126450           603
2805    LAX  OKC      35630          1187
2806    DFW  COU      44330           489
2807    DFW  RNO     144470          1345
2808    MIA  STT     133890          1107
2809    DFW  CMH     175380           926
2810    MIA  IND      61970          1020
2811    MIA  JAX     112960           335
2812    CLT  AVP     110510           509
2813    DFW  GPT      47230           500
2814    DFW  VPS     115540           641
2815    AUS  TUL      34750           426
2816    CLT  BGR      28270           921
2817    CLT  AGS      82970           140
2818    DCA  LAX     220750          2311
2819    DFW  SRQ      46170           945
2820    DFW  GRI      26960           561
2821    DFW  MEM     245590           431
2822    PHL  PVD      60170           237
2823    CLT  CAE     111880            88
2824    CLT  MYR     182250           157
2825    CLT  MOB      56800           526
2826    PHX  MCI     235880          1044
2827    DFW  HDN      17940           769
2828    MIA  MEM      40230           859
2829    RDU  MIA     196350           700
2830    BNA  MIA     194690           806
2831    CHS  MIA      40840           489
2832    CLT  RNO        370          2141
2833    DCA  MIA     308330           919
2834    DFW  DSM      94650           624
2835    JAX  MIA     109240           335
2836    SEA  MIA      55600          2724
2837    PHX  MSN      44120          1396
2838    CLT  RIC     268770           257
2839    DFW  ACT      50130            89
2840    PBI  ORD      80400          1143
2841    TUS  ORD      82670          1437
2842    DFW  PSP     139300          1126
2843    PHL  PBI     162110           951
2844    DFW  ELP     292500           551
2845    CLT  EWN      71460           221
2846    CLT  SJU     122140          1475
2847    MCO  PHX     259950          1849
2848    MSN  PHX      46530          1396
2849    DFW  PIT     164160          1067
2850    DFW  BWI     192750          1217
2851    PHX  GJT      41090           438
2852    CLT  ROC      99840           573
2853    DFW  ORF     113700          1212
2854    MIA  PNS      46970           530
2855    DFW  LGB       9090          1221
2856    DFW  HRL      62830           461
2857    MIA  SEA      59180          2724
2858    ORD  MHT      19220           843
2859    PHL  AVL      10050           504
2860    MIA  SFO     136260          2585
2861    DFW  HOU     123200           247
2862    DFW  PDX     273890          1616
2863    PHL  SJU     295860          1576
2864    PHL  CAE      19150           523
2865    DFW  AVL      36650           848
2866    DFW  LEX      57310           785
2867    BOS  STL     127350          1047
2868    CLT  CSG      26220           295
2869    PHL  TPA     348430           920
2870    ORD  TUS      78620          1437
2871    SEA  ABQ      55500          1180
2872    SEA  DFW     513830          1660
2873    SEA  OKC      50780          1519
2874    SEA  CHS      46700          2415
2875    SEA  BWI      66350          2335
2876    SEA  IND      65670          1866
2877    PSG  KTN       1920           111
2878    JNU  KTN      15920           234
2879    SAN  MCO      59230          2149
2880    SEA  MKE      49750          1694
2881    ABQ  PDX      28790          1111
2882    MCO  SAN      56760          2149
2883    SEA  SAT      57970          1774
2884    BUR  SEA     160880           937
2885    CMH  SEA      44980          2016
2886    CVG  SEA      81030          1965
2887    IND  SEA      63890          1866
2888    MKE  SEA      49980          1694
2889    OGG  SEA     208140          2640
2890    OKC  SEA      51040          1519
2891    OMA  SEA      48580          1368
2892    RDU  SEA     109050          2354
2893    SAT  SEA      59600          1774
2894    STL  SEA      83710          1709
2895    TUS  SEA     102460          1216
2896    HNL  SJC     142280          2417
2897    LAX  BDL      30880          2527
2898    PBI  BDL      38640          1133
2899    RSW  BDL      46940          1180
2900    EYW  BOS      11700          1373
2901    SAT  BOS      32430          1764
2902    SAV  BOS      56370           901
2903    MCO  BQN     139170          1129
2904    BOS  BUF      32180           395
2905    LAX  CHS      19400          2206
2906    BOS  CLE     102510           563
2907    BOS  SAN     164080          2588
2908    SJU  DCA      50120          1554
2909    STT  EWR      41260          1634
2910    STT  JFK      77970          1623
2911    JAX  FLL      35460           319
2912    PVD  FLL      54790          1188
2913    SAN  FLL      38210          2269
2914    SJU  FLL     346850          1046
2915    SLC  FLL      98130          2084
2916    MCO  HPN      92450           972
2917    TPA  HPN      39160          1032
2918    JFK  IAH      42040          1417
2919    BOS  JAX     108920          1010
2920    FLL  JAX      35440           319
2921    LAX  JAX      25630          2153
2922    LGA  JAX     131290           833
2923    BQN  JFK      77020          1576
2924    EYW  JFK      13120          1201
2925    IAH  JFK      42890          1417
2926    SAT  JFK      46670          1587
2927    SRQ  JFK      51410          1041
2928    PVD  MCO     206880          1072
2929    BDL  FLL      75490          1173
2930    BDL  PBI      40530          1133
2931    BOS  PBI     212490          1197
2932    JFK  PBI     247300          1028
2933    PVD  PBI      23790          1148
2934    MCO  PSE      67180          1179
2935    FLL  RIC      66930           805
2936    LAX  RIC       1490          2305
2937    MCO  RIC      92070           667
2938    JFK  RNO      33000          2411
2939    JFK  RSW     164250          1074
2940    FLL  SAN      35500          2269
2941    BOS  SAT      30060          1764
2942    JFK  SJC      37990          2569
2943    RDU  SJU      36860          1433
2944    JFK  BTV      72550           266
2945    JFK  SRQ      47420          1041
2946    SLC  OKC      43340           866
2947    BUF  ATL     160190           712
2948    CHS  ATL     383710           259
2949    GRR  ATL     177140           640
2950    JFK  ATL     336420           760
2951    PVD  ATL     129450           903
2952    SRQ  ATL     349700           444
2953    MSP  BIL      45420           748
2954    DTW  FWA      16310           128
2955    SLC  HNL      84960          2994
2956    ATL  HSV     177450           151
2957    ATL  STT     105880          1599
2958    SLC  IAD      46610          1828
2959    DCA  DTW     236870           405
2960    MSP  MLI      22610           274
2961    MSP  FLL     122920          1487
2962    MSP  CLE      83390           622
2963    DTW  LEX      47600           296
2964    DTW  ELM      38130           332
2965    ATL  CSG      32490            83
2966    ATL  FWA      42100           508
2967    ATL  ILM      78810           377
2968    ATL  ABY      33350           145
2969    DTW  ORD     281770           235
2970    JFK  PDX     126360          2454
2971    MSP  RSW     363180          1416
2972    CVG  DCA      98910           411
2973    SLC  STL     115750          1156
2974    SLC  GJT      13010           216
2975    IAD  SLC      45380          1828
2976    ATL  ROC     125100           749
2977    DTW  IND      87340           231
2978    CID  DEN     102370           692
2979    FAR  DEN      71890           627
2980    RDU  DEN     226520          1436
2981    XNA  DEN      64350           616
2982    PBI  ISP      93670          1052
2983    RDU  LAS      94810          2026
2984    LIT  MCO       4210           776
2985    MCO  ONT      37550          2171
2986    PWM  RSW       9220          1343
2987    SYR  RSW      11980          1186
2988    LAS  STL     288500          1371
2989    TTN  TPA      41710           955
2990    MCO  TTN     116890           896
2991    RSW  TTN      20570          1028
2992    DEN  TYS      64380          1162
2993    DEN  XNA      62530           616
2994    IAD  GRR       5660           501
2995    ORD  GSO      52600           589
2996    GSP  IAD      10820           384
2997    ORF  ORD     111570           717
2998    EWR  BQN      55900          1585
2999    IAD  STL      19750           696
3000    DFW  MOB      58220           539
3001    MIA  BHM      22950           661
3002    DFW  LAW      42530           140
3003    DFW  CHA      55870           695
3004    DFW  CID      58990           685
3005    IND  DCA      99160           500
3006    AVL  DFW      37290           848
3007    BFL  DFW      44100          1271
3008    BHM  DFW     126630           597
3009    GCK  DFW      26670           404
3010    LRD  DFW      61760           396
3011    MYR  DFW      27360          1048
3012    VPS  DFW     115900           641
3013    MIA  GRR       5390          1214
3014    CVG  MIA      52700           948
3015    SAV  MIA      23100           440
3016    TYS  MIA      12790           724
3017    CMH  ORD     170670           296
3018    EVV  ORD      14120           272
3019    LIT  ORD      62640           552
3020    SAT  ORD     140030          1041
3021    AUS  CLT     253540          1032
3022    MIA  SAV      23770           440
3023    DFW  TYS      96820           771
3024    MCO  ACY     104560           852
3025    MCO  CAK      23480           861
3026    LAX  CLE      95670          2052
3027    IND  LAS     186560          1590
3028    MKE  LAX      23350          1756
3029    LAX  MKE      21470          1756
3030    LAX  SDF      31350          1843
3031    DCA  AGS      18900           468
3032    PHL  CLE      55890           363
3033    ECP  CLT      45930           437
3034    MKE  CLT      87590           651
3035    TLH  CLT      70920           386
3036    VPS  CLT     101520           460
3037    PHL  CVG      60330           507
3038    AGS  DCA      17410           468
3039    ALB  DCA      57680           318
3040    DSM  DCA      34210           897
3041    HSV  DCA      58650           613
3042    MGM  DCA      11710           693
3043    PWM  DCA      79070           482
3044    DCA  DSM      38860           897
3045    PHL  BHM      26060           772
3046    CLT  ECP      44260           437
3047    CLT  GNV      71570           388
3048    DCA  GRR      30820           524
3049    CLT  ERI      32610           476
3050    DCA  IND      95920           500
3051    CVG  PHL      60090           507
3052    DFW  SBN      41240           846
3053    PSP  AUS       7950          1132
3054    DEN  BFL      20070           845
3055    DEN  PRC       7560           557
3056    SFO  STS      10130            66
3057    JAX  DEN      80510          1447
3058    PSP  DEN     146260           776
3059    SAV  DEN      30830          1414
3060    LBB  DFW     127080           282
3061    TRI  DFW      30630           868
3062    PVD  DTW      57600           615
3063    DFW  FWA      42240           859
3064    SEA  JNU     172470           909
3065    IAH  HOB      13160           501
3066    DEN  IDA      64050           458
3067    OKC  LAX      36640          1187
3068    FAT  LAX      42480           209
3069    MFR  LAX      29730           630
3070    IAH  AEX      13250           190
3071    IAH  VCT       5960           123
3072    CMH  MSP      79280           626
3073    OKC  ORD      75860           693
3074    DTW  PWM      45210           668
3075    PHX  SAF      26750           370
3076    ORD  SAV      56710           773
3077    ORD  ROA      30930           530
3078    MCI  SEA     122270          1489
3079    EUG  SFO      71080           451
3080    MFR  SFO      55350           329
3081    ONT  SFO     107110           363
3082    SBA  SFO      80790           262
3083    DSM  SLC       7190           955
3084    SLC  EUG      49650           618
3085    IAH  ORF      24010          1201
3086    SEA  ALW      37750           213
3087    FAI  ANC     178960           261
3088    ANC  LAX      42800          2345
3089    SEA  MRY      19980           750
3090    PSP  PAE      13390          1017
3091    ALW  SEA      38090           213
3092    SFO  AUS     217600          1504
3093    EWR  HNL      63350          4962
3094    ORD  CGI       6640           339
3095    ORD  TUL      68400           585
3096    ORD  SJU     116680          2072
3097    IAH  CMH      50430           986
3098    PIT  DEN     175530          1290
3099    SJC  DEN     292130           948
3100    BQN  EWR      55080          1585
3101    LAX  FAT      41940           209
3102    AUS  IAD      97230          1297
3103    RSW  IAD      74820           891
3104    MFE  IAH     132280           316
3105    PDX  IAH      80760          1825
3106    SAN  IAH     208810          1303
3107    SJC  IAH      42400          1608
3108    SMF  IAH      55530          1609
3109    SNA  IAH     150770          1346
3110    IAH  PDX      82110          1825
3111    SFO  RDD      39970           199
3112    BWI  LAX     171710          2329
3113    CLE  LAX      95500          2052
3114    IAD  STT      33850          1606
3115    IAD  SJU      70660          1571
3116    IAH  PHL     176540          1325
3117    DEN  SLN       7750           383
3118    DEN  SRQ      24170          1531
3119    IAH  CRP      71260           201
3120    DEN  LBL       5920           280
3121    OAK  ABQ      44780           889
3122    SAN  ABQ      45250           628
3123    ABQ  AUS      62650           619
3124    LBB  AUS      30980           341
3125    LAS  BHM      17630          1618
3126    STL  BNA     120790           272
3127    OAK  BNA      23170          1959
3128    SMF  BNA       7940          1917
3129    BNA  PHX     228770          1449
3130    TPA  BUF      97600          1053
3131    ALB  BWI     179310           289
3132    AUS  BWI     137380          1342
3133    CMH  BWI      88580           337
3134    DAL  BWI     186820          1209
3135    MCI  BWI      74090           967
3136    MHT  BWI     173800           377
3137    SYR  BWI      73340           273
3138    MKE  BWI      73800           641
3139    PBI  BWI     121610           883
3140    SAT  BWI      78850          1407
3141    DAL  CHS      41770           977
3142    FLL  CMH      99010           973
3143    MYR  CMH       6440           488
3144    IND  DAL      62750           755
3145    MEM  DAL      41170           423
3146    MIA  DAL      77700          1109
3147    MKE  DAL      44290           850
3148    SAN  DAL     156230          1182
3149    SAV  DAL      41640           914
3150    SRQ  DAL      21330           934
3151    RSW  DAL      24710          1005
3152    HOU  DCA     100750          1218
3153    MCI  DCA     114730           949
3154    COS  DEN     262700            73
3155    MTJ  DEN     113420           196
3156    ISP  FLL      32730          1092
3157    ABQ  HOU      85450           759
3158    CRP  HOU      89320           187
3159    DCA  HOU      98060          1218
3160    JAN  HOU      75200           359
3161    MCO  ISP     171520           971
3162    FAT  LAS     119980           259
3163    OKC  LAS      87460           986
3164    LAS  LBB      42810           775
3165    HOU  LBB       4360           474
3166    DAL  LGB      42540          1232
3167    STL  LIT      50060           296
3168    LAS  MAF      37500           795
3169    HOU  MCI      73470           666
3170    DCA  MCI     119110           949
3171    SAT  MCO     101710          1041
3172    HOU  MCO     231840           849
3173    ISP  MCO     176390           971
3174    DTW  MDW     173080           228
3175    MHT  MDW      55180           838
3176    SAV  MDW      45820           758
3177    ABQ  MDW      55740          1121
3178    BDL  MDW      79740           777
3179    BUR  MDW      27990          1740
3180    SAT  MDW      77560          1036
3181    TPA  MEM       9650           655
3182    MIA  MKE       6900          1258
3183    BNA  MYR      61880           471
3184    HOU  OAK      81520          1642
3185    MCI  OAK      37410          1489
3186    DCA  OMA      45780          1012
3187    BNA  OMA       2470           612
3188    OKC  PHX     129280           833
3189    ICT  PHX      20330           870
3190    IND  PHX     191700          1488
3191    TPA  PIT     100860           873
3192    OAK  PSP      64420           418
3193    MDW  PVD      65490           842
3194    FLL  PVD      60210          1188
3195    STL  RDU      41630           667
3196    OAK  RNO      46360           181
3197    SNA  RNO       2650           415
3198    BWI  ROC     118480           277
3199    PIT  RSW      73530           966
3200    RNO  SAN      77450           488
3201    DAL  SAN     151870          1182
3202    COS  SAT       3420           732
3203    STL  SAT      42150           786
3204    HOU  SAV      34210           853
3205    LAS  SDF      57630          1624
3206    AUS  SMF      62160          1481
3207    RSW  STL     105280           979
3208    TUL  STL      49310           351
3209    RDU  STL      41960           667
3210    SJC  STL      14100          1715
3211    ISP  TPA      79540          1034
3212    PIT  TPA      98920           873
3213    IND  TPA     124730           837
3214    LAS  TUL      46910          1076
3215    STL  TUL      41690           351
3216    IAH  SAV      30230           851
3217    IAH  CLT     249570           912
3218    ELP  DFW     319900           551
3219    TLH  DFW      50650           767
3220    PHX  YUM      64030           160
3221    MRY  PHX      59750           598
3222    SBA  PHX      72420           455
3223    IAH  RIC      22060          1157
3224    DCA  BDL     103720           313
3225    MCI  BOS      60100          1256
3226    BGR  DCA      57130           590
3227    CHS  DCA     103150           444
3228    PIT  EWR      98750           319
3229    STL  EWR      45280           872
3230    JFK  IAD      21570           228
3231    CVG  IAD      37990           388
3232    IAD  CMH      43720           299
3233    CLE  LGA     122710           419
3234    JAX  LGA     134220           833
3235    ROA  LGA      16830           405
3236    AVL  ORD      40470           536
3237    DLH  ORD      31130           397
3238    SAV  ORD      58190           773
3239    CMH  PHL      58580           406
3240    ORD  CAK      40040           343
3241    DCA  SRQ      46910           851
3242    ORD  AVL      39290           536
3243    IAD  PDX      36370          2327
3244    ORD  FAT      13270          1730
3245    ORD  CAE      26100           666
3246    ORD  CWA      34820           213
3247    IAD  IAH     140220          1190
3248    ORD  ERI      24450           398
3249    TYS  IAD      24230           420
3250    IAD  MKE       5360           611
3251    CHO  ORD      13980           566
3252    ORD  SCE      31190           528
3253    IAD  AVP       7540           189
3254    MSP  CVG      98810           596
3255    GPT  MSP       1570          1024
3256    MSP  MIA     150700          1501
3257    ROC  BOS      41770           343
3258    CHA  CLT      85180           241
3259    PHL  GRR      22020           573
3260    AVL  PHL       9120           504
3261    ROA  PHL      13240           311
3262    BOS  ROC      40670           343
3263    IAH  GSP      21200           837
3264    IAD  MSY      49660           955
3265    ECP  IAH      30550           572
3266    DEN  SAF      29520           303
3267    DFW  BDL      73050          1471
3268    SJU  CLT     122820          1475
3269    CLE  DFW     177190          1021
3270    STT  DFW       7440          2225
3271    DFW  MGM      43870           622
3272    LAX  PHL     345870          2402
3273    DFW  KOA      17460          3724
3274    OGG  LAX     452880          2486
3275    PHL  SBY      14440           107
3276    DFW  SJT      52550           229
3277    ORD  MQT      17430           303
3278    CVG  PHX      36910          1569
3279    DFW  BPT      22850           270
3280    KOA  ANC       9250          2874
3281    OGG  ANC      11000          2797
3282    OME  ANC      34340           539
3283    ANC  SEA     906400          1448
3284    ANC  OME      34740           539
3285    SEA  PSG       7320           787
3286    PBI  HPN     163480          1056
3287    RSW  HPN      63760          1102
3288    RSW  PVD      36490          1200
3289    JFK  SAT      42760          1587
3290    ATW  ATL      30320           765
3291    CID  ATL      39320           694
3292    SMF  ATL     140470          2092
3293    STT  ATL     106840          1599
3294    STX  ATL      14090          1638
3295    SAV  ATL     338790           214
3296    ATL  GNV     122480           300
3297    ATL  ANC      31280          3417
3298    ATL  SHV      53160           551
3299    MSP  BZN     110670           874
3300    EWR  STL      46400           872
3301    EYW  DCA      21030          1023
3302    DAY  DFW      63590           861
3303    TXK  DFW      30720           181
3304    DFW  MRY      40310          1430
3305    CAK  CLT      65430           394
3306    DAB  CLT      89690           416
3307    HPN  DCA      50560           234
3308    TLH  DCA      18470           716
3309    CLT  SBY      37160           371
3310    CLE  PHL      56330           363
3311    SYR  DEN      46120          1492
3312    PHX  LBB      20200           588
3313    FCA  ORD      34560          1352
3314    SFO  SAT      25560          1482
3315    JAC  SFO      18090           737
3316    HNL  EWR      63760          4962
3317    SNA  EWR      96990          2434
3318    EGE  IAH       7710           934
3319    IAH  HNL      81320          3904
3320    IAD  SAN     116080          2253
3321    DEN  MOT      29190           604
3322    BNA  SFO      39590          1969
3323    SAN  BWI      69610          2295
3324    ABQ  DCA       4990          1650
3325    SAN  EUG        920           850
3326    SNA  GEG        810           962
3327    ONT  MDW      51650          1706
3328    MCO  OMA      28640          1211
3329    MDW  BUR      33310          1740
3330    BWI  SAN      64060          2295
3331    MSY  SAN      17120          1599
3332    MDW  SNA      39220          1731
3333    OAK  STL      10270          1725
3334    SJU  TPA     169040          1237
3335    IAH  CHS      32850           925
3336    PIA  DFW      38880           672
3337    PNS  DFW     154750           604
3338    RAP  DFW      51000           835
3339    BZN  IAH       8560          1385
3340    CHS  IAH      33430           925
3341    ORF  IAH      25030          1201
3342    DFW  RAP      48770           835
3343    HHH  CLT      53030           207
3344    ATW  CLT      10410           742
3345    OMA  LGA      47060          1148
3346    EWR  ORF      60430           284
3347    PBI  PHL     162820           951
3348    SJU  MSP      23390          2404
3349    BGR  PHL      53180           473
3350    GRR  PHL      21070           573
3351    HLN  DEN      21410           594
3352    SHV  DEN      13570           792
3353    DEN  SHV      13760           792
3354    SLC  PHL      65000          1927
3355    OGG  ORD      63470          4184
3356    FWA  ATL      40190           508
3357    PHX  DCA     178800          1979
3358    RIC  DFW     114390          1158
3359    TPA  DFW     386270           929
3360    DFW  PIA      40790           672
3361    PHX  SBP      51860           509
3362    DFW  CLL      49080           164
3363    ORD  PBI      79750          1143
3364    STT  PHL      15670          1605
3365    DFW  CMI      27300           692
3366    EYW  ATL     160200           646
3367    TLH  ATL     163310           223
3368    SLC  BWI      77620          1865
3369    PBI  DTW      31660          1086
3370    FSD  ORD      75970           463
3371    DFW  BFL      43260          1271
3372    MSO  DFW      44030          1320
3373    PNS  MIA      42260           530
3374    BHM  DCA      45610           653
3375    SAV  DCA      39740           519
3376    IDA  DEN      64000           458
3377    MSP  XWA      26870           553
3378    BOI  ORD      75990          1437
3379    MSP  PSC      26110          1254
3380    ASE  SFO      13530           848
3381    IAH  RNO      23720          1530
3382    HNL  DEN     102800          3365
3383    BZN  EWR      24670          1882
3384    EGE  EWR      11390          1725
3385    AUS  IAH     161580           140
3386    SFO  IND      39910          1943
3387    RSW  SFO      12320          2481
3388    SFO  RSW      12730          2481
3389    MCO  LAS     198120          2039
3390    DFW  AMA     113140           312
3391    ECP  DFW      51020           685
3392    ILM  DFW      38310          1106
3393    GUC  IAH       6170           886
3394    BOS  MCI      58340          1256
3395    OGG  SLC      25350          2935
3396    MSP  SDF      39750           604
3397    DCA  IAH     162530          1208
3398    HNL  CLT      18490          4678
3399    HNL  ATL      81670          4502
3400    KOA  DFW      16650          3724
3401    MTJ  LGA        760          1810
3402    LFT  ATL      47400           503
3403    ATL  BMI      46310           533
3404    ATL  CID      39820           694
3405    CWA  DTW      17060           363
3406    DSM  LGA      17390          1031
3407    LGA  MEM      63150           963
3408    ATL  MLI      40910           633
3409    MSP  HNL      60550          3972
3410    ATL  SBN      41260           566
3411    SJU  AUS      48470          2146
3412    DCA  GSP      48240           396
3413    PHX  DRO      29470           351
3414    PBI  CLT     249100           590
3415    BDL  CLT     236050           644
3416    ROC  CLT     102280           573
3417    SAN  CLT     198110          2077
3418    SEA  CLT     152770          2279
3419    STT  CLT      58460          1520
3420    STX  CLT       8180          1562
3421    RNO  DFW     150380          1345
3422    EGE  DFW      71240           721
3423    FAT  DFW     156100          1313
3424    ORF  DFW     107340          1212
3425    RDU  DFW     215960          1061
3426    DFW  JAC      40840          1047
3427    DFW  SGF     122050           364
3428    DFW  ABI      67510           158
3429    DFW  SJU      66470          2165
3430    IND  MIA      62060          1020
3431    PHX  BIS       5460          1094
3432    DFW  GRR      69440           931
3433    DFW  SBA      63460          1316
3434    SEA  BLI      81410            93
3435    CLE  PHX     113430          1737
3436    PHL  BTV      43370           335
3437    ORD  SAT     132650          1041
3438    DFW  SPS      24040           113
3439    JFK  SNA      28170          2454
3440    SEA  PIT      59200          2125
3441    SEA  BUR     161450           937
3442    SFO  DAL      37370          1476
3443    ANC  PHX      38930          2552
3444    PDX  ONT      53440           838
3445    AUS  PDX      45370          1715
3446    SNA  PDX     132380           859
3447    MCO  PDX      55660          2534
3448    OGG  PDX      47780          2562
3449    SEA  SBP      29050           847
3450    KOA  SAN      48640          2556
3451    ABQ  SEA      57040          1180
3452    CHS  SEA      45640          2415
3453    JNU  SEA     174200           909
3454    KTN  SEA      84610           680
3455    MSY  SEA      60050          2086
3456    SEA  SIT      44620           861
3457    ANC  SIT      15020           592
3458    KOA  SJC      73800          2384
3459    PDX  SNA     131180           859
3460    SJU  BDL      90830          1666
3461    MSY  BOS      75940          1368
3462    PDX  BOS      59440          2537
3463    ONT  JFK      49850          2429
3464    JAX  LAX      25690          2153
3465    PBI  LAX      10590          2330
3466    MVY  LGA      14970           175
3467    BDL  SJU      84430          1666
3468    DAB  ATL     170740           366
3469    ICT  ATL      89780           782
3470    MSP  GFK      56950           284
3471    SJC  ATL      86530          2116
3472    ATL  ICT      90330           782
3473    STT  BOS      17280          1693
3474    ATL  BZN      60840          1640
3475    ATL  BOI      58740          1838
3476    ATL  TLH     161630           223
3477    ATL  CAE     177510           192
3478    MSP  MOT      70340           449
3479    SLC  LWS      29780           461
3480    SLC  MFR      43590           575
3481    MEM  LAX      23890          1619
3482    DTW  MCI     103800           629
3483    LAX  MEM      25100          1619
3484    MSP  MSO      50220          1013
3485    ATL  ASE       4800          1304
3486    BIL  MSP      44430           748
3487    DTW  PDX      52630          1953
3488    SLC  TUL      41460           926
3489    ATL  MOB      85150           302
3490    ORD  TVC     108900           224
3491    DFW  DAY      66230           861
3492    BIL  DFW      31440          1081
3493    BTR  DFW      85050           383
3494    JAN  DFW      97220           408
3495    SRQ  DFW      42710           945
3496    MIA  GNV      17910           294
3497    BHM  MIA      22640           661
3498    MCO  CRW      16700           686
3499    CSG  CLT      27560           295
3500    BTV  DCA      56770           437
3501    CLT  MSN      64800           708
3502    PHL  ORF      57250           212
3503    DAB  PHL       3920           808
3504    DEN  BIS      43450           516
3505    MSP  BRD      21930           114
3506    BIS  DEN      41600           516
3507    GJT  DEN      85850           212
3508    SBP  DEN      33410           931
3509    TYS  DEN      63840          1162
3510    ASE  DFW      43890           701
3511    DRO  DFW      53610           674
3512    GJT  DFW      55990           773
3513    MSP  IAD      72110           908
3514    MSP  ATW      49840           236
3515    DTW  MQT      25650           349
3516    CLE  MSP      81540           622
3517    FCA  MSP      46190          1026
3518    SLC  OMA      59040           840
3519    MDT  ORD      95660           594
3520    SUN  ORD       3870          1341
3521    PSP  PDX      51610           873
3522    STS  PDX      23240           489
3523    EGE  PHX       1520           513
3524    STS  PHX      26620           699
3525    ORD  GEG      24390          1498
3526    DFW  IAD     137240          1172
3527    JAC  SAN       3650           828
3528    SAN  SBP      13970           263
3529    BIL  SLC      76140           387
3530    EUG  SLC      49940           618
3531    MSO  SLC      72290           436
3532    OKC  SLC      43640           866
3533    OMA  SLC      59980           840
3534    PHX  PAE      54040          1133
3535    BOI  PUW      12470           224
3536    SAN  SBA       9170           192
3537    ELP  SEA      37400          1368
3538    SBA  SEA      39270           908
3539    RIC  DEN      83570          1482
3540    SAT  IAD      58990          1362
3541    STT  IAD      32580          1606
3542    SJU  IAH     134430          2007
3543    IAH  TYS      39370           771
3544    DEN  GUC      33080           152
3545    DEN  SYR      49180          1492
3546    BTV  ORD      81760           763
3547    IAH  JAN      38060           351
3548    SFO  RNO      72080           192
3549    KOA  SFO     164490          2367
3550    LIH  SFO      91490          2447
3551    HNL  SNA      34780          2584
3552    ORD  CRW      24210           416
3553    DEN  GJT      84750           212
3554    SEA  DAL      56590          1670
3555    SRQ  DEN      23570          1531
3556    CMH  FLL      99850           973
3557    MCO  GRR      41670          1024
3558    SAN  HOU      85850          1313
3559    ELP  LAS     106140           583
3560    OGG  PHX     127030          2845
3561    AUS  PIT       3390          1210
3562    OGG  SMF      43550          2404
3563    PHL  STL     116990           814
3564    SAN  STL      55690          1557
3565    IAD  SMF      37380          2358
3566    MCI  IAD      23070           926
3567    IND  IAH      60050           844
3568    MAF  IAH     117810           429
3569    PHX  SBA      71820           455
3570    IND  CLT     169470           427
3571    CLT  GRR      82370           583
3572    MCI  PHL      42920          1038
3573    ABE  ORD      48360           654
3574    PHL  DAY      20710           477
3575    BUF  PHL      46570           279
3576    DRO  DEN      88670           251
3577    IAH  BOI      17060          1482
3578    SGF  IAH      23000           513
3579    BUR  EUG      36940           732
3580    BMI  ATL      46690           533
3581    EVV  ATL      43340           350
3582    DTW  DSM      47720           534
3583    SYR  DTW      70750           374
3584    CHO  LGA      55830           305
3585    MSN  LGA      39700           812
3586    MSN  MSP      90970           228
3587    XNA  MSP      11620           596
3588    DTW  TYS      36000           443
3589    ATL  SGF      66460           563
3590    DFW  BZN      73510          1163
3591    DFW  SBP      40720          1360
3592    RIC  CLT     258090           257
3593    DFW  MSO      42520          1320
3594    DFW  ECP      49360           685
3595    AUS  DFW     435680           190
3596    BZN  DFW      76250          1163
3597    OMA  DFW     130640           583
3598    PHX  DSM      83080          1149
3599    DFW  EUG      39650          1606
3600    DFW  BUF      53150          1212
3601    DFW  EGE      64010           721
3602    KOA  PHX      80530          2860
3603    ORD  BMI      27940           116
3604    DFW  EYW      56830          1089
3605    CLT  STT      56490          1520
3606    PHX  ANC      37420          2552
3607    AUS  BOI      15240          1375
3608    PDX  DFW     276680          1616
3609    PDX  HNL      55380          2603
3610    ANC  ORD     107390          2846
3611    TUS  PDX      21160          1119
3612    KOA  PDX      30000          2607
3613    ONT  PDX      51430           838
3614    GEG  SAN      40990          1027
3615    SIT  SEA      46240           861
3616    PDX  TUS      21020          1119
3617    BZN  BOS       4440          1991
3618    SMF  JFK      40560          2521
3619    SYR  ATL     124790           794
3620    XNA  ATL      90250           589
3621    DTW  SBN      23520           157
3622    BOI  MSP      95370          1142
3623    ATL  GTR      37420           241
3624    MIA  SLC      68820          2088
3625    CHA  DFW      56260           695
3626    CLL  DFW      48310           164
3627    EVV  DFW      44430           642
3628    MOB  DFW      57500           539
3629    MIA  SAT      35930          1143
3630    DCA  LIT      19780           888
3631    SDF  MIA      26280           910
3632    DFW  MYR      28380          1048
3633    FLL  BQN      53250           982
3634    DCA  CAE      43750           408
3635    OMA  CLT      75030           913
3636    PNS  DCA      45780           816
3637    CLT  FSD       4850          1021
3638    CLT  MHT      70460           737
3639    TYS  PHL      26400           554
3640    SFO  ABQ      35340           896
3641    SLC  BIL      73120           387
3642    SBN  DFW      39390           846
3643    GRR  DFW      67450           931
3644    MEM  DTW      51560           610
3645    ORF  DTW      60270           529
3646    SAN  GEG      41660          1027
3647    RAP  MSP      61380           489
3648    ASE  ORD      37960          1013
3649    DEN  EGE      54930           120
3650    MTJ  SFO       2030           791
3651    PSP  SJC      16220           390
3652    MFR  SLC      42470           575
3653    RDM  SLC      47040           525
3654    TUL  SLC      41670           926
3655    PAE  LAS      39480           894
3656    SBA  SAN       8900           192
3657    STS  SEA      49910           618
3658    JAC  DEN      94940           406
3659    EWR  HHH      10040           687
3660    PDX  ORD     252910          1739
3661    IAH  PNS      69880           489
3662    DEN  HLN      21060           594
3663    EWR  EYW      44390          1196
3664    IAD  SAT      54310          1362
3665    IAH  GPT      25900           376
3666    RNO  BUR      32930           374
3667    AUS  DCA      52080          1315
3668    HOU  ISP        180          1465
3669    MKE  MCO     194060          1066
3670    SJC  MDW      67930          1838
3671    OGG  OAK      85460          2349
3672    ABQ  OAK      40800           889
3673    LIH  OAK      47700          2457
3674    PIT  PHX      86560          1814
3675    LAS  ICT      13570           986
3676    MDW  CLT      79010           584
3677    KOA  SMF      10610          2435
3678    SAT  STL      39080           786
3679    HSV  DFW      91000           603
3680    PHX  FAR       7350          1225
3681    PHX  FSD      25520          1081
3682    GRR  IAH      17490          1042
3683    GSP  IAH      22060           837
3684    DFW  MLI      40380           691
3685    IAH  RDU      62470          1042
3686    CLE  DCA      58640           310
3687    SAV  IAD      34730           515
3688    SBN  LGA        890           651
3689    EWR  MEM      26850           946
3690    BDL  PHL      64210           196
3691    DAY  ORD      96850           240
3692    MOB  CLT      57850           526
3693    TYS  CLT     117030           177
3694    DAY  PHL      22010           477
3695    PHF  PHL       8410           201
3696    TYS  IAH      39620           771
3697    IAH  MOB      39430           427
3698    CAE  ATL     174550           192
3699    JFK  DTW      88030           509
3700    DFW  ANC      40800          3043
3701    DFW  BGR       2930          1717
3702    DSM  CLT      66120           815
3703    SAN  MIA      45070          2267
3704    DFW  LBB     128320           282
3705    CHS  DFW     112340           987
3706    EYW  DFW      62840          1089
3707    GSP  DFW      71530           862
3708    GUC  DFW      10900           678
3709    HNL  DFW     170950          3784
3710    IND  DFW     189330           761
3711    OKC  DFW     249540           175
3712    SAT  DFW     447170           247
3713    SBA  DFW      61670          1316
3714    DFW  MKE     121580           853
3715    JAC  JFK       5180          1894
3716    SNA  JFK      26810          2454
3717    ORD  BUF     163000           473
3718    ORD  HDN      15060          1009
3719    BDL  MIA     122890          1194
3720    MIA  ORF      45730           802
3721    DFW  SAV      85130           925
3722    AUS  SJU      50340          2146
3723    CLT  SGF      54160           708
3724    PHL  SLC      62220          1927
3725    CDV  ANC      13400           160
3726    JNU  PSG       9060           123
3727    ANC  BET      73000           399
3728    ROC  JFK      83330           264
3729    FLL  LAS     113380          2173
3730    DCA  SJU      49220          1554
3731    HPN  TPA      36360          1032
3732    MSN  ATL      87550           707
3733    DTW  MEM      49070           610
3734    PVD  EWR      44890           160
3735    SYR  DFW      34130          1336
3736    LFT  DFW      64950           351
3737    TLH  MIA      52550           402
3738    MIA  OKC      11580          1222
3739    MCO  MKE     194420          1066
3740    CLT  CID      45000           742
3741    CID  CLT      44280           742
3742    MEM  CLT     178450           511
3743    BUF  DCA      54220           296
3744    GRR  DCA      28120           524
3745    DCA  MEM      60270           762
3746    DCA  ALB      67910           318
3747    MHK  DFW      45410           431
3748    TUS  IAH      51240           936
3749    MTJ  LAX       1940           666
3750    DEN  LWS      12320           768
3751    AVP  ORD      53220           632
3752    SYR  ORD     128140           607
3753    JAC  ORD      46750          1162
3754    ROW  PHX      14880           433
3755    DEN  SBP      33970           931
3756    BZN  SFO      32660           807
3757    GJT  SLC      12770           216
3758    ANC  ADQ      71340           253
3759    ORD  HSV      27300           510
3760    IAH  BRO      36340           308
3761    SMF  IAD      39980          2358
3762    ABQ  IAH      62360           744
3763    HNL  ORD      98660          4243
3764    RDU  SFO      47820          2400
3765    BWI  ABQ      12990          1670
3766    SAN  BNA      68070          1751
3767    SJC  BNA      27780          1947
3768    ABQ  BWI      11030          1670
3769    SRQ  BWI     130920           880
3770    ALB  DEN      21430          1610
3771    DEN  JAX      75880          1447
3772    TPA  HDN         50          1647
3773    SLC  HOU      43800          1214
3774    BHM  LAS      20600          1618
3775    CMH  LAS     138470          1771
3776    SDF  LAS      63040          1624
3777    BUF  LAS      17560          1986
3778    SAT  LAS     194520          1069
3779    PHX  LIT       2470          1136
3780    CMH  MCO     224870           802
3781    PDX  MDW      65430          1751
3782    MCO  MHT     106430          1142
3783    TPA  MHT      18360          1204
3784    TPA  MKE      83580          1075
3785    DAL  PDX       6060          1626
3786    MDW  PDX      65310          1751
3787    BUF  PHX      10480          1912
3788    SDF  PHX      20320          1506
3789    FLL  SAT       7190          1145
3790    DAL  SDF      15030           725
3791    HOU  SMF      42540          1624
3792    STL  SMF      30150          1679
3793    SMF  STL      32390          1679
3794    CID  DFW      57810           685
3795    FAR  DFW      38280           968
3796    IAD  DTW     115090           383
3797    IAH  HSV      30850           595
3798    CID  PHX      20870          1252
3799    FAR  PHX       7620          1225
3800    GRR  CLT      80400           583
3801    DAY  LGA      14310           549
3802    PIT  RDU      29840           328
3803    ROA  ORD      30670           530
3804    HSV  IAD      13850           596
3805    DCA  OKC      45780          1158
3806    PHL  ORH       1040           241
3807    ORD  BIL       3920          1061
3808    CLT  HHH      52990           207
3809    JFK  BWI      54580           184
3810    MCO  MIA     301180           192
3811    JFK  CHS     128670           636
3812    ORH  FLL      27140          1211
3813    ORH  JFK      27660           150
3814    FLL  ORH      28570          1211
3815    JFK  ORH      30720           150
3816    STT  SJU      39990            68
3817    SJU  STT      34100            68
3818    ATL  MSN      91700           707
3819    MCO  BMI       6510           936
3820    RSW  BUF      26120          1144
3821    FSD  DEN     104880           483
3822    HRL  DEN      10430          1023
3823    ONT  DEN     292380           819
3824    LAS  DSM      41350          1216
3825    LAS  DRO       3680           418
3826    LAS  FSD       7580          1104
3827    MCO  HRL       3950          1016
3828    MCO  ILG       7570           841
3829    MYR  ISP      12250           586
3830    RSW  ISP      31110          1101
3831    STL  LAS     281200          1371
3832    CLE  MCO     321840           895
3833    ONT  MCO      40100          2171
3834    TTN  ORD       2770           692
3835    ISP  PBI      96520          1052
3836    MCO  PWM      20320          1214
3837    RSW  PWM       9580          1343
3838    BDL  RDU       8660           532
3839    TTN  RDU      18120           373
3840    ISP  RSW      30560          1101
3841    MCO  SWF      24640           989
3842    TPA  SWF      17180          1047
3843    TPA  SYR      14110          1104
3844    GRR  TPA      12130          1041
3845    ATL  TTN      47880           701
3846    ORD  TTN       2530           692
3847    PBI  TTN      50200           985
3848    TPA  TTN      41670           955
3849    MIA  CHS      39240           489
3850    PBI  ACY      24570           936
3851    TPA  ACY      42940           913
3852    RSW  CAK       6990           991
3853    LAX  CMH      36190          1995
3854    ACY  PBI      25670           936
3855    SDF  FLL      21430           895
3856    PNS  IND       1430           639
3857    CLE  LAS     140090          1824
3858    PIT  LAX      41350          2136
3859    MYR  LBE      28500           455
3860    MYR  LGA     111270           563
3861    ACY  MCO     106780           852
3862    MHT  MCO     102340          1142
3863    STT  MCO      56440          1246
3864    EWR  MYR     108440           550
3865    LBE  MYR      29660           455
3866    LGA  MYR     110790           563
3867    MCO  STT      53410          1246
3868    MYR  ORD      64760           753
3869    MYR  PHL      72550           473
3870    ACY  RSW      60890           982
3871    LBE  RSW       7960           956
3872    FLL  SDF      21100           895
3873    DCA  TYS      42880           437
3874    MRY  LAX      27740           266
3875    BFL  SFO      14860           238
3876    BIL  DEN      94900           455
3877    IAD  ABE       6120           159
3878    MCI  ORD     189870           403
3879    HOU  DTW      13470          1092
3880    MDW  SAV      42550           758
3881    HNL  ITO     140910           216
3882    OKC  IAH     104690           395
3883    LGA  ORH       7960           146
3884    DCA  CLE      57380           310
3885    MSP  AVL      18870           861
3886    AVL  MSP      18350           861
3887    IND  MSP     128600           503
3888    PBI  MSP      11140          1451
3889    MSP  PBI      11470          1451
3890    MSP  PGD      12270          1386
3891    LBB  IAH      27560           458
3892    GUM  HNL      75820          3801
3893    EGE  JFK       9840          1746
3894    PDX  ANC      59640          1542
3895    SLC  ANC      28340          2125
3896    RIC  IAH      22010          1157
3897    KOA  ORD      15060          4213
3898    STL  SJC      17420          1715
3899    RST  ATL       1860           831
3900    GRB  DTW      51390           287
3901    MCI  CLT     138040           808
3902    OKC  CLT      71050           940
3903    SRQ  CLT     130470           547
3904    XNA  DFW     150720           280
3905    DSM  PHX      80010          1149
3906    OTZ  ANC      31610           548
3907    ANC  AKN      20490           288
3908    DCA  SEA     106470          2329
3909    HPN  PBI     158320          1056
3910    JFK  STT      76560          1623
3911    CVG  ATL     290370           373
3912    ELP  ATL      98170          1282
3913    ROC  ATL     118460           749
3914    CVG  LAS     112040          1678
3915    SLC  CPR      14850           320
3916    MSP  ABR      25970           257
3917    ORF  EWR      52450           284
3918    DFW  GSO      60230           999
3919    DFW  BIL      31010          1081
3920    CLT  BTR      47800           675
3921    DCA  CRW      13080           249
3922    ORF  DCA      68180           142
3923    PHL  GSP      34220           515
3924    GSP  PHL      36420           515
3925    MSN  PHL      16170           764
3926    ORF  PHL      58560           212
3927    DEN  GCC      21540           313
3928    ASE  DEN     115630           125
3929    FCA  DEN     104790           752
3930    MFR  DEN      74010           964
3931    MOT  DEN      28710           604
3932    IDA  DFW      34510          1095
3933    SAF  DFW      65000           551
3934    MFR  PHX      33220           854
3935    SFO  SUN       8280           587
3936    LAX  EUG      35090           748
3937    DEN  TWF       1740           542
3938    IAH  ABQ      61920           744
3939    IND  SFO      41170          1943
3940    BUR  ATL       1390          1941
3941    LAS  BUF      17840          1986
3942    PHX  BUF       9240          1912
3943    JAX  BWI     136110           663
3944    HOU  CMH      33650          1001
3945    DAL  CMH      44500           919
3946    HDN  DAL       4230           779
3947    RDU  DAL      46530          1052
3948    RSW  GRR      21730          1147
3949    TUL  PHX      67430           935
3950    HOU  ECP      59940           571
3951    PHX  SDF      16690          1506
3952    PHX  CID      24430          1252
3953    BMI  DFW      38350           690
3954    PBI  IAH      17750           956
3955    HHH  ATL      32170           238
3956    LGA  DAY      16060           549
3957    EYW  IAD      14440          1023
3958    IAD  BTV      51390           441
3959    MKE  PHL      43520           690
3960    IAD  JFK      22290           228
3961    ATL  MGM      57130           147
3962    DFW  DRO      52960           674
3963    CLT  FLO      31200            99
3964    CLT  HSV      61590           333
3965    PHL  FLL     343130           992
3966    DCA  CHS     108920           444
3967    DFW  LRD      59750           396
3968    AUS  CVG      50970           958
3969    JFK  PHL       8930            94
3970    MIA  GSO      10910           710
3971    TUL  DFW     230060           237
3972    DFW  BMI      40300           690
3973    ORD  LSE      36190           215
3974    PHX  BFL      58910           425
3975    CLT  SBN      41450           534
3976    PHL  ROC      39300           257
3977    PHL  JFK       8060            94
3978    CLT  ONT      30040          2078
3979    CLT  TRI      57600           119
3980    DCA  BTV      58140           437
3981    ORD  RST      30990           268
3982    CMH  MIA      36100           990
3983    DFW  DRT      22630           335
3984    CLT  CRW      59290           221
3985    CLT  EVV      30200           414
3986    SEA  GTF      23060           512
3987    PDX  PSP      49350           873
3988    PDX  RNO      39370           444
3989    BUF  JFK     137250           301
3990    JFK  PWM      55460           273
3991    FLL  CHS      24590           470
3992    JFK  ACK      23860           199
3993    SDF  ATL     277260           321
3994    DTW  ATW      37450           296
3995    DTW  ALB      65770           489
3996    MSP  ICT      25350           545
3997    ATL  RST       2340           831
3998    CVG  FLL      36050           932
3999    DTW  CWA      16910           363
4000    DTW  CHA      13900           505
4001    SJU  JAX      20920          1288
4002    SYR  JFK      58300           209
4003    TUL  CLT      69010           842
4004    SAN  MSY      15600          1599
4005    SNA  HOU      20510          1357
4006    RSW  MCO      43090           133
4007    SMF  SFO      39330            86
4008    MLI  MSP      22050           274
4009    BHM  ATL     316340           134
4010    TYS  ATL     194120           152
4011    TUS  PHX     146690           110
4012    PDX  GEG      74320           279
4013    IND  DTW      85940           231
4014    SAN  LIH      51380          2676
4015    AGS  CLT      87360           140
4016    BDL  IAD     114230           326
4017    RDU  CLT     370480           130
4018    MYR  FLL      54910           529
4019    EYW  MIA      73140           126
4020    IND  ORD     153760           177
4021    ANC  PDX      67120          1542
4022    XNA  ORD      88300           522
4023    CHS  CLT     221320           168
4024    DCA  PHL      39710           119
4025    ALB  PHL      44870           212
4026    ROA  IAD      14510           177
4027    IAH  MLU       4030           262
4028    MIA  IAD      49850           921
4029    HOU  SLC      46330          1214
4030    SJC  HNL     148740          2417
4031    BNA  SJC      29100          1947
4032    DAL  RSW      23290          1005
4033    KOA  HNL     156650           163
4034    PIT  HOU       3310          1131
4035    SHV  IAH      32190           192
4036    MSP  ESC       8790           304
4037    EWR  IAD      97830           212
4038    FLL  STT      51530          1107
4039    FLG  PHX      49980           119
4040    BZN  SLC     113410           347
4041    DEN  ATY       1450           519
4042    CLT  MDW      78800           584
4043    PIT  STL      44020           554
4044    CHS  DAL      40360           977
4045    SJC  OGG     119930          2355
4046    MCO  BUR       1390          2215
4047    PSE  MCO      65760          1179
4048    JAN  BWI      26420           888
4049    GRR  ORD     151160           137
4050    SAT  IAH     217290           191
4051    PDX  KOA      31200          2607
4052    ANC  SLC      33260          2125
4053    JNU  ANC      76270           571
4054    GSP  ATL     305850           153
4055    SLC  OGG      26760          2935
4056    ILM  CLT     187290           185
4057    SJU  MDW      11150          2057
4058    STL  ORD     160470           258
4059    JAX  CLT     246090           328
4060    SAV  CLT     186750           213
4061    RNO  AUS      23610          1405
4062    STL  SNA      16580          1569
4063    MYR  PIT      28580           475
4064    COS  MDW      56850           917
4065    SJC  DFW     122530          1438
4066    MIA  PIT      54710          1013
4067    SIT  ANC      15400           592
4068    BOS  PDX      57670          2537
4069    DCA  PDX      41570          2350
4070    LAX  RSW      17700          2238
4071    BWI  SEA      68570          2335
4072    HPN  MCO      89110           972
4073    BOS  MSY      76640          1368
4074    HDN  ATL      14170          1340
4075    HPN  ATL     117390           780
4076    ATL  RNO       3320          1993
4077    MEM  SLC      47680          1262
4078    MYR  EWR     107660           550
4079    SGF  CLT      56110           708
4080    MIA  RIC      27180           825
4081    BHM  CLT     111220           350
4082    BTV  CLT      54340           761
4083    CLT  ITH      16390           557
4084    PWM  PHL      71090           364
4085    DFW  ASE      43080           701
4086    CSG  DFW      15670           705
4087    TUL  LAX      21300          1283
4088    IAH  STT      24230          2070
4089    IND  AUS      75290           919
4090    PIT  SRQ      20570           912
4091    PHX  SGU      30260           262
4092    PWM  ORD      87070           900
4093    AUS  PHL      65060          1430
4094    SRQ  PHL      34320           957
4095    ICT  IAH      36600           542
4096    MSP  ANC     101830          2519
4097    BMI  DEN      10120           834
4098    MCO  GRB       8110          1169
4099    ATL  ISP      34490           795
4100    MEM  LAS      38090          1416
4101    HSV  MCO       8100           535
4102    MSN  MCO       8630          1109
4103    PNS  MCO      32970           381
4104    SWF  MCO      26810           989
4105    PVD  MIA       1970          1209
4106    MCO  MSN       8970          1109
4107    RSW  SYR      12630          1186
4108    DTW  PLN      27890           243
4109    SAT  CLT     167650          1095
4110    IAD  DFW     137710          1172
4111    MIA  GSP      12780           637
4112    KTN  SIT       4730           183
4113    ANC  YAK       3520           373
4114    PSP  BOS        670          2517
4115    BOS  SJC       5560          2689
4116    LAX  CVG      45410          1900
4117    SLC  TWF      18500           175
4118    ATL  DHN      39250           170
4119    SLC  GTF      35030           463
4120    SLC  BTM      16330           358
4121    ATL  CRW      35630           363
4122    CVG  SLC      78260          1450
4123    SGF  DFW     120220           364
4124    JAN  CLT      60740           562
4125    PNS  CLT     104970           488
4126    PVD  CLT     143100           683
4127    IND  PHL      69820           588
4128    DCA  TLH      17470           716
4129    COU  DFW      41880           489
4130    MQT  DTW      27500           349
4131    MSP  MQT       4690           300
4132    JAC  LAX      17390           784
4133    DFW  STS      20020          1495
4134    DEN  XWA      37120           582
4135    GRR  MSP     117100           408
4136    MSP  OKC      24570           694
4137    DEN  SGU      18790           517
4138    IAH  HRL      42570           295
4139    OGG  EWR      13670          4904
4140    ITO  LAX      35420          2449
4141    COS  ORD      57390           911
4142    MDW  ABQ      50030          1121
4143    MDW  SJU       8160          2057
4144    SMF  AUS      59700          1481
4145    BUR  DAL      26290          1243
4146    BHM  HOU      49060           570
4147    JAX  HOU      33920           816
4148    BNA  SNA      40030          1772
4149    PVD  TPA      71340          1136
4150    FSD  DFW      46880           737
4151    LEX  CLT      66640           281
4152    IAH  BZN       8060          1385
4153    IAH  XNA      27500           438
4154    JAC  EWR      11740          1874
4155    HNL  MSP      61040          3972
4156    ORF  BOS      10280           468
4157    BGR  LGA      51210           378
4158    BTV  LGA      38910           258
4159    ROC  LGA      46390           254
4160    SYR  LGA      47750           198
4161    BOS  ORF      11290           468
4162    CLT  JAC       1920          1685
4163    AMA  DFW     115160           312
4164    ORD  ELP      53020          1236
4165    DFW  GSP      72290           862
4166    CLT  MGM      30540           372
                                      origin_name origin_cbsa
1                    Newark Liberty International       35620
2         Fort Lauderdale-Hollywood International       33100
3                      Jacksonville International       27260
4                       Los Angeles International       31080
5                       Los Angeles International       31080
6                       Los Angeles International       31080
7                                       LaGuardia       35620
8                                       LaGuardia       35620
9                           Orlando International       36740
10                            Miami International       33100
11      Louis Armstrong New Orleans International       35380
12                Southwest Florida International       15980
13                   Seattle/Tacoma International       42660
14                   Seattle/Tacoma International       42660
15                   Seattle/Tacoma International       42660
16                   Salt Lake City International       41620
17                            Tampa International       45300
18       Hartsfield-Jackson Atlanta International       12060
19       Hartsfield-Jackson Atlanta International       12060
20       Hartsfield-Jackson Atlanta International       12060
21       Hartsfield-Jackson Atlanta International       12060
22       Hartsfield-Jackson Atlanta International       12060
23       Hartsfield-Jackson Atlanta International       12060
24       Hartsfield-Jackson Atlanta International       12060
25       Hartsfield-Jackson Atlanta International       12060
26       Hartsfield-Jackson Atlanta International       12060
27       Hartsfield-Jackson Atlanta International       12060
28       Hartsfield-Jackson Atlanta International       12060
29       Hartsfield-Jackson Atlanta International       12060
30       Hartsfield-Jackson Atlanta International       12060
31       Hartsfield-Jackson Atlanta International       12060
32       Hartsfield-Jackson Atlanta International       12060
33       Hartsfield-Jackson Atlanta International       12060
34                     Detroit Metro Wayne County       19820
35                     Detroit Metro Wayne County       19820
36              Minneapolis-St Paul International       33460
37              Minneapolis-St Paul International       33460
38              Minneapolis-St Paul International       33460
39              Minneapolis-St Paul International       33460
40                   Salt Lake City International       41620
41                   Salt Lake City International       41620
42                   Salt Lake City International       41620
43       Hartsfield-Jackson Atlanta International       12060
44       Hartsfield-Jackson Atlanta International       12060
45              Minneapolis-St Paul International       33460
46              Minneapolis-St Paul International       33460
47       Hartsfield-Jackson Atlanta International       12060
48       Hartsfield-Jackson Atlanta International       12060
49       Hartsfield-Jackson Atlanta International       12060
50       Hartsfield-Jackson Atlanta International       12060
51       Hartsfield-Jackson Atlanta International       12060
52       Hartsfield-Jackson Atlanta International       12060
53       Hartsfield-Jackson Atlanta International       12060
54                  John F. Kennedy International       35620
55                      Los Angeles International       31080
56                                      LaGuardia       35620
57              Minneapolis-St Paul International       33460
58                   Salt Lake City International       41620
59                   Salt Lake City International       41620
60              Minneapolis-St Paul International       33460
61              Minneapolis-St Paul International       33460
62              Minneapolis-St Paul International       33460
63              Minneapolis-St Paul International       33460
64                   Salt Lake City International       41620
65                   Salt Lake City International       41620
66                   Salt Lake City International       41620
67                   Salt Lake City International       41620
68                   Salt Lake City International       41620
69                   Salt Lake City International       41620
70                   Salt Lake City International       41620
71                   Salt Lake City International       41620
72                   Salt Lake City International       41620
73       Hartsfield-Jackson Atlanta International       12060
74       Hartsfield-Jackson Atlanta International       12060
75       Hartsfield-Jackson Atlanta International       12060
76                     Detroit Metro Wayne County       19820
77       Hartsfield-Jackson Atlanta International       12060
78       Hartsfield-Jackson Atlanta International       12060
79       Hartsfield-Jackson Atlanta International       12060
80       Hartsfield-Jackson Atlanta International       12060
81       Hartsfield-Jackson Atlanta International       12060
82       Hartsfield-Jackson Atlanta International       12060
83       Hartsfield-Jackson Atlanta International       12060
84       Hartsfield-Jackson Atlanta International       12060
85       Hartsfield-Jackson Atlanta International       12060
86       Hartsfield-Jackson Atlanta International       12060
87       Hartsfield-Jackson Atlanta International       12060
88                      Los Angeles International       31080
89                      Los Angeles International       31080
90                      Los Angeles International       31080
91                      Los Angeles International       31080
92                      Los Angeles International       31080
93              Minneapolis-St Paul International       33460
94              Minneapolis-St Paul International       33460
95                   Seattle/Tacoma International       42660
96                   Salt Lake City International       41620
97       Hartsfield-Jackson Atlanta International       12060
98       Hartsfield-Jackson Atlanta International       12060
99       Hartsfield-Jackson Atlanta International       12060
100      Hartsfield-Jackson Atlanta International       12060
101      Hartsfield-Jackson Atlanta International       12060
102      Hartsfield-Jackson Atlanta International       12060
103      Hartsfield-Jackson Atlanta International       12060
104                    Detroit Metro Wayne County       19820
105                     Los Angeles International       31080
106                     Los Angeles International       31080
107             Minneapolis-St Paul International       33460
108                  Salt Lake City International       41620
109      Hartsfield-Jackson Atlanta International       12060
110      Hartsfield-Jackson Atlanta International       12060
111      Hartsfield-Jackson Atlanta International       12060
112      Hartsfield-Jackson Atlanta International       12060
113      Hartsfield-Jackson Atlanta International       12060
114      Hartsfield-Jackson Atlanta International       12060
115      Hartsfield-Jackson Atlanta International       12060
116                    Detroit Metro Wayne County       19820
117                    Detroit Metro Wayne County       19820
118                        McCarran International       29820
119                     Los Angeles International       31080
120                     Los Angeles International       31080
121                         Orlando International       36740
122                         Orlando International       36740
123                           Miami International       33100
124                           Miami International       33100
125               Southwest Florida International       15980
126                  Seattle/Tacoma International       42660
127                  Seattle/Tacoma International       42660
128                  Seattle/Tacoma International       42660
129                  Seattle/Tacoma International       42660
130                  Salt Lake City International       41620
131                  Salt Lake City International       41620
132                  Salt Lake City International       41620
133                  Salt Lake City International       41620
134                           Tampa International       45300
135                       San Diego International       41740
136                     Los Angeles International       31080
137                  Seattle/Tacoma International       42660
138      Hartsfield-Jackson Atlanta International       12060
139                    Detroit Metro Wayne County       19820
140                    Detroit Metro Wayne County       19820
141                    Detroit Metro Wayne County       19820
142                    Detroit Metro Wayne County       19820
143                 John F. Kennedy International       35620
144                 John F. Kennedy International       35620
145             Minneapolis-St Paul International       33460
146             Minneapolis-St Paul International       33460
147                  Raleigh-Durham International       39580
148                  Salt Lake City International       41620
149                  Salt Lake City International       41620
150      Hartsfield-Jackson Atlanta International       12060
151      Hartsfield-Jackson Atlanta International       12060
152      Hartsfield-Jackson Atlanta International       12060
153                       Nashville International       34980
154    Cincinnati/Northern Kentucky International       17140
155    Cincinnati/Northern Kentucky International       17140
156               Dallas/Fort Worth International       19100
157                    Detroit Metro Wayne County       19820
158                    Detroit Metro Wayne County       19820
159                    Detroit Metro Wayne County       19820
160                    Detroit Metro Wayne County       19820
161                 Daniel K Inouye International       46520
162                 John F. Kennedy International       35620
163                 John F. Kennedy International       35620
164                  Raleigh-Durham International       39580
165                     San Antonio International       41700
166                  Seattle/Tacoma International       42660
167                  Salt Lake City International       41620
168                  Salt Lake City International       41620
169                  Salt Lake City International       41620
170                  Salt Lake City International       41620
171      Hartsfield-Jackson Atlanta International       12060
172                    Detroit Metro Wayne County       19820
173                    Detroit Metro Wayne County       19820
174                    Detroit Metro Wayne County       19820
175                    Detroit Metro Wayne County       19820
176                    Detroit Metro Wayne County       19820
177       Fort Lauderdale-Hollywood International       33100
178             Minneapolis-St Paul International       33460
179             Minneapolis-St Paul International       33460
180             Minneapolis-St Paul International       33460
181             Minneapolis-St Paul International       33460
182             Minneapolis-St Paul International       33460
183                  Chicago O'Hare International       16980
184              Sarasota/Bradenton International       35840
185                           Tampa International       45300
186                     Los Angeles International       31080
187      Hartsfield-Jackson Atlanta International       12060
188      Hartsfield-Jackson Atlanta International       12060
189             Minneapolis-St Paul International       33460
190      Hartsfield-Jackson Atlanta International       12060
191      Hartsfield-Jackson Atlanta International       12060
192      Hartsfield-Jackson Atlanta International       12060
193      Hartsfield-Jackson Atlanta International       12060
194                    Detroit Metro Wayne County       19820
195                    Detroit Metro Wayne County       19820
196                 John F. Kennedy International       35620
197                                     LaGuardia       35620
198             Minneapolis-St Paul International       33460
199      Hartsfield-Jackson Atlanta International       12060
200      Hartsfield-Jackson Atlanta International       12060
201      Hartsfield-Jackson Atlanta International       12060
202      Hartsfield-Jackson Atlanta International       12060
203      Hartsfield-Jackson Atlanta International       12060
204             Minneapolis-St Paul International       33460
205                  Salt Lake City International       41620
206      Hartsfield-Jackson Atlanta International       12060
207      Hartsfield-Jackson Atlanta International       12060
208      Hartsfield-Jackson Atlanta International       12060
209             Minneapolis-St Paul International       33460
210      Hartsfield-Jackson Atlanta International       12060
211      Hartsfield-Jackson Atlanta International       12060
212      Hartsfield-Jackson Atlanta International       12060
213      Hartsfield-Jackson Atlanta International       12060
214              Austin - Bergstrom International       12420
215                       Nashville International       34980
216                           Logan International       14460
217             Ronald Reagan Washington National       47900
218                          Denver International       19740
219               Dallas/Fort Worth International       19100
220                    Detroit Metro Wayne County       19820
221                    Detroit Metro Wayne County       19820
222                    Detroit Metro Wayne County       19820
223                  Newark Liberty International       35620
224                        McCarran International       29820
225                     Los Angeles International       31080
226                                     LaGuardia       35620
227                                     LaGuardia       35620
228                         Orlando International       36740
229     Louis Armstrong New Orleans International       35380
230                  Chicago O'Hare International       16980
231                        Portland International       38900
232                    Philadelphia International       37980
233                  Raleigh-Durham International       39580
234               Southwest Florida International       15980
235                  Seattle/Tacoma International       42660
236                           Tampa International       45300
237                    Detroit Metro Wayne County       19820
238                    Detroit Metro Wayne County       19820
239             Minneapolis-St Paul International       33460
240             Minneapolis-St Paul International       33460
241      Hartsfield-Jackson Atlanta International       12060
242      Hartsfield-Jackson Atlanta International       12060
243                  Salt Lake City International       41620
244                  Salt Lake City International       41620
245      Hartsfield-Jackson Atlanta International       12060
246             Minneapolis-St Paul International       33460
247                  Salt Lake City International       41620
248      Hartsfield-Jackson Atlanta International       12060
249                           Logan International       14460
250                    Detroit Metro Wayne County       19820
251                                     LaGuardia       35620
252                                     LaGuardia       35620
253             Minneapolis-St Paul International       33460
254             Minneapolis-St Paul International       33460
255                  Seattle/Tacoma International       42660
256      Hartsfield-Jackson Atlanta International       12060
257      Hartsfield-Jackson Atlanta International       12060
258             Minneapolis-St Paul International       33460
259                  Seattle/Tacoma International       42660
260                  Salt Lake City International       41620
261                  Salt Lake City International       41620
262                  Salt Lake City International       41620
263                  Salt Lake City International       41620
264      Hartsfield-Jackson Atlanta International       12060
265      Hartsfield-Jackson Atlanta International       12060
266                    Detroit Metro Wayne County       19820
267             Minneapolis-St Paul International       33460
268      Hartsfield-Jackson Atlanta International       12060
269                 John F. Kennedy International       35620
270             Minneapolis-St Paul International       33460
271      Hartsfield-Jackson Atlanta International       12060
272      Hartsfield-Jackson Atlanta International       12060
273      Hartsfield-Jackson Atlanta International       12060
274                    Detroit Metro Wayne County       19820
275       Fort Lauderdale-Hollywood International       33100
276                        McCarran International       29820
277                     Los Angeles International       31080
278                     Los Angeles International       31080
279                         Orlando International       36740
280                  Seattle/Tacoma International       42660
281      Hartsfield-Jackson Atlanta International       12060
282      Hartsfield-Jackson Atlanta International       12060
283                                     LaGuardia       35620
284                    Detroit Metro Wayne County       19820
285                  Seattle/Tacoma International       42660
286                  Salt Lake City International       41620
287                  Salt Lake City International       41620
288      Hartsfield-Jackson Atlanta International       12060
289      Hartsfield-Jackson Atlanta International       12060
290                    Detroit Metro Wayne County       19820
291                    Detroit Metro Wayne County       19820
292                        McCarran International       29820
293                     Los Angeles International       31080
294             Minneapolis-St Paul International       33460
295              Phoenix Sky Harbor International       38060
296                       San Diego International       41740
297                  Salt Lake City International       41620
298              John Wayne Airport-Orange County       31080
299                  Seattle/Tacoma International       42660
300                  Salt Lake City International       41620
301                  Salt Lake City International       41620
302             Minneapolis-St Paul International       33460
303                  Salt Lake City International       41620
304                            Boise Air Terminal       14260
305               Dallas/Fort Worth International       19100
306                    Detroit Metro Wayne County       19820
307                    Detroit Metro Wayne County       19820
308                    Detroit Metro Wayne County       19820
309                  Newark Liberty International       35620
310                         Spokane International       44060
311                 John F. Kennedy International       35620
312                        McCarran International       29820
313                     Los Angeles International       31080
314             Minneapolis-St Paul International       33460
315                         Ontario International       40140
316                       San Diego International       41740
317                   San Francisco International       41860
318       Norman Y. Mineta San Jose International       41940
319              John Wayne Airport-Orange County       31080
320             Minneapolis-St Paul International       33460
321                  Salt Lake City International       41620
322      Hartsfield-Jackson Atlanta International       12060
323             Minneapolis-St Paul International       33460
324                  Seattle/Tacoma International       42660
325                  Salt Lake City International       41620
326      Hartsfield-Jackson Atlanta International       12060
327             Minneapolis-St Paul International       33460
328      Hartsfield-Jackson Atlanta International       12060
329      Hartsfield-Jackson Atlanta International       12060
330      Hartsfield-Jackson Atlanta International       12060
331                    Detroit Metro Wayne County       19820
332                    Detroit Metro Wayne County       19820
333                 John F. Kennedy International       35620
334                                     LaGuardia       35620
335             Minneapolis-St Paul International       33460
336                        McCarran International       29820
337                         Ontario International       40140
338                        McCarran International       29820
339                         Orlando International       36740
340                         Orlando International       36740
341                          Denver International       19740
342                        McCarran International       29820
343                    Philadelphia International       37980
344                 Fresno Yosemite International       23420
345                  Chicago O'Hare International       16980
346                           Tampa International       45300
347                           Tampa International       45300
348                                Trenton Mercer       45940
349                          Denver International       19740
350                        McCarran International       29820
351                    Philadelphia International       37980
352                        McCarran International       29820
353                        McCarran International       29820
354                         Orlando International       36740
355                           Tampa International       45300
356                       San Diego International       41740
357                Luis Munoz Marin International       41980
358                        McCarran International       29820
359                        McCarran International       29820
360                  Newark Liberty International       35620
361               Washington Dulles International       47900
362                  Newark Liberty International       35620
363                  Chicago O'Hare International       16980
364               Washington Dulles International       47900
365                  Chicago O'Hare International       16980
366                  Chicago O'Hare International       16980
367                  Newark Liberty International       35620
368               Cleveland-Hopkins International       17460
369               Charlotte Douglas International       16740
370             Ronald Reagan Washington National       47900
371                  Piedmont Triad International       24660
372                    Indianapolis International       26900
373               Greater Rochester International       40380
374               Washington Dulles International       47900
375                  Newark Liberty International       35620
376                  Chicago O'Hare International       16980
377                           Hilton Head Airport       25940
378                    Indianapolis International       26900
379               Washington Dulles International       47900
380                  Chicago O'Hare International       16980
381                  Chicago O'Hare International       16980
382                  Chicago O'Hare International       16980
383                  Newark Liberty International       35620
384                  Newark Liberty International       35620
385               Washington Dulles International       47900
386               Washington Dulles International       47900
387                  Newark Liberty International       35620
388                  Newark Liberty International       35620
389                  Newark Liberty International       35620
390                  Chicago O'Hare International       16980
391                  Chicago O'Hare International       16980
392                  Newark Liberty International       35620
393                  Newark Liberty International       35620
394               Washington Dulles International       47900
395                  Chicago O'Hare International       16980
396                  Chicago O'Hare International       16980
397                  Chicago O'Hare International       16980
398                  Chicago O'Hare International       16980
399               Charlotte Douglas International       16740
400                           Miami International       33100
401                  Chicago O'Hare International       16980
402                       Nashville International       34980
403    Cincinnati/Northern Kentucky International       17140
404                             Will Rogers World       36420
405                  Chicago O'Hare International       16980
406              Austin - Bergstrom International       12420
407                  Chicago O'Hare International       16980
408                  Chicago O'Hare International       16980
409                  Chicago O'Hare International       16980
410                  Chicago O'Hare International       16980
411               Dallas/Fort Worth International       19100
412                  Chicago O'Hare International       16980
413               Dallas/Fort Worth International       19100
414               Dallas/Fort Worth International       19100
415               Dallas/Fort Worth International       19100
416                  Chicago O'Hare International       16980
417             Ronald Reagan Washington National       47900
418             Ronald Reagan Washington National       47900
419                           Miami International       33100
420                           Miami International       33100
421                           Miami International       33100
422                  Chicago O'Hare International       16980
423               Dallas/Fort Worth International       19100
424                    Detroit Metro Wayne County       19820
425                         Memphis International       32820
426                         Lake Charles Regional       29340
427                             Montrose Regional       33940
428               Dallas/Fort Worth International       19100
429                  Chicago O'Hare International       16980
430               Dallas/Fort Worth International       19100
431                  Chicago O'Hare International       16980
432                  Chicago O'Hare International       16980
433               Dallas/Fort Worth International       19100
434                  Chicago O'Hare International       16980
435               Dallas/Fort Worth International       19100
436               Dallas/Fort Worth International       19100
437               Dallas/Fort Worth International       19100
438               Dallas/Fort Worth International       19100
439               Dallas/Fort Worth International       19100
440               Charlotte Douglas International       16740
441                           Miami International       33100
442                  Chicago O'Hare International       16980
443                  Chicago O'Hare International       16980
444                  Chicago O'Hare International       16980
445               Dallas/Fort Worth International       19100
446               Dallas/Fort Worth International       19100
447               Dallas/Fort Worth International       19100
448               Dallas/Fort Worth International       19100
449               Dallas/Fort Worth International       19100
450               Charlotte Douglas International       16740
451                  Chicago O'Hare International       16980
452               Dallas/Fort Worth International       19100
453                  Chicago O'Hare International       16980
454                      Pittsburgh International       38300
455               Dallas/Fort Worth International       19100
456                  Chicago O'Hare International       16980
457               Dallas/Fort Worth International       19100
458                  Chicago O'Hare International       16980
459                  Chicago O'Hare International       16980
460               Dallas/Fort Worth International       19100
461                  Chicago O'Hare International       16980
462              Austin - Bergstrom International       12420
463    Cincinnati/Northern Kentucky International       17140
464                  Raleigh-Durham International       39580
465                  Chicago O'Hare International       16980
466                  Chicago O'Hare International       16980
467               Dallas/Fort Worth International       19100
468                  Chicago O'Hare International       16980
469                           Miami International       33100
470                           Miami International       33100
471                           Miami International       33100
472               Dallas/Fort Worth International       19100
473               Dallas/Fort Worth International       19100
474                  Chicago O'Hare International       16980
475               Dallas/Fort Worth International       19100
476               Dallas/Fort Worth International       19100
477                           Miami International       33100
478                  Chicago O'Hare International       16980
479               Dallas/Fort Worth International       19100
480               Dallas/Fort Worth International       19100
481               Dallas/Fort Worth International       19100
482                           Miami International       33100
483                    Myrtle Beach International       34820
484               Southwest Florida International       15980
485                  Newark Liberty International       35620
486       Fort Lauderdale-Hollywood International       33100
487          George Bush Intercontinental/Houston       26420
488                        McCarran International       29820
489     Louis Armstrong New Orleans International       35380
490                     Los Angeles International       31080
491                           Tampa International       45300
492       Fort Lauderdale-Hollywood International       33100
493                        McCarran International       29820
494                     Los Angeles International       31080
495                                     LaGuardia       35620
496            Baltimore/Washington International       12580
497       Fort Lauderdale-Hollywood International       33100
498                        McCarran International       29820
499                Luis Munoz Marin International       41980
500                           Tampa International       45300
501                        McCarran International       29820
502       Fort Lauderdale-Hollywood International       33100
503       Fort Lauderdale-Hollywood International       33100
504                        McCarran International       29820
505     Louis Armstrong New Orleans International       35380
506                           Tampa International       45300
507                           Logan International       14460
508                        McCarran International       29820
509                        McCarran International       29820
510               Southwest Florida International       15980
511                           Tampa International       45300
512                         Orlando International       36740
513                         Orlando International       36740
514                         Orlando International       36740
515          George Bush Intercontinental/Houston       26420
516       Fort Lauderdale-Hollywood International       33100
517                        McCarran International       29820
518     Louis Armstrong New Orleans International       35380
519                  Chicago O'Hare International       16980
520                           Tampa International       45300
521                        McCarran International       29820
522                       Nashville International       34980
523       Fort Lauderdale-Hollywood International       33100
524          George Bush Intercontinental/Houston       26420
525                         Orlando International       36740
526              Austin - Bergstrom International       12420
527                       Nashville International       34980
528                           Logan International       14460
529            Baltimore/Washington International       12580
530                          Denver International       19740
531                  Newark Liberty International       35620
532                    Indianapolis International       26900
533                        McCarran International       29820
534                                     LaGuardia       35620
535                  Newark Liberty International       35620
536                        McCarran International       29820
537       Fort Lauderdale-Hollywood International       33100
538                        McCarran International       29820
539                           Tampa International       45300
540                       Nashville International       34980
541                           Logan International       14460
542                    Detroit Metro Wayne County       19820
543                         Orlando International       36740
544     Louis Armstrong New Orleans International       35380
545                      Pittsburgh International       38300
546                  Seattle/Tacoma International       42660
547       Fort Lauderdale-Hollywood International       33100
548                     Kansas City International       28140
549     Louis Armstrong New Orleans International       35380
550                    Philadelphia International       37980
551         Louisville Muhammad Ali International       31140
552                         Orlando International       36740
553               Southwest Florida International       15980
554                        McCarran International       29820
555                     Los Angeles International       31080
556                       Nashville International       34980
557                              Rafael Hernandez       10380
558               Charlotte Douglas International       16740
559                        McCarran International       29820
560                      Pittsburgh International       38300
561                Luis Munoz Marin International       41980
562                        McCarran International       29820
563       Fort Lauderdale-Hollywood International       33100
564                        McCarran International       29820
565                        McCarran International       29820
566                        McCarran International       29820
567                         Orlando International       36740
568     Louis Armstrong New Orleans International       35380
569               Southwest Florida International       15980
570                        McCarran International       29820
571                     Los Angeles International       31080
572                         Orlando International       36740
573                  Chicago O'Hare International       16980
574                           Logan International       14460
575                           Tampa International       45300
576       Fort Lauderdale-Hollywood International       33100
577                           Logan International       14460
578            Baltimore/Washington International       12580
579             John Glenn Columbus International       18140
580                        McCarran International       29820
581               Charlotte Douglas International       16740
582               Charlotte Douglas International       16740
583             Ronald Reagan Washington National       47900
584                    Philadelphia International       37980
585             Ronald Reagan Washington National       47900
586               Charlotte Douglas International       16740
587               Charlotte Douglas International       16740
588               Charlotte Douglas International       16740
589               Charlotte Douglas International       16740
590               Charlotte Douglas International       16740
591               Charlotte Douglas International       16740
592             Ronald Reagan Washington National       47900
593             Ronald Reagan Washington National       47900
594             Ronald Reagan Washington National       47900
595               Charlotte Douglas International       16740
596               Charlotte Douglas International       16740
597               Charlotte Douglas International       16740
598               Charlotte Douglas International       16740
599                    Philadelphia International       37980
600               Charlotte Douglas International       16740
601                   Lehigh Valley International       10900
602                       Nashville International       34980
603                            Westchester County       35620
604               Washington Dulles International       47900
605        General Downing - Peoria International       37900
606               Charlotte Douglas International       16740
607               Charlotte Douglas International       16740
608                    Philadelphia International       37980
609               Charlotte Douglas International       16740
610               Charlotte Douglas International       16740
611               Charlotte Douglas International       16740
612               Charlotte Douglas International       16740
613               Charlotte Douglas International       16740
614             Ronald Reagan Washington National       47900
615               Charlotte Douglas International       16740
616      Jackson Medgar Wiley Evers International       27140
617                    Jacksonville International       27260
618     Louis Armstrong New Orleans International       35380
619                    Philadelphia International       37980
620                           Montgomery Regional       33860
621               Charlotte Douglas International       16740
622             Ronald Reagan Washington National       47900
623             Ronald Reagan Washington National       47900
624               Charlotte Douglas International       16740
625                    Philadelphia International       37980
626                    Philadelphia International       37980
627               Charlotte Douglas International       16740
628               Charlotte Douglas International       16740
629               Charlotte Douglas International       16740
630               Charlotte Douglas International       16740
631               Charlotte Douglas International       16740
632               Charlotte Douglas International       16740
633               Charlotte Douglas International       16740
634               Charlotte Douglas International       16740
635               Charlotte Douglas International       16740
636             Ronald Reagan Washington National       47900
637             Ronald Reagan Washington National       47900
638               Charlotte Douglas International       16740
639               Charlotte Douglas International       16740
640               Charlotte Douglas International       16740
641             Ronald Reagan Washington National       47900
642             Ronald Reagan Washington National       47900
643               Charlotte Douglas International       16740
644               Charlotte Douglas International       16740
645               Charlotte Douglas International       16740
646               Charlotte Douglas International       16740
647               Charlotte Douglas International       16740
648               Charlotte Douglas International       16740
649               Charlotte Douglas International       16740
650             Ronald Reagan Washington National       47900
651             Ronald Reagan Washington National       47900
652                    Philadelphia International       37980
653                    Philadelphia International       37980
654               Charlotte Douglas International       16740
655               Charlotte Douglas International       16740
656               Charlotte Douglas International       16740
657               Charlotte Douglas International       16740
658               Charlotte Douglas International       16740
659               Charlotte Douglas International       16740
660               Charlotte Douglas International       16740
661               Charlotte Douglas International       16740
662               Charlotte Douglas International       16740
663               Charlotte Douglas International       16740
664             Ronald Reagan Washington National       47900
665               Charlotte Douglas International       16740
666               Charlotte Douglas International       16740
667             Ronald Reagan Washington National       47900
668                    Philadelphia International       37980
669                       Nashville International       34980
670                  Charleston AFB/International       16700
671             Ronald Reagan Washington National       47900
672                      Wilmington International       48900
673                    Jacksonville International       27260
674             Minneapolis-St Paul International       33460
675                  Raleigh-Durham International       39580
676               Charlotte Douglas International       16740
677               Charlotte Douglas International       16740
678                    Philadelphia International       37980
679                    Philadelphia International       37980
680                    Philadelphia International       37980
681                    Philadelphia International       37980
682                    Philadelphia International       37980
683               Charlotte Douglas International       16740
684               Charlotte Douglas International       16740
685             Ronald Reagan Washington National       47900
686             Ronald Reagan Washington National       47900
687             Ronald Reagan Washington National       47900
688             Ronald Reagan Washington National       47900
689                     Los Angeles International       31080
690                          Denver International       19740
691                  Chicago O'Hare International       16980
692                  Chicago O'Hare International       16980
693                  Chicago O'Hare International       16980
694                     Los Angeles International       31080
695                       San Diego International       41740
696                          Denver International       19740
697                  Chicago O'Hare International       16980
698                  Chicago O'Hare International       16980
699                          Denver International       19740
700                   San Francisco International       41860
701                          Denver International       19740
702                  Chicago O'Hare International       16980
703                          Denver International       19740
704          George Bush Intercontinental/Houston       26420
705                         Spokane International       44060
706                     Los Angeles International       31080
707                        Portland International       38900
708                  Seattle/Tacoma International       42660
709                   San Francisco International       41860
710       Norman Y. Mineta San Jose International       41940
711                  Seattle/Tacoma International       42660
712                  Salt Lake City International       41620
713                          Denver International       19740
714              Phoenix Sky Harbor International       38060
715              Phoenix Sky Harbor International       38060
716                        Portland International       38900
717                   San Francisco International       41860
718                     Los Angeles International       31080
719                  Chicago O'Hare International       16980
720                          Denver International       19740
721                  Chicago O'Hare International       16980
722               Dallas/Fort Worth International       19100
723                          Denver International       19740
724                          Denver International       19740
725                     Los Angeles International       31080
726                          Denver International       19740
727                     Los Angeles International       31080
728              Austin - Bergstrom International       12420
729                            Boise Air Terminal       14260
730             Bozeman Yellowstone International       14580
731                      Des Moines International       19780
732                         Memphis International       32820
733                               Eppley Airfield       36540
734                          Denver International       19740
735                          Denver International       19740
736             Minneapolis-St Paul International       33460
737                          Denver International       19740
738                          Denver International       19740
739                  Chicago O'Hare International       16980
740                   San Francisco International       41860
741                   San Francisco International       41860
742              Phoenix Sky Harbor International       38060
743                        Portland International       38900
744                       San Diego International       41740
745                  Seattle/Tacoma International       42660
746                   San Francisco International       41860
747                   San Francisco International       41860
748             Minneapolis-St Paul International       33460
749                  Salt Lake City International       41620
750                  Chicago O'Hare International       16980
751                  Chicago O'Hare International       16980
752                    Detroit Metro Wayne County       19820
753                            Boise Air Terminal       14260
754                            Boise Air Terminal       14260
755                     Los Angeles International       31080
756                  Seattle/Tacoma International       42660
757                   San Francisco International       41860
758          George Bush Intercontinental/Houston       26420
759          George Bush Intercontinental/Houston       26420
760          George Bush Intercontinental/Houston       26420
761                  Chicago O'Hare International       16980
762                          Denver International       19740
763                    Detroit Metro Wayne County       19820
764             Minneapolis-St Paul International       33460
765                    Detroit Metro Wayne County       19820
766                         El Paso International       21340
767                  Salt Lake City International       41620
768                          Denver International       19740
769                          Denver International       19740
770                  Chicago O'Hare International       16980
771               Washington Dulles International       47900
772                     Los Angeles International       31080
773              Phoenix Sky Harbor International       38060
774                          Tucson International       46060
775                            Boise Air Terminal       14260
776             Bozeman Yellowstone International       14580
777                         Spokane International       44060
778             Charles M. Schulz - Sonoma County       42220
779       Norman Y. Mineta San Jose International       41940
780               Aspen Pitkin County Sardy Field       24060
781          George Bush Intercontinental/Houston       26420
782          George Bush Intercontinental/Houston       26420
783                  Chicago O'Hare International       16980
784                  Chicago O'Hare International       16980
785               Dallas/Fort Worth International       19100
786                  Chicago O'Hare International       16980
787              Phoenix Sky Harbor International       38060
788                   San Francisco International       41860
789                          Denver International       19740
790                          Denver International       19740
791                          Denver International       19740
792                       San Diego International       41740
793             Minneapolis-St Paul International       33460
794                        Appleton International       11540
795               Washington Dulles International       47900
796                          Denver International       19740
797                  Chicago O'Hare International       16980
798                        Portland International       38900
799               Dallas/Fort Worth International       19100
800                     Los Angeles International       31080
801                  Chicago O'Hare International       16980
802                          Denver International       19740
803          George Bush Intercontinental/Houston       26420
804                     Los Angeles International       31080
805                    Detroit Metro Wayne County       19820
806             Minneapolis-St Paul International       33460
807              Phoenix Sky Harbor International       38060
808              Phoenix Sky Harbor International       38060
809                   San Francisco International       41860
810               Cleveland-Hopkins International       17460
811                             Columbia Regional       17860
812                         Wichita Mid-Continent       48620
813          Greenville-Spartanburg International       43900
814                                  McGhee Tyson       28940
815                    Detroit Metro Wayne County       19820
816                                      Bob Hope       31080
817                 Fresno Yosemite International       23420
818          Rogue Valley International - Medford       32780
819            Metropolitan Oakland International       41860
820                       San Diego International       41740
821                   San Francisco International       41860
822                      Sacramento International       40900
823                     Los Angeles International       31080
824                  Seattle/Tacoma International       42660
825                   San Francisco International       41860
826                 Fresno Yosemite International       23420
827                          Denver International       19740
828                    Detroit Metro Wayne County       19820
829                  Chicago O'Hare International       16980
830          George Bush Intercontinental/Houston       26420
831              Phoenix Sky Harbor International       38060
832       Norman Y. Mineta San Jose International       41940
833                  Salt Lake City International       41620
834                    Detroit Metro Wayne County       19820
835                          Denver International       19740
836              Phoenix Sky Harbor International       38060
837                  Seattle/Tacoma International       42660
838                  Salt Lake City International       41620
839                          Denver International       19740
840                          Denver International       19740
841                          Denver International       19740
842                  Seattle/Tacoma International       42660
843              Phoenix Sky Harbor International       38060
844                      Sacramento International       40900
845              Austin - Bergstrom International       12420
846                 Fresno Yosemite International       23420
847                            Monterey Peninsula       41500
848                        Portland International       38900
849       Norman Y. Mineta San Jose International       41940
850             Charles M. Schulz - Sonoma County       42220
851                     Los Angeles International       31080
852                     Los Angeles International       31080
853                     Los Angeles International       31080
854              Phoenix Sky Harbor International       38060
855                   San Francisco International       41860
856                    Detroit Metro Wayne County       19820
857                        Portland International       38900
858             Minneapolis-St Paul International       33460
859                     Los Angeles International       31080
860                            Boise Air Terminal       14260
861                 Fresno Yosemite International       23420
862                         Spokane International       44060
863       Norman Y. Mineta San Jose International       41940
864                    Palm Springs International       40140
865                             Dallas Love Field       19100
866                        Portland International       38900
867              Phoenix Sky Harbor International       38060
868              John Wayne Airport-Orange County       31080
869                            Boise Air Terminal       14260
870               Dallas/Fort Worth International       19100
871                         Spokane International       44060
872              Austin - Bergstrom International       12420
873                         Spokane International       44060
874                     Los Angeles International       31080
875                        Portland International       38900
876                       San Diego International       41740
877                          Denver International       19740
878               Dallas/Fort Worth International       19100
879                       San Diego International       41740
880                            Long Beach Airport       31080
881                          Denver International       19740
882                          Denver International       19740
883                   San Francisco International       41860
884                   San Francisco International       41860
885                   San Francisco International       41860
886                            Boise Air Terminal       14260
887                        Portland International       38900
888                       San Diego International       41740
889                  Seattle/Tacoma International       42660
890                  Seattle/Tacoma International       42660
891                   San Francisco International       41860
892                   San Francisco International       41860
893                  Chicago O'Hare International       16980
894                  Chicago O'Hare International       16980
895              Phoenix Sky Harbor International       38060
896                     Los Angeles International       31080
897                        Portland International       38900
898                       San Diego International       41740
899                  Chicago O'Hare International       16980
900                    Detroit Metro Wayne County       19820
901                     Los Angeles International       31080
902                  Seattle/Tacoma International       42660
903          George Bush Intercontinental/Houston       26420
904                   San Francisco International       41860
905                        Portland International       38900
906                  Seattle/Tacoma International       42660
907                  Seattle/Tacoma International       42660
908                              Snohomish County       42660
909                       Pullman Moscow Regional       39420
910                      Sacramento International       40900
911                  Seattle/Tacoma International       42660
912                  Seattle/Tacoma International       42660
913                  Seattle/Tacoma International       42660
914                  Seattle/Tacoma International       42660
915                  Seattle/Tacoma International       42660
916                  Seattle/Tacoma International       42660
917                  Seattle/Tacoma International       42660
918                              Snohomish County       42660
919                        Portland International       38900
920                        Portland International       38900
921                  Seattle/Tacoma International       42660
922                   San Francisco International       41860
923                  Seattle/Tacoma International       42660
924                  Seattle/Tacoma International       42660
925                  Seattle/Tacoma International       42660
926                   San Francisco International       41860
927                     Los Angeles International       31080
928                        Portland International       38900
929                  Seattle/Tacoma International       42660
930                            Boise Air Terminal       14260
931                         Spokane International       44060
932                        McCarran International       29820
933              John Wayne Airport-Orange County       31080
934                         Spokane International       44060
935       Norman Y. Mineta San Jose International       41940
936                   San Francisco International       41860
937                  Seattle/Tacoma International       42660
938                  Seattle/Tacoma International       42660
939                     Los Angeles International       31080
940                              Snohomish County       42660
941                  Seattle/Tacoma International       42660
942             Bozeman Yellowstone International       14580
943                            Mahlon Sweet Field       21660
944                    Glacier Park International       28060
945                     Great Falls International       24500
946                          Idaho Falls Regional       26820
947          Rogue Valley International - Medford       32780
948                            Monterey Peninsula       41500
949                        Missoula International       33540
950            Metropolitan Oakland International       41860
951                        Portland International       38900
952                       Pullman Moscow Regional       39420
953                             Redding Municipal       39820
954                                 Roberts Field       13460
955                      Reno/Tahoe International       39900
956                      Sacramento International       40900
957                        McCarran International       29820
958                            Boise Air Terminal       14260
959             Charles M. Schulz - Sonoma County       42220
960                  Seattle/Tacoma International       42660
961                  Seattle/Tacoma International       42660
962          George Bush Intercontinental/Houston       26420
963                  Chicago O'Hare International       16980
964                  Chicago O'Hare International       16980
965                          Denver International       19740
966                          Denver International       19740
967               Washington Dulles International       47900
968                  Chicago O'Hare International       16980
969                  Chicago O'Hare International       16980
970                           Logan International       14460
971                          Denver International       19740
972                          Denver International       19740
973                  Newark Liberty International       35620
974          George Bush Intercontinental/Houston       26420
975          George Bush Intercontinental/Houston       26420
976          George Bush Intercontinental/Houston       26420
977          George Bush Intercontinental/Houston       26420
978                          Denver International       19740
979               Washington Dulles International       47900
980               Washington Dulles International       47900
981               Washington Dulles International       47900
982               Washington Dulles International       47900
983               Washington Dulles International       47900
984               Washington Dulles International       47900
985                              Easterwood Field       17780
986                          Denver International       19740
987                          Denver International       19740
988                  Chicago O'Hare International       16980
989                          Denver International       19740
990                          Denver International       19740
991                  Newark Liberty International       35620
992                  Newark Liberty International       35620
993                  Newark Liberty International       35620
994                  Newark Liberty International       35620
995                  Newark Liberty International       35620
996               Washington Dulles International       47900
997          George Bush Intercontinental/Houston       26420
998                     Los Angeles International       31080
999                  Chicago O'Hare International       16980
1000                  San Francisco International       41860
1001                 Newark Liberty International       35620
1002              Washington Dulles International       47900
1003                         Denver International       19740
1004                 Chicago O'Hare International       16980
1005                 Chicago O'Hare International       16980
1006                  San Francisco International       41860
1007                         Denver International       19740
1008                         Denver International       19740
1009                 Chicago O'Hare International       16980
1010                 Chicago O'Hare International       16980
1011                         Denver International       19740
1012                 Newark Liberty International       35620
1013      Fort Lauderdale-Hollywood International       33100
1014              Washington Dulles International       47900
1015                         Denver International       19740
1016                 Chicago O'Hare International       16980
1017                 Chicago O'Hare International       16980
1018                          Logan International       14460
1019                 Newark Liberty International       35620
1020              Washington Dulles International       47900
1021         George Bush Intercontinental/Houston       26420
1022         George Bush Intercontinental/Houston       26420
1023                    Los Angeles International       31080
1024                    Los Angeles International       31080
1025                    Kansas City International       28140
1026                 Chicago O'Hare International       16980
1027                 Chicago O'Hare International       16980
1028                 Chicago O'Hare International       16980
1029                       Portland International       38900
1030             Phoenix Sky Harbor International       38060
1031                    San Antonio International       41700
1032                     Sacramento International       40900
1033                 Newark Liberty International       35620
1034                 Chicago O'Hare International       16980
1035                  San Francisco International       41860
1036              Cleveland-Hopkins International       17460
1037              Cleveland-Hopkins International       17460
1038              Cleveland-Hopkins International       17460
1039                         Denver International       19740
1040                         Denver International       19740
1041              Washington Dulles International       47900
1042         George Bush Intercontinental/Houston       26420
1043         George Bush Intercontinental/Houston       26420
1044                   Jacksonville International       27260
1045                        Orlando International       36740
1046                          Miami International       33100
1047                 Chicago O'Hare International       16980
1048                 Chicago O'Hare International       16980
1049                     Palm Beach International       33100
1050             Phoenix Sky Harbor International       38060
1051                 Raleigh-Durham International       39580
1052              Southwest Florida International       15980
1053                      San Diego International       41740
1054           Savannah/Hilton Head International       42340
1055                  San Francisco International       41860
1056               Luis Munoz Marin International       41980
1057                 Salt Lake City International       41620
1058             Sarasota/Bradenton International       35840
1059                          Tampa International       45300
1060                         Denver International       19740
1061                         Denver International       19740
1062                 Newark Liberty International       35620
1063              Washington Dulles International       47900
1064         George Bush Intercontinental/Houston       26420
1065                  San Francisco International       41860
1066                         Denver International       19740
1067                         Denver International       19740
1068                 Chicago O'Hare International       16980
1069                 Newark Liberty International       35620
1070                 Newark Liberty International       35620
1071                 Newark Liberty International       35620
1072         George Bush Intercontinental/Houston       26420
1073         George Bush Intercontinental/Houston       26420
1074         George Bush Intercontinental/Houston       26420
1075                  San Francisco International       41860
1076                  San Francisco International       41860
1077                  San Francisco International       41860
1078                      Nashville International       34980
1079                          Logan International       14460
1080      Fort Lauderdale-Hollywood International       33100
1081                   Jacksonville International       27260
1082                    Los Angeles International       31080
1083                        Orlando International       36740
1084                     Palm Beach International       33100
1085                 Raleigh-Durham International       39580
1086                  San Francisco International       41860
1087                          Tampa International       45300
1088                         Denver International       19740
1089                   Jacksonville International       27260
1090                    Los Angeles International       31080
1091                                    LaGuardia       35620
1092    Louis Armstrong New Orleans International       35380
1093                 Chicago O'Hare International       16980
1094             Phoenix Sky Harbor International       38060
1095              Southwest Florida International       15980
1096                          Tampa International       45300
1097                         Denver International       19740
1098                         Denver International       19740
1099                         Denver International       19740
1100                 Newark Liberty International       35620
1101              Washington Dulles International       47900
1102              Washington Dulles International       47900
1103         George Bush Intercontinental/Houston       26420
1104                  San Francisco International       41860
1105                         Denver International       19740
1106                         Denver International       19740
1107                 Newark Liberty International       35620
1108                 Newark Liberty International       35620
1109              Washington Dulles International       47900
1110              Washington Dulles International       47900
1111         George Bush Intercontinental/Houston       26420
1112         George Bush Intercontinental/Houston       26420
1113         George Bush Intercontinental/Houston       26420
1114         George Bush Intercontinental/Houston       26420
1115         George Bush Intercontinental/Houston       26420
1116         George Bush Intercontinental/Houston       26420
1117                 Chicago O'Hare International       16980
1118                 Chicago O'Hare International       16980
1119                         Denver International       19740
1120                 Newark Liberty International       35620
1121         George Bush Intercontinental/Houston       26420
1122         George Bush Intercontinental/Houston       26420
1123         George Bush Intercontinental/Houston       26420
1124                       McCarran International       29820
1125                        Orlando International       36740
1126                 Chicago O'Hare International       16980
1127                         Denver International       19740
1128                         Denver International       19740
1129              Washington Dulles International       47900
1130                 Chicago O'Hare International       16980
1131                         Denver International       19740
1132                    Los Angeles International       31080
1133                         Denver International       19740
1134                 Newark Liberty International       35620
1135              Washington Dulles International       47900
1136         George Bush Intercontinental/Houston       26420
1137         George Bush Intercontinental/Houston       26420
1138                 Chicago O'Hare International       16980
1139         George Bush Intercontinental/Houston       26420
1140         George Bush Intercontinental/Houston       26420
1141                         Denver International       19740
1142                         Denver International       19740
1143                         Denver International       19740
1144                         Denver International       19740
1145              Washington Dulles International       47900
1146         George Bush Intercontinental/Houston       26420
1147                         Denver International       19740
1148                         Denver International       19740
1149                         Denver International       19740
1150                         Denver International       19740
1151           Baltimore/Washington International       12580
1152              Cleveland-Hopkins International       17460
1153            Ronald Reagan Washington National       47900
1154                         Denver International       19740
1155                 Newark Liberty International       35620
1156      Fort Lauderdale-Hollywood International       33100
1157                 Gerald R. Ford International       24340
1158              Washington Dulles International       47900
1159         George Bush Intercontinental/Houston       26420
1160                     Pittsburgh International       38300
1161                       Richmond International       40060
1162              Greater Rochester International       40380
1163                      San Diego International       41740
1164                         Denver International       19740
1165                 Chicago O'Hare International       16980
1166                 Newark Liberty International       35620
1167                         Denver International       19740
1168                 Newark Liberty International       35620
1169                  San Francisco International       41860
1170                  San Francisco International       41860
1171              Washington Dulles International       47900
1172                 Chicago O'Hare International       16980
1173                 Chicago O'Hare International       16980
1174                         Denver International       19740
1175                         Denver International       19740
1176                 Chicago O'Hare International       16980
1177                  San Francisco International       41860
1178                 Newark Liberty International       35620
1179         George Bush Intercontinental/Houston       26420
1180         George Bush Intercontinental/Houston       26420
1181                         Denver International       19740
1182                         Denver International       19740
1183              Washington Dulles International       47900
1184                 Chicago O'Hare International       16980
1185                 Chicago O'Hare International       16980
1186                 Chicago O'Hare International       16980
1187             Austin - Bergstrom International       12420
1188            Ronald Reagan Washington National       47900
1189                 Newark Liberty International       35620
1190      Fort Lauderdale-Hollywood International       33100
1191              Washington Dulles International       47900
1192              Washington Dulles International       47900
1193         George Bush Intercontinental/Houston       26420
1194                              Kahului Airport       27980
1195                 Chicago O'Hare International       16980
1196                 Chicago O'Hare International       16980
1197                 Chicago O'Hare International       16980
1198                 Newark Liberty International       35620
1199         George Bush Intercontinental/Houston       26420
1200              Washington Dulles International       47900
1201              Cleveland-Hopkins International       17460
1202              Washington Dulles International       47900
1203         George Bush Intercontinental/Houston       26420
1204         George Bush Intercontinental/Houston       26420
1205                            Dallas Love Field       19100
1206                            Dallas Love Field       19100
1207                       McCarran International       29820
1208             Austin - Bergstrom International       12420
1209                       McCarran International       29820
1210             Phoenix Sky Harbor International       38060
1211           Baltimore/Washington International       12580
1212           Baltimore/Washington International       12580
1213           Baltimore/Washington International       12580
1214           Baltimore/Washington International       12580
1215                        Orlando International       36740
1216                 Chicago Midway International       16980
1217                 Chicago Midway International       16980
1218           Baltimore/Washington International       12580
1219                        Orlando International       36740
1220                       McCarran International       29820
1221                            Dallas Love Field       19100
1222           Baltimore/Washington International       12580
1223                            Dallas Love Field       19100
1224                            Dallas Love Field       19100
1225                            Dallas Love Field       19100
1226                            Dallas Love Field       19100
1227                            Dallas Love Field       19100
1228                              William P Hobby       26420
1229                                    LaGuardia       35620
1230                        Orlando International       36740
1231                 Chicago Midway International       16980
1232               General Mitchell International       33340
1233             Phoenix Sky Harbor International       38060
1234             Phoenix Sky Harbor International       38060
1235             Phoenix Sky Harbor International       38060
1236               St Louis Lambert International       41180
1237             Austin - Bergstrom International       12420
1238                      Nashville International       34980
1239              Cleveland-Hopkins International       17460
1240      Northwest Florida Beaches International       37460
1241      Fort Lauderdale-Hollywood International       33100
1242                              William P Hobby       26420
1243                   Indianapolis International       26900
1244     Jackson Medgar Wiley Evers International       27140
1245                       McCarran International       29820
1246                                  Adams Field       30780
1247                    Kansas City International       28140
1248                        Memphis International       32820
1249                   Myrtle Beach International       34820
1250                   Philadelphia International       37980
1251             Phoenix Sky Harbor International       38060
1252                     Pittsburgh International       38300
1253                       Richmond International       40060
1254              Southwest Florida International       15980
1255                          Tampa International       45300
1256                      Nashville International       34980
1257                            Dallas Love Field       19100
1258                            Dallas Love Field       19100
1259                            Dallas Love Field       19100
1260                        El Paso International       21340
1261                              William P Hobby       26420
1262                              William P Hobby       26420
1263                           Long Beach Airport       31080
1264                 Chicago Midway International       16980
1265             Phoenix Sky Harbor International       38060
1266             Phoenix Sky Harbor International       38060
1267             Phoenix Sky Harbor International       38060
1268                      San Diego International       41740
1269                                     Bob Hope       31080
1270           Baltimore/Washington International       12580
1271                            Dallas Love Field       19100
1272            Ronald Reagan Washington National       47900
1273                              William P Hobby       26420
1274                         Valley International       15180
1275                    Los Angeles International       31080
1276                           Long Beach Airport       31080
1277                    Kansas City International       28140
1278                 Chicago Midway International       16980
1279            Minneapolis-St Paul International       33460
1280    Louis Armstrong New Orleans International       35380
1281           Metropolitan Oakland International       41860
1282                 Raleigh-Durham International       39580
1283             John Wayne Airport-Orange County       31080
1284               St Louis Lambert International       41180
1285                          Tampa International       45300
1286                 Chicago Midway International       16980
1287                 Chicago Midway International       16980
1288           Baltimore/Washington International       12580
1289                        Orlando International       36740
1290           Baltimore/Washington International       12580
1291                            Dallas Love Field       19100
1292                              William P Hobby       26420
1293                        Orlando International       36740
1294                 Chicago Midway International       16980
1295                          Tampa International       45300
1296                       McCarran International       29820
1297             Austin - Bergstrom International       12420
1298                        Bradley International       25540
1299                            Dallas Love Field       19100
1300                         Denver International       19740
1301                              William P Hobby       26420
1302                        Long Island MacArthur       35620
1303                    Kansas City International       28140
1304                        Orlando International       36740
1305                        Norfolk International       47260
1306             Phoenix Sky Harbor International       38060
1307              Southwest Florida International       15980
1308      Norman Y. Mineta San Jose International       41940
1309             Sarasota/Bradenton International       35840
1310                          Tampa International       45300
1311                          Logan International       14460
1312           Baltimore/Washington International       12580
1313                 Charleston AFB/International       16700
1314              Cleveland-Hopkins International       17460
1315              Charlotte Douglas International       16740
1316            John Glenn Columbus International       18140
1317                   Detroit Metro Wayne County       19820
1318      Northwest Florida Beaches International       37460
1319                   Jacksonville International       27260
1320                 Chicago Midway International       16980
1321                          Miami International       33100
1322               General Mitchell International       33340
1323    Louis Armstrong New Orleans International       35380
1324                   Myrtle Beach International       34820
1325           Metropolitan Oakland International       41860
1326           Metropolitan Oakland International       41860
1327                   Philadelphia International       37980
1328                     Pittsburgh International       38300
1329                Pensacola Gulf Coast Regional       37860
1330                 Raleigh-Durham International       39580
1331           Savannah/Hilton Head International       42340
1332           Eglin AFB Destin Fort Walton Beach       18880
1333                         Denver International       19740
1334                         Denver International       19740
1335                       McCarran International       29820
1336           Metropolitan Oakland International       41860
1337             Phoenix Sky Harbor International       38060
1338                      San Diego International       41740
1339                       McCarran International       29820
1340                      Nashville International       34980
1341                      Nashville International       34980
1342           Baltimore/Washington International       12580
1343           Baltimore/Washington International       12580
1344           Baltimore/Washington International       12580
1345           Baltimore/Washington International       12580
1346           Baltimore/Washington International       12580
1347           Baltimore/Washington International       12580
1348                 Chicago Midway International       16980
1349                 Chicago Midway International       16980
1350                 Chicago Midway International       16980
1351                 Chicago Midway International       16980
1352                 Chicago Midway International       16980
1353                 Chicago Midway International       16980
1354           Baltimore/Washington International       12580
1355      Fort Lauderdale-Hollywood International       33100
1356                        Orlando International       36740
1357                 Chicago Midway International       16980
1358                            Dallas Love Field       19100
1359                            Dallas Love Field       19100
1360                            Dallas Love Field       19100
1361                            Dallas Love Field       19100
1362                       McCarran International       29820
1363                     Sacramento International       40900
1364             Austin - Bergstrom International       12420
1365                         Denver International       19740
1366                              William P Hobby       26420
1367           Metropolitan Oakland International       41860
1368      Norman Y. Mineta San Jose International       41940
1369       Birmingham-Shuttlesworth International       13820
1370                      Nashville International       34980
1371                      Nashville International       34980
1372   Cincinnati/Northern Kentucky International       17140
1373                 Gerald R. Ford International       24340
1374                   Indianapolis International       26900
1375                 Chicago Midway International       16980
1376           Savannah/Hilton Head International       42340
1377           Eglin AFB Destin Fort Walton Beach       18880
1378                        Bradley International       25540
1379                Buffalo Niagara International       15380
1380                 Charleston AFB/International       16700
1381              Cleveland-Hopkins International       17460
1382      Fort Lauderdale-Hollywood International       33100
1383         Greenville-Spartanburg International       43900
1384                              William P Hobby       26420
1385                        Long Island MacArthur       35620
1386                       McCarran International       29820
1387                                    LaGuardia       35620
1388                 Chicago Midway International       16980
1389                          Miami International       33100
1390                   Myrtle Beach International       34820
1391                        Norfolk International       47260
1392             Phoenix Sky Harbor International       38060
1393                     Pittsburgh International       38300
1394                 Theodore Francis Green State       39300
1395               Portland International Jetport       38860
1396                 Raleigh-Durham International       39580
1397              Greater Rochester International       40380
1398              Southwest Florida International       15980
1399        Louisville Muhammad Ali International       31140
1400                         Denver International       19740
1401                       McCarran International       29820
1402                      Nashville International       34980
1403                      Nashville International       34980
1404                      Nashville International       34980
1405                            Dallas Love Field       19100
1406                 Chicago Midway International       16980
1407               St Louis Lambert International       41180
1408                      Nashville International       34980
1409                      Nashville International       34980
1410           Baltimore/Washington International       12580
1411                       McCarran International       29820
1412                 Chicago Midway International       16980
1413               St Louis Lambert International       41180
1414                      Nashville International       34980
1415                 Chicago Midway International       16980
1416                 Chicago Midway International       16980
1417             Sarasota/Bradenton International       35840
1418               St Louis Lambert International       41180
1419                      Nashville International       34980
1420           Baltimore/Washington International       12580
1421            Ronald Reagan Washington National       47900
1422                       McCarran International       29820
1423             Phoenix Sky Harbor International       38060
1424               St Louis Lambert International       41180
1425                          Tampa International       45300
1426                       McCarran International       29820
1427                       McCarran International       29820
1428             Phoenix Sky Harbor International       38060
1429                              William P Hobby       26420
1430                              William P Hobby       26420
1431                         Denver International       19740
1432                 Chicago Midway International       16980
1433           Baltimore/Washington International       12580
1434                        Orlando International       36740
1435                 Chicago Midway International       16980
1436                 Chicago Midway International       16980
1437                          Tampa International       45300
1438            Albuquerque International Sunport       10740
1439             Austin - Bergstrom International       12420
1440       Birmingham-Shuttlesworth International       13820
1441                         Denver International       19740
1442                         Denver International       19740
1443                        El Paso International       21340
1444                              William P Hobby       26420
1445                                    LaGuardia       35620
1446                           Long Beach Airport       31080
1447                        Orlando International       36740
1448           Metropolitan Oakland International       41860
1449                              Eppley Airfield       36540
1450      Norman Y. Mineta San Jose International       41940
1451                 Salt Lake City International       41620
1452             John Wayne Airport-Orange County       31080
1453               St Louis Lambert International       41180
1454                          Tampa International       45300
1455          Rick Husband Amarillo International       11100
1456             Austin - Bergstrom International       12420
1457            John Glenn Columbus International       18140
1458           City of Colorado Springs Municipal       17820
1459            Ronald Reagan Washington National       47900
1460      Northwest Florida Beaches International       37460
1461      Fort Lauderdale-Hollywood International       33100
1462         George Bush Intercontinental/Houston       26420
1463          Lubbock Preston Smith International       31180
1464                                  Adams Field       30780
1465     Midland International Air and Space Port       33260
1466                    Kansas City International       28140
1467                 Chicago Midway International       16980
1468            Minneapolis-St Paul International       33460
1469    Louis Armstrong New Orleans International       35380
1470                 Chicago O'Hare International       16980
1471             Phoenix Sky Harbor International       38060
1472                Pensacola Gulf Coast Regional       37860
1473                    San Antonio International       41700
1474                          Tulsa International       46140
1475           Eglin AFB Destin Fort Walton Beach       18880
1476                      Nashville International       34980
1477                      Nashville International       34980
1478                      Nashville International       34980
1479      Fort Lauderdale-Hollywood International       33100
1480                 Chicago Midway International       16980
1481               St Louis Lambert International       41180
1482               St Louis Lambert International       41180
1483            John Glenn Columbus International       18140
1484                            Dallas Love Field       19100
1485                        Orlando International       36740
1486               General Mitchell International       33340
1487                              Eppley Airfield       36540
1488              Southwest Florida International       15980
1489               St Louis Lambert International       41180
1490                          Tampa International       45300
1491       Birmingham-Shuttlesworth International       13820
1492                      Nashville International       34980
1493                                     Bob Hope       31080
1494           Baltimore/Washington International       12580
1495   Cincinnati/Northern Kentucky International       17140
1496                            Dallas Love Field       19100
1497                            Dallas Love Field       19100
1498                        El Paso International       21340
1499                        Spokane International       44060
1500                              William P Hobby       26420
1501                   Indianapolis International       26900
1502                       McCarran International       29820
1503                                    LaGuardia       35620
1504                 Chicago Midway International       16980
1505                 Chicago Midway International       16980
1506               General Mitchell International       33340
1507                      Santa Barbara Municipal       42200
1508             John Wayne Airport-Orange County       31080
1509               St Louis Lambert International       41180
1510                          Tulsa International       46140
1511                         Tucson International       46060
1512            Albuquerque International Sunport       10740
1513                Buffalo Niagara International       15380
1514                 Charleston AFB/International       16700
1515                                 Yampa Valley       44460
1516                              William P Hobby       26420
1517                        Wichita Mid-Continent       48620
1518                       McCarran International       29820
1519                           Long Beach Airport       31080
1520                                  Adams Field       30780
1521                          Miami International       33100
1522    Louis Armstrong New Orleans International       35380
1523           Metropolitan Oakland International       41860
1524                            Will Rogers World       36420
1525                     Reno/Tahoe International       39900
1526                      San Diego International       41740
1527                          Tampa International       45300
1528               St Louis Lambert International       41180
1529                      Nashville International       34980
1530                 Chicago Midway International       16980
1531                 Chicago Midway International       16980
1532                      Nashville International       34980
1533           Baltimore/Washington International       12580
1534               St Louis Lambert International       41180
1535                              William P Hobby       26420
1536               St Louis Lambert International       41180
1537             Austin - Bergstrom International       12420
1538                         Denver International       19740
1539                              William P Hobby       26420
1540                       McCarran International       29820
1541                    Los Angeles International       31080
1542             Phoenix Sky Harbor International       38060
1543             Austin - Bergstrom International       12420
1544                              William P Hobby       26420
1545                              William P Hobby       26420
1546             Phoenix Sky Harbor International       38060
1547                    San Antonio International       41700
1548           Metropolitan Oakland International       41860
1549                       McCarran International       29820
1550           Metropolitan Oakland International       41860
1551                       McCarran International       29820
1552           Baltimore/Washington International       12580
1553                              William P Hobby       26420
1554                              William P Hobby       26420
1555                              William P Hobby       26420
1556                        Orlando International       36740
1557    Louis Armstrong New Orleans International       35380
1558                 Raleigh-Durham International       39580
1559           Baltimore/Washington International       12580
1560                            Dallas Love Field       19100
1561            Ronald Reagan Washington National       47900
1562                 Chicago Midway International       16980
1563             Phoenix Sky Harbor International       38060
1564             Phoenix Sky Harbor International       38060
1565                     Pittsburgh International       38300
1566                    San Antonio International       41700
1567                          Tampa International       45300
1568                         Denver International       19740
1569                         Denver International       19740
1570                       McCarran International       29820
1571                 Chicago Midway International       16980
1572             Phoenix Sky Harbor International       38060
1573                     Sacramento International       40900
1574                       McCarran International       29820
1575           Metropolitan Oakland International       41860
1576           Baltimore/Washington International       12580
1577                              William P Hobby       26420
1578                                Lihue Airport       28180
1579           Metropolitan Oakland International       41860
1580           Metropolitan Oakland International       41860
1581             Phoenix Sky Harbor International       38060
1582     Hartsfield-Jackson Atlanta International       12060
1583                      Nashville International       34980
1584           Baltimore/Washington International       12580
1585                            Dallas Love Field       19100
1586                         Denver International       19740
1587                        El Paso International       21340
1588         Greenville-Spartanburg International       43900
1589                          Miami International       33100
1590            Minneapolis-St Paul International       33460
1591    Louis Armstrong New Orleans International       35380
1592             Phoenix Sky Harbor International       38060
1593               St Louis Lambert International       41180
1594               St Louis Lambert International       41180
1595             Austin - Bergstrom International       12420
1596                                     Bob Hope       31080
1597      Northwest Florida Beaches International       37460
1598      Fort Lauderdale-Hollywood International       33100
1599                         Valley International       15180
1600                       McCarran International       29820
1601                    Los Angeles International       31080
1602          Lubbock Preston Smith International       31180
1603                                    LaGuardia       35620
1604                           Long Beach Airport       31080
1605     Midland International Air and Space Port       33260
1606                        Orlando International       36740
1607                        Memphis International       32820
1608           Metropolitan Oakland International       41860
1609                            Will Rogers World       36420
1610                        Ontario International       40140
1611                   Philadelphia International       37980
1612                Pensacola Gulf Coast Regional       37860
1613              Southwest Florida International       15980
1614                    San Antonio International       41700
1615                    San Antonio International       41700
1616           Savannah/Hilton Head International       42340
1617      Norman Y. Mineta San Jose International       41940
1618                          Tampa International       45300
1619                          Tulsa International       46140
1620                              William P Hobby       26420
1621                              William P Hobby       26420
1622                 Chicago Midway International       16980
1623                 Chicago Midway International       16980
1624                            Dallas Love Field       19100
1625                            Dallas Love Field       19100
1626                 Chicago Midway International       16980
1627                            Dallas Love Field       19100
1628                            Dallas Love Field       19100
1629                 Chicago Midway International       16980
1630                         Denver International       19740
1631               St Louis Lambert International       41180
1632           Baltimore/Washington International       12580
1633                            Dallas Love Field       19100
1634                              William P Hobby       26420
1635                        Orlando International       36740
1636              Southwest Florida International       15980
1637             Sarasota/Bradenton International       35840
1638                      Nashville International       34980
1639           Baltimore/Washington International       12580
1640           Baltimore/Washington International       12580
1641           Baltimore/Washington International       12580
1642               St Louis Lambert International       41180
1643                      Nashville International       34980
1644                 Chicago Midway International       16980
1645             Phoenix Sky Harbor International       38060
1646             Phoenix Sky Harbor International       38060
1647             Phoenix Sky Harbor International       38060
1648            Albuquerque International Sunport       10740
1649          Rick Husband Amarillo International       11100
1650             Austin - Bergstrom International       12420
1651             Austin - Bergstrom International       12420
1652                            Dallas Love Field       19100
1653                        Spokane International       44060
1654                 Chicago Midway International       16980
1655               General Mitchell International       33340
1656           Metropolitan Oakland International       41860
1657                       Portland International       38900
1658                    San Antonio International       41700
1659                 Salt Lake City International       41620
1660                     Sacramento International       40900
1661             John Wayne Airport-Orange County       31080
1662               St Louis Lambert International       41180
1663                           Boise Air Terminal       14260
1664                                     Bob Hope       31080
1665           Baltimore/Washington International       12580
1666            Bozeman Yellowstone International       14580
1667           City of Colorado Springs Municipal       17820
1668                           Mahlon Sweet Field       21660
1669                           Long Beach Airport       31080
1670               General Mitchell International       33340
1671                        Ontario International       40140
1672                   Palm Springs International       40140
1673                     Reno/Tahoe International       39900
1674                      San Diego International       41740
1675                      Santa Barbara Municipal       42200
1676      Norman Y. Mineta San Jose International       41940
1677                          Tulsa International       46140
1678                         Tucson International       46060
1679            Albuquerque International Sunport       10740
1680                        El Paso International       21340
1681                Daniel K Inouye International       46520
1682                 Chicago Midway International       16980
1683    Louis Armstrong New Orleans International       35380
1684    Louis Armstrong New Orleans International       35380
1685             Phoenix Sky Harbor International       38060
1686             Phoenix Sky Harbor International       38060
1687             Austin - Bergstrom International       12420
1688             Austin - Bergstrom International       12420
1689                              William P Hobby       26420
1690                     Reno/Tahoe International       39900
1691                     Sacramento International       40900
1692                     Sacramento International       40900
1693             Austin - Bergstrom International       12420
1694                            Dallas Love Field       19100
1695           Baltimore/Washington International       12580
1696           Baltimore/Washington International       12580
1697                              William P Hobby       26420
1698               St Louis Lambert International       41180
1699               St Louis Lambert International       41180
1700                 Chicago Midway International       16980
1701    Louis Armstrong New Orleans International       35380
1702                         Denver International       19740
1703                       McCarran International       29820
1704           Metropolitan Oakland International       41860
1705                     Sacramento International       40900
1706               St Louis Lambert International       41180
1707                Daniel K Inouye International       46520
1708                              William P Hobby       26420
1709                              William P Hobby       26420
1710                       McCarran International       29820
1711                 Chicago Midway International       16980
1712                              Kahului Airport       27980
1713                     Reno/Tahoe International       39900
1714                     Sacramento International       40900
1715                            Dallas Love Field       19100
1716                            Dallas Love Field       19100
1717                              William P Hobby       26420
1718             Austin - Bergstrom International       12420
1719                            Dallas Love Field       19100
1720                 Chicago Midway International       16980
1721                 Chicago Midway International       16980
1722           Baltimore/Washington International       12580
1723      Fort Lauderdale-Hollywood International       33100
1724                                    LaGuardia       35620
1725                        Orlando International       36740
1726    Louis Armstrong New Orleans International       35380
1727              Southwest Florida International       15980
1728           Baltimore/Washington International       12580
1729                            Dallas Love Field       19100
1730                            Dallas Love Field       19100
1731                            Dallas Love Field       19100
1732                         Denver International       19740
1733                              William P Hobby       26420
1734                    Kansas City International       28140
1735               St Louis Lambert International       41180
1736               St Louis Lambert International       41180
1737               St Louis Lambert International       41180
1738                         Albany International       10580
1739                        Bradley International       25540
1740       Birmingham-Shuttlesworth International       13820
1741                Buffalo Niagara International       15380
1742   Cincinnati/Northern Kentucky International       17140
1743      Fort Lauderdale-Hollywood International       33100
1744                   Indianapolis International       26900
1745                        Memphis International       32820
1746    Louis Armstrong New Orleans International       35380
1747                        Norfolk International       47260
1748             Phoenix Sky Harbor International       38060
1749        Louisville Muhammad Ali International       31140
1750               St Louis Lambert International       41180
1751             Austin - Bergstrom International       12420
1752       Birmingham-Shuttlesworth International       13820
1753                      Nashville International       34980
1754           Baltimore/Washington International       12580
1755                 Charleston AFB/International       16700
1756            John Glenn Columbus International       18140
1757                            Dallas Love Field       19100
1758            Ronald Reagan Washington National       47900
1759                         Denver International       19740
1760      Fort Lauderdale-Hollywood International       33100
1761                 Gerald R. Ford International       24340
1762              Washington Dulles International       47900
1763                   Jacksonville International       27260
1764                                    LaGuardia       35620
1765                    Kansas City International       28140
1766                        Orlando International       36740
1767            Minneapolis-St Paul International       33460
1768    Louis Armstrong New Orleans International       35380
1769                              Eppley Airfield       36540
1770                        Norfolk International       47260
1771             Phoenix Sky Harbor International       38060
1772                 Theodore Francis Green State       39300
1773                       Richmond International       40060
1774                      San Diego International       41740
1775        Louisville Muhammad Ali International       31140
1776                 Seattle/Tacoma International       42660
1777                  San Francisco International       41860
1778                          Tampa International       45300
1779                          Logan International       14460
1780                Buffalo Niagara International       15380
1781              Cleveland-Hopkins International       17460
1782              Cleveland-Hopkins International       17460
1783   Cincinnati/Northern Kentucky International       17140
1784                              William P Hobby       26420
1785         George Bush Intercontinental/Houston       26420
1786                    Los Angeles International       31080
1787                        Memphis International       32820
1788                          Miami International       33100
1789                   Myrtle Beach International       34820
1790           Metropolitan Oakland International       41860
1791                            Will Rogers World       36420
1792                   Philadelphia International       37980
1793                     Pittsburgh International       38300
1794                 Raleigh-Durham International       39580
1795              Southwest Florida International       15980
1796                     Sacramento International       40900
1797             John Wayne Airport-Orange County       31080
1798             Sarasota/Bradenton International       35840
1799               St Louis Lambert International       41180
1800                         Tucson International       46060
1801                        Orlando International       36740
1802                 Chicago Midway International       16980
1803                            Dallas Love Field       19100
1804                         Denver International       19740
1805                              William P Hobby       26420
1806           Baltimore/Washington International       12580
1807               St Louis Lambert International       41180
1808                 Chicago Midway International       16980
1809    Louis Armstrong New Orleans International       35380
1810               St Louis Lambert International       41180
1811           Baltimore/Washington International       12580
1812            Ronald Reagan Washington National       47900
1813             Phoenix Sky Harbor International       38060
1814              Southwest Florida International       15980
1815               St Louis Lambert International       41180
1816                              William P Hobby       26420
1817               St Louis Lambert International       41180
1818                              William P Hobby       26420
1819                              William P Hobby       26420
1820                    Kansas City International       28140
1821                      Nashville International       34980
1822           Baltimore/Washington International       12580
1823      Fort Lauderdale-Hollywood International       33100
1824                    Los Angeles International       31080
1825                                    LaGuardia       35620
1826                        Orlando International       36740
1827                        Orlando International       36740
1828                          Miami International       33100
1829                    San Antonio International       41700
1830                          Tampa International       45300
1831                            Dallas Love Field       19100
1832           Baltimore/Washington International       12580
1833                 Chicago Midway International       16980
1834             Austin - Bergstrom International       12420
1835                     Bellingham International       13380
1836                                     Bob Hope       31080
1837                Daniel K Inouye International       46520
1838                                Lihue Airport       28180
1839                        Ontario International       40140
1840             Phoenix Sky Harbor International       38060
1841                   Palm Springs International       40140
1842                      San Diego International       41740
1843                           Boise Air Terminal       14260
1844                                     Bob Hope       31080
1845                           Mahlon Sweet Field       21660
1846                        Spokane International       44060
1847        Kona International Airport at Keahole       25900
1848                      Santa Barbara Municipal       42200
1849             John Wayne Airport-Orange County       31080
1850                Daniel K Inouye International       46520
1851             Austin - Bergstrom International       12420
1852                              William P Hobby       26420
1853                 Chicago Midway International       16980
1854             Phoenix Sky Harbor International       38060
1855               St Louis Lambert International       41180
1856                       McCarran International       29820
1857                 Chicago Midway International       16980
1858               St Louis Lambert International       41180
1859                              William P Hobby       26420
1860           Metropolitan Oakland International       41860
1861      Norman Y. Mineta San Jose International       41940
1862                      Nashville International       34980
1863             Phoenix Sky Harbor International       38060
1864                      Nashville International       34980
1865                            Dallas Love Field       19100
1866                      Nashville International       34980
1867                 Chicago Midway International       16980
1868           Baltimore/Washington International       12580
1869                        Orlando International       36740
1870                 Chicago Midway International       16980
1871             Phoenix Sky Harbor International       38060
1872             Phoenix Sky Harbor International       38060
1873             Phoenix Sky Harbor International       38060
1874      Norman Y. Mineta San Jose International       41940
1875                 Chicago Midway International       16980
1876                         Denver International       19740
1877             Austin - Bergstrom International       12420
1878                        Spokane International       44060
1879                              William P Hobby       26420
1880           Metropolitan Oakland International       41860
1881                            Will Rogers World       36420
1882                       Portland International       38900
1883                     Reno/Tahoe International       39900
1884                    San Antonio International       41700
1885      Norman Y. Mineta San Jose International       41940
1886                 Salt Lake City International       41620
1887                     Sacramento International       40900
1888            Albuquerque International Sunport       10740
1889             Austin - Bergstrom International       12420
1890                                     Bob Hope       31080
1891            John Glenn Columbus International       18140
1892           City of Colorado Springs Municipal       17820
1893                        El Paso International       21340
1894      Fort Lauderdale-Hollywood International       33100
1895                           Long Beach Airport       31080
1896                                Lihue Airport       28180
1897               General Mitchell International       33340
1898                              Eppley Airfield       36540
1899                        Ontario International       40140
1900                   Palm Springs International       40140
1901             John Wayne Airport-Orange County       31080
1902                          Tampa International       45300
1903             Phoenix Sky Harbor International       38060
1904              Southwest Florida International       15980
1905             Sarasota/Bradenton International       35840
1906                      Nashville International       34980
1907           Baltimore/Washington International       12580
1908      Fort Lauderdale-Hollywood International       33100
1909                      Nashville International       34980
1910                            Dallas Love Field       19100
1911                              William P Hobby       26420
1912                     Sacramento International       40900
1913                       McCarran International       29820
1914                 Chicago Midway International       16980
1915               St Louis Lambert International       41180
1916           Baltimore/Washington International       12580
1917           Baltimore/Washington International       12580
1918                        Orlando International       36740
1919                          Tampa International       45300
1920                 Chicago Midway International       16980
1921                                     Bob Hope       31080
1922                           Long Beach Airport       31080
1923                      San Diego International       41740
1924      Norman Y. Mineta San Jose International       41940
1925                        Orlando International       36740
1926                          Tampa International       45300
1927                 Chicago Midway International       16980
1928               General Mitchell International       33340
1929            Ronald Reagan Washington National       47900
1930                    Kansas City International       28140
1931                 Chicago Midway International       16980
1932        Louisville Muhammad Ali International       31140
1933                           Boise Air Terminal       14260
1934                            Dallas Love Field       19100
1935                              William P Hobby       26420
1936      Norman Y. Mineta San Jose International       41940
1937                Daniel K Inouye International       46520
1938                              Kahului Airport       27980
1939                         Tucson International       46060
1940                            Dallas Love Field       19100
1941                              William P Hobby       26420
1942                      Nashville International       34980
1943                            Dallas Love Field       19100
1944                        El Paso International       21340
1945                    Los Angeles International       31080
1946                       McCarran International       29820
1947           Metropolitan Oakland International       41860
1948                        Orlando International       36740
1949                 Chicago Midway International       16980
1950           Baltimore/Washington International       12580
1951              Southwest Florida International       15980
1952                          Tampa International       45300
1953           Metropolitan Oakland International       41860
1954      Norman Y. Mineta San Jose International       41940
1955             Phoenix Sky Harbor International       38060
1956                                     Bob Hope       31080
1957                      San Diego International       41740
1958                            Dallas Love Field       19100
1959                       McCarran International       29820
1960                              Kahului Airport       27980
1961                              Kahului Airport       27980
1962                Daniel K Inouye International       46520
1963        Kona International Airport at Keahole       25900
1964                           Long Beach Airport       31080
1965                        Ontario International       40140
1966                     Reno/Tahoe International       39900
1967             John Wayne Airport-Orange County       31080
1968                        Orlando International       36740
1969                            Dallas Love Field       19100
1970                                     Bob Hope       31080
1971                        Orlando International       36740
1972                     Sacramento International       40900
1973                        Spokane International       44060
1974                      San Diego International       41740
1975                 Seattle/Tacoma International       42660
1976                                     Bob Hope       31080
1977                Daniel K Inouye International       46520
1978                           Long Beach Airport       31080
1979                        Ontario International       40140
1980                   Palm Springs International       40140
1981             John Wayne Airport-Orange County       31080
1982                            Dallas Love Field       19100
1983             Phoenix Sky Harbor International       38060
1984             Austin - Bergstrom International       12420
1985            John Glenn Columbus International       18140
1986             Austin - Bergstrom International       12420
1987                   Indianapolis International       26900
1988                                    LaGuardia       35620
1989           Baltimore/Washington International       12580
1990                            Dallas Love Field       19100
1991      Fort Lauderdale-Hollywood International       33100
1992                              William P Hobby       26420
1993                   Jacksonville International       27260
1994                                    LaGuardia       35620
1995                           Long Beach Airport       31080
1996                 Chicago Midway International       16980
1997    Louis Armstrong New Orleans International       35380
1998                 Seattle/Tacoma International       42660
1999             Austin - Bergstrom International       12420
2000                      Nashville International       34980
2001                      Nashville International       34980
2002            John Glenn Columbus International       18140
2003                     Des Moines International       19780
2004      Northwest Florida Beaches International       37460
2005                        Wichita Mid-Continent       48620
2006                    Los Angeles International       31080
2007                                  Adams Field       30780
2008                    Kansas City International       28140
2009                        Orlando International       36740
2010                          Miami International       33100
2011               General Mitchell International       33340
2012                            Will Rogers World       36420
2013                              Eppley Airfield       36540
2014             Phoenix Sky Harbor International       38060
2015                Pensacola Gulf Coast Regional       37860
2016             Sarasota/Bradenton International       35840
2017                      Nashville International       34980
2018           Baltimore/Washington International       12580
2019            John Glenn Columbus International       18140
2020            Ronald Reagan Washington National       47900
2021                 Chicago O'Hare International       16980
2022                 Raleigh-Durham International       39580
2023        Louisville Muhammad Ali International       31140
2024                        Bradley International       25540
2025       Birmingham-Shuttlesworth International       13820
2026                Buffalo Niagara International       15380
2027   Cincinnati/Northern Kentucky International       17140
2028      Fort Lauderdale-Hollywood International       33100
2029                      San Diego International       41740
2030                       McCarran International       29820
2031                      Nashville International       34980
2032                            Dallas Love Field       19100
2033         George Bush Intercontinental/Houston       26420
2034             Phoenix Sky Harbor International       38060
2035              Washington Dulles International       47900
2036               St Louis Lambert International       41180
2037              Dallas/Fort Worth International       19100
2038             Phoenix Sky Harbor International       38060
2039              Dallas/Fort Worth International       19100
2040              Dallas/Fort Worth International       19100
2041              Dallas/Fort Worth International       19100
2042                                    LaGuardia       35620
2043                     Pittsburgh International       38300
2044           Savannah/Hilton Head International       42340
2045                          Tulsa International       46140
2046              Dallas/Fort Worth International       19100
2047             Phoenix Sky Harbor International       38060
2048                                Meadows Field       12540
2049                           Mahlon Sweet Field       21660
2050              Dallas/Fort Worth International       19100
2051              Dallas/Fort Worth International       19100
2052         George Bush Intercontinental/Houston       26420
2053         George Bush Intercontinental/Houston       26420
2054         George Bush Intercontinental/Houston       26420
2055            Ronald Reagan Washington National       47900
2056            Ronald Reagan Washington National       47900
2057                   Philadelphia International       37980
2058                John F. Kennedy International       35620
2059                   Indianapolis International       26900
2060                                    LaGuardia       35620
2061            John Glenn Columbus International       18140
2062                John F. Kennedy International       35620
2063                John F. Kennedy International       35620
2064                                    LaGuardia       35620
2065                                    LaGuardia       35620
2066                                    LaGuardia       35620
2067                                    LaGuardia       35620
2068                                    LaGuardia       35620
2069                     Pittsburgh International       38300
2070                 Raleigh-Durham International       39580
2071                John F. Kennedy International       35620
2072                 Newark Liberty International       35620
2073                 Newark Liberty International       35620
2074              Charlotte Douglas International       16740
2075                                    LaGuardia       35620
2076                John F. Kennedy International       35620
2077                John F. Kennedy International       35620
2078                                    LaGuardia       35620
2079                                    LaGuardia       35620
2080                                    LaGuardia       35620
2081                          Logan International       14460
2082                   Philadelphia International       37980
2083                John F. Kennedy International       35620
2084              Charlotte Douglas International       16740
2085                John F. Kennedy International       35620
2086                 Raleigh-Durham International       39580
2087        Louisville Muhammad Ali International       31140
2088                          Logan International       14460
2089                                    LaGuardia       35620
2090                 Charleston AFB/International       16700
2091                   Detroit Metro Wayne County       19820
2092                       Key West International       28580
2093               General Mitchell International       33340
2094    Louis Armstrong New Orleans International       35380
2095               Portland International Jetport       38860
2096              Charlotte Douglas International       16740
2097                                    LaGuardia       35620
2098    Louis Armstrong New Orleans International       35380
2099             Sarasota/Bradenton International       35840
2100                                    LaGuardia       35620
2101                          Logan International       14460
2102              Charlotte Douglas International       16740
2103              Washington Dulles International       47900
2104                 Newark Liberty International       35620
2105                      Nashville International       34980
2106           Baltimore/Washington International       12580
2107           Baltimore/Washington International       12580
2108            Ronald Reagan Washington National       47900
2109                        Norfolk International       47260
2110                   Philadelphia International       37980
2111                   Philadelphia International       37980
2112                     Pittsburgh International       38300
2113              Cleveland-Hopkins International       17460
2114            John Glenn Columbus International       18140
2115                   Indianapolis International       26900
2116                   Indianapolis International       26900
2117                       Richmond International       40060
2118   Cincinnati/Northern Kentucky International       17140
2119              Charlotte Douglas International       16740
2120                   Jacksonville International       27260
2121                          Logan International       14460
2122                 Raleigh-Durham International       39580
2123            John Glenn Columbus International       18140
2124              Washington Dulles International       47900
2125            Ronald Reagan Washington National       47900
2126                                    LaGuardia       35620
2127                John F. Kennedy International       35620
2128                          Logan International       14460
2129                John F. Kennedy International       35620
2130                                    LaGuardia       35620
2131                 Chicago O'Hare International       16980
2132                          Logan International       14460
2133            Ronald Reagan Washington National       47900
2134                 Newark Liberty International       35620
2135              Washington Dulles International       47900
2136                   Philadelphia International       37980
2137                 Newark Liberty International       35620
2138              Washington Dulles International       47900
2139              Charlotte Douglas International       16740
2140                                    LaGuardia       35620
2141              Charlotte Douglas International       16740
2142            Ronald Reagan Washington National       47900
2143                 Chicago O'Hare International       16980
2144              Washington Dulles International       47900
2145              Washington Dulles International       47900
2146              Washington Dulles International       47900
2147                Buffalo Niagara International       15380
2148              Washington Dulles International       47900
2149                 Chicago O'Hare International       16980
2150                 Piedmont Triad International       24660
2151                           Westchester County       35620
2152              Washington Dulles International       47900
2153            Minneapolis-St Paul International       33460
2154            Minneapolis-St Paul International       33460
2155            Bozeman Yellowstone International       14580
2156                  San Francisco International       41860
2157            Minneapolis-St Paul International       33460
2158                   Philadelphia International       37980
2159                   Philadelphia International       37980
2160                   Philadelphia International       37980
2161                   Philadelphia International       37980
2162                   Philadelphia International       37980
2163                   Philadelphia International       37980
2164                   Philadelphia International       37980
2165                   Philadelphia International       37980
2166                   Philadelphia International       37980
2167                          Logan International       14460
2168                   Philadelphia International       37980
2169                            Flagstaff Pulliam       22380
2170                         Denver International       19740
2171              Washington Dulles International       47900
2172                                  Adams Field       30780
2173                 Newark Liberty International       35620
2174                       Key West International       28580
2175                        Orlando International       36740
2176                        Orlando International       36740
2177                          Tampa International       45300
2178      Fort Lauderdale-Hollywood International       33100
2179                          Tampa International       45300
2180                              Tweed New Haven       35300
2181                          Logan International       14460
2182         George Bush Intercontinental/Houston       26420
2183                                    LaGuardia       35620
2184               General Mitchell International       33340
2185                                    LaGuardia       35620
2186                       McCarran International       29820
2187                          Miami International       33100
2188                          Logan International       14460
2189                   Palm Springs International       40140
2190                              Kahului Airport       27980
2191              Dallas/Fort Worth International       19100
2192             Phoenix Sky Harbor International       38060
2193              Dallas/Fort Worth International       19100
2194                                 Cyril E King        <NA>
2195                      San Diego International       41740
2196                  San Francisco International       41860
2197                    Kansas City International       28140
2198                 Raleigh-Durham International       39580
2199                          Miami International       33100
2200                 Seattle/Tacoma International       42660
2201                Daniel K Inouye International       46520
2202              Southwest Florida International       15980
2203                  San Francisco International       41860
2204              Southwest Florida International       15980
2205                John F. Kennedy International       35620
2206                        Bradley International       25540
2207            Albuquerque International Sunport       10740
2208                          Logan International       14460
2209                                 Jackson Hole       27220
2210                      Melbourne International       37340
2211                     Palm Beach International       33100
2212                       Portland International       38900
2213                        Orlando International       36740
2214                    Los Angeles International       31080
2215                    Kansas City International       28140
2216             Phoenix Sky Harbor International       38060
2217              Dallas/Fort Worth International       19100
2218             Austin - Bergstrom International       12420
2219                         Denver International       19740
2220      Fort Lauderdale-Hollywood International       33100
2221               Luis Munoz Marin International       41980
2222   Cincinnati/Northern Kentucky International       17140
2223                John F. Kennedy International       35620
2224                 Raleigh-Durham International       39580
2225                          Miami International       33100
2226                      San Diego International       41740
2227     Hartsfield-Jackson Atlanta International       12060
2228             Austin - Bergstrom International       12420
2229                    Kansas City International       28140
2230            Minneapolis-St Paul International       33460
2231                    Los Angeles International       31080
2232                 Seattle/Tacoma International       42660
2233              Charlotte Douglas International       16740
2234                           Westchester County       35620
2235                   Palm Springs International       40140
2236              Southwest Florida International       15980
2237                    Los Angeles International       31080
2238                          Logan International       14460
2239                                 Yampa Valley       44460
2240                     Reno/Tahoe International       39900
2241                 Salt Lake City International       41620
2242                  San Francisco International       41860
2243                          Tampa International       45300
2244                 Raleigh-Durham International       39580
2245            John Glenn Columbus International       18140
2246                    Kansas City International       28140
2247            Albuquerque International Sunport       10740
2248                                    LaGuardia       35620
2249                 Seattle/Tacoma International       42660
2250            Minneapolis-St Paul International       33460
2251                 Salt Lake City International       41620
2252                          Tampa International       45300
2253               Luis Munoz Marin International       41980
2254      Fort Lauderdale-Hollywood International       33100
2255          Ted Stevens Anchorage International       11260
2256                Daniel K Inouye International       46520
2257                                  Agana Field        <NA>
2258                Daniel K Inouye International       46520
2259        Kona International Airport at Keahole       25900
2260                Daniel K Inouye International       46520
2261                              Kahului Airport       27980
2262                       McCarran International       29820
2263     Hartsfield-Jackson Atlanta International       12060
2264          Baton Rouge Metropolitan/Ryan Field       12940
2265                         Gainesville Regional       23540
2266                Gulfport-Biloxi International       25060
2267                                   Blue Grass       30460
2268                              Mobile Regional       33660
2269               Roanoke Regional/Woodrum Field       40220
2270                 Springfield-Branson National       44180
2271                          Tulsa International       46140
2272                                    LaGuardia       35620
2273               General Mitchell International       33340
2274                       Richmond International       40060
2275     Hartsfield-Jackson Atlanta International       12060
2276                                    LaGuardia       35620
2277                          Logan International       14460
2278                   Detroit Metro Wayne County       19820
2279                     Burlington International       15540
2280                 Charleston AFB/International       16700
2281         Greenville-Spartanburg International       43900
2282               Portland International Jetport       38860
2283                 Raleigh-Durham International       39580
2284              Greater Rochester International       40380
2285                                 McGhee Tyson       28940
2286   Cincinnati/Northern Kentucky International       17140
2287     Hartsfield-Jackson Atlanta International       12060
2288                John F. Kennedy International       35620
2289                         Bangor International       12620
2290                      Nashville International       34980
2291                 Charleston AFB/International       16700
2292                 Charleston AFB/International       16700
2293                     Pittsburgh International       38300
2294           Savannah/Hilton Head International       42340
2295       Birmingham-Shuttlesworth International       13820
2296                 Piedmont Triad International       24660
2297         Greenville-Spartanburg International       43900
2298                        Memphis International       32820
2299               Portland International Jetport       38860
2300           Savannah/Hilton Head International       42340
2301     Hartsfield-Jackson Atlanta International       12060
2302   Cincinnati/Northern Kentucky International       17140
2303                     Des Moines International       19780
2304                John F. Kennedy International       35620
2305                                    LaGuardia       35620
2306     Hartsfield-Jackson Atlanta International       12060
2307                   Detroit Metro Wayne County       19820
2308                                    LaGuardia       35620
2309                          Tampa International       45300
2310                          Logan International       14460
2311              Dallas/Fort Worth International       19100
2312                John F. Kennedy International       35620
2313                          Miami International       33100
2314             Austin - Bergstrom International       12420
2315              Dallas/Fort Worth International       19100
2316              Dallas/Fort Worth International       19100
2317             Phoenix Sky Harbor International       38060
2318              Charlotte Douglas International       16740
2319            John Glenn Columbus International       18140
2320                       McCarran International       29820
2321            Minneapolis-St Paul International       33460
2322    Louis Armstrong New Orleans International       35380
2323                        Norfolk International       47260
2324             Phoenix Sky Harbor International       38060
2325                     Pittsburgh International       38300
2326               Portland International Jetport       38860
2327                          Tampa International       45300
2328              Charlotte Douglas International       16740
2329                                    LaGuardia       35620
2330                   Jacksonville International       27260
2331                        Memphis International       32820
2332            Albuquerque International Sunport       10740
2333                         Bangor International       12620
2334            John Glenn Columbus International       18140
2335                 Piedmont Triad International       24660
2336                        Wichita Mid-Continent       48620
2337                    Los Angeles International       31080
2338                     Harrisburg International       25420
2339                 McAllen Miller International       32580
2340               General Mitchell International       33340
2341                        Ontario International       40140
2342                     Palm Beach International       33100
2343               Portland International Jetport       38860
2344              Southwest Florida International       15980
2345                  San Francisco International       41860
2346                 Chicago O'Hare International       16980
2347                 Chicago O'Hare International       16980
2348              Charlotte Douglas International       16740
2349                          Miami International       33100
2350              Dallas/Fort Worth International       19100
2351              Dallas/Fort Worth International       19100
2352                          Miami International       33100
2353              Dallas/Fort Worth International       19100
2354              Charlotte Douglas International       16740
2355              Dallas/Fort Worth International       19100
2356              Charlotte Douglas International       16740
2357                 Chicago O'Hare International       16980
2358             Austin - Bergstrom International       12420
2359              Dallas/Fort Worth International       19100
2360              Charlotte Douglas International       16740
2361              Dallas/Fort Worth International       19100
2362              Dallas/Fort Worth International       19100
2363                          Tampa International       45300
2364                       McCarran International       29820
2365             Phoenix Sky Harbor International       38060
2366                  San Francisco International       41860
2367               Luis Munoz Marin International       41980
2368                                 Cyril E King        <NA>
2369              Charlotte Douglas International       16740
2370              Dallas/Fort Worth International       19100
2371              Dallas/Fort Worth International       19100
2372                       Key West International       28580
2373                        Ontario International       40140
2374               Luis Munoz Marin International       41980
2375             John Wayne Airport-Orange County       31080
2376             Sarasota/Bradenton International       35840
2377              Charlotte Douglas International       16740
2378              Dallas/Fort Worth International       19100
2379              Southwest Florida International       15980
2380                          Logan International       14460
2381                 Newark Liberty International       35620
2382                John F. Kennedy International       35620
2383                          Miami International       33100
2384              Charlotte Douglas International       16740
2385              Dallas/Fort Worth International       19100
2386                          Miami International       33100
2387              Dallas/Fort Worth International       19100
2388              Dallas/Fort Worth International       19100
2389                   Philadelphia International       37980
2390              Charlotte Douglas International       16740
2391              Charlotte Douglas International       16740
2392              Charlotte Douglas International       16740
2393                          Miami International       33100
2394                          Miami International       33100
2395                   Philadelphia International       37980
2396              Dallas/Fort Worth International       19100
2397              Dallas/Fort Worth International       19100
2398                Daniel K Inouye International       46520
2399              Wiley Post/Will Rogers Memorial        <NA>
2400          Ted Stevens Anchorage International       11260
2401                 Seattle/Tacoma International       42660
2402                 Seattle/Tacoma International       42660
2403          Ted Stevens Anchorage International       11260
2404          Ted Stevens Anchorage International       11260
2405                                Lihue Airport       28180
2406                       Portland International       38900
2407                 Seattle/Tacoma International       42660
2408          Ted Stevens Anchorage International       11260
2409                                Lihue Airport       28180
2410                 Seattle/Tacoma International       42660
2411                   Palm Springs International       40140
2412      Fort Lauderdale-Hollywood International       33100
2413                                Lihue Airport       28180
2414                        Orlando International       36740
2415            Ronald Reagan Washington National       47900
2416                John F. Kennedy International       35620
2417                          Logan International       14460
2418      Fort Lauderdale-Hollywood International       33100
2419      Fort Lauderdale-Hollywood International       33100
2420                  San Francisco International       41860
2421                Buffalo Niagara International       15380
2422                     Palm Beach International       33100
2423                      San Diego International       41740
2424             Sarasota/Bradenton International       35840
2425                John F. Kennedy International       35620
2426                     Palm Beach International       33100
2427                       Richmond International       40060
2428            Albuquerque International Sunport       10740
2429                          Logan International       14460
2430                                     Bob Hope       31080
2431                     Palm Beach International       33100
2432                   Palm Springs International       40140
2433                        Bradley International       25540
2434                Buffalo Niagara International       15380
2435                John F. Kennedy International       35620
2436                        Orlando International       36740
2437                     Palm Beach International       33100
2438                John F. Kennedy International       35620
2439                John F. Kennedy International       35620
2440                          Tampa International       45300
2441                John F. Kennedy International       35620
2442                          Logan International       14460
2443                        Orlando International       36740
2444                         Albany International       10580
2445                        Bradley International       25540
2446                           Boise Air Terminal       14260
2447            Bozeman Yellowstone International       14580
2448            John Glenn Columbus International       18140
2449             James M Cox/Dayton International       19430
2450                        Eagle County Regional       20780
2451                 Piedmont Triad International       24660
2452  Huntsville International-Carl T Jones Field       26620
2453                     Wilmington International       48900
2454                   Jacksonville International       27260
2455                              Eppley Airfield       36540
2456                        Norfolk International       47260
2457                Pensacola Gulf Coast Regional       37860
2458               Portland International Jetport       38860
2459                 Raleigh-Durham International       39580
2460                      San Diego International       41740
2461                  San Francisco International       41860
2462               Luis Munoz Marin International       41980
2463             John Wayne Airport-Orange County       31080
2464                         Tucson International       46060
2465           Eglin AFB Destin Fort Walton Beach       18880
2466                   Detroit Metro Wayne County       19820
2467                 Seattle/Tacoma International       42660
2468                 Salt Lake City International       41620
2469                          Miami International       33100
2470            Minneapolis-St Paul International       33460
2471                 Salt Lake City International       41620
2472      Fort Lauderdale-Hollywood International       33100
2473                       McCarran International       29820
2474              Southwest Florida International       15980
2475                   Detroit Metro Wayne County       19820
2476                John F. Kennedy International       35620
2477             Austin - Bergstrom International       12420
2478                          Logan International       14460
2479                Buffalo Niagara International       15380
2480               General Mitchell International       33340
2481                   Myrtle Beach International       34820
2482                      San Diego International       41740
2483                    San Antonio International       41700
2484                  San Francisco International       41860
2485             Sarasota/Bradenton International       35840
2486     Hartsfield-Jackson Atlanta International       12060
2487     Hartsfield-Jackson Atlanta International       12060
2488                 Seattle/Tacoma International       42660
2489                 Salt Lake City International       41620
2490    Louis Armstrong New Orleans International       35380
2491                     Palm Beach International       33100
2492                   Indianapolis International       26900
2493                          Tampa International       45300
2494                          Logan International       14460
2495                 Salt Lake City International       41620
2496                          Logan International       14460
2497                John F. Kennedy International       35620
2498                        Bradley International       25540
2499           Baltimore/Washington International       12580
2500                   Detroit Metro Wayne County       19820
2501      Fort Lauderdale-Hollywood International       33100
2502                    Kansas City International       28140
2503               General Mitchell International       33340
2504                       Missoula International       33540
2505                   Palm Springs International       40140
2506                    San Antonio International       41700
2507                     Sacramento International       40900
2508             John Wayne Airport-Orange County       31080
2509             Sarasota/Bradenton International       35840
2510                          Logan International       14460
2511                   Detroit Metro Wayne County       19820
2512   Cincinnati/Northern Kentucky International       17140
2513                   Detroit Metro Wayne County       19820
2514             Austin - Bergstrom International       12420
2515                John F. Kennedy International       35620
2516            Minneapolis-St Paul International       33460
2517                          Tampa International       45300
2518                          Logan International       14460
2519     Hartsfield-Jackson Atlanta International       12060
2520                      Nashville International       34980
2521                          Logan International       14460
2522           Baltimore/Washington International       12580
2523            Ronald Reagan Washington National       47900
2524      Fort Lauderdale-Hollywood International       33100
2525                   Indianapolis International       26900
2526    Louis Armstrong New Orleans International       35380
2527                       Portland International       38900
2528                 Raleigh-Durham International       39580
2529                     Reno/Tahoe International       39900
2530                    San Antonio International       41700
2531               St Louis Lambert International       41180
2532                          Tampa International       45300
2533     Hartsfield-Jackson Atlanta International       12060
2534                 Newark Liberty International       35620
2535                     Burlington International       15540
2536                Buffalo Niagara International       15380
2537                 Gerald R. Ford International       24340
2538         Greenville-Spartanburg International       43900
2539                          Hilton Head Airport       25940
2540                       Richmond International       40060
2541                     Burlington International       15540
2542               St Louis Lambert International       41180
2543        Kona International Airport at Keahole       25900
2544              Dallas/Fort Worth International       19100
2545              Dallas/Fort Worth International       19100
2546 Brownsville South Padre Island International       15180
2547                        Columbia Metropolitan       17900
2548               University of Illinois/Willard       16580
2549                 Corpus Christi International       18580
2550                      Abraham Lincoln Capital       44100
2551                                 McGhee Tyson       28940
2552                          Miami International       33100
2553                          Miami International       33100
2554              Dallas/Fort Worth International       19100
2555              Dallas/Fort Worth International       19100
2556              Dallas/Fort Worth International       19100
2557              Dallas/Fort Worth International       19100
2558              Dallas/Fort Worth International       19100
2559                              Eppley Airfield       36540
2560                          Miami International       33100
2561                              Eppley Airfield       36540
2562                     Des Moines International       19780
2563                      Rochester International       40340
2564              Dallas/Fort Worth International       19100
2565                          Miami International       33100
2566              Charlotte Douglas International       16740
2567              Charlotte Douglas International       16740
2568             Dane County Regional-Truax Field       31540
2569              Cleveland-Hopkins International       17460
2570                   Detroit Metro Wayne County       19820
2571                           Lafayette Regional       29180
2572                                  Adams Field       30780
2573                     Harrisburg International       25420
2574             James M Cox/Dayton International       19430
2575                                 McGhee Tyson       28940
2576            Ronald Reagan Washington National       47900
2577                   Philadelphia International       37980
2578                   Manchester-Boston Regional       31700
2579            Ronald Reagan Washington National       47900
2580            Ronald Reagan Washington National       47900
2581            Minneapolis-St Paul International       33460
2582                         Denver International       19740
2583              Dallas/Fort Worth International       19100
2584                       Appleton International       11540
2585                      Nashville International       34980
2586          Casper/Natrona County International       16220
2587                           Mahlon Sweet Field       21660
2588     Midland International Air and Space Port       33260
2589                        Norfolk International       47260
2590        Louisville Muhammad Ali International       31140
2591                            Granite Point Ndb        <NA>
2592                         Albany International       10580
2593                              Eppley Airfield       36540
2594                          South Bend Regional       43780
2595              Dallas/Fort Worth International       19100
2596                 Chicago O'Hare International       16980
2597            Minneapolis-St Paul International       33460
2598                    Kansas City International       28140
2599               General Mitchell International       33340
2600                   Palm Springs International       40140
2601                  Northwest Arkansas Regional       22220
2602                         Denver International       19740
2603                         Denver International       19740
2604         George Bush Intercontinental/Houston       26420
2605                           Bismarck Municipal       13900
2606                        Memphis International       32820
2607                            Will Rogers World       36420
2608                              Eppley Airfield       36540
2609                     Pittsburgh International       38300
2610                       Richmond International       40060
2611        Louisville Muhammad Ali International       31140
2612            Minneapolis-St Paul International       33460
2613                        Bradley International       25540
2614                         Albany International       10580
2615       Birmingham-Shuttlesworth International       13820
2616                        Memphis International       32820
2617                          Rapid City Regional       39660
2618                   Detroit Metro Wayne County       19820
2619                      Durango La Plata County       20420
2620            Minneapolis-St Paul International       33460
2621                         Denver International       19740
2622                        Ontario International       40140
2623            Albuquerque International Sunport       10740
2624                         Tucson International       46060
2625            Albuquerque International Sunport       10740
2626                Fresno Yosemite International       23420
2627                              Helena Regional       25740
2628                                   Tri Cities       28420
2629                   Palm Springs International       40140
2630                          Rapid City Regional       39660
2631                         Tucson International       46060
2632                 Salt Lake City International       41620
2633                           Boise Air Terminal       14260
2634                  San Francisco International       41860
2635                                Lihue Airport       28180
2636             Dane County Regional-Truax Field       31540
2637                       Missoula International       33540
2638         George Bush Intercontinental/Houston       26420
2639                    San Antonio International       41700
2640                     Sacramento International       40900
2641                         Denver International       19740
2642         George Bush Intercontinental/Houston       26420
2643                       Portland International       38900
2644             Phoenix Sky Harbor International       38060
2645                      San Diego International       41740
2646               Luis Munoz Marin International       41980
2647           Baltimore/Washington International       12580
2648            John Glenn Columbus International       18140
2649   Cincinnati/Northern Kentucky International       17140
2650                Daniel K Inouye International       46520
2651                                 Jackson Hole       27220
2652                   Philadelphia International       37980
2653                     Pittsburgh International       38300
2654                 Seattle/Tacoma International       42660
2655                 Newark Liberty International       35620
2656         George Bush Intercontinental/Houston       26420
2657         George Bush Intercontinental/Houston       26420
2658         George Bush Intercontinental/Houston       26420
2659                 Newark Liberty International       35620
2660                 Chicago O'Hare International       16980
2661           Baltimore/Washington International       12580
2662                Daniel K Inouye International       46520
2663                        Orlando International       36740
2664                 Seattle/Tacoma International       42660
2665                 Newark Liberty International       35620
2666                         Denver International       19740
2667                 Newark Liberty International       35620
2668      Norman Y. Mineta San Jose International       41940
2669                      Nashville International       34980
2670               Luis Munoz Marin International       41980
2671              Southwest Florida International       15980
2672      Northwest Florida Beaches International       37460
2673                              William P Hobby       26420
2674                Daniel K Inouye International       46520
2675                    Kansas City International       28140
2676                      Nashville International       34980
2677                Daniel K Inouye International       46520
2678                   Indianapolis International       26900
2679                    San Antonio International       41700
2680      Fort Lauderdale-Hollywood International       33100
2681         George Bush Intercontinental/Houston       26420
2682              Dallas/Fort Worth International       19100
2683                     Des Moines International       19780
2684                       Key West International       28580
2685        Louisville Muhammad Ali International       31140
2686              Washington Dulles International       47900
2687                 Charleston AFB/International       16700
2688              Cleveland-Hopkins International       17460
2689                   Jacksonville International       27260
2690                          Logan International       14460
2691                John F. Kennedy International       35620
2692             Dane County Regional-Truax Field       31540
2693            John Glenn Columbus International       18140
2694                    Kansas City International       28140
2695                        Memphis International       32820
2696             Dane County Regional-Truax Field       31540
2697        Louisville Muhammad Ali International       31140
2698                 Newark Liberty International       35620
2699                  Northwest Arkansas Regional       22220
2700                       Key West International       28580
2701        Louisville Muhammad Ali International       31140
2702                                    LaGuardia       35620
2703                John F. Kennedy International       35620
2704                 Charleston AFB/International       16700
2705                   Jacksonville International       27260
2706        Louisville Muhammad Ali International       31140
2707                       Key West International       28580
2708    Louis Armstrong New Orleans International       35380
2709              Charlotte Douglas International       16740
2710                          Logan International       14460
2711                                    LaGuardia       35620
2712                 Chicago O'Hare International       16980
2713                     Ithaca Tompkins Regional       27060
2714                        Columbia Metropolitan       17900
2715                Pensacola Gulf Coast Regional       37860
2716                 Chicago O'Hare International       16980
2717                         Valley International       15180
2718            Minneapolis-St Paul International       33460
2719      Green Bay Austin Straubel International       24580
2720       Salisbury-Ocean City/Wicomico Regional       41540
2721        Louisville Muhammad Ali International       31140
2722                   Philadelphia International       37980
2723                        Long Island MacArthur       35620
2724           Savannah/Hilton Head International       42340
2725         George Bush Intercontinental/Houston       26420
2726      Dickinson - Theodore Roosevelt Regional       19860
2727                         Albany International       10580
2728                              Mobile Regional       33660
2729               St Louis Lambert International       41180
2730         George Bush Intercontinental/Houston       26420
2731                         Denver International       19740
2732                  Lehigh Valley International       10900
2733                John F. Kennedy International       35620
2734                John F. Kennedy International       35620
2735                                    LaGuardia       35620
2736            Minneapolis-St Paul International       33460
2737                                    LaGuardia       35620
2738                                    LaGuardia       35620
2739                     Burlington International       15540
2740               Portland International Jetport       38860
2741                        Columbia Metropolitan       17900
2742                 Gerald R. Ford International       24340
2743                        Norfolk International       47260
2744     Hartsfield-Jackson Atlanta International       12060
2745                John F. Kennedy International       35620
2746                          Logan International       14460
2747                John F. Kennedy International       35620
2748                                    LaGuardia       35620
2749                John F. Kennedy International       35620
2750                                    LaGuardia       35620
2751              Dallas/Fort Worth International       19100
2752              Dallas/Fort Worth International       19100
2753                          Miami International       33100
2754             Phoenix Sky Harbor International       38060
2755              Charlotte Douglas International       16740
2756              Charlotte Douglas International       16740
2757              Dallas/Fort Worth International       19100
2758              Dallas/Fort Worth International       19100
2759              Dallas/Fort Worth International       19100
2760              Dallas/Fort Worth International       19100
2761              Charlotte Douglas International       16740
2762              Charlotte Douglas International       16740
2763              Dallas/Fort Worth International       19100
2764                          Miami International       33100
2765             Phoenix Sky Harbor International       38060
2766                 Chicago O'Hare International       16980
2767                          Logan International       14460
2768                Buffalo Niagara International       15380
2769           Baltimore/Washington International       12580
2770   Cincinnati/Northern Kentucky International       17140
2771              Dallas/Fort Worth International       19100
2772                       Key West International       28580
2773      Fort Lauderdale-Hollywood International       33100
2774                    Los Angeles International       31080
2775                          Miami International       33100
2776             Phoenix Sky Harbor International       38060
2777              Southwest Florida International       15980
2778                  San Francisco International       41860
2779               St Louis Lambert International       41180
2780               Syracuse Hancock International       45060
2781              Dallas/Fort Worth International       19100
2782              Dallas/Fort Worth International       19100
2783             Sarasota/Bradenton International       35840
2784                   Philadelphia International       37980
2785                      Nashville International       34980
2786                           Boise Air Terminal       14260
2787                                     Bob Hope       31080
2788           City of Colorado Springs Municipal       17820
2789   Cincinnati/Northern Kentucky International       17140
2790            Ronald Reagan Washington National       47900
2791                                 Jackson Hole       27220
2792                                  Adams Field       30780
2793                    Kansas City International       28140
2794                        Orlando International       36740
2795                          Miami International       33100
2796                     Pittsburgh International       38300
2797                      San Diego International       41740
2798           Savannah/Hilton Head International       42340
2799               Luis Munoz Marin International       41980
2800                     Sacramento International       40900
2801             John Wayne Airport-Orange County       31080
2802              Dallas/Fort Worth International       19100
2803              Charlotte Douglas International       16740
2804              Charlotte Douglas International       16740
2805                    Los Angeles International       31080
2806              Dallas/Fort Worth International       19100
2807              Dallas/Fort Worth International       19100
2808                          Miami International       33100
2809              Dallas/Fort Worth International       19100
2810                          Miami International       33100
2811                          Miami International       33100
2812              Charlotte Douglas International       16740
2813              Dallas/Fort Worth International       19100
2814              Dallas/Fort Worth International       19100
2815             Austin - Bergstrom International       12420
2816              Charlotte Douglas International       16740
2817              Charlotte Douglas International       16740
2818            Ronald Reagan Washington National       47900
2819              Dallas/Fort Worth International       19100
2820              Dallas/Fort Worth International       19100
2821              Dallas/Fort Worth International       19100
2822                   Philadelphia International       37980
2823              Charlotte Douglas International       16740
2824              Charlotte Douglas International       16740
2825              Charlotte Douglas International       16740
2826             Phoenix Sky Harbor International       38060
2827              Dallas/Fort Worth International       19100
2828                          Miami International       33100
2829                 Raleigh-Durham International       39580
2830                      Nashville International       34980
2831                 Charleston AFB/International       16700
2832              Charlotte Douglas International       16740
2833            Ronald Reagan Washington National       47900
2834              Dallas/Fort Worth International       19100
2835                   Jacksonville International       27260
2836                 Seattle/Tacoma International       42660
2837             Phoenix Sky Harbor International       38060
2838              Charlotte Douglas International       16740
2839              Dallas/Fort Worth International       19100
2840                     Palm Beach International       33100
2841                         Tucson International       46060
2842              Dallas/Fort Worth International       19100
2843                   Philadelphia International       37980
2844              Dallas/Fort Worth International       19100
2845              Charlotte Douglas International       16740
2846              Charlotte Douglas International       16740
2847                        Orlando International       36740
2848             Dane County Regional-Truax Field       31540
2849              Dallas/Fort Worth International       19100
2850              Dallas/Fort Worth International       19100
2851             Phoenix Sky Harbor International       38060
2852              Charlotte Douglas International       16740
2853              Dallas/Fort Worth International       19100
2854                          Miami International       33100
2855              Dallas/Fort Worth International       19100
2856              Dallas/Fort Worth International       19100
2857                          Miami International       33100
2858                 Chicago O'Hare International       16980
2859                   Philadelphia International       37980
2860                          Miami International       33100
2861              Dallas/Fort Worth International       19100
2862              Dallas/Fort Worth International       19100
2863                   Philadelphia International       37980
2864                   Philadelphia International       37980
2865              Dallas/Fort Worth International       19100
2866              Dallas/Fort Worth International       19100
2867                          Logan International       14460
2868              Charlotte Douglas International       16740
2869                   Philadelphia International       37980
2870                 Chicago O'Hare International       16980
2871                 Seattle/Tacoma International       42660
2872                 Seattle/Tacoma International       42660
2873                 Seattle/Tacoma International       42660
2874                 Seattle/Tacoma International       42660
2875                 Seattle/Tacoma International       42660
2876                 Seattle/Tacoma International       42660
2877                   Petersburg James A Johnson        <NA>
2878                         Juneau International       27940
2879                      San Diego International       41740
2880                 Seattle/Tacoma International       42660
2881            Albuquerque International Sunport       10740
2882                        Orlando International       36740
2883                 Seattle/Tacoma International       42660
2884                                     Bob Hope       31080
2885            John Glenn Columbus International       18140
2886   Cincinnati/Northern Kentucky International       17140
2887                   Indianapolis International       26900
2888               General Mitchell International       33340
2889                              Kahului Airport       27980
2890                            Will Rogers World       36420
2891                              Eppley Airfield       36540
2892                 Raleigh-Durham International       39580
2893                    San Antonio International       41700
2894               St Louis Lambert International       41180
2895                         Tucson International       46060
2896                Daniel K Inouye International       46520
2897                    Los Angeles International       31080
2898                     Palm Beach International       33100
2899              Southwest Florida International       15980
2900                       Key West International       28580
2901                    San Antonio International       41700
2902           Savannah/Hilton Head International       42340
2903                        Orlando International       36740
2904                          Logan International       14460
2905                    Los Angeles International       31080
2906                          Logan International       14460
2907                          Logan International       14460
2908               Luis Munoz Marin International       41980
2909                                 Cyril E King        <NA>
2910                                 Cyril E King        <NA>
2911                   Jacksonville International       27260
2912                 Theodore Francis Green State       39300
2913                      San Diego International       41740
2914               Luis Munoz Marin International       41980
2915                 Salt Lake City International       41620
2916                        Orlando International       36740
2917                          Tampa International       45300
2918                John F. Kennedy International       35620
2919                          Logan International       14460
2920      Fort Lauderdale-Hollywood International       33100
2921                    Los Angeles International       31080
2922                                    LaGuardia       35620
2923                             Rafael Hernandez       10380
2924                       Key West International       28580
2925         George Bush Intercontinental/Houston       26420
2926                    San Antonio International       41700
2927             Sarasota/Bradenton International       35840
2928                 Theodore Francis Green State       39300
2929                        Bradley International       25540
2930                        Bradley International       25540
2931                          Logan International       14460
2932                John F. Kennedy International       35620
2933                 Theodore Francis Green State       39300
2934                        Orlando International       36740
2935      Fort Lauderdale-Hollywood International       33100
2936                    Los Angeles International       31080
2937                        Orlando International       36740
2938                John F. Kennedy International       35620
2939                John F. Kennedy International       35620
2940      Fort Lauderdale-Hollywood International       33100
2941                          Logan International       14460
2942                John F. Kennedy International       35620
2943                 Raleigh-Durham International       39580
2944                John F. Kennedy International       35620
2945                John F. Kennedy International       35620
2946                 Salt Lake City International       41620
2947                Buffalo Niagara International       15380
2948                 Charleston AFB/International       16700
2949                 Gerald R. Ford International       24340
2950                John F. Kennedy International       35620
2951                 Theodore Francis Green State       39300
2952             Sarasota/Bradenton International       35840
2953            Minneapolis-St Paul International       33460
2954                   Detroit Metro Wayne County       19820
2955                 Salt Lake City International       41620
2956     Hartsfield-Jackson Atlanta International       12060
2957     Hartsfield-Jackson Atlanta International       12060
2958                 Salt Lake City International       41620
2959            Ronald Reagan Washington National       47900
2960            Minneapolis-St Paul International       33460
2961            Minneapolis-St Paul International       33460
2962            Minneapolis-St Paul International       33460
2963                   Detroit Metro Wayne County       19820
2964                   Detroit Metro Wayne County       19820
2965     Hartsfield-Jackson Atlanta International       12060
2966     Hartsfield-Jackson Atlanta International       12060
2967     Hartsfield-Jackson Atlanta International       12060
2968     Hartsfield-Jackson Atlanta International       12060
2969                   Detroit Metro Wayne County       19820
2970                John F. Kennedy International       35620
2971            Minneapolis-St Paul International       33460
2972   Cincinnati/Northern Kentucky International       17140
2973                 Salt Lake City International       41620
2974                 Salt Lake City International       41620
2975              Washington Dulles International       47900
2976     Hartsfield-Jackson Atlanta International       12060
2977                   Detroit Metro Wayne County       19820
2978                             The Eastern Iowa       16300
2979                         Hector International       22020
2980                 Raleigh-Durham International       39580
2981                  Northwest Arkansas Regional       22220
2982                     Palm Beach International       33100
2983                 Raleigh-Durham International       39580
2984                                  Adams Field       30780
2985                        Orlando International       36740
2986               Portland International Jetport       38860
2987               Syracuse Hancock International       45060
2988                       McCarran International       29820
2989                               Trenton Mercer       45940
2990                        Orlando International       36740
2991              Southwest Florida International       15980
2992                         Denver International       19740
2993                         Denver International       19740
2994              Washington Dulles International       47900
2995                 Chicago O'Hare International       16980
2996         Greenville-Spartanburg International       43900
2997                        Norfolk International       47260
2998                 Newark Liberty International       35620
2999              Washington Dulles International       47900
3000              Dallas/Fort Worth International       19100
3001                          Miami International       33100
3002              Dallas/Fort Worth International       19100
3003              Dallas/Fort Worth International       19100
3004              Dallas/Fort Worth International       19100
3005                   Indianapolis International       26900
3006                           Asheville Regional       11700
3007                                Meadows Field       12540
3008       Birmingham-Shuttlesworth International       13820
3009                         Garden City Regional       23780
3010                         Laredo International       29700
3011                   Myrtle Beach International       34820
3012           Eglin AFB Destin Fort Walton Beach       18880
3013                          Miami International       33100
3014   Cincinnati/Northern Kentucky International       17140
3015           Savannah/Hilton Head International       42340
3016                                 McGhee Tyson       28940
3017            John Glenn Columbus International       18140
3018                          Evansville Regional       21780
3019                                  Adams Field       30780
3020                    San Antonio International       41700
3021             Austin - Bergstrom International       12420
3022                          Miami International       33100
3023              Dallas/Fort Worth International       19100
3024                        Orlando International       36740
3025                        Orlando International       36740
3026                    Los Angeles International       31080
3027                   Indianapolis International       26900
3028               General Mitchell International       33340
3029                    Los Angeles International       31080
3030                    Los Angeles International       31080
3031            Ronald Reagan Washington National       47900
3032                   Philadelphia International       37980
3033      Northwest Florida Beaches International       37460
3034               General Mitchell International       33340
3035                         Tallahassee Regional       45220
3036           Eglin AFB Destin Fort Walton Beach       18880
3037                   Philadelphia International       37980
3038               Augusta Regional at Bush Field       12260
3039                         Albany International       10580
3040                     Des Moines International       19780
3041  Huntsville International-Carl T Jones Field       26620
3042                          Montgomery Regional       33860
3043               Portland International Jetport       38860
3044            Ronald Reagan Washington National       47900
3045                   Philadelphia International       37980
3046              Charlotte Douglas International       16740
3047              Charlotte Douglas International       16740
3048            Ronald Reagan Washington National       47900
3049              Charlotte Douglas International       16740
3050            Ronald Reagan Washington National       47900
3051   Cincinnati/Northern Kentucky International       17140
3052              Dallas/Fort Worth International       19100
3053                   Palm Springs International       40140
3054                         Denver International       19740
3055                         Denver International       19740
3056                  San Francisco International       41860
3057                   Jacksonville International       27260
3058                   Palm Springs International       40140
3059           Savannah/Hilton Head International       42340
3060          Lubbock Preston Smith International       31180
3061                                   Tri Cities       28700
3062                 Theodore Francis Green State       39300
3063              Dallas/Fort Worth International       19100
3064                 Seattle/Tacoma International       42660
3065         George Bush Intercontinental/Houston       26420
3066                         Denver International       19740
3067                            Will Rogers World       36420
3068                Fresno Yosemite International       23420
3069         Rogue Valley International - Medford       32780
3070         George Bush Intercontinental/Houston       26420
3071         George Bush Intercontinental/Houston       26420
3072            John Glenn Columbus International       18140
3073                            Will Rogers World       36420
3074                   Detroit Metro Wayne County       19820
3075             Phoenix Sky Harbor International       38060
3076                 Chicago O'Hare International       16980
3077                 Chicago O'Hare International       16980
3078                    Kansas City International       28140
3079                           Mahlon Sweet Field       21660
3080         Rogue Valley International - Medford       32780
3081                        Ontario International       40140
3082                      Santa Barbara Municipal       42200
3083                     Des Moines International       19780
3084                 Salt Lake City International       41620
3085         George Bush Intercontinental/Houston       26420
3086                 Seattle/Tacoma International       42660
3087                      Fairbanks International       21820
3088          Ted Stevens Anchorage International       11260
3089                 Seattle/Tacoma International       42660
3090                   Palm Springs International       40140
3091                         Walla Walla Regional       47460
3092                  San Francisco International       41860
3093                 Newark Liberty International       35620
3094                 Chicago O'Hare International       16980
3095                 Chicago O'Hare International       16980
3096                 Chicago O'Hare International       16980
3097         George Bush Intercontinental/Houston       26420
3098                     Pittsburgh International       38300
3099      Norman Y. Mineta San Jose International       41940
3100                             Rafael Hernandez       10380
3101                    Los Angeles International       31080
3102             Austin - Bergstrom International       12420
3103              Southwest Florida International       15980
3104                 McAllen Miller International       32580
3105                       Portland International       38900
3106                      San Diego International       41740
3107      Norman Y. Mineta San Jose International       41940
3108                     Sacramento International       40900
3109             John Wayne Airport-Orange County       31080
3110         George Bush Intercontinental/Houston       26420
3111                  San Francisco International       41860
3112           Baltimore/Washington International       12580
3113              Cleveland-Hopkins International       17460
3114              Washington Dulles International       47900
3115              Washington Dulles International       47900
3116         George Bush Intercontinental/Houston       26420
3117                         Denver International       19740
3118                         Denver International       19740
3119         George Bush Intercontinental/Houston       26420
3120                         Denver International       19740
3121           Metropolitan Oakland International       41860
3122                      San Diego International       41740
3123            Albuquerque International Sunport       10740
3124          Lubbock Preston Smith International       31180
3125                       McCarran International       29820
3126               St Louis Lambert International       41180
3127           Metropolitan Oakland International       41860
3128                     Sacramento International       40900
3129                      Nashville International       34980
3130                          Tampa International       45300
3131                         Albany International       10580
3132             Austin - Bergstrom International       12420
3133            John Glenn Columbus International       18140
3134                            Dallas Love Field       19100
3135                    Kansas City International       28140
3136                   Manchester-Boston Regional       31700
3137               Syracuse Hancock International       45060
3138               General Mitchell International       33340
3139                     Palm Beach International       33100
3140                    San Antonio International       41700
3141                            Dallas Love Field       19100
3142      Fort Lauderdale-Hollywood International       33100
3143                   Myrtle Beach International       34820
3144                   Indianapolis International       26900
3145                        Memphis International       32820
3146                          Miami International       33100
3147               General Mitchell International       33340
3148                      San Diego International       41740
3149           Savannah/Hilton Head International       42340
3150             Sarasota/Bradenton International       35840
3151              Southwest Florida International       15980
3152                              William P Hobby       26420
3153                    Kansas City International       28140
3154           City of Colorado Springs Municipal       17820
3155                            Montrose Regional       33940
3156                        Long Island MacArthur       35620
3157            Albuquerque International Sunport       10740
3158                 Corpus Christi International       18580
3159            Ronald Reagan Washington National       47900
3160     Jackson Medgar Wiley Evers International       27140
3161                        Orlando International       36740
3162                Fresno Yosemite International       23420
3163                            Will Rogers World       36420
3164                       McCarran International       29820
3165                              William P Hobby       26420
3166                            Dallas Love Field       19100
3167               St Louis Lambert International       41180
3168                       McCarran International       29820
3169                              William P Hobby       26420
3170            Ronald Reagan Washington National       47900
3171                    San Antonio International       41700
3172                              William P Hobby       26420
3173                        Long Island MacArthur       35620
3174                   Detroit Metro Wayne County       19820
3175                   Manchester-Boston Regional       31700
3176           Savannah/Hilton Head International       42340
3177            Albuquerque International Sunport       10740
3178                        Bradley International       25540
3179                                     Bob Hope       31080
3180                    San Antonio International       41700
3181                          Tampa International       45300
3182                          Miami International       33100
3183                      Nashville International       34980
3184                              William P Hobby       26420
3185                    Kansas City International       28140
3186            Ronald Reagan Washington National       47900
3187                      Nashville International       34980
3188                            Will Rogers World       36420
3189                        Wichita Mid-Continent       48620
3190                   Indianapolis International       26900
3191                          Tampa International       45300
3192           Metropolitan Oakland International       41860
3193                 Chicago Midway International       16980
3194      Fort Lauderdale-Hollywood International       33100
3195               St Louis Lambert International       41180
3196           Metropolitan Oakland International       41860
3197             John Wayne Airport-Orange County       31080
3198           Baltimore/Washington International       12580
3199                     Pittsburgh International       38300
3200                     Reno/Tahoe International       39900
3201                            Dallas Love Field       19100
3202           City of Colorado Springs Municipal       17820
3203               St Louis Lambert International       41180
3204                              William P Hobby       26420
3205                       McCarran International       29820
3206             Austin - Bergstrom International       12420
3207              Southwest Florida International       15980
3208                          Tulsa International       46140
3209                 Raleigh-Durham International       39580
3210      Norman Y. Mineta San Jose International       41940
3211                        Long Island MacArthur       35620
3212                     Pittsburgh International       38300
3213                   Indianapolis International       26900
3214                       McCarran International       29820
3215               St Louis Lambert International       41180
3216         George Bush Intercontinental/Houston       26420
3217         George Bush Intercontinental/Houston       26420
3218                        El Paso International       21340
3219                         Tallahassee Regional       45220
3220             Phoenix Sky Harbor International       38060
3221                           Monterey Peninsula       41500
3222                      Santa Barbara Municipal       42200
3223         George Bush Intercontinental/Houston       26420
3224            Ronald Reagan Washington National       47900
3225                    Kansas City International       28140
3226                         Bangor International       12620
3227                 Charleston AFB/International       16700
3228                     Pittsburgh International       38300
3229               St Louis Lambert International       41180
3230                John F. Kennedy International       35620
3231   Cincinnati/Northern Kentucky International       17140
3232              Washington Dulles International       47900
3233              Cleveland-Hopkins International       17460
3234                   Jacksonville International       27260
3235               Roanoke Regional/Woodrum Field       40220
3236                           Asheville Regional       11700
3237                         Duluth International       20260
3238           Savannah/Hilton Head International       42340
3239            John Glenn Columbus International       18140
3240                 Chicago O'Hare International       16980
3241            Ronald Reagan Washington National       47900
3242                 Chicago O'Hare International       16980
3243              Washington Dulles International       47900
3244                 Chicago O'Hare International       16980
3245                 Chicago O'Hare International       16980
3246                 Chicago O'Hare International       16980
3247              Washington Dulles International       47900
3248                 Chicago O'Hare International       16980
3249                                 McGhee Tyson       28940
3250              Washington Dulles International       47900
3251                    Charlottesville Albemarle       16820
3252                 Chicago O'Hare International       16980
3253              Washington Dulles International       47900
3254            Minneapolis-St Paul International       33460
3255                Gulfport-Biloxi International       25060
3256            Minneapolis-St Paul International       33460
3257              Greater Rochester International       40380
3258                                 Lovell Field       16860
3259                   Philadelphia International       37980
3260                           Asheville Regional       11700
3261               Roanoke Regional/Woodrum Field       40220
3262                          Logan International       14460
3263         George Bush Intercontinental/Houston       26420
3264              Washington Dulles International       47900
3265      Northwest Florida Beaches International       37460
3266                         Denver International       19740
3267              Dallas/Fort Worth International       19100
3268               Luis Munoz Marin International       41980
3269              Cleveland-Hopkins International       17460
3270                                 Cyril E King        <NA>
3271              Dallas/Fort Worth International       19100
3272                    Los Angeles International       31080
3273              Dallas/Fort Worth International       19100
3274                              Kahului Airport       27980
3275                   Philadelphia International       37980
3276              Dallas/Fort Worth International       19100
3277                 Chicago O'Hare International       16980
3278   Cincinnati/Northern Kentucky International       17140
3279              Dallas/Fort Worth International       19100
3280        Kona International Airport at Keahole       25900
3281                              Kahului Airport       27980
3282                                 Nome Airport        <NA>
3283          Ted Stevens Anchorage International       11260
3284          Ted Stevens Anchorage International       11260
3285                 Seattle/Tacoma International       42660
3286                     Palm Beach International       33100
3287              Southwest Florida International       15980
3288              Southwest Florida International       15980
3289                John F. Kennedy International       35620
3290                       Appleton International       11540
3291                             The Eastern Iowa       16300
3292                     Sacramento International       40900
3293                                 Cyril E King        <NA>
3294                             Henry E. Rohlsen        <NA>
3295           Savannah/Hilton Head International       42340
3296     Hartsfield-Jackson Atlanta International       12060
3297     Hartsfield-Jackson Atlanta International       12060
3298     Hartsfield-Jackson Atlanta International       12060
3299            Minneapolis-St Paul International       33460
3300                 Newark Liberty International       35620
3301                       Key West International       28580
3302             James M Cox/Dayton International       19430
3303                Texarkana Regional-Webb Field       45500
3304              Dallas/Fort Worth International       19100
3305                        Akron-Canton Regional       10420
3306                  Daytona Beach International       19660
3307                           Westchester County       35620
3308                         Tallahassee Regional       45220
3309              Charlotte Douglas International       16740
3310              Cleveland-Hopkins International       17460
3311               Syracuse Hancock International       45060
3312             Phoenix Sky Harbor International       38060
3313                   Glacier Park International       28060
3314                  San Francisco International       41860
3315                                 Jackson Hole       27220
3316                Daniel K Inouye International       46520
3317             John Wayne Airport-Orange County       31080
3318                        Eagle County Regional       20780
3319         George Bush Intercontinental/Houston       26420
3320              Washington Dulles International       47900
3321                         Denver International       19740
3322                      Nashville International       34980
3323                      San Diego International       41740
3324            Albuquerque International Sunport       10740
3325                      San Diego International       41740
3326             John Wayne Airport-Orange County       31080
3327                        Ontario International       40140
3328                        Orlando International       36740
3329                 Chicago Midway International       16980
3330           Baltimore/Washington International       12580
3331    Louis Armstrong New Orleans International       35380
3332                 Chicago Midway International       16980
3333           Metropolitan Oakland International       41860
3334               Luis Munoz Marin International       41980
3335         George Bush Intercontinental/Houston       26420
3336       General Downing - Peoria International       37900
3337                Pensacola Gulf Coast Regional       37860
3338                          Rapid City Regional       39660
3339            Bozeman Yellowstone International       14580
3340                 Charleston AFB/International       16700
3341                        Norfolk International       47260
3342              Dallas/Fort Worth International       19100
3343                          Hilton Head Airport       25940
3344                       Appleton International       11540
3345                              Eppley Airfield       36540
3346                 Newark Liberty International       35620
3347                     Palm Beach International       33100
3348               Luis Munoz Marin International       41980
3349                         Bangor International       12620
3350                 Gerald R. Ford International       24340
3351                              Helena Regional       25740
3352                          Shreveport Regional       43340
3353                         Denver International       19740
3354                 Salt Lake City International       41620
3355                              Kahului Airport       27980
3356                     Fort Wayne International       23060
3357             Phoenix Sky Harbor International       38060
3358                       Richmond International       40060
3359                          Tampa International       45300
3360              Dallas/Fort Worth International       19100
3361             Phoenix Sky Harbor International       38060
3362              Dallas/Fort Worth International       19100
3363                 Chicago O'Hare International       16980
3364                                 Cyril E King        <NA>
3365              Dallas/Fort Worth International       19100
3366                       Key West International       28580
3367                         Tallahassee Regional       45220
3368                 Salt Lake City International       41620
3369                     Palm Beach International       33100
3370                               Joe Foss Field       43620
3371              Dallas/Fort Worth International       19100
3372                       Missoula International       33540
3373                Pensacola Gulf Coast Regional       37860
3374       Birmingham-Shuttlesworth International       13820
3375           Savannah/Hilton Head International       42340
3376                         Idaho Falls Regional       26820
3377            Minneapolis-St Paul International       33460
3378                           Boise Air Terminal       14260
3379            Minneapolis-St Paul International       33460
3380              Aspen Pitkin County Sardy Field       24060
3381         George Bush Intercontinental/Houston       26420
3382                Daniel K Inouye International       46520
3383            Bozeman Yellowstone International       14580
3384                        Eagle County Regional       20780
3385             Austin - Bergstrom International       12420
3386                  San Francisco International       41860
3387              Southwest Florida International       15980
3388                  San Francisco International       41860
3389                        Orlando International       36740
3390              Dallas/Fort Worth International       19100
3391      Northwest Florida Beaches International       37460
3392                     Wilmington International       48900
3393              Gunnison-Crested Butte Regional        <NA>
3394                          Logan International       14460
3395                              Kahului Airport       27980
3396            Minneapolis-St Paul International       33460
3397            Ronald Reagan Washington National       47900
3398                Daniel K Inouye International       46520
3399                Daniel K Inouye International       46520
3400        Kona International Airport at Keahole       25900
3401                            Montrose Regional       33940
3402                           Lafayette Regional       29180
3403     Hartsfield-Jackson Atlanta International       12060
3404     Hartsfield-Jackson Atlanta International       12060
3405                            Central Wisconsin       48140
3406                     Des Moines International       19780
3407                                    LaGuardia       35620
3408     Hartsfield-Jackson Atlanta International       12060
3409            Minneapolis-St Paul International       33460
3410     Hartsfield-Jackson Atlanta International       12060
3411               Luis Munoz Marin International       41980
3412            Ronald Reagan Washington National       47900
3413             Phoenix Sky Harbor International       38060
3414                     Palm Beach International       33100
3415                        Bradley International       25540
3416              Greater Rochester International       40380
3417                      San Diego International       41740
3418                 Seattle/Tacoma International       42660
3419                                 Cyril E King        <NA>
3420                             Henry E. Rohlsen        <NA>
3421                     Reno/Tahoe International       39900
3422                        Eagle County Regional       20780
3423                Fresno Yosemite International       23420
3424                        Norfolk International       47260
3425                 Raleigh-Durham International       39580
3426              Dallas/Fort Worth International       19100
3427              Dallas/Fort Worth International       19100
3428              Dallas/Fort Worth International       19100
3429              Dallas/Fort Worth International       19100
3430                   Indianapolis International       26900
3431             Phoenix Sky Harbor International       38060
3432              Dallas/Fort Worth International       19100
3433              Dallas/Fort Worth International       19100
3434                 Seattle/Tacoma International       42660
3435              Cleveland-Hopkins International       17460
3436                   Philadelphia International       37980
3437                 Chicago O'Hare International       16980
3438              Dallas/Fort Worth International       19100
3439                John F. Kennedy International       35620
3440                 Seattle/Tacoma International       42660
3441                 Seattle/Tacoma International       42660
3442                  San Francisco International       41860
3443          Ted Stevens Anchorage International       11260
3444                       Portland International       38900
3445             Austin - Bergstrom International       12420
3446             John Wayne Airport-Orange County       31080
3447                        Orlando International       36740
3448                              Kahului Airport       27980
3449                 Seattle/Tacoma International       42660
3450        Kona International Airport at Keahole       25900
3451            Albuquerque International Sunport       10740
3452                 Charleston AFB/International       16700
3453                         Juneau International       27940
3454                      Ketchikan International       28540
3455    Louis Armstrong New Orleans International       35380
3456                 Seattle/Tacoma International       42660
3457          Ted Stevens Anchorage International       11260
3458        Kona International Airport at Keahole       25900
3459                       Portland International       38900
3460               Luis Munoz Marin International       41980
3461    Louis Armstrong New Orleans International       35380
3462                       Portland International       38900
3463                        Ontario International       40140
3464                   Jacksonville International       27260
3465                     Palm Beach International       33100
3466                    Martha's Vineyard Airport       47240
3467                        Bradley International       25540
3468                  Daytona Beach International       19660
3469                        Wichita Mid-Continent       48620
3470            Minneapolis-St Paul International       33460
3471      Norman Y. Mineta San Jose International       41940
3472     Hartsfield-Jackson Atlanta International       12060
3473                                 Cyril E King        <NA>
3474     Hartsfield-Jackson Atlanta International       12060
3475     Hartsfield-Jackson Atlanta International       12060
3476     Hartsfield-Jackson Atlanta International       12060
3477     Hartsfield-Jackson Atlanta International       12060
3478            Minneapolis-St Paul International       33460
3479                 Salt Lake City International       41620
3480                 Salt Lake City International       41620
3481                        Memphis International       32820
3482                   Detroit Metro Wayne County       19820
3483                    Los Angeles International       31080
3484            Minneapolis-St Paul International       33460
3485     Hartsfield-Jackson Atlanta International       12060
3486                 Billings Logan International       13740
3487                   Detroit Metro Wayne County       19820
3488                 Salt Lake City International       41620
3489     Hartsfield-Jackson Atlanta International       12060
3490                 Chicago O'Hare International       16980
3491              Dallas/Fort Worth International       19100
3492                 Billings Logan International       13740
3493          Baton Rouge Metropolitan/Ryan Field       12940
3494     Jackson Medgar Wiley Evers International       27140
3495             Sarasota/Bradenton International       35840
3496                          Miami International       33100
3497       Birmingham-Shuttlesworth International       13820
3498                        Orlando International       36740
3499                        Columbus Metropolitan       17980
3500                     Burlington International       15540
3501              Charlotte Douglas International       16740
3502                   Philadelphia International       37980
3503                  Daytona Beach International       19660
3504                         Denver International       19740
3505            Minneapolis-St Paul International       33460
3506                           Bismarck Municipal       13900
3507                      Grand Junction Regional       24300
3508                     San Luis County Regional       42020
3509                                 McGhee Tyson       28940
3510              Aspen Pitkin County Sardy Field       24060
3511                      Durango La Plata County       20420
3512                      Grand Junction Regional       24300
3513            Minneapolis-St Paul International       33460
3514            Minneapolis-St Paul International       33460
3515                   Detroit Metro Wayne County       19820
3516              Cleveland-Hopkins International       17460
3517                   Glacier Park International       28060
3518                 Salt Lake City International       41620
3519                     Harrisburg International       25420
3520                            Friedman Memorial       25200
3521                   Palm Springs International       40140
3522            Charles M. Schulz - Sonoma County       42220
3523                        Eagle County Regional       20780
3524            Charles M. Schulz - Sonoma County       42220
3525                 Chicago O'Hare International       16980
3526              Dallas/Fort Worth International       19100
3527                                 Jackson Hole       27220
3528                      San Diego International       41740
3529                 Billings Logan International       13740
3530                           Mahlon Sweet Field       21660
3531                       Missoula International       33540
3532                            Will Rogers World       36420
3533                              Eppley Airfield       36540
3534             Phoenix Sky Harbor International       38060
3535                           Boise Air Terminal       14260
3536                      San Diego International       41740
3537                        El Paso International       21340
3538                      Santa Barbara Municipal       42200
3539                       Richmond International       40060
3540                    San Antonio International       41700
3541                                 Cyril E King        <NA>
3542               Luis Munoz Marin International       41980
3543         George Bush Intercontinental/Houston       26420
3544                         Denver International       19740
3545                         Denver International       19740
3546                     Burlington International       15540
3547         George Bush Intercontinental/Houston       26420
3548                  San Francisco International       41860
3549        Kona International Airport at Keahole       25900
3550                                Lihue Airport       28180
3551                Daniel K Inouye International       46520
3552                 Chicago O'Hare International       16980
3553                         Denver International       19740
3554                 Seattle/Tacoma International       42660
3555             Sarasota/Bradenton International       35840
3556            John Glenn Columbus International       18140
3557                        Orlando International       36740
3558                      San Diego International       41740
3559                        El Paso International       21340
3560                              Kahului Airport       27980
3561             Austin - Bergstrom International       12420
3562                              Kahului Airport       27980
3563                   Philadelphia International       37980
3564                      San Diego International       41740
3565              Washington Dulles International       47900
3566                    Kansas City International       28140
3567                   Indianapolis International       26900
3568     Midland International Air and Space Port       33260
3569             Phoenix Sky Harbor International       38060
3570                   Indianapolis International       26900
3571              Charlotte Douglas International       16740
3572                    Kansas City International       28140
3573                  Lehigh Valley International       10900
3574                   Philadelphia International       37980
3575                Buffalo Niagara International       15380
3576                      Durango La Plata County       20420
3577         George Bush Intercontinental/Houston       26420
3578                 Springfield-Branson National       44180
3579                                     Bob Hope       31080
3580   Central Il Regional Airport at Bloomington       14010
3581                          Evansville Regional       21780
3582                   Detroit Metro Wayne County       19820
3583               Syracuse Hancock International       45060
3584                    Charlottesville Albemarle       16820
3585             Dane County Regional-Truax Field       31540
3586             Dane County Regional-Truax Field       31540
3587                  Northwest Arkansas Regional       22220
3588                   Detroit Metro Wayne County       19820
3589     Hartsfield-Jackson Atlanta International       12060
3590              Dallas/Fort Worth International       19100
3591              Dallas/Fort Worth International       19100
3592                       Richmond International       40060
3593              Dallas/Fort Worth International       19100
3594              Dallas/Fort Worth International       19100
3595             Austin - Bergstrom International       12420
3596            Bozeman Yellowstone International       14580
3597                              Eppley Airfield       36540
3598             Phoenix Sky Harbor International       38060
3599              Dallas/Fort Worth International       19100
3600              Dallas/Fort Worth International       19100
3601              Dallas/Fort Worth International       19100
3602        Kona International Airport at Keahole       25900
3603                 Chicago O'Hare International       16980
3604              Dallas/Fort Worth International       19100
3605              Charlotte Douglas International       16740
3606             Phoenix Sky Harbor International       38060
3607             Austin - Bergstrom International       12420
3608                       Portland International       38900
3609                       Portland International       38900
3610          Ted Stevens Anchorage International       11260
3611                         Tucson International       46060
3612        Kona International Airport at Keahole       25900
3613                        Ontario International       40140
3614                        Spokane International       44060
3615                        Sitka Rocky Gutierrez        <NA>
3616                       Portland International       38900
3617            Bozeman Yellowstone International       14580
3618                     Sacramento International       40900
3619               Syracuse Hancock International       45060
3620                  Northwest Arkansas Regional       22220
3621                   Detroit Metro Wayne County       19820
3622                           Boise Air Terminal       14260
3623     Hartsfield-Jackson Atlanta International       12060
3624                          Miami International       33100
3625                                 Lovell Field       16860
3626                             Easterwood Field       17780
3627                          Evansville Regional       21780
3628                              Mobile Regional       33660
3629                          Miami International       33100
3630            Ronald Reagan Washington National       47900
3631        Louisville Muhammad Ali International       31140
3632              Dallas/Fort Worth International       19100
3633      Fort Lauderdale-Hollywood International       33100
3634            Ronald Reagan Washington National       47900
3635                              Eppley Airfield       36540
3636                Pensacola Gulf Coast Regional       37860
3637              Charlotte Douglas International       16740
3638              Charlotte Douglas International       16740
3639                                 McGhee Tyson       28940
3640                  San Francisco International       41860
3641                 Salt Lake City International       41620
3642                          South Bend Regional       43780
3643                 Gerald R. Ford International       24340
3644                        Memphis International       32820
3645                        Norfolk International       47260
3646                      San Diego International       41740
3647                          Rapid City Regional       39660
3648              Aspen Pitkin County Sardy Field       24060
3649                         Denver International       19740
3650                            Montrose Regional       33940
3651                   Palm Springs International       40140
3652         Rogue Valley International - Medford       32780
3653                                Roberts Field       13460
3654                          Tulsa International       46140
3655                             Snohomish County       42660
3656                      Santa Barbara Municipal       42200
3657            Charles M. Schulz - Sonoma County       42220
3658                                 Jackson Hole       27220
3659                 Newark Liberty International       35620
3660                       Portland International       38900
3661         George Bush Intercontinental/Houston       26420
3662                         Denver International       19740
3663                 Newark Liberty International       35620
3664              Washington Dulles International       47900
3665         George Bush Intercontinental/Houston       26420
3666                     Reno/Tahoe International       39900
3667             Austin - Bergstrom International       12420
3668                              William P Hobby       26420
3669               General Mitchell International       33340
3670      Norman Y. Mineta San Jose International       41940
3671                              Kahului Airport       27980
3672            Albuquerque International Sunport       10740
3673                                Lihue Airport       28180
3674                     Pittsburgh International       38300
3675                       McCarran International       29820
3676                 Chicago Midway International       16980
3677        Kona International Airport at Keahole       25900
3678                    San Antonio International       41700
3679  Huntsville International-Carl T Jones Field       26620
3680             Phoenix Sky Harbor International       38060
3681             Phoenix Sky Harbor International       38060
3682                 Gerald R. Ford International       24340
3683         Greenville-Spartanburg International       43900
3684              Dallas/Fort Worth International       19100
3685         George Bush Intercontinental/Houston       26420
3686              Cleveland-Hopkins International       17460
3687           Savannah/Hilton Head International       42340
3688                          South Bend Regional       43780
3689                 Newark Liberty International       35620
3690                        Bradley International       25540
3691             James M Cox/Dayton International       19430
3692                              Mobile Regional       33660
3693                                 McGhee Tyson       28940
3694             James M Cox/Dayton International       19430
3695      Newport News/Williamsburg International       47260
3696                                 McGhee Tyson       28940
3697         George Bush Intercontinental/Houston       26420
3698                        Columbia Metropolitan       17900
3699                John F. Kennedy International       35620
3700              Dallas/Fort Worth International       19100
3701              Dallas/Fort Worth International       19100
3702                     Des Moines International       19780
3703                      San Diego International       41740
3704              Dallas/Fort Worth International       19100
3705                 Charleston AFB/International       16700
3706                       Key West International       28580
3707         Greenville-Spartanburg International       43900
3708              Gunnison-Crested Butte Regional        <NA>
3709                Daniel K Inouye International       46520
3710                   Indianapolis International       26900
3711                            Will Rogers World       36420
3712                    San Antonio International       41700
3713                      Santa Barbara Municipal       42200
3714              Dallas/Fort Worth International       19100
3715                                 Jackson Hole       27220
3716             John Wayne Airport-Orange County       31080
3717                 Chicago O'Hare International       16980
3718                 Chicago O'Hare International       16980
3719                        Bradley International       25540
3720                          Miami International       33100
3721              Dallas/Fort Worth International       19100
3722             Austin - Bergstrom International       12420
3723              Charlotte Douglas International       16740
3724                   Philadelphia International       37980
3725                                Mile 13 Field        <NA>
3726                         Juneau International       27940
3727          Ted Stevens Anchorage International       11260
3728              Greater Rochester International       40380
3729      Fort Lauderdale-Hollywood International       33100
3730            Ronald Reagan Washington National       47900
3731                           Westchester County       35620
3732             Dane County Regional-Truax Field       31540
3733                   Detroit Metro Wayne County       19820
3734                 Theodore Francis Green State       39300
3735               Syracuse Hancock International       45060
3736                           Lafayette Regional       29180
3737                         Tallahassee Regional       45220
3738                          Miami International       33100
3739                        Orlando International       36740
3740              Charlotte Douglas International       16740
3741                             The Eastern Iowa       16300
3742                        Memphis International       32820
3743                Buffalo Niagara International       15380
3744                 Gerald R. Ford International       24340
3745            Ronald Reagan Washington National       47900
3746            Ronald Reagan Washington National       47900
3747                           Manhattan Regional       31740
3748                         Tucson International       46060
3749                            Montrose Regional       33940
3750                         Denver International       19740
3751          Wilkes Barre Scranton International       42540
3752               Syracuse Hancock International       45060
3753                                 Jackson Hole       27220
3754             Roswell International Air Center       40740
3755                         Denver International       19740
3756            Bozeman Yellowstone International       14580
3757                      Grand Junction Regional       24300
3758          Ted Stevens Anchorage International       11260
3759                 Chicago O'Hare International       16980
3760         George Bush Intercontinental/Houston       26420
3761                     Sacramento International       40900
3762            Albuquerque International Sunport       10740
3763                Daniel K Inouye International       46520
3764                 Raleigh-Durham International       39580
3765           Baltimore/Washington International       12580
3766                      San Diego International       41740
3767      Norman Y. Mineta San Jose International       41940
3768            Albuquerque International Sunport       10740
3769             Sarasota/Bradenton International       35840
3770                         Albany International       10580
3771                         Denver International       19740
3772                          Tampa International       45300
3773                 Salt Lake City International       41620
3774       Birmingham-Shuttlesworth International       13820
3775            John Glenn Columbus International       18140
3776        Louisville Muhammad Ali International       31140
3777                Buffalo Niagara International       15380
3778                    San Antonio International       41700
3779             Phoenix Sky Harbor International       38060
3780            John Glenn Columbus International       18140
3781                       Portland International       38900
3782                        Orlando International       36740
3783                          Tampa International       45300
3784                          Tampa International       45300
3785                            Dallas Love Field       19100
3786                 Chicago Midway International       16980
3787                Buffalo Niagara International       15380
3788        Louisville Muhammad Ali International       31140
3789      Fort Lauderdale-Hollywood International       33100
3790                            Dallas Love Field       19100
3791                              William P Hobby       26420
3792               St Louis Lambert International       41180
3793                     Sacramento International       40900
3794                             The Eastern Iowa       16300
3795                         Hector International       22020
3796              Washington Dulles International       47900
3797         George Bush Intercontinental/Houston       26420
3798                             The Eastern Iowa       16300
3799                         Hector International       22020
3800                 Gerald R. Ford International       24340
3801             James M Cox/Dayton International       19430
3802                     Pittsburgh International       38300
3803               Roanoke Regional/Woodrum Field       40220
3804  Huntsville International-Carl T Jones Field       26620
3805            Ronald Reagan Washington National       47900
3806                   Philadelphia International       37980
3807                 Chicago O'Hare International       16980
3808              Charlotte Douglas International       16740
3809                John F. Kennedy International       35620
3810                        Orlando International       36740
3811                John F. Kennedy International       35620
3812                           Worcester Regional       49340
3813                           Worcester Regional       49340
3814      Fort Lauderdale-Hollywood International       33100
3815                John F. Kennedy International       35620
3816                                 Cyril E King        <NA>
3817               Luis Munoz Marin International       41980
3818     Hartsfield-Jackson Atlanta International       12060
3819                        Orlando International       36740
3820              Southwest Florida International       15980
3821                               Joe Foss Field       43620
3822                         Valley International       15180
3823                        Ontario International       40140
3824                       McCarran International       29820
3825                       McCarran International       29820
3826                       McCarran International       29820
3827                        Orlando International       36740
3828                        Orlando International       36740
3829                   Myrtle Beach International       34820
3830              Southwest Florida International       15980
3831               St Louis Lambert International       41180
3832              Cleveland-Hopkins International       17460
3833                        Ontario International       40140
3834                               Trenton Mercer       45940
3835                        Long Island MacArthur       35620
3836                        Orlando International       36740
3837              Southwest Florida International       15980
3838                        Bradley International       25540
3839                               Trenton Mercer       45940
3840                        Long Island MacArthur       35620
3841                        Orlando International       36740
3842                          Tampa International       45300
3843                          Tampa International       45300
3844                 Gerald R. Ford International       24340
3845     Hartsfield-Jackson Atlanta International       12060
3846                 Chicago O'Hare International       16980
3847                     Palm Beach International       33100
3848                          Tampa International       45300
3849                          Miami International       33100
3850                     Palm Beach International       33100
3851                          Tampa International       45300
3852              Southwest Florida International       15980
3853                    Los Angeles International       31080
3854                  Atlantic City International       12100
3855        Louisville Muhammad Ali International       31140
3856                Pensacola Gulf Coast Regional       37860
3857              Cleveland-Hopkins International       17460
3858                     Pittsburgh International       38300
3859                   Myrtle Beach International       34820
3860                   Myrtle Beach International       34820
3861                  Atlantic City International       12100
3862                   Manchester-Boston Regional       31700
3863                                 Cyril E King        <NA>
3864                 Newark Liberty International       35620
3865                       Arnold Palmer Regional       38300
3866                                    LaGuardia       35620
3867                        Orlando International       36740
3868                   Myrtle Beach International       34820
3869                   Myrtle Beach International       34820
3870                  Atlantic City International       12100
3871                       Arnold Palmer Regional       38300
3872      Fort Lauderdale-Hollywood International       33100
3873            Ronald Reagan Washington National       47900
3874                           Monterey Peninsula       41500
3875                                Meadows Field       12540
3876                 Billings Logan International       13740
3877              Washington Dulles International       47900
3878                    Kansas City International       28140
3879                              William P Hobby       26420
3880                 Chicago Midway International       16980
3881                Daniel K Inouye International       46520
3882                            Will Rogers World       36420
3883                                    LaGuardia       35620
3884            Ronald Reagan Washington National       47900
3885            Minneapolis-St Paul International       33460
3886                           Asheville Regional       11700
3887                   Indianapolis International       26900
3888                     Palm Beach International       33100
3889            Minneapolis-St Paul International       33460
3890            Minneapolis-St Paul International       33460
3891          Lubbock Preston Smith International       31180
3892                                  Agana Field        <NA>
3893                        Eagle County Regional       20780
3894                       Portland International       38900
3895                 Salt Lake City International       41620
3896                       Richmond International       40060
3897        Kona International Airport at Keahole       25900
3898               St Louis Lambert International       41180
3899                      Rochester International       40340
3900      Green Bay Austin Straubel International       24580
3901                    Kansas City International       28140
3902                            Will Rogers World       36420
3903             Sarasota/Bradenton International       35840
3904                  Northwest Arkansas Regional       22220
3905                     Des Moines International       19780
3906                          Ralph Wien Memorial        <NA>
3907          Ted Stevens Anchorage International       11260
3908            Ronald Reagan Washington National       47900
3909                           Westchester County       35620
3910                John F. Kennedy International       35620
3911   Cincinnati/Northern Kentucky International       17140
3912                        El Paso International       21340
3913              Greater Rochester International       40380
3914   Cincinnati/Northern Kentucky International       17140
3915                 Salt Lake City International       41620
3916            Minneapolis-St Paul International       33460
3917                        Norfolk International       47260
3918              Dallas/Fort Worth International       19100
3919              Dallas/Fort Worth International       19100
3920              Charlotte Douglas International       16740
3921            Ronald Reagan Washington National       47900
3922                        Norfolk International       47260
3923                   Philadelphia International       37980
3924         Greenville-Spartanburg International       43900
3925             Dane County Regional-Truax Field       31540
3926                        Norfolk International       47260
3927                         Denver International       19740
3928              Aspen Pitkin County Sardy Field       24060
3929                   Glacier Park International       28060
3930         Rogue Valley International - Medford       32780
3931                          Minot International       33500
3932                         Idaho Falls Regional       26820
3933                           Santa Fe Municipal       42140
3934         Rogue Valley International - Medford       32780
3935                  San Francisco International       41860
3936                    Los Angeles International       31080
3937                         Denver International       19740
3938         George Bush Intercontinental/Houston       26420
3939                   Indianapolis International       26900
3940                                     Bob Hope       31080
3941                       McCarran International       29820
3942             Phoenix Sky Harbor International       38060
3943                   Jacksonville International       27260
3944                              William P Hobby       26420
3945                            Dallas Love Field       19100
3946                                 Yampa Valley       44460
3947                 Raleigh-Durham International       39580
3948              Southwest Florida International       15980
3949                          Tulsa International       46140
3950                              William P Hobby       26420
3951             Phoenix Sky Harbor International       38060
3952             Phoenix Sky Harbor International       38060
3953   Central Il Regional Airport at Bloomington       14010
3954                     Palm Beach International       33100
3955                          Hilton Head Airport       25940
3956                                    LaGuardia       35620
3957                       Key West International       28580
3958              Washington Dulles International       47900
3959               General Mitchell International       33340
3960              Washington Dulles International       47900
3961     Hartsfield-Jackson Atlanta International       12060
3962              Dallas/Fort Worth International       19100
3963              Charlotte Douglas International       16740
3964              Charlotte Douglas International       16740
3965                   Philadelphia International       37980
3966            Ronald Reagan Washington National       47900
3967              Dallas/Fort Worth International       19100
3968             Austin - Bergstrom International       12420
3969                John F. Kennedy International       35620
3970                          Miami International       33100
3971                          Tulsa International       46140
3972              Dallas/Fort Worth International       19100
3973                 Chicago O'Hare International       16980
3974             Phoenix Sky Harbor International       38060
3975              Charlotte Douglas International       16740
3976                   Philadelphia International       37980
3977                   Philadelphia International       37980
3978              Charlotte Douglas International       16740
3979              Charlotte Douglas International       16740
3980            Ronald Reagan Washington National       47900
3981                 Chicago O'Hare International       16980
3982            John Glenn Columbus International       18140
3983              Dallas/Fort Worth International       19100
3984              Charlotte Douglas International       16740
3985              Charlotte Douglas International       16740
3986                 Seattle/Tacoma International       42660
3987                       Portland International       38900
3988                       Portland International       38900
3989                Buffalo Niagara International       15380
3990                John F. Kennedy International       35620
3991      Fort Lauderdale-Hollywood International       33100
3992                John F. Kennedy International       35620
3993        Louisville Muhammad Ali International       31140
3994                   Detroit Metro Wayne County       19820
3995                   Detroit Metro Wayne County       19820
3996            Minneapolis-St Paul International       33460
3997     Hartsfield-Jackson Atlanta International       12060
3998   Cincinnati/Northern Kentucky International       17140
3999                   Detroit Metro Wayne County       19820
4000                   Detroit Metro Wayne County       19820
4001               Luis Munoz Marin International       41980
4002               Syracuse Hancock International       45060
4003                          Tulsa International       46140
4004                      San Diego International       41740
4005             John Wayne Airport-Orange County       31080
4006              Southwest Florida International       15980
4007                     Sacramento International       40900
4008                      Quad City International       19340
4009       Birmingham-Shuttlesworth International       13820
4010                                 McGhee Tyson       28940
4011                         Tucson International       46060
4012                       Portland International       38900
4013                   Indianapolis International       26900
4014                      San Diego International       41740
4015               Augusta Regional at Bush Field       12260
4016                        Bradley International       25540
4017                 Raleigh-Durham International       39580
4018                   Myrtle Beach International       34820
4019                       Key West International       28580
4020                   Indianapolis International       26900
4021          Ted Stevens Anchorage International       11260
4022                  Northwest Arkansas Regional       22220
4023                 Charleston AFB/International       16700
4024            Ronald Reagan Washington National       47900
4025                         Albany International       10580
4026               Roanoke Regional/Woodrum Field       40220
4027         George Bush Intercontinental/Houston       26420
4028                          Miami International       33100
4029                              William P Hobby       26420
4030      Norman Y. Mineta San Jose International       41940
4031                      Nashville International       34980
4032                            Dallas Love Field       19100
4033        Kona International Airport at Keahole       25900
4034                     Pittsburgh International       38300
4035                          Shreveport Regional       43340
4036            Minneapolis-St Paul International       33460
4037                 Newark Liberty International       35620
4038      Fort Lauderdale-Hollywood International       33100
4039                            Flagstaff Pulliam       22380
4040            Bozeman Yellowstone International       14580
4041                         Denver International       19740
4042              Charlotte Douglas International       16740
4043                     Pittsburgh International       38300
4044                 Charleston AFB/International       16700
4045      Norman Y. Mineta San Jose International       41940
4046                        Orlando International       36740
4047                                    Mercedita       38660
4048     Jackson Medgar Wiley Evers International       27140
4049                 Gerald R. Ford International       24340
4050                    San Antonio International       41700
4051                       Portland International       38900
4052          Ted Stevens Anchorage International       11260
4053                         Juneau International       27940
4054         Greenville-Spartanburg International       43900
4055                 Salt Lake City International       41620
4056                     Wilmington International       48900
4057               Luis Munoz Marin International       41980
4058               St Louis Lambert International       41180
4059                   Jacksonville International       27260
4060           Savannah/Hilton Head International       42340
4061                     Reno/Tahoe International       39900
4062               St Louis Lambert International       41180
4063                   Myrtle Beach International       34820
4064           City of Colorado Springs Municipal       17820
4065      Norman Y. Mineta San Jose International       41940
4066                          Miami International       33100
4067                        Sitka Rocky Gutierrez        <NA>
4068                          Logan International       14460
4069            Ronald Reagan Washington National       47900
4070                    Los Angeles International       31080
4071           Baltimore/Washington International       12580
4072                           Westchester County       35620
4073                          Logan International       14460
4074                                 Yampa Valley       44460
4075                           Westchester County       35620
4076     Hartsfield-Jackson Atlanta International       12060
4077                        Memphis International       32820
4078                   Myrtle Beach International       34820
4079                 Springfield-Branson National       44180
4080                          Miami International       33100
4081       Birmingham-Shuttlesworth International       13820
4082                     Burlington International       15540
4083              Charlotte Douglas International       16740
4084               Portland International Jetport       38860
4085              Dallas/Fort Worth International       19100
4086                        Columbus Metropolitan       17980
4087                          Tulsa International       46140
4088         George Bush Intercontinental/Houston       26420
4089                   Indianapolis International       26900
4090                     Pittsburgh International       38300
4091             Phoenix Sky Harbor International       38060
4092               Portland International Jetport       38860
4093             Austin - Bergstrom International       12420
4094             Sarasota/Bradenton International       35840
4095                        Wichita Mid-Continent       48620
4096            Minneapolis-St Paul International       33460
4097   Central Il Regional Airport at Bloomington       14010
4098                        Orlando International       36740
4099     Hartsfield-Jackson Atlanta International       12060
4100                        Memphis International       32820
4101  Huntsville International-Carl T Jones Field       26620
4102             Dane County Regional-Truax Field       31540
4103                Pensacola Gulf Coast Regional       37860
4104               New York Stewart International       39100
4105                 Theodore Francis Green State       39300
4106                        Orlando International       36740
4107              Southwest Florida International       15980
4108                   Detroit Metro Wayne County       19820
4109                    San Antonio International       41700
4110              Washington Dulles International       47900
4111                          Miami International       33100
4112                      Ketchikan International       28540
4113          Ted Stevens Anchorage International       11260
4114                   Palm Springs International       40140
4115                          Logan International       14460
4116                    Los Angeles International       31080
4117                 Salt Lake City International       41620
4118     Hartsfield-Jackson Atlanta International       12060
4119                 Salt Lake City International       41620
4120                 Salt Lake City International       41620
4121     Hartsfield-Jackson Atlanta International       12060
4122   Cincinnati/Northern Kentucky International       17140
4123                 Springfield-Branson National       44180
4124     Jackson Medgar Wiley Evers International       27140
4125                Pensacola Gulf Coast Regional       37860
4126                 Theodore Francis Green State       39300
4127                   Indianapolis International       26900
4128            Ronald Reagan Washington National       47900
4129                            Columbia Regional       17860
4130                         Sawyer International       32100
4131            Minneapolis-St Paul International       33460
4132                                 Jackson Hole       27220
4133              Dallas/Fort Worth International       19100
4134                         Denver International       19740
4135                 Gerald R. Ford International       24340
4136            Minneapolis-St Paul International       33460
4137                         Denver International       19740
4138         George Bush Intercontinental/Houston       26420
4139                              Kahului Airport       27980
4140                           Hilo International       25900
4141           City of Colorado Springs Municipal       17820
4142                 Chicago Midway International       16980
4143                 Chicago Midway International       16980
4144                     Sacramento International       40900
4145                                     Bob Hope       31080
4146       Birmingham-Shuttlesworth International       13820
4147                   Jacksonville International       27260
4148                      Nashville International       34980
4149                 Theodore Francis Green State       39300
4150                               Joe Foss Field       43620
4151                                   Blue Grass       30460
4152         George Bush Intercontinental/Houston       26420
4153         George Bush Intercontinental/Houston       26420
4154                                 Jackson Hole       27220
4155                Daniel K Inouye International       46520
4156                        Norfolk International       47260
4157                         Bangor International       12620
4158                     Burlington International       15540
4159              Greater Rochester International       40380
4160               Syracuse Hancock International       45060
4161                          Logan International       14460
4162              Charlotte Douglas International       16740
4163          Rick Husband Amarillo International       11100
4164                 Chicago O'Hare International       16980
4165              Dallas/Fort Worth International       19100
4166              Charlotte Douglas International       16740
                                   origin_cbsa_name
1             New York-Newark-Jersey City, NY-NJ-PA
2           Miami-Fort Lauderdale-Pompano Beach, FL
3                                  Jacksonville, FL
4                Los Angeles-Long Beach-Anaheim, CA
5                Los Angeles-Long Beach-Anaheim, CA
6                Los Angeles-Long Beach-Anaheim, CA
7             New York-Newark-Jersey City, NY-NJ-PA
8             New York-Newark-Jersey City, NY-NJ-PA
9                     Orlando-Kissimmee-Sanford, FL
10          Miami-Fort Lauderdale-Pompano Beach, FL
11                         New Orleans-Metairie, LA
12                        Cape Coral-Fort Myers, FL
13                      Seattle-Tacoma-Bellevue, WA
14                      Seattle-Tacoma-Bellevue, WA
15                      Seattle-Tacoma-Bellevue, WA
16                               Salt Lake City, UT
17              Tampa-St. Petersburg-Clearwater, FL
18             Atlanta-Sandy Springs-Alpharetta, GA
19             Atlanta-Sandy Springs-Alpharetta, GA
20             Atlanta-Sandy Springs-Alpharetta, GA
21             Atlanta-Sandy Springs-Alpharetta, GA
22             Atlanta-Sandy Springs-Alpharetta, GA
23             Atlanta-Sandy Springs-Alpharetta, GA
24             Atlanta-Sandy Springs-Alpharetta, GA
25             Atlanta-Sandy Springs-Alpharetta, GA
26             Atlanta-Sandy Springs-Alpharetta, GA
27             Atlanta-Sandy Springs-Alpharetta, GA
28             Atlanta-Sandy Springs-Alpharetta, GA
29             Atlanta-Sandy Springs-Alpharetta, GA
30             Atlanta-Sandy Springs-Alpharetta, GA
31             Atlanta-Sandy Springs-Alpharetta, GA
32             Atlanta-Sandy Springs-Alpharetta, GA
33             Atlanta-Sandy Springs-Alpharetta, GA
34                      Detroit-Warren-Dearborn, MI
35                      Detroit-Warren-Dearborn, MI
36          Minneapolis-St. Paul-Bloomington, MN-WI
37          Minneapolis-St. Paul-Bloomington, MN-WI
38          Minneapolis-St. Paul-Bloomington, MN-WI
39          Minneapolis-St. Paul-Bloomington, MN-WI
40                               Salt Lake City, UT
41                               Salt Lake City, UT
42                               Salt Lake City, UT
43             Atlanta-Sandy Springs-Alpharetta, GA
44             Atlanta-Sandy Springs-Alpharetta, GA
45          Minneapolis-St. Paul-Bloomington, MN-WI
46          Minneapolis-St. Paul-Bloomington, MN-WI
47             Atlanta-Sandy Springs-Alpharetta, GA
48             Atlanta-Sandy Springs-Alpharetta, GA
49             Atlanta-Sandy Springs-Alpharetta, GA
50             Atlanta-Sandy Springs-Alpharetta, GA
51             Atlanta-Sandy Springs-Alpharetta, GA
52             Atlanta-Sandy Springs-Alpharetta, GA
53             Atlanta-Sandy Springs-Alpharetta, GA
54            New York-Newark-Jersey City, NY-NJ-PA
55               Los Angeles-Long Beach-Anaheim, CA
56            New York-Newark-Jersey City, NY-NJ-PA
57          Minneapolis-St. Paul-Bloomington, MN-WI
58                               Salt Lake City, UT
59                               Salt Lake City, UT
60          Minneapolis-St. Paul-Bloomington, MN-WI
61          Minneapolis-St. Paul-Bloomington, MN-WI
62          Minneapolis-St. Paul-Bloomington, MN-WI
63          Minneapolis-St. Paul-Bloomington, MN-WI
64                               Salt Lake City, UT
65                               Salt Lake City, UT
66                               Salt Lake City, UT
67                               Salt Lake City, UT
68                               Salt Lake City, UT
69                               Salt Lake City, UT
70                               Salt Lake City, UT
71                               Salt Lake City, UT
72                               Salt Lake City, UT
73             Atlanta-Sandy Springs-Alpharetta, GA
74             Atlanta-Sandy Springs-Alpharetta, GA
75             Atlanta-Sandy Springs-Alpharetta, GA
76                      Detroit-Warren-Dearborn, MI
77             Atlanta-Sandy Springs-Alpharetta, GA
78             Atlanta-Sandy Springs-Alpharetta, GA
79             Atlanta-Sandy Springs-Alpharetta, GA
80             Atlanta-Sandy Springs-Alpharetta, GA
81             Atlanta-Sandy Springs-Alpharetta, GA
82             Atlanta-Sandy Springs-Alpharetta, GA
83             Atlanta-Sandy Springs-Alpharetta, GA
84             Atlanta-Sandy Springs-Alpharetta, GA
85             Atlanta-Sandy Springs-Alpharetta, GA
86             Atlanta-Sandy Springs-Alpharetta, GA
87             Atlanta-Sandy Springs-Alpharetta, GA
88               Los Angeles-Long Beach-Anaheim, CA
89               Los Angeles-Long Beach-Anaheim, CA
90               Los Angeles-Long Beach-Anaheim, CA
91               Los Angeles-Long Beach-Anaheim, CA
92               Los Angeles-Long Beach-Anaheim, CA
93          Minneapolis-St. Paul-Bloomington, MN-WI
94          Minneapolis-St. Paul-Bloomington, MN-WI
95                      Seattle-Tacoma-Bellevue, WA
96                               Salt Lake City, UT
97             Atlanta-Sandy Springs-Alpharetta, GA
98             Atlanta-Sandy Springs-Alpharetta, GA
99             Atlanta-Sandy Springs-Alpharetta, GA
100            Atlanta-Sandy Springs-Alpharetta, GA
101            Atlanta-Sandy Springs-Alpharetta, GA
102            Atlanta-Sandy Springs-Alpharetta, GA
103            Atlanta-Sandy Springs-Alpharetta, GA
104                     Detroit-Warren-Dearborn, MI
105              Los Angeles-Long Beach-Anaheim, CA
106              Los Angeles-Long Beach-Anaheim, CA
107         Minneapolis-St. Paul-Bloomington, MN-WI
108                              Salt Lake City, UT
109            Atlanta-Sandy Springs-Alpharetta, GA
110            Atlanta-Sandy Springs-Alpharetta, GA
111            Atlanta-Sandy Springs-Alpharetta, GA
112            Atlanta-Sandy Springs-Alpharetta, GA
113            Atlanta-Sandy Springs-Alpharetta, GA
114            Atlanta-Sandy Springs-Alpharetta, GA
115            Atlanta-Sandy Springs-Alpharetta, GA
116                     Detroit-Warren-Dearborn, MI
117                     Detroit-Warren-Dearborn, MI
118                Las Vegas-Henderson-Paradise, NV
119              Los Angeles-Long Beach-Anaheim, CA
120              Los Angeles-Long Beach-Anaheim, CA
121                   Orlando-Kissimmee-Sanford, FL
122                   Orlando-Kissimmee-Sanford, FL
123         Miami-Fort Lauderdale-Pompano Beach, FL
124         Miami-Fort Lauderdale-Pompano Beach, FL
125                       Cape Coral-Fort Myers, FL
126                     Seattle-Tacoma-Bellevue, WA
127                     Seattle-Tacoma-Bellevue, WA
128                     Seattle-Tacoma-Bellevue, WA
129                     Seattle-Tacoma-Bellevue, WA
130                              Salt Lake City, UT
131                              Salt Lake City, UT
132                              Salt Lake City, UT
133                              Salt Lake City, UT
134             Tampa-St. Petersburg-Clearwater, FL
135              San Diego-Chula Vista-Carlsbad, CA
136              Los Angeles-Long Beach-Anaheim, CA
137                     Seattle-Tacoma-Bellevue, WA
138            Atlanta-Sandy Springs-Alpharetta, GA
139                     Detroit-Warren-Dearborn, MI
140                     Detroit-Warren-Dearborn, MI
141                     Detroit-Warren-Dearborn, MI
142                     Detroit-Warren-Dearborn, MI
143           New York-Newark-Jersey City, NY-NJ-PA
144           New York-Newark-Jersey City, NY-NJ-PA
145         Minneapolis-St. Paul-Bloomington, MN-WI
146         Minneapolis-St. Paul-Bloomington, MN-WI
147                                Raleigh-Cary, NC
148                              Salt Lake City, UT
149                              Salt Lake City, UT
150            Atlanta-Sandy Springs-Alpharetta, GA
151            Atlanta-Sandy Springs-Alpharetta, GA
152            Atlanta-Sandy Springs-Alpharetta, GA
153  Nashville-Davidson--Murfreesboro--Franklin, TN
154                            Cincinnati, OH-KY-IN
155                            Cincinnati, OH-KY-IN
156                 Dallas-Fort Worth-Arlington, TX
157                     Detroit-Warren-Dearborn, MI
158                     Detroit-Warren-Dearborn, MI
159                     Detroit-Warren-Dearborn, MI
160                     Detroit-Warren-Dearborn, MI
161                              Urban Honolulu, HI
162           New York-Newark-Jersey City, NY-NJ-PA
163           New York-Newark-Jersey City, NY-NJ-PA
164                                Raleigh-Cary, NC
165                   San Antonio-New Braunfels, TX
166                     Seattle-Tacoma-Bellevue, WA
167                              Salt Lake City, UT
168                              Salt Lake City, UT
169                              Salt Lake City, UT
170                              Salt Lake City, UT
171            Atlanta-Sandy Springs-Alpharetta, GA
172                     Detroit-Warren-Dearborn, MI
173                     Detroit-Warren-Dearborn, MI
174                     Detroit-Warren-Dearborn, MI
175                     Detroit-Warren-Dearborn, MI
176                     Detroit-Warren-Dearborn, MI
177         Miami-Fort Lauderdale-Pompano Beach, FL
178         Minneapolis-St. Paul-Bloomington, MN-WI
179         Minneapolis-St. Paul-Bloomington, MN-WI
180         Minneapolis-St. Paul-Bloomington, MN-WI
181         Minneapolis-St. Paul-Bloomington, MN-WI
182         Minneapolis-St. Paul-Bloomington, MN-WI
183              Chicago-Naperville-Elgin, IL-IN-WI
184               North Port-Sarasota-Bradenton, FL
185             Tampa-St. Petersburg-Clearwater, FL
186              Los Angeles-Long Beach-Anaheim, CA
187            Atlanta-Sandy Springs-Alpharetta, GA
188            Atlanta-Sandy Springs-Alpharetta, GA
189         Minneapolis-St. Paul-Bloomington, MN-WI
190            Atlanta-Sandy Springs-Alpharetta, GA
191            Atlanta-Sandy Springs-Alpharetta, GA
192            Atlanta-Sandy Springs-Alpharetta, GA
193            Atlanta-Sandy Springs-Alpharetta, GA
194                     Detroit-Warren-Dearborn, MI
195                     Detroit-Warren-Dearborn, MI
196           New York-Newark-Jersey City, NY-NJ-PA
197           New York-Newark-Jersey City, NY-NJ-PA
198         Minneapolis-St. Paul-Bloomington, MN-WI
199            Atlanta-Sandy Springs-Alpharetta, GA
200            Atlanta-Sandy Springs-Alpharetta, GA
201            Atlanta-Sandy Springs-Alpharetta, GA
202            Atlanta-Sandy Springs-Alpharetta, GA
203            Atlanta-Sandy Springs-Alpharetta, GA
204         Minneapolis-St. Paul-Bloomington, MN-WI
205                              Salt Lake City, UT
206            Atlanta-Sandy Springs-Alpharetta, GA
207            Atlanta-Sandy Springs-Alpharetta, GA
208            Atlanta-Sandy Springs-Alpharetta, GA
209         Minneapolis-St. Paul-Bloomington, MN-WI
210            Atlanta-Sandy Springs-Alpharetta, GA
211            Atlanta-Sandy Springs-Alpharetta, GA
212            Atlanta-Sandy Springs-Alpharetta, GA
213            Atlanta-Sandy Springs-Alpharetta, GA
214                Austin-Round Rock-Georgetown, TX
215  Nashville-Davidson--Murfreesboro--Franklin, TN
216                  Boston-Cambridge-Newton, MA-NH
217    Washington-Arlington-Alexandria, DC-VA-MD-WV
218                      Denver-Aurora-Lakewood, CO
219                 Dallas-Fort Worth-Arlington, TX
220                     Detroit-Warren-Dearborn, MI
221                     Detroit-Warren-Dearborn, MI
222                     Detroit-Warren-Dearborn, MI
223           New York-Newark-Jersey City, NY-NJ-PA
224                Las Vegas-Henderson-Paradise, NV
225              Los Angeles-Long Beach-Anaheim, CA
226           New York-Newark-Jersey City, NY-NJ-PA
227           New York-Newark-Jersey City, NY-NJ-PA
228                   Orlando-Kissimmee-Sanford, FL
229                        New Orleans-Metairie, LA
230              Chicago-Naperville-Elgin, IL-IN-WI
231             Portland-Vancouver-Hillsboro, OR-WA
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
233                                Raleigh-Cary, NC
234                       Cape Coral-Fort Myers, FL
235                     Seattle-Tacoma-Bellevue, WA
236             Tampa-St. Petersburg-Clearwater, FL
237                     Detroit-Warren-Dearborn, MI
238                     Detroit-Warren-Dearborn, MI
239         Minneapolis-St. Paul-Bloomington, MN-WI
240         Minneapolis-St. Paul-Bloomington, MN-WI
241            Atlanta-Sandy Springs-Alpharetta, GA
242            Atlanta-Sandy Springs-Alpharetta, GA
243                              Salt Lake City, UT
244                              Salt Lake City, UT
245            Atlanta-Sandy Springs-Alpharetta, GA
246         Minneapolis-St. Paul-Bloomington, MN-WI
247                              Salt Lake City, UT
248            Atlanta-Sandy Springs-Alpharetta, GA
249                  Boston-Cambridge-Newton, MA-NH
250                     Detroit-Warren-Dearborn, MI
251           New York-Newark-Jersey City, NY-NJ-PA
252           New York-Newark-Jersey City, NY-NJ-PA
253         Minneapolis-St. Paul-Bloomington, MN-WI
254         Minneapolis-St. Paul-Bloomington, MN-WI
255                     Seattle-Tacoma-Bellevue, WA
256            Atlanta-Sandy Springs-Alpharetta, GA
257            Atlanta-Sandy Springs-Alpharetta, GA
258         Minneapolis-St. Paul-Bloomington, MN-WI
259                     Seattle-Tacoma-Bellevue, WA
260                              Salt Lake City, UT
261                              Salt Lake City, UT
262                              Salt Lake City, UT
263                              Salt Lake City, UT
264            Atlanta-Sandy Springs-Alpharetta, GA
265            Atlanta-Sandy Springs-Alpharetta, GA
266                     Detroit-Warren-Dearborn, MI
267         Minneapolis-St. Paul-Bloomington, MN-WI
268            Atlanta-Sandy Springs-Alpharetta, GA
269           New York-Newark-Jersey City, NY-NJ-PA
270         Minneapolis-St. Paul-Bloomington, MN-WI
271            Atlanta-Sandy Springs-Alpharetta, GA
272            Atlanta-Sandy Springs-Alpharetta, GA
273            Atlanta-Sandy Springs-Alpharetta, GA
274                     Detroit-Warren-Dearborn, MI
275         Miami-Fort Lauderdale-Pompano Beach, FL
276                Las Vegas-Henderson-Paradise, NV
277              Los Angeles-Long Beach-Anaheim, CA
278              Los Angeles-Long Beach-Anaheim, CA
279                   Orlando-Kissimmee-Sanford, FL
280                     Seattle-Tacoma-Bellevue, WA
281            Atlanta-Sandy Springs-Alpharetta, GA
282            Atlanta-Sandy Springs-Alpharetta, GA
283           New York-Newark-Jersey City, NY-NJ-PA
284                     Detroit-Warren-Dearborn, MI
285                     Seattle-Tacoma-Bellevue, WA
286                              Salt Lake City, UT
287                              Salt Lake City, UT
288            Atlanta-Sandy Springs-Alpharetta, GA
289            Atlanta-Sandy Springs-Alpharetta, GA
290                     Detroit-Warren-Dearborn, MI
291                     Detroit-Warren-Dearborn, MI
292                Las Vegas-Henderson-Paradise, NV
293              Los Angeles-Long Beach-Anaheim, CA
294         Minneapolis-St. Paul-Bloomington, MN-WI
295                       Phoenix-Mesa-Chandler, AZ
296              San Diego-Chula Vista-Carlsbad, CA
297                              Salt Lake City, UT
298              Los Angeles-Long Beach-Anaheim, CA
299                     Seattle-Tacoma-Bellevue, WA
300                              Salt Lake City, UT
301                              Salt Lake City, UT
302         Minneapolis-St. Paul-Bloomington, MN-WI
303                              Salt Lake City, UT
304                                  Boise City, ID
305                 Dallas-Fort Worth-Arlington, TX
306                     Detroit-Warren-Dearborn, MI
307                     Detroit-Warren-Dearborn, MI
308                     Detroit-Warren-Dearborn, MI
309           New York-Newark-Jersey City, NY-NJ-PA
310                      Spokane-Spokane Valley, WA
311           New York-Newark-Jersey City, NY-NJ-PA
312                Las Vegas-Henderson-Paradise, NV
313              Los Angeles-Long Beach-Anaheim, CA
314         Minneapolis-St. Paul-Bloomington, MN-WI
315            Riverside-San Bernardino-Ontario, CA
316              San Diego-Chula Vista-Carlsbad, CA
317              San Francisco-Oakland-Berkeley, CA
318              San Jose-Sunnyvale-Santa Clara, CA
319              Los Angeles-Long Beach-Anaheim, CA
320         Minneapolis-St. Paul-Bloomington, MN-WI
321                              Salt Lake City, UT
322            Atlanta-Sandy Springs-Alpharetta, GA
323         Minneapolis-St. Paul-Bloomington, MN-WI
324                     Seattle-Tacoma-Bellevue, WA
325                              Salt Lake City, UT
326            Atlanta-Sandy Springs-Alpharetta, GA
327         Minneapolis-St. Paul-Bloomington, MN-WI
328            Atlanta-Sandy Springs-Alpharetta, GA
329            Atlanta-Sandy Springs-Alpharetta, GA
330            Atlanta-Sandy Springs-Alpharetta, GA
331                     Detroit-Warren-Dearborn, MI
332                     Detroit-Warren-Dearborn, MI
333           New York-Newark-Jersey City, NY-NJ-PA
334           New York-Newark-Jersey City, NY-NJ-PA
335         Minneapolis-St. Paul-Bloomington, MN-WI
336                Las Vegas-Henderson-Paradise, NV
337            Riverside-San Bernardino-Ontario, CA
338                Las Vegas-Henderson-Paradise, NV
339                   Orlando-Kissimmee-Sanford, FL
340                   Orlando-Kissimmee-Sanford, FL
341                      Denver-Aurora-Lakewood, CO
342                Las Vegas-Henderson-Paradise, NV
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
344                                      Fresno, CA
345              Chicago-Naperville-Elgin, IL-IN-WI
346             Tampa-St. Petersburg-Clearwater, FL
347             Tampa-St. Petersburg-Clearwater, FL
348                           Trenton-Princeton, NJ
349                      Denver-Aurora-Lakewood, CO
350                Las Vegas-Henderson-Paradise, NV
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
352                Las Vegas-Henderson-Paradise, NV
353                Las Vegas-Henderson-Paradise, NV
354                   Orlando-Kissimmee-Sanford, FL
355             Tampa-St. Petersburg-Clearwater, FL
356              San Diego-Chula Vista-Carlsbad, CA
357                     San Juan-Bayamón-Caguas, PR
358                Las Vegas-Henderson-Paradise, NV
359                Las Vegas-Henderson-Paradise, NV
360           New York-Newark-Jersey City, NY-NJ-PA
361    Washington-Arlington-Alexandria, DC-VA-MD-WV
362           New York-Newark-Jersey City, NY-NJ-PA
363              Chicago-Naperville-Elgin, IL-IN-WI
364    Washington-Arlington-Alexandria, DC-VA-MD-WV
365              Chicago-Naperville-Elgin, IL-IN-WI
366              Chicago-Naperville-Elgin, IL-IN-WI
367           New York-Newark-Jersey City, NY-NJ-PA
368                            Cleveland-Elyria, OH
369               Charlotte-Concord-Gastonia, NC-SC
370    Washington-Arlington-Alexandria, DC-VA-MD-WV
371                       Greensboro-High Point, NC
372                Indianapolis-Carmel-Anderson, IN
373                                   Rochester, NY
374    Washington-Arlington-Alexandria, DC-VA-MD-WV
375           New York-Newark-Jersey City, NY-NJ-PA
376              Chicago-Naperville-Elgin, IL-IN-WI
377                 Hilton Head Island-Bluffton, SC
378                Indianapolis-Carmel-Anderson, IN
379    Washington-Arlington-Alexandria, DC-VA-MD-WV
380              Chicago-Naperville-Elgin, IL-IN-WI
381              Chicago-Naperville-Elgin, IL-IN-WI
382              Chicago-Naperville-Elgin, IL-IN-WI
383           New York-Newark-Jersey City, NY-NJ-PA
384           New York-Newark-Jersey City, NY-NJ-PA
385    Washington-Arlington-Alexandria, DC-VA-MD-WV
386    Washington-Arlington-Alexandria, DC-VA-MD-WV
387           New York-Newark-Jersey City, NY-NJ-PA
388           New York-Newark-Jersey City, NY-NJ-PA
389           New York-Newark-Jersey City, NY-NJ-PA
390              Chicago-Naperville-Elgin, IL-IN-WI
391              Chicago-Naperville-Elgin, IL-IN-WI
392           New York-Newark-Jersey City, NY-NJ-PA
393           New York-Newark-Jersey City, NY-NJ-PA
394    Washington-Arlington-Alexandria, DC-VA-MD-WV
395              Chicago-Naperville-Elgin, IL-IN-WI
396              Chicago-Naperville-Elgin, IL-IN-WI
397              Chicago-Naperville-Elgin, IL-IN-WI
398              Chicago-Naperville-Elgin, IL-IN-WI
399               Charlotte-Concord-Gastonia, NC-SC
400         Miami-Fort Lauderdale-Pompano Beach, FL
401              Chicago-Naperville-Elgin, IL-IN-WI
402  Nashville-Davidson--Murfreesboro--Franklin, TN
403                            Cincinnati, OH-KY-IN
404                               Oklahoma City, OK
405              Chicago-Naperville-Elgin, IL-IN-WI
406                Austin-Round Rock-Georgetown, TX
407              Chicago-Naperville-Elgin, IL-IN-WI
408              Chicago-Naperville-Elgin, IL-IN-WI
409              Chicago-Naperville-Elgin, IL-IN-WI
410              Chicago-Naperville-Elgin, IL-IN-WI
411                 Dallas-Fort Worth-Arlington, TX
412              Chicago-Naperville-Elgin, IL-IN-WI
413                 Dallas-Fort Worth-Arlington, TX
414                 Dallas-Fort Worth-Arlington, TX
415                 Dallas-Fort Worth-Arlington, TX
416              Chicago-Naperville-Elgin, IL-IN-WI
417    Washington-Arlington-Alexandria, DC-VA-MD-WV
418    Washington-Arlington-Alexandria, DC-VA-MD-WV
419         Miami-Fort Lauderdale-Pompano Beach, FL
420         Miami-Fort Lauderdale-Pompano Beach, FL
421         Miami-Fort Lauderdale-Pompano Beach, FL
422              Chicago-Naperville-Elgin, IL-IN-WI
423                 Dallas-Fort Worth-Arlington, TX
424                     Detroit-Warren-Dearborn, MI
425                               Memphis, TN-MS-AR
426                                Lake Charles, LA
427                                    Montrose, CO
428                 Dallas-Fort Worth-Arlington, TX
429              Chicago-Naperville-Elgin, IL-IN-WI
430                 Dallas-Fort Worth-Arlington, TX
431              Chicago-Naperville-Elgin, IL-IN-WI
432              Chicago-Naperville-Elgin, IL-IN-WI
433                 Dallas-Fort Worth-Arlington, TX
434              Chicago-Naperville-Elgin, IL-IN-WI
435                 Dallas-Fort Worth-Arlington, TX
436                 Dallas-Fort Worth-Arlington, TX
437                 Dallas-Fort Worth-Arlington, TX
438                 Dallas-Fort Worth-Arlington, TX
439                 Dallas-Fort Worth-Arlington, TX
440               Charlotte-Concord-Gastonia, NC-SC
441         Miami-Fort Lauderdale-Pompano Beach, FL
442              Chicago-Naperville-Elgin, IL-IN-WI
443              Chicago-Naperville-Elgin, IL-IN-WI
444              Chicago-Naperville-Elgin, IL-IN-WI
445                 Dallas-Fort Worth-Arlington, TX
446                 Dallas-Fort Worth-Arlington, TX
447                 Dallas-Fort Worth-Arlington, TX
448                 Dallas-Fort Worth-Arlington, TX
449                 Dallas-Fort Worth-Arlington, TX
450               Charlotte-Concord-Gastonia, NC-SC
451              Chicago-Naperville-Elgin, IL-IN-WI
452                 Dallas-Fort Worth-Arlington, TX
453              Chicago-Naperville-Elgin, IL-IN-WI
454                                  Pittsburgh, PA
455                 Dallas-Fort Worth-Arlington, TX
456              Chicago-Naperville-Elgin, IL-IN-WI
457                 Dallas-Fort Worth-Arlington, TX
458              Chicago-Naperville-Elgin, IL-IN-WI
459              Chicago-Naperville-Elgin, IL-IN-WI
460                 Dallas-Fort Worth-Arlington, TX
461              Chicago-Naperville-Elgin, IL-IN-WI
462                Austin-Round Rock-Georgetown, TX
463                            Cincinnati, OH-KY-IN
464                                Raleigh-Cary, NC
465              Chicago-Naperville-Elgin, IL-IN-WI
466              Chicago-Naperville-Elgin, IL-IN-WI
467                 Dallas-Fort Worth-Arlington, TX
468              Chicago-Naperville-Elgin, IL-IN-WI
469         Miami-Fort Lauderdale-Pompano Beach, FL
470         Miami-Fort Lauderdale-Pompano Beach, FL
471         Miami-Fort Lauderdale-Pompano Beach, FL
472                 Dallas-Fort Worth-Arlington, TX
473                 Dallas-Fort Worth-Arlington, TX
474              Chicago-Naperville-Elgin, IL-IN-WI
475                 Dallas-Fort Worth-Arlington, TX
476                 Dallas-Fort Worth-Arlington, TX
477         Miami-Fort Lauderdale-Pompano Beach, FL
478              Chicago-Naperville-Elgin, IL-IN-WI
479                 Dallas-Fort Worth-Arlington, TX
480                 Dallas-Fort Worth-Arlington, TX
481                 Dallas-Fort Worth-Arlington, TX
482         Miami-Fort Lauderdale-Pompano Beach, FL
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
484                       Cape Coral-Fort Myers, FL
485           New York-Newark-Jersey City, NY-NJ-PA
486         Miami-Fort Lauderdale-Pompano Beach, FL
487            Houston-The Woodlands-Sugar Land, TX
488                Las Vegas-Henderson-Paradise, NV
489                        New Orleans-Metairie, LA
490              Los Angeles-Long Beach-Anaheim, CA
491             Tampa-St. Petersburg-Clearwater, FL
492         Miami-Fort Lauderdale-Pompano Beach, FL
493                Las Vegas-Henderson-Paradise, NV
494              Los Angeles-Long Beach-Anaheim, CA
495           New York-Newark-Jersey City, NY-NJ-PA
496                   Baltimore-Columbia-Towson, MD
497         Miami-Fort Lauderdale-Pompano Beach, FL
498                Las Vegas-Henderson-Paradise, NV
499                     San Juan-Bayamón-Caguas, PR
500             Tampa-St. Petersburg-Clearwater, FL
501                Las Vegas-Henderson-Paradise, NV
502         Miami-Fort Lauderdale-Pompano Beach, FL
503         Miami-Fort Lauderdale-Pompano Beach, FL
504                Las Vegas-Henderson-Paradise, NV
505                        New Orleans-Metairie, LA
506             Tampa-St. Petersburg-Clearwater, FL
507                  Boston-Cambridge-Newton, MA-NH
508                Las Vegas-Henderson-Paradise, NV
509                Las Vegas-Henderson-Paradise, NV
510                       Cape Coral-Fort Myers, FL
511             Tampa-St. Petersburg-Clearwater, FL
512                   Orlando-Kissimmee-Sanford, FL
513                   Orlando-Kissimmee-Sanford, FL
514                   Orlando-Kissimmee-Sanford, FL
515            Houston-The Woodlands-Sugar Land, TX
516         Miami-Fort Lauderdale-Pompano Beach, FL
517                Las Vegas-Henderson-Paradise, NV
518                        New Orleans-Metairie, LA
519              Chicago-Naperville-Elgin, IL-IN-WI
520             Tampa-St. Petersburg-Clearwater, FL
521                Las Vegas-Henderson-Paradise, NV
522  Nashville-Davidson--Murfreesboro--Franklin, TN
523         Miami-Fort Lauderdale-Pompano Beach, FL
524            Houston-The Woodlands-Sugar Land, TX
525                   Orlando-Kissimmee-Sanford, FL
526                Austin-Round Rock-Georgetown, TX
527  Nashville-Davidson--Murfreesboro--Franklin, TN
528                  Boston-Cambridge-Newton, MA-NH
529                   Baltimore-Columbia-Towson, MD
530                      Denver-Aurora-Lakewood, CO
531           New York-Newark-Jersey City, NY-NJ-PA
532                Indianapolis-Carmel-Anderson, IN
533                Las Vegas-Henderson-Paradise, NV
534           New York-Newark-Jersey City, NY-NJ-PA
535           New York-Newark-Jersey City, NY-NJ-PA
536                Las Vegas-Henderson-Paradise, NV
537         Miami-Fort Lauderdale-Pompano Beach, FL
538                Las Vegas-Henderson-Paradise, NV
539             Tampa-St. Petersburg-Clearwater, FL
540  Nashville-Davidson--Murfreesboro--Franklin, TN
541                  Boston-Cambridge-Newton, MA-NH
542                     Detroit-Warren-Dearborn, MI
543                   Orlando-Kissimmee-Sanford, FL
544                        New Orleans-Metairie, LA
545                                  Pittsburgh, PA
546                     Seattle-Tacoma-Bellevue, WA
547         Miami-Fort Lauderdale-Pompano Beach, FL
548                              Kansas City, MO-KS
549                        New Orleans-Metairie, LA
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
551              Louisville/Jefferson County, KY-IN
552                   Orlando-Kissimmee-Sanford, FL
553                       Cape Coral-Fort Myers, FL
554                Las Vegas-Henderson-Paradise, NV
555              Los Angeles-Long Beach-Anaheim, CA
556  Nashville-Davidson--Murfreesboro--Franklin, TN
557                           Aguadilla-Isabela, PR
558               Charlotte-Concord-Gastonia, NC-SC
559                Las Vegas-Henderson-Paradise, NV
560                                  Pittsburgh, PA
561                     San Juan-Bayamón-Caguas, PR
562                Las Vegas-Henderson-Paradise, NV
563         Miami-Fort Lauderdale-Pompano Beach, FL
564                Las Vegas-Henderson-Paradise, NV
565                Las Vegas-Henderson-Paradise, NV
566                Las Vegas-Henderson-Paradise, NV
567                   Orlando-Kissimmee-Sanford, FL
568                        New Orleans-Metairie, LA
569                       Cape Coral-Fort Myers, FL
570                Las Vegas-Henderson-Paradise, NV
571              Los Angeles-Long Beach-Anaheim, CA
572                   Orlando-Kissimmee-Sanford, FL
573              Chicago-Naperville-Elgin, IL-IN-WI
574                  Boston-Cambridge-Newton, MA-NH
575             Tampa-St. Petersburg-Clearwater, FL
576         Miami-Fort Lauderdale-Pompano Beach, FL
577                  Boston-Cambridge-Newton, MA-NH
578                   Baltimore-Columbia-Towson, MD
579                                    Columbus, OH
580                Las Vegas-Henderson-Paradise, NV
581               Charlotte-Concord-Gastonia, NC-SC
582               Charlotte-Concord-Gastonia, NC-SC
583    Washington-Arlington-Alexandria, DC-VA-MD-WV
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
585    Washington-Arlington-Alexandria, DC-VA-MD-WV
586               Charlotte-Concord-Gastonia, NC-SC
587               Charlotte-Concord-Gastonia, NC-SC
588               Charlotte-Concord-Gastonia, NC-SC
589               Charlotte-Concord-Gastonia, NC-SC
590               Charlotte-Concord-Gastonia, NC-SC
591               Charlotte-Concord-Gastonia, NC-SC
592    Washington-Arlington-Alexandria, DC-VA-MD-WV
593    Washington-Arlington-Alexandria, DC-VA-MD-WV
594    Washington-Arlington-Alexandria, DC-VA-MD-WV
595               Charlotte-Concord-Gastonia, NC-SC
596               Charlotte-Concord-Gastonia, NC-SC
597               Charlotte-Concord-Gastonia, NC-SC
598               Charlotte-Concord-Gastonia, NC-SC
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
600               Charlotte-Concord-Gastonia, NC-SC
601               Allentown-Bethlehem-Easton, PA-NJ
602  Nashville-Davidson--Murfreesboro--Franklin, TN
603           New York-Newark-Jersey City, NY-NJ-PA
604    Washington-Arlington-Alexandria, DC-VA-MD-WV
605                                      Peoria, IL
606               Charlotte-Concord-Gastonia, NC-SC
607               Charlotte-Concord-Gastonia, NC-SC
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
609               Charlotte-Concord-Gastonia, NC-SC
610               Charlotte-Concord-Gastonia, NC-SC
611               Charlotte-Concord-Gastonia, NC-SC
612               Charlotte-Concord-Gastonia, NC-SC
613               Charlotte-Concord-Gastonia, NC-SC
614    Washington-Arlington-Alexandria, DC-VA-MD-WV
615               Charlotte-Concord-Gastonia, NC-SC
616                                     Jackson, MS
617                                Jacksonville, FL
618                        New Orleans-Metairie, LA
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
620                                  Montgomery, AL
621               Charlotte-Concord-Gastonia, NC-SC
622    Washington-Arlington-Alexandria, DC-VA-MD-WV
623    Washington-Arlington-Alexandria, DC-VA-MD-WV
624               Charlotte-Concord-Gastonia, NC-SC
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
627               Charlotte-Concord-Gastonia, NC-SC
628               Charlotte-Concord-Gastonia, NC-SC
629               Charlotte-Concord-Gastonia, NC-SC
630               Charlotte-Concord-Gastonia, NC-SC
631               Charlotte-Concord-Gastonia, NC-SC
632               Charlotte-Concord-Gastonia, NC-SC
633               Charlotte-Concord-Gastonia, NC-SC
634               Charlotte-Concord-Gastonia, NC-SC
635               Charlotte-Concord-Gastonia, NC-SC
636    Washington-Arlington-Alexandria, DC-VA-MD-WV
637    Washington-Arlington-Alexandria, DC-VA-MD-WV
638               Charlotte-Concord-Gastonia, NC-SC
639               Charlotte-Concord-Gastonia, NC-SC
640               Charlotte-Concord-Gastonia, NC-SC
641    Washington-Arlington-Alexandria, DC-VA-MD-WV
642    Washington-Arlington-Alexandria, DC-VA-MD-WV
643               Charlotte-Concord-Gastonia, NC-SC
644               Charlotte-Concord-Gastonia, NC-SC
645               Charlotte-Concord-Gastonia, NC-SC
646               Charlotte-Concord-Gastonia, NC-SC
647               Charlotte-Concord-Gastonia, NC-SC
648               Charlotte-Concord-Gastonia, NC-SC
649               Charlotte-Concord-Gastonia, NC-SC
650    Washington-Arlington-Alexandria, DC-VA-MD-WV
651    Washington-Arlington-Alexandria, DC-VA-MD-WV
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
654               Charlotte-Concord-Gastonia, NC-SC
655               Charlotte-Concord-Gastonia, NC-SC
656               Charlotte-Concord-Gastonia, NC-SC
657               Charlotte-Concord-Gastonia, NC-SC
658               Charlotte-Concord-Gastonia, NC-SC
659               Charlotte-Concord-Gastonia, NC-SC
660               Charlotte-Concord-Gastonia, NC-SC
661               Charlotte-Concord-Gastonia, NC-SC
662               Charlotte-Concord-Gastonia, NC-SC
663               Charlotte-Concord-Gastonia, NC-SC
664    Washington-Arlington-Alexandria, DC-VA-MD-WV
665               Charlotte-Concord-Gastonia, NC-SC
666               Charlotte-Concord-Gastonia, NC-SC
667    Washington-Arlington-Alexandria, DC-VA-MD-WV
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
669  Nashville-Davidson--Murfreesboro--Franklin, TN
670                 Charleston-North Charleston, SC
671    Washington-Arlington-Alexandria, DC-VA-MD-WV
672                                  Wilmington, NC
673                                Jacksonville, FL
674         Minneapolis-St. Paul-Bloomington, MN-WI
675                                Raleigh-Cary, NC
676               Charlotte-Concord-Gastonia, NC-SC
677               Charlotte-Concord-Gastonia, NC-SC
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
683               Charlotte-Concord-Gastonia, NC-SC
684               Charlotte-Concord-Gastonia, NC-SC
685    Washington-Arlington-Alexandria, DC-VA-MD-WV
686    Washington-Arlington-Alexandria, DC-VA-MD-WV
687    Washington-Arlington-Alexandria, DC-VA-MD-WV
688    Washington-Arlington-Alexandria, DC-VA-MD-WV
689              Los Angeles-Long Beach-Anaheim, CA
690                      Denver-Aurora-Lakewood, CO
691              Chicago-Naperville-Elgin, IL-IN-WI
692              Chicago-Naperville-Elgin, IL-IN-WI
693              Chicago-Naperville-Elgin, IL-IN-WI
694              Los Angeles-Long Beach-Anaheim, CA
695              San Diego-Chula Vista-Carlsbad, CA
696                      Denver-Aurora-Lakewood, CO
697              Chicago-Naperville-Elgin, IL-IN-WI
698              Chicago-Naperville-Elgin, IL-IN-WI
699                      Denver-Aurora-Lakewood, CO
700              San Francisco-Oakland-Berkeley, CA
701                      Denver-Aurora-Lakewood, CO
702              Chicago-Naperville-Elgin, IL-IN-WI
703                      Denver-Aurora-Lakewood, CO
704            Houston-The Woodlands-Sugar Land, TX
705                      Spokane-Spokane Valley, WA
706              Los Angeles-Long Beach-Anaheim, CA
707             Portland-Vancouver-Hillsboro, OR-WA
708                     Seattle-Tacoma-Bellevue, WA
709              San Francisco-Oakland-Berkeley, CA
710              San Jose-Sunnyvale-Santa Clara, CA
711                     Seattle-Tacoma-Bellevue, WA
712                              Salt Lake City, UT
713                      Denver-Aurora-Lakewood, CO
714                       Phoenix-Mesa-Chandler, AZ
715                       Phoenix-Mesa-Chandler, AZ
716             Portland-Vancouver-Hillsboro, OR-WA
717              San Francisco-Oakland-Berkeley, CA
718              Los Angeles-Long Beach-Anaheim, CA
719              Chicago-Naperville-Elgin, IL-IN-WI
720                      Denver-Aurora-Lakewood, CO
721              Chicago-Naperville-Elgin, IL-IN-WI
722                 Dallas-Fort Worth-Arlington, TX
723                      Denver-Aurora-Lakewood, CO
724                      Denver-Aurora-Lakewood, CO
725              Los Angeles-Long Beach-Anaheim, CA
726                      Denver-Aurora-Lakewood, CO
727              Los Angeles-Long Beach-Anaheim, CA
728                Austin-Round Rock-Georgetown, TX
729                                  Boise City, ID
730                                     Bozeman, MT
731                  Des Moines-West Des Moines, IA
732                               Memphis, TN-MS-AR
733                     Omaha-Council Bluffs, NE-IA
734                      Denver-Aurora-Lakewood, CO
735                      Denver-Aurora-Lakewood, CO
736         Minneapolis-St. Paul-Bloomington, MN-WI
737                      Denver-Aurora-Lakewood, CO
738                      Denver-Aurora-Lakewood, CO
739              Chicago-Naperville-Elgin, IL-IN-WI
740              San Francisco-Oakland-Berkeley, CA
741              San Francisco-Oakland-Berkeley, CA
742                       Phoenix-Mesa-Chandler, AZ
743             Portland-Vancouver-Hillsboro, OR-WA
744              San Diego-Chula Vista-Carlsbad, CA
745                     Seattle-Tacoma-Bellevue, WA
746              San Francisco-Oakland-Berkeley, CA
747              San Francisco-Oakland-Berkeley, CA
748         Minneapolis-St. Paul-Bloomington, MN-WI
749                              Salt Lake City, UT
750              Chicago-Naperville-Elgin, IL-IN-WI
751              Chicago-Naperville-Elgin, IL-IN-WI
752                     Detroit-Warren-Dearborn, MI
753                                  Boise City, ID
754                                  Boise City, ID
755              Los Angeles-Long Beach-Anaheim, CA
756                     Seattle-Tacoma-Bellevue, WA
757              San Francisco-Oakland-Berkeley, CA
758            Houston-The Woodlands-Sugar Land, TX
759            Houston-The Woodlands-Sugar Land, TX
760            Houston-The Woodlands-Sugar Land, TX
761              Chicago-Naperville-Elgin, IL-IN-WI
762                      Denver-Aurora-Lakewood, CO
763                     Detroit-Warren-Dearborn, MI
764         Minneapolis-St. Paul-Bloomington, MN-WI
765                     Detroit-Warren-Dearborn, MI
766                                     El Paso, TX
767                              Salt Lake City, UT
768                      Denver-Aurora-Lakewood, CO
769                      Denver-Aurora-Lakewood, CO
770              Chicago-Naperville-Elgin, IL-IN-WI
771    Washington-Arlington-Alexandria, DC-VA-MD-WV
772              Los Angeles-Long Beach-Anaheim, CA
773                       Phoenix-Mesa-Chandler, AZ
774                                      Tucson, AZ
775                                  Boise City, ID
776                                     Bozeman, MT
777                      Spokane-Spokane Valley, WA
778                         Santa Rosa-Petaluma, CA
779              San Jose-Sunnyvale-Santa Clara, CA
780                            Glenwood Springs, CO
781            Houston-The Woodlands-Sugar Land, TX
782            Houston-The Woodlands-Sugar Land, TX
783              Chicago-Naperville-Elgin, IL-IN-WI
784              Chicago-Naperville-Elgin, IL-IN-WI
785                 Dallas-Fort Worth-Arlington, TX
786              Chicago-Naperville-Elgin, IL-IN-WI
787                       Phoenix-Mesa-Chandler, AZ
788              San Francisco-Oakland-Berkeley, CA
789                      Denver-Aurora-Lakewood, CO
790                      Denver-Aurora-Lakewood, CO
791                      Denver-Aurora-Lakewood, CO
792              San Diego-Chula Vista-Carlsbad, CA
793         Minneapolis-St. Paul-Bloomington, MN-WI
794                                    Appleton, WI
795    Washington-Arlington-Alexandria, DC-VA-MD-WV
796                      Denver-Aurora-Lakewood, CO
797              Chicago-Naperville-Elgin, IL-IN-WI
798             Portland-Vancouver-Hillsboro, OR-WA
799                 Dallas-Fort Worth-Arlington, TX
800              Los Angeles-Long Beach-Anaheim, CA
801              Chicago-Naperville-Elgin, IL-IN-WI
802                      Denver-Aurora-Lakewood, CO
803            Houston-The Woodlands-Sugar Land, TX
804              Los Angeles-Long Beach-Anaheim, CA
805                     Detroit-Warren-Dearborn, MI
806         Minneapolis-St. Paul-Bloomington, MN-WI
807                       Phoenix-Mesa-Chandler, AZ
808                       Phoenix-Mesa-Chandler, AZ
809              San Francisco-Oakland-Berkeley, CA
810                            Cleveland-Elyria, OH
811                                    Columbia, MO
812                                     Wichita, KS
813                                 Spartanburg, SC
814                                   Knoxville, TN
815                     Detroit-Warren-Dearborn, MI
816              Los Angeles-Long Beach-Anaheim, CA
817                                      Fresno, CA
818                                     Medford, OR
819              San Francisco-Oakland-Berkeley, CA
820              San Diego-Chula Vista-Carlsbad, CA
821              San Francisco-Oakland-Berkeley, CA
822                 Sacramento-Roseville-Folsom, CA
823              Los Angeles-Long Beach-Anaheim, CA
824                     Seattle-Tacoma-Bellevue, WA
825              San Francisco-Oakland-Berkeley, CA
826                                      Fresno, CA
827                      Denver-Aurora-Lakewood, CO
828                     Detroit-Warren-Dearborn, MI
829              Chicago-Naperville-Elgin, IL-IN-WI
830            Houston-The Woodlands-Sugar Land, TX
831                       Phoenix-Mesa-Chandler, AZ
832              San Jose-Sunnyvale-Santa Clara, CA
833                              Salt Lake City, UT
834                     Detroit-Warren-Dearborn, MI
835                      Denver-Aurora-Lakewood, CO
836                       Phoenix-Mesa-Chandler, AZ
837                     Seattle-Tacoma-Bellevue, WA
838                              Salt Lake City, UT
839                      Denver-Aurora-Lakewood, CO
840                      Denver-Aurora-Lakewood, CO
841                      Denver-Aurora-Lakewood, CO
842                     Seattle-Tacoma-Bellevue, WA
843                       Phoenix-Mesa-Chandler, AZ
844                 Sacramento-Roseville-Folsom, CA
845                Austin-Round Rock-Georgetown, TX
846                                      Fresno, CA
847                                     Salinas, CA
848             Portland-Vancouver-Hillsboro, OR-WA
849              San Jose-Sunnyvale-Santa Clara, CA
850                         Santa Rosa-Petaluma, CA
851              Los Angeles-Long Beach-Anaheim, CA
852              Los Angeles-Long Beach-Anaheim, CA
853              Los Angeles-Long Beach-Anaheim, CA
854                       Phoenix-Mesa-Chandler, AZ
855              San Francisco-Oakland-Berkeley, CA
856                     Detroit-Warren-Dearborn, MI
857             Portland-Vancouver-Hillsboro, OR-WA
858         Minneapolis-St. Paul-Bloomington, MN-WI
859              Los Angeles-Long Beach-Anaheim, CA
860                                  Boise City, ID
861                                      Fresno, CA
862                      Spokane-Spokane Valley, WA
863              San Jose-Sunnyvale-Santa Clara, CA
864            Riverside-San Bernardino-Ontario, CA
865                 Dallas-Fort Worth-Arlington, TX
866             Portland-Vancouver-Hillsboro, OR-WA
867                       Phoenix-Mesa-Chandler, AZ
868              Los Angeles-Long Beach-Anaheim, CA
869                                  Boise City, ID
870                 Dallas-Fort Worth-Arlington, TX
871                      Spokane-Spokane Valley, WA
872                Austin-Round Rock-Georgetown, TX
873                      Spokane-Spokane Valley, WA
874              Los Angeles-Long Beach-Anaheim, CA
875             Portland-Vancouver-Hillsboro, OR-WA
876              San Diego-Chula Vista-Carlsbad, CA
877                      Denver-Aurora-Lakewood, CO
878                 Dallas-Fort Worth-Arlington, TX
879              San Diego-Chula Vista-Carlsbad, CA
880              Los Angeles-Long Beach-Anaheim, CA
881                      Denver-Aurora-Lakewood, CO
882                      Denver-Aurora-Lakewood, CO
883              San Francisco-Oakland-Berkeley, CA
884              San Francisco-Oakland-Berkeley, CA
885              San Francisco-Oakland-Berkeley, CA
886                                  Boise City, ID
887             Portland-Vancouver-Hillsboro, OR-WA
888              San Diego-Chula Vista-Carlsbad, CA
889                     Seattle-Tacoma-Bellevue, WA
890                     Seattle-Tacoma-Bellevue, WA
891              San Francisco-Oakland-Berkeley, CA
892              San Francisco-Oakland-Berkeley, CA
893              Chicago-Naperville-Elgin, IL-IN-WI
894              Chicago-Naperville-Elgin, IL-IN-WI
895                       Phoenix-Mesa-Chandler, AZ
896              Los Angeles-Long Beach-Anaheim, CA
897             Portland-Vancouver-Hillsboro, OR-WA
898              San Diego-Chula Vista-Carlsbad, CA
899              Chicago-Naperville-Elgin, IL-IN-WI
900                     Detroit-Warren-Dearborn, MI
901              Los Angeles-Long Beach-Anaheim, CA
902                     Seattle-Tacoma-Bellevue, WA
903            Houston-The Woodlands-Sugar Land, TX
904              San Francisco-Oakland-Berkeley, CA
905             Portland-Vancouver-Hillsboro, OR-WA
906                     Seattle-Tacoma-Bellevue, WA
907                     Seattle-Tacoma-Bellevue, WA
908                     Seattle-Tacoma-Bellevue, WA
909                                     Pullman, WA
910                 Sacramento-Roseville-Folsom, CA
911                     Seattle-Tacoma-Bellevue, WA
912                     Seattle-Tacoma-Bellevue, WA
913                     Seattle-Tacoma-Bellevue, WA
914                     Seattle-Tacoma-Bellevue, WA
915                     Seattle-Tacoma-Bellevue, WA
916                     Seattle-Tacoma-Bellevue, WA
917                     Seattle-Tacoma-Bellevue, WA
918                     Seattle-Tacoma-Bellevue, WA
919             Portland-Vancouver-Hillsboro, OR-WA
920             Portland-Vancouver-Hillsboro, OR-WA
921                     Seattle-Tacoma-Bellevue, WA
922              San Francisco-Oakland-Berkeley, CA
923                     Seattle-Tacoma-Bellevue, WA
924                     Seattle-Tacoma-Bellevue, WA
925                     Seattle-Tacoma-Bellevue, WA
926              San Francisco-Oakland-Berkeley, CA
927              Los Angeles-Long Beach-Anaheim, CA
928             Portland-Vancouver-Hillsboro, OR-WA
929                     Seattle-Tacoma-Bellevue, WA
930                                  Boise City, ID
931                      Spokane-Spokane Valley, WA
932                Las Vegas-Henderson-Paradise, NV
933              Los Angeles-Long Beach-Anaheim, CA
934                      Spokane-Spokane Valley, WA
935              San Jose-Sunnyvale-Santa Clara, CA
936              San Francisco-Oakland-Berkeley, CA
937                     Seattle-Tacoma-Bellevue, WA
938                     Seattle-Tacoma-Bellevue, WA
939              Los Angeles-Long Beach-Anaheim, CA
940                     Seattle-Tacoma-Bellevue, WA
941                     Seattle-Tacoma-Bellevue, WA
942                                     Bozeman, MT
943                          Eugene-Springfield, OR
944                                   Kalispell, MT
945                                 Great Falls, MT
946                                 Idaho Falls, ID
947                                     Medford, OR
948                                     Salinas, CA
949                                    Missoula, MT
950              San Francisco-Oakland-Berkeley, CA
951             Portland-Vancouver-Hillsboro, OR-WA
952                                     Pullman, WA
953                                     Redding, CA
954                                        Bend, OR
955                                        Reno, NV
956                 Sacramento-Roseville-Folsom, CA
957                Las Vegas-Henderson-Paradise, NV
958                                  Boise City, ID
959                         Santa Rosa-Petaluma, CA
960                     Seattle-Tacoma-Bellevue, WA
961                     Seattle-Tacoma-Bellevue, WA
962            Houston-The Woodlands-Sugar Land, TX
963              Chicago-Naperville-Elgin, IL-IN-WI
964              Chicago-Naperville-Elgin, IL-IN-WI
965                      Denver-Aurora-Lakewood, CO
966                      Denver-Aurora-Lakewood, CO
967    Washington-Arlington-Alexandria, DC-VA-MD-WV
968              Chicago-Naperville-Elgin, IL-IN-WI
969              Chicago-Naperville-Elgin, IL-IN-WI
970                  Boston-Cambridge-Newton, MA-NH
971                      Denver-Aurora-Lakewood, CO
972                      Denver-Aurora-Lakewood, CO
973           New York-Newark-Jersey City, NY-NJ-PA
974            Houston-The Woodlands-Sugar Land, TX
975            Houston-The Woodlands-Sugar Land, TX
976            Houston-The Woodlands-Sugar Land, TX
977            Houston-The Woodlands-Sugar Land, TX
978                      Denver-Aurora-Lakewood, CO
979    Washington-Arlington-Alexandria, DC-VA-MD-WV
980    Washington-Arlington-Alexandria, DC-VA-MD-WV
981    Washington-Arlington-Alexandria, DC-VA-MD-WV
982    Washington-Arlington-Alexandria, DC-VA-MD-WV
983    Washington-Arlington-Alexandria, DC-VA-MD-WV
984    Washington-Arlington-Alexandria, DC-VA-MD-WV
985                       College Station-Bryan, TX
986                      Denver-Aurora-Lakewood, CO
987                      Denver-Aurora-Lakewood, CO
988              Chicago-Naperville-Elgin, IL-IN-WI
989                      Denver-Aurora-Lakewood, CO
990                      Denver-Aurora-Lakewood, CO
991           New York-Newark-Jersey City, NY-NJ-PA
992           New York-Newark-Jersey City, NY-NJ-PA
993           New York-Newark-Jersey City, NY-NJ-PA
994           New York-Newark-Jersey City, NY-NJ-PA
995           New York-Newark-Jersey City, NY-NJ-PA
996    Washington-Arlington-Alexandria, DC-VA-MD-WV
997            Houston-The Woodlands-Sugar Land, TX
998              Los Angeles-Long Beach-Anaheim, CA
999              Chicago-Naperville-Elgin, IL-IN-WI
1000             San Francisco-Oakland-Berkeley, CA
1001          New York-Newark-Jersey City, NY-NJ-PA
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV
1003                     Denver-Aurora-Lakewood, CO
1004             Chicago-Naperville-Elgin, IL-IN-WI
1005             Chicago-Naperville-Elgin, IL-IN-WI
1006             San Francisco-Oakland-Berkeley, CA
1007                     Denver-Aurora-Lakewood, CO
1008                     Denver-Aurora-Lakewood, CO
1009             Chicago-Naperville-Elgin, IL-IN-WI
1010             Chicago-Naperville-Elgin, IL-IN-WI
1011                     Denver-Aurora-Lakewood, CO
1012          New York-Newark-Jersey City, NY-NJ-PA
1013        Miami-Fort Lauderdale-Pompano Beach, FL
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV
1015                     Denver-Aurora-Lakewood, CO
1016             Chicago-Naperville-Elgin, IL-IN-WI
1017             Chicago-Naperville-Elgin, IL-IN-WI
1018                 Boston-Cambridge-Newton, MA-NH
1019          New York-Newark-Jersey City, NY-NJ-PA
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV
1021           Houston-The Woodlands-Sugar Land, TX
1022           Houston-The Woodlands-Sugar Land, TX
1023             Los Angeles-Long Beach-Anaheim, CA
1024             Los Angeles-Long Beach-Anaheim, CA
1025                             Kansas City, MO-KS
1026             Chicago-Naperville-Elgin, IL-IN-WI
1027             Chicago-Naperville-Elgin, IL-IN-WI
1028             Chicago-Naperville-Elgin, IL-IN-WI
1029            Portland-Vancouver-Hillsboro, OR-WA
1030                      Phoenix-Mesa-Chandler, AZ
1031                  San Antonio-New Braunfels, TX
1032                Sacramento-Roseville-Folsom, CA
1033          New York-Newark-Jersey City, NY-NJ-PA
1034             Chicago-Naperville-Elgin, IL-IN-WI
1035             San Francisco-Oakland-Berkeley, CA
1036                           Cleveland-Elyria, OH
1037                           Cleveland-Elyria, OH
1038                           Cleveland-Elyria, OH
1039                     Denver-Aurora-Lakewood, CO
1040                     Denver-Aurora-Lakewood, CO
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV
1042           Houston-The Woodlands-Sugar Land, TX
1043           Houston-The Woodlands-Sugar Land, TX
1044                               Jacksonville, FL
1045                  Orlando-Kissimmee-Sanford, FL
1046        Miami-Fort Lauderdale-Pompano Beach, FL
1047             Chicago-Naperville-Elgin, IL-IN-WI
1048             Chicago-Naperville-Elgin, IL-IN-WI
1049        Miami-Fort Lauderdale-Pompano Beach, FL
1050                      Phoenix-Mesa-Chandler, AZ
1051                               Raleigh-Cary, NC
1052                      Cape Coral-Fort Myers, FL
1053             San Diego-Chula Vista-Carlsbad, CA
1054                                   Savannah, GA
1055             San Francisco-Oakland-Berkeley, CA
1056                    San Juan-Bayamón-Caguas, PR
1057                             Salt Lake City, UT
1058              North Port-Sarasota-Bradenton, FL
1059            Tampa-St. Petersburg-Clearwater, FL
1060                     Denver-Aurora-Lakewood, CO
1061                     Denver-Aurora-Lakewood, CO
1062          New York-Newark-Jersey City, NY-NJ-PA
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV
1064           Houston-The Woodlands-Sugar Land, TX
1065             San Francisco-Oakland-Berkeley, CA
1066                     Denver-Aurora-Lakewood, CO
1067                     Denver-Aurora-Lakewood, CO
1068             Chicago-Naperville-Elgin, IL-IN-WI
1069          New York-Newark-Jersey City, NY-NJ-PA
1070          New York-Newark-Jersey City, NY-NJ-PA
1071          New York-Newark-Jersey City, NY-NJ-PA
1072           Houston-The Woodlands-Sugar Land, TX
1073           Houston-The Woodlands-Sugar Land, TX
1074           Houston-The Woodlands-Sugar Land, TX
1075             San Francisco-Oakland-Berkeley, CA
1076             San Francisco-Oakland-Berkeley, CA
1077             San Francisco-Oakland-Berkeley, CA
1078 Nashville-Davidson--Murfreesboro--Franklin, TN
1079                 Boston-Cambridge-Newton, MA-NH
1080        Miami-Fort Lauderdale-Pompano Beach, FL
1081                               Jacksonville, FL
1082             Los Angeles-Long Beach-Anaheim, CA
1083                  Orlando-Kissimmee-Sanford, FL
1084        Miami-Fort Lauderdale-Pompano Beach, FL
1085                               Raleigh-Cary, NC
1086             San Francisco-Oakland-Berkeley, CA
1087            Tampa-St. Petersburg-Clearwater, FL
1088                     Denver-Aurora-Lakewood, CO
1089                               Jacksonville, FL
1090             Los Angeles-Long Beach-Anaheim, CA
1091          New York-Newark-Jersey City, NY-NJ-PA
1092                       New Orleans-Metairie, LA
1093             Chicago-Naperville-Elgin, IL-IN-WI
1094                      Phoenix-Mesa-Chandler, AZ
1095                      Cape Coral-Fort Myers, FL
1096            Tampa-St. Petersburg-Clearwater, FL
1097                     Denver-Aurora-Lakewood, CO
1098                     Denver-Aurora-Lakewood, CO
1099                     Denver-Aurora-Lakewood, CO
1100          New York-Newark-Jersey City, NY-NJ-PA
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV
1103           Houston-The Woodlands-Sugar Land, TX
1104             San Francisco-Oakland-Berkeley, CA
1105                     Denver-Aurora-Lakewood, CO
1106                     Denver-Aurora-Lakewood, CO
1107          New York-Newark-Jersey City, NY-NJ-PA
1108          New York-Newark-Jersey City, NY-NJ-PA
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV
1111           Houston-The Woodlands-Sugar Land, TX
1112           Houston-The Woodlands-Sugar Land, TX
1113           Houston-The Woodlands-Sugar Land, TX
1114           Houston-The Woodlands-Sugar Land, TX
1115           Houston-The Woodlands-Sugar Land, TX
1116           Houston-The Woodlands-Sugar Land, TX
1117             Chicago-Naperville-Elgin, IL-IN-WI
1118             Chicago-Naperville-Elgin, IL-IN-WI
1119                     Denver-Aurora-Lakewood, CO
1120          New York-Newark-Jersey City, NY-NJ-PA
1121           Houston-The Woodlands-Sugar Land, TX
1122           Houston-The Woodlands-Sugar Land, TX
1123           Houston-The Woodlands-Sugar Land, TX
1124               Las Vegas-Henderson-Paradise, NV
1125                  Orlando-Kissimmee-Sanford, FL
1126             Chicago-Naperville-Elgin, IL-IN-WI
1127                     Denver-Aurora-Lakewood, CO
1128                     Denver-Aurora-Lakewood, CO
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV
1130             Chicago-Naperville-Elgin, IL-IN-WI
1131                     Denver-Aurora-Lakewood, CO
1132             Los Angeles-Long Beach-Anaheim, CA
1133                     Denver-Aurora-Lakewood, CO
1134          New York-Newark-Jersey City, NY-NJ-PA
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV
1136           Houston-The Woodlands-Sugar Land, TX
1137           Houston-The Woodlands-Sugar Land, TX
1138             Chicago-Naperville-Elgin, IL-IN-WI
1139           Houston-The Woodlands-Sugar Land, TX
1140           Houston-The Woodlands-Sugar Land, TX
1141                     Denver-Aurora-Lakewood, CO
1142                     Denver-Aurora-Lakewood, CO
1143                     Denver-Aurora-Lakewood, CO
1144                     Denver-Aurora-Lakewood, CO
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV
1146           Houston-The Woodlands-Sugar Land, TX
1147                     Denver-Aurora-Lakewood, CO
1148                     Denver-Aurora-Lakewood, CO
1149                     Denver-Aurora-Lakewood, CO
1150                     Denver-Aurora-Lakewood, CO
1151                  Baltimore-Columbia-Towson, MD
1152                           Cleveland-Elyria, OH
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV
1154                     Denver-Aurora-Lakewood, CO
1155          New York-Newark-Jersey City, NY-NJ-PA
1156        Miami-Fort Lauderdale-Pompano Beach, FL
1157                      Grand Rapids-Kentwood, MI
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV
1159           Houston-The Woodlands-Sugar Land, TX
1160                                 Pittsburgh, PA
1161                                   Richmond, VA
1162                                  Rochester, NY
1163             San Diego-Chula Vista-Carlsbad, CA
1164                     Denver-Aurora-Lakewood, CO
1165             Chicago-Naperville-Elgin, IL-IN-WI
1166          New York-Newark-Jersey City, NY-NJ-PA
1167                     Denver-Aurora-Lakewood, CO
1168          New York-Newark-Jersey City, NY-NJ-PA
1169             San Francisco-Oakland-Berkeley, CA
1170             San Francisco-Oakland-Berkeley, CA
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV
1172             Chicago-Naperville-Elgin, IL-IN-WI
1173             Chicago-Naperville-Elgin, IL-IN-WI
1174                     Denver-Aurora-Lakewood, CO
1175                     Denver-Aurora-Lakewood, CO
1176             Chicago-Naperville-Elgin, IL-IN-WI
1177             San Francisco-Oakland-Berkeley, CA
1178          New York-Newark-Jersey City, NY-NJ-PA
1179           Houston-The Woodlands-Sugar Land, TX
1180           Houston-The Woodlands-Sugar Land, TX
1181                     Denver-Aurora-Lakewood, CO
1182                     Denver-Aurora-Lakewood, CO
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV
1184             Chicago-Naperville-Elgin, IL-IN-WI
1185             Chicago-Naperville-Elgin, IL-IN-WI
1186             Chicago-Naperville-Elgin, IL-IN-WI
1187               Austin-Round Rock-Georgetown, TX
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV
1189          New York-Newark-Jersey City, NY-NJ-PA
1190        Miami-Fort Lauderdale-Pompano Beach, FL
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV
1193           Houston-The Woodlands-Sugar Land, TX
1194                    Kahului-Wailuku-Lahaina, HI
1195             Chicago-Naperville-Elgin, IL-IN-WI
1196             Chicago-Naperville-Elgin, IL-IN-WI
1197             Chicago-Naperville-Elgin, IL-IN-WI
1198          New York-Newark-Jersey City, NY-NJ-PA
1199           Houston-The Woodlands-Sugar Land, TX
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV
1201                           Cleveland-Elyria, OH
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV
1203           Houston-The Woodlands-Sugar Land, TX
1204           Houston-The Woodlands-Sugar Land, TX
1205                Dallas-Fort Worth-Arlington, TX
1206                Dallas-Fort Worth-Arlington, TX
1207               Las Vegas-Henderson-Paradise, NV
1208               Austin-Round Rock-Georgetown, TX
1209               Las Vegas-Henderson-Paradise, NV
1210                      Phoenix-Mesa-Chandler, AZ
1211                  Baltimore-Columbia-Towson, MD
1212                  Baltimore-Columbia-Towson, MD
1213                  Baltimore-Columbia-Towson, MD
1214                  Baltimore-Columbia-Towson, MD
1215                  Orlando-Kissimmee-Sanford, FL
1216             Chicago-Naperville-Elgin, IL-IN-WI
1217             Chicago-Naperville-Elgin, IL-IN-WI
1218                  Baltimore-Columbia-Towson, MD
1219                  Orlando-Kissimmee-Sanford, FL
1220               Las Vegas-Henderson-Paradise, NV
1221                Dallas-Fort Worth-Arlington, TX
1222                  Baltimore-Columbia-Towson, MD
1223                Dallas-Fort Worth-Arlington, TX
1224                Dallas-Fort Worth-Arlington, TX
1225                Dallas-Fort Worth-Arlington, TX
1226                Dallas-Fort Worth-Arlington, TX
1227                Dallas-Fort Worth-Arlington, TX
1228           Houston-The Woodlands-Sugar Land, TX
1229          New York-Newark-Jersey City, NY-NJ-PA
1230                  Orlando-Kissimmee-Sanford, FL
1231             Chicago-Naperville-Elgin, IL-IN-WI
1232                         Milwaukee-Waukesha, WI
1233                      Phoenix-Mesa-Chandler, AZ
1234                      Phoenix-Mesa-Chandler, AZ
1235                      Phoenix-Mesa-Chandler, AZ
1236                               St. Louis, MO-IL
1237               Austin-Round Rock-Georgetown, TX
1238 Nashville-Davidson--Murfreesboro--Franklin, TN
1239                           Cleveland-Elyria, OH
1240                                Panama City, FL
1241        Miami-Fort Lauderdale-Pompano Beach, FL
1242           Houston-The Woodlands-Sugar Land, TX
1243               Indianapolis-Carmel-Anderson, IN
1244                                    Jackson, MS
1245               Las Vegas-Henderson-Paradise, NV
1246       Little Rock-North Little Rock-Conway, AR
1247                             Kansas City, MO-KS
1248                              Memphis, TN-MS-AR
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1251                      Phoenix-Mesa-Chandler, AZ
1252                                 Pittsburgh, PA
1253                                   Richmond, VA
1254                      Cape Coral-Fort Myers, FL
1255            Tampa-St. Petersburg-Clearwater, FL
1256 Nashville-Davidson--Murfreesboro--Franklin, TN
1257                Dallas-Fort Worth-Arlington, TX
1258                Dallas-Fort Worth-Arlington, TX
1259                Dallas-Fort Worth-Arlington, TX
1260                                    El Paso, TX
1261           Houston-The Woodlands-Sugar Land, TX
1262           Houston-The Woodlands-Sugar Land, TX
1263             Los Angeles-Long Beach-Anaheim, CA
1264             Chicago-Naperville-Elgin, IL-IN-WI
1265                      Phoenix-Mesa-Chandler, AZ
1266                      Phoenix-Mesa-Chandler, AZ
1267                      Phoenix-Mesa-Chandler, AZ
1268             San Diego-Chula Vista-Carlsbad, CA
1269             Los Angeles-Long Beach-Anaheim, CA
1270                  Baltimore-Columbia-Towson, MD
1271                Dallas-Fort Worth-Arlington, TX
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV
1273           Houston-The Woodlands-Sugar Land, TX
1274                      Brownsville-Harlingen, TX
1275             Los Angeles-Long Beach-Anaheim, CA
1276             Los Angeles-Long Beach-Anaheim, CA
1277                             Kansas City, MO-KS
1278             Chicago-Naperville-Elgin, IL-IN-WI
1279        Minneapolis-St. Paul-Bloomington, MN-WI
1280                       New Orleans-Metairie, LA
1281             San Francisco-Oakland-Berkeley, CA
1282                               Raleigh-Cary, NC
1283             Los Angeles-Long Beach-Anaheim, CA
1284                               St. Louis, MO-IL
1285            Tampa-St. Petersburg-Clearwater, FL
1286             Chicago-Naperville-Elgin, IL-IN-WI
1287             Chicago-Naperville-Elgin, IL-IN-WI
1288                  Baltimore-Columbia-Towson, MD
1289                  Orlando-Kissimmee-Sanford, FL
1290                  Baltimore-Columbia-Towson, MD
1291                Dallas-Fort Worth-Arlington, TX
1292           Houston-The Woodlands-Sugar Land, TX
1293                  Orlando-Kissimmee-Sanford, FL
1294             Chicago-Naperville-Elgin, IL-IN-WI
1295            Tampa-St. Petersburg-Clearwater, FL
1296               Las Vegas-Henderson-Paradise, NV
1297               Austin-Round Rock-Georgetown, TX
1298          Hartford-East Hartford-Middletown, CT
1299                Dallas-Fort Worth-Arlington, TX
1300                     Denver-Aurora-Lakewood, CO
1301           Houston-The Woodlands-Sugar Land, TX
1302          New York-Newark-Jersey City, NY-NJ-PA
1303                             Kansas City, MO-KS
1304                  Orlando-Kissimmee-Sanford, FL
1305     Virginia Beach-Norfolk-Newport News, VA-NC
1306                      Phoenix-Mesa-Chandler, AZ
1307                      Cape Coral-Fort Myers, FL
1308             San Jose-Sunnyvale-Santa Clara, CA
1309              North Port-Sarasota-Bradenton, FL
1310            Tampa-St. Petersburg-Clearwater, FL
1311                 Boston-Cambridge-Newton, MA-NH
1312                  Baltimore-Columbia-Towson, MD
1313                Charleston-North Charleston, SC
1314                           Cleveland-Elyria, OH
1315              Charlotte-Concord-Gastonia, NC-SC
1316                                   Columbus, OH
1317                    Detroit-Warren-Dearborn, MI
1318                                Panama City, FL
1319                               Jacksonville, FL
1320             Chicago-Naperville-Elgin, IL-IN-WI
1321        Miami-Fort Lauderdale-Pompano Beach, FL
1322                         Milwaukee-Waukesha, WI
1323                       New Orleans-Metairie, LA
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1325             San Francisco-Oakland-Berkeley, CA
1326             San Francisco-Oakland-Berkeley, CA
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1328                                 Pittsburgh, PA
1329                 Pensacola-Ferry Pass-Brent, FL
1330                               Raleigh-Cary, NC
1331                                   Savannah, GA
1332         Crestview-Fort Walton Beach-Destin, FL
1333                     Denver-Aurora-Lakewood, CO
1334                     Denver-Aurora-Lakewood, CO
1335               Las Vegas-Henderson-Paradise, NV
1336             San Francisco-Oakland-Berkeley, CA
1337                      Phoenix-Mesa-Chandler, AZ
1338             San Diego-Chula Vista-Carlsbad, CA
1339               Las Vegas-Henderson-Paradise, NV
1340 Nashville-Davidson--Murfreesboro--Franklin, TN
1341 Nashville-Davidson--Murfreesboro--Franklin, TN
1342                  Baltimore-Columbia-Towson, MD
1343                  Baltimore-Columbia-Towson, MD
1344                  Baltimore-Columbia-Towson, MD
1345                  Baltimore-Columbia-Towson, MD
1346                  Baltimore-Columbia-Towson, MD
1347                  Baltimore-Columbia-Towson, MD
1348             Chicago-Naperville-Elgin, IL-IN-WI
1349             Chicago-Naperville-Elgin, IL-IN-WI
1350             Chicago-Naperville-Elgin, IL-IN-WI
1351             Chicago-Naperville-Elgin, IL-IN-WI
1352             Chicago-Naperville-Elgin, IL-IN-WI
1353             Chicago-Naperville-Elgin, IL-IN-WI
1354                  Baltimore-Columbia-Towson, MD
1355        Miami-Fort Lauderdale-Pompano Beach, FL
1356                  Orlando-Kissimmee-Sanford, FL
1357             Chicago-Naperville-Elgin, IL-IN-WI
1358                Dallas-Fort Worth-Arlington, TX
1359                Dallas-Fort Worth-Arlington, TX
1360                Dallas-Fort Worth-Arlington, TX
1361                Dallas-Fort Worth-Arlington, TX
1362               Las Vegas-Henderson-Paradise, NV
1363                Sacramento-Roseville-Folsom, CA
1364               Austin-Round Rock-Georgetown, TX
1365                     Denver-Aurora-Lakewood, CO
1366           Houston-The Woodlands-Sugar Land, TX
1367             San Francisco-Oakland-Berkeley, CA
1368             San Jose-Sunnyvale-Santa Clara, CA
1369                          Birmingham-Hoover, AL
1370 Nashville-Davidson--Murfreesboro--Franklin, TN
1371 Nashville-Davidson--Murfreesboro--Franklin, TN
1372                           Cincinnati, OH-KY-IN
1373                      Grand Rapids-Kentwood, MI
1374               Indianapolis-Carmel-Anderson, IN
1375             Chicago-Naperville-Elgin, IL-IN-WI
1376                                   Savannah, GA
1377         Crestview-Fort Walton Beach-Destin, FL
1378          Hartford-East Hartford-Middletown, CT
1379                        Buffalo-Cheektowaga, NY
1380                Charleston-North Charleston, SC
1381                           Cleveland-Elyria, OH
1382        Miami-Fort Lauderdale-Pompano Beach, FL
1383                                Spartanburg, SC
1384           Houston-The Woodlands-Sugar Land, TX
1385          New York-Newark-Jersey City, NY-NJ-PA
1386               Las Vegas-Henderson-Paradise, NV
1387          New York-Newark-Jersey City, NY-NJ-PA
1388             Chicago-Naperville-Elgin, IL-IN-WI
1389        Miami-Fort Lauderdale-Pompano Beach, FL
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1391     Virginia Beach-Norfolk-Newport News, VA-NC
1392                      Phoenix-Mesa-Chandler, AZ
1393                                 Pittsburgh, PA
1394                      Providence-Warwick, RI-MA
1395                    Portland-South Portland, ME
1396                               Raleigh-Cary, NC
1397                                  Rochester, NY
1398                      Cape Coral-Fort Myers, FL
1399             Louisville/Jefferson County, KY-IN
1400                     Denver-Aurora-Lakewood, CO
1401               Las Vegas-Henderson-Paradise, NV
1402 Nashville-Davidson--Murfreesboro--Franklin, TN
1403 Nashville-Davidson--Murfreesboro--Franklin, TN
1404 Nashville-Davidson--Murfreesboro--Franklin, TN
1405                Dallas-Fort Worth-Arlington, TX
1406             Chicago-Naperville-Elgin, IL-IN-WI
1407                               St. Louis, MO-IL
1408 Nashville-Davidson--Murfreesboro--Franklin, TN
1409 Nashville-Davidson--Murfreesboro--Franklin, TN
1410                  Baltimore-Columbia-Towson, MD
1411               Las Vegas-Henderson-Paradise, NV
1412             Chicago-Naperville-Elgin, IL-IN-WI
1413                               St. Louis, MO-IL
1414 Nashville-Davidson--Murfreesboro--Franklin, TN
1415             Chicago-Naperville-Elgin, IL-IN-WI
1416             Chicago-Naperville-Elgin, IL-IN-WI
1417              North Port-Sarasota-Bradenton, FL
1418                               St. Louis, MO-IL
1419 Nashville-Davidson--Murfreesboro--Franklin, TN
1420                  Baltimore-Columbia-Towson, MD
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV
1422               Las Vegas-Henderson-Paradise, NV
1423                      Phoenix-Mesa-Chandler, AZ
1424                               St. Louis, MO-IL
1425            Tampa-St. Petersburg-Clearwater, FL
1426               Las Vegas-Henderson-Paradise, NV
1427               Las Vegas-Henderson-Paradise, NV
1428                      Phoenix-Mesa-Chandler, AZ
1429           Houston-The Woodlands-Sugar Land, TX
1430           Houston-The Woodlands-Sugar Land, TX
1431                     Denver-Aurora-Lakewood, CO
1432             Chicago-Naperville-Elgin, IL-IN-WI
1433                  Baltimore-Columbia-Towson, MD
1434                  Orlando-Kissimmee-Sanford, FL
1435             Chicago-Naperville-Elgin, IL-IN-WI
1436             Chicago-Naperville-Elgin, IL-IN-WI
1437            Tampa-St. Petersburg-Clearwater, FL
1438                                Albuquerque, NM
1439               Austin-Round Rock-Georgetown, TX
1440                          Birmingham-Hoover, AL
1441                     Denver-Aurora-Lakewood, CO
1442                     Denver-Aurora-Lakewood, CO
1443                                    El Paso, TX
1444           Houston-The Woodlands-Sugar Land, TX
1445          New York-Newark-Jersey City, NY-NJ-PA
1446             Los Angeles-Long Beach-Anaheim, CA
1447                  Orlando-Kissimmee-Sanford, FL
1448             San Francisco-Oakland-Berkeley, CA
1449                    Omaha-Council Bluffs, NE-IA
1450             San Jose-Sunnyvale-Santa Clara, CA
1451                             Salt Lake City, UT
1452             Los Angeles-Long Beach-Anaheim, CA
1453                               St. Louis, MO-IL
1454            Tampa-St. Petersburg-Clearwater, FL
1455                                   Amarillo, TX
1456               Austin-Round Rock-Georgetown, TX
1457                                   Columbus, OH
1458                           Colorado Springs, CO
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV
1460                                Panama City, FL
1461        Miami-Fort Lauderdale-Pompano Beach, FL
1462           Houston-The Woodlands-Sugar Land, TX
1463                                    Lubbock, TX
1464       Little Rock-North Little Rock-Conway, AR
1465                                    Midland, TX
1466                             Kansas City, MO-KS
1467             Chicago-Naperville-Elgin, IL-IN-WI
1468        Minneapolis-St. Paul-Bloomington, MN-WI
1469                       New Orleans-Metairie, LA
1470             Chicago-Naperville-Elgin, IL-IN-WI
1471                      Phoenix-Mesa-Chandler, AZ
1472                 Pensacola-Ferry Pass-Brent, FL
1473                  San Antonio-New Braunfels, TX
1474                                      Tulsa, OK
1475         Crestview-Fort Walton Beach-Destin, FL
1476 Nashville-Davidson--Murfreesboro--Franklin, TN
1477 Nashville-Davidson--Murfreesboro--Franklin, TN
1478 Nashville-Davidson--Murfreesboro--Franklin, TN
1479        Miami-Fort Lauderdale-Pompano Beach, FL
1480             Chicago-Naperville-Elgin, IL-IN-WI
1481                               St. Louis, MO-IL
1482                               St. Louis, MO-IL
1483                                   Columbus, OH
1484                Dallas-Fort Worth-Arlington, TX
1485                  Orlando-Kissimmee-Sanford, FL
1486                         Milwaukee-Waukesha, WI
1487                    Omaha-Council Bluffs, NE-IA
1488                      Cape Coral-Fort Myers, FL
1489                               St. Louis, MO-IL
1490            Tampa-St. Petersburg-Clearwater, FL
1491                          Birmingham-Hoover, AL
1492 Nashville-Davidson--Murfreesboro--Franklin, TN
1493             Los Angeles-Long Beach-Anaheim, CA
1494                  Baltimore-Columbia-Towson, MD
1495                           Cincinnati, OH-KY-IN
1496                Dallas-Fort Worth-Arlington, TX
1497                Dallas-Fort Worth-Arlington, TX
1498                                    El Paso, TX
1499                     Spokane-Spokane Valley, WA
1500           Houston-The Woodlands-Sugar Land, TX
1501               Indianapolis-Carmel-Anderson, IN
1502               Las Vegas-Henderson-Paradise, NV
1503          New York-Newark-Jersey City, NY-NJ-PA
1504             Chicago-Naperville-Elgin, IL-IN-WI
1505             Chicago-Naperville-Elgin, IL-IN-WI
1506                         Milwaukee-Waukesha, WI
1507                  Santa Maria-Santa Barbara, CA
1508             Los Angeles-Long Beach-Anaheim, CA
1509                               St. Louis, MO-IL
1510                                      Tulsa, OK
1511                                     Tucson, AZ
1512                                Albuquerque, NM
1513                        Buffalo-Cheektowaga, NY
1514                Charleston-North Charleston, SC
1515                          Steamboat Springs, CO
1516           Houston-The Woodlands-Sugar Land, TX
1517                                    Wichita, KS
1518               Las Vegas-Henderson-Paradise, NV
1519             Los Angeles-Long Beach-Anaheim, CA
1520       Little Rock-North Little Rock-Conway, AR
1521        Miami-Fort Lauderdale-Pompano Beach, FL
1522                       New Orleans-Metairie, LA
1523             San Francisco-Oakland-Berkeley, CA
1524                              Oklahoma City, OK
1525                                       Reno, NV
1526             San Diego-Chula Vista-Carlsbad, CA
1527            Tampa-St. Petersburg-Clearwater, FL
1528                               St. Louis, MO-IL
1529 Nashville-Davidson--Murfreesboro--Franklin, TN
1530             Chicago-Naperville-Elgin, IL-IN-WI
1531             Chicago-Naperville-Elgin, IL-IN-WI
1532 Nashville-Davidson--Murfreesboro--Franklin, TN
1533                  Baltimore-Columbia-Towson, MD
1534                               St. Louis, MO-IL
1535           Houston-The Woodlands-Sugar Land, TX
1536                               St. Louis, MO-IL
1537               Austin-Round Rock-Georgetown, TX
1538                     Denver-Aurora-Lakewood, CO
1539           Houston-The Woodlands-Sugar Land, TX
1540               Las Vegas-Henderson-Paradise, NV
1541             Los Angeles-Long Beach-Anaheim, CA
1542                      Phoenix-Mesa-Chandler, AZ
1543               Austin-Round Rock-Georgetown, TX
1544           Houston-The Woodlands-Sugar Land, TX
1545           Houston-The Woodlands-Sugar Land, TX
1546                      Phoenix-Mesa-Chandler, AZ
1547                  San Antonio-New Braunfels, TX
1548             San Francisco-Oakland-Berkeley, CA
1549               Las Vegas-Henderson-Paradise, NV
1550             San Francisco-Oakland-Berkeley, CA
1551               Las Vegas-Henderson-Paradise, NV
1552                  Baltimore-Columbia-Towson, MD
1553           Houston-The Woodlands-Sugar Land, TX
1554           Houston-The Woodlands-Sugar Land, TX
1555           Houston-The Woodlands-Sugar Land, TX
1556                  Orlando-Kissimmee-Sanford, FL
1557                       New Orleans-Metairie, LA
1558                               Raleigh-Cary, NC
1559                  Baltimore-Columbia-Towson, MD
1560                Dallas-Fort Worth-Arlington, TX
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV
1562             Chicago-Naperville-Elgin, IL-IN-WI
1563                      Phoenix-Mesa-Chandler, AZ
1564                      Phoenix-Mesa-Chandler, AZ
1565                                 Pittsburgh, PA
1566                  San Antonio-New Braunfels, TX
1567            Tampa-St. Petersburg-Clearwater, FL
1568                     Denver-Aurora-Lakewood, CO
1569                     Denver-Aurora-Lakewood, CO
1570               Las Vegas-Henderson-Paradise, NV
1571             Chicago-Naperville-Elgin, IL-IN-WI
1572                      Phoenix-Mesa-Chandler, AZ
1573                Sacramento-Roseville-Folsom, CA
1574               Las Vegas-Henderson-Paradise, NV
1575             San Francisco-Oakland-Berkeley, CA
1576                  Baltimore-Columbia-Towson, MD
1577           Houston-The Woodlands-Sugar Land, TX
1578                                      Kapaa, HI
1579             San Francisco-Oakland-Berkeley, CA
1580             San Francisco-Oakland-Berkeley, CA
1581                      Phoenix-Mesa-Chandler, AZ
1582           Atlanta-Sandy Springs-Alpharetta, GA
1583 Nashville-Davidson--Murfreesboro--Franklin, TN
1584                  Baltimore-Columbia-Towson, MD
1585                Dallas-Fort Worth-Arlington, TX
1586                     Denver-Aurora-Lakewood, CO
1587                                    El Paso, TX
1588                                Spartanburg, SC
1589        Miami-Fort Lauderdale-Pompano Beach, FL
1590        Minneapolis-St. Paul-Bloomington, MN-WI
1591                       New Orleans-Metairie, LA
1592                      Phoenix-Mesa-Chandler, AZ
1593                               St. Louis, MO-IL
1594                               St. Louis, MO-IL
1595               Austin-Round Rock-Georgetown, TX
1596             Los Angeles-Long Beach-Anaheim, CA
1597                                Panama City, FL
1598        Miami-Fort Lauderdale-Pompano Beach, FL
1599                      Brownsville-Harlingen, TX
1600               Las Vegas-Henderson-Paradise, NV
1601             Los Angeles-Long Beach-Anaheim, CA
1602                                    Lubbock, TX
1603          New York-Newark-Jersey City, NY-NJ-PA
1604             Los Angeles-Long Beach-Anaheim, CA
1605                                    Midland, TX
1606                  Orlando-Kissimmee-Sanford, FL
1607                              Memphis, TN-MS-AR
1608             San Francisco-Oakland-Berkeley, CA
1609                              Oklahoma City, OK
1610           Riverside-San Bernardino-Ontario, CA
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1612                 Pensacola-Ferry Pass-Brent, FL
1613                      Cape Coral-Fort Myers, FL
1614                  San Antonio-New Braunfels, TX
1615                  San Antonio-New Braunfels, TX
1616                                   Savannah, GA
1617             San Jose-Sunnyvale-Santa Clara, CA
1618            Tampa-St. Petersburg-Clearwater, FL
1619                                      Tulsa, OK
1620           Houston-The Woodlands-Sugar Land, TX
1621           Houston-The Woodlands-Sugar Land, TX
1622             Chicago-Naperville-Elgin, IL-IN-WI
1623             Chicago-Naperville-Elgin, IL-IN-WI
1624                Dallas-Fort Worth-Arlington, TX
1625                Dallas-Fort Worth-Arlington, TX
1626             Chicago-Naperville-Elgin, IL-IN-WI
1627                Dallas-Fort Worth-Arlington, TX
1628                Dallas-Fort Worth-Arlington, TX
1629             Chicago-Naperville-Elgin, IL-IN-WI
1630                     Denver-Aurora-Lakewood, CO
1631                               St. Louis, MO-IL
1632                  Baltimore-Columbia-Towson, MD
1633                Dallas-Fort Worth-Arlington, TX
1634           Houston-The Woodlands-Sugar Land, TX
1635                  Orlando-Kissimmee-Sanford, FL
1636                      Cape Coral-Fort Myers, FL
1637              North Port-Sarasota-Bradenton, FL
1638 Nashville-Davidson--Murfreesboro--Franklin, TN
1639                  Baltimore-Columbia-Towson, MD
1640                  Baltimore-Columbia-Towson, MD
1641                  Baltimore-Columbia-Towson, MD
1642                               St. Louis, MO-IL
1643 Nashville-Davidson--Murfreesboro--Franklin, TN
1644             Chicago-Naperville-Elgin, IL-IN-WI
1645                      Phoenix-Mesa-Chandler, AZ
1646                      Phoenix-Mesa-Chandler, AZ
1647                      Phoenix-Mesa-Chandler, AZ
1648                                Albuquerque, NM
1649                                   Amarillo, TX
1650               Austin-Round Rock-Georgetown, TX
1651               Austin-Round Rock-Georgetown, TX
1652                Dallas-Fort Worth-Arlington, TX
1653                     Spokane-Spokane Valley, WA
1654             Chicago-Naperville-Elgin, IL-IN-WI
1655                         Milwaukee-Waukesha, WI
1656             San Francisco-Oakland-Berkeley, CA
1657            Portland-Vancouver-Hillsboro, OR-WA
1658                  San Antonio-New Braunfels, TX
1659                             Salt Lake City, UT
1660                Sacramento-Roseville-Folsom, CA
1661             Los Angeles-Long Beach-Anaheim, CA
1662                               St. Louis, MO-IL
1663                                 Boise City, ID
1664             Los Angeles-Long Beach-Anaheim, CA
1665                  Baltimore-Columbia-Towson, MD
1666                                    Bozeman, MT
1667                           Colorado Springs, CO
1668                         Eugene-Springfield, OR
1669             Los Angeles-Long Beach-Anaheim, CA
1670                         Milwaukee-Waukesha, WI
1671           Riverside-San Bernardino-Ontario, CA
1672           Riverside-San Bernardino-Ontario, CA
1673                                       Reno, NV
1674             San Diego-Chula Vista-Carlsbad, CA
1675                  Santa Maria-Santa Barbara, CA
1676             San Jose-Sunnyvale-Santa Clara, CA
1677                                      Tulsa, OK
1678                                     Tucson, AZ
1679                                Albuquerque, NM
1680                                    El Paso, TX
1681                             Urban Honolulu, HI
1682             Chicago-Naperville-Elgin, IL-IN-WI
1683                       New Orleans-Metairie, LA
1684                       New Orleans-Metairie, LA
1685                      Phoenix-Mesa-Chandler, AZ
1686                      Phoenix-Mesa-Chandler, AZ
1687               Austin-Round Rock-Georgetown, TX
1688               Austin-Round Rock-Georgetown, TX
1689           Houston-The Woodlands-Sugar Land, TX
1690                                       Reno, NV
1691                Sacramento-Roseville-Folsom, CA
1692                Sacramento-Roseville-Folsom, CA
1693               Austin-Round Rock-Georgetown, TX
1694                Dallas-Fort Worth-Arlington, TX
1695                  Baltimore-Columbia-Towson, MD
1696                  Baltimore-Columbia-Towson, MD
1697           Houston-The Woodlands-Sugar Land, TX
1698                               St. Louis, MO-IL
1699                               St. Louis, MO-IL
1700             Chicago-Naperville-Elgin, IL-IN-WI
1701                       New Orleans-Metairie, LA
1702                     Denver-Aurora-Lakewood, CO
1703               Las Vegas-Henderson-Paradise, NV
1704             San Francisco-Oakland-Berkeley, CA
1705                Sacramento-Roseville-Folsom, CA
1706                               St. Louis, MO-IL
1707                             Urban Honolulu, HI
1708           Houston-The Woodlands-Sugar Land, TX
1709           Houston-The Woodlands-Sugar Land, TX
1710               Las Vegas-Henderson-Paradise, NV
1711             Chicago-Naperville-Elgin, IL-IN-WI
1712                    Kahului-Wailuku-Lahaina, HI
1713                                       Reno, NV
1714                Sacramento-Roseville-Folsom, CA
1715                Dallas-Fort Worth-Arlington, TX
1716                Dallas-Fort Worth-Arlington, TX
1717           Houston-The Woodlands-Sugar Land, TX
1718               Austin-Round Rock-Georgetown, TX
1719                Dallas-Fort Worth-Arlington, TX
1720             Chicago-Naperville-Elgin, IL-IN-WI
1721             Chicago-Naperville-Elgin, IL-IN-WI
1722                  Baltimore-Columbia-Towson, MD
1723        Miami-Fort Lauderdale-Pompano Beach, FL
1724          New York-Newark-Jersey City, NY-NJ-PA
1725                  Orlando-Kissimmee-Sanford, FL
1726                       New Orleans-Metairie, LA
1727                      Cape Coral-Fort Myers, FL
1728                  Baltimore-Columbia-Towson, MD
1729                Dallas-Fort Worth-Arlington, TX
1730                Dallas-Fort Worth-Arlington, TX
1731                Dallas-Fort Worth-Arlington, TX
1732                     Denver-Aurora-Lakewood, CO
1733           Houston-The Woodlands-Sugar Land, TX
1734                             Kansas City, MO-KS
1735                               St. Louis, MO-IL
1736                               St. Louis, MO-IL
1737                               St. Louis, MO-IL
1738                    Albany-Schenectady-Troy, NY
1739          Hartford-East Hartford-Middletown, CT
1740                          Birmingham-Hoover, AL
1741                        Buffalo-Cheektowaga, NY
1742                           Cincinnati, OH-KY-IN
1743        Miami-Fort Lauderdale-Pompano Beach, FL
1744               Indianapolis-Carmel-Anderson, IN
1745                              Memphis, TN-MS-AR
1746                       New Orleans-Metairie, LA
1747     Virginia Beach-Norfolk-Newport News, VA-NC
1748                      Phoenix-Mesa-Chandler, AZ
1749             Louisville/Jefferson County, KY-IN
1750                               St. Louis, MO-IL
1751               Austin-Round Rock-Georgetown, TX
1752                          Birmingham-Hoover, AL
1753 Nashville-Davidson--Murfreesboro--Franklin, TN
1754                  Baltimore-Columbia-Towson, MD
1755                Charleston-North Charleston, SC
1756                                   Columbus, OH
1757                Dallas-Fort Worth-Arlington, TX
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV
1759                     Denver-Aurora-Lakewood, CO
1760        Miami-Fort Lauderdale-Pompano Beach, FL
1761                      Grand Rapids-Kentwood, MI
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV
1763                               Jacksonville, FL
1764          New York-Newark-Jersey City, NY-NJ-PA
1765                             Kansas City, MO-KS
1766                  Orlando-Kissimmee-Sanford, FL
1767        Minneapolis-St. Paul-Bloomington, MN-WI
1768                       New Orleans-Metairie, LA
1769                    Omaha-Council Bluffs, NE-IA
1770     Virginia Beach-Norfolk-Newport News, VA-NC
1771                      Phoenix-Mesa-Chandler, AZ
1772                      Providence-Warwick, RI-MA
1773                                   Richmond, VA
1774             San Diego-Chula Vista-Carlsbad, CA
1775             Louisville/Jefferson County, KY-IN
1776                    Seattle-Tacoma-Bellevue, WA
1777             San Francisco-Oakland-Berkeley, CA
1778            Tampa-St. Petersburg-Clearwater, FL
1779                 Boston-Cambridge-Newton, MA-NH
1780                        Buffalo-Cheektowaga, NY
1781                           Cleveland-Elyria, OH
1782                           Cleveland-Elyria, OH
1783                           Cincinnati, OH-KY-IN
1784           Houston-The Woodlands-Sugar Land, TX
1785           Houston-The Woodlands-Sugar Land, TX
1786             Los Angeles-Long Beach-Anaheim, CA
1787                              Memphis, TN-MS-AR
1788        Miami-Fort Lauderdale-Pompano Beach, FL
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1790             San Francisco-Oakland-Berkeley, CA
1791                              Oklahoma City, OK
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1793                                 Pittsburgh, PA
1794                               Raleigh-Cary, NC
1795                      Cape Coral-Fort Myers, FL
1796                Sacramento-Roseville-Folsom, CA
1797             Los Angeles-Long Beach-Anaheim, CA
1798              North Port-Sarasota-Bradenton, FL
1799                               St. Louis, MO-IL
1800                                     Tucson, AZ
1801                  Orlando-Kissimmee-Sanford, FL
1802             Chicago-Naperville-Elgin, IL-IN-WI
1803                Dallas-Fort Worth-Arlington, TX
1804                     Denver-Aurora-Lakewood, CO
1805           Houston-The Woodlands-Sugar Land, TX
1806                  Baltimore-Columbia-Towson, MD
1807                               St. Louis, MO-IL
1808             Chicago-Naperville-Elgin, IL-IN-WI
1809                       New Orleans-Metairie, LA
1810                               St. Louis, MO-IL
1811                  Baltimore-Columbia-Towson, MD
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV
1813                      Phoenix-Mesa-Chandler, AZ
1814                      Cape Coral-Fort Myers, FL
1815                               St. Louis, MO-IL
1816           Houston-The Woodlands-Sugar Land, TX
1817                               St. Louis, MO-IL
1818           Houston-The Woodlands-Sugar Land, TX
1819           Houston-The Woodlands-Sugar Land, TX
1820                             Kansas City, MO-KS
1821 Nashville-Davidson--Murfreesboro--Franklin, TN
1822                  Baltimore-Columbia-Towson, MD
1823        Miami-Fort Lauderdale-Pompano Beach, FL
1824             Los Angeles-Long Beach-Anaheim, CA
1825          New York-Newark-Jersey City, NY-NJ-PA
1826                  Orlando-Kissimmee-Sanford, FL
1827                  Orlando-Kissimmee-Sanford, FL
1828        Miami-Fort Lauderdale-Pompano Beach, FL
1829                  San Antonio-New Braunfels, TX
1830            Tampa-St. Petersburg-Clearwater, FL
1831                Dallas-Fort Worth-Arlington, TX
1832                  Baltimore-Columbia-Towson, MD
1833             Chicago-Naperville-Elgin, IL-IN-WI
1834               Austin-Round Rock-Georgetown, TX
1835                                 Bellingham, WA
1836             Los Angeles-Long Beach-Anaheim, CA
1837                             Urban Honolulu, HI
1838                                      Kapaa, HI
1839           Riverside-San Bernardino-Ontario, CA
1840                      Phoenix-Mesa-Chandler, AZ
1841           Riverside-San Bernardino-Ontario, CA
1842             San Diego-Chula Vista-Carlsbad, CA
1843                                 Boise City, ID
1844             Los Angeles-Long Beach-Anaheim, CA
1845                         Eugene-Springfield, OR
1846                     Spokane-Spokane Valley, WA
1847                                       Hilo, HI
1848                  Santa Maria-Santa Barbara, CA
1849             Los Angeles-Long Beach-Anaheim, CA
1850                             Urban Honolulu, HI
1851               Austin-Round Rock-Georgetown, TX
1852           Houston-The Woodlands-Sugar Land, TX
1853             Chicago-Naperville-Elgin, IL-IN-WI
1854                      Phoenix-Mesa-Chandler, AZ
1855                               St. Louis, MO-IL
1856               Las Vegas-Henderson-Paradise, NV
1857             Chicago-Naperville-Elgin, IL-IN-WI
1858                               St. Louis, MO-IL
1859           Houston-The Woodlands-Sugar Land, TX
1860             San Francisco-Oakland-Berkeley, CA
1861             San Jose-Sunnyvale-Santa Clara, CA
1862 Nashville-Davidson--Murfreesboro--Franklin, TN
1863                      Phoenix-Mesa-Chandler, AZ
1864 Nashville-Davidson--Murfreesboro--Franklin, TN
1865                Dallas-Fort Worth-Arlington, TX
1866 Nashville-Davidson--Murfreesboro--Franklin, TN
1867             Chicago-Naperville-Elgin, IL-IN-WI
1868                  Baltimore-Columbia-Towson, MD
1869                  Orlando-Kissimmee-Sanford, FL
1870             Chicago-Naperville-Elgin, IL-IN-WI
1871                      Phoenix-Mesa-Chandler, AZ
1872                      Phoenix-Mesa-Chandler, AZ
1873                      Phoenix-Mesa-Chandler, AZ
1874             San Jose-Sunnyvale-Santa Clara, CA
1875             Chicago-Naperville-Elgin, IL-IN-WI
1876                     Denver-Aurora-Lakewood, CO
1877               Austin-Round Rock-Georgetown, TX
1878                     Spokane-Spokane Valley, WA
1879           Houston-The Woodlands-Sugar Land, TX
1880             San Francisco-Oakland-Berkeley, CA
1881                              Oklahoma City, OK
1882            Portland-Vancouver-Hillsboro, OR-WA
1883                                       Reno, NV
1884                  San Antonio-New Braunfels, TX
1885             San Jose-Sunnyvale-Santa Clara, CA
1886                             Salt Lake City, UT
1887                Sacramento-Roseville-Folsom, CA
1888                                Albuquerque, NM
1889               Austin-Round Rock-Georgetown, TX
1890             Los Angeles-Long Beach-Anaheim, CA
1891                                   Columbus, OH
1892                           Colorado Springs, CO
1893                                    El Paso, TX
1894        Miami-Fort Lauderdale-Pompano Beach, FL
1895             Los Angeles-Long Beach-Anaheim, CA
1896                                      Kapaa, HI
1897                         Milwaukee-Waukesha, WI
1898                    Omaha-Council Bluffs, NE-IA
1899           Riverside-San Bernardino-Ontario, CA
1900           Riverside-San Bernardino-Ontario, CA
1901             Los Angeles-Long Beach-Anaheim, CA
1902            Tampa-St. Petersburg-Clearwater, FL
1903                      Phoenix-Mesa-Chandler, AZ
1904                      Cape Coral-Fort Myers, FL
1905              North Port-Sarasota-Bradenton, FL
1906 Nashville-Davidson--Murfreesboro--Franklin, TN
1907                  Baltimore-Columbia-Towson, MD
1908        Miami-Fort Lauderdale-Pompano Beach, FL
1909 Nashville-Davidson--Murfreesboro--Franklin, TN
1910                Dallas-Fort Worth-Arlington, TX
1911           Houston-The Woodlands-Sugar Land, TX
1912                Sacramento-Roseville-Folsom, CA
1913               Las Vegas-Henderson-Paradise, NV
1914             Chicago-Naperville-Elgin, IL-IN-WI
1915                               St. Louis, MO-IL
1916                  Baltimore-Columbia-Towson, MD
1917                  Baltimore-Columbia-Towson, MD
1918                  Orlando-Kissimmee-Sanford, FL
1919            Tampa-St. Petersburg-Clearwater, FL
1920             Chicago-Naperville-Elgin, IL-IN-WI
1921             Los Angeles-Long Beach-Anaheim, CA
1922             Los Angeles-Long Beach-Anaheim, CA
1923             San Diego-Chula Vista-Carlsbad, CA
1924             San Jose-Sunnyvale-Santa Clara, CA
1925                  Orlando-Kissimmee-Sanford, FL
1926            Tampa-St. Petersburg-Clearwater, FL
1927             Chicago-Naperville-Elgin, IL-IN-WI
1928                         Milwaukee-Waukesha, WI
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV
1930                             Kansas City, MO-KS
1931             Chicago-Naperville-Elgin, IL-IN-WI
1932             Louisville/Jefferson County, KY-IN
1933                                 Boise City, ID
1934                Dallas-Fort Worth-Arlington, TX
1935           Houston-The Woodlands-Sugar Land, TX
1936             San Jose-Sunnyvale-Santa Clara, CA
1937                             Urban Honolulu, HI
1938                    Kahului-Wailuku-Lahaina, HI
1939                                     Tucson, AZ
1940                Dallas-Fort Worth-Arlington, TX
1941           Houston-The Woodlands-Sugar Land, TX
1942 Nashville-Davidson--Murfreesboro--Franklin, TN
1943                Dallas-Fort Worth-Arlington, TX
1944                                    El Paso, TX
1945             Los Angeles-Long Beach-Anaheim, CA
1946               Las Vegas-Henderson-Paradise, NV
1947             San Francisco-Oakland-Berkeley, CA
1948                  Orlando-Kissimmee-Sanford, FL
1949             Chicago-Naperville-Elgin, IL-IN-WI
1950                  Baltimore-Columbia-Towson, MD
1951                      Cape Coral-Fort Myers, FL
1952            Tampa-St. Petersburg-Clearwater, FL
1953             San Francisco-Oakland-Berkeley, CA
1954             San Jose-Sunnyvale-Santa Clara, CA
1955                      Phoenix-Mesa-Chandler, AZ
1956             Los Angeles-Long Beach-Anaheim, CA
1957             San Diego-Chula Vista-Carlsbad, CA
1958                Dallas-Fort Worth-Arlington, TX
1959               Las Vegas-Henderson-Paradise, NV
1960                    Kahului-Wailuku-Lahaina, HI
1961                    Kahului-Wailuku-Lahaina, HI
1962                             Urban Honolulu, HI
1963                                       Hilo, HI
1964             Los Angeles-Long Beach-Anaheim, CA
1965           Riverside-San Bernardino-Ontario, CA
1966                                       Reno, NV
1967             Los Angeles-Long Beach-Anaheim, CA
1968                  Orlando-Kissimmee-Sanford, FL
1969                Dallas-Fort Worth-Arlington, TX
1970             Los Angeles-Long Beach-Anaheim, CA
1971                  Orlando-Kissimmee-Sanford, FL
1972                Sacramento-Roseville-Folsom, CA
1973                     Spokane-Spokane Valley, WA
1974             San Diego-Chula Vista-Carlsbad, CA
1975                    Seattle-Tacoma-Bellevue, WA
1976             Los Angeles-Long Beach-Anaheim, CA
1977                             Urban Honolulu, HI
1978             Los Angeles-Long Beach-Anaheim, CA
1979           Riverside-San Bernardino-Ontario, CA
1980           Riverside-San Bernardino-Ontario, CA
1981             Los Angeles-Long Beach-Anaheim, CA
1982                Dallas-Fort Worth-Arlington, TX
1983                      Phoenix-Mesa-Chandler, AZ
1984               Austin-Round Rock-Georgetown, TX
1985                                   Columbus, OH
1986               Austin-Round Rock-Georgetown, TX
1987               Indianapolis-Carmel-Anderson, IN
1988          New York-Newark-Jersey City, NY-NJ-PA
1989                  Baltimore-Columbia-Towson, MD
1990                Dallas-Fort Worth-Arlington, TX
1991        Miami-Fort Lauderdale-Pompano Beach, FL
1992           Houston-The Woodlands-Sugar Land, TX
1993                               Jacksonville, FL
1994          New York-Newark-Jersey City, NY-NJ-PA
1995             Los Angeles-Long Beach-Anaheim, CA
1996             Chicago-Naperville-Elgin, IL-IN-WI
1997                       New Orleans-Metairie, LA
1998                    Seattle-Tacoma-Bellevue, WA
1999               Austin-Round Rock-Georgetown, TX
2000 Nashville-Davidson--Murfreesboro--Franklin, TN
2001 Nashville-Davidson--Murfreesboro--Franklin, TN
2002                                   Columbus, OH
2003                 Des Moines-West Des Moines, IA
2004                                Panama City, FL
2005                                    Wichita, KS
2006             Los Angeles-Long Beach-Anaheim, CA
2007       Little Rock-North Little Rock-Conway, AR
2008                             Kansas City, MO-KS
2009                  Orlando-Kissimmee-Sanford, FL
2010        Miami-Fort Lauderdale-Pompano Beach, FL
2011                         Milwaukee-Waukesha, WI
2012                              Oklahoma City, OK
2013                    Omaha-Council Bluffs, NE-IA
2014                      Phoenix-Mesa-Chandler, AZ
2015                 Pensacola-Ferry Pass-Brent, FL
2016              North Port-Sarasota-Bradenton, FL
2017 Nashville-Davidson--Murfreesboro--Franklin, TN
2018                  Baltimore-Columbia-Towson, MD
2019                                   Columbus, OH
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV
2021             Chicago-Naperville-Elgin, IL-IN-WI
2022                               Raleigh-Cary, NC
2023             Louisville/Jefferson County, KY-IN
2024          Hartford-East Hartford-Middletown, CT
2025                          Birmingham-Hoover, AL
2026                        Buffalo-Cheektowaga, NY
2027                           Cincinnati, OH-KY-IN
2028        Miami-Fort Lauderdale-Pompano Beach, FL
2029             San Diego-Chula Vista-Carlsbad, CA
2030               Las Vegas-Henderson-Paradise, NV
2031 Nashville-Davidson--Murfreesboro--Franklin, TN
2032                Dallas-Fort Worth-Arlington, TX
2033           Houston-The Woodlands-Sugar Land, TX
2034                      Phoenix-Mesa-Chandler, AZ
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV
2036                               St. Louis, MO-IL
2037                Dallas-Fort Worth-Arlington, TX
2038                      Phoenix-Mesa-Chandler, AZ
2039                Dallas-Fort Worth-Arlington, TX
2040                Dallas-Fort Worth-Arlington, TX
2041                Dallas-Fort Worth-Arlington, TX
2042          New York-Newark-Jersey City, NY-NJ-PA
2043                                 Pittsburgh, PA
2044                                   Savannah, GA
2045                                      Tulsa, OK
2046                Dallas-Fort Worth-Arlington, TX
2047                      Phoenix-Mesa-Chandler, AZ
2048                                Bakersfield, CA
2049                         Eugene-Springfield, OR
2050                Dallas-Fort Worth-Arlington, TX
2051                Dallas-Fort Worth-Arlington, TX
2052           Houston-The Woodlands-Sugar Land, TX
2053           Houston-The Woodlands-Sugar Land, TX
2054           Houston-The Woodlands-Sugar Land, TX
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2058          New York-Newark-Jersey City, NY-NJ-PA
2059               Indianapolis-Carmel-Anderson, IN
2060          New York-Newark-Jersey City, NY-NJ-PA
2061                                   Columbus, OH
2062          New York-Newark-Jersey City, NY-NJ-PA
2063          New York-Newark-Jersey City, NY-NJ-PA
2064          New York-Newark-Jersey City, NY-NJ-PA
2065          New York-Newark-Jersey City, NY-NJ-PA
2066          New York-Newark-Jersey City, NY-NJ-PA
2067          New York-Newark-Jersey City, NY-NJ-PA
2068          New York-Newark-Jersey City, NY-NJ-PA
2069                                 Pittsburgh, PA
2070                               Raleigh-Cary, NC
2071          New York-Newark-Jersey City, NY-NJ-PA
2072          New York-Newark-Jersey City, NY-NJ-PA
2073          New York-Newark-Jersey City, NY-NJ-PA
2074              Charlotte-Concord-Gastonia, NC-SC
2075          New York-Newark-Jersey City, NY-NJ-PA
2076          New York-Newark-Jersey City, NY-NJ-PA
2077          New York-Newark-Jersey City, NY-NJ-PA
2078          New York-Newark-Jersey City, NY-NJ-PA
2079          New York-Newark-Jersey City, NY-NJ-PA
2080          New York-Newark-Jersey City, NY-NJ-PA
2081                 Boston-Cambridge-Newton, MA-NH
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2083          New York-Newark-Jersey City, NY-NJ-PA
2084              Charlotte-Concord-Gastonia, NC-SC
2085          New York-Newark-Jersey City, NY-NJ-PA
2086                               Raleigh-Cary, NC
2087             Louisville/Jefferson County, KY-IN
2088                 Boston-Cambridge-Newton, MA-NH
2089          New York-Newark-Jersey City, NY-NJ-PA
2090                Charleston-North Charleston, SC
2091                    Detroit-Warren-Dearborn, MI
2092                                   Key West, FL
2093                         Milwaukee-Waukesha, WI
2094                       New Orleans-Metairie, LA
2095                    Portland-South Portland, ME
2096              Charlotte-Concord-Gastonia, NC-SC
2097          New York-Newark-Jersey City, NY-NJ-PA
2098                       New Orleans-Metairie, LA
2099              North Port-Sarasota-Bradenton, FL
2100          New York-Newark-Jersey City, NY-NJ-PA
2101                 Boston-Cambridge-Newton, MA-NH
2102              Charlotte-Concord-Gastonia, NC-SC
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV
2104          New York-Newark-Jersey City, NY-NJ-PA
2105 Nashville-Davidson--Murfreesboro--Franklin, TN
2106                  Baltimore-Columbia-Towson, MD
2107                  Baltimore-Columbia-Towson, MD
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV
2109     Virginia Beach-Norfolk-Newport News, VA-NC
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2112                                 Pittsburgh, PA
2113                           Cleveland-Elyria, OH
2114                                   Columbus, OH
2115               Indianapolis-Carmel-Anderson, IN
2116               Indianapolis-Carmel-Anderson, IN
2117                                   Richmond, VA
2118                           Cincinnati, OH-KY-IN
2119              Charlotte-Concord-Gastonia, NC-SC
2120                               Jacksonville, FL
2121                 Boston-Cambridge-Newton, MA-NH
2122                               Raleigh-Cary, NC
2123                                   Columbus, OH
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV
2126          New York-Newark-Jersey City, NY-NJ-PA
2127          New York-Newark-Jersey City, NY-NJ-PA
2128                 Boston-Cambridge-Newton, MA-NH
2129          New York-Newark-Jersey City, NY-NJ-PA
2130          New York-Newark-Jersey City, NY-NJ-PA
2131             Chicago-Naperville-Elgin, IL-IN-WI
2132                 Boston-Cambridge-Newton, MA-NH
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV
2134          New York-Newark-Jersey City, NY-NJ-PA
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2137          New York-Newark-Jersey City, NY-NJ-PA
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV
2139              Charlotte-Concord-Gastonia, NC-SC
2140          New York-Newark-Jersey City, NY-NJ-PA
2141              Charlotte-Concord-Gastonia, NC-SC
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV
2143             Chicago-Naperville-Elgin, IL-IN-WI
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV
2147                        Buffalo-Cheektowaga, NY
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV
2149             Chicago-Naperville-Elgin, IL-IN-WI
2150                      Greensboro-High Point, NC
2151          New York-Newark-Jersey City, NY-NJ-PA
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV
2153        Minneapolis-St. Paul-Bloomington, MN-WI
2154        Minneapolis-St. Paul-Bloomington, MN-WI
2155                                    Bozeman, MT
2156             San Francisco-Oakland-Berkeley, CA
2157        Minneapolis-St. Paul-Bloomington, MN-WI
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2167                 Boston-Cambridge-Newton, MA-NH
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2169                                  Flagstaff, AZ
2170                     Denver-Aurora-Lakewood, CO
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV
2172       Little Rock-North Little Rock-Conway, AR
2173          New York-Newark-Jersey City, NY-NJ-PA
2174                                   Key West, FL
2175                  Orlando-Kissimmee-Sanford, FL
2176                  Orlando-Kissimmee-Sanford, FL
2177            Tampa-St. Petersburg-Clearwater, FL
2178        Miami-Fort Lauderdale-Pompano Beach, FL
2179            Tampa-St. Petersburg-Clearwater, FL
2180                          New Haven-Milford, CT
2181                 Boston-Cambridge-Newton, MA-NH
2182           Houston-The Woodlands-Sugar Land, TX
2183          New York-Newark-Jersey City, NY-NJ-PA
2184                         Milwaukee-Waukesha, WI
2185          New York-Newark-Jersey City, NY-NJ-PA
2186               Las Vegas-Henderson-Paradise, NV
2187        Miami-Fort Lauderdale-Pompano Beach, FL
2188                 Boston-Cambridge-Newton, MA-NH
2189           Riverside-San Bernardino-Ontario, CA
2190                    Kahului-Wailuku-Lahaina, HI
2191                Dallas-Fort Worth-Arlington, TX
2192                      Phoenix-Mesa-Chandler, AZ
2193                Dallas-Fort Worth-Arlington, TX
2194                                           <NA>
2195             San Diego-Chula Vista-Carlsbad, CA
2196             San Francisco-Oakland-Berkeley, CA
2197                             Kansas City, MO-KS
2198                               Raleigh-Cary, NC
2199        Miami-Fort Lauderdale-Pompano Beach, FL
2200                    Seattle-Tacoma-Bellevue, WA
2201                             Urban Honolulu, HI
2202                      Cape Coral-Fort Myers, FL
2203             San Francisco-Oakland-Berkeley, CA
2204                      Cape Coral-Fort Myers, FL
2205          New York-Newark-Jersey City, NY-NJ-PA
2206          Hartford-East Hartford-Middletown, CT
2207                                Albuquerque, NM
2208                 Boston-Cambridge-Newton, MA-NH
2209                                 Jackson, WY-ID
2210              Palm Bay-Melbourne-Titusville, FL
2211        Miami-Fort Lauderdale-Pompano Beach, FL
2212            Portland-Vancouver-Hillsboro, OR-WA
2213                  Orlando-Kissimmee-Sanford, FL
2214             Los Angeles-Long Beach-Anaheim, CA
2215                             Kansas City, MO-KS
2216                      Phoenix-Mesa-Chandler, AZ
2217                Dallas-Fort Worth-Arlington, TX
2218               Austin-Round Rock-Georgetown, TX
2219                     Denver-Aurora-Lakewood, CO
2220        Miami-Fort Lauderdale-Pompano Beach, FL
2221                    San Juan-Bayamón-Caguas, PR
2222                           Cincinnati, OH-KY-IN
2223          New York-Newark-Jersey City, NY-NJ-PA
2224                               Raleigh-Cary, NC
2225        Miami-Fort Lauderdale-Pompano Beach, FL
2226             San Diego-Chula Vista-Carlsbad, CA
2227           Atlanta-Sandy Springs-Alpharetta, GA
2228               Austin-Round Rock-Georgetown, TX
2229                             Kansas City, MO-KS
2230        Minneapolis-St. Paul-Bloomington, MN-WI
2231             Los Angeles-Long Beach-Anaheim, CA
2232                    Seattle-Tacoma-Bellevue, WA
2233              Charlotte-Concord-Gastonia, NC-SC
2234          New York-Newark-Jersey City, NY-NJ-PA
2235           Riverside-San Bernardino-Ontario, CA
2236                      Cape Coral-Fort Myers, FL
2237             Los Angeles-Long Beach-Anaheim, CA
2238                 Boston-Cambridge-Newton, MA-NH
2239                          Steamboat Springs, CO
2240                                       Reno, NV
2241                             Salt Lake City, UT
2242             San Francisco-Oakland-Berkeley, CA
2243            Tampa-St. Petersburg-Clearwater, FL
2244                               Raleigh-Cary, NC
2245                                   Columbus, OH
2246                             Kansas City, MO-KS
2247                                Albuquerque, NM
2248          New York-Newark-Jersey City, NY-NJ-PA
2249                    Seattle-Tacoma-Bellevue, WA
2250        Minneapolis-St. Paul-Bloomington, MN-WI
2251                             Salt Lake City, UT
2252            Tampa-St. Petersburg-Clearwater, FL
2253                    San Juan-Bayamón-Caguas, PR
2254        Miami-Fort Lauderdale-Pompano Beach, FL
2255                                  Anchorage, AK
2256                             Urban Honolulu, HI
2257                                           <NA>
2258                             Urban Honolulu, HI
2259                                       Hilo, HI
2260                             Urban Honolulu, HI
2261                    Kahului-Wailuku-Lahaina, HI
2262               Las Vegas-Henderson-Paradise, NV
2263           Atlanta-Sandy Springs-Alpharetta, GA
2264                                Baton Rouge, LA
2265                                Gainesville, FL
2266                            Gulfport-Biloxi, MS
2267                          Lexington-Fayette, KY
2268                                     Mobile, AL
2269                                    Roanoke, VA
2270                                Springfield, MO
2271                                      Tulsa, OK
2272          New York-Newark-Jersey City, NY-NJ-PA
2273                         Milwaukee-Waukesha, WI
2274                                   Richmond, VA
2275           Atlanta-Sandy Springs-Alpharetta, GA
2276          New York-Newark-Jersey City, NY-NJ-PA
2277                 Boston-Cambridge-Newton, MA-NH
2278                    Detroit-Warren-Dearborn, MI
2279                Burlington-South Burlington, VT
2280                Charleston-North Charleston, SC
2281                                Spartanburg, SC
2282                    Portland-South Portland, ME
2283                               Raleigh-Cary, NC
2284                                  Rochester, NY
2285                                  Knoxville, TN
2286                           Cincinnati, OH-KY-IN
2287           Atlanta-Sandy Springs-Alpharetta, GA
2288          New York-Newark-Jersey City, NY-NJ-PA
2289                                     Bangor, ME
2290 Nashville-Davidson--Murfreesboro--Franklin, TN
2291                Charleston-North Charleston, SC
2292                Charleston-North Charleston, SC
2293                                 Pittsburgh, PA
2294                                   Savannah, GA
2295                          Birmingham-Hoover, AL
2296                      Greensboro-High Point, NC
2297                                Spartanburg, SC
2298                              Memphis, TN-MS-AR
2299                    Portland-South Portland, ME
2300                                   Savannah, GA
2301           Atlanta-Sandy Springs-Alpharetta, GA
2302                           Cincinnati, OH-KY-IN
2303                 Des Moines-West Des Moines, IA
2304          New York-Newark-Jersey City, NY-NJ-PA
2305          New York-Newark-Jersey City, NY-NJ-PA
2306           Atlanta-Sandy Springs-Alpharetta, GA
2307                    Detroit-Warren-Dearborn, MI
2308          New York-Newark-Jersey City, NY-NJ-PA
2309            Tampa-St. Petersburg-Clearwater, FL
2310                 Boston-Cambridge-Newton, MA-NH
2311                Dallas-Fort Worth-Arlington, TX
2312          New York-Newark-Jersey City, NY-NJ-PA
2313        Miami-Fort Lauderdale-Pompano Beach, FL
2314               Austin-Round Rock-Georgetown, TX
2315                Dallas-Fort Worth-Arlington, TX
2316                Dallas-Fort Worth-Arlington, TX
2317                      Phoenix-Mesa-Chandler, AZ
2318              Charlotte-Concord-Gastonia, NC-SC
2319                                   Columbus, OH
2320               Las Vegas-Henderson-Paradise, NV
2321        Minneapolis-St. Paul-Bloomington, MN-WI
2322                       New Orleans-Metairie, LA
2323     Virginia Beach-Norfolk-Newport News, VA-NC
2324                      Phoenix-Mesa-Chandler, AZ
2325                                 Pittsburgh, PA
2326                    Portland-South Portland, ME
2327            Tampa-St. Petersburg-Clearwater, FL
2328              Charlotte-Concord-Gastonia, NC-SC
2329          New York-Newark-Jersey City, NY-NJ-PA
2330                               Jacksonville, FL
2331                              Memphis, TN-MS-AR
2332                                Albuquerque, NM
2333                                     Bangor, ME
2334                                   Columbus, OH
2335                      Greensboro-High Point, NC
2336                                    Wichita, KS
2337             Los Angeles-Long Beach-Anaheim, CA
2338                        Harrisburg-Carlisle, PA
2339                   McAllen-Edinburg-Mission, TX
2340                         Milwaukee-Waukesha, WI
2341           Riverside-San Bernardino-Ontario, CA
2342        Miami-Fort Lauderdale-Pompano Beach, FL
2343                    Portland-South Portland, ME
2344                      Cape Coral-Fort Myers, FL
2345             San Francisco-Oakland-Berkeley, CA
2346             Chicago-Naperville-Elgin, IL-IN-WI
2347             Chicago-Naperville-Elgin, IL-IN-WI
2348              Charlotte-Concord-Gastonia, NC-SC
2349        Miami-Fort Lauderdale-Pompano Beach, FL
2350                Dallas-Fort Worth-Arlington, TX
2351                Dallas-Fort Worth-Arlington, TX
2352        Miami-Fort Lauderdale-Pompano Beach, FL
2353                Dallas-Fort Worth-Arlington, TX
2354              Charlotte-Concord-Gastonia, NC-SC
2355                Dallas-Fort Worth-Arlington, TX
2356              Charlotte-Concord-Gastonia, NC-SC
2357             Chicago-Naperville-Elgin, IL-IN-WI
2358               Austin-Round Rock-Georgetown, TX
2359                Dallas-Fort Worth-Arlington, TX
2360              Charlotte-Concord-Gastonia, NC-SC
2361                Dallas-Fort Worth-Arlington, TX
2362                Dallas-Fort Worth-Arlington, TX
2363            Tampa-St. Petersburg-Clearwater, FL
2364               Las Vegas-Henderson-Paradise, NV
2365                      Phoenix-Mesa-Chandler, AZ
2366             San Francisco-Oakland-Berkeley, CA
2367                    San Juan-Bayamón-Caguas, PR
2368                                           <NA>
2369              Charlotte-Concord-Gastonia, NC-SC
2370                Dallas-Fort Worth-Arlington, TX
2371                Dallas-Fort Worth-Arlington, TX
2372                                   Key West, FL
2373           Riverside-San Bernardino-Ontario, CA
2374                    San Juan-Bayamón-Caguas, PR
2375             Los Angeles-Long Beach-Anaheim, CA
2376              North Port-Sarasota-Bradenton, FL
2377              Charlotte-Concord-Gastonia, NC-SC
2378                Dallas-Fort Worth-Arlington, TX
2379                      Cape Coral-Fort Myers, FL
2380                 Boston-Cambridge-Newton, MA-NH
2381          New York-Newark-Jersey City, NY-NJ-PA
2382          New York-Newark-Jersey City, NY-NJ-PA
2383        Miami-Fort Lauderdale-Pompano Beach, FL
2384              Charlotte-Concord-Gastonia, NC-SC
2385                Dallas-Fort Worth-Arlington, TX
2386        Miami-Fort Lauderdale-Pompano Beach, FL
2387                Dallas-Fort Worth-Arlington, TX
2388                Dallas-Fort Worth-Arlington, TX
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2390              Charlotte-Concord-Gastonia, NC-SC
2391              Charlotte-Concord-Gastonia, NC-SC
2392              Charlotte-Concord-Gastonia, NC-SC
2393        Miami-Fort Lauderdale-Pompano Beach, FL
2394        Miami-Fort Lauderdale-Pompano Beach, FL
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2396                Dallas-Fort Worth-Arlington, TX
2397                Dallas-Fort Worth-Arlington, TX
2398                             Urban Honolulu, HI
2399                                           <NA>
2400                                  Anchorage, AK
2401                    Seattle-Tacoma-Bellevue, WA
2402                    Seattle-Tacoma-Bellevue, WA
2403                                  Anchorage, AK
2404                                  Anchorage, AK
2405                                      Kapaa, HI
2406            Portland-Vancouver-Hillsboro, OR-WA
2407                    Seattle-Tacoma-Bellevue, WA
2408                                  Anchorage, AK
2409                                      Kapaa, HI
2410                    Seattle-Tacoma-Bellevue, WA
2411           Riverside-San Bernardino-Ontario, CA
2412        Miami-Fort Lauderdale-Pompano Beach, FL
2413                                      Kapaa, HI
2414                  Orlando-Kissimmee-Sanford, FL
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV
2416          New York-Newark-Jersey City, NY-NJ-PA
2417                 Boston-Cambridge-Newton, MA-NH
2418        Miami-Fort Lauderdale-Pompano Beach, FL
2419        Miami-Fort Lauderdale-Pompano Beach, FL
2420             San Francisco-Oakland-Berkeley, CA
2421                        Buffalo-Cheektowaga, NY
2422        Miami-Fort Lauderdale-Pompano Beach, FL
2423             San Diego-Chula Vista-Carlsbad, CA
2424              North Port-Sarasota-Bradenton, FL
2425          New York-Newark-Jersey City, NY-NJ-PA
2426        Miami-Fort Lauderdale-Pompano Beach, FL
2427                                   Richmond, VA
2428                                Albuquerque, NM
2429                 Boston-Cambridge-Newton, MA-NH
2430             Los Angeles-Long Beach-Anaheim, CA
2431        Miami-Fort Lauderdale-Pompano Beach, FL
2432           Riverside-San Bernardino-Ontario, CA
2433          Hartford-East Hartford-Middletown, CT
2434                        Buffalo-Cheektowaga, NY
2435          New York-Newark-Jersey City, NY-NJ-PA
2436                  Orlando-Kissimmee-Sanford, FL
2437        Miami-Fort Lauderdale-Pompano Beach, FL
2438          New York-Newark-Jersey City, NY-NJ-PA
2439          New York-Newark-Jersey City, NY-NJ-PA
2440            Tampa-St. Petersburg-Clearwater, FL
2441          New York-Newark-Jersey City, NY-NJ-PA
2442                 Boston-Cambridge-Newton, MA-NH
2443                  Orlando-Kissimmee-Sanford, FL
2444                    Albany-Schenectady-Troy, NY
2445          Hartford-East Hartford-Middletown, CT
2446                                 Boise City, ID
2447                                    Bozeman, MT
2448                                   Columbus, OH
2449                           Dayton-Kettering, OH
2450                                    Edwards, CO
2451                      Greensboro-High Point, NC
2452                                 Huntsville, AL
2453                                 Wilmington, NC
2454                               Jacksonville, FL
2455                    Omaha-Council Bluffs, NE-IA
2456     Virginia Beach-Norfolk-Newport News, VA-NC
2457                 Pensacola-Ferry Pass-Brent, FL
2458                    Portland-South Portland, ME
2459                               Raleigh-Cary, NC
2460             San Diego-Chula Vista-Carlsbad, CA
2461             San Francisco-Oakland-Berkeley, CA
2462                    San Juan-Bayamón-Caguas, PR
2463             Los Angeles-Long Beach-Anaheim, CA
2464                                     Tucson, AZ
2465         Crestview-Fort Walton Beach-Destin, FL
2466                    Detroit-Warren-Dearborn, MI
2467                    Seattle-Tacoma-Bellevue, WA
2468                             Salt Lake City, UT
2469        Miami-Fort Lauderdale-Pompano Beach, FL
2470        Minneapolis-St. Paul-Bloomington, MN-WI
2471                             Salt Lake City, UT
2472        Miami-Fort Lauderdale-Pompano Beach, FL
2473               Las Vegas-Henderson-Paradise, NV
2474                      Cape Coral-Fort Myers, FL
2475                    Detroit-Warren-Dearborn, MI
2476          New York-Newark-Jersey City, NY-NJ-PA
2477               Austin-Round Rock-Georgetown, TX
2478                 Boston-Cambridge-Newton, MA-NH
2479                        Buffalo-Cheektowaga, NY
2480                         Milwaukee-Waukesha, WI
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2482             San Diego-Chula Vista-Carlsbad, CA
2483                  San Antonio-New Braunfels, TX
2484             San Francisco-Oakland-Berkeley, CA
2485              North Port-Sarasota-Bradenton, FL
2486           Atlanta-Sandy Springs-Alpharetta, GA
2487           Atlanta-Sandy Springs-Alpharetta, GA
2488                    Seattle-Tacoma-Bellevue, WA
2489                             Salt Lake City, UT
2490                       New Orleans-Metairie, LA
2491        Miami-Fort Lauderdale-Pompano Beach, FL
2492               Indianapolis-Carmel-Anderson, IN
2493            Tampa-St. Petersburg-Clearwater, FL
2494                 Boston-Cambridge-Newton, MA-NH
2495                             Salt Lake City, UT
2496                 Boston-Cambridge-Newton, MA-NH
2497          New York-Newark-Jersey City, NY-NJ-PA
2498          Hartford-East Hartford-Middletown, CT
2499                  Baltimore-Columbia-Towson, MD
2500                    Detroit-Warren-Dearborn, MI
2501        Miami-Fort Lauderdale-Pompano Beach, FL
2502                             Kansas City, MO-KS
2503                         Milwaukee-Waukesha, WI
2504                                   Missoula, MT
2505           Riverside-San Bernardino-Ontario, CA
2506                  San Antonio-New Braunfels, TX
2507                Sacramento-Roseville-Folsom, CA
2508             Los Angeles-Long Beach-Anaheim, CA
2509              North Port-Sarasota-Bradenton, FL
2510                 Boston-Cambridge-Newton, MA-NH
2511                    Detroit-Warren-Dearborn, MI
2512                           Cincinnati, OH-KY-IN
2513                    Detroit-Warren-Dearborn, MI
2514               Austin-Round Rock-Georgetown, TX
2515          New York-Newark-Jersey City, NY-NJ-PA
2516        Minneapolis-St. Paul-Bloomington, MN-WI
2517            Tampa-St. Petersburg-Clearwater, FL
2518                 Boston-Cambridge-Newton, MA-NH
2519           Atlanta-Sandy Springs-Alpharetta, GA
2520 Nashville-Davidson--Murfreesboro--Franklin, TN
2521                 Boston-Cambridge-Newton, MA-NH
2522                  Baltimore-Columbia-Towson, MD
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV
2524        Miami-Fort Lauderdale-Pompano Beach, FL
2525               Indianapolis-Carmel-Anderson, IN
2526                       New Orleans-Metairie, LA
2527            Portland-Vancouver-Hillsboro, OR-WA
2528                               Raleigh-Cary, NC
2529                                       Reno, NV
2530                  San Antonio-New Braunfels, TX
2531                               St. Louis, MO-IL
2532            Tampa-St. Petersburg-Clearwater, FL
2533           Atlanta-Sandy Springs-Alpharetta, GA
2534          New York-Newark-Jersey City, NY-NJ-PA
2535                Burlington-South Burlington, VT
2536                        Buffalo-Cheektowaga, NY
2537                      Grand Rapids-Kentwood, MI
2538                                Spartanburg, SC
2539                Hilton Head Island-Bluffton, SC
2540                                   Richmond, VA
2541                Burlington-South Burlington, VT
2542                               St. Louis, MO-IL
2543                                       Hilo, HI
2544                Dallas-Fort Worth-Arlington, TX
2545                Dallas-Fort Worth-Arlington, TX
2546                      Brownsville-Harlingen, TX
2547                                   Columbia, SC
2548                           Champaign-Urbana, IL
2549                             Corpus Christi, TX
2550                                Springfield, IL
2551                                  Knoxville, TN
2552        Miami-Fort Lauderdale-Pompano Beach, FL
2553        Miami-Fort Lauderdale-Pompano Beach, FL
2554                Dallas-Fort Worth-Arlington, TX
2555                Dallas-Fort Worth-Arlington, TX
2556                Dallas-Fort Worth-Arlington, TX
2557                Dallas-Fort Worth-Arlington, TX
2558                Dallas-Fort Worth-Arlington, TX
2559                    Omaha-Council Bluffs, NE-IA
2560        Miami-Fort Lauderdale-Pompano Beach, FL
2561                    Omaha-Council Bluffs, NE-IA
2562                 Des Moines-West Des Moines, IA
2563                                  Rochester, MN
2564                Dallas-Fort Worth-Arlington, TX
2565        Miami-Fort Lauderdale-Pompano Beach, FL
2566              Charlotte-Concord-Gastonia, NC-SC
2567              Charlotte-Concord-Gastonia, NC-SC
2568                                    Madison, WI
2569                           Cleveland-Elyria, OH
2570                    Detroit-Warren-Dearborn, MI
2571                                  Lafayette, LA
2572       Little Rock-North Little Rock-Conway, AR
2573                        Harrisburg-Carlisle, PA
2574                           Dayton-Kettering, OH
2575                                  Knoxville, TN
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2578                          Manchester-Nashua, NH
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV
2581        Minneapolis-St. Paul-Bloomington, MN-WI
2582                     Denver-Aurora-Lakewood, CO
2583                Dallas-Fort Worth-Arlington, TX
2584                                   Appleton, WI
2585 Nashville-Davidson--Murfreesboro--Franklin, TN
2586                                     Casper, WY
2587                         Eugene-Springfield, OR
2588                                    Midland, TX
2589     Virginia Beach-Norfolk-Newport News, VA-NC
2590             Louisville/Jefferson County, KY-IN
2591                                           <NA>
2592                    Albany-Schenectady-Troy, NY
2593                    Omaha-Council Bluffs, NE-IA
2594                    South Bend-Mishawaka, IN-MI
2595                Dallas-Fort Worth-Arlington, TX
2596             Chicago-Naperville-Elgin, IL-IN-WI
2597        Minneapolis-St. Paul-Bloomington, MN-WI
2598                             Kansas City, MO-KS
2599                         Milwaukee-Waukesha, WI
2600           Riverside-San Bernardino-Ontario, CA
2601             Fayetteville-Springdale-Rogers, AR
2602                     Denver-Aurora-Lakewood, CO
2603                     Denver-Aurora-Lakewood, CO
2604           Houston-The Woodlands-Sugar Land, TX
2605                                   Bismarck, ND
2606                              Memphis, TN-MS-AR
2607                              Oklahoma City, OK
2608                    Omaha-Council Bluffs, NE-IA
2609                                 Pittsburgh, PA
2610                                   Richmond, VA
2611             Louisville/Jefferson County, KY-IN
2612        Minneapolis-St. Paul-Bloomington, MN-WI
2613          Hartford-East Hartford-Middletown, CT
2614                    Albany-Schenectady-Troy, NY
2615                          Birmingham-Hoover, AL
2616                              Memphis, TN-MS-AR
2617                                 Rapid City, SD
2618                    Detroit-Warren-Dearborn, MI
2619                                    Durango, CO
2620        Minneapolis-St. Paul-Bloomington, MN-WI
2621                     Denver-Aurora-Lakewood, CO
2622           Riverside-San Bernardino-Ontario, CA
2623                                Albuquerque, NM
2624                                     Tucson, AZ
2625                                Albuquerque, NM
2626                                     Fresno, CA
2627                                     Helena, MT
2628                         Kennewick-Richland, WA
2629           Riverside-San Bernardino-Ontario, CA
2630                                 Rapid City, SD
2631                                     Tucson, AZ
2632                             Salt Lake City, UT
2633                                 Boise City, ID
2634             San Francisco-Oakland-Berkeley, CA
2635                                      Kapaa, HI
2636                                    Madison, WI
2637                                   Missoula, MT
2638           Houston-The Woodlands-Sugar Land, TX
2639                  San Antonio-New Braunfels, TX
2640                Sacramento-Roseville-Folsom, CA
2641                     Denver-Aurora-Lakewood, CO
2642           Houston-The Woodlands-Sugar Land, TX
2643            Portland-Vancouver-Hillsboro, OR-WA
2644                      Phoenix-Mesa-Chandler, AZ
2645             San Diego-Chula Vista-Carlsbad, CA
2646                    San Juan-Bayamón-Caguas, PR
2647                  Baltimore-Columbia-Towson, MD
2648                                   Columbus, OH
2649                           Cincinnati, OH-KY-IN
2650                             Urban Honolulu, HI
2651                                 Jackson, WY-ID
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2653                                 Pittsburgh, PA
2654                    Seattle-Tacoma-Bellevue, WA
2655          New York-Newark-Jersey City, NY-NJ-PA
2656           Houston-The Woodlands-Sugar Land, TX
2657           Houston-The Woodlands-Sugar Land, TX
2658           Houston-The Woodlands-Sugar Land, TX
2659          New York-Newark-Jersey City, NY-NJ-PA
2660             Chicago-Naperville-Elgin, IL-IN-WI
2661                  Baltimore-Columbia-Towson, MD
2662                             Urban Honolulu, HI
2663                  Orlando-Kissimmee-Sanford, FL
2664                    Seattle-Tacoma-Bellevue, WA
2665          New York-Newark-Jersey City, NY-NJ-PA
2666                     Denver-Aurora-Lakewood, CO
2667          New York-Newark-Jersey City, NY-NJ-PA
2668             San Jose-Sunnyvale-Santa Clara, CA
2669 Nashville-Davidson--Murfreesboro--Franklin, TN
2670                    San Juan-Bayamón-Caguas, PR
2671                      Cape Coral-Fort Myers, FL
2672                                Panama City, FL
2673           Houston-The Woodlands-Sugar Land, TX
2674                             Urban Honolulu, HI
2675                             Kansas City, MO-KS
2676 Nashville-Davidson--Murfreesboro--Franklin, TN
2677                             Urban Honolulu, HI
2678               Indianapolis-Carmel-Anderson, IN
2679                  San Antonio-New Braunfels, TX
2680        Miami-Fort Lauderdale-Pompano Beach, FL
2681           Houston-The Woodlands-Sugar Land, TX
2682                Dallas-Fort Worth-Arlington, TX
2683                 Des Moines-West Des Moines, IA
2684                                   Key West, FL
2685             Louisville/Jefferson County, KY-IN
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV
2687                Charleston-North Charleston, SC
2688                           Cleveland-Elyria, OH
2689                               Jacksonville, FL
2690                 Boston-Cambridge-Newton, MA-NH
2691          New York-Newark-Jersey City, NY-NJ-PA
2692                                    Madison, WI
2693                                   Columbus, OH
2694                             Kansas City, MO-KS
2695                              Memphis, TN-MS-AR
2696                                    Madison, WI
2697             Louisville/Jefferson County, KY-IN
2698          New York-Newark-Jersey City, NY-NJ-PA
2699             Fayetteville-Springdale-Rogers, AR
2700                                   Key West, FL
2701             Louisville/Jefferson County, KY-IN
2702          New York-Newark-Jersey City, NY-NJ-PA
2703          New York-Newark-Jersey City, NY-NJ-PA
2704                Charleston-North Charleston, SC
2705                               Jacksonville, FL
2706             Louisville/Jefferson County, KY-IN
2707                                   Key West, FL
2708                       New Orleans-Metairie, LA
2709              Charlotte-Concord-Gastonia, NC-SC
2710                 Boston-Cambridge-Newton, MA-NH
2711          New York-Newark-Jersey City, NY-NJ-PA
2712             Chicago-Naperville-Elgin, IL-IN-WI
2713                                     Ithaca, NY
2714                                   Columbia, SC
2715                 Pensacola-Ferry Pass-Brent, FL
2716             Chicago-Naperville-Elgin, IL-IN-WI
2717                      Brownsville-Harlingen, TX
2718        Minneapolis-St. Paul-Bloomington, MN-WI
2719                                  Green Bay, WI
2720                               Salisbury, MD-DE
2721             Louisville/Jefferson County, KY-IN
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2723          New York-Newark-Jersey City, NY-NJ-PA
2724                                   Savannah, GA
2725           Houston-The Woodlands-Sugar Land, TX
2726                                  Dickinson, ND
2727                    Albany-Schenectady-Troy, NY
2728                                     Mobile, AL
2729                               St. Louis, MO-IL
2730           Houston-The Woodlands-Sugar Land, TX
2731                     Denver-Aurora-Lakewood, CO
2732              Allentown-Bethlehem-Easton, PA-NJ
2733          New York-Newark-Jersey City, NY-NJ-PA
2734          New York-Newark-Jersey City, NY-NJ-PA
2735          New York-Newark-Jersey City, NY-NJ-PA
2736        Minneapolis-St. Paul-Bloomington, MN-WI
2737          New York-Newark-Jersey City, NY-NJ-PA
2738          New York-Newark-Jersey City, NY-NJ-PA
2739                Burlington-South Burlington, VT
2740                    Portland-South Portland, ME
2741                                   Columbia, SC
2742                      Grand Rapids-Kentwood, MI
2743     Virginia Beach-Norfolk-Newport News, VA-NC
2744           Atlanta-Sandy Springs-Alpharetta, GA
2745          New York-Newark-Jersey City, NY-NJ-PA
2746                 Boston-Cambridge-Newton, MA-NH
2747          New York-Newark-Jersey City, NY-NJ-PA
2748          New York-Newark-Jersey City, NY-NJ-PA
2749          New York-Newark-Jersey City, NY-NJ-PA
2750          New York-Newark-Jersey City, NY-NJ-PA
2751                Dallas-Fort Worth-Arlington, TX
2752                Dallas-Fort Worth-Arlington, TX
2753        Miami-Fort Lauderdale-Pompano Beach, FL
2754                      Phoenix-Mesa-Chandler, AZ
2755              Charlotte-Concord-Gastonia, NC-SC
2756              Charlotte-Concord-Gastonia, NC-SC
2757                Dallas-Fort Worth-Arlington, TX
2758                Dallas-Fort Worth-Arlington, TX
2759                Dallas-Fort Worth-Arlington, TX
2760                Dallas-Fort Worth-Arlington, TX
2761              Charlotte-Concord-Gastonia, NC-SC
2762              Charlotte-Concord-Gastonia, NC-SC
2763                Dallas-Fort Worth-Arlington, TX
2764        Miami-Fort Lauderdale-Pompano Beach, FL
2765                      Phoenix-Mesa-Chandler, AZ
2766             Chicago-Naperville-Elgin, IL-IN-WI
2767                 Boston-Cambridge-Newton, MA-NH
2768                        Buffalo-Cheektowaga, NY
2769                  Baltimore-Columbia-Towson, MD
2770                           Cincinnati, OH-KY-IN
2771                Dallas-Fort Worth-Arlington, TX
2772                                   Key West, FL
2773        Miami-Fort Lauderdale-Pompano Beach, FL
2774             Los Angeles-Long Beach-Anaheim, CA
2775        Miami-Fort Lauderdale-Pompano Beach, FL
2776                      Phoenix-Mesa-Chandler, AZ
2777                      Cape Coral-Fort Myers, FL
2778             San Francisco-Oakland-Berkeley, CA
2779                               St. Louis, MO-IL
2780                                   Syracuse, NY
2781                Dallas-Fort Worth-Arlington, TX
2782                Dallas-Fort Worth-Arlington, TX
2783              North Port-Sarasota-Bradenton, FL
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2785 Nashville-Davidson--Murfreesboro--Franklin, TN
2786                                 Boise City, ID
2787             Los Angeles-Long Beach-Anaheim, CA
2788                           Colorado Springs, CO
2789                           Cincinnati, OH-KY-IN
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV
2791                                 Jackson, WY-ID
2792       Little Rock-North Little Rock-Conway, AR
2793                             Kansas City, MO-KS
2794                  Orlando-Kissimmee-Sanford, FL
2795        Miami-Fort Lauderdale-Pompano Beach, FL
2796                                 Pittsburgh, PA
2797             San Diego-Chula Vista-Carlsbad, CA
2798                                   Savannah, GA
2799                    San Juan-Bayamón-Caguas, PR
2800                Sacramento-Roseville-Folsom, CA
2801             Los Angeles-Long Beach-Anaheim, CA
2802                Dallas-Fort Worth-Arlington, TX
2803              Charlotte-Concord-Gastonia, NC-SC
2804              Charlotte-Concord-Gastonia, NC-SC
2805             Los Angeles-Long Beach-Anaheim, CA
2806                Dallas-Fort Worth-Arlington, TX
2807                Dallas-Fort Worth-Arlington, TX
2808        Miami-Fort Lauderdale-Pompano Beach, FL
2809                Dallas-Fort Worth-Arlington, TX
2810        Miami-Fort Lauderdale-Pompano Beach, FL
2811        Miami-Fort Lauderdale-Pompano Beach, FL
2812              Charlotte-Concord-Gastonia, NC-SC
2813                Dallas-Fort Worth-Arlington, TX
2814                Dallas-Fort Worth-Arlington, TX
2815               Austin-Round Rock-Georgetown, TX
2816              Charlotte-Concord-Gastonia, NC-SC
2817              Charlotte-Concord-Gastonia, NC-SC
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV
2819                Dallas-Fort Worth-Arlington, TX
2820                Dallas-Fort Worth-Arlington, TX
2821                Dallas-Fort Worth-Arlington, TX
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2823              Charlotte-Concord-Gastonia, NC-SC
2824              Charlotte-Concord-Gastonia, NC-SC
2825              Charlotte-Concord-Gastonia, NC-SC
2826                      Phoenix-Mesa-Chandler, AZ
2827                Dallas-Fort Worth-Arlington, TX
2828        Miami-Fort Lauderdale-Pompano Beach, FL
2829                               Raleigh-Cary, NC
2830 Nashville-Davidson--Murfreesboro--Franklin, TN
2831                Charleston-North Charleston, SC
2832              Charlotte-Concord-Gastonia, NC-SC
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV
2834                Dallas-Fort Worth-Arlington, TX
2835                               Jacksonville, FL
2836                    Seattle-Tacoma-Bellevue, WA
2837                      Phoenix-Mesa-Chandler, AZ
2838              Charlotte-Concord-Gastonia, NC-SC
2839                Dallas-Fort Worth-Arlington, TX
2840        Miami-Fort Lauderdale-Pompano Beach, FL
2841                                     Tucson, AZ
2842                Dallas-Fort Worth-Arlington, TX
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2844                Dallas-Fort Worth-Arlington, TX
2845              Charlotte-Concord-Gastonia, NC-SC
2846              Charlotte-Concord-Gastonia, NC-SC
2847                  Orlando-Kissimmee-Sanford, FL
2848                                    Madison, WI
2849                Dallas-Fort Worth-Arlington, TX
2850                Dallas-Fort Worth-Arlington, TX
2851                      Phoenix-Mesa-Chandler, AZ
2852              Charlotte-Concord-Gastonia, NC-SC
2853                Dallas-Fort Worth-Arlington, TX
2854        Miami-Fort Lauderdale-Pompano Beach, FL
2855                Dallas-Fort Worth-Arlington, TX
2856                Dallas-Fort Worth-Arlington, TX
2857        Miami-Fort Lauderdale-Pompano Beach, FL
2858             Chicago-Naperville-Elgin, IL-IN-WI
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2860        Miami-Fort Lauderdale-Pompano Beach, FL
2861                Dallas-Fort Worth-Arlington, TX
2862                Dallas-Fort Worth-Arlington, TX
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2865                Dallas-Fort Worth-Arlington, TX
2866                Dallas-Fort Worth-Arlington, TX
2867                 Boston-Cambridge-Newton, MA-NH
2868              Charlotte-Concord-Gastonia, NC-SC
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2870             Chicago-Naperville-Elgin, IL-IN-WI
2871                    Seattle-Tacoma-Bellevue, WA
2872                    Seattle-Tacoma-Bellevue, WA
2873                    Seattle-Tacoma-Bellevue, WA
2874                    Seattle-Tacoma-Bellevue, WA
2875                    Seattle-Tacoma-Bellevue, WA
2876                    Seattle-Tacoma-Bellevue, WA
2877                                           <NA>
2878                                     Juneau, AK
2879             San Diego-Chula Vista-Carlsbad, CA
2880                    Seattle-Tacoma-Bellevue, WA
2881                                Albuquerque, NM
2882                  Orlando-Kissimmee-Sanford, FL
2883                    Seattle-Tacoma-Bellevue, WA
2884             Los Angeles-Long Beach-Anaheim, CA
2885                                   Columbus, OH
2886                           Cincinnati, OH-KY-IN
2887               Indianapolis-Carmel-Anderson, IN
2888                         Milwaukee-Waukesha, WI
2889                    Kahului-Wailuku-Lahaina, HI
2890                              Oklahoma City, OK
2891                    Omaha-Council Bluffs, NE-IA
2892                               Raleigh-Cary, NC
2893                  San Antonio-New Braunfels, TX
2894                               St. Louis, MO-IL
2895                                     Tucson, AZ
2896                             Urban Honolulu, HI
2897             Los Angeles-Long Beach-Anaheim, CA
2898        Miami-Fort Lauderdale-Pompano Beach, FL
2899                      Cape Coral-Fort Myers, FL
2900                                   Key West, FL
2901                  San Antonio-New Braunfels, TX
2902                                   Savannah, GA
2903                  Orlando-Kissimmee-Sanford, FL
2904                 Boston-Cambridge-Newton, MA-NH
2905             Los Angeles-Long Beach-Anaheim, CA
2906                 Boston-Cambridge-Newton, MA-NH
2907                 Boston-Cambridge-Newton, MA-NH
2908                    San Juan-Bayamón-Caguas, PR
2909                                           <NA>
2910                                           <NA>
2911                               Jacksonville, FL
2912                      Providence-Warwick, RI-MA
2913             San Diego-Chula Vista-Carlsbad, CA
2914                    San Juan-Bayamón-Caguas, PR
2915                             Salt Lake City, UT
2916                  Orlando-Kissimmee-Sanford, FL
2917            Tampa-St. Petersburg-Clearwater, FL
2918          New York-Newark-Jersey City, NY-NJ-PA
2919                 Boston-Cambridge-Newton, MA-NH
2920        Miami-Fort Lauderdale-Pompano Beach, FL
2921             Los Angeles-Long Beach-Anaheim, CA
2922          New York-Newark-Jersey City, NY-NJ-PA
2923                          Aguadilla-Isabela, PR
2924                                   Key West, FL
2925           Houston-The Woodlands-Sugar Land, TX
2926                  San Antonio-New Braunfels, TX
2927              North Port-Sarasota-Bradenton, FL
2928                      Providence-Warwick, RI-MA
2929          Hartford-East Hartford-Middletown, CT
2930          Hartford-East Hartford-Middletown, CT
2931                 Boston-Cambridge-Newton, MA-NH
2932          New York-Newark-Jersey City, NY-NJ-PA
2933                      Providence-Warwick, RI-MA
2934                  Orlando-Kissimmee-Sanford, FL
2935        Miami-Fort Lauderdale-Pompano Beach, FL
2936             Los Angeles-Long Beach-Anaheim, CA
2937                  Orlando-Kissimmee-Sanford, FL
2938          New York-Newark-Jersey City, NY-NJ-PA
2939          New York-Newark-Jersey City, NY-NJ-PA
2940        Miami-Fort Lauderdale-Pompano Beach, FL
2941                 Boston-Cambridge-Newton, MA-NH
2942          New York-Newark-Jersey City, NY-NJ-PA
2943                               Raleigh-Cary, NC
2944          New York-Newark-Jersey City, NY-NJ-PA
2945          New York-Newark-Jersey City, NY-NJ-PA
2946                             Salt Lake City, UT
2947                        Buffalo-Cheektowaga, NY
2948                Charleston-North Charleston, SC
2949                      Grand Rapids-Kentwood, MI
2950          New York-Newark-Jersey City, NY-NJ-PA
2951                      Providence-Warwick, RI-MA
2952              North Port-Sarasota-Bradenton, FL
2953        Minneapolis-St. Paul-Bloomington, MN-WI
2954                    Detroit-Warren-Dearborn, MI
2955                             Salt Lake City, UT
2956           Atlanta-Sandy Springs-Alpharetta, GA
2957           Atlanta-Sandy Springs-Alpharetta, GA
2958                             Salt Lake City, UT
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV
2960        Minneapolis-St. Paul-Bloomington, MN-WI
2961        Minneapolis-St. Paul-Bloomington, MN-WI
2962        Minneapolis-St. Paul-Bloomington, MN-WI
2963                    Detroit-Warren-Dearborn, MI
2964                    Detroit-Warren-Dearborn, MI
2965           Atlanta-Sandy Springs-Alpharetta, GA
2966           Atlanta-Sandy Springs-Alpharetta, GA
2967           Atlanta-Sandy Springs-Alpharetta, GA
2968           Atlanta-Sandy Springs-Alpharetta, GA
2969                    Detroit-Warren-Dearborn, MI
2970          New York-Newark-Jersey City, NY-NJ-PA
2971        Minneapolis-St. Paul-Bloomington, MN-WI
2972                           Cincinnati, OH-KY-IN
2973                             Salt Lake City, UT
2974                             Salt Lake City, UT
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV
2976           Atlanta-Sandy Springs-Alpharetta, GA
2977                    Detroit-Warren-Dearborn, MI
2978                               Cedar Rapids, IA
2979                                   Fargo, ND-MN
2980                               Raleigh-Cary, NC
2981             Fayetteville-Springdale-Rogers, AR
2982        Miami-Fort Lauderdale-Pompano Beach, FL
2983                               Raleigh-Cary, NC
2984       Little Rock-North Little Rock-Conway, AR
2985                  Orlando-Kissimmee-Sanford, FL
2986                    Portland-South Portland, ME
2987                                   Syracuse, NY
2988               Las Vegas-Henderson-Paradise, NV
2989                          Trenton-Princeton, NJ
2990                  Orlando-Kissimmee-Sanford, FL
2991                      Cape Coral-Fort Myers, FL
2992                     Denver-Aurora-Lakewood, CO
2993                     Denver-Aurora-Lakewood, CO
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV
2995             Chicago-Naperville-Elgin, IL-IN-WI
2996                                Spartanburg, SC
2997     Virginia Beach-Norfolk-Newport News, VA-NC
2998          New York-Newark-Jersey City, NY-NJ-PA
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV
3000                Dallas-Fort Worth-Arlington, TX
3001        Miami-Fort Lauderdale-Pompano Beach, FL
3002                Dallas-Fort Worth-Arlington, TX
3003                Dallas-Fort Worth-Arlington, TX
3004                Dallas-Fort Worth-Arlington, TX
3005               Indianapolis-Carmel-Anderson, IN
3006                                  Asheville, NC
3007                                Bakersfield, CA
3008                          Birmingham-Hoover, AL
3009                                Garden City, KS
3010                                     Laredo, TX
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3012         Crestview-Fort Walton Beach-Destin, FL
3013        Miami-Fort Lauderdale-Pompano Beach, FL
3014                           Cincinnati, OH-KY-IN
3015                                   Savannah, GA
3016                                  Knoxville, TN
3017                                   Columbus, OH
3018                              Evansville, IN-KY
3019       Little Rock-North Little Rock-Conway, AR
3020                  San Antonio-New Braunfels, TX
3021               Austin-Round Rock-Georgetown, TX
3022        Miami-Fort Lauderdale-Pompano Beach, FL
3023                Dallas-Fort Worth-Arlington, TX
3024                  Orlando-Kissimmee-Sanford, FL
3025                  Orlando-Kissimmee-Sanford, FL
3026             Los Angeles-Long Beach-Anaheim, CA
3027               Indianapolis-Carmel-Anderson, IN
3028                         Milwaukee-Waukesha, WI
3029             Los Angeles-Long Beach-Anaheim, CA
3030             Los Angeles-Long Beach-Anaheim, CA
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3033                                Panama City, FL
3034                         Milwaukee-Waukesha, WI
3035                                Tallahassee, FL
3036         Crestview-Fort Walton Beach-Destin, FL
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3038                 Augusta-Richmond County, GA-SC
3039                    Albany-Schenectady-Troy, NY
3040                 Des Moines-West Des Moines, IA
3041                                 Huntsville, AL
3042                                 Montgomery, AL
3043                    Portland-South Portland, ME
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3046              Charlotte-Concord-Gastonia, NC-SC
3047              Charlotte-Concord-Gastonia, NC-SC
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV
3049              Charlotte-Concord-Gastonia, NC-SC
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV
3051                           Cincinnati, OH-KY-IN
3052                Dallas-Fort Worth-Arlington, TX
3053           Riverside-San Bernardino-Ontario, CA
3054                     Denver-Aurora-Lakewood, CO
3055                     Denver-Aurora-Lakewood, CO
3056             San Francisco-Oakland-Berkeley, CA
3057                               Jacksonville, FL
3058           Riverside-San Bernardino-Ontario, CA
3059                                   Savannah, GA
3060                                    Lubbock, TX
3061                       Kingsport-Bristol, TN-VA
3062                      Providence-Warwick, RI-MA
3063                Dallas-Fort Worth-Arlington, TX
3064                    Seattle-Tacoma-Bellevue, WA
3065           Houston-The Woodlands-Sugar Land, TX
3066                     Denver-Aurora-Lakewood, CO
3067                              Oklahoma City, OK
3068                                     Fresno, CA
3069                                    Medford, OR
3070           Houston-The Woodlands-Sugar Land, TX
3071           Houston-The Woodlands-Sugar Land, TX
3072                                   Columbus, OH
3073                              Oklahoma City, OK
3074                    Detroit-Warren-Dearborn, MI
3075                      Phoenix-Mesa-Chandler, AZ
3076             Chicago-Naperville-Elgin, IL-IN-WI
3077             Chicago-Naperville-Elgin, IL-IN-WI
3078                             Kansas City, MO-KS
3079                         Eugene-Springfield, OR
3080                                    Medford, OR
3081           Riverside-San Bernardino-Ontario, CA
3082                  Santa Maria-Santa Barbara, CA
3083                 Des Moines-West Des Moines, IA
3084                             Salt Lake City, UT
3085           Houston-The Woodlands-Sugar Land, TX
3086                    Seattle-Tacoma-Bellevue, WA
3087                                  Fairbanks, AK
3088                                  Anchorage, AK
3089                    Seattle-Tacoma-Bellevue, WA
3090           Riverside-San Bernardino-Ontario, CA
3091                                Walla Walla, WA
3092             San Francisco-Oakland-Berkeley, CA
3093          New York-Newark-Jersey City, NY-NJ-PA
3094             Chicago-Naperville-Elgin, IL-IN-WI
3095             Chicago-Naperville-Elgin, IL-IN-WI
3096             Chicago-Naperville-Elgin, IL-IN-WI
3097           Houston-The Woodlands-Sugar Land, TX
3098                                 Pittsburgh, PA
3099             San Jose-Sunnyvale-Santa Clara, CA
3100                          Aguadilla-Isabela, PR
3101             Los Angeles-Long Beach-Anaheim, CA
3102               Austin-Round Rock-Georgetown, TX
3103                      Cape Coral-Fort Myers, FL
3104                   McAllen-Edinburg-Mission, TX
3105            Portland-Vancouver-Hillsboro, OR-WA
3106             San Diego-Chula Vista-Carlsbad, CA
3107             San Jose-Sunnyvale-Santa Clara, CA
3108                Sacramento-Roseville-Folsom, CA
3109             Los Angeles-Long Beach-Anaheim, CA
3110           Houston-The Woodlands-Sugar Land, TX
3111             San Francisco-Oakland-Berkeley, CA
3112                  Baltimore-Columbia-Towson, MD
3113                           Cleveland-Elyria, OH
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV
3116           Houston-The Woodlands-Sugar Land, TX
3117                     Denver-Aurora-Lakewood, CO
3118                     Denver-Aurora-Lakewood, CO
3119           Houston-The Woodlands-Sugar Land, TX
3120                     Denver-Aurora-Lakewood, CO
3121             San Francisco-Oakland-Berkeley, CA
3122             San Diego-Chula Vista-Carlsbad, CA
3123                                Albuquerque, NM
3124                                    Lubbock, TX
3125               Las Vegas-Henderson-Paradise, NV
3126                               St. Louis, MO-IL
3127             San Francisco-Oakland-Berkeley, CA
3128                Sacramento-Roseville-Folsom, CA
3129 Nashville-Davidson--Murfreesboro--Franklin, TN
3130            Tampa-St. Petersburg-Clearwater, FL
3131                    Albany-Schenectady-Troy, NY
3132               Austin-Round Rock-Georgetown, TX
3133                                   Columbus, OH
3134                Dallas-Fort Worth-Arlington, TX
3135                             Kansas City, MO-KS
3136                          Manchester-Nashua, NH
3137                                   Syracuse, NY
3138                         Milwaukee-Waukesha, WI
3139        Miami-Fort Lauderdale-Pompano Beach, FL
3140                  San Antonio-New Braunfels, TX
3141                Dallas-Fort Worth-Arlington, TX
3142        Miami-Fort Lauderdale-Pompano Beach, FL
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3144               Indianapolis-Carmel-Anderson, IN
3145                              Memphis, TN-MS-AR
3146        Miami-Fort Lauderdale-Pompano Beach, FL
3147                         Milwaukee-Waukesha, WI
3148             San Diego-Chula Vista-Carlsbad, CA
3149                                   Savannah, GA
3150              North Port-Sarasota-Bradenton, FL
3151                      Cape Coral-Fort Myers, FL
3152           Houston-The Woodlands-Sugar Land, TX
3153                             Kansas City, MO-KS
3154                           Colorado Springs, CO
3155                                   Montrose, CO
3156          New York-Newark-Jersey City, NY-NJ-PA
3157                                Albuquerque, NM
3158                             Corpus Christi, TX
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV
3160                                    Jackson, MS
3161                  Orlando-Kissimmee-Sanford, FL
3162                                     Fresno, CA
3163                              Oklahoma City, OK
3164               Las Vegas-Henderson-Paradise, NV
3165           Houston-The Woodlands-Sugar Land, TX
3166                Dallas-Fort Worth-Arlington, TX
3167                               St. Louis, MO-IL
3168               Las Vegas-Henderson-Paradise, NV
3169           Houston-The Woodlands-Sugar Land, TX
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV
3171                  San Antonio-New Braunfels, TX
3172           Houston-The Woodlands-Sugar Land, TX
3173          New York-Newark-Jersey City, NY-NJ-PA
3174                    Detroit-Warren-Dearborn, MI
3175                          Manchester-Nashua, NH
3176                                   Savannah, GA
3177                                Albuquerque, NM
3178          Hartford-East Hartford-Middletown, CT
3179             Los Angeles-Long Beach-Anaheim, CA
3180                  San Antonio-New Braunfels, TX
3181            Tampa-St. Petersburg-Clearwater, FL
3182        Miami-Fort Lauderdale-Pompano Beach, FL
3183 Nashville-Davidson--Murfreesboro--Franklin, TN
3184           Houston-The Woodlands-Sugar Land, TX
3185                             Kansas City, MO-KS
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV
3187 Nashville-Davidson--Murfreesboro--Franklin, TN
3188                              Oklahoma City, OK
3189                                    Wichita, KS
3190               Indianapolis-Carmel-Anderson, IN
3191            Tampa-St. Petersburg-Clearwater, FL
3192             San Francisco-Oakland-Berkeley, CA
3193             Chicago-Naperville-Elgin, IL-IN-WI
3194        Miami-Fort Lauderdale-Pompano Beach, FL
3195                               St. Louis, MO-IL
3196             San Francisco-Oakland-Berkeley, CA
3197             Los Angeles-Long Beach-Anaheim, CA
3198                  Baltimore-Columbia-Towson, MD
3199                                 Pittsburgh, PA
3200                                       Reno, NV
3201                Dallas-Fort Worth-Arlington, TX
3202                           Colorado Springs, CO
3203                               St. Louis, MO-IL
3204           Houston-The Woodlands-Sugar Land, TX
3205               Las Vegas-Henderson-Paradise, NV
3206               Austin-Round Rock-Georgetown, TX
3207                      Cape Coral-Fort Myers, FL
3208                                      Tulsa, OK
3209                               Raleigh-Cary, NC
3210             San Jose-Sunnyvale-Santa Clara, CA
3211          New York-Newark-Jersey City, NY-NJ-PA
3212                                 Pittsburgh, PA
3213               Indianapolis-Carmel-Anderson, IN
3214               Las Vegas-Henderson-Paradise, NV
3215                               St. Louis, MO-IL
3216           Houston-The Woodlands-Sugar Land, TX
3217           Houston-The Woodlands-Sugar Land, TX
3218                                    El Paso, TX
3219                                Tallahassee, FL
3220                      Phoenix-Mesa-Chandler, AZ
3221                                    Salinas, CA
3222                  Santa Maria-Santa Barbara, CA
3223           Houston-The Woodlands-Sugar Land, TX
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV
3225                             Kansas City, MO-KS
3226                                     Bangor, ME
3227                Charleston-North Charleston, SC
3228                                 Pittsburgh, PA
3229                               St. Louis, MO-IL
3230          New York-Newark-Jersey City, NY-NJ-PA
3231                           Cincinnati, OH-KY-IN
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV
3233                           Cleveland-Elyria, OH
3234                               Jacksonville, FL
3235                                    Roanoke, VA
3236                                  Asheville, NC
3237                                  Duluth, MN-WI
3238                                   Savannah, GA
3239                                   Columbus, OH
3240             Chicago-Naperville-Elgin, IL-IN-WI
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV
3242             Chicago-Naperville-Elgin, IL-IN-WI
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV
3244             Chicago-Naperville-Elgin, IL-IN-WI
3245             Chicago-Naperville-Elgin, IL-IN-WI
3246             Chicago-Naperville-Elgin, IL-IN-WI
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV
3248             Chicago-Naperville-Elgin, IL-IN-WI
3249                                  Knoxville, TN
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV
3251                            Charlottesville, VA
3252             Chicago-Naperville-Elgin, IL-IN-WI
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV
3254        Minneapolis-St. Paul-Bloomington, MN-WI
3255                            Gulfport-Biloxi, MS
3256        Minneapolis-St. Paul-Bloomington, MN-WI
3257                                  Rochester, NY
3258                             Chattanooga, TN-GA
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3260                                  Asheville, NC
3261                                    Roanoke, VA
3262                 Boston-Cambridge-Newton, MA-NH
3263           Houston-The Woodlands-Sugar Land, TX
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV
3265                                Panama City, FL
3266                     Denver-Aurora-Lakewood, CO
3267                Dallas-Fort Worth-Arlington, TX
3268                    San Juan-Bayamón-Caguas, PR
3269                           Cleveland-Elyria, OH
3270                                           <NA>
3271                Dallas-Fort Worth-Arlington, TX
3272             Los Angeles-Long Beach-Anaheim, CA
3273                Dallas-Fort Worth-Arlington, TX
3274                    Kahului-Wailuku-Lahaina, HI
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3276                Dallas-Fort Worth-Arlington, TX
3277             Chicago-Naperville-Elgin, IL-IN-WI
3278                           Cincinnati, OH-KY-IN
3279                Dallas-Fort Worth-Arlington, TX
3280                                       Hilo, HI
3281                    Kahului-Wailuku-Lahaina, HI
3282                                           <NA>
3283                                  Anchorage, AK
3284                                  Anchorage, AK
3285                    Seattle-Tacoma-Bellevue, WA
3286        Miami-Fort Lauderdale-Pompano Beach, FL
3287                      Cape Coral-Fort Myers, FL
3288                      Cape Coral-Fort Myers, FL
3289          New York-Newark-Jersey City, NY-NJ-PA
3290                                   Appleton, WI
3291                               Cedar Rapids, IA
3292                Sacramento-Roseville-Folsom, CA
3293                                           <NA>
3294                                           <NA>
3295                                   Savannah, GA
3296           Atlanta-Sandy Springs-Alpharetta, GA
3297           Atlanta-Sandy Springs-Alpharetta, GA
3298           Atlanta-Sandy Springs-Alpharetta, GA
3299        Minneapolis-St. Paul-Bloomington, MN-WI
3300          New York-Newark-Jersey City, NY-NJ-PA
3301                                   Key West, FL
3302                           Dayton-Kettering, OH
3303                               Texarkana, TX-AR
3304                Dallas-Fort Worth-Arlington, TX
3305                                      Akron, OH
3306         Deltona-Daytona Beach-Ormond Beach, FL
3307          New York-Newark-Jersey City, NY-NJ-PA
3308                                Tallahassee, FL
3309              Charlotte-Concord-Gastonia, NC-SC
3310                           Cleveland-Elyria, OH
3311                                   Syracuse, NY
3312                      Phoenix-Mesa-Chandler, AZ
3313                                  Kalispell, MT
3314             San Francisco-Oakland-Berkeley, CA
3315                                 Jackson, WY-ID
3316                             Urban Honolulu, HI
3317             Los Angeles-Long Beach-Anaheim, CA
3318                                    Edwards, CO
3319           Houston-The Woodlands-Sugar Land, TX
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV
3321                     Denver-Aurora-Lakewood, CO
3322 Nashville-Davidson--Murfreesboro--Franklin, TN
3323             San Diego-Chula Vista-Carlsbad, CA
3324                                Albuquerque, NM
3325             San Diego-Chula Vista-Carlsbad, CA
3326             Los Angeles-Long Beach-Anaheim, CA
3327           Riverside-San Bernardino-Ontario, CA
3328                  Orlando-Kissimmee-Sanford, FL
3329             Chicago-Naperville-Elgin, IL-IN-WI
3330                  Baltimore-Columbia-Towson, MD
3331                       New Orleans-Metairie, LA
3332             Chicago-Naperville-Elgin, IL-IN-WI
3333             San Francisco-Oakland-Berkeley, CA
3334                    San Juan-Bayamón-Caguas, PR
3335           Houston-The Woodlands-Sugar Land, TX
3336                                     Peoria, IL
3337                 Pensacola-Ferry Pass-Brent, FL
3338                                 Rapid City, SD
3339                                    Bozeman, MT
3340                Charleston-North Charleston, SC
3341     Virginia Beach-Norfolk-Newport News, VA-NC
3342                Dallas-Fort Worth-Arlington, TX
3343                Hilton Head Island-Bluffton, SC
3344                                   Appleton, WI
3345                    Omaha-Council Bluffs, NE-IA
3346          New York-Newark-Jersey City, NY-NJ-PA
3347        Miami-Fort Lauderdale-Pompano Beach, FL
3348                    San Juan-Bayamón-Caguas, PR
3349                                     Bangor, ME
3350                      Grand Rapids-Kentwood, MI
3351                                     Helena, MT
3352                    Shreveport-Bossier City, LA
3353                     Denver-Aurora-Lakewood, CO
3354                             Salt Lake City, UT
3355                    Kahului-Wailuku-Lahaina, HI
3356                                 Fort Wayne, IN
3357                      Phoenix-Mesa-Chandler, AZ
3358                                   Richmond, VA
3359            Tampa-St. Petersburg-Clearwater, FL
3360                Dallas-Fort Worth-Arlington, TX
3361                      Phoenix-Mesa-Chandler, AZ
3362                Dallas-Fort Worth-Arlington, TX
3363             Chicago-Naperville-Elgin, IL-IN-WI
3364                                           <NA>
3365                Dallas-Fort Worth-Arlington, TX
3366                                   Key West, FL
3367                                Tallahassee, FL
3368                             Salt Lake City, UT
3369        Miami-Fort Lauderdale-Pompano Beach, FL
3370                                Sioux Falls, SD
3371                Dallas-Fort Worth-Arlington, TX
3372                                   Missoula, MT
3373                 Pensacola-Ferry Pass-Brent, FL
3374                          Birmingham-Hoover, AL
3375                                   Savannah, GA
3376                                Idaho Falls, ID
3377        Minneapolis-St. Paul-Bloomington, MN-WI
3378                                 Boise City, ID
3379        Minneapolis-St. Paul-Bloomington, MN-WI
3380                           Glenwood Springs, CO
3381           Houston-The Woodlands-Sugar Land, TX
3382                             Urban Honolulu, HI
3383                                    Bozeman, MT
3384                                    Edwards, CO
3385               Austin-Round Rock-Georgetown, TX
3386             San Francisco-Oakland-Berkeley, CA
3387                      Cape Coral-Fort Myers, FL
3388             San Francisco-Oakland-Berkeley, CA
3389                  Orlando-Kissimmee-Sanford, FL
3390                Dallas-Fort Worth-Arlington, TX
3391                                Panama City, FL
3392                                 Wilmington, NC
3393                                           <NA>
3394                 Boston-Cambridge-Newton, MA-NH
3395                    Kahului-Wailuku-Lahaina, HI
3396        Minneapolis-St. Paul-Bloomington, MN-WI
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV
3398                             Urban Honolulu, HI
3399                             Urban Honolulu, HI
3400                                       Hilo, HI
3401                                   Montrose, CO
3402                                  Lafayette, LA
3403           Atlanta-Sandy Springs-Alpharetta, GA
3404           Atlanta-Sandy Springs-Alpharetta, GA
3405                              Wausau-Weston, WI
3406                 Des Moines-West Des Moines, IA
3407          New York-Newark-Jersey City, NY-NJ-PA
3408           Atlanta-Sandy Springs-Alpharetta, GA
3409        Minneapolis-St. Paul-Bloomington, MN-WI
3410           Atlanta-Sandy Springs-Alpharetta, GA
3411                    San Juan-Bayamón-Caguas, PR
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV
3413                      Phoenix-Mesa-Chandler, AZ
3414        Miami-Fort Lauderdale-Pompano Beach, FL
3415          Hartford-East Hartford-Middletown, CT
3416                                  Rochester, NY
3417             San Diego-Chula Vista-Carlsbad, CA
3418                    Seattle-Tacoma-Bellevue, WA
3419                                           <NA>
3420                                           <NA>
3421                                       Reno, NV
3422                                    Edwards, CO
3423                                     Fresno, CA
3424     Virginia Beach-Norfolk-Newport News, VA-NC
3425                               Raleigh-Cary, NC
3426                Dallas-Fort Worth-Arlington, TX
3427                Dallas-Fort Worth-Arlington, TX
3428                Dallas-Fort Worth-Arlington, TX
3429                Dallas-Fort Worth-Arlington, TX
3430               Indianapolis-Carmel-Anderson, IN
3431                      Phoenix-Mesa-Chandler, AZ
3432                Dallas-Fort Worth-Arlington, TX
3433                Dallas-Fort Worth-Arlington, TX
3434                    Seattle-Tacoma-Bellevue, WA
3435                           Cleveland-Elyria, OH
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3437             Chicago-Naperville-Elgin, IL-IN-WI
3438                Dallas-Fort Worth-Arlington, TX
3439          New York-Newark-Jersey City, NY-NJ-PA
3440                    Seattle-Tacoma-Bellevue, WA
3441                    Seattle-Tacoma-Bellevue, WA
3442             San Francisco-Oakland-Berkeley, CA
3443                                  Anchorage, AK
3444            Portland-Vancouver-Hillsboro, OR-WA
3445               Austin-Round Rock-Georgetown, TX
3446             Los Angeles-Long Beach-Anaheim, CA
3447                  Orlando-Kissimmee-Sanford, FL
3448                    Kahului-Wailuku-Lahaina, HI
3449                    Seattle-Tacoma-Bellevue, WA
3450                                       Hilo, HI
3451                                Albuquerque, NM
3452                Charleston-North Charleston, SC
3453                                     Juneau, AK
3454                                  Ketchikan, AK
3455                       New Orleans-Metairie, LA
3456                    Seattle-Tacoma-Bellevue, WA
3457                                  Anchorage, AK
3458                                       Hilo, HI
3459            Portland-Vancouver-Hillsboro, OR-WA
3460                    San Juan-Bayamón-Caguas, PR
3461                       New Orleans-Metairie, LA
3462            Portland-Vancouver-Hillsboro, OR-WA
3463           Riverside-San Bernardino-Ontario, CA
3464                               Jacksonville, FL
3465        Miami-Fort Lauderdale-Pompano Beach, FL
3466                             Vineyard Haven, MA
3467          Hartford-East Hartford-Middletown, CT
3468         Deltona-Daytona Beach-Ormond Beach, FL
3469                                    Wichita, KS
3470        Minneapolis-St. Paul-Bloomington, MN-WI
3471             San Jose-Sunnyvale-Santa Clara, CA
3472           Atlanta-Sandy Springs-Alpharetta, GA
3473                                           <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA
3475           Atlanta-Sandy Springs-Alpharetta, GA
3476           Atlanta-Sandy Springs-Alpharetta, GA
3477           Atlanta-Sandy Springs-Alpharetta, GA
3478        Minneapolis-St. Paul-Bloomington, MN-WI
3479                             Salt Lake City, UT
3480                             Salt Lake City, UT
3481                              Memphis, TN-MS-AR
3482                    Detroit-Warren-Dearborn, MI
3483             Los Angeles-Long Beach-Anaheim, CA
3484        Minneapolis-St. Paul-Bloomington, MN-WI
3485           Atlanta-Sandy Springs-Alpharetta, GA
3486                                   Billings, MT
3487                    Detroit-Warren-Dearborn, MI
3488                             Salt Lake City, UT
3489           Atlanta-Sandy Springs-Alpharetta, GA
3490             Chicago-Naperville-Elgin, IL-IN-WI
3491                Dallas-Fort Worth-Arlington, TX
3492                                   Billings, MT
3493                                Baton Rouge, LA
3494                                    Jackson, MS
3495              North Port-Sarasota-Bradenton, FL
3496        Miami-Fort Lauderdale-Pompano Beach, FL
3497                          Birmingham-Hoover, AL
3498                  Orlando-Kissimmee-Sanford, FL
3499                                Columbus, GA-AL
3500                Burlington-South Burlington, VT
3501              Charlotte-Concord-Gastonia, NC-SC
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3503         Deltona-Daytona Beach-Ormond Beach, FL
3504                     Denver-Aurora-Lakewood, CO
3505        Minneapolis-St. Paul-Bloomington, MN-WI
3506                                   Bismarck, ND
3507                             Grand Junction, CO
3508                San Luis Obispo-Paso Robles, CA
3509                                  Knoxville, TN
3510                           Glenwood Springs, CO
3511                                    Durango, CO
3512                             Grand Junction, CO
3513        Minneapolis-St. Paul-Bloomington, MN-WI
3514        Minneapolis-St. Paul-Bloomington, MN-WI
3515                    Detroit-Warren-Dearborn, MI
3516                           Cleveland-Elyria, OH
3517                                  Kalispell, MT
3518                             Salt Lake City, UT
3519                        Harrisburg-Carlisle, PA
3520                                     Hailey, ID
3521           Riverside-San Bernardino-Ontario, CA
3522                        Santa Rosa-Petaluma, CA
3523                                    Edwards, CO
3524                        Santa Rosa-Petaluma, CA
3525             Chicago-Naperville-Elgin, IL-IN-WI
3526                Dallas-Fort Worth-Arlington, TX
3527                                 Jackson, WY-ID
3528             San Diego-Chula Vista-Carlsbad, CA
3529                                   Billings, MT
3530                         Eugene-Springfield, OR
3531                                   Missoula, MT
3532                              Oklahoma City, OK
3533                    Omaha-Council Bluffs, NE-IA
3534                      Phoenix-Mesa-Chandler, AZ
3535                                 Boise City, ID
3536             San Diego-Chula Vista-Carlsbad, CA
3537                                    El Paso, TX
3538                  Santa Maria-Santa Barbara, CA
3539                                   Richmond, VA
3540                  San Antonio-New Braunfels, TX
3541                                           <NA>
3542                    San Juan-Bayamón-Caguas, PR
3543           Houston-The Woodlands-Sugar Land, TX
3544                     Denver-Aurora-Lakewood, CO
3545                     Denver-Aurora-Lakewood, CO
3546                Burlington-South Burlington, VT
3547           Houston-The Woodlands-Sugar Land, TX
3548             San Francisco-Oakland-Berkeley, CA
3549                                       Hilo, HI
3550                                      Kapaa, HI
3551                             Urban Honolulu, HI
3552             Chicago-Naperville-Elgin, IL-IN-WI
3553                     Denver-Aurora-Lakewood, CO
3554                    Seattle-Tacoma-Bellevue, WA
3555              North Port-Sarasota-Bradenton, FL
3556                                   Columbus, OH
3557                  Orlando-Kissimmee-Sanford, FL
3558             San Diego-Chula Vista-Carlsbad, CA
3559                                    El Paso, TX
3560                    Kahului-Wailuku-Lahaina, HI
3561               Austin-Round Rock-Georgetown, TX
3562                    Kahului-Wailuku-Lahaina, HI
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3564             San Diego-Chula Vista-Carlsbad, CA
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV
3566                             Kansas City, MO-KS
3567               Indianapolis-Carmel-Anderson, IN
3568                                    Midland, TX
3569                      Phoenix-Mesa-Chandler, AZ
3570               Indianapolis-Carmel-Anderson, IN
3571              Charlotte-Concord-Gastonia, NC-SC
3572                             Kansas City, MO-KS
3573              Allentown-Bethlehem-Easton, PA-NJ
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3575                        Buffalo-Cheektowaga, NY
3576                                    Durango, CO
3577           Houston-The Woodlands-Sugar Land, TX
3578                                Springfield, MO
3579             Los Angeles-Long Beach-Anaheim, CA
3580                                Bloomington, IL
3581                              Evansville, IN-KY
3582                    Detroit-Warren-Dearborn, MI
3583                                   Syracuse, NY
3584                            Charlottesville, VA
3585                                    Madison, WI
3586                                    Madison, WI
3587             Fayetteville-Springdale-Rogers, AR
3588                    Detroit-Warren-Dearborn, MI
3589           Atlanta-Sandy Springs-Alpharetta, GA
3590                Dallas-Fort Worth-Arlington, TX
3591                Dallas-Fort Worth-Arlington, TX
3592                                   Richmond, VA
3593                Dallas-Fort Worth-Arlington, TX
3594                Dallas-Fort Worth-Arlington, TX
3595               Austin-Round Rock-Georgetown, TX
3596                                    Bozeman, MT
3597                    Omaha-Council Bluffs, NE-IA
3598                      Phoenix-Mesa-Chandler, AZ
3599                Dallas-Fort Worth-Arlington, TX
3600                Dallas-Fort Worth-Arlington, TX
3601                Dallas-Fort Worth-Arlington, TX
3602                                       Hilo, HI
3603             Chicago-Naperville-Elgin, IL-IN-WI
3604                Dallas-Fort Worth-Arlington, TX
3605              Charlotte-Concord-Gastonia, NC-SC
3606                      Phoenix-Mesa-Chandler, AZ
3607               Austin-Round Rock-Georgetown, TX
3608            Portland-Vancouver-Hillsboro, OR-WA
3609            Portland-Vancouver-Hillsboro, OR-WA
3610                                  Anchorage, AK
3611                                     Tucson, AZ
3612                                       Hilo, HI
3613           Riverside-San Bernardino-Ontario, CA
3614                     Spokane-Spokane Valley, WA
3615                                           <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA
3617                                    Bozeman, MT
3618                Sacramento-Roseville-Folsom, CA
3619                                   Syracuse, NY
3620             Fayetteville-Springdale-Rogers, AR
3621                    Detroit-Warren-Dearborn, MI
3622                                 Boise City, ID
3623           Atlanta-Sandy Springs-Alpharetta, GA
3624        Miami-Fort Lauderdale-Pompano Beach, FL
3625                             Chattanooga, TN-GA
3626                      College Station-Bryan, TX
3627                              Evansville, IN-KY
3628                                     Mobile, AL
3629        Miami-Fort Lauderdale-Pompano Beach, FL
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV
3631             Louisville/Jefferson County, KY-IN
3632                Dallas-Fort Worth-Arlington, TX
3633        Miami-Fort Lauderdale-Pompano Beach, FL
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV
3635                    Omaha-Council Bluffs, NE-IA
3636                 Pensacola-Ferry Pass-Brent, FL
3637              Charlotte-Concord-Gastonia, NC-SC
3638              Charlotte-Concord-Gastonia, NC-SC
3639                                  Knoxville, TN
3640             San Francisco-Oakland-Berkeley, CA
3641                             Salt Lake City, UT
3642                    South Bend-Mishawaka, IN-MI
3643                      Grand Rapids-Kentwood, MI
3644                              Memphis, TN-MS-AR
3645     Virginia Beach-Norfolk-Newport News, VA-NC
3646             San Diego-Chula Vista-Carlsbad, CA
3647                                 Rapid City, SD
3648                           Glenwood Springs, CO
3649                     Denver-Aurora-Lakewood, CO
3650                                   Montrose, CO
3651           Riverside-San Bernardino-Ontario, CA
3652                                    Medford, OR
3653                                       Bend, OR
3654                                      Tulsa, OK
3655                    Seattle-Tacoma-Bellevue, WA
3656                  Santa Maria-Santa Barbara, CA
3657                        Santa Rosa-Petaluma, CA
3658                                 Jackson, WY-ID
3659          New York-Newark-Jersey City, NY-NJ-PA
3660            Portland-Vancouver-Hillsboro, OR-WA
3661           Houston-The Woodlands-Sugar Land, TX
3662                     Denver-Aurora-Lakewood, CO
3663          New York-Newark-Jersey City, NY-NJ-PA
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV
3665           Houston-The Woodlands-Sugar Land, TX
3666                                       Reno, NV
3667               Austin-Round Rock-Georgetown, TX
3668           Houston-The Woodlands-Sugar Land, TX
3669                         Milwaukee-Waukesha, WI
3670             San Jose-Sunnyvale-Santa Clara, CA
3671                    Kahului-Wailuku-Lahaina, HI
3672                                Albuquerque, NM
3673                                      Kapaa, HI
3674                                 Pittsburgh, PA
3675               Las Vegas-Henderson-Paradise, NV
3676             Chicago-Naperville-Elgin, IL-IN-WI
3677                                       Hilo, HI
3678                  San Antonio-New Braunfels, TX
3679                                 Huntsville, AL
3680                      Phoenix-Mesa-Chandler, AZ
3681                      Phoenix-Mesa-Chandler, AZ
3682                      Grand Rapids-Kentwood, MI
3683                                Spartanburg, SC
3684                Dallas-Fort Worth-Arlington, TX
3685           Houston-The Woodlands-Sugar Land, TX
3686                           Cleveland-Elyria, OH
3687                                   Savannah, GA
3688                    South Bend-Mishawaka, IN-MI
3689          New York-Newark-Jersey City, NY-NJ-PA
3690          Hartford-East Hartford-Middletown, CT
3691                           Dayton-Kettering, OH
3692                                     Mobile, AL
3693                                  Knoxville, TN
3694                           Dayton-Kettering, OH
3695     Virginia Beach-Norfolk-Newport News, VA-NC
3696                                  Knoxville, TN
3697           Houston-The Woodlands-Sugar Land, TX
3698                                   Columbia, SC
3699          New York-Newark-Jersey City, NY-NJ-PA
3700                Dallas-Fort Worth-Arlington, TX
3701                Dallas-Fort Worth-Arlington, TX
3702                 Des Moines-West Des Moines, IA
3703             San Diego-Chula Vista-Carlsbad, CA
3704                Dallas-Fort Worth-Arlington, TX
3705                Charleston-North Charleston, SC
3706                                   Key West, FL
3707                                Spartanburg, SC
3708                                           <NA>
3709                             Urban Honolulu, HI
3710               Indianapolis-Carmel-Anderson, IN
3711                              Oklahoma City, OK
3712                  San Antonio-New Braunfels, TX
3713                  Santa Maria-Santa Barbara, CA
3714                Dallas-Fort Worth-Arlington, TX
3715                                 Jackson, WY-ID
3716             Los Angeles-Long Beach-Anaheim, CA
3717             Chicago-Naperville-Elgin, IL-IN-WI
3718             Chicago-Naperville-Elgin, IL-IN-WI
3719          Hartford-East Hartford-Middletown, CT
3720        Miami-Fort Lauderdale-Pompano Beach, FL
3721                Dallas-Fort Worth-Arlington, TX
3722               Austin-Round Rock-Georgetown, TX
3723              Charlotte-Concord-Gastonia, NC-SC
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3725                                           <NA>
3726                                     Juneau, AK
3727                                  Anchorage, AK
3728                                  Rochester, NY
3729        Miami-Fort Lauderdale-Pompano Beach, FL
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV
3731          New York-Newark-Jersey City, NY-NJ-PA
3732                                    Madison, WI
3733                    Detroit-Warren-Dearborn, MI
3734                      Providence-Warwick, RI-MA
3735                                   Syracuse, NY
3736                                  Lafayette, LA
3737                                Tallahassee, FL
3738        Miami-Fort Lauderdale-Pompano Beach, FL
3739                  Orlando-Kissimmee-Sanford, FL
3740              Charlotte-Concord-Gastonia, NC-SC
3741                               Cedar Rapids, IA
3742                              Memphis, TN-MS-AR
3743                        Buffalo-Cheektowaga, NY
3744                      Grand Rapids-Kentwood, MI
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV
3747                                  Manhattan, KS
3748                                     Tucson, AZ
3749                                   Montrose, CO
3750                     Denver-Aurora-Lakewood, CO
3751                     Scranton--Wilkes-Barre, PA
3752                                   Syracuse, NY
3753                                 Jackson, WY-ID
3754                                    Roswell, NM
3755                     Denver-Aurora-Lakewood, CO
3756                                    Bozeman, MT
3757                             Grand Junction, CO
3758                                  Anchorage, AK
3759             Chicago-Naperville-Elgin, IL-IN-WI
3760           Houston-The Woodlands-Sugar Land, TX
3761                Sacramento-Roseville-Folsom, CA
3762                                Albuquerque, NM
3763                             Urban Honolulu, HI
3764                               Raleigh-Cary, NC
3765                  Baltimore-Columbia-Towson, MD
3766             San Diego-Chula Vista-Carlsbad, CA
3767             San Jose-Sunnyvale-Santa Clara, CA
3768                                Albuquerque, NM
3769              North Port-Sarasota-Bradenton, FL
3770                    Albany-Schenectady-Troy, NY
3771                     Denver-Aurora-Lakewood, CO
3772            Tampa-St. Petersburg-Clearwater, FL
3773                             Salt Lake City, UT
3774                          Birmingham-Hoover, AL
3775                                   Columbus, OH
3776             Louisville/Jefferson County, KY-IN
3777                        Buffalo-Cheektowaga, NY
3778                  San Antonio-New Braunfels, TX
3779                      Phoenix-Mesa-Chandler, AZ
3780                                   Columbus, OH
3781            Portland-Vancouver-Hillsboro, OR-WA
3782                  Orlando-Kissimmee-Sanford, FL
3783            Tampa-St. Petersburg-Clearwater, FL
3784            Tampa-St. Petersburg-Clearwater, FL
3785                Dallas-Fort Worth-Arlington, TX
3786             Chicago-Naperville-Elgin, IL-IN-WI
3787                        Buffalo-Cheektowaga, NY
3788             Louisville/Jefferson County, KY-IN
3789        Miami-Fort Lauderdale-Pompano Beach, FL
3790                Dallas-Fort Worth-Arlington, TX
3791           Houston-The Woodlands-Sugar Land, TX
3792                               St. Louis, MO-IL
3793                Sacramento-Roseville-Folsom, CA
3794                               Cedar Rapids, IA
3795                                   Fargo, ND-MN
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV
3797           Houston-The Woodlands-Sugar Land, TX
3798                               Cedar Rapids, IA
3799                                   Fargo, ND-MN
3800                      Grand Rapids-Kentwood, MI
3801                           Dayton-Kettering, OH
3802                                 Pittsburgh, PA
3803                                    Roanoke, VA
3804                                 Huntsville, AL
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3807             Chicago-Naperville-Elgin, IL-IN-WI
3808              Charlotte-Concord-Gastonia, NC-SC
3809          New York-Newark-Jersey City, NY-NJ-PA
3810                  Orlando-Kissimmee-Sanford, FL
3811          New York-Newark-Jersey City, NY-NJ-PA
3812                               Worcester, MA-CT
3813                               Worcester, MA-CT
3814        Miami-Fort Lauderdale-Pompano Beach, FL
3815          New York-Newark-Jersey City, NY-NJ-PA
3816                                           <NA>
3817                    San Juan-Bayamón-Caguas, PR
3818           Atlanta-Sandy Springs-Alpharetta, GA
3819                  Orlando-Kissimmee-Sanford, FL
3820                      Cape Coral-Fort Myers, FL
3821                                Sioux Falls, SD
3822                      Brownsville-Harlingen, TX
3823           Riverside-San Bernardino-Ontario, CA
3824               Las Vegas-Henderson-Paradise, NV
3825               Las Vegas-Henderson-Paradise, NV
3826               Las Vegas-Henderson-Paradise, NV
3827                  Orlando-Kissimmee-Sanford, FL
3828                  Orlando-Kissimmee-Sanford, FL
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3830                      Cape Coral-Fort Myers, FL
3831                               St. Louis, MO-IL
3832                           Cleveland-Elyria, OH
3833           Riverside-San Bernardino-Ontario, CA
3834                          Trenton-Princeton, NJ
3835          New York-Newark-Jersey City, NY-NJ-PA
3836                  Orlando-Kissimmee-Sanford, FL
3837                      Cape Coral-Fort Myers, FL
3838          Hartford-East Hartford-Middletown, CT
3839                          Trenton-Princeton, NJ
3840          New York-Newark-Jersey City, NY-NJ-PA
3841                  Orlando-Kissimmee-Sanford, FL
3842            Tampa-St. Petersburg-Clearwater, FL
3843            Tampa-St. Petersburg-Clearwater, FL
3844                      Grand Rapids-Kentwood, MI
3845           Atlanta-Sandy Springs-Alpharetta, GA
3846             Chicago-Naperville-Elgin, IL-IN-WI
3847        Miami-Fort Lauderdale-Pompano Beach, FL
3848            Tampa-St. Petersburg-Clearwater, FL
3849        Miami-Fort Lauderdale-Pompano Beach, FL
3850        Miami-Fort Lauderdale-Pompano Beach, FL
3851            Tampa-St. Petersburg-Clearwater, FL
3852                      Cape Coral-Fort Myers, FL
3853             Los Angeles-Long Beach-Anaheim, CA
3854                    Atlantic City-Hammonton, NJ
3855             Louisville/Jefferson County, KY-IN
3856                 Pensacola-Ferry Pass-Brent, FL
3857                           Cleveland-Elyria, OH
3858                                 Pittsburgh, PA
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3861                    Atlantic City-Hammonton, NJ
3862                          Manchester-Nashua, NH
3863                                           <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA
3865                                 Pittsburgh, PA
3866          New York-Newark-Jersey City, NY-NJ-PA
3867                  Orlando-Kissimmee-Sanford, FL
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3870                    Atlantic City-Hammonton, NJ
3871                                 Pittsburgh, PA
3872        Miami-Fort Lauderdale-Pompano Beach, FL
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV
3874                                    Salinas, CA
3875                                Bakersfield, CA
3876                                   Billings, MT
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV
3878                             Kansas City, MO-KS
3879           Houston-The Woodlands-Sugar Land, TX
3880             Chicago-Naperville-Elgin, IL-IN-WI
3881                             Urban Honolulu, HI
3882                              Oklahoma City, OK
3883          New York-Newark-Jersey City, NY-NJ-PA
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV
3885        Minneapolis-St. Paul-Bloomington, MN-WI
3886                                  Asheville, NC
3887               Indianapolis-Carmel-Anderson, IN
3888        Miami-Fort Lauderdale-Pompano Beach, FL
3889        Minneapolis-St. Paul-Bloomington, MN-WI
3890        Minneapolis-St. Paul-Bloomington, MN-WI
3891                                    Lubbock, TX
3892                                           <NA>
3893                                    Edwards, CO
3894            Portland-Vancouver-Hillsboro, OR-WA
3895                             Salt Lake City, UT
3896                                   Richmond, VA
3897                                       Hilo, HI
3898                               St. Louis, MO-IL
3899                                  Rochester, MN
3900                                  Green Bay, WI
3901                             Kansas City, MO-KS
3902                              Oklahoma City, OK
3903              North Port-Sarasota-Bradenton, FL
3904             Fayetteville-Springdale-Rogers, AR
3905                 Des Moines-West Des Moines, IA
3906                                           <NA>
3907                                  Anchorage, AK
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV
3909          New York-Newark-Jersey City, NY-NJ-PA
3910          New York-Newark-Jersey City, NY-NJ-PA
3911                           Cincinnati, OH-KY-IN
3912                                    El Paso, TX
3913                                  Rochester, NY
3914                           Cincinnati, OH-KY-IN
3915                             Salt Lake City, UT
3916        Minneapolis-St. Paul-Bloomington, MN-WI
3917     Virginia Beach-Norfolk-Newport News, VA-NC
3918                Dallas-Fort Worth-Arlington, TX
3919                Dallas-Fort Worth-Arlington, TX
3920              Charlotte-Concord-Gastonia, NC-SC
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV
3922     Virginia Beach-Norfolk-Newport News, VA-NC
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3924                                Spartanburg, SC
3925                                    Madison, WI
3926     Virginia Beach-Norfolk-Newport News, VA-NC
3927                     Denver-Aurora-Lakewood, CO
3928                           Glenwood Springs, CO
3929                                  Kalispell, MT
3930                                    Medford, OR
3931                                      Minot, ND
3932                                Idaho Falls, ID
3933                                   Santa Fe, NM
3934                                    Medford, OR
3935             San Francisco-Oakland-Berkeley, CA
3936             Los Angeles-Long Beach-Anaheim, CA
3937                     Denver-Aurora-Lakewood, CO
3938           Houston-The Woodlands-Sugar Land, TX
3939               Indianapolis-Carmel-Anderson, IN
3940             Los Angeles-Long Beach-Anaheim, CA
3941               Las Vegas-Henderson-Paradise, NV
3942                      Phoenix-Mesa-Chandler, AZ
3943                               Jacksonville, FL
3944           Houston-The Woodlands-Sugar Land, TX
3945                Dallas-Fort Worth-Arlington, TX
3946                          Steamboat Springs, CO
3947                               Raleigh-Cary, NC
3948                      Cape Coral-Fort Myers, FL
3949                                      Tulsa, OK
3950           Houston-The Woodlands-Sugar Land, TX
3951                      Phoenix-Mesa-Chandler, AZ
3952                      Phoenix-Mesa-Chandler, AZ
3953                                Bloomington, IL
3954        Miami-Fort Lauderdale-Pompano Beach, FL
3955                Hilton Head Island-Bluffton, SC
3956          New York-Newark-Jersey City, NY-NJ-PA
3957                                   Key West, FL
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV
3959                         Milwaukee-Waukesha, WI
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV
3961           Atlanta-Sandy Springs-Alpharetta, GA
3962                Dallas-Fort Worth-Arlington, TX
3963              Charlotte-Concord-Gastonia, NC-SC
3964              Charlotte-Concord-Gastonia, NC-SC
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV
3967                Dallas-Fort Worth-Arlington, TX
3968               Austin-Round Rock-Georgetown, TX
3969          New York-Newark-Jersey City, NY-NJ-PA
3970        Miami-Fort Lauderdale-Pompano Beach, FL
3971                                      Tulsa, OK
3972                Dallas-Fort Worth-Arlington, TX
3973             Chicago-Naperville-Elgin, IL-IN-WI
3974                      Phoenix-Mesa-Chandler, AZ
3975              Charlotte-Concord-Gastonia, NC-SC
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3978              Charlotte-Concord-Gastonia, NC-SC
3979              Charlotte-Concord-Gastonia, NC-SC
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV
3981             Chicago-Naperville-Elgin, IL-IN-WI
3982                                   Columbus, OH
3983                Dallas-Fort Worth-Arlington, TX
3984              Charlotte-Concord-Gastonia, NC-SC
3985              Charlotte-Concord-Gastonia, NC-SC
3986                    Seattle-Tacoma-Bellevue, WA
3987            Portland-Vancouver-Hillsboro, OR-WA
3988            Portland-Vancouver-Hillsboro, OR-WA
3989                        Buffalo-Cheektowaga, NY
3990          New York-Newark-Jersey City, NY-NJ-PA
3991        Miami-Fort Lauderdale-Pompano Beach, FL
3992          New York-Newark-Jersey City, NY-NJ-PA
3993             Louisville/Jefferson County, KY-IN
3994                    Detroit-Warren-Dearborn, MI
3995                    Detroit-Warren-Dearborn, MI
3996        Minneapolis-St. Paul-Bloomington, MN-WI
3997           Atlanta-Sandy Springs-Alpharetta, GA
3998                           Cincinnati, OH-KY-IN
3999                    Detroit-Warren-Dearborn, MI
4000                    Detroit-Warren-Dearborn, MI
4001                    San Juan-Bayamón-Caguas, PR
4002                                   Syracuse, NY
4003                                      Tulsa, OK
4004             San Diego-Chula Vista-Carlsbad, CA
4005             Los Angeles-Long Beach-Anaheim, CA
4006                      Cape Coral-Fort Myers, FL
4007                Sacramento-Roseville-Folsom, CA
4008            Davenport-Moline-Rock Island, IA-IL
4009                          Birmingham-Hoover, AL
4010                                  Knoxville, TN
4011                                     Tucson, AZ
4012            Portland-Vancouver-Hillsboro, OR-WA
4013               Indianapolis-Carmel-Anderson, IN
4014             San Diego-Chula Vista-Carlsbad, CA
4015                 Augusta-Richmond County, GA-SC
4016          Hartford-East Hartford-Middletown, CT
4017                               Raleigh-Cary, NC
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4019                                   Key West, FL
4020               Indianapolis-Carmel-Anderson, IN
4021                                  Anchorage, AK
4022             Fayetteville-Springdale-Rogers, AR
4023                Charleston-North Charleston, SC
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV
4025                    Albany-Schenectady-Troy, NY
4026                                    Roanoke, VA
4027           Houston-The Woodlands-Sugar Land, TX
4028        Miami-Fort Lauderdale-Pompano Beach, FL
4029           Houston-The Woodlands-Sugar Land, TX
4030             San Jose-Sunnyvale-Santa Clara, CA
4031 Nashville-Davidson--Murfreesboro--Franklin, TN
4032                Dallas-Fort Worth-Arlington, TX
4033                                       Hilo, HI
4034                                 Pittsburgh, PA
4035                    Shreveport-Bossier City, LA
4036        Minneapolis-St. Paul-Bloomington, MN-WI
4037          New York-Newark-Jersey City, NY-NJ-PA
4038        Miami-Fort Lauderdale-Pompano Beach, FL
4039                                  Flagstaff, AZ
4040                                    Bozeman, MT
4041                     Denver-Aurora-Lakewood, CO
4042              Charlotte-Concord-Gastonia, NC-SC
4043                                 Pittsburgh, PA
4044                Charleston-North Charleston, SC
4045             San Jose-Sunnyvale-Santa Clara, CA
4046                  Orlando-Kissimmee-Sanford, FL
4047                                      Ponce, PR
4048                                    Jackson, MS
4049                      Grand Rapids-Kentwood, MI
4050                  San Antonio-New Braunfels, TX
4051            Portland-Vancouver-Hillsboro, OR-WA
4052                                  Anchorage, AK
4053                                     Juneau, AK
4054                                Spartanburg, SC
4055                             Salt Lake City, UT
4056                                 Wilmington, NC
4057                    San Juan-Bayamón-Caguas, PR
4058                               St. Louis, MO-IL
4059                               Jacksonville, FL
4060                                   Savannah, GA
4061                                       Reno, NV
4062                               St. Louis, MO-IL
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4064                           Colorado Springs, CO
4065             San Jose-Sunnyvale-Santa Clara, CA
4066        Miami-Fort Lauderdale-Pompano Beach, FL
4067                                           <NA>
4068                 Boston-Cambridge-Newton, MA-NH
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV
4070             Los Angeles-Long Beach-Anaheim, CA
4071                  Baltimore-Columbia-Towson, MD
4072          New York-Newark-Jersey City, NY-NJ-PA
4073                 Boston-Cambridge-Newton, MA-NH
4074                          Steamboat Springs, CO
4075          New York-Newark-Jersey City, NY-NJ-PA
4076           Atlanta-Sandy Springs-Alpharetta, GA
4077                              Memphis, TN-MS-AR
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
4079                                Springfield, MO
4080        Miami-Fort Lauderdale-Pompano Beach, FL
4081                          Birmingham-Hoover, AL
4082                Burlington-South Burlington, VT
4083              Charlotte-Concord-Gastonia, NC-SC
4084                    Portland-South Portland, ME
4085                Dallas-Fort Worth-Arlington, TX
4086                                Columbus, GA-AL
4087                                      Tulsa, OK
4088           Houston-The Woodlands-Sugar Land, TX
4089               Indianapolis-Carmel-Anderson, IN
4090                                 Pittsburgh, PA
4091                      Phoenix-Mesa-Chandler, AZ
4092                    Portland-South Portland, ME
4093               Austin-Round Rock-Georgetown, TX
4094              North Port-Sarasota-Bradenton, FL
4095                                    Wichita, KS
4096        Minneapolis-St. Paul-Bloomington, MN-WI
4097                                Bloomington, IL
4098                  Orlando-Kissimmee-Sanford, FL
4099           Atlanta-Sandy Springs-Alpharetta, GA
4100                              Memphis, TN-MS-AR
4101                                 Huntsville, AL
4102                                    Madison, WI
4103                 Pensacola-Ferry Pass-Brent, FL
4104           Poughkeepsie-Newburgh-Middletown, NY
4105                      Providence-Warwick, RI-MA
4106                  Orlando-Kissimmee-Sanford, FL
4107                      Cape Coral-Fort Myers, FL
4108                    Detroit-Warren-Dearborn, MI
4109                  San Antonio-New Braunfels, TX
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV
4111        Miami-Fort Lauderdale-Pompano Beach, FL
4112                                  Ketchikan, AK
4113                                  Anchorage, AK
4114           Riverside-San Bernardino-Ontario, CA
4115                 Boston-Cambridge-Newton, MA-NH
4116             Los Angeles-Long Beach-Anaheim, CA
4117                             Salt Lake City, UT
4118           Atlanta-Sandy Springs-Alpharetta, GA
4119                             Salt Lake City, UT
4120                             Salt Lake City, UT
4121           Atlanta-Sandy Springs-Alpharetta, GA
4122                           Cincinnati, OH-KY-IN
4123                                Springfield, MO
4124                                    Jackson, MS
4125                 Pensacola-Ferry Pass-Brent, FL
4126                      Providence-Warwick, RI-MA
4127               Indianapolis-Carmel-Anderson, IN
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV
4129                                   Columbia, MO
4130                                  Marquette, MI
4131        Minneapolis-St. Paul-Bloomington, MN-WI
4132                                 Jackson, WY-ID
4133                Dallas-Fort Worth-Arlington, TX
4134                     Denver-Aurora-Lakewood, CO
4135                      Grand Rapids-Kentwood, MI
4136        Minneapolis-St. Paul-Bloomington, MN-WI
4137                     Denver-Aurora-Lakewood, CO
4138           Houston-The Woodlands-Sugar Land, TX
4139                    Kahului-Wailuku-Lahaina, HI
4140                                       Hilo, HI
4141                           Colorado Springs, CO
4142             Chicago-Naperville-Elgin, IL-IN-WI
4143             Chicago-Naperville-Elgin, IL-IN-WI
4144                Sacramento-Roseville-Folsom, CA
4145             Los Angeles-Long Beach-Anaheim, CA
4146                          Birmingham-Hoover, AL
4147                               Jacksonville, FL
4148 Nashville-Davidson--Murfreesboro--Franklin, TN
4149                      Providence-Warwick, RI-MA
4150                                Sioux Falls, SD
4151                          Lexington-Fayette, KY
4152           Houston-The Woodlands-Sugar Land, TX
4153           Houston-The Woodlands-Sugar Land, TX
4154                                 Jackson, WY-ID
4155                             Urban Honolulu, HI
4156     Virginia Beach-Norfolk-Newport News, VA-NC
4157                                     Bangor, ME
4158                Burlington-South Burlington, VT
4159                                  Rochester, NY
4160                                   Syracuse, NY
4161                 Boston-Cambridge-Newton, MA-NH
4162              Charlotte-Concord-Gastonia, NC-SC
4163                                   Amarillo, TX
4164             Chicago-Naperville-Elgin, IL-IN-WI
4165                Dallas-Fort Worth-Arlington, TX
4166              Charlotte-Concord-Gastonia, NC-SC
                                        dest_name dest_cbsa
1                      Detroit Metro Wayne County     19820
2                      Detroit Metro Wayne County     19820
3                      Detroit Metro Wayne County     19820
4                      Detroit Metro Wayne County     19820
5              Metropolitan Oakland International     41860
6                Phoenix Sky Harbor International     38060
7                      Detroit Metro Wayne County     19820
8                             Miami International     33100
9                      Detroit Metro Wayne County     19820
10                     Detroit Metro Wayne County     19820
11                     Detroit Metro Wayne County     19820
12                     Detroit Metro Wayne County     19820
13                         Portland International     38900
14               Phoenix Sky Harbor International     38060
15        Norman Y. Mineta San Jose International     41940
16        Norman Y. Mineta San Jose International     41940
17                     Detroit Metro Wayne County     19820
18               James M Cox/Dayton International     19430
19                  Buffalo Niagara International     15380
20        Northwest Florida Beaches International     37460
21              Minneapolis-St Paul International     33460
22                          Ontario International     40140
23                   Theodore Francis Green State     39300
24                     Jacksonville International     27260
25                       Palm Beach International     33100
26                             Asheville Regional     11700
27                   Newark Liberty International     35620
28                         Key West International     28580
29       Jackson Medgar Wiley Evers International     27140
30                      Los Angeles International     31080
31                         Portland International     38900
32                   Raleigh-Durham International     39580
33                       Sacramento International     40900
34        Fort Lauderdale-Hollywood International     33100
35                    San Francisco International     41860
36                           Denver International     19740
37                   Newark Liberty International     35620
38                        San Diego International     41740
39                   Seattle/Tacoma International     42660
40                        San Diego International     41740
41                       Sacramento International     40900
42                                     Tri Cities     28420
43                             Westchester County     35620
44                                      LaGuardia     35620
45       Hartsfield-Jackson Atlanta International     12060
46                Dallas/Fort Worth International     19100
47                             Lafayette Regional     29180
48               Austin - Bergstrom International     12420
49     Cincinnati/Northern Kentucky International     17140
50                      Kansas City International     28140
51                   Chicago O'Hare International     16980
52                        San Diego International     41740
53                 Syracuse Hancock International     45060
54        Fort Lauderdale-Hollywood International     33100
55                  Daniel K Inouye International     46520
56                  Buffalo Niagara International     15380
57                                 Joe Foss Field     43620
58              Bozeman Yellowstone International     14580
59                   Seattle/Tacoma International     42660
60                       Des Moines International     19780
61                            Logan International     14460
62                                      LaGuardia     35620
63                           Hector International     22020
64       Hartsfield-Jackson Atlanta International     12060
65              Ronald Reagan Washington National     47900
66                  John F. Kennedy International     35620
67      Louis Armstrong New Orleans International     35380
68                      San Antonio International     41700
69               John Wayne Airport-Orange County     31080
70                  Fresno Yosemite International     23420
71                           Idaho Falls Regional     26820
72                     Palm Springs International     40140
73                  Gulfport-Biloxi International     25060
74                            Logan International     14460
75                          Orlando International     36740
76           Greenville-Spartanburg International     43900
77                           Albany International     10580
78                          Bradley International     25540
79                     Detroit Metro Wayne County     19820
80                 General Mitchell International     33340
81                              Dallas Love Field     19100
82                          Memphis International     32820
83             Baltimore/Washington International     12580
84              John Glenn Columbus International     18140
85      Louis Armstrong New Orleans International     35380
86                          Norfolk International     47260
87                       Pittsburgh International     38300
88        Fort Lauderdale-Hollywood International     33100
89                          Orlando International     36740
90                         McCarran International     29820
91                        San Diego International     41740
92                       Sacramento International     40900
93                   Raleigh-Durham International     39580
94              John Glenn Columbus International     18140
95                          Orlando International     36740
96                         Portland International     38900
97                                Eppley Airfield     36540
98                    Daytona Beach International     19660
99                     Indianapolis International     26900
100                 John F. Kennedy International     35620
101                  Salt Lake City International     41620
102              Sarasota/Bradenton International     35840
103            Eglin AFB Destin Fort Walton Beach     18880
104                           Logan International     14460
105                    Indianapolis International     26900
106                          Tucson International     46060
107                     Los Angeles International     31080
108                     Los Angeles International     31080
109                  Chicago Midway International     16980
110                  Piedmont Triad International     24660
111               Cleveland-Hopkins International     17460
112                  Gerald R. Ford International     24340
113                    Philadelphia International     37980
114              John Wayne Airport-Orange County     31080
115          George Bush Intercontinental/Houston     26420
116          Kalamazoo/Battle Creek International     28020
117                 John F. Kennedy International     35620
118                 John F. Kennedy International     35620
119                          Denver International     19740
120         Kona International Airport at Keahole     25900
121                 John F. Kennedy International     35620
122                                     LaGuardia     35620
123                 John F. Kennedy International     35620
124                                     LaGuardia     35620
125                 John F. Kennedy International     35620
126                                 Lihue Airport     28180
127                  Salt Lake City International     41620
128              John Wayne Airport-Orange County     31080
129                         Spokane International     44060
130                         Spokane International     44060
131                                  Jackson Hole     27220
132            Metropolitan Oakland International     41860
133            City of Colorado Springs Municipal     17820
134                 John F. Kennedy International     35620
135                 John F. Kennedy International     35620
136                      Reno/Tahoe International     39900
137                            Boise Air Terminal     14260
138                                Albert J Ellis     27340
139    Cincinnati/Northern Kentucky International     17140
140                Syracuse Hancock International     45060
141               Cleveland-Hopkins International     17460
142                           Tampa International     45300
143                Syracuse Hancock International     45060
144                        McCarran International     29820
145                          Duluth International     20260
146                         Bradley International     25540
147                 John F. Kennedy International     35620
148              Austin - Bergstrom International     12420
149                        McCarran International     29820
150                Augusta Regional at Bush Field     12260
151                        Richmond International     40060
152                     San Antonio International     41700
153                     Los Angeles International     31080
154                                     LaGuardia     35620
155                           Logan International     14460
156                     Los Angeles International     31080
157                         Bradley International     25540
158                 Buffalo Niagara International     15380
159                                     LaGuardia     35620
160                        Richmond International     40060
161                     Los Angeles International     31080
162                 Buffalo Niagara International     15380
163                        Richmond International     40060
164                         Orlando International     36740
165                     Los Angeles International     31080
166           Ted Stevens Anchorage International     11260
167                    Glacier Park International     28060
168                            Long Beach Airport     31080
169                        Missoula International     33540
170                             Friedman Memorial     25200
171                             Will Rogers World     36420
172                  Gerald R. Ford International     24340
173                     Los Angeles International     31080
174              Phoenix Sky Harbor International     38060
175                       San Diego International     41740
176                  Seattle/Tacoma International     42660
177                                     LaGuardia     35620
178                            Boise Air Terminal     14260
179                         Spokane International     44060
180              Phoenix Sky Harbor International     38060
181                   San Francisco International     41860
182                      Sacramento International     40900
183                                     LaGuardia     35620
184                                     LaGuardia     35620
185                                     LaGuardia     35620
186                           Logan International     14460
187                                   Adams Field     30780
188           Baton Rouge Metropolitan/Ryan Field     12940
189                        Portland International     38900
190                                    Blue Grass     30460
191                 Daniel K Inouye International     46520
192               Washington Dulles International     47900
193                St Louis Lambert International     41180
194                         Orlando International     36740
195                           La Crosse Municipal     29100
196                         Orlando International     36740
197                         Orlando International     36740
198       Green Bay Austin Straubel International     24580
199                           Tampa International     45300
200                          Tucson International     46060
201                          Denver International     19740
202                   San Francisco International     41860
203                                  McGhee Tyson     28940
204                              The Eastern Iowa     16300
205                          Denver International     19740
206                        Brunswick Golden Isles     15260
207               Southwest Florida International     15980
208          Greenville-Spartanburg International     43900
209             Ronald Reagan Washington National     47900
210       Fort Lauderdale-Hollywood International     33100
211                    Myrtle Beach International     34820
212            Savannah/Hilton Head International     42340
213                           Tulsa International     46140
214             Minneapolis-St Paul International     33460
215             Minneapolis-St Paul International     33460
216             Minneapolis-St Paul International     33460
217             Minneapolis-St Paul International     33460
218             Minneapolis-St Paul International     33460
219             Minneapolis-St Paul International     33460
220               Dallas/Fort Worth International     19100
221                           Miami International     33100
222               Southwest Florida International     15980
223             Minneapolis-St Paul International     33460
224             Minneapolis-St Paul International     33460
225             Minneapolis-St Paul International     33460
226                Portland International Jetport     38860
227             Minneapolis-St Paul International     33460
228             Minneapolis-St Paul International     33460
229             Minneapolis-St Paul International     33460
230             Minneapolis-St Paul International     33460
231             Minneapolis-St Paul International     33460
232             Minneapolis-St Paul International     33460
233             Minneapolis-St Paul International     33460
234             Minneapolis-St Paul International     33460
235             Minneapolis-St Paul International     33460
236             Minneapolis-St Paul International     33460
237                  Capital Region International     29620
238     Louis Armstrong New Orleans International     35380
239     Louis Armstrong New Orleans International     35380
240              John Wayne Airport-Orange County     31080
241        Birmingham-Shuttlesworth International     13820
242               Charlotte Douglas International     16740
243                  Raleigh-Durham International     39580
244                   San Francisco International     41860
245                 Pensacola Gulf Coast Regional     37860
246                         Orlando International     36740
247                         Ontario International     40140
248                           Hilton Head Airport     25940
249                  Chicago O'Hare International     16980
250         Louisville Muhammad Ali International     31140
251                Syracuse Hancock International     45060
252                  Chicago O'Hare International     16980
253                  Chicago O'Hare International     16980
254                                Range Regional     20260
255                     Los Angeles International     31080
256                      Des Moines International     19780
257                  Charleston AFB/International     16700
258                    Indianapolis International     26900
259                    Palm Springs International     40140
260                           Logan International     14460
261                     Kansas City International     28140
262             Albuquerque International Sunport     10740
263                      Reno/Tahoe International     39900
264             Albuquerque International Sunport     10740
265                           Miami International     33100
266                    Philadelphia International     37980
267                       Rochester International     40340
268                Portland International Jetport     38860
269                           Logan International     14460
270                           South Bend Regional     43780
271                       Nashville International     34980
272             Ronald Reagan Washington National     47900
273                        McCarran International     29820
274                  Raleigh-Durham International     39580
275                  Raleigh-Durham International     39580
276                  Raleigh-Durham International     39580
277                  Raleigh-Durham International     39580
278                   San Francisco International     41860
279                  Raleigh-Durham International     39580
280                  Raleigh-Durham International     39580
281               Dallas/Fort Worth International     19100
282                      Burlington International     15540
283               Southwest Florida International     15980
284       Green Bay Austin Straubel International     24580
285                       San Diego International     41740
286                         Orlando International     36740
287                           Tampa International     45300
288           Fayetteville Regional/Grannis Field     22180
289                  Seattle/Tacoma International     42660
290            Baltimore/Washington International     12580
291               Washington Dulles International     47900
292                  Seattle/Tacoma International     42660
293                  Seattle/Tacoma International     42660
294                General Mitchell International     33340
295                  Seattle/Tacoma International     42660
296                  Seattle/Tacoma International     42660
297                            St George Regional     41100
298                  Seattle/Tacoma International     42660
299                       Nashville International     34980
300    Cincinnati/Northern Kentucky International     17140
301                           Miami International     33100
302                    Detroit Metro Wayne County     19820
303                    Detroit Metro Wayne County     19820
304                  Salt Lake City International     41620
305                  Salt Lake City International     41620
306                              The Eastern Iowa     16300
307                General Mitchell International     33340
308             John Glenn Columbus International     18140
309                  Salt Lake City International     41620
310                  Salt Lake City International     41620
311                  Salt Lake City International     41620
312                  Salt Lake City International     41620
313                  Salt Lake City International     41620
314                 John F. Kennedy International     35620
315                  Salt Lake City International     41620
316                  Salt Lake City International     41620
317                  Salt Lake City International     41620
318                  Salt Lake City International     41620
319                  Salt Lake City International     41620
320                       Nashville International     34980
321             Minneapolis-St Paul International     33460
322                                  Lovell Field     16860
323                  Gerald R. Ford International     24340
324                            Mahlon Sweet Field     21660
325                                 Roberts Field     13460
326         Louisville Muhammad Ali International     31140
327                St Louis Lambert International     41180
328                         Spokane International     44060
329       Green Bay Austin Straubel International     24580
330                                Joe Foss Field     43620
331                             MBS International     40980
332                        McCarran International     29820
333                           Tampa International     45300
334                           Tampa International     45300
335                           Tampa International     45300
336      Hartsfield-Jackson Atlanta International     12060
337      Hartsfield-Jackson Atlanta International     12060
338              Austin - Bergstrom International     12420
339            Baltimore/Washington International     12580
340               Cleveland-Hopkins International     17460
341                       San Diego International     41740
342                         Ontario International     40140
343               Charlotte Douglas International     16740
344                          Denver International     19740
345                          Denver International     19740
346                         Long Island MacArthur     35620
347                        McCarran International     29820
348                         Orlando International     36740
349                         Ontario International     40140
350                         Memphis International     32820
351                           Miami International     33100
352                        Portland International     38900
353                    Philadelphia International     37980
354                    Philadelphia International     37980
355                    Philadelphia International     37980
356              Phoenix Sky Harbor International     38060
357                  Raleigh-Durham International     39580
358                       San Diego International     41740
359                     San Antonio International     41700
360                Luis Munoz Marin International     41980
361                                     LaGuardia     35620
362               Charlotte Douglas International     16740
363               Charlotte Douglas International     16740
364                 Daniel K Inouye International     46520
365                        McCarran International     29820
366              Phoenix Sky Harbor International     38060
367                      Palm Beach International     33100
368          George Bush Intercontinental/Houston     26420
369                  Newark Liberty International     35620
370                          Denver International     19740
371                  Newark Liberty International     35620
372                  Newark Liberty International     35620
373                  Newark Liberty International     35620
374                            Asheville Regional     11700
375                  Piedmont Triad International     24660
376                       Abraham Lincoln Capital     44100
377               Washington Dulles International     47900
378               Washington Dulles International     47900
379                                  McGhee Tyson     28940
380               Southwest Florida International     15980
381          George Bush Intercontinental/Houston     26420
382                   San Francisco International     41860
383                       Nashville International     34980
384                   San Francisco International     41860
385                   San Francisco International     41860
386                           Tampa International     45300
387                    Jacksonville International     27260
388                  Seattle/Tacoma International     42660
389               Greater Rochester International     40380
390                  Seattle/Tacoma International     42660
391                St Louis Lambert International     41180
392                Syracuse Hancock International     45060
393                    Indianapolis International     26900
394              Phoenix Sky Harbor International     38060
395                                   Adams Field     30780
396                  Newark Liberty International     35620
397                                  McGhee Tyson     28940
398                      Pittsburgh International     38300
399                         Bradley International     25540
400                              Henry E. Rohlsen      <NA>
401                         Orlando International     36740
402              Austin - Bergstrom International     12420
403              Austin - Bergstrom International     12420
404              Austin - Bergstrom International     12420
405         Louisville Muhammad Ali International     31140
406                        McCarran International     29820
407      Hartsfield-Jackson Atlanta International     12060
408                Syracuse Hancock International     45060
409                           Logan International     14460
410                          Hector International     22020
411                  Newark Liberty International     35620
412              John Wayne Airport-Orange County     31080
413                             Will Rogers World     36420
414                 Fresno Yosemite International     23420
415                   Northwest Arkansas Regional     22220
416                        Portland International     38900
417                         Orlando International     36740
418    Cincinnati/Northern Kentucky International     17140
419                         Orlando International     36740
420                           Tampa International     45300
421    Cincinnati/Northern Kentucky International     17140
422                         Wichita Mid-Continent     48620
423                               Monroe Regional     33740
424             Ronald Reagan Washington National     47900
425             Ronald Reagan Washington National     47900
426               Dallas/Fort Worth International     19100
427               Dallas/Fort Worth International     19100
428        Birmingham-Shuttlesworth International     13820
429       Norman Y. Mineta San Jose International     41940
430                         Orlando International     36740
431                           Miami International     33100
432                        Richmond International     40060
433                           Tulsa International     46140
434                     Los Angeles International     31080
435              Phoenix Sky Harbor International     38060
436                           Miami International     33100
437            City of Colorado Springs Municipal     17820
438                         Spokane International     44060
439                          Garden City Regional     23780
440        Lynchburg Regional/Preston Glenn Field     31340
441                  Chicago O'Hare International     16980
442                          Bangor International     12620
443                    Jacksonville International     27260
444                                Joe Foss Field     43620
445         Louisville Muhammad Ali International     31140
446                Syracuse Hancock International     45060
447              Austin - Bergstrom International     12420
448                         Ontario International     40140
449                            Lafayette Regional     29180
450               Washington Dulles International     47900
451              Austin - Bergstrom International     12420
452       Norman Y. Mineta San Jose International     41940
453                     Kansas City International     28140
454                           Miami International     33100
455                       Nashville International     34980
456               Cleveland-Hopkins International     17460
457                     Kansas City International     28140
458                      Fort Wayne International     23060
459     Louis Armstrong New Orleans International     35380
460                         Columbia Metropolitan     17900
461                                    Blue Grass     30460
462                  Chicago O'Hare International     16980
463                  Chicago O'Hare International     16980
464                  Chicago O'Hare International     16980
465                      Reno/Tahoe International     39900
466                  Gerald R. Ford International     24340
467                  Chicago O'Hare International     16980
468                   Northwest Arkansas Regional     22220
469                     Los Angeles International     31080
470                        Key West International     28580
471         Louisville Muhammad Ali International     31140
472          George Bush Intercontinental/Houston     26420
473                Augusta Regional at Bush Field     12260
474                  Raleigh-Durham International     39580
475     Louis Armstrong New Orleans International     35380
476             Albuquerque International Sunport     10740
477      Hartsfield-Jackson Atlanta International     12060
478                  Capital Region International     29620
479                          Denver International     19740
480                        McCarran International     29820
481                  Seattle/Tacoma International     42660
482                   Atlantic City International     12100
483                   Atlantic City International     12100
484                   Atlantic City International     12100
485      Hartsfield-Jackson Atlanta International     12060
486              Austin - Bergstrom International     12420
487      Hartsfield-Jackson Atlanta International     12060
488              John Wayne Airport-Orange County     31080
489      Hartsfield-Jackson Atlanta International     12060
490      Hartsfield-Jackson Atlanta International     12060
491                         Bradley International     25540
492                       Nashville International     34980
493                       Nashville International     34980
494                       Nashville International     34980
495                       Nashville International     34980
496                           Logan International     14460
497                           Logan International     14460
498                           Logan International     14460
499                           Logan International     14460
500                           Logan International     14460
501                                      Bob Hope     31080
502            Baltimore/Washington International     12580
503                          Denver International     19740
504            Baltimore/Washington International     12580
505            Baltimore/Washington International     12580
506            Baltimore/Washington International     12580
507            Baltimore/Washington International     12580
508               Cleveland-Hopkins International     17460
509                         Orlando International     36740
510               Cleveland-Hopkins International     17460
511               Cleveland-Hopkins International     17460
512          George Bush Intercontinental/Houston     26420
513               Charlotte Douglas International     16740
514             John Glenn Columbus International     18140
515            Baltimore/Washington International     12580
516               Dallas/Fort Worth International     19100
517               Dallas/Fort Worth International     19100
518               Dallas/Fort Worth International     19100
519               Dallas/Fort Worth International     19100
520                  Chicago O'Hare International     16980
521                    Detroit Metro Wayne County     19820
522                  Newark Liberty International     35620
523                  Newark Liberty International     35620
524                  Newark Liberty International     35620
525                  Newark Liberty International     35620
526                  Newark Liberty International     35620
527       Fort Lauderdale-Hollywood International     33100
528       Fort Lauderdale-Hollywood International     33100
529       Fort Lauderdale-Hollywood International     33100
530       Fort Lauderdale-Hollywood International     33100
531       Fort Lauderdale-Hollywood International     33100
532       Fort Lauderdale-Hollywood International     33100
533       Fort Lauderdale-Hollywood International     33100
534       Fort Lauderdale-Hollywood International     33100
535          George Bush Intercontinental/Houston     26420
536          George Bush Intercontinental/Houston     26420
537                    Indianapolis International     26900
538                    Indianapolis International     26900
539                    Indianapolis International     26900
540                        McCarran International     29820
541                        McCarran International     29820
542      Hartsfield-Jackson Atlanta International     12060
543                  Piedmont Triad International     24660
544                        McCarran International     29820
545                        McCarran International     29820
546                        McCarran International     29820
547                     Los Angeles International     31080
548                     Los Angeles International     31080
549                           Tampa International     45300
550                     Los Angeles International     31080
551                     Los Angeles International     31080
552                        Arnold Palmer Regional     38300
553                        Arnold Palmer Regional     38300
554                     Kansas City International     28140
555                     Kansas City International     28140
556                         Orlando International     36740
557                         Orlando International     36740
558                         Orlando International     36740
559            Metropolitan Oakland International     41860
560                         Orlando International     36740
561                         Orlando International     36740
562                General Mitchell International     33340
563                    Philadelphia International     37980
564     Louis Armstrong New Orleans International     35380
565                  Newark Liberty International     35620
566                  Chicago O'Hare International     16980
567                  Chicago O'Hare International     16980
568                  Chicago O'Hare International     16980
569                  Chicago O'Hare International     16980
570                      Pittsburgh International     38300
571                      Pittsburgh International     38300
572                      Pittsburgh International     38300
573                       San Diego International     41740
574                Luis Munoz Marin International     41980
575                St Louis Lambert International     41180
576          George Bush Intercontinental/Houston     26420
577                           Tampa International     45300
578                           Tampa International     45300
579                           Tampa International     45300
580                           Tampa International     45300
581              Sarasota/Bradenton International     35840
582         Louisville Muhammad Ali International     31140
583            Eglin AFB Destin Fort Walton Beach     18880
584                        McCarran International     29820
585              Phoenix Sky Harbor International     38060
586                          Albany International     10580
587                        McCarran International     29820
588                                     LaGuardia     35620
589             Minneapolis-St Paul International     33460
590                    Philadelphia International     37980
591                      Palm Beach International     33100
592                       Nashville International     34980
593                 John F. Kennedy International     35620
594                                     LaGuardia     35620
595                           Tampa International     45300
596            Eglin AFB Destin Fort Walton Beach     18880
597                St Louis Lambert International     41180
598                     San Antonio International     41700
599                  Charleston AFB/International     16700
600            Baltimore/Washington International     12580
601               Charlotte Douglas International     16740
602               Charlotte Douglas International     16740
603               Charlotte Douglas International     16740
604               Charlotte Douglas International     16740
605               Charlotte Douglas International     16740
606       Fort Lauderdale-Hollywood International     33100
607                             Will Rogers World     36420
608                         Orlando International     36740
609                    Indianapolis International     26900
610                         Memphis International     32820
611              Phoenix Sky Harbor International     38060
612                         Akron-Canton Regional     10420
613               Cleveland-Hopkins International     17460
614              James M Cox/Dayton International     19430
615              Austin - Bergstrom International     12420
616             Ronald Reagan Washington National     47900
617             Ronald Reagan Washington National     47900
618             Ronald Reagan Washington National     47900
619                   San Francisco International     41860
620               Dallas/Fort Worth International     19100
621             Ronald Reagan Washington National     47900
622                            Westchester County     35620
623                  Theodore Francis Green State     39300
624      Hartsfield-Jackson Atlanta International     12060
625                    Detroit Metro Wayne County     19820
626                Portland International Jetport     38860
627            Savannah/Hilton Head International     42340
628                                   Adams Field     30780
629                       Melbourne International     37340
630                    Detroit Metro Wayne County     19820
631                     Kansas City International     28140
632                  Chicago O'Hare International     16980
633                General Mitchell International     33340
634                          Bishop International     22420
635              James M Cox/Dayton International     19430
636                           Logan International     14460
637                      Pittsburgh International     38300
638               Dallas/Fort Worth International     19100
639                               Eppley Airfield     36540
640                            Westchester County     35620
641                      Palm Beach International     33100
642      Hartsfield-Jackson Atlanta International     12060
643               Southwest Florida International     15980
644                 Buffalo Niagara International     15380
645                      Pittsburgh International     38300
646                   Lehigh Valley International     10900
647                         Norfolk International     47260
648       Newport News/Williamsburg International     47260
649                    Jacksonville International     27260
650                    Jacksonville International     27260
651                    Manchester-Boston Regional     31700
652                           Logan International     14460
653                    Jacksonville International     27260
654                            Asheville Regional     11700
655                  Raleigh-Durham International     39580
656           Fayetteville Regional/Grannis Field     22180
657                                Albert J Ellis     27340
658                      Harrisburg International     25420
659                           Miami International     33100
660                  Charleston AFB/International     16700
661          George Bush Intercontinental/Houston     26420
662                      Des Moines International     19780
663          Greenville-Spartanburg International     43900
664                Portland International Jetport     38860
665     Louis Armstrong New Orleans International     35380
666      Jackson Medgar Wiley Evers International     27140
667     Louis Armstrong New Orleans International     35380
668                                    Blue Grass     30460
669                    Philadelphia International     37980
670                    Philadelphia International     37980
671        Birmingham-Shuttlesworth International     13820
672                    Philadelphia International     37980
673                    Philadelphia International     37980
674                    Philadelphia International     37980
675                    Philadelphia International     37980
676                          Denver International     19740
677                       San Diego International     41740
678                  Seattle/Tacoma International     42660
679                    Indianapolis International     26900
680                         Long Island MacArthur     35620
681                  Chicago O'Hare International     16980
682                         Bradley International     25540
683                                  McGhee Tyson     28940
684                  Theodore Francis Green State     39300
685                  Raleigh-Durham International     39580
686                St Louis Lambert International     41180
687                Syracuse Hancock International     45060
688         Louisville Muhammad Ali International     31140
689             Albuquerque International Sunport     10740
690          George Bush Intercontinental/Houston     26420
691                               Lincoln Airport     30700
692                          Albany International     10580
693                         Ontario International     40140
694               Aspen Pitkin County Sardy Field     24060
695                 Daniel K Inouye International     46520
696                  Seattle/Tacoma International     42660
697             Albuquerque International Sunport     10740
698                       Nashville International     34980
699                     Kansas City International     28140
700                       Eastern Sierra Regional      <NA>
701          Rogue Valley International - Medford     32780
702                    Palm Springs International     40140
703                       Santa Barbara Municipal     42200
704                     Los Angeles International     31080
705                            Boise Air Terminal     14260
706                            Boise Air Terminal     14260
707                            Boise Air Terminal     14260
708      Hartsfield-Jackson Atlanta International     12060
709                            Boise Air Terminal     14260
710                            Boise Air Terminal     14260
711         Kona International Airport at Keahole     25900
712                                      Bob Hope     31080
713                            Boise Air Terminal     14260
714             Charles M. Schulz - Sonoma County     42220
715                                      Bob Hope     31080
716                                      Bob Hope     31080
717                               Kahului Airport     27980
718             Bozeman Yellowstone International     14580
719            Baltimore/Washington International     12580
720             Bozeman Yellowstone International     14580
721                             Will Rogers World     36420
722                               Robert Gray AAF     28660
723                           Logan International     14460
724                  Newark Liberty International     35620
725            City of Colorado Springs Municipal     17820
726                     Los Angeles International     31080
727                             Dallas Love Field     19100
728                          Denver International     19740
729                          Denver International     19740
730                          Denver International     19740
731                          Denver International     19740
732                          Denver International     19740
733                          Denver International     19740
734                          Tucson International     46060
735                  Salt Lake City International     41620
736                      Pittsburgh International     38300
737                      Des Moines International     19780
738                                    Tri Cities     28420
739                      Harrisburg International     25420
740                            Mahlon Sweet Field     21660
741                          Denver International     19740
742                 Fresno Yosemite International     23420
743                 Fresno Yosemite International     23420
744                 Fresno Yosemite International     23420
745                 Fresno Yosemite International     23420
746                                 Roberts Field     13460
747                  Chicago O'Hare International     16980
748                    Glacier Park International     28060
749                  Chicago O'Hare International     16980
750       Fort Lauderdale-Hollywood International     33100
751              Sarasota/Bradenton International     35840
752                    Jacksonville International     27260
753              Phoenix Sky Harbor International     38060
754                         Spokane International     44060
755                         Spokane International     44060
756                           Logan International     14460
757                       Nashville International     34980
758       Fort Lauderdale-Hollywood International     33100
759                           Miami International     33100
760       Norman Y. Mineta San Jose International     41940
761                   Lehigh Valley International     10900
762                                  Yampa Valley     44460
763                  Salt Lake City International     41620
764                           La Crosse Municipal     29100
765          George Bush Intercontinental/Houston     26420
766          George Bush Intercontinental/Houston     26420
767                            Pocatello Regional     38540
768               Cleveland-Hopkins International     17460
769                          Hector International     22020
770             Ronald Reagan Washington National     47900
771                      Pittsburgh International     38300
772                  Chicago O'Hare International     16980
773                     Los Angeles International     31080
774                     Los Angeles International     31080
775                     Los Angeles International     31080
776                     Los Angeles International     31080
777                     Los Angeles International     31080
778                     Los Angeles International     31080
779                     Los Angeles International     31080
780                     Los Angeles International     31080
781           Baton Rouge Metropolitan/Ryan Field     12940
782                   San Francisco International     41860
783                    Indianapolis International     26900
784          Kalamazoo/Battle Creek International     28020
785                     San Antonio International     41700
786              Dane County Regional-Truax Field     31540
787             Minneapolis-St Paul International     33460
788                       San Diego International     41740
789                General Mitchell International     33340
790                        McCarran International     29820
791                            Mahlon Sweet Field     21660
792                            Monterey Peninsula     41500
793              Dane County Regional-Truax Field     31540
794             Minneapolis-St Paul International     33460
795             Minneapolis-St Paul International     33460
796                     Great Falls International     24500
797       Green Bay Austin Straubel International     24580
798            Metropolitan Oakland International     41860
799              Roswell International Air Center     40740
800                               Kahului Airport     27980
801           Wilkes Barre Scranton International     42540
802                                     LaGuardia     35620
803                    Jacksonville International     27260
804                               Eppley Airfield     36540
805                  Theodore Francis Green State     39300
806                 Chippewa County International     42300
807                         Ontario International     40140
808                     San Antonio International     41700
809                         Ontario International     40140
810                           Miami International     33100
811                  Chicago O'Hare International     16980
812                  Chicago O'Hare International     16980
813                  Chicago O'Hare International     16980
814                  Chicago O'Hare International     16980
815                          Denver International     19740
816                        Portland International     38900
817                        Portland International     38900
818                        Portland International     38900
819                        Portland International     38900
820                        Portland International     38900
821                        Portland International     38900
822                        Portland International     38900
823                        Portland International     38900
824                     Kansas City International     28140
825         Kona International Airport at Keahole     25900
826              Phoenix Sky Harbor International     38060
827              Phoenix Sky Harbor International     38060
828                      Pittsburgh International     38300
829                General Mitchell International     33340
830                        McCarran International     29820
831                                 Roberts Field     13460
832                    Palm Springs International     40140
833                            Boise Air Terminal     14260
834              Dane County Regional-Truax Field     31540
835                           Rapid City Regional     39660
836                         Memphis International     32820
837                         Ontario International     40140
838                               Helena Regional     25740
839                        Appleton International     11540
840               Charlotte Douglas International     16740
841                        Richmond International     40060
842                      Reno/Tahoe International     39900
843                      Sacramento International     40900
844                       San Diego International     41740
845                       San Diego International     41740
846                       San Diego International     41740
847                       San Diego International     41740
848                       San Diego International     41740
849                       San Diego International     41740
850                       San Diego International     41740
851                            Monterey Peninsula     41500
852         Prescott Regional Ernest A Love Field     39150
853                      San Luis County Regional     42020
854                        McCarran International     29820
855                       Santa Barbara Municipal     42200
856                St Louis Lambert International     41180
857                      San Luis County Regional     42020
858                        McCarran International     29820
859                           Miami International     33100
860                  Seattle/Tacoma International     42660
861                  Seattle/Tacoma International     42660
862                  Seattle/Tacoma International     42660
863                  Seattle/Tacoma International     42660
864                   San Francisco International     41860
865                   San Francisco International     41860
866                   San Francisco International     41860
867                   San Francisco International     41860
868                   San Francisco International     41860
869                   San Francisco International     41860
870                   San Francisco International     41860
871                   San Francisco International     41860
872       Norman Y. Mineta San Jose International     41940
873       Norman Y. Mineta San Jose International     41940
874       Norman Y. Mineta San Jose International     41940
875       Norman Y. Mineta San Jose International     41940
876       Norman Y. Mineta San Jose International     41940
877                    Detroit Metro Wayne County     19820
878                          Tucson International     46060
879         Kona International Airport at Keahole     25900
880                  Salt Lake City International     41620
881                       Durango La Plata County     20420
882                         Orlando International     36740
883                                 Meadows Field     12540
884                      San Luis County Regional     42020
885                 Daniel K Inouye International     46520
886                      Sacramento International     40900
887                      Sacramento International     40900
888                      Sacramento International     40900
889                 Daniel K Inouye International     46520
890                                 Roberts Field     13460
891                  Seattle/Tacoma International     42660
892              John Wayne Airport-Orange County     31080
893        Birmingham-Shuttlesworth International     13820
894                           South Bend Regional     43780
895               Dallas/Fort Worth International     19100
896             Charles M. Schulz - Sonoma County     42220
897             Charles M. Schulz - Sonoma County     42220
898             Charles M. Schulz - Sonoma County     42220
899                               Eppley Airfield     36540
900                               Eppley Airfield     36540
901           Ted Stevens Anchorage International     11260
902                          Tucson International     46060
903             Ronald Reagan Washington National     47900
904                                      Bob Hope     31080
905             Albuquerque International Sunport     10740
906                  Billings Logan International     13740
907                  Chicago O'Hare International     16980
908                            Boise Air Terminal     14260
909                            Boise Air Terminal     14260
910                            Boise Air Terminal     14260
911             Bozeman Yellowstone International     14580
912                                    Tri Cities     28420
913                    Detroit Metro Wayne County     19820
914                 John F. Kennedy International     35620
915     Louis Armstrong New Orleans International     35380
916                        Missoula International     33540
917                    Glacier Park International     28060
918                         Spokane International     44060
919                 John F. Kennedy International     35620
920                       Santa Barbara Municipal     42200
921                  Newark Liberty International     35620
922                         Spokane International     44060
923          Rogue Valley International - Medford     32780
924                               Helena Regional     25740
925                          Idaho Falls Regional     26820
926                     Los Angeles International     31080
927          Rogue Valley International - Medford     32780
928          Rogue Valley International - Medford     32780
929            Metropolitan Oakland International     41860
930                              Snohomish County     42660
931                              Snohomish County     42660
932                              Snohomish County     42660
933                              Snohomish County     42660
934                        Portland International     38900
935                        Portland International     38900
936                    Palm Springs International     40140
937                         El Paso International     21340
938                       Pullman Moscow Regional     39420
939                                 Roberts Field     13460
940                       San Diego International     41740
941                       Santa Barbara Municipal     42200
942                  Seattle/Tacoma International     42660
943                  Seattle/Tacoma International     42660
944                  Seattle/Tacoma International     42660
945                  Seattle/Tacoma International     42660
946                  Seattle/Tacoma International     42660
947                  Seattle/Tacoma International     42660
948                  Seattle/Tacoma International     42660
949                  Seattle/Tacoma International     42660
950                  Seattle/Tacoma International     42660
951                  Seattle/Tacoma International     42660
952                  Seattle/Tacoma International     42660
953                  Seattle/Tacoma International     42660
954                  Seattle/Tacoma International     42660
955                  Seattle/Tacoma International     42660
956                  Seattle/Tacoma International     42660
957                   San Francisco International     41860
958       Norman Y. Mineta San Jose International     41940
959              John Wayne Airport-Orange County     31080
960             Charles M. Schulz - Sonoma County     42220
961                          Denver International     19740
962              Austin - Bergstrom International     12420
963                         Bradley International     25540
964                    Philadelphia International     37980
965                    Glacier Park International     28060
966                        Missoula International     33540
967      Hartsfield-Jackson Atlanta International     12060
968                             Greenbrier Valley      <NA>
969                        Appleton International     11540
970                          Denver International     19740
971              Austin - Bergstrom International     12420
972                               Eppley Airfield     36540
973              Austin - Bergstrom International     12420
974                                     Key Field     32940
975                  Seattle/Tacoma International     42660
976              John Wayne Airport-Orange County     31080
977                                     LaGuardia     35620
978              John Wayne Airport-Orange County     31080
979              Austin - Bergstrom International     12420
980                         Bradley International     25540
981                     Los Angeles International     31080
982                  Raleigh-Durham International     39580
983            Savannah/Hilton Head International     42340
984                  Piedmont Triad International     24660
985        Birmingham-Shuttlesworth International     13820
986    Cincinnati/Northern Kentucky International     17140
987      Hartsfield-Jackson Atlanta International     12060
988                            Boise Air Terminal     14260
989                                  Jackson Hole     27220
990                                 Roberts Field     13460
991                           Logan International     14460
992                          Denver International     19740
993                         Orlando International     36740
994     Louis Armstrong New Orleans International     35380
995                           Tampa International     45300
996                           Hilton Head Airport     25940
997                           Logan International     14460
998                                 Lihue Airport     28180
999                      Des Moines International     19780
1000                                Lihue Airport     28180
1001                Buffalo Niagara International     15380
1002                 Newark Liberty International     35620
1003                Daniel K Inouye International     46520
1004                Daniel K Inouye International     46520
1005                              Kahului Airport     27980
1006                       McCarran International     29820
1007    Louis Armstrong New Orleans International     35380
1008                     Pittsburgh International     38300
1009                            MBS International     40980
1010               Portland International Jetport     38860
1011                              Lincoln Airport     30700
1012              Cleveland-Hopkins International     17460
1013              Cleveland-Hopkins International     17460
1014              Southwest Florida International     15980
1015                     Reno/Tahoe International     39900
1016           City of Colorado Springs Municipal     17820
1017                             Salina Municipal     41460
1018                 Newark Liberty International     35620
1019                          Miami International     33100
1020                          Logan International     14460
1021           Eglin AFB Destin Fort Walton Beach     18880
1022                         Denver International     19740
1023                      Santa Barbara Municipal     42200
1024                 Newark Liberty International     35620
1025                         Denver International     19740
1026              Washington Dulles International     47900
1027                        Norfolk International     47260
1028                         Duluth International     20260
1029                         Denver International     19740
1030                         Denver International     19740
1031                         Denver International     19740
1032                         Denver International     19740
1033              Dallas/Fort Worth International     19100
1034                              Joplin Regional     27900
1035         George Bush Intercontinental/Houston     26420
1036                         Denver International     19740
1037              Southwest Florida International     15980
1038                 Newark Liberty International     35620
1039           City of Colorado Springs Municipal     17820
1040                     Sacramento International     40900
1041                      Nashville International     34980
1042           City of Colorado Springs Municipal     17820
1043                            Will Rogers World     36420
1044                 Newark Liberty International     35620
1045      Fort Lauderdale-Hollywood International     33100
1046                 Newark Liberty International     35620
1047                 Salt Lake City International     41620
1048                                 Jackson Hole     27220
1049                 Newark Liberty International     35620
1050                 Newark Liberty International     35620
1051                 Newark Liberty International     35620
1052                 Newark Liberty International     35620
1053                 Newark Liberty International     35620
1054                 Newark Liberty International     35620
1055                 Newark Liberty International     35620
1056                 Newark Liberty International     35620
1057                 Newark Liberty International     35620
1058                 Newark Liberty International     35620
1059                 Newark Liberty International     35620
1060                               Joe Foss Field     43620
1061                  San Francisco International     41860
1062                   Presque Isle International      <NA>
1063      Fort Lauderdale-Hollywood International     33100
1064                              Robert Gray AAF     28660
1065      Fort Lauderdale-Hollywood International     33100
1066                          Tampa International     45300
1067                    San Antonio International     41700
1068         Greenville-Spartanburg International     43900
1069                     Pittsburgh International     38300
1070        Louisville Muhammad Ali International     31140
1071             Sarasota/Bradenton International     35840
1072      Northwest Florida Beaches International     37460
1073    Louis Armstrong New Orleans International     35380
1074        Louisville Muhammad Ali International     31140
1075                     Sacramento International     40900
1076           Baltimore/Washington International     12580
1077                        Orlando International     36740
1078              Washington Dulles International     47900
1079              Washington Dulles International     47900
1080              Washington Dulles International     47900
1081              Washington Dulles International     47900
1082              Washington Dulles International     47900
1083              Washington Dulles International     47900
1084              Washington Dulles International     47900
1085              Washington Dulles International     47900
1086                                   Tri Cities     28420
1087              Washington Dulles International     47900
1088            Albuquerque International Sunport     10740
1089         George Bush Intercontinental/Houston     26420
1090         George Bush Intercontinental/Houston     26420
1091         George Bush Intercontinental/Houston     26420
1092         George Bush Intercontinental/Houston     26420
1093                             Barkley Regional     37140
1094         George Bush Intercontinental/Houston     26420
1095         George Bush Intercontinental/Houston     26420
1096         George Bush Intercontinental/Houston     26420
1097                 Charleston AFB/International     16700
1098                            Will Rogers World     36420
1099            Ronald Reagan Washington National     47900
1100               Portland International Jetport     38860
1101              Greater Rochester International     40380
1102                   Jacksonville International     27260
1103                    San Antonio International     41700
1104                John F. Kennedy International     35620
1105           Baltimore/Washington International     12580
1106            John Glenn Columbus International     18140
1107                       Richmond International     40060
1108                       McCarran International     29820
1109                         Bangor International     12620
1110                   Manchester-Boston Regional     31700
1111                      Nashville International     34980
1112               General Mitchell International     33340
1113              Cleveland-Hopkins International     17460
1114                   Indianapolis International     26900
1115                        Orlando International     36740
1116                          Tampa International     45300
1117            John Glenn Columbus International     18140
1118   Cincinnati/Northern Kentucky International     17140
1119             Dane County Regional-Truax Field     31540
1120   Cincinnati/Northern Kentucky International     17140
1121                   Detroit Metro Wayne County     19820
1122   Cincinnati/Northern Kentucky International     17140
1123              Southwest Florida International     15980
1124                    Los Angeles International     31080
1125                    Los Angeles International     31080
1126                   Detroit Metro Wayne County     19820
1127      Norman Y. Mineta San Jose International     41940
1128                       Portland International     38900
1129                         Denver International     19740
1130                     Sacramento International     40900
1131                 Raleigh-Durham International     39580
1132           Baltimore/Washington International     12580
1133                              Kahului Airport     27980
1134              Southwest Florida International     15980
1135                        Norfolk International     47260
1136             Phoenix Sky Harbor International     38060
1137                      San Diego International     41740
1138                         Bishop International     22420
1139                     Palm Beach International     33100
1140                           Lafayette Regional     29180
1141              Washington Dulles International     47900
1142       Birmingham-Shuttlesworth International     13820
1143                 Billings Logan International     13740
1144        Kona International Airport at Keahole     25900
1145               Syracuse Hancock International     45060
1146                 Salt Lake City International     41620
1147               St Louis Lambert International     41180
1148                        Bradley International     25540
1149                   Indianapolis International     26900
1150                 Chicago O'Hare International     16980
1151                 Chicago O'Hare International     16980
1152                 Chicago O'Hare International     16980
1153                 Chicago O'Hare International     16980
1154                   Palm Springs International     40140
1155                 Chicago O'Hare International     16980
1156                 Chicago O'Hare International     16980
1157                         Denver International     19740
1158                 Chicago O'Hare International     16980
1159                 Chicago O'Hare International     16980
1160                 Chicago O'Hare International     16980
1161                 Chicago O'Hare International     16980
1162                 Chicago O'Hare International     16980
1163                 Chicago O'Hare International     16980
1164                                Lihue Airport     28180
1165                        Memphis International     32820
1166            John Glenn Columbus International     18140
1167                             The Eastern Iowa     16300
1168                       Portland International     38900
1169              Washington Dulles International     47900
1170             Phoenix Sky Harbor International     38060
1171                Buffalo Niagara International     15380
1172                                 Lovell Field     16860
1173            Bozeman Yellowstone International     14580
1174        Louisville Muhammad Ali International     31140
1175                      Nashville International     34980
1176       General Downing - Peoria International     37900
1177         Rogue Valley International - Medford     32780
1178                    San Antonio International     41700
1179              Dallas/Fort Worth International     19100
1180                   Palm Springs International     40140
1181                      Quad City International     19340
1182              Dallas/Fort Worth International     19100
1183                     Ithaca Tompkins Regional     27060
1184                     Burlington International     15540
1185                             The Eastern Iowa     16300
1186             James M Cox/Dayton International     19430
1187                  San Francisco International     41860
1188                 Newark Liberty International     35620
1189                 Theodore Francis Green State     39300
1190                  San Francisco International     41860
1191               Portland International Jetport     38860
1192                   Philadelphia International     37980
1193               St Louis Lambert International     41180
1194                  San Francisco International     41860
1195                 Theodore Francis Green State     39300
1196              Greater Rochester International     40380
1197                      Quad City International     19340
1198            Ronald Reagan Washington National     47900
1199                        Bradley International     25540
1200                          Miami International     33100
1201                          Tampa International     45300
1202   Cincinnati/Northern Kentucky International     17140
1203                        Ontario International     40140
1204                         Tucson International     46060
1205      Northwest Florida Beaches International     37460
1206            Albuquerque International Sunport     10740
1207                                Lihue Airport     28180
1208            Albuquerque International Sunport     10740
1209            Albuquerque International Sunport     10740
1210            Albuquerque International Sunport     10740
1211                         Albany International     10580
1212                        Orlando International     36740
1213                     Palm Beach International     33100
1214              Southwest Florida International     15980
1215              Southwest Florida International     15980
1216                     Sacramento International     40900
1217                         Albany International     10580
1218                     Sacramento International     40900
1219                         Albany International     10580
1220          Rick Husband Amarillo International     11100
1221          Rick Husband Amarillo International     11100
1222     Hartsfield-Jackson Atlanta International     12060
1223     Hartsfield-Jackson Atlanta International     12060
1224                        El Paso International     21340
1225                       McCarran International     29820
1226                    Los Angeles International     31080
1227             Phoenix Sky Harbor International     38060
1228     Hartsfield-Jackson Atlanta International     12060
1229     Hartsfield-Jackson Atlanta International     12060
1230     Hartsfield-Jackson Atlanta International     12060
1231     Hartsfield-Jackson Atlanta International     12060
1232     Hartsfield-Jackson Atlanta International     12060
1233                           Long Beach Airport     31080
1234           Metropolitan Oakland International     41860
1235                 Salt Lake City International     41620
1236     Hartsfield-Jackson Atlanta International     12060
1237     Hartsfield-Jackson Atlanta International     12060
1238     Hartsfield-Jackson Atlanta International     12060
1239     Hartsfield-Jackson Atlanta International     12060
1240     Hartsfield-Jackson Atlanta International     12060
1241     Hartsfield-Jackson Atlanta International     12060
1242                          Tulsa International     46140
1243     Hartsfield-Jackson Atlanta International     12060
1244     Hartsfield-Jackson Atlanta International     12060
1245                              Kahului Airport     27980
1246     Hartsfield-Jackson Atlanta International     12060
1247     Hartsfield-Jackson Atlanta International     12060
1248     Hartsfield-Jackson Atlanta International     12060
1249     Hartsfield-Jackson Atlanta International     12060
1250     Hartsfield-Jackson Atlanta International     12060
1251                Daniel K Inouye International     46520
1252     Hartsfield-Jackson Atlanta International     12060
1253     Hartsfield-Jackson Atlanta International     12060
1254     Hartsfield-Jackson Atlanta International     12060
1255     Hartsfield-Jackson Atlanta International     12060
1256                          Logan International     14460
1257                                    LaGuardia     35620
1258                              Eppley Airfield     36540
1259           Savannah/Hilton Head International     42340
1260             Austin - Bergstrom International     12420
1261                          Miami International     33100
1262                              Eppley Airfield     36540
1263           Metropolitan Oakland International     41860
1264                 Seattle/Tacoma International     42660
1265                   Palm Springs International     40140
1266                      San Diego International     41740
1267             Austin - Bergstrom International     12420
1268             Austin - Bergstrom International     12420
1269             Austin - Bergstrom International     12420
1270             Austin - Bergstrom International     12420
1271             Austin - Bergstrom International     12420
1272             Austin - Bergstrom International     12420
1273             Austin - Bergstrom International     12420
1274             Austin - Bergstrom International     12420
1275             Austin - Bergstrom International     12420
1276             Austin - Bergstrom International     12420
1277             Austin - Bergstrom International     12420
1278             Austin - Bergstrom International     12420
1279             Austin - Bergstrom International     12420
1280             Austin - Bergstrom International     12420
1281             Austin - Bergstrom International     12420
1282             Austin - Bergstrom International     12420
1283             Austin - Bergstrom International     12420
1284             Austin - Bergstrom International     12420
1285                 Theodore Francis Green State     39300
1286                       McCarran International     29820
1287                        Ontario International     40140
1288                        Bradley International     25540
1289                        Bradley International     25540
1290       Birmingham-Shuttlesworth International     13820
1291       Birmingham-Shuttlesworth International     13820
1292       Birmingham-Shuttlesworth International     13820
1293       Birmingham-Shuttlesworth International     13820
1294       Birmingham-Shuttlesworth International     13820
1295       Birmingham-Shuttlesworth International     13820
1296                     Bellingham International     13380
1297                      Nashville International     34980
1298                      Nashville International     34980
1299                      Nashville International     34980
1300                            Montrose Regional     33940
1301                      Nashville International     34980
1302                      Nashville International     34980
1303                      Nashville International     34980
1304                      Nashville International     34980
1305                      Nashville International     34980
1306                     Reno/Tahoe International     39900
1307                      Nashville International     34980
1308                           Long Beach Airport     31080
1309                      Nashville International     34980
1310                      Nashville International     34980
1311                      Nashville International     34980
1312                      Nashville International     34980
1313                      Nashville International     34980
1314                      Nashville International     34980
1315                      Nashville International     34980
1316                      Nashville International     34980
1317                      Nashville International     34980
1318                      Nashville International     34980
1319                      Nashville International     34980
1320                      Nashville International     34980
1321                      Nashville International     34980
1322                      Nashville International     34980
1323                      Nashville International     34980
1324                      Nashville International     34980
1325                Daniel K Inouye International     46520
1326                              Kahului Airport     27980
1327                      Nashville International     34980
1328                      Nashville International     34980
1329                      Nashville International     34980
1330                      Nashville International     34980
1331                      Nashville International     34980
1332                      Nashville International     34980
1333                Buffalo Niagara International     15380
1334                          Miami International     33100
1335                           Boise Air Terminal     14260
1336                           Boise Air Terminal     14260
1337                           Boise Air Terminal     14260
1338                           Boise Air Terminal     14260
1339                     Reno/Tahoe International     39900
1340                            Dallas Love Field     19100
1341                              William P Hobby     26420
1342                 Charleston AFB/International     16700
1343         Greenville-Spartanburg International     43900
1344                   Indianapolis International     26900
1345                   Jacksonville International     27260
1346             Phoenix Sky Harbor International     38060
1347           Savannah/Hilton Head International     42340
1348                         Denver International     19740
1349                    Los Angeles International     31080
1350            Minneapolis-St Paul International     33460
1351             Phoenix Sky Harbor International     38060
1352      Norman Y. Mineta San Jose International     41940
1353                          Logan International     14460
1354             Sarasota/Bradenton International     35840
1355                Buffalo Niagara International     15380
1356                Buffalo Niagara International     15380
1357                Buffalo Niagara International     15380
1358                                     Bob Hope     31080
1359    Louis Armstrong New Orleans International     35380
1360                 Raleigh-Durham International     39580
1361                          Tampa International     45300
1362                            Will Rogers World     36420
1363                                     Bob Hope     31080
1364                                     Bob Hope     31080
1365                                     Bob Hope     31080
1366                                     Bob Hope     31080
1367                                     Bob Hope     31080
1368                                     Bob Hope     31080
1369           Baltimore/Washington International     12580
1370           Baltimore/Washington International     12580
1371                 Seattle/Tacoma International     42660
1372           Baltimore/Washington International     12580
1373           Baltimore/Washington International     12580
1374           Baltimore/Washington International     12580
1375           Baltimore/Washington International     12580
1376           Baltimore/Washington International     12580
1377           Baltimore/Washington International     12580
1378           Baltimore/Washington International     12580
1379           Baltimore/Washington International     12580
1380           Baltimore/Washington International     12580
1381           Baltimore/Washington International     12580
1382               Luis Munoz Marin International     41980
1383           Baltimore/Washington International     12580
1384           Baltimore/Washington International     12580
1385           Baltimore/Washington International     12580
1386        Kona International Airport at Keahole     25900
1387           Baltimore/Washington International     12580
1388              Washington Dulles International     47900
1389           Baltimore/Washington International     12580
1390           Baltimore/Washington International     12580
1391           Baltimore/Washington International     12580
1392        Kona International Airport at Keahole     25900
1393           Baltimore/Washington International     12580
1394           Baltimore/Washington International     12580
1395           Baltimore/Washington International     12580
1396           Baltimore/Washington International     12580
1397           Baltimore/Washington International     12580
1398           Baltimore/Washington International     12580
1399           Baltimore/Washington International     12580
1400              Southwest Florida International     15980
1401            Bozeman Yellowstone International     14580
1402                    Kansas City International     28140
1403               General Mitchell International     33340
1404                 Charleston AFB/International     16700
1405           City of Colorado Springs Municipal     17820
1406                 Charleston AFB/International     16700
1407                    Los Angeles International     31080
1408              Southwest Florida International     15980
1409              Cleveland-Hopkins International     17460
1410              Cleveland-Hopkins International     17460
1411                Daniel K Inouye International     46520
1412              Cleveland-Hopkins International     17460
1413              Cleveland-Hopkins International     17460
1414            John Glenn Columbus International     18140
1415            John Glenn Columbus International     18140
1416                         Tucson International     46060
1417            John Glenn Columbus International     18140
1418             Phoenix Sky Harbor International     38060
1419      Northwest Florida Beaches International     37460
1420            John Glenn Columbus International     18140
1421            John Glenn Columbus International     18140
1422            John Glenn Columbus International     18140
1423            John Glenn Columbus International     18140
1424            John Glenn Columbus International     18140
1425            John Glenn Columbus International     18140
1426                      Santa Barbara Municipal     42200
1427           City of Colorado Springs Municipal     17820
1428           City of Colorado Springs Municipal     17820
1429                 Corpus Christi International     18580
1430              Southwest Florida International     15980
1431                        Spokane International     44060
1432           Metropolitan Oakland International     41860
1433   Cincinnati/Northern Kentucky International     17140
1434   Cincinnati/Northern Kentucky International     17140
1435   Cincinnati/Northern Kentucky International     17140
1436                          Tampa International     45300
1437   Cincinnati/Northern Kentucky International     17140
1438                            Dallas Love Field     19100
1439                           Long Beach Airport     31080
1440                            Dallas Love Field     19100
1441           Metropolitan Oakland International     41860
1442                            Dallas Love Field     19100
1443                            Dallas Love Field     19100
1444                            Dallas Love Field     19100
1445                            Dallas Love Field     19100
1446                            Dallas Love Field     19100
1447                            Dallas Love Field     19100
1448                            Dallas Love Field     19100
1449                            Dallas Love Field     19100
1450                            Dallas Love Field     19100
1451                            Dallas Love Field     19100
1452                            Dallas Love Field     19100
1453                            Dallas Love Field     19100
1454                            Dallas Love Field     19100
1455                            Dallas Love Field     19100
1456                            Dallas Love Field     19100
1457                            Dallas Love Field     19100
1458                            Dallas Love Field     19100
1459                            Dallas Love Field     19100
1460                            Dallas Love Field     19100
1461                            Dallas Love Field     19100
1462                            Dallas Love Field     19100
1463                            Dallas Love Field     19100
1464                            Dallas Love Field     19100
1465                            Dallas Love Field     19100
1466                            Dallas Love Field     19100
1467                            Dallas Love Field     19100
1468                            Dallas Love Field     19100
1469                            Dallas Love Field     19100
1470                            Dallas Love Field     19100
1471                            Dallas Love Field     19100
1472                            Dallas Love Field     19100
1473                            Dallas Love Field     19100
1474                            Dallas Love Field     19100
1475                            Dallas Love Field     19100
1476           Metropolitan Oakland International     41860
1477             Sarasota/Bradenton International     35840
1478            Ronald Reagan Washington National     47900
1479            Ronald Reagan Washington National     47900
1480            Ronald Reagan Washington National     47900
1481                         Denver International     19740
1482            Ronald Reagan Washington National     47900
1483            Ronald Reagan Washington National     47900
1484            Ronald Reagan Washington National     47900
1485            Ronald Reagan Washington National     47900
1486            Ronald Reagan Washington National     47900
1487            Ronald Reagan Washington National     47900
1488            Ronald Reagan Washington National     47900
1489           Baltimore/Washington International     12580
1490            Ronald Reagan Washington National     47900
1491                         Denver International     19740
1492                                    LaGuardia     35620
1493                         Denver International     19740
1494                        Long Island MacArthur     35620
1495                         Denver International     19740
1496             Sarasota/Bradenton International     35840
1497                         Denver International     19740
1498                         Denver International     19740
1499                         Denver International     19740
1500             Sarasota/Bradenton International     35840
1501                         Denver International     19740
1502                         Denver International     19740
1503                         Denver International     19740
1504                        Orlando International     36740
1505                   Philadelphia International     37980
1506                         Denver International     19740
1507                         Denver International     19740
1508                         Denver International     19740
1509      Fort Lauderdale-Hollywood International     33100
1510                         Denver International     19740
1511                         Denver International     19740
1512                         Denver International     19740
1513                         Denver International     19740
1514                         Denver International     19740
1515                         Denver International     19740
1516                         Denver International     19740
1517                         Denver International     19740
1518                     Sacramento International     40900
1519                         Denver International     19740
1520                         Denver International     19740
1521                         Denver International     19740
1522                         Denver International     19740
1523                         Denver International     19740
1524                         Denver International     19740
1525                         Denver International     19740
1526                         Denver International     19740
1527                         Denver International     19740
1528                          Tampa International     45300
1529         George Bush Intercontinental/Houston     26420
1530                              William P Hobby     26420
1531                      San Diego International     41740
1532                   Detroit Metro Wayne County     19820
1533                   Detroit Metro Wayne County     19820
1534                   Detroit Metro Wayne County     19820
1535            Albuquerque International Sunport     10740
1536                   Philadelphia International     37980
1537                        El Paso International     21340
1538                        El Paso International     21340
1539                        El Paso International     21340
1540                        El Paso International     21340
1541                        El Paso International     21340
1542      Norman Y. Mineta San Jose International     41940
1543                          Tampa International     45300
1544                   Jacksonville International     27260
1545                          Tampa International     45300
1546                        El Paso International     21340
1547                        El Paso International     21340
1548                      San Diego International     41740
1549                           Mahlon Sweet Field     21660
1550                           Mahlon Sweet Field     21660
1551                Fresno Yosemite International     23420
1552                         Denver International     19740
1553                       McCarran International     29820
1554      Norman Y. Mineta San Jose International     41940
1555      Fort Lauderdale-Hollywood International     33100
1556             Austin - Bergstrom International     12420
1557      Fort Lauderdale-Hollywood International     33100
1558      Fort Lauderdale-Hollywood International     33100
1559                 Theodore Francis Green State     39300
1560      Fort Lauderdale-Hollywood International     33100
1561      Fort Lauderdale-Hollywood International     33100
1562      Fort Lauderdale-Hollywood International     33100
1563      Fort Lauderdale-Hollywood International     33100
1564             John Wayne Airport-Orange County     31080
1565      Fort Lauderdale-Hollywood International     33100
1566      Fort Lauderdale-Hollywood International     33100
1567      Fort Lauderdale-Hollywood International     33100
1568                        Norfolk International     47260
1569                          Tulsa International     46140
1570                        Spokane International     44060
1571                   Manchester-Boston Regional     31700
1572                        Spokane International     44060
1573                        Spokane International     44060
1574             Phoenix Sky Harbor International     38060
1575                        Spokane International     44060
1576                 Gerald R. Ford International     24340
1577         Greenville-Spartanburg International     43900
1578      Norman Y. Mineta San Jose International     41940
1579                    Los Angeles International     31080
1580                 Salt Lake City International     41620
1581                      Nashville International     34980
1582                              William P Hobby     26420
1583                 Raleigh-Durham International     39580
1584                                    LaGuardia     35620
1585                              William P Hobby     26420
1586                              William P Hobby     26420
1587                              William P Hobby     26420
1588                              William P Hobby     26420
1589                              William P Hobby     26420
1590                              William P Hobby     26420
1591                              William P Hobby     26420
1592                              William P Hobby     26420
1593                              William P Hobby     26420
1594                                    LaGuardia     35620
1595                              William P Hobby     26420
1596                              William P Hobby     26420
1597                              William P Hobby     26420
1598                              William P Hobby     26420
1599                              William P Hobby     26420
1600                              William P Hobby     26420
1601                              William P Hobby     26420
1602                              William P Hobby     26420
1603                              William P Hobby     26420
1604                              William P Hobby     26420
1605                              William P Hobby     26420
1606                              William P Hobby     26420
1607                              William P Hobby     26420
1608                              William P Hobby     26420
1609                              William P Hobby     26420
1610                              William P Hobby     26420
1611                              William P Hobby     26420
1612                              William P Hobby     26420
1613                              William P Hobby     26420
1614                              William P Hobby     26420
1615                        Long Island MacArthur     35620
1616                              William P Hobby     26420
1617                              William P Hobby     26420
1618                              William P Hobby     26420
1619                              William P Hobby     26420
1620     Jackson Medgar Wiley Evers International     27140
1621                         Valley International     15180
1622           City of Colorado Springs Municipal     17820
1623                 Salt Lake City International     41620
1624           Metropolitan Oakland International     41860
1625                     Sacramento International     40900
1626                 Gerald R. Ford International     24340
1627         George Bush Intercontinental/Houston     26420
1628                        Orlando International     36740
1629         George Bush Intercontinental/Houston     26420
1630                        Wichita Mid-Continent     48620
1631                        Wichita Mid-Continent     48620
1632               Portland International Jetport     38860
1633                   Indianapolis International     26900
1634                   Indianapolis International     26900
1635                   Indianapolis International     26900
1636                   Indianapolis International     26900
1637                   Indianapolis International     26900
1638                        Long Island MacArthur     35620
1639                          Miami International     33100
1640           Eglin AFB Destin Fort Walton Beach     18880
1641                   Manchester-Boston Regional     31700
1642                   Jacksonville International     27260
1643                   Jacksonville International     27260
1644                   Jacksonville International     27260
1645     Hartsfield-Jackson Atlanta International     12060
1646           Baltimore/Washington International     12580
1647                            Will Rogers World     36420
1648                       McCarran International     29820
1649                       McCarran International     29820
1650                   Indianapolis International     26900
1651    Louis Armstrong New Orleans International     35380
1652                     Pittsburgh International     38300
1653                       McCarran International     29820
1654                     Pittsburgh International     38300
1655                          Tampa International     45300
1656                       McCarran International     29820
1657                       McCarran International     29820
1658     Hartsfield-Jackson Atlanta International     12060
1659                 Chicago Midway International     16980
1660                       McCarran International     29820
1661                       McCarran International     29820
1662                     Pittsburgh International     38300
1663                       McCarran International     29820
1664                       McCarran International     29820
1665                       McCarran International     29820
1666                       McCarran International     29820
1667                       McCarran International     29820
1668                       McCarran International     29820
1669                       McCarran International     29820
1670                       McCarran International     29820
1671                       McCarran International     29820
1672                       McCarran International     29820
1673                       McCarran International     29820
1674                       McCarran International     29820
1675                       McCarran International     29820
1676                       McCarran International     29820
1677                       McCarran International     29820
1678                       McCarran International     29820
1679                    Los Angeles International     31080
1680                    Los Angeles International     31080
1681                                Lihue Airport     28180
1682    Louis Armstrong New Orleans International     35380
1683                    San Antonio International     41700
1684                    Los Angeles International     31080
1685                          Tulsa International     46140
1686                        Orlando International     36740
1687      Fort Lauderdale-Hollywood International     33100
1688                    Los Angeles International     31080
1689                    Los Angeles International     31080
1690                    Los Angeles International     31080
1691                    Los Angeles International     31080
1692                        Ontario International     40140
1693                 Raleigh-Durham International     39580
1694          Lubbock Preston Smith International     31180
1695                            Dallas Love Field     19100
1696                              William P Hobby     26420
1697                                    LaGuardia     35620
1698    Louis Armstrong New Orleans International     35380
1699                            Will Rogers World     36420
1700                                    LaGuardia     35620
1701                                    LaGuardia     35620
1702                           Long Beach Airport     31080
1703                 Chicago Midway International     16980
1704                           Long Beach Airport     31080
1705             John Wayne Airport-Orange County     31080
1706                           Long Beach Airport     31080
1707                           Long Beach Airport     31080
1708                           Long Beach Airport     31080
1709                        Ontario International     40140
1710                           Long Beach Airport     31080
1711                           Long Beach Airport     31080
1712                           Long Beach Airport     31080
1713                           Long Beach Airport     31080
1714                           Long Beach Airport     31080
1715                                  Adams Field     30780
1716     Midland International Air and Space Port     33260
1717     Midland International Air and Space Port     33260
1718                    Kansas City International     28140
1719                    Kansas City International     28140
1720             Sarasota/Bradenton International     35840
1721                    Kansas City International     28140
1722                    Kansas City International     28140
1723                    Kansas City International     28140
1724                    Kansas City International     28140
1725                    Kansas City International     28140
1726                    Kansas City International     28140
1727                    Kansas City International     28140
1728                Buffalo Niagara International     15380
1729            Bozeman Yellowstone International     14580
1730                        Ontario International     40140
1731                 Seattle/Tacoma International     42660
1732                Fresno Yosemite International     23420
1733             Phoenix Sky Harbor International     38060
1734                        Orlando International     36740
1735                          Logan International     14460
1736                     Des Moines International     19780
1737                      San Diego International     41740
1738                        Orlando International     36740
1739                        Orlando International     36740
1740                        Orlando International     36740
1741                        Orlando International     36740
1742                        Orlando International     36740
1743                        Orlando International     36740
1744                        Orlando International     36740
1745                        Orlando International     36740
1746                        Orlando International     36740
1747                        Orlando International     36740
1748                                Lihue Airport     28180
1749                        Orlando International     36740
1750                        Orlando International     36740
1751                 Chicago Midway International     16980
1752                 Chicago Midway International     16980
1753                 Chicago Midway International     16980
1754                 Chicago Midway International     16980
1755                 Chicago Midway International     16980
1756                 Chicago Midway International     16980
1757                 Chicago Midway International     16980
1758                 Chicago Midway International     16980
1759                 Chicago Midway International     16980
1760                 Chicago Midway International     16980
1761                 Chicago Midway International     16980
1762                 Chicago Midway International     16980
1763                 Chicago Midway International     16980
1764                 Chicago Midway International     16980
1765                 Chicago Midway International     16980
1766                 Chicago Midway International     16980
1767                 Chicago Midway International     16980
1768                 Chicago Midway International     16980
1769                 Chicago Midway International     16980
1770                 Chicago Midway International     16980
1771                 Chicago Midway International     16980
1772                 Chicago Midway International     16980
1773                 Chicago Midway International     16980
1774                 Chicago Midway International     16980
1775                 Chicago Midway International     16980
1776                 Chicago Midway International     16980
1777                 Chicago Midway International     16980
1778                 Chicago Midway International     16980
1779                 Chicago Midway International     16980
1780                 Chicago Midway International     16980
1781                 Chicago Midway International     16980
1782               St Louis Lambert International     41180
1783                 Chicago Midway International     16980
1784                 Chicago Midway International     16980
1785                 Chicago Midway International     16980
1786                 Chicago Midway International     16980
1787                 Chicago Midway International     16980
1788                 Chicago Midway International     16980
1789                 Chicago Midway International     16980
1790                 Chicago Midway International     16980
1791                 Chicago Midway International     16980
1792                 Chicago Midway International     16980
1793                 Chicago Midway International     16980
1794                 Chicago Midway International     16980
1795                 Chicago Midway International     16980
1796                 Chicago Midway International     16980
1797                 Chicago Midway International     16980
1798                 Chicago Midway International     16980
1799                 Chicago Midway International     16980
1800                 Chicago Midway International     16980
1801                        Memphis International     32820
1802                        Memphis International     32820
1803                        Memphis International     32820
1804                        Memphis International     32820
1805                        Memphis International     32820
1806                    San Antonio International     41700
1807            Minneapolis-St Paul International     33460
1808                          Miami International     33100
1809                          Miami International     33100
1810                    Kansas City International     28140
1811               General Mitchell International     33340
1812               General Mitchell International     33340
1813               General Mitchell International     33340
1814               General Mitchell International     33340
1815               General Mitchell International     33340
1816            Minneapolis-St Paul International     33460
1817              Southwest Florida International     15980
1818                      San Diego International     41740
1819    Louis Armstrong New Orleans International     35380
1820    Louis Armstrong New Orleans International     35380
1821    Louis Armstrong New Orleans International     35380
1822    Louis Armstrong New Orleans International     35380
1823    Louis Armstrong New Orleans International     35380
1824    Louis Armstrong New Orleans International     35380
1825    Louis Armstrong New Orleans International     35380
1826    Louis Armstrong New Orleans International     35380
1827           City of Colorado Springs Municipal     17820
1828    Louis Armstrong New Orleans International     35380
1829    Louis Armstrong New Orleans International     35380
1830    Louis Armstrong New Orleans International     35380
1831                          Tulsa International     46140
1832                   Myrtle Beach International     34820
1833                   Myrtle Beach International     34820
1834           Metropolitan Oakland International     41860
1835           Metropolitan Oakland International     41860
1836           Metropolitan Oakland International     41860
1837           Metropolitan Oakland International     41860
1838                      San Diego International     41740
1839           Metropolitan Oakland International     41860
1840                   Indianapolis International     26900
1841           Metropolitan Oakland International     41860
1842           Metropolitan Oakland International     41860
1843           Metropolitan Oakland International     41860
1844      Norman Y. Mineta San Jose International     41940
1845           Metropolitan Oakland International     41860
1846           Metropolitan Oakland International     41860
1847           Metropolitan Oakland International     41860
1848           Metropolitan Oakland International     41860
1849           Metropolitan Oakland International     41860
1850                     Sacramento International     40900
1851                            Will Rogers World     36420
1852                            Will Rogers World     36420
1853                            Will Rogers World     36420
1854                              Kahului Airport     27980
1855             Sarasota/Bradenton International     35840
1856                              Eppley Airfield     36540
1857                              Eppley Airfield     36540
1858                              Eppley Airfield     36540
1859                    San Antonio International     41700
1860                        Ontario International     40140
1861                        Ontario International     40140
1862           Savannah/Hilton Head International     42340
1863                 Chicago O'Hare International     16980
1864                 Chicago O'Hare International     16980
1865                 Chicago O'Hare International     16980
1866                        Norfolk International     47260
1867                        Norfolk International     47260
1868                        Norfolk International     47260
1869                        Norfolk International     47260
1870                        Bradley International     25540
1871                              Eppley Airfield     36540
1872                       Portland International     38900
1873                          Tampa International     45300
1874                                Lihue Airport     28180
1875                  San Francisco International     41860
1876                   Philadelphia International     37980
1877                          Miami International     33100
1878             Phoenix Sky Harbor International     38060
1879               General Mitchell International     33340
1880             Phoenix Sky Harbor International     38060
1881     Hartsfield-Jackson Atlanta International     12060
1882             Phoenix Sky Harbor International     38060
1883             Phoenix Sky Harbor International     38060
1884             Phoenix Sky Harbor International     38060
1885             Phoenix Sky Harbor International     38060
1886             Phoenix Sky Harbor International     38060
1887             Phoenix Sky Harbor International     38060
1888             Phoenix Sky Harbor International     38060
1889             Phoenix Sky Harbor International     38060
1890             Phoenix Sky Harbor International     38060
1891             Phoenix Sky Harbor International     38060
1892             Phoenix Sky Harbor International     38060
1893             Phoenix Sky Harbor International     38060
1894             Phoenix Sky Harbor International     38060
1895             Phoenix Sky Harbor International     38060
1896                Daniel K Inouye International     46520
1897             Phoenix Sky Harbor International     38060
1898             Phoenix Sky Harbor International     38060
1899             Phoenix Sky Harbor International     38060
1900             Phoenix Sky Harbor International     38060
1901             Phoenix Sky Harbor International     38060
1902             Phoenix Sky Harbor International     38060
1903                     Pittsburgh International     38300
1904                     Pittsburgh International     38300
1905                     Pittsburgh International     38300
1906                     Pittsburgh International     38300
1907                     Pittsburgh International     38300
1908                     Pittsburgh International     38300
1909                Pensacola Gulf Coast Regional     37860
1910                Pensacola Gulf Coast Regional     37860
1911                Pensacola Gulf Coast Regional     37860
1912                   Palm Springs International     40140
1913                   Palm Springs International     40140
1914                 Raleigh-Durham International     39580
1915           Metropolitan Oakland International     41860
1916                 Raleigh-Durham International     39580
1917               Luis Munoz Marin International     41980
1918                    San Antonio International     41700
1919                 Raleigh-Durham International     39580
1920                       Richmond International     40060
1921                     Reno/Tahoe International     39900
1922                     Reno/Tahoe International     39900
1923                     Reno/Tahoe International     39900
1924                     Reno/Tahoe International     39900
1925              Greater Rochester International     40380
1926              Greater Rochester International     40380
1927                   Detroit Metro Wayne County     19820
1928              Southwest Florida International     15980
1929              Southwest Florida International     15980
1930              Southwest Florida International     15980
1931              Southwest Florida International     15980
1932              Southwest Florida International     15980
1933                      San Diego International     41740
1934           Eglin AFB Destin Fort Walton Beach     18880
1935                 Charleston AFB/International     16700
1936                        Spokane International     44060
1937                      San Diego International     41740
1938                      San Diego International     41740
1939                      San Diego International     41740
1940            Minneapolis-St Paul International     33460
1941                         Tucson International     46060
1942                    San Antonio International     41700
1943                    San Antonio International     41700
1944                    San Antonio International     41700
1945                    San Antonio International     41700
1946                            Dallas Love Field     19100
1947                      Santa Barbara Municipal     42200
1948        Louisville Muhammad Ali International     31140
1949        Louisville Muhammad Ali International     31140
1950        Louisville Muhammad Ali International     31140
1951        Louisville Muhammad Ali International     31140
1952        Louisville Muhammad Ali International     31140
1953             John Wayne Airport-Orange County     31080
1954             John Wayne Airport-Orange County     31080
1955                 Raleigh-Durham International     39580
1956                  San Francisco International     41860
1957                  San Francisco International     41860
1958      Norman Y. Mineta San Jose International     41940
1959      Norman Y. Mineta San Jose International     41940
1960                Daniel K Inouye International     46520
1961      Norman Y. Mineta San Jose International     41940
1962                              Kahului Airport     27980
1963                              Kahului Airport     27980
1964      Norman Y. Mineta San Jose International     41940
1965      Norman Y. Mineta San Jose International     41940
1966      Norman Y. Mineta San Jose International     41940
1967      Norman Y. Mineta San Jose International     41940
1968               Luis Munoz Marin International     41980
1969                 Salt Lake City International     41620
1970                 Salt Lake City International     41620
1971                 Salt Lake City International     41620
1972                 Salt Lake City International     41620
1973                     Sacramento International     40900
1974                    Kansas City International     28140
1975                     Sacramento International     40900
1976                     Sacramento International     40900
1977        Kona International Airport at Keahole     25900
1978                     Sacramento International     40900
1979                     Sacramento International     40900
1980                     Sacramento International     40900
1981                     Sacramento International     40900
1982             John Wayne Airport-Orange County     31080
1983    Louis Armstrong New Orleans International     35380
1984             John Wayne Airport-Orange County     31080
1985             Sarasota/Bradenton International     35840
1986             Sarasota/Bradenton International     35840
1987             Sarasota/Bradenton International     35840
1988             Sarasota/Bradenton International     35840
1989               St Louis Lambert International     41180
1990               St Louis Lambert International     41180
1991               St Louis Lambert International     41180
1992               St Louis Lambert International     41180
1993               St Louis Lambert International     41180
1994               St Louis Lambert International     41180
1995               St Louis Lambert International     41180
1996               St Louis Lambert International     41180
1997               St Louis Lambert International     41180
1998               St Louis Lambert International     41180
1999               St Louis Lambert International     41180
2000                        Bradley International     25540
2001               St Louis Lambert International     41180
2002               St Louis Lambert International     41180
2003               St Louis Lambert International     41180
2004               St Louis Lambert International     41180
2005               St Louis Lambert International     41180
2006               St Louis Lambert International     41180
2007               St Louis Lambert International     41180
2008               St Louis Lambert International     41180
2009               St Louis Lambert International     41180
2010               St Louis Lambert International     41180
2011               St Louis Lambert International     41180
2012               St Louis Lambert International     41180
2013               St Louis Lambert International     41180
2014               St Louis Lambert International     41180
2015               St Louis Lambert International     41180
2016               St Louis Lambert International     41180
2017                          Tampa International     45300
2018               Syracuse Hancock International     45060
2019                         Denver International     19740
2020                          Tampa International     45300
2021                          Tampa International     45300
2022                          Tampa International     45300
2023                          Tampa International     45300
2024                          Tampa International     45300
2025                          Tampa International     45300
2026                          Tampa International     45300
2027                          Tampa International     45300
2028                          Tampa International     45300
2029                         Tucson International     46060
2030                         Tucson International     46060
2031           Eglin AFB Destin Fort Walton Beach     18880
2032               General Mitchell International     33340
2033                          Shreveport Regional     43340
2034         Rogue Valley International - Medford     32780
2035                        Orlando International     36740
2036              Dallas/Fort Worth International     19100
2037                     Sacramento International     40900
2038   Cincinnati/Northern Kentucky International     17140
2039                   Jacksonville International     27260
2040                      San Diego International     41740
2041                 Raleigh-Durham International     39580
2042              Washington Dulles International     47900
2043              Washington Dulles International     47900
2044         George Bush Intercontinental/Houston     26420
2045         George Bush Intercontinental/Houston     26420
2046                                    LaGuardia     35620
2047                   Philadelphia International     37980
2048             Phoenix Sky Harbor International     38060
2049             Phoenix Sky Harbor International     38060
2050             John Wayne Airport-Orange County     31080
2051                Pensacola Gulf Coast Regional     37860
2052            Minneapolis-St Paul International     33460
2053               Luis Munoz Marin International     41980
2054              Washington Dulles International     47900
2055                         Bangor International     12620
2056                Buffalo Niagara International     15380
2057                     Harrisburg International     25420
2058                   Jacksonville International     27260
2059                          Logan International     14460
2060   Cincinnati/Northern Kentucky International     17140
2061                          Logan International     14460
2062                         Denver International     19740
2063    Louis Armstrong New Orleans International     35380
2064                     Des Moines International     19780
2065                        Norfolk International     47260
2066              Dallas/Fort Worth International     19100
2067                     Palm Beach International     33100
2068                          Logan International     14460
2069                          Logan International     14460
2070                          Logan International     14460
2071                  San Francisco International     41860
2072                   Manchester-Boston Regional     31700
2073                 Charleston AFB/International     16700
2074                          Tulsa International     46140
2075              Cleveland-Hopkins International     17460
2076              Cleveland-Hopkins International     17460
2077              Charlotte Douglas International     16740
2078              Charlotte Douglas International     16740
2079                   Indianapolis International     26900
2080            John Glenn Columbus International     18140
2081            John Glenn Columbus International     18140
2082            John Glenn Columbus International     18140
2083   Cincinnati/Northern Kentucky International     17140
2084                     Sacramento International     40900
2085            Ronald Reagan Washington National     47900
2086            Ronald Reagan Washington National     47900
2087            Ronald Reagan Washington National     47900
2088            Ronald Reagan Washington National     47900
2089             Dane County Regional-Truax Field     31540
2090                 Newark Liberty International     35620
2091                 Newark Liberty International     35620
2092                 Newark Liberty International     35620
2093                 Newark Liberty International     35620
2094                 Newark Liberty International     35620
2095                 Newark Liberty International     35620
2096                Pensacola Gulf Coast Regional     37860
2097                 Piedmont Triad International     24660
2098              Washington Dulles International     47900
2099              Washington Dulles International     47900
2100                     Wilmington International     48900
2101                   Indianapolis International     26900
2102                  Daytona Beach International     19660
2103                   Indianapolis International     26900
2104               General Mitchell International     33340
2105        Veterans Airport of Southern Illinois     16060
2106              Dallas/Fort Worth International     19100
2107                John F. Kennedy International     35620
2108      Northwest Florida Beaches International     37460
2109                John F. Kennedy International     35620
2110             Phoenix Sky Harbor International     38060
2111                                 McGhee Tyson     28940
2112                                    LaGuardia     35620
2113                John F. Kennedy International     35620
2114                John F. Kennedy International     35620
2115                John F. Kennedy International     35620
2116                                    LaGuardia     35620
2117                                    LaGuardia     35620
2118                John F. Kennedy International     35620
2119                John F. Kennedy International     35620
2120                John F. Kennedy International     35620
2121                                    LaGuardia     35620
2122                                    LaGuardia     35620
2123                                    LaGuardia     35620
2124         Greenville-Spartanburg International     43900
2125                        Norfolk International     47260
2126                              Eppley Airfield     36540
2127                        Norfolk International     47260
2128                   Philadelphia International     37980
2129                     Pittsburgh International     38300
2130                     Pittsburgh International     38300
2131                      Fairbanks International     21820
2132                     Pittsburgh International     38300
2133           Savannah/Hilton Head International     42340
2134           Savannah/Hilton Head International     42340
2135        Louisville Muhammad Ali International     31140
2136                 Raleigh-Durham International     39580
2137                 Raleigh-Durham International     39580
2138                 Theodore Francis Green State     39300
2139                          Logan International     14460
2140        Louisville Muhammad Ali International     31140
2141            John Glenn Columbus International     18140
2142              Charlotte Douglas International     16740
2143                 Charleston AFB/International     16700
2144              Cleveland-Hopkins International     17460
2145                    Charlottesville Albemarle     16820
2146                        Akron-Canton Regional     10420
2147              Washington Dulles International     47900
2148                 Seattle/Tacoma International     42660
2149         Sioux Gateway Brig Gen Bud Day Field     43580
2150                 Chicago O'Hare International     16980
2151                 Chicago O'Hare International     16980
2152                       McCarran International     29820
2153                    San Antonio International     41700
2154                       Phoenix - Mesa Gateway     38060
2155            Minneapolis-St Paul International     33460
2156            Minneapolis-St Paul International     33460
2157                     Chippewa Valley Regional     20740
2158                         Albany International     10580
2159                     Wilmington International     48900
2160                         Denver International     19740
2161            Ronald Reagan Washington National     47900
2162                      San Diego International     41740
2163                   Myrtle Beach International     34820
2164              Southwest Florida International     15980
2165                       Richmond International     40060
2166                 Piedmont Triad International     24660
2167               Syracuse Hancock International     45060
2168                    Kansas City International     28140
2169                         Denver International     19740
2170                 Gerald R. Ford International     24340
2171  Huntsville International-Carl T Jones Field     26620
2172         George Bush Intercontinental/Houston     26420
2173                    Los Angeles International     31080
2174      Fort Lauderdale-Hollywood International     33100
2175                Pensacola Gulf Coast Regional     37860
2176                         Denver International     19740
2177                Pensacola Gulf Coast Regional     37860
2178                              Tweed New Haven     35300
2179                              Tweed New Haven     35300
2180                        Orlando International     36740
2181                    Los Angeles International     31080
2182              Aspen Pitkin County Sardy Field     24060
2183       Birmingham-Shuttlesworth International     13820
2184                                    LaGuardia     35620
2185               General Mitchell International     33340
2186            Ronald Reagan Washington National     47900
2187            Ronald Reagan Washington National     47900
2188              Dallas/Fort Worth International     19100
2189              Dallas/Fort Worth International     19100
2190              Dallas/Fort Worth International     19100
2191                Daniel K Inouye International     46520
2192                John F. Kennedy International     35620
2193     Hartsfield-Jackson Atlanta International     12060
2194                 Chicago O'Hare International     16980
2195                   Philadelphia International     37980
2196                   Philadelphia International     37980
2197             Phoenix Sky Harbor International     38060
2198             Phoenix Sky Harbor International     38060
2199                      San Diego International     41740
2200                      Fairbanks International     21820
2201                       Portland International     38900
2202                          Logan International     14460
2203                          Logan International     14460
2204                                    LaGuardia     35620
2205                        Ontario International     40140
2206                  San Francisco International     41860
2207     Hartsfield-Jackson Atlanta International     12060
2208     Hartsfield-Jackson Atlanta International     12060
2209     Hartsfield-Jackson Atlanta International     12060
2210     Hartsfield-Jackson Atlanta International     12060
2211     Hartsfield-Jackson Atlanta International     12060
2212     Hartsfield-Jackson Atlanta International     12060
2213                          Logan International     14460
2214            Ronald Reagan Washington National     47900
2215                   Detroit Metro Wayne County     19820
2216                   Detroit Metro Wayne County     19820
2217                   Detroit Metro Wayne County     19820
2218                John F. Kennedy International     35620
2219                John F. Kennedy International     35620
2220                John F. Kennedy International     35620
2221                John F. Kennedy International     35620
2222                    Los Angeles International     31080
2223                    Los Angeles International     31080
2224                    Los Angeles International     31080
2225            Minneapolis-St Paul International     33460
2226            Minneapolis-St Paul International     33460
2227      Norman Y. Mineta San Jose International     41940
2228                 Salt Lake City International     41620
2229                 Salt Lake City International     41620
2230                 Salt Lake City International     41620
2231                          Tampa International     45300
2232                          Tampa International     45300
2233                    Los Angeles International     31080
2234                   Detroit Metro Wayne County     19820
2235                 Chicago O'Hare International     16980
2236                         Denver International     19740
2237                John F. Kennedy International     35620
2238         George Bush Intercontinental/Houston     26420
2239         George Bush Intercontinental/Houston     26420
2240         George Bush Intercontinental/Houston     26420
2241         George Bush Intercontinental/Houston     26420
2242                 Raleigh-Durham International     39580
2243                  San Francisco International     41860
2244         George Bush Intercontinental/Houston     26420
2245                 Newark Liberty International     35620
2246                                    LaGuardia     35620
2247                 Chicago O'Hare International     16980
2248                       Richmond International     40060
2249                   Philadelphia International     37980
2250                    Kansas City International     28140
2251              Dallas/Fort Worth International     19100
2252                 Gerald R. Ford International     24340
2253                   Philadelphia International     37980
2254                   Myrtle Beach International     34820
2255                      Fairbanks International     21820
2256                                  Agana Field      <NA>
2257        Francisco C. Ada Saipan International      <NA>
2258                 Seattle/Tacoma International     42660
2259                 Seattle/Tacoma International     42660
2260                 Salt Lake City International     41620
2261                         Denver International     19740
2262              Washington Dulles International     47900
2263                  Lehigh Valley International     10900
2264     Hartsfield-Jackson Atlanta International     12060
2265     Hartsfield-Jackson Atlanta International     12060
2266     Hartsfield-Jackson Atlanta International     12060
2267     Hartsfield-Jackson Atlanta International     12060
2268     Hartsfield-Jackson Atlanta International     12060
2269     Hartsfield-Jackson Atlanta International     12060
2270     Hartsfield-Jackson Atlanta International     12060
2271     Hartsfield-Jackson Atlanta International     12060
2272                         Bangor International     12620
2273                          Logan International     14460
2274                          Logan International     14460
2275                    Charlottesville Albemarle     16820
2276                 Charleston AFB/International     16700
2277   Cincinnati/Northern Kentucky International     17140
2278                     Harrisburg International     25420
2279                   Detroit Metro Wayne County     19820
2280                   Detroit Metro Wayne County     19820
2281                   Detroit Metro Wayne County     19820
2282                   Detroit Metro Wayne County     19820
2283                   Detroit Metro Wayne County     19820
2284                   Detroit Metro Wayne County     19820
2285                   Detroit Metro Wayne County     19820
2286                 Newark Liberty International     35620
2287             Phoenix Sky Harbor International     38060
2288                   Indianapolis International     26900
2289                John F. Kennedy International     35620
2290                John F. Kennedy International     35620
2291                John F. Kennedy International     35620
2292                                    LaGuardia     35620
2293                John F. Kennedy International     35620
2294                John F. Kennedy International     35620
2295                                    LaGuardia     35620
2296                                    LaGuardia     35620
2297                                    LaGuardia     35620
2298                                    LaGuardia     35620
2299                                    LaGuardia     35620
2300                                    LaGuardia     35620
2301                     Harrisburg International     25420
2302            Minneapolis-St Paul International     33460
2303            Minneapolis-St Paul International     33460
2304            Minneapolis-St Paul International     33460
2305                 Raleigh-Durham International     39580
2306               Roanoke Regional/Woodrum Field     40220
2307              Greater Rochester International     40380
2308                                 McGhee Tyson     28940
2309             Austin - Bergstrom International     12420
2310             Austin - Bergstrom International     12420
2311             Dane County Regional-Truax Field     31540
2312             Austin - Bergstrom International     12420
2313                        Bradley International     25540
2314                          Logan International     14460
2315                          Logan International     14460
2316                   Indianapolis International     26900
2317                          Logan International     14460
2318                  San Francisco International     41860
2319              Charlotte Douglas International     16740
2320              Charlotte Douglas International     16740
2321              Charlotte Douglas International     16740
2322              Charlotte Douglas International     16740
2323              Charlotte Douglas International     16740
2324                           Monterey Peninsula     41500
2325              Charlotte Douglas International     16740
2326              Charlotte Douglas International     16740
2327              Charlotte Douglas International     16740
2328   Cincinnati/Northern Kentucky International     17140
2329            Ronald Reagan Washington National     47900
2330              Dallas/Fort Worth International     19100
2331              Dallas/Fort Worth International     19100
2332              Dallas/Fort Worth International     19100
2333              Dallas/Fort Worth International     19100
2334              Dallas/Fort Worth International     19100
2335              Dallas/Fort Worth International     19100
2336              Dallas/Fort Worth International     19100
2337              Dallas/Fort Worth International     19100
2338              Dallas/Fort Worth International     19100
2339              Dallas/Fort Worth International     19100
2340              Dallas/Fort Worth International     19100
2341              Dallas/Fort Worth International     19100
2342              Dallas/Fort Worth International     19100
2343              Dallas/Fort Worth International     19100
2344              Dallas/Fort Worth International     19100
2345              Dallas/Fort Worth International     19100
2346                 Springfield-Branson National     44180
2347                            Columbia Regional     17860
2348                 Seattle/Tacoma International     42660
2349         George Bush Intercontinental/Houston     26420
2350      Fort Lauderdale-Hollywood International     33100
2351                John F. Kennedy International     35620
2352                       McCarran International     29820
2353                          Shreveport Regional     43340
2354                     Wilmington International     48900
2355                       Richmond International     40060
2356                     Burlington International     15540
2357                John F. Kennedy International     35620
2358                        Orlando International     36740
2359                     Harrisburg International     25420
2360               Portland International Jetport     38860
2361                                  Adams Field     30780
2362                 McAllen Miller International     32580
2363                          Miami International     33100
2364                          Miami International     33100
2365                          Miami International     33100
2366                          Miami International     33100
2367                          Miami International     33100
2368                          Miami International     33100
2369                         Tallahassee Regional     45220
2370                     Palm Beach International     33100
2371                 Charleston AFB/International     16700
2372                 Chicago O'Hare International     16980
2373                 Chicago O'Hare International     16980
2374                 Chicago O'Hare International     16980
2375                 Chicago O'Hare International     16980
2376                 Chicago O'Hare International     16980
2377                    Charlottesville Albemarle     16820
2378                   Philadelphia International     37980
2379                   Philadelphia International     37980
2380             Phoenix Sky Harbor International     38060
2381             Phoenix Sky Harbor International     38060
2382             Phoenix Sky Harbor International     38060
2383             Phoenix Sky Harbor International     38060
2384                       Portland International     38900
2385          Baton Rouge Metropolitan/Ryan Field     12940
2386                 Raleigh-Durham International     39580
2387              Southwest Florida International     15980
2388                                   Tri Cities     28700
2389                     Pittsburgh International     38300
2390                 Piedmont Triad International     24660
2391               Roanoke Regional/Woodrum Field     40220
2392       Birmingham-Shuttlesworth International     13820
2393               Luis Munoz Marin International     41980
2394            John Glenn Columbus International     18140
2395        Louisville Muhammad Ali International     31140
2396                         Hector International     22020
2397                 Yuma MCAS/Yuma International     49740
2398          Ted Stevens Anchorage International     11260
2399          Ted Stevens Anchorage International     11260
2400              Wiley Post/Will Rogers Memorial      <NA>
2401            Ronald Reagan Washington National     47900
2402                      Ketchikan International     28540
2403                Daniel K Inouye International     46520
2404                      Ketchikan International     28540
2405                    Los Angeles International     31080
2406                    Los Angeles International     31080
2407                              Eppley Airfield     36540
2408                          Ralph Wien Memorial      <NA>
2409                       Portland International     38900
2410                              Kahului Airport     27980
2411                 Seattle/Tacoma International     42660
2412                 Seattle/Tacoma International     42660
2413                 Seattle/Tacoma International     42660
2414                 Seattle/Tacoma International     42660
2415                  San Francisco International     41860
2416            Albuquerque International Sunport     10740
2417              Southwest Florida International     15980
2418                         Albany International     10580
2419                        Bradley International     25540
2420                        Bradley International     25540
2421                          Logan International     14460
2422                          Logan International     14460
2423                          Logan International     14460
2424                          Logan International     14460
2425                                     Bob Hope     31080
2426            Ronald Reagan Washington National     47900
2427      Fort Lauderdale-Hollywood International     33100
2428                John F. Kennedy International     35620
2429                 Seattle/Tacoma International     42660
2430                John F. Kennedy International     35620
2431                John F. Kennedy International     35620
2432                John F. Kennedy International     35620
2433                    Los Angeles International     31080
2434                    Los Angeles International     31080
2435                   Palm Springs International     40140
2436                 Theodore Francis Green State     39300
2437                 Theodore Francis Green State     39300
2438                      San Diego International     41740
2439               Luis Munoz Marin International     41980
2440               Luis Munoz Marin International     41980
2441                     Sacramento International     40900
2442             Sarasota/Bradenton International     35840
2443               Syracuse Hancock International     45060
2444     Hartsfield-Jackson Atlanta International     12060
2445     Hartsfield-Jackson Atlanta International     12060
2446     Hartsfield-Jackson Atlanta International     12060
2447     Hartsfield-Jackson Atlanta International     12060
2448     Hartsfield-Jackson Atlanta International     12060
2449     Hartsfield-Jackson Atlanta International     12060
2450     Hartsfield-Jackson Atlanta International     12060
2451     Hartsfield-Jackson Atlanta International     12060
2452     Hartsfield-Jackson Atlanta International     12060
2453     Hartsfield-Jackson Atlanta International     12060
2454     Hartsfield-Jackson Atlanta International     12060
2455     Hartsfield-Jackson Atlanta International     12060
2456     Hartsfield-Jackson Atlanta International     12060
2457     Hartsfield-Jackson Atlanta International     12060
2458     Hartsfield-Jackson Atlanta International     12060
2459     Hartsfield-Jackson Atlanta International     12060
2460     Hartsfield-Jackson Atlanta International     12060
2461     Hartsfield-Jackson Atlanta International     12060
2462     Hartsfield-Jackson Atlanta International     12060
2463     Hartsfield-Jackson Atlanta International     12060
2464     Hartsfield-Jackson Atlanta International     12060
2465     Hartsfield-Jackson Atlanta International     12060
2466             Austin - Bergstrom International     12420
2467             Austin - Bergstrom International     12420
2468                      Nashville International     34980
2469                          Logan International     14460
2470                                 Jackson Hole     27220
2471              Charlotte Douglas International     16740
2472   Cincinnati/Northern Kentucky International     17140
2473   Cincinnati/Northern Kentucky International     17140
2474   Cincinnati/Northern Kentucky International     17140
2475                               Cherry Capital     45900
2476              Dallas/Fort Worth International     19100
2477                   Detroit Metro Wayne County     19820
2478                   Detroit Metro Wayne County     19820
2479                   Detroit Metro Wayne County     19820
2480                   Detroit Metro Wayne County     19820
2481                   Detroit Metro Wayne County     19820
2482                   Detroit Metro Wayne County     19820
2483                   Detroit Metro Wayne County     19820
2484                   Detroit Metro Wayne County     19820
2485                   Detroit Metro Wayne County     19820
2486                        El Paso International     21340
2487                      Melbourne International     37340
2488              Washington Dulles International     47900
2489                   Indianapolis International     26900
2490                John F. Kennedy International     35620
2491                                    LaGuardia     35620
2492                    Los Angeles International     31080
2493                    Los Angeles International     31080
2494                        Orlando International     36740
2495                        Memphis International     32820
2496                          Miami International     33100
2497                          Miami International     33100
2498            Minneapolis-St Paul International     33460
2499            Minneapolis-St Paul International     33460
2500            Minneapolis-St Paul International     33460
2501            Minneapolis-St Paul International     33460
2502            Minneapolis-St Paul International     33460
2503            Minneapolis-St Paul International     33460
2504            Minneapolis-St Paul International     33460
2505            Minneapolis-St Paul International     33460
2506            Minneapolis-St Paul International     33460
2507            Minneapolis-St Paul International     33460
2508            Minneapolis-St Paul International     33460
2509            Minneapolis-St Paul International     33460
2510                John F. Kennedy International     35620
2511                 Piedmont Triad International     24660
2512              Southwest Florida International     15980
2513                    San Antonio International     41700
2514                 Seattle/Tacoma International     42660
2515                 Seattle/Tacoma International     42660
2516                          Rapid City Regional     39660
2517                 Seattle/Tacoma International     42660
2518                  San Francisco International     41860
2519               Luis Munoz Marin International     41980
2520                 Salt Lake City International     41620
2521                 Salt Lake City International     41620
2522                 Salt Lake City International     41620
2523                 Salt Lake City International     41620
2524                 Salt Lake City International     41620
2525                 Salt Lake City International     41620
2526                 Salt Lake City International     41620
2527                 Salt Lake City International     41620
2528                 Salt Lake City International     41620
2529                 Salt Lake City International     41620
2530                 Salt Lake City International     41620
2531                 Salt Lake City International     41620
2532                 Salt Lake City International     41620
2533                                   Tri Cities     28700
2534                     Burlington International     15540
2535                 Newark Liberty International     35620
2536                 Newark Liberty International     35620
2537                 Newark Liberty International     35620
2538                 Newark Liberty International     35620
2539                 Newark Liberty International     35620
2540                 Newark Liberty International     35620
2541              Washington Dulles International     47900
2542              Washington Dulles International     47900
2543                    Los Angeles International     31080
2544                         Tallahassee Regional     45220
2545 Brownsville South Padre Island International     15180
2546              Dallas/Fort Worth International     19100
2547              Dallas/Fort Worth International     19100
2548              Dallas/Fort Worth International     19100
2549              Dallas/Fort Worth International     19100
2550              Dallas/Fort Worth International     19100
2551              Dallas/Fort Worth International     19100
2552                     Des Moines International     19780
2553                   Philadelphia International     37980
2554                          Fort Smith Regional     22900
2555                      Grand Junction Regional     24300
2556                        Wichita Mid-Continent     48620
2557     Jackson Medgar Wiley Evers International     27140
2558                        Lake Charles Regional     29340
2559                          Miami International     33100
2560                              Eppley Airfield     36540
2561                 Chicago O'Hare International     16980
2562                 Chicago O'Hare International     16980
2563                 Chicago O'Hare International     16980
2564                      Abraham Lincoln Capital     44100
2565                         Tallahassee Regional     45220
2566                 Salt Lake City International     41620
2567                        El Paso International     21340
2568              Charlotte Douglas International     16740
2569              Charlotte Douglas International     16740
2570              Charlotte Douglas International     16740
2571              Charlotte Douglas International     16740
2572              Charlotte Douglas International     16740
2573              Charlotte Douglas International     16740
2574            Ronald Reagan Washington National     47900
2575            Ronald Reagan Washington National     47900
2576                 Piedmont Triad International     24660
2577             Dane County Regional-Truax Field     31540
2578                   Philadelphia International     37980
2579                Pensacola Gulf Coast Regional     37860
2580  Huntsville International-Carl T Jones Field     26620
2581                           Bismarck Municipal     13900
2582          Casper/Natrona County International     16220
2583                 Corpus Christi International     18580
2584                         Denver International     19740
2585                         Denver International     19740
2586                         Denver International     19740
2587                         Denver International     19740
2588                         Denver International     19740
2589                         Denver International     19740
2590                         Denver International     19740
2591                         Denver International     19740
2592                   Detroit Metro Wayne County     19820
2593                   Detroit Metro Wayne County     19820
2594                   Detroit Metro Wayne County     19820
2595               St Louis Lambert International     41180
2596                           Westchester County     35620
2597         George Bush Intercontinental/Houston     26420
2598         George Bush Intercontinental/Houston     26420
2599         George Bush Intercontinental/Houston     26420
2600         George Bush Intercontinental/Houston     26420
2601                    Los Angeles International     31080
2602          Lubbock Preston Smith International     31180
2603     Midland International Air and Space Port     33260
2604                    Kansas City International     28140
2605            Minneapolis-St Paul International     33460
2606            Minneapolis-St Paul International     33460
2607            Minneapolis-St Paul International     33460
2608            Minneapolis-St Paul International     33460
2609            Minneapolis-St Paul International     33460
2610            Minneapolis-St Paul International     33460
2611            Minneapolis-St Paul International     33460
2612                              Eppley Airfield     36540
2613                 Chicago O'Hare International     16980
2614                 Chicago O'Hare International     16980
2615                 Chicago O'Hare International     16980
2616                 Chicago O'Hare International     16980
2617                 Chicago O'Hare International     16980
2618                        Norfolk International     47260
2619             Phoenix Sky Harbor International     38060
2620                       Richmond International     40060
2621           Savannah/Hilton Head International     42340
2622                 Seattle/Tacoma International     42660
2623                  San Francisco International     41860
2624                  San Francisco International     41860
2625                 Salt Lake City International     41620
2626                 Salt Lake City International     41620
2627                 Salt Lake City International     41620
2628                 Salt Lake City International     41620
2629                 Salt Lake City International     41620
2630                 Salt Lake City International     41620
2631                 Salt Lake City International     41620
2632                         Tucson International     46060
2633                       Portland International     38900
2634            Ronald Reagan Washington National     47900
2635                         Denver International     19740
2636                         Denver International     19740
2637                         Denver International     19740
2638                     Des Moines International     19780
2639                 Newark Liberty International     35620
2640                 Newark Liberty International     35620
2641          Ted Stevens Anchorage International     11260
2642                     Sacramento International     40900
2643              Washington Dulles International     47900
2644              Washington Dulles International     47900
2645              Washington Dulles International     47900
2646              Washington Dulles International     47900
2647         George Bush Intercontinental/Houston     26420
2648         George Bush Intercontinental/Houston     26420
2649         George Bush Intercontinental/Houston     26420
2650         George Bush Intercontinental/Houston     26420
2651         George Bush Intercontinental/Houston     26420
2652         George Bush Intercontinental/Houston     26420
2653         George Bush Intercontinental/Houston     26420
2654         George Bush Intercontinental/Houston     26420
2655                    Kansas City International     28140
2656                 McAllen Miller International     32580
2657                              Eppley Airfield     36540
2658                     Pittsburgh International     38300
2659                      San Diego International     41740
2660              Aspen Pitkin County Sardy Field     24060
2661                  San Francisco International     41860
2662                  San Francisco International     41860
2663                  San Francisco International     41860
2664                  San Francisco International     41860
2665                     Sacramento International     40900
2666              Aspen Pitkin County Sardy Field     24060
2667             John Wayne Airport-Orange County     31080
2668             Austin - Bergstrom International     12420
2669                                     Bob Hope     31080
2670           Baltimore/Washington International     12580
2671            John Glenn Columbus International     18140
2672                         Denver International     19740
2673                       Portland International     38900
2674                       McCarran International     29820
2675                       McCarran International     29820
2676                      San Diego International     41740
2677             Phoenix Sky Harbor International     38060
2678              Southwest Florida International     15980
2679                      San Diego International     41740
2680               General Mitchell International     33340
2681                        El Paso International     21340
2682                               Joe Foss Field     43620
2683         George Bush Intercontinental/Houston     26420
2684         George Bush Intercontinental/Houston     26420
2685         George Bush Intercontinental/Houston     26420
2686                    Kansas City International     28140
2687                          Logan International     14460
2688                          Logan International     14460
2689                          Logan International     14460
2690                 Charleston AFB/International     16700
2691            John Glenn Columbus International     18140
2692            Ronald Reagan Washington National     47900
2693                   Detroit Metro Wayne County     19820
2694                 Newark Liberty International     35620
2695                 Newark Liberty International     35620
2696                 Newark Liberty International     35620
2697                 Newark Liberty International     35620
2698         Greenville-Spartanburg International     43900
2699                                    LaGuardia     35620
2700                                    LaGuardia     35620
2701                                    LaGuardia     35620
2702                            Will Rogers World     36420
2703                 Chicago O'Hare International     16980
2704                 Chicago O'Hare International     16980
2705                 Chicago O'Hare International     16980
2706                 Chicago O'Hare International     16980
2707                   Philadelphia International     37980
2708                   Philadelphia International     37980
2709                          Shreveport Regional     43340
2710                 Raleigh-Durham International     39580
2711                  Northwest Arkansas Regional     22220
2712                          Evansville Regional     21780
2713              Washington Dulles International     47900
2714                 Chicago O'Hare International     16980
2715                 Chicago O'Hare International     16980
2716                Pensacola Gulf Coast Regional     37860
2717            Minneapolis-St Paul International     33460
2718                   Palm Springs International     40140
2719              Southwest Florida International     15980
2720              Charlotte Douglas International     16740
2721              Charlotte Douglas International     16740
2722                   Manchester-Boston Regional     31700
2723                   Philadelphia International     37980
2724                   Philadelphia International     37980
2725       Birmingham-Shuttlesworth International     13820
2726                         Denver International     19740
2727              Washington Dulles International     47900
2728         George Bush Intercontinental/Houston     26420
2729         George Bush Intercontinental/Houston     26420
2730                        Wichita Mid-Continent     48620
2731                                  Adams Field     30780
2732     Hartsfield-Jackson Atlanta International     12060
2733                         Bangor International     12620
2734                      Nashville International     34980
2735                     Burlington International     15540
2736           Baltimore/Washington International     12580
2737                 Gerald R. Ford International     24340
2738         Greenville-Spartanburg International     43900
2739                John F. Kennedy International     35620
2740                John F. Kennedy International     35620
2741                                    LaGuardia     35620
2742                                    LaGuardia     35620
2743                                    LaGuardia     35620
2744                  Northwest Arkansas Regional     22220
2745                 Raleigh-Durham International     39580
2746                       Richmond International     40060
2747              Greater Rochester International     40380
2748              Greater Rochester International     40380
2749           Savannah/Hilton Head International     42340
2750           Savannah/Hilton Head International     42340
2751                          Tampa International     45300
2752  Huntsville International-Carl T Jones Field     26620
2753             Austin - Bergstrom International     12420
2754                         Tucson International     46060
2755                                 Lovell Field     16860
2756                              Pitt Greenville     24780
2757                           Boise Air Terminal     14260
2758                              Kahului Airport     27980
2759     Midland International Air and Space Port     33260
2760                                     Bob Hope     31080
2761                Daniel K Inouye International     46520
2762                           Lafayette Regional     29180
2763              Cleveland-Hopkins International     17460
2764              Cleveland-Hopkins International     17460
2765              Cleveland-Hopkins International     17460
2766          Ted Stevens Anchorage International     11260
2767              Charlotte Douglas International     16740
2768              Charlotte Douglas International     16740
2769              Charlotte Douglas International     16740
2770              Charlotte Douglas International     16740
2771              Charlotte Douglas International     16740
2772              Charlotte Douglas International     16740
2773              Charlotte Douglas International     16740
2774              Charlotte Douglas International     16740
2775              Charlotte Douglas International     16740
2776              Charlotte Douglas International     16740
2777              Charlotte Douglas International     16740
2778              Charlotte Douglas International     16740
2779              Charlotte Douglas International     16740
2780              Charlotte Douglas International     16740
2781   Cincinnati/Northern Kentucky International     17140
2782            Ronald Reagan Washington National     47900
2783            Ronald Reagan Washington National     47900
2784              Dallas/Fort Worth International     19100
2785              Dallas/Fort Worth International     19100
2786              Dallas/Fort Worth International     19100
2787              Dallas/Fort Worth International     19100
2788              Dallas/Fort Worth International     19100
2789              Dallas/Fort Worth International     19100
2790              Dallas/Fort Worth International     19100
2791              Dallas/Fort Worth International     19100
2792              Dallas/Fort Worth International     19100
2793              Dallas/Fort Worth International     19100
2794              Dallas/Fort Worth International     19100
2795              Dallas/Fort Worth International     19100
2796              Dallas/Fort Worth International     19100
2797              Dallas/Fort Worth International     19100
2798              Dallas/Fort Worth International     19100
2799              Dallas/Fort Worth International     19100
2800              Dallas/Fort Worth International     19100
2801              Dallas/Fort Worth International     19100
2802                              Eppley Airfield     36540
2803                                   Blue Grass     30460
2804               Syracuse Hancock International     45060
2805                            Will Rogers World     36420
2806                            Columbia Regional     17860
2807                     Reno/Tahoe International     39900
2808                                 Cyril E King      <NA>
2809            John Glenn Columbus International     18140
2810                   Indianapolis International     26900
2811                   Jacksonville International     27260
2812          Wilkes Barre Scranton International     42540
2813                Gulfport-Biloxi International     25060
2814           Eglin AFB Destin Fort Walton Beach     18880
2815                          Tulsa International     46140
2816                         Bangor International     12620
2817               Augusta Regional at Bush Field     12260
2818                    Los Angeles International     31080
2819             Sarasota/Bradenton International     35840
2820                    Central Nebraska Regional     24260
2821                        Memphis International     32820
2822                 Theodore Francis Green State     39300
2823                        Columbia Metropolitan     17900
2824                   Myrtle Beach International     34820
2825                              Mobile Regional     33660
2826                    Kansas City International     28140
2827                                 Yampa Valley     44460
2828                        Memphis International     32820
2829                          Miami International     33100
2830                          Miami International     33100
2831                          Miami International     33100
2832                     Reno/Tahoe International     39900
2833                          Miami International     33100
2834                     Des Moines International     19780
2835                          Miami International     33100
2836                          Miami International     33100
2837             Dane County Regional-Truax Field     31540
2838                       Richmond International     40060
2839                                Waco Regional     47380
2840                 Chicago O'Hare International     16980
2841                 Chicago O'Hare International     16980
2842                   Palm Springs International     40140
2843                     Palm Beach International     33100
2844                        El Paso International     21340
2845                    Coastal Carolina Regional     35100
2846               Luis Munoz Marin International     41980
2847             Phoenix Sky Harbor International     38060
2848             Phoenix Sky Harbor International     38060
2849                     Pittsburgh International     38300
2850           Baltimore/Washington International     12580
2851                      Grand Junction Regional     24300
2852              Greater Rochester International     40380
2853                        Norfolk International     47260
2854                Pensacola Gulf Coast Regional     37860
2855                           Long Beach Airport     31080
2856                         Valley International     15180
2857                 Seattle/Tacoma International     42660
2858                   Manchester-Boston Regional     31700
2859                           Asheville Regional     11700
2860                  San Francisco International     41860
2861                              William P Hobby     26420
2862                       Portland International     38900
2863               Luis Munoz Marin International     41980
2864                        Columbia Metropolitan     17900
2865                           Asheville Regional     11700
2866                                   Blue Grass     30460
2867               St Louis Lambert International     41180
2868                        Columbus Metropolitan     17980
2869                          Tampa International     45300
2870                         Tucson International     46060
2871            Albuquerque International Sunport     10740
2872              Dallas/Fort Worth International     19100
2873                            Will Rogers World     36420
2874                 Charleston AFB/International     16700
2875           Baltimore/Washington International     12580
2876                   Indianapolis International     26900
2877                      Ketchikan International     28540
2878                      Ketchikan International     28540
2879                        Orlando International     36740
2880               General Mitchell International     33340
2881                       Portland International     38900
2882                      San Diego International     41740
2883                    San Antonio International     41700
2884                 Seattle/Tacoma International     42660
2885                 Seattle/Tacoma International     42660
2886                 Seattle/Tacoma International     42660
2887                 Seattle/Tacoma International     42660
2888                 Seattle/Tacoma International     42660
2889                 Seattle/Tacoma International     42660
2890                 Seattle/Tacoma International     42660
2891                 Seattle/Tacoma International     42660
2892                 Seattle/Tacoma International     42660
2893                 Seattle/Tacoma International     42660
2894                 Seattle/Tacoma International     42660
2895                 Seattle/Tacoma International     42660
2896      Norman Y. Mineta San Jose International     41940
2897                        Bradley International     25540
2898                        Bradley International     25540
2899                        Bradley International     25540
2900                          Logan International     14460
2901                          Logan International     14460
2902                          Logan International     14460
2903                             Rafael Hernandez     10380
2904                Buffalo Niagara International     15380
2905                 Charleston AFB/International     16700
2906              Cleveland-Hopkins International     17460
2907                      San Diego International     41740
2908            Ronald Reagan Washington National     47900
2909                 Newark Liberty International     35620
2910                John F. Kennedy International     35620
2911      Fort Lauderdale-Hollywood International     33100
2912      Fort Lauderdale-Hollywood International     33100
2913      Fort Lauderdale-Hollywood International     33100
2914      Fort Lauderdale-Hollywood International     33100
2915      Fort Lauderdale-Hollywood International     33100
2916                           Westchester County     35620
2917                           Westchester County     35620
2918         George Bush Intercontinental/Houston     26420
2919                   Jacksonville International     27260
2920                   Jacksonville International     27260
2921                   Jacksonville International     27260
2922                   Jacksonville International     27260
2923                John F. Kennedy International     35620
2924                John F. Kennedy International     35620
2925                John F. Kennedy International     35620
2926                John F. Kennedy International     35620
2927                John F. Kennedy International     35620
2928                        Orlando International     36740
2929      Fort Lauderdale-Hollywood International     33100
2930                     Palm Beach International     33100
2931                     Palm Beach International     33100
2932                     Palm Beach International     33100
2933                     Palm Beach International     33100
2934                                    Mercedita     38660
2935                       Richmond International     40060
2936                       Richmond International     40060
2937                       Richmond International     40060
2938                     Reno/Tahoe International     39900
2939              Southwest Florida International     15980
2940                      San Diego International     41740
2941                    San Antonio International     41700
2942      Norman Y. Mineta San Jose International     41940
2943               Luis Munoz Marin International     41980
2944                     Burlington International     15540
2945             Sarasota/Bradenton International     35840
2946                            Will Rogers World     36420
2947     Hartsfield-Jackson Atlanta International     12060
2948     Hartsfield-Jackson Atlanta International     12060
2949     Hartsfield-Jackson Atlanta International     12060
2950     Hartsfield-Jackson Atlanta International     12060
2951     Hartsfield-Jackson Atlanta International     12060
2952     Hartsfield-Jackson Atlanta International     12060
2953                 Billings Logan International     13740
2954                     Fort Wayne International     23060
2955                Daniel K Inouye International     46520
2956  Huntsville International-Carl T Jones Field     26620
2957                                 Cyril E King      <NA>
2958              Washington Dulles International     47900
2959                   Detroit Metro Wayne County     19820
2960                      Quad City International     19340
2961      Fort Lauderdale-Hollywood International     33100
2962              Cleveland-Hopkins International     17460
2963                                   Blue Grass     30460
2964                      Elmira/Corning Regional     21300
2965                        Columbus Metropolitan     17980
2966                     Fort Wayne International     23060
2967                     Wilmington International     48900
2968                   Southwest Georgia Regional     10500
2969                 Chicago O'Hare International     16980
2970                       Portland International     38900
2971              Southwest Florida International     15980
2972            Ronald Reagan Washington National     47900
2973               St Louis Lambert International     41180
2974                      Grand Junction Regional     24300
2975                 Salt Lake City International     41620
2976              Greater Rochester International     40380
2977                   Indianapolis International     26900
2978                         Denver International     19740
2979                         Denver International     19740
2980                         Denver International     19740
2981                         Denver International     19740
2982                        Long Island MacArthur     35620
2983                       McCarran International     29820
2984                        Orlando International     36740
2985                        Ontario International     40140
2986              Southwest Florida International     15980
2987              Southwest Florida International     15980
2988               St Louis Lambert International     41180
2989                          Tampa International     45300
2990                               Trenton Mercer     45940
2991                               Trenton Mercer     45940
2992                                 McGhee Tyson     28940
2993                  Northwest Arkansas Regional     22220
2994                 Gerald R. Ford International     24340
2995                 Piedmont Triad International     24660
2996              Washington Dulles International     47900
2997                 Chicago O'Hare International     16980
2998                             Rafael Hernandez     10380
2999               St Louis Lambert International     41180
3000                              Mobile Regional     33660
3001       Birmingham-Shuttlesworth International     13820
3002                    Lawton-Fort Sill Regional     30020
3003                                 Lovell Field     16860
3004                             The Eastern Iowa     16300
3005            Ronald Reagan Washington National     47900
3006              Dallas/Fort Worth International     19100
3007              Dallas/Fort Worth International     19100
3008              Dallas/Fort Worth International     19100
3009              Dallas/Fort Worth International     19100
3010              Dallas/Fort Worth International     19100
3011              Dallas/Fort Worth International     19100
3012              Dallas/Fort Worth International     19100
3013                 Gerald R. Ford International     24340
3014                          Miami International     33100
3015                          Miami International     33100
3016                          Miami International     33100
3017                 Chicago O'Hare International     16980
3018                 Chicago O'Hare International     16980
3019                 Chicago O'Hare International     16980
3020                 Chicago O'Hare International     16980
3021              Charlotte Douglas International     16740
3022           Savannah/Hilton Head International     42340
3023                                 McGhee Tyson     28940
3024                  Atlantic City International     12100
3025                        Akron-Canton Regional     10420
3026              Cleveland-Hopkins International     17460
3027                       McCarran International     29820
3028                    Los Angeles International     31080
3029               General Mitchell International     33340
3030        Louisville Muhammad Ali International     31140
3031               Augusta Regional at Bush Field     12260
3032              Cleveland-Hopkins International     17460
3033              Charlotte Douglas International     16740
3034              Charlotte Douglas International     16740
3035              Charlotte Douglas International     16740
3036              Charlotte Douglas International     16740
3037   Cincinnati/Northern Kentucky International     17140
3038            Ronald Reagan Washington National     47900
3039            Ronald Reagan Washington National     47900
3040            Ronald Reagan Washington National     47900
3041            Ronald Reagan Washington National     47900
3042            Ronald Reagan Washington National     47900
3043            Ronald Reagan Washington National     47900
3044                     Des Moines International     19780
3045       Birmingham-Shuttlesworth International     13820
3046      Northwest Florida Beaches International     37460
3047                         Gainesville Regional     23540
3048                 Gerald R. Ford International     24340
3049           Erie International/Tom Ridge Field     21500
3050                   Indianapolis International     26900
3051                   Philadelphia International     37980
3052                          South Bend Regional     43780
3053             Austin - Bergstrom International     12420
3054                                Meadows Field     12540
3055        Prescott Regional Ernest A Love Field     39150
3056            Charles M. Schulz - Sonoma County     42220
3057                         Denver International     19740
3058                         Denver International     19740
3059                         Denver International     19740
3060              Dallas/Fort Worth International     19100
3061              Dallas/Fort Worth International     19100
3062                   Detroit Metro Wayne County     19820
3063                     Fort Wayne International     23060
3064                         Juneau International     27940
3065                          Lea County Regional     26020
3066                         Idaho Falls Regional     26820
3067                    Los Angeles International     31080
3068                    Los Angeles International     31080
3069                    Los Angeles International     31080
3070                     Alexandria International     10780
3071                            Victoria Regional     47020
3072            Minneapolis-St Paul International     33460
3073                 Chicago O'Hare International     16980
3074               Portland International Jetport     38860
3075                           Santa Fe Municipal     42140
3076           Savannah/Hilton Head International     42340
3077               Roanoke Regional/Woodrum Field     40220
3078                 Seattle/Tacoma International     42660
3079                  San Francisco International     41860
3080                  San Francisco International     41860
3081                  San Francisco International     41860
3082                  San Francisco International     41860
3083                 Salt Lake City International     41620
3084                           Mahlon Sweet Field     21660
3085                        Norfolk International     47260
3086                         Walla Walla Regional     47460
3087          Ted Stevens Anchorage International     11260
3088                    Los Angeles International     31080
3089                           Monterey Peninsula     41500
3090                             Snohomish County     42660
3091                 Seattle/Tacoma International     42660
3092             Austin - Bergstrom International     12420
3093                Daniel K Inouye International     46520
3094                      Cape Girardeau Regional     43460
3095                          Tulsa International     46140
3096               Luis Munoz Marin International     41980
3097            John Glenn Columbus International     18140
3098                         Denver International     19740
3099                         Denver International     19740
3100                 Newark Liberty International     35620
3101                Fresno Yosemite International     23420
3102              Washington Dulles International     47900
3103              Washington Dulles International     47900
3104         George Bush Intercontinental/Houston     26420
3105         George Bush Intercontinental/Houston     26420
3106         George Bush Intercontinental/Houston     26420
3107         George Bush Intercontinental/Houston     26420
3108         George Bush Intercontinental/Houston     26420
3109         George Bush Intercontinental/Houston     26420
3110                       Portland International     38900
3111                            Redding Municipal     39820
3112                    Los Angeles International     31080
3113                    Los Angeles International     31080
3114                                 Cyril E King      <NA>
3115               Luis Munoz Marin International     41980
3116                   Philadelphia International     37980
3117                             Salina Municipal     41460
3118             Sarasota/Bradenton International     35840
3119                 Corpus Christi International     18580
3120                 Liberal Mid-America Regional     30580
3121            Albuquerque International Sunport     10740
3122            Albuquerque International Sunport     10740
3123             Austin - Bergstrom International     12420
3124             Austin - Bergstrom International     12420
3125       Birmingham-Shuttlesworth International     13820
3126                      Nashville International     34980
3127                      Nashville International     34980
3128                      Nashville International     34980
3129             Phoenix Sky Harbor International     38060
3130                Buffalo Niagara International     15380
3131           Baltimore/Washington International     12580
3132           Baltimore/Washington International     12580
3133           Baltimore/Washington International     12580
3134           Baltimore/Washington International     12580
3135           Baltimore/Washington International     12580
3136           Baltimore/Washington International     12580
3137           Baltimore/Washington International     12580
3138           Baltimore/Washington International     12580
3139           Baltimore/Washington International     12580
3140           Baltimore/Washington International     12580
3141                 Charleston AFB/International     16700
3142            John Glenn Columbus International     18140
3143            John Glenn Columbus International     18140
3144                            Dallas Love Field     19100
3145                            Dallas Love Field     19100
3146                            Dallas Love Field     19100
3147                            Dallas Love Field     19100
3148                            Dallas Love Field     19100
3149                            Dallas Love Field     19100
3150                            Dallas Love Field     19100
3151                            Dallas Love Field     19100
3152            Ronald Reagan Washington National     47900
3153            Ronald Reagan Washington National     47900
3154                         Denver International     19740
3155                         Denver International     19740
3156      Fort Lauderdale-Hollywood International     33100
3157                              William P Hobby     26420
3158                              William P Hobby     26420
3159                              William P Hobby     26420
3160                              William P Hobby     26420
3161                        Long Island MacArthur     35620
3162                       McCarran International     29820
3163                       McCarran International     29820
3164          Lubbock Preston Smith International     31180
3165          Lubbock Preston Smith International     31180
3166                           Long Beach Airport     31080
3167                                  Adams Field     30780
3168     Midland International Air and Space Port     33260
3169                    Kansas City International     28140
3170                    Kansas City International     28140
3171                        Orlando International     36740
3172                        Orlando International     36740
3173                        Orlando International     36740
3174                 Chicago Midway International     16980
3175                 Chicago Midway International     16980
3176                 Chicago Midway International     16980
3177                 Chicago Midway International     16980
3178                 Chicago Midway International     16980
3179                 Chicago Midway International     16980
3180                 Chicago Midway International     16980
3181                        Memphis International     32820
3182               General Mitchell International     33340
3183                   Myrtle Beach International     34820
3184           Metropolitan Oakland International     41860
3185           Metropolitan Oakland International     41860
3186                              Eppley Airfield     36540
3187                              Eppley Airfield     36540
3188             Phoenix Sky Harbor International     38060
3189             Phoenix Sky Harbor International     38060
3190             Phoenix Sky Harbor International     38060
3191                     Pittsburgh International     38300
3192                   Palm Springs International     40140
3193                 Theodore Francis Green State     39300
3194                 Theodore Francis Green State     39300
3195                 Raleigh-Durham International     39580
3196                     Reno/Tahoe International     39900
3197                     Reno/Tahoe International     39900
3198              Greater Rochester International     40380
3199              Southwest Florida International     15980
3200                      San Diego International     41740
3201                      San Diego International     41740
3202                    San Antonio International     41700
3203                    San Antonio International     41700
3204           Savannah/Hilton Head International     42340
3205        Louisville Muhammad Ali International     31140
3206                     Sacramento International     40900
3207               St Louis Lambert International     41180
3208               St Louis Lambert International     41180
3209               St Louis Lambert International     41180
3210               St Louis Lambert International     41180
3211                          Tampa International     45300
3212                          Tampa International     45300
3213                          Tampa International     45300
3214                          Tulsa International     46140
3215                          Tulsa International     46140
3216           Savannah/Hilton Head International     42340
3217              Charlotte Douglas International     16740
3218              Dallas/Fort Worth International     19100
3219              Dallas/Fort Worth International     19100
3220                 Yuma MCAS/Yuma International     49740
3221             Phoenix Sky Harbor International     38060
3222             Phoenix Sky Harbor International     38060
3223                       Richmond International     40060
3224                        Bradley International     25540
3225                          Logan International     14460
3226            Ronald Reagan Washington National     47900
3227            Ronald Reagan Washington National     47900
3228                 Newark Liberty International     35620
3229                 Newark Liberty International     35620
3230              Washington Dulles International     47900
3231              Washington Dulles International     47900
3232            John Glenn Columbus International     18140
3233                                    LaGuardia     35620
3234                                    LaGuardia     35620
3235                                    LaGuardia     35620
3236                 Chicago O'Hare International     16980
3237                 Chicago O'Hare International     16980
3238                 Chicago O'Hare International     16980
3239                   Philadelphia International     37980
3240                        Akron-Canton Regional     10420
3241             Sarasota/Bradenton International     35840
3242                           Asheville Regional     11700
3243                       Portland International     38900
3244                Fresno Yosemite International     23420
3245                        Columbia Metropolitan     17900
3246                            Central Wisconsin     48140
3247         George Bush Intercontinental/Houston     26420
3248           Erie International/Tom Ridge Field     21500
3249              Washington Dulles International     47900
3250               General Mitchell International     33340
3251                 Chicago O'Hare International     16980
3252                              University Park     44300
3253          Wilkes Barre Scranton International     42540
3254   Cincinnati/Northern Kentucky International     17140
3255            Minneapolis-St Paul International     33460
3256                          Miami International     33100
3257                          Logan International     14460
3258              Charlotte Douglas International     16740
3259                 Gerald R. Ford International     24340
3260                   Philadelphia International     37980
3261                   Philadelphia International     37980
3262              Greater Rochester International     40380
3263         Greenville-Spartanburg International     43900
3264    Louis Armstrong New Orleans International     35380
3265         George Bush Intercontinental/Houston     26420
3266                           Santa Fe Municipal     42140
3267                        Bradley International     25540
3268              Charlotte Douglas International     16740
3269              Dallas/Fort Worth International     19100
3270              Dallas/Fort Worth International     19100
3271                          Montgomery Regional     33860
3272                   Philadelphia International     37980
3273        Kona International Airport at Keahole     25900
3274                    Los Angeles International     31080
3275       Salisbury-Ocean City/Wicomico Regional     41540
3276             San Angelo Regional/Mathis Field     41660
3277                         Sawyer International     32100
3278             Phoenix Sky Harbor International     38060
3279                         Jack Brooks Regional     13140
3280          Ted Stevens Anchorage International     11260
3281          Ted Stevens Anchorage International     11260
3282          Ted Stevens Anchorage International     11260
3283                 Seattle/Tacoma International     42660
3284                                 Nome Airport      <NA>
3285                   Petersburg James A Johnson      <NA>
3286                           Westchester County     35620
3287                           Westchester County     35620
3288                 Theodore Francis Green State     39300
3289                    San Antonio International     41700
3290     Hartsfield-Jackson Atlanta International     12060
3291     Hartsfield-Jackson Atlanta International     12060
3292     Hartsfield-Jackson Atlanta International     12060
3293     Hartsfield-Jackson Atlanta International     12060
3294     Hartsfield-Jackson Atlanta International     12060
3295     Hartsfield-Jackson Atlanta International     12060
3296                         Gainesville Regional     23540
3297          Ted Stevens Anchorage International     11260
3298                          Shreveport Regional     43340
3299            Bozeman Yellowstone International     14580
3300               St Louis Lambert International     41180
3301            Ronald Reagan Washington National     47900
3302              Dallas/Fort Worth International     19100
3303              Dallas/Fort Worth International     19100
3304                           Monterey Peninsula     41500
3305              Charlotte Douglas International     16740
3306              Charlotte Douglas International     16740
3307            Ronald Reagan Washington National     47900
3308            Ronald Reagan Washington National     47900
3309       Salisbury-Ocean City/Wicomico Regional     41540
3310                   Philadelphia International     37980
3311                         Denver International     19740
3312          Lubbock Preston Smith International     31180
3313                 Chicago O'Hare International     16980
3314                    San Antonio International     41700
3315                  San Francisco International     41860
3316                 Newark Liberty International     35620
3317                 Newark Liberty International     35620
3318         George Bush Intercontinental/Houston     26420
3319                Daniel K Inouye International     46520
3320                      San Diego International     41740
3321                          Minot International     33500
3322                  San Francisco International     41860
3323           Baltimore/Washington International     12580
3324            Ronald Reagan Washington National     47900
3325                           Mahlon Sweet Field     21660
3326                        Spokane International     44060
3327                 Chicago Midway International     16980
3328                              Eppley Airfield     36540
3329                                     Bob Hope     31080
3330                      San Diego International     41740
3331                      San Diego International     41740
3332             John Wayne Airport-Orange County     31080
3333               St Louis Lambert International     41180
3334                          Tampa International     45300
3335                 Charleston AFB/International     16700
3336              Dallas/Fort Worth International     19100
3337              Dallas/Fort Worth International     19100
3338              Dallas/Fort Worth International     19100
3339         George Bush Intercontinental/Houston     26420
3340         George Bush Intercontinental/Houston     26420
3341         George Bush Intercontinental/Houston     26420
3342                          Rapid City Regional     39660
3343              Charlotte Douglas International     16740
3344              Charlotte Douglas International     16740
3345                                    LaGuardia     35620
3346                        Norfolk International     47260
3347                   Philadelphia International     37980
3348            Minneapolis-St Paul International     33460
3349                   Philadelphia International     37980
3350                   Philadelphia International     37980
3351                         Denver International     19740
3352                         Denver International     19740
3353                          Shreveport Regional     43340
3354                   Philadelphia International     37980
3355                 Chicago O'Hare International     16980
3356     Hartsfield-Jackson Atlanta International     12060
3357            Ronald Reagan Washington National     47900
3358              Dallas/Fort Worth International     19100
3359              Dallas/Fort Worth International     19100
3360       General Downing - Peoria International     37900
3361                     San Luis County Regional     42020
3362                             Easterwood Field     17780
3363                     Palm Beach International     33100
3364                   Philadelphia International     37980
3365               University of Illinois/Willard     16580
3366     Hartsfield-Jackson Atlanta International     12060
3367     Hartsfield-Jackson Atlanta International     12060
3368           Baltimore/Washington International     12580
3369                   Detroit Metro Wayne County     19820
3370                 Chicago O'Hare International     16980
3371                                Meadows Field     12540
3372              Dallas/Fort Worth International     19100
3373                          Miami International     33100
3374            Ronald Reagan Washington National     47900
3375            Ronald Reagan Washington National     47900
3376                         Denver International     19740
3377                            Granite Point Ndb      <NA>
3378                 Chicago O'Hare International     16980
3379                                   Tri Cities     28420
3380                  San Francisco International     41860
3381                     Reno/Tahoe International     39900
3382                         Denver International     19740
3383                 Newark Liberty International     35620
3384                 Newark Liberty International     35620
3385         George Bush Intercontinental/Houston     26420
3386                   Indianapolis International     26900
3387                  San Francisco International     41860
3388              Southwest Florida International     15980
3389                       McCarran International     29820
3390          Rick Husband Amarillo International     11100
3391              Dallas/Fort Worth International     19100
3392              Dallas/Fort Worth International     19100
3393         George Bush Intercontinental/Houston     26420
3394                    Kansas City International     28140
3395                 Salt Lake City International     41620
3396        Louisville Muhammad Ali International     31140
3397         George Bush Intercontinental/Houston     26420
3398              Charlotte Douglas International     16740
3399     Hartsfield-Jackson Atlanta International     12060
3400              Dallas/Fort Worth International     19100
3401                                    LaGuardia     35620
3402     Hartsfield-Jackson Atlanta International     12060
3403   Central Il Regional Airport at Bloomington     14010
3404                             The Eastern Iowa     16300
3405                   Detroit Metro Wayne County     19820
3406                                    LaGuardia     35620
3407                        Memphis International     32820
3408                      Quad City International     19340
3409                Daniel K Inouye International     46520
3410                          South Bend Regional     43780
3411             Austin - Bergstrom International     12420
3412         Greenville-Spartanburg International     43900
3413                      Durango La Plata County     20420
3414              Charlotte Douglas International     16740
3415              Charlotte Douglas International     16740
3416              Charlotte Douglas International     16740
3417              Charlotte Douglas International     16740
3418              Charlotte Douglas International     16740
3419              Charlotte Douglas International     16740
3420              Charlotte Douglas International     16740
3421              Dallas/Fort Worth International     19100
3422              Dallas/Fort Worth International     19100
3423              Dallas/Fort Worth International     19100
3424              Dallas/Fort Worth International     19100
3425              Dallas/Fort Worth International     19100
3426                                 Jackson Hole     27220
3427                 Springfield-Branson National     44180
3428                             Abilene Regional     10180
3429               Luis Munoz Marin International     41980
3430                          Miami International     33100
3431                           Bismarck Municipal     13900
3432                 Gerald R. Ford International     24340
3433                      Santa Barbara Municipal     42200
3434                     Bellingham International     13380
3435             Phoenix Sky Harbor International     38060
3436                     Burlington International     15540
3437                    San Antonio International     41700
3438         Sheppard AFB/Wichita Falls Municipal     48660
3439             John Wayne Airport-Orange County     31080
3440                     Pittsburgh International     38300
3441                                     Bob Hope     31080
3442                            Dallas Love Field     19100
3443             Phoenix Sky Harbor International     38060
3444                        Ontario International     40140
3445                       Portland International     38900
3446                       Portland International     38900
3447                       Portland International     38900
3448                       Portland International     38900
3449                     San Luis County Regional     42020
3450                      San Diego International     41740
3451                 Seattle/Tacoma International     42660
3452                 Seattle/Tacoma International     42660
3453                 Seattle/Tacoma International     42660
3454                 Seattle/Tacoma International     42660
3455                 Seattle/Tacoma International     42660
3456                        Sitka Rocky Gutierrez      <NA>
3457                        Sitka Rocky Gutierrez      <NA>
3458      Norman Y. Mineta San Jose International     41940
3459             John Wayne Airport-Orange County     31080
3460                        Bradley International     25540
3461                          Logan International     14460
3462                          Logan International     14460
3463                John F. Kennedy International     35620
3464                    Los Angeles International     31080
3465                    Los Angeles International     31080
3466                                    LaGuardia     35620
3467               Luis Munoz Marin International     41980
3468     Hartsfield-Jackson Atlanta International     12060
3469     Hartsfield-Jackson Atlanta International     12060
3470                    Grand Forks International     24220
3471     Hartsfield-Jackson Atlanta International     12060
3472                        Wichita Mid-Continent     48620
3473                          Logan International     14460
3474            Bozeman Yellowstone International     14580
3475                           Boise Air Terminal     14260
3476                         Tallahassee Regional     45220
3477                        Columbia Metropolitan     17900
3478                          Minot International     33500
3479                    Lewiston Nez Perce County     30300
3480         Rogue Valley International - Medford     32780
3481                    Los Angeles International     31080
3482                    Kansas City International     28140
3483                        Memphis International     32820
3484                       Missoula International     33540
3485              Aspen Pitkin County Sardy Field     24060
3486            Minneapolis-St Paul International     33460
3487                       Portland International     38900
3488                          Tulsa International     46140
3489                              Mobile Regional     33660
3490                               Cherry Capital     45900
3491             James M Cox/Dayton International     19430
3492              Dallas/Fort Worth International     19100
3493              Dallas/Fort Worth International     19100
3494              Dallas/Fort Worth International     19100
3495              Dallas/Fort Worth International     19100
3496                         Gainesville Regional     23540
3497                          Miami International     33100
3498                                       Yeager     16620
3499              Charlotte Douglas International     16740
3500            Ronald Reagan Washington National     47900
3501             Dane County Regional-Truax Field     31540
3502                        Norfolk International     47260
3503                   Philadelphia International     37980
3504                           Bismarck Municipal     13900
3505                      Brainerd Lakes Regional     14660
3506                         Denver International     19740
3507                         Denver International     19740
3508                         Denver International     19740
3509                         Denver International     19740
3510              Dallas/Fort Worth International     19100
3511              Dallas/Fort Worth International     19100
3512              Dallas/Fort Worth International     19100
3513              Washington Dulles International     47900
3514                       Appleton International     11540
3515                         Sawyer International     32100
3516            Minneapolis-St Paul International     33460
3517            Minneapolis-St Paul International     33460
3518                              Eppley Airfield     36540
3519                 Chicago O'Hare International     16980
3520                 Chicago O'Hare International     16980
3521                       Portland International     38900
3522                       Portland International     38900
3523             Phoenix Sky Harbor International     38060
3524             Phoenix Sky Harbor International     38060
3525                        Spokane International     44060
3526              Washington Dulles International     47900
3527                      San Diego International     41740
3528                     San Luis County Regional     42020
3529                 Salt Lake City International     41620
3530                 Salt Lake City International     41620
3531                 Salt Lake City International     41620
3532                 Salt Lake City International     41620
3533                 Salt Lake City International     41620
3534                             Snohomish County     42660
3535                      Pullman Moscow Regional     39420
3536                      Santa Barbara Municipal     42200
3537                 Seattle/Tacoma International     42660
3538                 Seattle/Tacoma International     42660
3539                         Denver International     19740
3540              Washington Dulles International     47900
3541              Washington Dulles International     47900
3542         George Bush Intercontinental/Houston     26420
3543                                 McGhee Tyson     28940
3544              Gunnison-Crested Butte Regional      <NA>
3545               Syracuse Hancock International     45060
3546                 Chicago O'Hare International     16980
3547     Jackson Medgar Wiley Evers International     27140
3548                     Reno/Tahoe International     39900
3549                  San Francisco International     41860
3550                  San Francisco International     41860
3551             John Wayne Airport-Orange County     31080
3552                                       Yeager     16620
3553                      Grand Junction Regional     24300
3554                            Dallas Love Field     19100
3555                         Denver International     19740
3556      Fort Lauderdale-Hollywood International     33100
3557                 Gerald R. Ford International     24340
3558                              William P Hobby     26420
3559                       McCarran International     29820
3560             Phoenix Sky Harbor International     38060
3561                     Pittsburgh International     38300
3562                     Sacramento International     40900
3563               St Louis Lambert International     41180
3564               St Louis Lambert International     41180
3565                     Sacramento International     40900
3566              Washington Dulles International     47900
3567         George Bush Intercontinental/Houston     26420
3568         George Bush Intercontinental/Houston     26420
3569                      Santa Barbara Municipal     42200
3570              Charlotte Douglas International     16740
3571                 Gerald R. Ford International     24340
3572                   Philadelphia International     37980
3573                 Chicago O'Hare International     16980
3574             James M Cox/Dayton International     19430
3575                   Philadelphia International     37980
3576                         Denver International     19740
3577                           Boise Air Terminal     14260
3578         George Bush Intercontinental/Houston     26420
3579                           Mahlon Sweet Field     21660
3580     Hartsfield-Jackson Atlanta International     12060
3581     Hartsfield-Jackson Atlanta International     12060
3582                     Des Moines International     19780
3583                   Detroit Metro Wayne County     19820
3584                                    LaGuardia     35620
3585                                    LaGuardia     35620
3586            Minneapolis-St Paul International     33460
3587            Minneapolis-St Paul International     33460
3588                                 McGhee Tyson     28940
3589                 Springfield-Branson National     44180
3590            Bozeman Yellowstone International     14580
3591                     San Luis County Regional     42020
3592              Charlotte Douglas International     16740
3593                       Missoula International     33540
3594      Northwest Florida Beaches International     37460
3595              Dallas/Fort Worth International     19100
3596              Dallas/Fort Worth International     19100
3597              Dallas/Fort Worth International     19100
3598                     Des Moines International     19780
3599                           Mahlon Sweet Field     21660
3600                Buffalo Niagara International     15380
3601                        Eagle County Regional     20780
3602             Phoenix Sky Harbor International     38060
3603   Central Il Regional Airport at Bloomington     14010
3604                       Key West International     28580
3605                                 Cyril E King      <NA>
3606          Ted Stevens Anchorage International     11260
3607                           Boise Air Terminal     14260
3608              Dallas/Fort Worth International     19100
3609                Daniel K Inouye International     46520
3610                 Chicago O'Hare International     16980
3611                       Portland International     38900
3612                       Portland International     38900
3613                       Portland International     38900
3614                      San Diego International     41740
3615                 Seattle/Tacoma International     42660
3616                         Tucson International     46060
3617                          Logan International     14460
3618                John F. Kennedy International     35620
3619     Hartsfield-Jackson Atlanta International     12060
3620     Hartsfield-Jackson Atlanta International     12060
3621                          South Bend Regional     43780
3622            Minneapolis-St Paul International     33460
3623                     Golden Triangle Regional     18060
3624                 Salt Lake City International     41620
3625              Dallas/Fort Worth International     19100
3626              Dallas/Fort Worth International     19100
3627              Dallas/Fort Worth International     19100
3628              Dallas/Fort Worth International     19100
3629                    San Antonio International     41700
3630                                  Adams Field     30780
3631                          Miami International     33100
3632                   Myrtle Beach International     34820
3633                             Rafael Hernandez     10380
3634                        Columbia Metropolitan     17900
3635              Charlotte Douglas International     16740
3636            Ronald Reagan Washington National     47900
3637                               Joe Foss Field     43620
3638                   Manchester-Boston Regional     31700
3639                   Philadelphia International     37980
3640            Albuquerque International Sunport     10740
3641                 Billings Logan International     13740
3642              Dallas/Fort Worth International     19100
3643              Dallas/Fort Worth International     19100
3644                   Detroit Metro Wayne County     19820
3645                   Detroit Metro Wayne County     19820
3646                        Spokane International     44060
3647            Minneapolis-St Paul International     33460
3648                 Chicago O'Hare International     16980
3649                        Eagle County Regional     20780
3650                  San Francisco International     41860
3651      Norman Y. Mineta San Jose International     41940
3652                 Salt Lake City International     41620
3653                 Salt Lake City International     41620
3654                 Salt Lake City International     41620
3655                       McCarran International     29820
3656                      San Diego International     41740
3657                 Seattle/Tacoma International     42660
3658                         Denver International     19740
3659                          Hilton Head Airport     25940
3660                 Chicago O'Hare International     16980
3661                Pensacola Gulf Coast Regional     37860
3662                              Helena Regional     25740
3663                       Key West International     28580
3664                    San Antonio International     41700
3665                Gulfport-Biloxi International     25060
3666                                     Bob Hope     31080
3667            Ronald Reagan Washington National     47900
3668                        Long Island MacArthur     35620
3669                        Orlando International     36740
3670                 Chicago Midway International     16980
3671           Metropolitan Oakland International     41860
3672           Metropolitan Oakland International     41860
3673           Metropolitan Oakland International     41860
3674             Phoenix Sky Harbor International     38060
3675                        Wichita Mid-Continent     48620
3676              Charlotte Douglas International     16740
3677                     Sacramento International     40900
3678               St Louis Lambert International     41180
3679              Dallas/Fort Worth International     19100
3680                         Hector International     22020
3681                               Joe Foss Field     43620
3682         George Bush Intercontinental/Houston     26420
3683         George Bush Intercontinental/Houston     26420
3684                      Quad City International     19340
3685                 Raleigh-Durham International     39580
3686            Ronald Reagan Washington National     47900
3687              Washington Dulles International     47900
3688                                    LaGuardia     35620
3689                        Memphis International     32820
3690                   Philadelphia International     37980
3691                 Chicago O'Hare International     16980
3692              Charlotte Douglas International     16740
3693              Charlotte Douglas International     16740
3694                   Philadelphia International     37980
3695                   Philadelphia International     37980
3696         George Bush Intercontinental/Houston     26420
3697                              Mobile Regional     33660
3698     Hartsfield-Jackson Atlanta International     12060
3699                   Detroit Metro Wayne County     19820
3700          Ted Stevens Anchorage International     11260
3701                         Bangor International     12620
3702              Charlotte Douglas International     16740
3703                          Miami International     33100
3704          Lubbock Preston Smith International     31180
3705              Dallas/Fort Worth International     19100
3706              Dallas/Fort Worth International     19100
3707              Dallas/Fort Worth International     19100
3708              Dallas/Fort Worth International     19100
3709              Dallas/Fort Worth International     19100
3710              Dallas/Fort Worth International     19100
3711              Dallas/Fort Worth International     19100
3712              Dallas/Fort Worth International     19100
3713              Dallas/Fort Worth International     19100
3714               General Mitchell International     33340
3715                John F. Kennedy International     35620
3716                John F. Kennedy International     35620
3717                Buffalo Niagara International     15380
3718                                 Yampa Valley     44460
3719                          Miami International     33100
3720                        Norfolk International     47260
3721           Savannah/Hilton Head International     42340
3722               Luis Munoz Marin International     41980
3723                 Springfield-Branson National     44180
3724                 Salt Lake City International     41620
3725          Ted Stevens Anchorage International     11260
3726                   Petersburg James A Johnson      <NA>
3727                               Bethel Airport      <NA>
3728                John F. Kennedy International     35620
3729                       McCarran International     29820
3730               Luis Munoz Marin International     41980
3731                          Tampa International     45300
3732     Hartsfield-Jackson Atlanta International     12060
3733                        Memphis International     32820
3734                 Newark Liberty International     35620
3735              Dallas/Fort Worth International     19100
3736              Dallas/Fort Worth International     19100
3737                          Miami International     33100
3738                            Will Rogers World     36420
3739               General Mitchell International     33340
3740                             The Eastern Iowa     16300
3741              Charlotte Douglas International     16740
3742              Charlotte Douglas International     16740
3743            Ronald Reagan Washington National     47900
3744            Ronald Reagan Washington National     47900
3745                        Memphis International     32820
3746                         Albany International     10580
3747              Dallas/Fort Worth International     19100
3748         George Bush Intercontinental/Houston     26420
3749                    Los Angeles International     31080
3750                    Lewiston Nez Perce County     30300
3751                 Chicago O'Hare International     16980
3752                 Chicago O'Hare International     16980
3753                 Chicago O'Hare International     16980
3754             Phoenix Sky Harbor International     38060
3755                     San Luis County Regional     42020
3756                  San Francisco International     41860
3757                 Salt Lake City International     41620
3758                               Kodiak Airport      <NA>
3759  Huntsville International-Carl T Jones Field     26620
3760 Brownsville South Padre Island International     15180
3761              Washington Dulles International     47900
3762         George Bush Intercontinental/Houston     26420
3763                 Chicago O'Hare International     16980
3764                  San Francisco International     41860
3765            Albuquerque International Sunport     10740
3766                      Nashville International     34980
3767                      Nashville International     34980
3768           Baltimore/Washington International     12580
3769           Baltimore/Washington International     12580
3770                         Denver International     19740
3771                   Jacksonville International     27260
3772                                 Yampa Valley     44460
3773                              William P Hobby     26420
3774                       McCarran International     29820
3775                       McCarran International     29820
3776                       McCarran International     29820
3777                       McCarran International     29820
3778                       McCarran International     29820
3779                                  Adams Field     30780
3780                        Orlando International     36740
3781                 Chicago Midway International     16980
3782                   Manchester-Boston Regional     31700
3783                   Manchester-Boston Regional     31700
3784               General Mitchell International     33340
3785                       Portland International     38900
3786                       Portland International     38900
3787             Phoenix Sky Harbor International     38060
3788             Phoenix Sky Harbor International     38060
3789                    San Antonio International     41700
3790        Louisville Muhammad Ali International     31140
3791                     Sacramento International     40900
3792                     Sacramento International     40900
3793               St Louis Lambert International     41180
3794              Dallas/Fort Worth International     19100
3795              Dallas/Fort Worth International     19100
3796                   Detroit Metro Wayne County     19820
3797  Huntsville International-Carl T Jones Field     26620
3798             Phoenix Sky Harbor International     38060
3799             Phoenix Sky Harbor International     38060
3800              Charlotte Douglas International     16740
3801                                    LaGuardia     35620
3802                 Raleigh-Durham International     39580
3803                 Chicago O'Hare International     16980
3804              Washington Dulles International     47900
3805                            Will Rogers World     36420
3806                           Worcester Regional     49340
3807                 Billings Logan International     13740
3808                          Hilton Head Airport     25940
3809           Baltimore/Washington International     12580
3810                          Miami International     33100
3811                 Charleston AFB/International     16700
3812      Fort Lauderdale-Hollywood International     33100
3813                John F. Kennedy International     35620
3814                           Worcester Regional     49340
3815                           Worcester Regional     49340
3816               Luis Munoz Marin International     41980
3817                                 Cyril E King      <NA>
3818             Dane County Regional-Truax Field     31540
3819   Central Il Regional Airport at Bloomington     14010
3820                Buffalo Niagara International     15380
3821                         Denver International     19740
3822                         Denver International     19740
3823                         Denver International     19740
3824                     Des Moines International     19780
3825                      Durango La Plata County     20420
3826                               Joe Foss Field     43620
3827                         Valley International     15180
3828                                   New Castle     37980
3829                        Long Island MacArthur     35620
3830                        Long Island MacArthur     35620
3831                       McCarran International     29820
3832                        Orlando International     36740
3833                        Orlando International     36740
3834                 Chicago O'Hare International     16980
3835                     Palm Beach International     33100
3836               Portland International Jetport     38860
3837               Portland International Jetport     38860
3838                 Raleigh-Durham International     39580
3839                 Raleigh-Durham International     39580
3840              Southwest Florida International     15980
3841               New York Stewart International     39100
3842               New York Stewart International     39100
3843               Syracuse Hancock International     45060
3844                          Tampa International     45300
3845                               Trenton Mercer     45940
3846                               Trenton Mercer     45940
3847                               Trenton Mercer     45940
3848                               Trenton Mercer     45940
3849                 Charleston AFB/International     16700
3850                  Atlantic City International     12100
3851                  Atlantic City International     12100
3852                        Akron-Canton Regional     10420
3853            John Glenn Columbus International     18140
3854                     Palm Beach International     33100
3855      Fort Lauderdale-Hollywood International     33100
3856                   Indianapolis International     26900
3857                       McCarran International     29820
3858                    Los Angeles International     31080
3859                       Arnold Palmer Regional     38300
3860                                    LaGuardia     35620
3861                        Orlando International     36740
3862                        Orlando International     36740
3863                        Orlando International     36740
3864                   Myrtle Beach International     34820
3865                   Myrtle Beach International     34820
3866                   Myrtle Beach International     34820
3867                                 Cyril E King      <NA>
3868                 Chicago O'Hare International     16980
3869                   Philadelphia International     37980
3870              Southwest Florida International     15980
3871              Southwest Florida International     15980
3872        Louisville Muhammad Ali International     31140
3873                                 McGhee Tyson     28940
3874                    Los Angeles International     31080
3875                  San Francisco International     41860
3876                         Denver International     19740
3877                  Lehigh Valley International     10900
3878                 Chicago O'Hare International     16980
3879                   Detroit Metro Wayne County     19820
3880           Savannah/Hilton Head International     42340
3881                           Hilo International     25900
3882         George Bush Intercontinental/Houston     26420
3883                           Worcester Regional     49340
3884              Cleveland-Hopkins International     17460
3885                           Asheville Regional     11700
3886            Minneapolis-St Paul International     33460
3887            Minneapolis-St Paul International     33460
3888            Minneapolis-St Paul International     33460
3889                     Palm Beach International     33100
3890                          Punta Gorda Airport     39460
3891         George Bush Intercontinental/Houston     26420
3892                Daniel K Inouye International     46520
3893                John F. Kennedy International     35620
3894          Ted Stevens Anchorage International     11260
3895          Ted Stevens Anchorage International     11260
3896         George Bush Intercontinental/Houston     26420
3897                 Chicago O'Hare International     16980
3898      Norman Y. Mineta San Jose International     41940
3899     Hartsfield-Jackson Atlanta International     12060
3900                   Detroit Metro Wayne County     19820
3901              Charlotte Douglas International     16740
3902              Charlotte Douglas International     16740
3903              Charlotte Douglas International     16740
3904              Dallas/Fort Worth International     19100
3905             Phoenix Sky Harbor International     38060
3906          Ted Stevens Anchorage International     11260
3907                          King Salmon Airport      <NA>
3908                 Seattle/Tacoma International     42660
3909                     Palm Beach International     33100
3910                                 Cyril E King      <NA>
3911     Hartsfield-Jackson Atlanta International     12060
3912     Hartsfield-Jackson Atlanta International     12060
3913     Hartsfield-Jackson Atlanta International     12060
3914                       McCarran International     29820
3915          Casper/Natrona County International     16220
3916                            Aberdeen Regional     10100
3917                 Newark Liberty International     35620
3918                 Piedmont Triad International     24660
3919                 Billings Logan International     13740
3920          Baton Rouge Metropolitan/Ryan Field     12940
3921                                       Yeager     16620
3922            Ronald Reagan Washington National     47900
3923         Greenville-Spartanburg International     43900
3924                   Philadelphia International     37980
3925                   Philadelphia International     37980
3926                   Philadelphia International     37980
3927                     Gillette Campbell County     23940
3928                         Denver International     19740
3929                         Denver International     19740
3930                         Denver International     19740
3931                         Denver International     19740
3932              Dallas/Fort Worth International     19100
3933              Dallas/Fort Worth International     19100
3934             Phoenix Sky Harbor International     38060
3935                            Friedman Memorial     25200
3936                           Mahlon Sweet Field     21660
3937         Joslin Field - Magic Valley Regional     46300
3938            Albuquerque International Sunport     10740
3939                  San Francisco International     41860
3940     Hartsfield-Jackson Atlanta International     12060
3941                Buffalo Niagara International     15380
3942                Buffalo Niagara International     15380
3943           Baltimore/Washington International     12580
3944            John Glenn Columbus International     18140
3945            John Glenn Columbus International     18140
3946                            Dallas Love Field     19100
3947                            Dallas Love Field     19100
3948                 Gerald R. Ford International     24340
3949             Phoenix Sky Harbor International     38060
3950      Northwest Florida Beaches International     37460
3951        Louisville Muhammad Ali International     31140
3952                             The Eastern Iowa     16300
3953              Dallas/Fort Worth International     19100
3954         George Bush Intercontinental/Houston     26420
3955     Hartsfield-Jackson Atlanta International     12060
3956             James M Cox/Dayton International     19430
3957              Washington Dulles International     47900
3958                     Burlington International     15540
3959                   Philadelphia International     37980
3960                John F. Kennedy International     35620
3961                          Montgomery Regional     33860
3962                      Durango La Plata County     20420
3963                            Florence Regional     22500
3964  Huntsville International-Carl T Jones Field     26620
3965      Fort Lauderdale-Hollywood International     33100
3966                 Charleston AFB/International     16700
3967                         Laredo International     29700
3968   Cincinnati/Northern Kentucky International     17140
3969                   Philadelphia International     37980
3970                 Piedmont Triad International     24660
3971              Dallas/Fort Worth International     19100
3972   Central Il Regional Airport at Bloomington     14010
3973                          La Crosse Municipal     29100
3974                                Meadows Field     12540
3975                          South Bend Regional     43780
3976              Greater Rochester International     40380
3977                John F. Kennedy International     35620
3978                        Ontario International     40140
3979                                   Tri Cities     28700
3980                     Burlington International     15540
3981                      Rochester International     40340
3982                          Miami International     33100
3983                        Del Rio International     19620
3984                                       Yeager     16620
3985                          Evansville Regional     21780
3986                    Great Falls International     24500
3987                   Palm Springs International     40140
3988                     Reno/Tahoe International     39900
3989                John F. Kennedy International     35620
3990               Portland International Jetport     38860
3991                 Charleston AFB/International     16700
3992                           Nantucket Memorial      <NA>
3993     Hartsfield-Jackson Atlanta International     12060
3994                       Appleton International     11540
3995                         Albany International     10580
3996                        Wichita Mid-Continent     48620
3997                      Rochester International     40340
3998      Fort Lauderdale-Hollywood International     33100
3999                            Central Wisconsin     48140
4000                                 Lovell Field     16860
4001                   Jacksonville International     27260
4002                John F. Kennedy International     35620
4003              Charlotte Douglas International     16740
4004    Louis Armstrong New Orleans International     35380
4005                              William P Hobby     26420
4006                        Orlando International     36740
4007                  San Francisco International     41860
4008            Minneapolis-St Paul International     33460
4009     Hartsfield-Jackson Atlanta International     12060
4010     Hartsfield-Jackson Atlanta International     12060
4011             Phoenix Sky Harbor International     38060
4012                        Spokane International     44060
4013                   Detroit Metro Wayne County     19820
4014                                Lihue Airport     28180
4015              Charlotte Douglas International     16740
4016              Washington Dulles International     47900
4017              Charlotte Douglas International     16740
4018      Fort Lauderdale-Hollywood International     33100
4019                          Miami International     33100
4020                 Chicago O'Hare International     16980
4021                       Portland International     38900
4022                 Chicago O'Hare International     16980
4023              Charlotte Douglas International     16740
4024                   Philadelphia International     37980
4025                   Philadelphia International     37980
4026              Washington Dulles International     47900
4027                              Monroe Regional     33740
4028              Washington Dulles International     47900
4029                 Salt Lake City International     41620
4030                Daniel K Inouye International     46520
4031      Norman Y. Mineta San Jose International     41940
4032              Southwest Florida International     15980
4033                Daniel K Inouye International     46520
4034                              William P Hobby     26420
4035         George Bush Intercontinental/Houston     26420
4036                                 Delta County     21540
4037              Washington Dulles International     47900
4038                                 Cyril E King      <NA>
4039             Phoenix Sky Harbor International     38060
4040                 Salt Lake City International     41620
4041                           Watertown Regional     47980
4042                 Chicago Midway International     16980
4043               St Louis Lambert International     41180
4044                            Dallas Love Field     19100
4045                              Kahului Airport     27980
4046                                     Bob Hope     31080
4047                        Orlando International     36740
4048           Baltimore/Washington International     12580
4049                 Chicago O'Hare International     16980
4050         George Bush Intercontinental/Houston     26420
4051        Kona International Airport at Keahole     25900
4052                 Salt Lake City International     41620
4053          Ted Stevens Anchorage International     11260
4054     Hartsfield-Jackson Atlanta International     12060
4055                              Kahului Airport     27980
4056              Charlotte Douglas International     16740
4057                 Chicago Midway International     16980
4058                 Chicago O'Hare International     16980
4059              Charlotte Douglas International     16740
4060              Charlotte Douglas International     16740
4061             Austin - Bergstrom International     12420
4062             John Wayne Airport-Orange County     31080
4063                     Pittsburgh International     38300
4064                 Chicago Midway International     16980
4065              Dallas/Fort Worth International     19100
4066                     Pittsburgh International     38300
4067          Ted Stevens Anchorage International     11260
4068                       Portland International     38900
4069                       Portland International     38900
4070              Southwest Florida International     15980
4071                 Seattle/Tacoma International     42660
4072                        Orlando International     36740
4073    Louis Armstrong New Orleans International     35380
4074     Hartsfield-Jackson Atlanta International     12060
4075     Hartsfield-Jackson Atlanta International     12060
4076                     Reno/Tahoe International     39900
4077                 Salt Lake City International     41620
4078                 Newark Liberty International     35620
4079              Charlotte Douglas International     16740
4080                       Richmond International     40060
4081              Charlotte Douglas International     16740
4082              Charlotte Douglas International     16740
4083                     Ithaca Tompkins Regional     27060
4084                   Philadelphia International     37980
4085              Aspen Pitkin County Sardy Field     24060
4086              Dallas/Fort Worth International     19100
4087                    Los Angeles International     31080
4088                                 Cyril E King      <NA>
4089             Austin - Bergstrom International     12420
4090             Sarasota/Bradenton International     35840
4091                           St George Regional     41100
4092                 Chicago O'Hare International     16980
4093                   Philadelphia International     37980
4094                   Philadelphia International     37980
4095         George Bush Intercontinental/Houston     26420
4096          Ted Stevens Anchorage International     11260
4097                         Denver International     19740
4098      Green Bay Austin Straubel International     24580
4099                        Long Island MacArthur     35620
4100                       McCarran International     29820
4101                        Orlando International     36740
4102                        Orlando International     36740
4103                        Orlando International     36740
4104                        Orlando International     36740
4105                          Miami International     33100
4106             Dane County Regional-Truax Field     31540
4107               Syracuse Hancock International     45060
4108    Pellston Regional Airport of Emmet County      <NA>
4109              Charlotte Douglas International     16740
4110              Dallas/Fort Worth International     19100
4111         Greenville-Spartanburg International     43900
4112                        Sitka Rocky Gutierrez      <NA>
4113                              Yakutat Airport      <NA>
4114                          Logan International     14460
4115      Norman Y. Mineta San Jose International     41940
4116   Cincinnati/Northern Kentucky International     17140
4117         Joslin Field - Magic Valley Regional     46300
4118                              Dothan Regional     37120
4119                    Great Falls International     24500
4120                                  Bert Mooney     15580
4121                                       Yeager     16620
4122                 Salt Lake City International     41620
4123              Dallas/Fort Worth International     19100
4124              Charlotte Douglas International     16740
4125              Charlotte Douglas International     16740
4126              Charlotte Douglas International     16740
4127                   Philadelphia International     37980
4128                         Tallahassee Regional     45220
4129              Dallas/Fort Worth International     19100
4130                   Detroit Metro Wayne County     19820
4131                         Sawyer International     32100
4132                    Los Angeles International     31080
4133            Charles M. Schulz - Sonoma County     42220
4134                            Granite Point Ndb      <NA>
4135            Minneapolis-St Paul International     33460
4136                            Will Rogers World     36420
4137                           St George Regional     41100
4138                         Valley International     15180
4139                 Newark Liberty International     35620
4140                    Los Angeles International     31080
4141                 Chicago O'Hare International     16980
4142            Albuquerque International Sunport     10740
4143               Luis Munoz Marin International     41980
4144             Austin - Bergstrom International     12420
4145                            Dallas Love Field     19100
4146                              William P Hobby     26420
4147                              William P Hobby     26420
4148             John Wayne Airport-Orange County     31080
4149                          Tampa International     45300
4150              Dallas/Fort Worth International     19100
4151              Charlotte Douglas International     16740
4152            Bozeman Yellowstone International     14580
4153                  Northwest Arkansas Regional     22220
4154                 Newark Liberty International     35620
4155            Minneapolis-St Paul International     33460
4156                          Logan International     14460
4157                                    LaGuardia     35620
4158                                    LaGuardia     35620
4159                                    LaGuardia     35620
4160                                    LaGuardia     35620
4161                        Norfolk International     47260
4162                                 Jackson Hole     27220
4163              Dallas/Fort Worth International     19100
4164                        El Paso International     21340
4165         Greenville-Spartanburg International     43900
4166                          Montgomery Regional     33860
                                     dest_cbsa_name
1                       Detroit-Warren-Dearborn, MI
2                       Detroit-Warren-Dearborn, MI
3                       Detroit-Warren-Dearborn, MI
4                       Detroit-Warren-Dearborn, MI
5                San Francisco-Oakland-Berkeley, CA
6                         Phoenix-Mesa-Chandler, AZ
7                       Detroit-Warren-Dearborn, MI
8           Miami-Fort Lauderdale-Pompano Beach, FL
9                       Detroit-Warren-Dearborn, MI
10                      Detroit-Warren-Dearborn, MI
11                      Detroit-Warren-Dearborn, MI
12                      Detroit-Warren-Dearborn, MI
13              Portland-Vancouver-Hillsboro, OR-WA
14                        Phoenix-Mesa-Chandler, AZ
15               San Jose-Sunnyvale-Santa Clara, CA
16               San Jose-Sunnyvale-Santa Clara, CA
17                      Detroit-Warren-Dearborn, MI
18                             Dayton-Kettering, OH
19                          Buffalo-Cheektowaga, NY
20                                  Panama City, FL
21          Minneapolis-St. Paul-Bloomington, MN-WI
22             Riverside-San Bernardino-Ontario, CA
23                        Providence-Warwick, RI-MA
24                                 Jacksonville, FL
25          Miami-Fort Lauderdale-Pompano Beach, FL
26                                    Asheville, NC
27            New York-Newark-Jersey City, NY-NJ-PA
28                                     Key West, FL
29                                      Jackson, MS
30               Los Angeles-Long Beach-Anaheim, CA
31              Portland-Vancouver-Hillsboro, OR-WA
32                                 Raleigh-Cary, NC
33                  Sacramento-Roseville-Folsom, CA
34          Miami-Fort Lauderdale-Pompano Beach, FL
35               San Francisco-Oakland-Berkeley, CA
36                       Denver-Aurora-Lakewood, CO
37            New York-Newark-Jersey City, NY-NJ-PA
38               San Diego-Chula Vista-Carlsbad, CA
39                      Seattle-Tacoma-Bellevue, WA
40               San Diego-Chula Vista-Carlsbad, CA
41                  Sacramento-Roseville-Folsom, CA
42                           Kennewick-Richland, WA
43            New York-Newark-Jersey City, NY-NJ-PA
44            New York-Newark-Jersey City, NY-NJ-PA
45             Atlanta-Sandy Springs-Alpharetta, GA
46                  Dallas-Fort Worth-Arlington, TX
47                                    Lafayette, LA
48                 Austin-Round Rock-Georgetown, TX
49                             Cincinnati, OH-KY-IN
50                               Kansas City, MO-KS
51               Chicago-Naperville-Elgin, IL-IN-WI
52               San Diego-Chula Vista-Carlsbad, CA
53                                     Syracuse, NY
54          Miami-Fort Lauderdale-Pompano Beach, FL
55                               Urban Honolulu, HI
56                          Buffalo-Cheektowaga, NY
57                                  Sioux Falls, SD
58                                      Bozeman, MT
59                      Seattle-Tacoma-Bellevue, WA
60                   Des Moines-West Des Moines, IA
61                   Boston-Cambridge-Newton, MA-NH
62            New York-Newark-Jersey City, NY-NJ-PA
63                                     Fargo, ND-MN
64             Atlanta-Sandy Springs-Alpharetta, GA
65     Washington-Arlington-Alexandria, DC-VA-MD-WV
66            New York-Newark-Jersey City, NY-NJ-PA
67                         New Orleans-Metairie, LA
68                    San Antonio-New Braunfels, TX
69               Los Angeles-Long Beach-Anaheim, CA
70                                       Fresno, CA
71                                  Idaho Falls, ID
72             Riverside-San Bernardino-Ontario, CA
73                              Gulfport-Biloxi, MS
74                   Boston-Cambridge-Newton, MA-NH
75                    Orlando-Kissimmee-Sanford, FL
76                                  Spartanburg, SC
77                      Albany-Schenectady-Troy, NY
78            Hartford-East Hartford-Middletown, CT
79                      Detroit-Warren-Dearborn, MI
80                           Milwaukee-Waukesha, WI
81                  Dallas-Fort Worth-Arlington, TX
82                                Memphis, TN-MS-AR
83                    Baltimore-Columbia-Towson, MD
84                                     Columbus, OH
85                         New Orleans-Metairie, LA
86       Virginia Beach-Norfolk-Newport News, VA-NC
87                                   Pittsburgh, PA
88          Miami-Fort Lauderdale-Pompano Beach, FL
89                    Orlando-Kissimmee-Sanford, FL
90                 Las Vegas-Henderson-Paradise, NV
91               San Diego-Chula Vista-Carlsbad, CA
92                  Sacramento-Roseville-Folsom, CA
93                                 Raleigh-Cary, NC
94                                     Columbus, OH
95                    Orlando-Kissimmee-Sanford, FL
96              Portland-Vancouver-Hillsboro, OR-WA
97                      Omaha-Council Bluffs, NE-IA
98           Deltona-Daytona Beach-Ormond Beach, FL
99                 Indianapolis-Carmel-Anderson, IN
100           New York-Newark-Jersey City, NY-NJ-PA
101                              Salt Lake City, UT
102               North Port-Sarasota-Bradenton, FL
103          Crestview-Fort Walton Beach-Destin, FL
104                  Boston-Cambridge-Newton, MA-NH
105                Indianapolis-Carmel-Anderson, IN
106                                      Tucson, AZ
107              Los Angeles-Long Beach-Anaheim, CA
108              Los Angeles-Long Beach-Anaheim, CA
109              Chicago-Naperville-Elgin, IL-IN-WI
110                       Greensboro-High Point, NC
111                            Cleveland-Elyria, OH
112                       Grand Rapids-Kentwood, MI
113     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
114              Los Angeles-Long Beach-Anaheim, CA
115            Houston-The Woodlands-Sugar Land, TX
116                           Kalamazoo-Portage, MI
117           New York-Newark-Jersey City, NY-NJ-PA
118           New York-Newark-Jersey City, NY-NJ-PA
119                      Denver-Aurora-Lakewood, CO
120                                        Hilo, HI
121           New York-Newark-Jersey City, NY-NJ-PA
122           New York-Newark-Jersey City, NY-NJ-PA
123           New York-Newark-Jersey City, NY-NJ-PA
124           New York-Newark-Jersey City, NY-NJ-PA
125           New York-Newark-Jersey City, NY-NJ-PA
126                                       Kapaa, HI
127                              Salt Lake City, UT
128              Los Angeles-Long Beach-Anaheim, CA
129                      Spokane-Spokane Valley, WA
130                      Spokane-Spokane Valley, WA
131                                  Jackson, WY-ID
132              San Francisco-Oakland-Berkeley, CA
133                            Colorado Springs, CO
134           New York-Newark-Jersey City, NY-NJ-PA
135           New York-Newark-Jersey City, NY-NJ-PA
136                                        Reno, NV
137                                  Boise City, ID
138                                Jacksonville, NC
139                            Cincinnati, OH-KY-IN
140                                    Syracuse, NY
141                            Cleveland-Elyria, OH
142             Tampa-St. Petersburg-Clearwater, FL
143                                    Syracuse, NY
144                Las Vegas-Henderson-Paradise, NV
145                                   Duluth, MN-WI
146           Hartford-East Hartford-Middletown, CT
147           New York-Newark-Jersey City, NY-NJ-PA
148                Austin-Round Rock-Georgetown, TX
149                Las Vegas-Henderson-Paradise, NV
150                  Augusta-Richmond County, GA-SC
151                                    Richmond, VA
152                   San Antonio-New Braunfels, TX
153              Los Angeles-Long Beach-Anaheim, CA
154           New York-Newark-Jersey City, NY-NJ-PA
155                  Boston-Cambridge-Newton, MA-NH
156              Los Angeles-Long Beach-Anaheim, CA
157           Hartford-East Hartford-Middletown, CT
158                         Buffalo-Cheektowaga, NY
159           New York-Newark-Jersey City, NY-NJ-PA
160                                    Richmond, VA
161              Los Angeles-Long Beach-Anaheim, CA
162                         Buffalo-Cheektowaga, NY
163                                    Richmond, VA
164                   Orlando-Kissimmee-Sanford, FL
165              Los Angeles-Long Beach-Anaheim, CA
166                                   Anchorage, AK
167                                   Kalispell, MT
168              Los Angeles-Long Beach-Anaheim, CA
169                                    Missoula, MT
170                                      Hailey, ID
171                               Oklahoma City, OK
172                       Grand Rapids-Kentwood, MI
173              Los Angeles-Long Beach-Anaheim, CA
174                       Phoenix-Mesa-Chandler, AZ
175              San Diego-Chula Vista-Carlsbad, CA
176                     Seattle-Tacoma-Bellevue, WA
177           New York-Newark-Jersey City, NY-NJ-PA
178                                  Boise City, ID
179                      Spokane-Spokane Valley, WA
180                       Phoenix-Mesa-Chandler, AZ
181              San Francisco-Oakland-Berkeley, CA
182                 Sacramento-Roseville-Folsom, CA
183           New York-Newark-Jersey City, NY-NJ-PA
184           New York-Newark-Jersey City, NY-NJ-PA
185           New York-Newark-Jersey City, NY-NJ-PA
186                  Boston-Cambridge-Newton, MA-NH
187        Little Rock-North Little Rock-Conway, AR
188                                 Baton Rouge, LA
189             Portland-Vancouver-Hillsboro, OR-WA
190                           Lexington-Fayette, KY
191                              Urban Honolulu, HI
192    Washington-Arlington-Alexandria, DC-VA-MD-WV
193                                St. Louis, MO-IL
194                   Orlando-Kissimmee-Sanford, FL
195                       La Crosse-Onalaska, WI-MN
196                   Orlando-Kissimmee-Sanford, FL
197                   Orlando-Kissimmee-Sanford, FL
198                                   Green Bay, WI
199             Tampa-St. Petersburg-Clearwater, FL
200                                      Tucson, AZ
201                      Denver-Aurora-Lakewood, CO
202              San Francisco-Oakland-Berkeley, CA
203                                   Knoxville, TN
204                                Cedar Rapids, IA
205                      Denver-Aurora-Lakewood, CO
206                                   Brunswick, GA
207                       Cape Coral-Fort Myers, FL
208                                 Spartanburg, SC
209    Washington-Arlington-Alexandria, DC-VA-MD-WV
210         Miami-Fort Lauderdale-Pompano Beach, FL
211   Myrtle Beach-Conway-North Myrtle Beach, SC-NC
212                                    Savannah, GA
213                                       Tulsa, OK
214         Minneapolis-St. Paul-Bloomington, MN-WI
215         Minneapolis-St. Paul-Bloomington, MN-WI
216         Minneapolis-St. Paul-Bloomington, MN-WI
217         Minneapolis-St. Paul-Bloomington, MN-WI
218         Minneapolis-St. Paul-Bloomington, MN-WI
219         Minneapolis-St. Paul-Bloomington, MN-WI
220                 Dallas-Fort Worth-Arlington, TX
221         Miami-Fort Lauderdale-Pompano Beach, FL
222                       Cape Coral-Fort Myers, FL
223         Minneapolis-St. Paul-Bloomington, MN-WI
224         Minneapolis-St. Paul-Bloomington, MN-WI
225         Minneapolis-St. Paul-Bloomington, MN-WI
226                     Portland-South Portland, ME
227         Minneapolis-St. Paul-Bloomington, MN-WI
228         Minneapolis-St. Paul-Bloomington, MN-WI
229         Minneapolis-St. Paul-Bloomington, MN-WI
230         Minneapolis-St. Paul-Bloomington, MN-WI
231         Minneapolis-St. Paul-Bloomington, MN-WI
232         Minneapolis-St. Paul-Bloomington, MN-WI
233         Minneapolis-St. Paul-Bloomington, MN-WI
234         Minneapolis-St. Paul-Bloomington, MN-WI
235         Minneapolis-St. Paul-Bloomington, MN-WI
236         Minneapolis-St. Paul-Bloomington, MN-WI
237                        Lansing-East Lansing, MI
238                        New Orleans-Metairie, LA
239                        New Orleans-Metairie, LA
240              Los Angeles-Long Beach-Anaheim, CA
241                           Birmingham-Hoover, AL
242               Charlotte-Concord-Gastonia, NC-SC
243                                Raleigh-Cary, NC
244              San Francisco-Oakland-Berkeley, CA
245                  Pensacola-Ferry Pass-Brent, FL
246                   Orlando-Kissimmee-Sanford, FL
247            Riverside-San Bernardino-Ontario, CA
248                 Hilton Head Island-Bluffton, SC
249              Chicago-Naperville-Elgin, IL-IN-WI
250              Louisville/Jefferson County, KY-IN
251                                    Syracuse, NY
252              Chicago-Naperville-Elgin, IL-IN-WI
253              Chicago-Naperville-Elgin, IL-IN-WI
254                                   Duluth, MN-WI
255              Los Angeles-Long Beach-Anaheim, CA
256                  Des Moines-West Des Moines, IA
257                 Charleston-North Charleston, SC
258                Indianapolis-Carmel-Anderson, IN
259            Riverside-San Bernardino-Ontario, CA
260                  Boston-Cambridge-Newton, MA-NH
261                              Kansas City, MO-KS
262                                 Albuquerque, NM
263                                        Reno, NV
264                                 Albuquerque, NM
265         Miami-Fort Lauderdale-Pompano Beach, FL
266     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
267                                   Rochester, MN
268                     Portland-South Portland, ME
269                  Boston-Cambridge-Newton, MA-NH
270                     South Bend-Mishawaka, IN-MI
271  Nashville-Davidson--Murfreesboro--Franklin, TN
272    Washington-Arlington-Alexandria, DC-VA-MD-WV
273                Las Vegas-Henderson-Paradise, NV
274                                Raleigh-Cary, NC
275                                Raleigh-Cary, NC
276                                Raleigh-Cary, NC
277                                Raleigh-Cary, NC
278              San Francisco-Oakland-Berkeley, CA
279                                Raleigh-Cary, NC
280                                Raleigh-Cary, NC
281                 Dallas-Fort Worth-Arlington, TX
282                 Burlington-South Burlington, VT
283                       Cape Coral-Fort Myers, FL
284                                   Green Bay, WI
285              San Diego-Chula Vista-Carlsbad, CA
286                   Orlando-Kissimmee-Sanford, FL
287             Tampa-St. Petersburg-Clearwater, FL
288                                Fayetteville, NC
289                     Seattle-Tacoma-Bellevue, WA
290                   Baltimore-Columbia-Towson, MD
291    Washington-Arlington-Alexandria, DC-VA-MD-WV
292                     Seattle-Tacoma-Bellevue, WA
293                     Seattle-Tacoma-Bellevue, WA
294                          Milwaukee-Waukesha, WI
295                     Seattle-Tacoma-Bellevue, WA
296                     Seattle-Tacoma-Bellevue, WA
297                                  St. George, UT
298                     Seattle-Tacoma-Bellevue, WA
299  Nashville-Davidson--Murfreesboro--Franklin, TN
300                            Cincinnati, OH-KY-IN
301         Miami-Fort Lauderdale-Pompano Beach, FL
302                     Detroit-Warren-Dearborn, MI
303                     Detroit-Warren-Dearborn, MI
304                              Salt Lake City, UT
305                              Salt Lake City, UT
306                                Cedar Rapids, IA
307                          Milwaukee-Waukesha, WI
308                                    Columbus, OH
309                              Salt Lake City, UT
310                              Salt Lake City, UT
311                              Salt Lake City, UT
312                              Salt Lake City, UT
313                              Salt Lake City, UT
314           New York-Newark-Jersey City, NY-NJ-PA
315                              Salt Lake City, UT
316                              Salt Lake City, UT
317                              Salt Lake City, UT
318                              Salt Lake City, UT
319                              Salt Lake City, UT
320  Nashville-Davidson--Murfreesboro--Franklin, TN
321         Minneapolis-St. Paul-Bloomington, MN-WI
322                              Chattanooga, TN-GA
323                       Grand Rapids-Kentwood, MI
324                          Eugene-Springfield, OR
325                                        Bend, OR
326              Louisville/Jefferson County, KY-IN
327                                St. Louis, MO-IL
328                      Spokane-Spokane Valley, WA
329                                   Green Bay, WI
330                                 Sioux Falls, SD
331                                     Saginaw, MI
332                Las Vegas-Henderson-Paradise, NV
333             Tampa-St. Petersburg-Clearwater, FL
334             Tampa-St. Petersburg-Clearwater, FL
335             Tampa-St. Petersburg-Clearwater, FL
336            Atlanta-Sandy Springs-Alpharetta, GA
337            Atlanta-Sandy Springs-Alpharetta, GA
338                Austin-Round Rock-Georgetown, TX
339                   Baltimore-Columbia-Towson, MD
340                            Cleveland-Elyria, OH
341              San Diego-Chula Vista-Carlsbad, CA
342            Riverside-San Bernardino-Ontario, CA
343               Charlotte-Concord-Gastonia, NC-SC
344                      Denver-Aurora-Lakewood, CO
345                      Denver-Aurora-Lakewood, CO
346           New York-Newark-Jersey City, NY-NJ-PA
347                Las Vegas-Henderson-Paradise, NV
348                   Orlando-Kissimmee-Sanford, FL
349            Riverside-San Bernardino-Ontario, CA
350                               Memphis, TN-MS-AR
351         Miami-Fort Lauderdale-Pompano Beach, FL
352             Portland-Vancouver-Hillsboro, OR-WA
353     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
354     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
355     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
356                       Phoenix-Mesa-Chandler, AZ
357                                Raleigh-Cary, NC
358              San Diego-Chula Vista-Carlsbad, CA
359                   San Antonio-New Braunfels, TX
360                     San Juan-Bayamón-Caguas, PR
361           New York-Newark-Jersey City, NY-NJ-PA
362               Charlotte-Concord-Gastonia, NC-SC
363               Charlotte-Concord-Gastonia, NC-SC
364                              Urban Honolulu, HI
365                Las Vegas-Henderson-Paradise, NV
366                       Phoenix-Mesa-Chandler, AZ
367         Miami-Fort Lauderdale-Pompano Beach, FL
368            Houston-The Woodlands-Sugar Land, TX
369           New York-Newark-Jersey City, NY-NJ-PA
370                      Denver-Aurora-Lakewood, CO
371           New York-Newark-Jersey City, NY-NJ-PA
372           New York-Newark-Jersey City, NY-NJ-PA
373           New York-Newark-Jersey City, NY-NJ-PA
374                                   Asheville, NC
375                       Greensboro-High Point, NC
376                                 Springfield, IL
377    Washington-Arlington-Alexandria, DC-VA-MD-WV
378    Washington-Arlington-Alexandria, DC-VA-MD-WV
379                                   Knoxville, TN
380                       Cape Coral-Fort Myers, FL
381            Houston-The Woodlands-Sugar Land, TX
382              San Francisco-Oakland-Berkeley, CA
383  Nashville-Davidson--Murfreesboro--Franklin, TN
384              San Francisco-Oakland-Berkeley, CA
385              San Francisco-Oakland-Berkeley, CA
386             Tampa-St. Petersburg-Clearwater, FL
387                                Jacksonville, FL
388                     Seattle-Tacoma-Bellevue, WA
389                                   Rochester, NY
390                     Seattle-Tacoma-Bellevue, WA
391                                St. Louis, MO-IL
392                                    Syracuse, NY
393                Indianapolis-Carmel-Anderson, IN
394                       Phoenix-Mesa-Chandler, AZ
395        Little Rock-North Little Rock-Conway, AR
396           New York-Newark-Jersey City, NY-NJ-PA
397                                   Knoxville, TN
398                                  Pittsburgh, PA
399           Hartford-East Hartford-Middletown, CT
400                                            <NA>
401                   Orlando-Kissimmee-Sanford, FL
402                Austin-Round Rock-Georgetown, TX
403                Austin-Round Rock-Georgetown, TX
404                Austin-Round Rock-Georgetown, TX
405              Louisville/Jefferson County, KY-IN
406                Las Vegas-Henderson-Paradise, NV
407            Atlanta-Sandy Springs-Alpharetta, GA
408                                    Syracuse, NY
409                  Boston-Cambridge-Newton, MA-NH
410                                    Fargo, ND-MN
411           New York-Newark-Jersey City, NY-NJ-PA
412              Los Angeles-Long Beach-Anaheim, CA
413                               Oklahoma City, OK
414                                      Fresno, CA
415              Fayetteville-Springdale-Rogers, AR
416             Portland-Vancouver-Hillsboro, OR-WA
417                   Orlando-Kissimmee-Sanford, FL
418                            Cincinnati, OH-KY-IN
419                   Orlando-Kissimmee-Sanford, FL
420             Tampa-St. Petersburg-Clearwater, FL
421                            Cincinnati, OH-KY-IN
422                                     Wichita, KS
423                                      Monroe, LA
424    Washington-Arlington-Alexandria, DC-VA-MD-WV
425    Washington-Arlington-Alexandria, DC-VA-MD-WV
426                 Dallas-Fort Worth-Arlington, TX
427                 Dallas-Fort Worth-Arlington, TX
428                           Birmingham-Hoover, AL
429              San Jose-Sunnyvale-Santa Clara, CA
430                   Orlando-Kissimmee-Sanford, FL
431         Miami-Fort Lauderdale-Pompano Beach, FL
432                                    Richmond, VA
433                                       Tulsa, OK
434              Los Angeles-Long Beach-Anaheim, CA
435                       Phoenix-Mesa-Chandler, AZ
436         Miami-Fort Lauderdale-Pompano Beach, FL
437                            Colorado Springs, CO
438                      Spokane-Spokane Valley, WA
439                                 Garden City, KS
440                                   Lynchburg, VA
441              Chicago-Naperville-Elgin, IL-IN-WI
442                                      Bangor, ME
443                                Jacksonville, FL
444                                 Sioux Falls, SD
445              Louisville/Jefferson County, KY-IN
446                                    Syracuse, NY
447                Austin-Round Rock-Georgetown, TX
448            Riverside-San Bernardino-Ontario, CA
449                                   Lafayette, LA
450    Washington-Arlington-Alexandria, DC-VA-MD-WV
451                Austin-Round Rock-Georgetown, TX
452              San Jose-Sunnyvale-Santa Clara, CA
453                              Kansas City, MO-KS
454         Miami-Fort Lauderdale-Pompano Beach, FL
455  Nashville-Davidson--Murfreesboro--Franklin, TN
456                            Cleveland-Elyria, OH
457                              Kansas City, MO-KS
458                                  Fort Wayne, IN
459                        New Orleans-Metairie, LA
460                                    Columbia, SC
461                           Lexington-Fayette, KY
462              Chicago-Naperville-Elgin, IL-IN-WI
463              Chicago-Naperville-Elgin, IL-IN-WI
464              Chicago-Naperville-Elgin, IL-IN-WI
465                                        Reno, NV
466                       Grand Rapids-Kentwood, MI
467              Chicago-Naperville-Elgin, IL-IN-WI
468              Fayetteville-Springdale-Rogers, AR
469              Los Angeles-Long Beach-Anaheim, CA
470                                    Key West, FL
471              Louisville/Jefferson County, KY-IN
472            Houston-The Woodlands-Sugar Land, TX
473                  Augusta-Richmond County, GA-SC
474                                Raleigh-Cary, NC
475                        New Orleans-Metairie, LA
476                                 Albuquerque, NM
477            Atlanta-Sandy Springs-Alpharetta, GA
478                        Lansing-East Lansing, MI
479                      Denver-Aurora-Lakewood, CO
480                Las Vegas-Henderson-Paradise, NV
481                     Seattle-Tacoma-Bellevue, WA
482                     Atlantic City-Hammonton, NJ
483                     Atlantic City-Hammonton, NJ
484                     Atlantic City-Hammonton, NJ
485            Atlanta-Sandy Springs-Alpharetta, GA
486                Austin-Round Rock-Georgetown, TX
487            Atlanta-Sandy Springs-Alpharetta, GA
488              Los Angeles-Long Beach-Anaheim, CA
489            Atlanta-Sandy Springs-Alpharetta, GA
490            Atlanta-Sandy Springs-Alpharetta, GA
491           Hartford-East Hartford-Middletown, CT
492  Nashville-Davidson--Murfreesboro--Franklin, TN
493  Nashville-Davidson--Murfreesboro--Franklin, TN
494  Nashville-Davidson--Murfreesboro--Franklin, TN
495  Nashville-Davidson--Murfreesboro--Franklin, TN
496                  Boston-Cambridge-Newton, MA-NH
497                  Boston-Cambridge-Newton, MA-NH
498                  Boston-Cambridge-Newton, MA-NH
499                  Boston-Cambridge-Newton, MA-NH
500                  Boston-Cambridge-Newton, MA-NH
501              Los Angeles-Long Beach-Anaheim, CA
502                   Baltimore-Columbia-Towson, MD
503                      Denver-Aurora-Lakewood, CO
504                   Baltimore-Columbia-Towson, MD
505                   Baltimore-Columbia-Towson, MD
506                   Baltimore-Columbia-Towson, MD
507                   Baltimore-Columbia-Towson, MD
508                            Cleveland-Elyria, OH
509                   Orlando-Kissimmee-Sanford, FL
510                            Cleveland-Elyria, OH
511                            Cleveland-Elyria, OH
512            Houston-The Woodlands-Sugar Land, TX
513               Charlotte-Concord-Gastonia, NC-SC
514                                    Columbus, OH
515                   Baltimore-Columbia-Towson, MD
516                 Dallas-Fort Worth-Arlington, TX
517                 Dallas-Fort Worth-Arlington, TX
518                 Dallas-Fort Worth-Arlington, TX
519                 Dallas-Fort Worth-Arlington, TX
520              Chicago-Naperville-Elgin, IL-IN-WI
521                     Detroit-Warren-Dearborn, MI
522           New York-Newark-Jersey City, NY-NJ-PA
523           New York-Newark-Jersey City, NY-NJ-PA
524           New York-Newark-Jersey City, NY-NJ-PA
525           New York-Newark-Jersey City, NY-NJ-PA
526           New York-Newark-Jersey City, NY-NJ-PA
527         Miami-Fort Lauderdale-Pompano Beach, FL
528         Miami-Fort Lauderdale-Pompano Beach, FL
529         Miami-Fort Lauderdale-Pompano Beach, FL
530         Miami-Fort Lauderdale-Pompano Beach, FL
531         Miami-Fort Lauderdale-Pompano Beach, FL
532         Miami-Fort Lauderdale-Pompano Beach, FL
533         Miami-Fort Lauderdale-Pompano Beach, FL
534         Miami-Fort Lauderdale-Pompano Beach, FL
535            Houston-The Woodlands-Sugar Land, TX
536            Houston-The Woodlands-Sugar Land, TX
537                Indianapolis-Carmel-Anderson, IN
538                Indianapolis-Carmel-Anderson, IN
539                Indianapolis-Carmel-Anderson, IN
540                Las Vegas-Henderson-Paradise, NV
541                Las Vegas-Henderson-Paradise, NV
542            Atlanta-Sandy Springs-Alpharetta, GA
543                       Greensboro-High Point, NC
544                Las Vegas-Henderson-Paradise, NV
545                Las Vegas-Henderson-Paradise, NV
546                Las Vegas-Henderson-Paradise, NV
547              Los Angeles-Long Beach-Anaheim, CA
548              Los Angeles-Long Beach-Anaheim, CA
549             Tampa-St. Petersburg-Clearwater, FL
550              Los Angeles-Long Beach-Anaheim, CA
551              Los Angeles-Long Beach-Anaheim, CA
552                                  Pittsburgh, PA
553                                  Pittsburgh, PA
554                              Kansas City, MO-KS
555                              Kansas City, MO-KS
556                   Orlando-Kissimmee-Sanford, FL
557                   Orlando-Kissimmee-Sanford, FL
558                   Orlando-Kissimmee-Sanford, FL
559              San Francisco-Oakland-Berkeley, CA
560                   Orlando-Kissimmee-Sanford, FL
561                   Orlando-Kissimmee-Sanford, FL
562                          Milwaukee-Waukesha, WI
563     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
564                        New Orleans-Metairie, LA
565           New York-Newark-Jersey City, NY-NJ-PA
566              Chicago-Naperville-Elgin, IL-IN-WI
567              Chicago-Naperville-Elgin, IL-IN-WI
568              Chicago-Naperville-Elgin, IL-IN-WI
569              Chicago-Naperville-Elgin, IL-IN-WI
570                                  Pittsburgh, PA
571                                  Pittsburgh, PA
572                                  Pittsburgh, PA
573              San Diego-Chula Vista-Carlsbad, CA
574                     San Juan-Bayamón-Caguas, PR
575                                St. Louis, MO-IL
576            Houston-The Woodlands-Sugar Land, TX
577             Tampa-St. Petersburg-Clearwater, FL
578             Tampa-St. Petersburg-Clearwater, FL
579             Tampa-St. Petersburg-Clearwater, FL
580             Tampa-St. Petersburg-Clearwater, FL
581               North Port-Sarasota-Bradenton, FL
582              Louisville/Jefferson County, KY-IN
583          Crestview-Fort Walton Beach-Destin, FL
584                Las Vegas-Henderson-Paradise, NV
585                       Phoenix-Mesa-Chandler, AZ
586                     Albany-Schenectady-Troy, NY
587                Las Vegas-Henderson-Paradise, NV
588           New York-Newark-Jersey City, NY-NJ-PA
589         Minneapolis-St. Paul-Bloomington, MN-WI
590     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
591         Miami-Fort Lauderdale-Pompano Beach, FL
592  Nashville-Davidson--Murfreesboro--Franklin, TN
593           New York-Newark-Jersey City, NY-NJ-PA
594           New York-Newark-Jersey City, NY-NJ-PA
595             Tampa-St. Petersburg-Clearwater, FL
596          Crestview-Fort Walton Beach-Destin, FL
597                                St. Louis, MO-IL
598                   San Antonio-New Braunfels, TX
599                 Charleston-North Charleston, SC
600                   Baltimore-Columbia-Towson, MD
601               Charlotte-Concord-Gastonia, NC-SC
602               Charlotte-Concord-Gastonia, NC-SC
603               Charlotte-Concord-Gastonia, NC-SC
604               Charlotte-Concord-Gastonia, NC-SC
605               Charlotte-Concord-Gastonia, NC-SC
606         Miami-Fort Lauderdale-Pompano Beach, FL
607                               Oklahoma City, OK
608                   Orlando-Kissimmee-Sanford, FL
609                Indianapolis-Carmel-Anderson, IN
610                               Memphis, TN-MS-AR
611                       Phoenix-Mesa-Chandler, AZ
612                                       Akron, OH
613                            Cleveland-Elyria, OH
614                            Dayton-Kettering, OH
615                Austin-Round Rock-Georgetown, TX
616    Washington-Arlington-Alexandria, DC-VA-MD-WV
617    Washington-Arlington-Alexandria, DC-VA-MD-WV
618    Washington-Arlington-Alexandria, DC-VA-MD-WV
619              San Francisco-Oakland-Berkeley, CA
620                 Dallas-Fort Worth-Arlington, TX
621    Washington-Arlington-Alexandria, DC-VA-MD-WV
622           New York-Newark-Jersey City, NY-NJ-PA
623                       Providence-Warwick, RI-MA
624            Atlanta-Sandy Springs-Alpharetta, GA
625                     Detroit-Warren-Dearborn, MI
626                     Portland-South Portland, ME
627                                    Savannah, GA
628        Little Rock-North Little Rock-Conway, AR
629               Palm Bay-Melbourne-Titusville, FL
630                     Detroit-Warren-Dearborn, MI
631                              Kansas City, MO-KS
632              Chicago-Naperville-Elgin, IL-IN-WI
633                          Milwaukee-Waukesha, WI
634                                       Flint, MI
635                            Dayton-Kettering, OH
636                  Boston-Cambridge-Newton, MA-NH
637                                  Pittsburgh, PA
638                 Dallas-Fort Worth-Arlington, TX
639                     Omaha-Council Bluffs, NE-IA
640           New York-Newark-Jersey City, NY-NJ-PA
641         Miami-Fort Lauderdale-Pompano Beach, FL
642            Atlanta-Sandy Springs-Alpharetta, GA
643                       Cape Coral-Fort Myers, FL
644                         Buffalo-Cheektowaga, NY
645                                  Pittsburgh, PA
646               Allentown-Bethlehem-Easton, PA-NJ
647      Virginia Beach-Norfolk-Newport News, VA-NC
648      Virginia Beach-Norfolk-Newport News, VA-NC
649                                Jacksonville, FL
650                                Jacksonville, FL
651                           Manchester-Nashua, NH
652                  Boston-Cambridge-Newton, MA-NH
653                                Jacksonville, FL
654                                   Asheville, NC
655                                Raleigh-Cary, NC
656                                Fayetteville, NC
657                                Jacksonville, NC
658                         Harrisburg-Carlisle, PA
659         Miami-Fort Lauderdale-Pompano Beach, FL
660                 Charleston-North Charleston, SC
661            Houston-The Woodlands-Sugar Land, TX
662                  Des Moines-West Des Moines, IA
663                                 Spartanburg, SC
664                     Portland-South Portland, ME
665                        New Orleans-Metairie, LA
666                                     Jackson, MS
667                        New Orleans-Metairie, LA
668                           Lexington-Fayette, KY
669     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
670     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
671                           Birmingham-Hoover, AL
672     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
673     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
674     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
675     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
676                      Denver-Aurora-Lakewood, CO
677              San Diego-Chula Vista-Carlsbad, CA
678                     Seattle-Tacoma-Bellevue, WA
679                Indianapolis-Carmel-Anderson, IN
680           New York-Newark-Jersey City, NY-NJ-PA
681              Chicago-Naperville-Elgin, IL-IN-WI
682           Hartford-East Hartford-Middletown, CT
683                                   Knoxville, TN
684                       Providence-Warwick, RI-MA
685                                Raleigh-Cary, NC
686                                St. Louis, MO-IL
687                                    Syracuse, NY
688              Louisville/Jefferson County, KY-IN
689                                 Albuquerque, NM
690            Houston-The Woodlands-Sugar Land, TX
691                                     Lincoln, NE
692                     Albany-Schenectady-Troy, NY
693            Riverside-San Bernardino-Ontario, CA
694                            Glenwood Springs, CO
695                              Urban Honolulu, HI
696                     Seattle-Tacoma-Bellevue, WA
697                                 Albuquerque, NM
698  Nashville-Davidson--Murfreesboro--Franklin, TN
699                              Kansas City, MO-KS
700                                            <NA>
701                                     Medford, OR
702            Riverside-San Bernardino-Ontario, CA
703                   Santa Maria-Santa Barbara, CA
704              Los Angeles-Long Beach-Anaheim, CA
705                                  Boise City, ID
706                                  Boise City, ID
707                                  Boise City, ID
708            Atlanta-Sandy Springs-Alpharetta, GA
709                                  Boise City, ID
710                                  Boise City, ID
711                                        Hilo, HI
712              Los Angeles-Long Beach-Anaheim, CA
713                                  Boise City, ID
714                         Santa Rosa-Petaluma, CA
715              Los Angeles-Long Beach-Anaheim, CA
716              Los Angeles-Long Beach-Anaheim, CA
717                     Kahului-Wailuku-Lahaina, HI
718                                     Bozeman, MT
719                   Baltimore-Columbia-Towson, MD
720                                     Bozeman, MT
721                               Oklahoma City, OK
722                              Killeen-Temple, TX
723                  Boston-Cambridge-Newton, MA-NH
724           New York-Newark-Jersey City, NY-NJ-PA
725                            Colorado Springs, CO
726              Los Angeles-Long Beach-Anaheim, CA
727                 Dallas-Fort Worth-Arlington, TX
728                      Denver-Aurora-Lakewood, CO
729                      Denver-Aurora-Lakewood, CO
730                      Denver-Aurora-Lakewood, CO
731                      Denver-Aurora-Lakewood, CO
732                      Denver-Aurora-Lakewood, CO
733                      Denver-Aurora-Lakewood, CO
734                                      Tucson, AZ
735                              Salt Lake City, UT
736                                  Pittsburgh, PA
737                  Des Moines-West Des Moines, IA
738                          Kennewick-Richland, WA
739                         Harrisburg-Carlisle, PA
740                          Eugene-Springfield, OR
741                      Denver-Aurora-Lakewood, CO
742                                      Fresno, CA
743                                      Fresno, CA
744                                      Fresno, CA
745                                      Fresno, CA
746                                        Bend, OR
747              Chicago-Naperville-Elgin, IL-IN-WI
748                                   Kalispell, MT
749              Chicago-Naperville-Elgin, IL-IN-WI
750         Miami-Fort Lauderdale-Pompano Beach, FL
751               North Port-Sarasota-Bradenton, FL
752                                Jacksonville, FL
753                       Phoenix-Mesa-Chandler, AZ
754                      Spokane-Spokane Valley, WA
755                      Spokane-Spokane Valley, WA
756                  Boston-Cambridge-Newton, MA-NH
757  Nashville-Davidson--Murfreesboro--Franklin, TN
758         Miami-Fort Lauderdale-Pompano Beach, FL
759         Miami-Fort Lauderdale-Pompano Beach, FL
760              San Jose-Sunnyvale-Santa Clara, CA
761               Allentown-Bethlehem-Easton, PA-NJ
762                           Steamboat Springs, CO
763                              Salt Lake City, UT
764                       La Crosse-Onalaska, WI-MN
765            Houston-The Woodlands-Sugar Land, TX
766            Houston-The Woodlands-Sugar Land, TX
767                                   Pocatello, ID
768                            Cleveland-Elyria, OH
769                                    Fargo, ND-MN
770    Washington-Arlington-Alexandria, DC-VA-MD-WV
771                                  Pittsburgh, PA
772              Chicago-Naperville-Elgin, IL-IN-WI
773              Los Angeles-Long Beach-Anaheim, CA
774              Los Angeles-Long Beach-Anaheim, CA
775              Los Angeles-Long Beach-Anaheim, CA
776              Los Angeles-Long Beach-Anaheim, CA
777              Los Angeles-Long Beach-Anaheim, CA
778              Los Angeles-Long Beach-Anaheim, CA
779              Los Angeles-Long Beach-Anaheim, CA
780              Los Angeles-Long Beach-Anaheim, CA
781                                 Baton Rouge, LA
782              San Francisco-Oakland-Berkeley, CA
783                Indianapolis-Carmel-Anderson, IN
784                           Kalamazoo-Portage, MI
785                   San Antonio-New Braunfels, TX
786                                     Madison, WI
787         Minneapolis-St. Paul-Bloomington, MN-WI
788              San Diego-Chula Vista-Carlsbad, CA
789                          Milwaukee-Waukesha, WI
790                Las Vegas-Henderson-Paradise, NV
791                          Eugene-Springfield, OR
792                                     Salinas, CA
793                                     Madison, WI
794         Minneapolis-St. Paul-Bloomington, MN-WI
795         Minneapolis-St. Paul-Bloomington, MN-WI
796                                 Great Falls, MT
797                                   Green Bay, WI
798              San Francisco-Oakland-Berkeley, CA
799                                     Roswell, NM
800                     Kahului-Wailuku-Lahaina, HI
801                      Scranton--Wilkes-Barre, PA
802           New York-Newark-Jersey City, NY-NJ-PA
803                                Jacksonville, FL
804                     Omaha-Council Bluffs, NE-IA
805                       Providence-Warwick, RI-MA
806                            Sault Ste. Marie, MI
807            Riverside-San Bernardino-Ontario, CA
808                   San Antonio-New Braunfels, TX
809            Riverside-San Bernardino-Ontario, CA
810         Miami-Fort Lauderdale-Pompano Beach, FL
811              Chicago-Naperville-Elgin, IL-IN-WI
812              Chicago-Naperville-Elgin, IL-IN-WI
813              Chicago-Naperville-Elgin, IL-IN-WI
814              Chicago-Naperville-Elgin, IL-IN-WI
815                      Denver-Aurora-Lakewood, CO
816             Portland-Vancouver-Hillsboro, OR-WA
817             Portland-Vancouver-Hillsboro, OR-WA
818             Portland-Vancouver-Hillsboro, OR-WA
819             Portland-Vancouver-Hillsboro, OR-WA
820             Portland-Vancouver-Hillsboro, OR-WA
821             Portland-Vancouver-Hillsboro, OR-WA
822             Portland-Vancouver-Hillsboro, OR-WA
823             Portland-Vancouver-Hillsboro, OR-WA
824                              Kansas City, MO-KS
825                                        Hilo, HI
826                       Phoenix-Mesa-Chandler, AZ
827                       Phoenix-Mesa-Chandler, AZ
828                                  Pittsburgh, PA
829                          Milwaukee-Waukesha, WI
830                Las Vegas-Henderson-Paradise, NV
831                                        Bend, OR
832            Riverside-San Bernardino-Ontario, CA
833                                  Boise City, ID
834                                     Madison, WI
835                                  Rapid City, SD
836                               Memphis, TN-MS-AR
837            Riverside-San Bernardino-Ontario, CA
838                                      Helena, MT
839                                    Appleton, WI
840               Charlotte-Concord-Gastonia, NC-SC
841                                    Richmond, VA
842                                        Reno, NV
843                 Sacramento-Roseville-Folsom, CA
844              San Diego-Chula Vista-Carlsbad, CA
845              San Diego-Chula Vista-Carlsbad, CA
846              San Diego-Chula Vista-Carlsbad, CA
847              San Diego-Chula Vista-Carlsbad, CA
848              San Diego-Chula Vista-Carlsbad, CA
849              San Diego-Chula Vista-Carlsbad, CA
850              San Diego-Chula Vista-Carlsbad, CA
851                                     Salinas, CA
852                    Prescott Valley-Prescott, AZ
853                 San Luis Obispo-Paso Robles, CA
854                Las Vegas-Henderson-Paradise, NV
855                   Santa Maria-Santa Barbara, CA
856                                St. Louis, MO-IL
857                 San Luis Obispo-Paso Robles, CA
858                Las Vegas-Henderson-Paradise, NV
859         Miami-Fort Lauderdale-Pompano Beach, FL
860                     Seattle-Tacoma-Bellevue, WA
861                     Seattle-Tacoma-Bellevue, WA
862                     Seattle-Tacoma-Bellevue, WA
863                     Seattle-Tacoma-Bellevue, WA
864              San Francisco-Oakland-Berkeley, CA
865              San Francisco-Oakland-Berkeley, CA
866              San Francisco-Oakland-Berkeley, CA
867              San Francisco-Oakland-Berkeley, CA
868              San Francisco-Oakland-Berkeley, CA
869              San Francisco-Oakland-Berkeley, CA
870              San Francisco-Oakland-Berkeley, CA
871              San Francisco-Oakland-Berkeley, CA
872              San Jose-Sunnyvale-Santa Clara, CA
873              San Jose-Sunnyvale-Santa Clara, CA
874              San Jose-Sunnyvale-Santa Clara, CA
875              San Jose-Sunnyvale-Santa Clara, CA
876              San Jose-Sunnyvale-Santa Clara, CA
877                     Detroit-Warren-Dearborn, MI
878                                      Tucson, AZ
879                                        Hilo, HI
880                              Salt Lake City, UT
881                                     Durango, CO
882                   Orlando-Kissimmee-Sanford, FL
883                                 Bakersfield, CA
884                 San Luis Obispo-Paso Robles, CA
885                              Urban Honolulu, HI
886                 Sacramento-Roseville-Folsom, CA
887                 Sacramento-Roseville-Folsom, CA
888                 Sacramento-Roseville-Folsom, CA
889                              Urban Honolulu, HI
890                                        Bend, OR
891                     Seattle-Tacoma-Bellevue, WA
892              Los Angeles-Long Beach-Anaheim, CA
893                           Birmingham-Hoover, AL
894                     South Bend-Mishawaka, IN-MI
895                 Dallas-Fort Worth-Arlington, TX
896                         Santa Rosa-Petaluma, CA
897                         Santa Rosa-Petaluma, CA
898                         Santa Rosa-Petaluma, CA
899                     Omaha-Council Bluffs, NE-IA
900                     Omaha-Council Bluffs, NE-IA
901                                   Anchorage, AK
902                                      Tucson, AZ
903    Washington-Arlington-Alexandria, DC-VA-MD-WV
904              Los Angeles-Long Beach-Anaheim, CA
905                                 Albuquerque, NM
906                                    Billings, MT
907              Chicago-Naperville-Elgin, IL-IN-WI
908                                  Boise City, ID
909                                  Boise City, ID
910                                  Boise City, ID
911                                     Bozeman, MT
912                          Kennewick-Richland, WA
913                     Detroit-Warren-Dearborn, MI
914           New York-Newark-Jersey City, NY-NJ-PA
915                        New Orleans-Metairie, LA
916                                    Missoula, MT
917                                   Kalispell, MT
918                      Spokane-Spokane Valley, WA
919           New York-Newark-Jersey City, NY-NJ-PA
920                   Santa Maria-Santa Barbara, CA
921           New York-Newark-Jersey City, NY-NJ-PA
922                      Spokane-Spokane Valley, WA
923                                     Medford, OR
924                                      Helena, MT
925                                 Idaho Falls, ID
926              Los Angeles-Long Beach-Anaheim, CA
927                                     Medford, OR
928                                     Medford, OR
929              San Francisco-Oakland-Berkeley, CA
930                     Seattle-Tacoma-Bellevue, WA
931                     Seattle-Tacoma-Bellevue, WA
932                     Seattle-Tacoma-Bellevue, WA
933                     Seattle-Tacoma-Bellevue, WA
934             Portland-Vancouver-Hillsboro, OR-WA
935             Portland-Vancouver-Hillsboro, OR-WA
936            Riverside-San Bernardino-Ontario, CA
937                                     El Paso, TX
938                                     Pullman, WA
939                                        Bend, OR
940              San Diego-Chula Vista-Carlsbad, CA
941                   Santa Maria-Santa Barbara, CA
942                     Seattle-Tacoma-Bellevue, WA
943                     Seattle-Tacoma-Bellevue, WA
944                     Seattle-Tacoma-Bellevue, WA
945                     Seattle-Tacoma-Bellevue, WA
946                     Seattle-Tacoma-Bellevue, WA
947                     Seattle-Tacoma-Bellevue, WA
948                     Seattle-Tacoma-Bellevue, WA
949                     Seattle-Tacoma-Bellevue, WA
950                     Seattle-Tacoma-Bellevue, WA
951                     Seattle-Tacoma-Bellevue, WA
952                     Seattle-Tacoma-Bellevue, WA
953                     Seattle-Tacoma-Bellevue, WA
954                     Seattle-Tacoma-Bellevue, WA
955                     Seattle-Tacoma-Bellevue, WA
956                     Seattle-Tacoma-Bellevue, WA
957              San Francisco-Oakland-Berkeley, CA
958              San Jose-Sunnyvale-Santa Clara, CA
959              Los Angeles-Long Beach-Anaheim, CA
960                         Santa Rosa-Petaluma, CA
961                      Denver-Aurora-Lakewood, CO
962                Austin-Round Rock-Georgetown, TX
963           Hartford-East Hartford-Middletown, CT
964     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
965                                   Kalispell, MT
966                                    Missoula, MT
967            Atlanta-Sandy Springs-Alpharetta, GA
968                                            <NA>
969                                    Appleton, WI
970                      Denver-Aurora-Lakewood, CO
971                Austin-Round Rock-Georgetown, TX
972                     Omaha-Council Bluffs, NE-IA
973                Austin-Round Rock-Georgetown, TX
974                                    Meridian, MS
975                     Seattle-Tacoma-Bellevue, WA
976              Los Angeles-Long Beach-Anaheim, CA
977           New York-Newark-Jersey City, NY-NJ-PA
978              Los Angeles-Long Beach-Anaheim, CA
979                Austin-Round Rock-Georgetown, TX
980           Hartford-East Hartford-Middletown, CT
981              Los Angeles-Long Beach-Anaheim, CA
982                                Raleigh-Cary, NC
983                                    Savannah, GA
984                       Greensboro-High Point, NC
985                           Birmingham-Hoover, AL
986                            Cincinnati, OH-KY-IN
987            Atlanta-Sandy Springs-Alpharetta, GA
988                                  Boise City, ID
989                                  Jackson, WY-ID
990                                        Bend, OR
991                  Boston-Cambridge-Newton, MA-NH
992                      Denver-Aurora-Lakewood, CO
993                   Orlando-Kissimmee-Sanford, FL
994                        New Orleans-Metairie, LA
995             Tampa-St. Petersburg-Clearwater, FL
996                 Hilton Head Island-Bluffton, SC
997                  Boston-Cambridge-Newton, MA-NH
998                                       Kapaa, HI
999                  Des Moines-West Des Moines, IA
1000                                      Kapaa, HI
1001                        Buffalo-Cheektowaga, NY
1002          New York-Newark-Jersey City, NY-NJ-PA
1003                             Urban Honolulu, HI
1004                             Urban Honolulu, HI
1005                    Kahului-Wailuku-Lahaina, HI
1006               Las Vegas-Henderson-Paradise, NV
1007                       New Orleans-Metairie, LA
1008                                 Pittsburgh, PA
1009                                    Saginaw, MI
1010                    Portland-South Portland, ME
1011                                    Lincoln, NE
1012                           Cleveland-Elyria, OH
1013                           Cleveland-Elyria, OH
1014                      Cape Coral-Fort Myers, FL
1015                                       Reno, NV
1016                           Colorado Springs, CO
1017                                     Salina, KS
1018          New York-Newark-Jersey City, NY-NJ-PA
1019        Miami-Fort Lauderdale-Pompano Beach, FL
1020                 Boston-Cambridge-Newton, MA-NH
1021         Crestview-Fort Walton Beach-Destin, FL
1022                     Denver-Aurora-Lakewood, CO
1023                  Santa Maria-Santa Barbara, CA
1024          New York-Newark-Jersey City, NY-NJ-PA
1025                     Denver-Aurora-Lakewood, CO
1026   Washington-Arlington-Alexandria, DC-VA-MD-WV
1027     Virginia Beach-Norfolk-Newport News, VA-NC
1028                                  Duluth, MN-WI
1029                     Denver-Aurora-Lakewood, CO
1030                     Denver-Aurora-Lakewood, CO
1031                     Denver-Aurora-Lakewood, CO
1032                     Denver-Aurora-Lakewood, CO
1033                Dallas-Fort Worth-Arlington, TX
1034                                     Joplin, MO
1035           Houston-The Woodlands-Sugar Land, TX
1036                     Denver-Aurora-Lakewood, CO
1037                      Cape Coral-Fort Myers, FL
1038          New York-Newark-Jersey City, NY-NJ-PA
1039                           Colorado Springs, CO
1040                Sacramento-Roseville-Folsom, CA
1041 Nashville-Davidson--Murfreesboro--Franklin, TN
1042                           Colorado Springs, CO
1043                              Oklahoma City, OK
1044          New York-Newark-Jersey City, NY-NJ-PA
1045        Miami-Fort Lauderdale-Pompano Beach, FL
1046          New York-Newark-Jersey City, NY-NJ-PA
1047                             Salt Lake City, UT
1048                                 Jackson, WY-ID
1049          New York-Newark-Jersey City, NY-NJ-PA
1050          New York-Newark-Jersey City, NY-NJ-PA
1051          New York-Newark-Jersey City, NY-NJ-PA
1052          New York-Newark-Jersey City, NY-NJ-PA
1053          New York-Newark-Jersey City, NY-NJ-PA
1054          New York-Newark-Jersey City, NY-NJ-PA
1055          New York-Newark-Jersey City, NY-NJ-PA
1056          New York-Newark-Jersey City, NY-NJ-PA
1057          New York-Newark-Jersey City, NY-NJ-PA
1058          New York-Newark-Jersey City, NY-NJ-PA
1059          New York-Newark-Jersey City, NY-NJ-PA
1060                                Sioux Falls, SD
1061             San Francisco-Oakland-Berkeley, CA
1062                                           <NA>
1063        Miami-Fort Lauderdale-Pompano Beach, FL
1064                             Killeen-Temple, TX
1065        Miami-Fort Lauderdale-Pompano Beach, FL
1066            Tampa-St. Petersburg-Clearwater, FL
1067                  San Antonio-New Braunfels, TX
1068                                Spartanburg, SC
1069                                 Pittsburgh, PA
1070             Louisville/Jefferson County, KY-IN
1071              North Port-Sarasota-Bradenton, FL
1072                                Panama City, FL
1073                       New Orleans-Metairie, LA
1074             Louisville/Jefferson County, KY-IN
1075                Sacramento-Roseville-Folsom, CA
1076                  Baltimore-Columbia-Towson, MD
1077                  Orlando-Kissimmee-Sanford, FL
1078   Washington-Arlington-Alexandria, DC-VA-MD-WV
1079   Washington-Arlington-Alexandria, DC-VA-MD-WV
1080   Washington-Arlington-Alexandria, DC-VA-MD-WV
1081   Washington-Arlington-Alexandria, DC-VA-MD-WV
1082   Washington-Arlington-Alexandria, DC-VA-MD-WV
1083   Washington-Arlington-Alexandria, DC-VA-MD-WV
1084   Washington-Arlington-Alexandria, DC-VA-MD-WV
1085   Washington-Arlington-Alexandria, DC-VA-MD-WV
1086                         Kennewick-Richland, WA
1087   Washington-Arlington-Alexandria, DC-VA-MD-WV
1088                                Albuquerque, NM
1089           Houston-The Woodlands-Sugar Land, TX
1090           Houston-The Woodlands-Sugar Land, TX
1091           Houston-The Woodlands-Sugar Land, TX
1092           Houston-The Woodlands-Sugar Land, TX
1093                                 Paducah, KY-IL
1094           Houston-The Woodlands-Sugar Land, TX
1095           Houston-The Woodlands-Sugar Land, TX
1096           Houston-The Woodlands-Sugar Land, TX
1097                Charleston-North Charleston, SC
1098                              Oklahoma City, OK
1099   Washington-Arlington-Alexandria, DC-VA-MD-WV
1100                    Portland-South Portland, ME
1101                                  Rochester, NY
1102                               Jacksonville, FL
1103                  San Antonio-New Braunfels, TX
1104          New York-Newark-Jersey City, NY-NJ-PA
1105                  Baltimore-Columbia-Towson, MD
1106                                   Columbus, OH
1107                                   Richmond, VA
1108               Las Vegas-Henderson-Paradise, NV
1109                                     Bangor, ME
1110                          Manchester-Nashua, NH
1111 Nashville-Davidson--Murfreesboro--Franklin, TN
1112                         Milwaukee-Waukesha, WI
1113                           Cleveland-Elyria, OH
1114               Indianapolis-Carmel-Anderson, IN
1115                  Orlando-Kissimmee-Sanford, FL
1116            Tampa-St. Petersburg-Clearwater, FL
1117                                   Columbus, OH
1118                           Cincinnati, OH-KY-IN
1119                                    Madison, WI
1120                           Cincinnati, OH-KY-IN
1121                    Detroit-Warren-Dearborn, MI
1122                           Cincinnati, OH-KY-IN
1123                      Cape Coral-Fort Myers, FL
1124             Los Angeles-Long Beach-Anaheim, CA
1125             Los Angeles-Long Beach-Anaheim, CA
1126                    Detroit-Warren-Dearborn, MI
1127             San Jose-Sunnyvale-Santa Clara, CA
1128            Portland-Vancouver-Hillsboro, OR-WA
1129                     Denver-Aurora-Lakewood, CO
1130                Sacramento-Roseville-Folsom, CA
1131                               Raleigh-Cary, NC
1132                  Baltimore-Columbia-Towson, MD
1133                    Kahului-Wailuku-Lahaina, HI
1134                      Cape Coral-Fort Myers, FL
1135     Virginia Beach-Norfolk-Newport News, VA-NC
1136                      Phoenix-Mesa-Chandler, AZ
1137             San Diego-Chula Vista-Carlsbad, CA
1138                                      Flint, MI
1139        Miami-Fort Lauderdale-Pompano Beach, FL
1140                                  Lafayette, LA
1141   Washington-Arlington-Alexandria, DC-VA-MD-WV
1142                          Birmingham-Hoover, AL
1143                                   Billings, MT
1144                                       Hilo, HI
1145                                   Syracuse, NY
1146                             Salt Lake City, UT
1147                               St. Louis, MO-IL
1148          Hartford-East Hartford-Middletown, CT
1149               Indianapolis-Carmel-Anderson, IN
1150             Chicago-Naperville-Elgin, IL-IN-WI
1151             Chicago-Naperville-Elgin, IL-IN-WI
1152             Chicago-Naperville-Elgin, IL-IN-WI
1153             Chicago-Naperville-Elgin, IL-IN-WI
1154           Riverside-San Bernardino-Ontario, CA
1155             Chicago-Naperville-Elgin, IL-IN-WI
1156             Chicago-Naperville-Elgin, IL-IN-WI
1157                     Denver-Aurora-Lakewood, CO
1158             Chicago-Naperville-Elgin, IL-IN-WI
1159             Chicago-Naperville-Elgin, IL-IN-WI
1160             Chicago-Naperville-Elgin, IL-IN-WI
1161             Chicago-Naperville-Elgin, IL-IN-WI
1162             Chicago-Naperville-Elgin, IL-IN-WI
1163             Chicago-Naperville-Elgin, IL-IN-WI
1164                                      Kapaa, HI
1165                              Memphis, TN-MS-AR
1166                                   Columbus, OH
1167                               Cedar Rapids, IA
1168            Portland-Vancouver-Hillsboro, OR-WA
1169   Washington-Arlington-Alexandria, DC-VA-MD-WV
1170                      Phoenix-Mesa-Chandler, AZ
1171                        Buffalo-Cheektowaga, NY
1172                             Chattanooga, TN-GA
1173                                    Bozeman, MT
1174             Louisville/Jefferson County, KY-IN
1175 Nashville-Davidson--Murfreesboro--Franklin, TN
1176                                     Peoria, IL
1177                                    Medford, OR
1178                  San Antonio-New Braunfels, TX
1179                Dallas-Fort Worth-Arlington, TX
1180           Riverside-San Bernardino-Ontario, CA
1181            Davenport-Moline-Rock Island, IA-IL
1182                Dallas-Fort Worth-Arlington, TX
1183                                     Ithaca, NY
1184                Burlington-South Burlington, VT
1185                               Cedar Rapids, IA
1186                           Dayton-Kettering, OH
1187             San Francisco-Oakland-Berkeley, CA
1188          New York-Newark-Jersey City, NY-NJ-PA
1189                      Providence-Warwick, RI-MA
1190             San Francisco-Oakland-Berkeley, CA
1191                    Portland-South Portland, ME
1192    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1193                               St. Louis, MO-IL
1194             San Francisco-Oakland-Berkeley, CA
1195                      Providence-Warwick, RI-MA
1196                                  Rochester, NY
1197            Davenport-Moline-Rock Island, IA-IL
1198   Washington-Arlington-Alexandria, DC-VA-MD-WV
1199          Hartford-East Hartford-Middletown, CT
1200        Miami-Fort Lauderdale-Pompano Beach, FL
1201            Tampa-St. Petersburg-Clearwater, FL
1202                           Cincinnati, OH-KY-IN
1203           Riverside-San Bernardino-Ontario, CA
1204                                     Tucson, AZ
1205                                Panama City, FL
1206                                Albuquerque, NM
1207                                      Kapaa, HI
1208                                Albuquerque, NM
1209                                Albuquerque, NM
1210                                Albuquerque, NM
1211                    Albany-Schenectady-Troy, NY
1212                  Orlando-Kissimmee-Sanford, FL
1213        Miami-Fort Lauderdale-Pompano Beach, FL
1214                      Cape Coral-Fort Myers, FL
1215                      Cape Coral-Fort Myers, FL
1216                Sacramento-Roseville-Folsom, CA
1217                    Albany-Schenectady-Troy, NY
1218                Sacramento-Roseville-Folsom, CA
1219                    Albany-Schenectady-Troy, NY
1220                                   Amarillo, TX
1221                                   Amarillo, TX
1222           Atlanta-Sandy Springs-Alpharetta, GA
1223           Atlanta-Sandy Springs-Alpharetta, GA
1224                                    El Paso, TX
1225               Las Vegas-Henderson-Paradise, NV
1226             Los Angeles-Long Beach-Anaheim, CA
1227                      Phoenix-Mesa-Chandler, AZ
1228           Atlanta-Sandy Springs-Alpharetta, GA
1229           Atlanta-Sandy Springs-Alpharetta, GA
1230           Atlanta-Sandy Springs-Alpharetta, GA
1231           Atlanta-Sandy Springs-Alpharetta, GA
1232           Atlanta-Sandy Springs-Alpharetta, GA
1233             Los Angeles-Long Beach-Anaheim, CA
1234             San Francisco-Oakland-Berkeley, CA
1235                             Salt Lake City, UT
1236           Atlanta-Sandy Springs-Alpharetta, GA
1237           Atlanta-Sandy Springs-Alpharetta, GA
1238           Atlanta-Sandy Springs-Alpharetta, GA
1239           Atlanta-Sandy Springs-Alpharetta, GA
1240           Atlanta-Sandy Springs-Alpharetta, GA
1241           Atlanta-Sandy Springs-Alpharetta, GA
1242                                      Tulsa, OK
1243           Atlanta-Sandy Springs-Alpharetta, GA
1244           Atlanta-Sandy Springs-Alpharetta, GA
1245                    Kahului-Wailuku-Lahaina, HI
1246           Atlanta-Sandy Springs-Alpharetta, GA
1247           Atlanta-Sandy Springs-Alpharetta, GA
1248           Atlanta-Sandy Springs-Alpharetta, GA
1249           Atlanta-Sandy Springs-Alpharetta, GA
1250           Atlanta-Sandy Springs-Alpharetta, GA
1251                             Urban Honolulu, HI
1252           Atlanta-Sandy Springs-Alpharetta, GA
1253           Atlanta-Sandy Springs-Alpharetta, GA
1254           Atlanta-Sandy Springs-Alpharetta, GA
1255           Atlanta-Sandy Springs-Alpharetta, GA
1256                 Boston-Cambridge-Newton, MA-NH
1257          New York-Newark-Jersey City, NY-NJ-PA
1258                    Omaha-Council Bluffs, NE-IA
1259                                   Savannah, GA
1260               Austin-Round Rock-Georgetown, TX
1261        Miami-Fort Lauderdale-Pompano Beach, FL
1262                    Omaha-Council Bluffs, NE-IA
1263             San Francisco-Oakland-Berkeley, CA
1264                    Seattle-Tacoma-Bellevue, WA
1265           Riverside-San Bernardino-Ontario, CA
1266             San Diego-Chula Vista-Carlsbad, CA
1267               Austin-Round Rock-Georgetown, TX
1268               Austin-Round Rock-Georgetown, TX
1269               Austin-Round Rock-Georgetown, TX
1270               Austin-Round Rock-Georgetown, TX
1271               Austin-Round Rock-Georgetown, TX
1272               Austin-Round Rock-Georgetown, TX
1273               Austin-Round Rock-Georgetown, TX
1274               Austin-Round Rock-Georgetown, TX
1275               Austin-Round Rock-Georgetown, TX
1276               Austin-Round Rock-Georgetown, TX
1277               Austin-Round Rock-Georgetown, TX
1278               Austin-Round Rock-Georgetown, TX
1279               Austin-Round Rock-Georgetown, TX
1280               Austin-Round Rock-Georgetown, TX
1281               Austin-Round Rock-Georgetown, TX
1282               Austin-Round Rock-Georgetown, TX
1283               Austin-Round Rock-Georgetown, TX
1284               Austin-Round Rock-Georgetown, TX
1285                      Providence-Warwick, RI-MA
1286               Las Vegas-Henderson-Paradise, NV
1287           Riverside-San Bernardino-Ontario, CA
1288          Hartford-East Hartford-Middletown, CT
1289          Hartford-East Hartford-Middletown, CT
1290                          Birmingham-Hoover, AL
1291                          Birmingham-Hoover, AL
1292                          Birmingham-Hoover, AL
1293                          Birmingham-Hoover, AL
1294                          Birmingham-Hoover, AL
1295                          Birmingham-Hoover, AL
1296                                 Bellingham, WA
1297 Nashville-Davidson--Murfreesboro--Franklin, TN
1298 Nashville-Davidson--Murfreesboro--Franklin, TN
1299 Nashville-Davidson--Murfreesboro--Franklin, TN
1300                                   Montrose, CO
1301 Nashville-Davidson--Murfreesboro--Franklin, TN
1302 Nashville-Davidson--Murfreesboro--Franklin, TN
1303 Nashville-Davidson--Murfreesboro--Franklin, TN
1304 Nashville-Davidson--Murfreesboro--Franklin, TN
1305 Nashville-Davidson--Murfreesboro--Franklin, TN
1306                                       Reno, NV
1307 Nashville-Davidson--Murfreesboro--Franklin, TN
1308             Los Angeles-Long Beach-Anaheim, CA
1309 Nashville-Davidson--Murfreesboro--Franklin, TN
1310 Nashville-Davidson--Murfreesboro--Franklin, TN
1311 Nashville-Davidson--Murfreesboro--Franklin, TN
1312 Nashville-Davidson--Murfreesboro--Franklin, TN
1313 Nashville-Davidson--Murfreesboro--Franklin, TN
1314 Nashville-Davidson--Murfreesboro--Franklin, TN
1315 Nashville-Davidson--Murfreesboro--Franklin, TN
1316 Nashville-Davidson--Murfreesboro--Franklin, TN
1317 Nashville-Davidson--Murfreesboro--Franklin, TN
1318 Nashville-Davidson--Murfreesboro--Franklin, TN
1319 Nashville-Davidson--Murfreesboro--Franklin, TN
1320 Nashville-Davidson--Murfreesboro--Franklin, TN
1321 Nashville-Davidson--Murfreesboro--Franklin, TN
1322 Nashville-Davidson--Murfreesboro--Franklin, TN
1323 Nashville-Davidson--Murfreesboro--Franklin, TN
1324 Nashville-Davidson--Murfreesboro--Franklin, TN
1325                             Urban Honolulu, HI
1326                    Kahului-Wailuku-Lahaina, HI
1327 Nashville-Davidson--Murfreesboro--Franklin, TN
1328 Nashville-Davidson--Murfreesboro--Franklin, TN
1329 Nashville-Davidson--Murfreesboro--Franklin, TN
1330 Nashville-Davidson--Murfreesboro--Franklin, TN
1331 Nashville-Davidson--Murfreesboro--Franklin, TN
1332 Nashville-Davidson--Murfreesboro--Franklin, TN
1333                        Buffalo-Cheektowaga, NY
1334        Miami-Fort Lauderdale-Pompano Beach, FL
1335                                 Boise City, ID
1336                                 Boise City, ID
1337                                 Boise City, ID
1338                                 Boise City, ID
1339                                       Reno, NV
1340                Dallas-Fort Worth-Arlington, TX
1341           Houston-The Woodlands-Sugar Land, TX
1342                Charleston-North Charleston, SC
1343                                Spartanburg, SC
1344               Indianapolis-Carmel-Anderson, IN
1345                               Jacksonville, FL
1346                      Phoenix-Mesa-Chandler, AZ
1347                                   Savannah, GA
1348                     Denver-Aurora-Lakewood, CO
1349             Los Angeles-Long Beach-Anaheim, CA
1350        Minneapolis-St. Paul-Bloomington, MN-WI
1351                      Phoenix-Mesa-Chandler, AZ
1352             San Jose-Sunnyvale-Santa Clara, CA
1353                 Boston-Cambridge-Newton, MA-NH
1354              North Port-Sarasota-Bradenton, FL
1355                        Buffalo-Cheektowaga, NY
1356                        Buffalo-Cheektowaga, NY
1357                        Buffalo-Cheektowaga, NY
1358             Los Angeles-Long Beach-Anaheim, CA
1359                       New Orleans-Metairie, LA
1360                               Raleigh-Cary, NC
1361            Tampa-St. Petersburg-Clearwater, FL
1362                              Oklahoma City, OK
1363             Los Angeles-Long Beach-Anaheim, CA
1364             Los Angeles-Long Beach-Anaheim, CA
1365             Los Angeles-Long Beach-Anaheim, CA
1366             Los Angeles-Long Beach-Anaheim, CA
1367             Los Angeles-Long Beach-Anaheim, CA
1368             Los Angeles-Long Beach-Anaheim, CA
1369                  Baltimore-Columbia-Towson, MD
1370                  Baltimore-Columbia-Towson, MD
1371                    Seattle-Tacoma-Bellevue, WA
1372                  Baltimore-Columbia-Towson, MD
1373                  Baltimore-Columbia-Towson, MD
1374                  Baltimore-Columbia-Towson, MD
1375                  Baltimore-Columbia-Towson, MD
1376                  Baltimore-Columbia-Towson, MD
1377                  Baltimore-Columbia-Towson, MD
1378                  Baltimore-Columbia-Towson, MD
1379                  Baltimore-Columbia-Towson, MD
1380                  Baltimore-Columbia-Towson, MD
1381                  Baltimore-Columbia-Towson, MD
1382                    San Juan-Bayamón-Caguas, PR
1383                  Baltimore-Columbia-Towson, MD
1384                  Baltimore-Columbia-Towson, MD
1385                  Baltimore-Columbia-Towson, MD
1386                                       Hilo, HI
1387                  Baltimore-Columbia-Towson, MD
1388   Washington-Arlington-Alexandria, DC-VA-MD-WV
1389                  Baltimore-Columbia-Towson, MD
1390                  Baltimore-Columbia-Towson, MD
1391                  Baltimore-Columbia-Towson, MD
1392                                       Hilo, HI
1393                  Baltimore-Columbia-Towson, MD
1394                  Baltimore-Columbia-Towson, MD
1395                  Baltimore-Columbia-Towson, MD
1396                  Baltimore-Columbia-Towson, MD
1397                  Baltimore-Columbia-Towson, MD
1398                  Baltimore-Columbia-Towson, MD
1399                  Baltimore-Columbia-Towson, MD
1400                      Cape Coral-Fort Myers, FL
1401                                    Bozeman, MT
1402                             Kansas City, MO-KS
1403                         Milwaukee-Waukesha, WI
1404                Charleston-North Charleston, SC
1405                           Colorado Springs, CO
1406                Charleston-North Charleston, SC
1407             Los Angeles-Long Beach-Anaheim, CA
1408                      Cape Coral-Fort Myers, FL
1409                           Cleveland-Elyria, OH
1410                           Cleveland-Elyria, OH
1411                             Urban Honolulu, HI
1412                           Cleveland-Elyria, OH
1413                           Cleveland-Elyria, OH
1414                                   Columbus, OH
1415                                   Columbus, OH
1416                                     Tucson, AZ
1417                                   Columbus, OH
1418                      Phoenix-Mesa-Chandler, AZ
1419                                Panama City, FL
1420                                   Columbus, OH
1421                                   Columbus, OH
1422                                   Columbus, OH
1423                                   Columbus, OH
1424                                   Columbus, OH
1425                                   Columbus, OH
1426                  Santa Maria-Santa Barbara, CA
1427                           Colorado Springs, CO
1428                           Colorado Springs, CO
1429                             Corpus Christi, TX
1430                      Cape Coral-Fort Myers, FL
1431                     Spokane-Spokane Valley, WA
1432             San Francisco-Oakland-Berkeley, CA
1433                           Cincinnati, OH-KY-IN
1434                           Cincinnati, OH-KY-IN
1435                           Cincinnati, OH-KY-IN
1436            Tampa-St. Petersburg-Clearwater, FL
1437                           Cincinnati, OH-KY-IN
1438                Dallas-Fort Worth-Arlington, TX
1439             Los Angeles-Long Beach-Anaheim, CA
1440                Dallas-Fort Worth-Arlington, TX
1441             San Francisco-Oakland-Berkeley, CA
1442                Dallas-Fort Worth-Arlington, TX
1443                Dallas-Fort Worth-Arlington, TX
1444                Dallas-Fort Worth-Arlington, TX
1445                Dallas-Fort Worth-Arlington, TX
1446                Dallas-Fort Worth-Arlington, TX
1447                Dallas-Fort Worth-Arlington, TX
1448                Dallas-Fort Worth-Arlington, TX
1449                Dallas-Fort Worth-Arlington, TX
1450                Dallas-Fort Worth-Arlington, TX
1451                Dallas-Fort Worth-Arlington, TX
1452                Dallas-Fort Worth-Arlington, TX
1453                Dallas-Fort Worth-Arlington, TX
1454                Dallas-Fort Worth-Arlington, TX
1455                Dallas-Fort Worth-Arlington, TX
1456                Dallas-Fort Worth-Arlington, TX
1457                Dallas-Fort Worth-Arlington, TX
1458                Dallas-Fort Worth-Arlington, TX
1459                Dallas-Fort Worth-Arlington, TX
1460                Dallas-Fort Worth-Arlington, TX
1461                Dallas-Fort Worth-Arlington, TX
1462                Dallas-Fort Worth-Arlington, TX
1463                Dallas-Fort Worth-Arlington, TX
1464                Dallas-Fort Worth-Arlington, TX
1465                Dallas-Fort Worth-Arlington, TX
1466                Dallas-Fort Worth-Arlington, TX
1467                Dallas-Fort Worth-Arlington, TX
1468                Dallas-Fort Worth-Arlington, TX
1469                Dallas-Fort Worth-Arlington, TX
1470                Dallas-Fort Worth-Arlington, TX
1471                Dallas-Fort Worth-Arlington, TX
1472                Dallas-Fort Worth-Arlington, TX
1473                Dallas-Fort Worth-Arlington, TX
1474                Dallas-Fort Worth-Arlington, TX
1475                Dallas-Fort Worth-Arlington, TX
1476             San Francisco-Oakland-Berkeley, CA
1477              North Port-Sarasota-Bradenton, FL
1478   Washington-Arlington-Alexandria, DC-VA-MD-WV
1479   Washington-Arlington-Alexandria, DC-VA-MD-WV
1480   Washington-Arlington-Alexandria, DC-VA-MD-WV
1481                     Denver-Aurora-Lakewood, CO
1482   Washington-Arlington-Alexandria, DC-VA-MD-WV
1483   Washington-Arlington-Alexandria, DC-VA-MD-WV
1484   Washington-Arlington-Alexandria, DC-VA-MD-WV
1485   Washington-Arlington-Alexandria, DC-VA-MD-WV
1486   Washington-Arlington-Alexandria, DC-VA-MD-WV
1487   Washington-Arlington-Alexandria, DC-VA-MD-WV
1488   Washington-Arlington-Alexandria, DC-VA-MD-WV
1489                  Baltimore-Columbia-Towson, MD
1490   Washington-Arlington-Alexandria, DC-VA-MD-WV
1491                     Denver-Aurora-Lakewood, CO
1492          New York-Newark-Jersey City, NY-NJ-PA
1493                     Denver-Aurora-Lakewood, CO
1494          New York-Newark-Jersey City, NY-NJ-PA
1495                     Denver-Aurora-Lakewood, CO
1496              North Port-Sarasota-Bradenton, FL
1497                     Denver-Aurora-Lakewood, CO
1498                     Denver-Aurora-Lakewood, CO
1499                     Denver-Aurora-Lakewood, CO
1500              North Port-Sarasota-Bradenton, FL
1501                     Denver-Aurora-Lakewood, CO
1502                     Denver-Aurora-Lakewood, CO
1503                     Denver-Aurora-Lakewood, CO
1504                  Orlando-Kissimmee-Sanford, FL
1505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1506                     Denver-Aurora-Lakewood, CO
1507                     Denver-Aurora-Lakewood, CO
1508                     Denver-Aurora-Lakewood, CO
1509        Miami-Fort Lauderdale-Pompano Beach, FL
1510                     Denver-Aurora-Lakewood, CO
1511                     Denver-Aurora-Lakewood, CO
1512                     Denver-Aurora-Lakewood, CO
1513                     Denver-Aurora-Lakewood, CO
1514                     Denver-Aurora-Lakewood, CO
1515                     Denver-Aurora-Lakewood, CO
1516                     Denver-Aurora-Lakewood, CO
1517                     Denver-Aurora-Lakewood, CO
1518                Sacramento-Roseville-Folsom, CA
1519                     Denver-Aurora-Lakewood, CO
1520                     Denver-Aurora-Lakewood, CO
1521                     Denver-Aurora-Lakewood, CO
1522                     Denver-Aurora-Lakewood, CO
1523                     Denver-Aurora-Lakewood, CO
1524                     Denver-Aurora-Lakewood, CO
1525                     Denver-Aurora-Lakewood, CO
1526                     Denver-Aurora-Lakewood, CO
1527                     Denver-Aurora-Lakewood, CO
1528            Tampa-St. Petersburg-Clearwater, FL
1529           Houston-The Woodlands-Sugar Land, TX
1530           Houston-The Woodlands-Sugar Land, TX
1531             San Diego-Chula Vista-Carlsbad, CA
1532                    Detroit-Warren-Dearborn, MI
1533                    Detroit-Warren-Dearborn, MI
1534                    Detroit-Warren-Dearborn, MI
1535                                Albuquerque, NM
1536    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1537                                    El Paso, TX
1538                                    El Paso, TX
1539                                    El Paso, TX
1540                                    El Paso, TX
1541                                    El Paso, TX
1542             San Jose-Sunnyvale-Santa Clara, CA
1543            Tampa-St. Petersburg-Clearwater, FL
1544                               Jacksonville, FL
1545            Tampa-St. Petersburg-Clearwater, FL
1546                                    El Paso, TX
1547                                    El Paso, TX
1548             San Diego-Chula Vista-Carlsbad, CA
1549                         Eugene-Springfield, OR
1550                         Eugene-Springfield, OR
1551                                     Fresno, CA
1552                     Denver-Aurora-Lakewood, CO
1553               Las Vegas-Henderson-Paradise, NV
1554             San Jose-Sunnyvale-Santa Clara, CA
1555        Miami-Fort Lauderdale-Pompano Beach, FL
1556               Austin-Round Rock-Georgetown, TX
1557        Miami-Fort Lauderdale-Pompano Beach, FL
1558        Miami-Fort Lauderdale-Pompano Beach, FL
1559                      Providence-Warwick, RI-MA
1560        Miami-Fort Lauderdale-Pompano Beach, FL
1561        Miami-Fort Lauderdale-Pompano Beach, FL
1562        Miami-Fort Lauderdale-Pompano Beach, FL
1563        Miami-Fort Lauderdale-Pompano Beach, FL
1564             Los Angeles-Long Beach-Anaheim, CA
1565        Miami-Fort Lauderdale-Pompano Beach, FL
1566        Miami-Fort Lauderdale-Pompano Beach, FL
1567        Miami-Fort Lauderdale-Pompano Beach, FL
1568     Virginia Beach-Norfolk-Newport News, VA-NC
1569                                      Tulsa, OK
1570                     Spokane-Spokane Valley, WA
1571                          Manchester-Nashua, NH
1572                     Spokane-Spokane Valley, WA
1573                     Spokane-Spokane Valley, WA
1574                      Phoenix-Mesa-Chandler, AZ
1575                     Spokane-Spokane Valley, WA
1576                      Grand Rapids-Kentwood, MI
1577                                Spartanburg, SC
1578             San Jose-Sunnyvale-Santa Clara, CA
1579             Los Angeles-Long Beach-Anaheim, CA
1580                             Salt Lake City, UT
1581 Nashville-Davidson--Murfreesboro--Franklin, TN
1582           Houston-The Woodlands-Sugar Land, TX
1583                               Raleigh-Cary, NC
1584          New York-Newark-Jersey City, NY-NJ-PA
1585           Houston-The Woodlands-Sugar Land, TX
1586           Houston-The Woodlands-Sugar Land, TX
1587           Houston-The Woodlands-Sugar Land, TX
1588           Houston-The Woodlands-Sugar Land, TX
1589           Houston-The Woodlands-Sugar Land, TX
1590           Houston-The Woodlands-Sugar Land, TX
1591           Houston-The Woodlands-Sugar Land, TX
1592           Houston-The Woodlands-Sugar Land, TX
1593           Houston-The Woodlands-Sugar Land, TX
1594          New York-Newark-Jersey City, NY-NJ-PA
1595           Houston-The Woodlands-Sugar Land, TX
1596           Houston-The Woodlands-Sugar Land, TX
1597           Houston-The Woodlands-Sugar Land, TX
1598           Houston-The Woodlands-Sugar Land, TX
1599           Houston-The Woodlands-Sugar Land, TX
1600           Houston-The Woodlands-Sugar Land, TX
1601           Houston-The Woodlands-Sugar Land, TX
1602           Houston-The Woodlands-Sugar Land, TX
1603           Houston-The Woodlands-Sugar Land, TX
1604           Houston-The Woodlands-Sugar Land, TX
1605           Houston-The Woodlands-Sugar Land, TX
1606           Houston-The Woodlands-Sugar Land, TX
1607           Houston-The Woodlands-Sugar Land, TX
1608           Houston-The Woodlands-Sugar Land, TX
1609           Houston-The Woodlands-Sugar Land, TX
1610           Houston-The Woodlands-Sugar Land, TX
1611           Houston-The Woodlands-Sugar Land, TX
1612           Houston-The Woodlands-Sugar Land, TX
1613           Houston-The Woodlands-Sugar Land, TX
1614           Houston-The Woodlands-Sugar Land, TX
1615          New York-Newark-Jersey City, NY-NJ-PA
1616           Houston-The Woodlands-Sugar Land, TX
1617           Houston-The Woodlands-Sugar Land, TX
1618           Houston-The Woodlands-Sugar Land, TX
1619           Houston-The Woodlands-Sugar Land, TX
1620                                    Jackson, MS
1621                      Brownsville-Harlingen, TX
1622                           Colorado Springs, CO
1623                             Salt Lake City, UT
1624             San Francisco-Oakland-Berkeley, CA
1625                Sacramento-Roseville-Folsom, CA
1626                      Grand Rapids-Kentwood, MI
1627           Houston-The Woodlands-Sugar Land, TX
1628                  Orlando-Kissimmee-Sanford, FL
1629           Houston-The Woodlands-Sugar Land, TX
1630                                    Wichita, KS
1631                                    Wichita, KS
1632                    Portland-South Portland, ME
1633               Indianapolis-Carmel-Anderson, IN
1634               Indianapolis-Carmel-Anderson, IN
1635               Indianapolis-Carmel-Anderson, IN
1636               Indianapolis-Carmel-Anderson, IN
1637               Indianapolis-Carmel-Anderson, IN
1638          New York-Newark-Jersey City, NY-NJ-PA
1639        Miami-Fort Lauderdale-Pompano Beach, FL
1640         Crestview-Fort Walton Beach-Destin, FL
1641                          Manchester-Nashua, NH
1642                               Jacksonville, FL
1643                               Jacksonville, FL
1644                               Jacksonville, FL
1645           Atlanta-Sandy Springs-Alpharetta, GA
1646                  Baltimore-Columbia-Towson, MD
1647                              Oklahoma City, OK
1648               Las Vegas-Henderson-Paradise, NV
1649               Las Vegas-Henderson-Paradise, NV
1650               Indianapolis-Carmel-Anderson, IN
1651                       New Orleans-Metairie, LA
1652                                 Pittsburgh, PA
1653               Las Vegas-Henderson-Paradise, NV
1654                                 Pittsburgh, PA
1655            Tampa-St. Petersburg-Clearwater, FL
1656               Las Vegas-Henderson-Paradise, NV
1657               Las Vegas-Henderson-Paradise, NV
1658           Atlanta-Sandy Springs-Alpharetta, GA
1659             Chicago-Naperville-Elgin, IL-IN-WI
1660               Las Vegas-Henderson-Paradise, NV
1661               Las Vegas-Henderson-Paradise, NV
1662                                 Pittsburgh, PA
1663               Las Vegas-Henderson-Paradise, NV
1664               Las Vegas-Henderson-Paradise, NV
1665               Las Vegas-Henderson-Paradise, NV
1666               Las Vegas-Henderson-Paradise, NV
1667               Las Vegas-Henderson-Paradise, NV
1668               Las Vegas-Henderson-Paradise, NV
1669               Las Vegas-Henderson-Paradise, NV
1670               Las Vegas-Henderson-Paradise, NV
1671               Las Vegas-Henderson-Paradise, NV
1672               Las Vegas-Henderson-Paradise, NV
1673               Las Vegas-Henderson-Paradise, NV
1674               Las Vegas-Henderson-Paradise, NV
1675               Las Vegas-Henderson-Paradise, NV
1676               Las Vegas-Henderson-Paradise, NV
1677               Las Vegas-Henderson-Paradise, NV
1678               Las Vegas-Henderson-Paradise, NV
1679             Los Angeles-Long Beach-Anaheim, CA
1680             Los Angeles-Long Beach-Anaheim, CA
1681                                      Kapaa, HI
1682                       New Orleans-Metairie, LA
1683                  San Antonio-New Braunfels, TX
1684             Los Angeles-Long Beach-Anaheim, CA
1685                                      Tulsa, OK
1686                  Orlando-Kissimmee-Sanford, FL
1687        Miami-Fort Lauderdale-Pompano Beach, FL
1688             Los Angeles-Long Beach-Anaheim, CA
1689             Los Angeles-Long Beach-Anaheim, CA
1690             Los Angeles-Long Beach-Anaheim, CA
1691             Los Angeles-Long Beach-Anaheim, CA
1692           Riverside-San Bernardino-Ontario, CA
1693                               Raleigh-Cary, NC
1694                                    Lubbock, TX
1695                Dallas-Fort Worth-Arlington, TX
1696           Houston-The Woodlands-Sugar Land, TX
1697          New York-Newark-Jersey City, NY-NJ-PA
1698                       New Orleans-Metairie, LA
1699                              Oklahoma City, OK
1700          New York-Newark-Jersey City, NY-NJ-PA
1701          New York-Newark-Jersey City, NY-NJ-PA
1702             Los Angeles-Long Beach-Anaheim, CA
1703             Chicago-Naperville-Elgin, IL-IN-WI
1704             Los Angeles-Long Beach-Anaheim, CA
1705             Los Angeles-Long Beach-Anaheim, CA
1706             Los Angeles-Long Beach-Anaheim, CA
1707             Los Angeles-Long Beach-Anaheim, CA
1708             Los Angeles-Long Beach-Anaheim, CA
1709           Riverside-San Bernardino-Ontario, CA
1710             Los Angeles-Long Beach-Anaheim, CA
1711             Los Angeles-Long Beach-Anaheim, CA
1712             Los Angeles-Long Beach-Anaheim, CA
1713             Los Angeles-Long Beach-Anaheim, CA
1714             Los Angeles-Long Beach-Anaheim, CA
1715       Little Rock-North Little Rock-Conway, AR
1716                                    Midland, TX
1717                                    Midland, TX
1718                             Kansas City, MO-KS
1719                             Kansas City, MO-KS
1720              North Port-Sarasota-Bradenton, FL
1721                             Kansas City, MO-KS
1722                             Kansas City, MO-KS
1723                             Kansas City, MO-KS
1724                             Kansas City, MO-KS
1725                             Kansas City, MO-KS
1726                             Kansas City, MO-KS
1727                             Kansas City, MO-KS
1728                        Buffalo-Cheektowaga, NY
1729                                    Bozeman, MT
1730           Riverside-San Bernardino-Ontario, CA
1731                    Seattle-Tacoma-Bellevue, WA
1732                                     Fresno, CA
1733                      Phoenix-Mesa-Chandler, AZ
1734                  Orlando-Kissimmee-Sanford, FL
1735                 Boston-Cambridge-Newton, MA-NH
1736                 Des Moines-West Des Moines, IA
1737             San Diego-Chula Vista-Carlsbad, CA
1738                  Orlando-Kissimmee-Sanford, FL
1739                  Orlando-Kissimmee-Sanford, FL
1740                  Orlando-Kissimmee-Sanford, FL
1741                  Orlando-Kissimmee-Sanford, FL
1742                  Orlando-Kissimmee-Sanford, FL
1743                  Orlando-Kissimmee-Sanford, FL
1744                  Orlando-Kissimmee-Sanford, FL
1745                  Orlando-Kissimmee-Sanford, FL
1746                  Orlando-Kissimmee-Sanford, FL
1747                  Orlando-Kissimmee-Sanford, FL
1748                                      Kapaa, HI
1749                  Orlando-Kissimmee-Sanford, FL
1750                  Orlando-Kissimmee-Sanford, FL
1751             Chicago-Naperville-Elgin, IL-IN-WI
1752             Chicago-Naperville-Elgin, IL-IN-WI
1753             Chicago-Naperville-Elgin, IL-IN-WI
1754             Chicago-Naperville-Elgin, IL-IN-WI
1755             Chicago-Naperville-Elgin, IL-IN-WI
1756             Chicago-Naperville-Elgin, IL-IN-WI
1757             Chicago-Naperville-Elgin, IL-IN-WI
1758             Chicago-Naperville-Elgin, IL-IN-WI
1759             Chicago-Naperville-Elgin, IL-IN-WI
1760             Chicago-Naperville-Elgin, IL-IN-WI
1761             Chicago-Naperville-Elgin, IL-IN-WI
1762             Chicago-Naperville-Elgin, IL-IN-WI
1763             Chicago-Naperville-Elgin, IL-IN-WI
1764             Chicago-Naperville-Elgin, IL-IN-WI
1765             Chicago-Naperville-Elgin, IL-IN-WI
1766             Chicago-Naperville-Elgin, IL-IN-WI
1767             Chicago-Naperville-Elgin, IL-IN-WI
1768             Chicago-Naperville-Elgin, IL-IN-WI
1769             Chicago-Naperville-Elgin, IL-IN-WI
1770             Chicago-Naperville-Elgin, IL-IN-WI
1771             Chicago-Naperville-Elgin, IL-IN-WI
1772             Chicago-Naperville-Elgin, IL-IN-WI
1773             Chicago-Naperville-Elgin, IL-IN-WI
1774             Chicago-Naperville-Elgin, IL-IN-WI
1775             Chicago-Naperville-Elgin, IL-IN-WI
1776             Chicago-Naperville-Elgin, IL-IN-WI
1777             Chicago-Naperville-Elgin, IL-IN-WI
1778             Chicago-Naperville-Elgin, IL-IN-WI
1779             Chicago-Naperville-Elgin, IL-IN-WI
1780             Chicago-Naperville-Elgin, IL-IN-WI
1781             Chicago-Naperville-Elgin, IL-IN-WI
1782                               St. Louis, MO-IL
1783             Chicago-Naperville-Elgin, IL-IN-WI
1784             Chicago-Naperville-Elgin, IL-IN-WI
1785             Chicago-Naperville-Elgin, IL-IN-WI
1786             Chicago-Naperville-Elgin, IL-IN-WI
1787             Chicago-Naperville-Elgin, IL-IN-WI
1788             Chicago-Naperville-Elgin, IL-IN-WI
1789             Chicago-Naperville-Elgin, IL-IN-WI
1790             Chicago-Naperville-Elgin, IL-IN-WI
1791             Chicago-Naperville-Elgin, IL-IN-WI
1792             Chicago-Naperville-Elgin, IL-IN-WI
1793             Chicago-Naperville-Elgin, IL-IN-WI
1794             Chicago-Naperville-Elgin, IL-IN-WI
1795             Chicago-Naperville-Elgin, IL-IN-WI
1796             Chicago-Naperville-Elgin, IL-IN-WI
1797             Chicago-Naperville-Elgin, IL-IN-WI
1798             Chicago-Naperville-Elgin, IL-IN-WI
1799             Chicago-Naperville-Elgin, IL-IN-WI
1800             Chicago-Naperville-Elgin, IL-IN-WI
1801                              Memphis, TN-MS-AR
1802                              Memphis, TN-MS-AR
1803                              Memphis, TN-MS-AR
1804                              Memphis, TN-MS-AR
1805                              Memphis, TN-MS-AR
1806                  San Antonio-New Braunfels, TX
1807        Minneapolis-St. Paul-Bloomington, MN-WI
1808        Miami-Fort Lauderdale-Pompano Beach, FL
1809        Miami-Fort Lauderdale-Pompano Beach, FL
1810                             Kansas City, MO-KS
1811                         Milwaukee-Waukesha, WI
1812                         Milwaukee-Waukesha, WI
1813                         Milwaukee-Waukesha, WI
1814                         Milwaukee-Waukesha, WI
1815                         Milwaukee-Waukesha, WI
1816        Minneapolis-St. Paul-Bloomington, MN-WI
1817                      Cape Coral-Fort Myers, FL
1818             San Diego-Chula Vista-Carlsbad, CA
1819                       New Orleans-Metairie, LA
1820                       New Orleans-Metairie, LA
1821                       New Orleans-Metairie, LA
1822                       New Orleans-Metairie, LA
1823                       New Orleans-Metairie, LA
1824                       New Orleans-Metairie, LA
1825                       New Orleans-Metairie, LA
1826                       New Orleans-Metairie, LA
1827                           Colorado Springs, CO
1828                       New Orleans-Metairie, LA
1829                       New Orleans-Metairie, LA
1830                       New Orleans-Metairie, LA
1831                                      Tulsa, OK
1832  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1833  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
1834             San Francisco-Oakland-Berkeley, CA
1835             San Francisco-Oakland-Berkeley, CA
1836             San Francisco-Oakland-Berkeley, CA
1837             San Francisco-Oakland-Berkeley, CA
1838             San Diego-Chula Vista-Carlsbad, CA
1839             San Francisco-Oakland-Berkeley, CA
1840               Indianapolis-Carmel-Anderson, IN
1841             San Francisco-Oakland-Berkeley, CA
1842             San Francisco-Oakland-Berkeley, CA
1843             San Francisco-Oakland-Berkeley, CA
1844             San Jose-Sunnyvale-Santa Clara, CA
1845             San Francisco-Oakland-Berkeley, CA
1846             San Francisco-Oakland-Berkeley, CA
1847             San Francisco-Oakland-Berkeley, CA
1848             San Francisco-Oakland-Berkeley, CA
1849             San Francisco-Oakland-Berkeley, CA
1850                Sacramento-Roseville-Folsom, CA
1851                              Oklahoma City, OK
1852                              Oklahoma City, OK
1853                              Oklahoma City, OK
1854                    Kahului-Wailuku-Lahaina, HI
1855              North Port-Sarasota-Bradenton, FL
1856                    Omaha-Council Bluffs, NE-IA
1857                    Omaha-Council Bluffs, NE-IA
1858                    Omaha-Council Bluffs, NE-IA
1859                  San Antonio-New Braunfels, TX
1860           Riverside-San Bernardino-Ontario, CA
1861           Riverside-San Bernardino-Ontario, CA
1862                                   Savannah, GA
1863             Chicago-Naperville-Elgin, IL-IN-WI
1864             Chicago-Naperville-Elgin, IL-IN-WI
1865             Chicago-Naperville-Elgin, IL-IN-WI
1866     Virginia Beach-Norfolk-Newport News, VA-NC
1867     Virginia Beach-Norfolk-Newport News, VA-NC
1868     Virginia Beach-Norfolk-Newport News, VA-NC
1869     Virginia Beach-Norfolk-Newport News, VA-NC
1870          Hartford-East Hartford-Middletown, CT
1871                    Omaha-Council Bluffs, NE-IA
1872            Portland-Vancouver-Hillsboro, OR-WA
1873            Tampa-St. Petersburg-Clearwater, FL
1874                                      Kapaa, HI
1875             San Francisco-Oakland-Berkeley, CA
1876    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
1877        Miami-Fort Lauderdale-Pompano Beach, FL
1878                      Phoenix-Mesa-Chandler, AZ
1879                         Milwaukee-Waukesha, WI
1880                      Phoenix-Mesa-Chandler, AZ
1881           Atlanta-Sandy Springs-Alpharetta, GA
1882                      Phoenix-Mesa-Chandler, AZ
1883                      Phoenix-Mesa-Chandler, AZ
1884                      Phoenix-Mesa-Chandler, AZ
1885                      Phoenix-Mesa-Chandler, AZ
1886                      Phoenix-Mesa-Chandler, AZ
1887                      Phoenix-Mesa-Chandler, AZ
1888                      Phoenix-Mesa-Chandler, AZ
1889                      Phoenix-Mesa-Chandler, AZ
1890                      Phoenix-Mesa-Chandler, AZ
1891                      Phoenix-Mesa-Chandler, AZ
1892                      Phoenix-Mesa-Chandler, AZ
1893                      Phoenix-Mesa-Chandler, AZ
1894                      Phoenix-Mesa-Chandler, AZ
1895                      Phoenix-Mesa-Chandler, AZ
1896                             Urban Honolulu, HI
1897                      Phoenix-Mesa-Chandler, AZ
1898                      Phoenix-Mesa-Chandler, AZ
1899                      Phoenix-Mesa-Chandler, AZ
1900                      Phoenix-Mesa-Chandler, AZ
1901                      Phoenix-Mesa-Chandler, AZ
1902                      Phoenix-Mesa-Chandler, AZ
1903                                 Pittsburgh, PA
1904                                 Pittsburgh, PA
1905                                 Pittsburgh, PA
1906                                 Pittsburgh, PA
1907                                 Pittsburgh, PA
1908                                 Pittsburgh, PA
1909                 Pensacola-Ferry Pass-Brent, FL
1910                 Pensacola-Ferry Pass-Brent, FL
1911                 Pensacola-Ferry Pass-Brent, FL
1912           Riverside-San Bernardino-Ontario, CA
1913           Riverside-San Bernardino-Ontario, CA
1914                               Raleigh-Cary, NC
1915             San Francisco-Oakland-Berkeley, CA
1916                               Raleigh-Cary, NC
1917                    San Juan-Bayamón-Caguas, PR
1918                  San Antonio-New Braunfels, TX
1919                               Raleigh-Cary, NC
1920                                   Richmond, VA
1921                                       Reno, NV
1922                                       Reno, NV
1923                                       Reno, NV
1924                                       Reno, NV
1925                                  Rochester, NY
1926                                  Rochester, NY
1927                    Detroit-Warren-Dearborn, MI
1928                      Cape Coral-Fort Myers, FL
1929                      Cape Coral-Fort Myers, FL
1930                      Cape Coral-Fort Myers, FL
1931                      Cape Coral-Fort Myers, FL
1932                      Cape Coral-Fort Myers, FL
1933             San Diego-Chula Vista-Carlsbad, CA
1934         Crestview-Fort Walton Beach-Destin, FL
1935                Charleston-North Charleston, SC
1936                     Spokane-Spokane Valley, WA
1937             San Diego-Chula Vista-Carlsbad, CA
1938             San Diego-Chula Vista-Carlsbad, CA
1939             San Diego-Chula Vista-Carlsbad, CA
1940        Minneapolis-St. Paul-Bloomington, MN-WI
1941                                     Tucson, AZ
1942                  San Antonio-New Braunfels, TX
1943                  San Antonio-New Braunfels, TX
1944                  San Antonio-New Braunfels, TX
1945                  San Antonio-New Braunfels, TX
1946                Dallas-Fort Worth-Arlington, TX
1947                  Santa Maria-Santa Barbara, CA
1948             Louisville/Jefferson County, KY-IN
1949             Louisville/Jefferson County, KY-IN
1950             Louisville/Jefferson County, KY-IN
1951             Louisville/Jefferson County, KY-IN
1952             Louisville/Jefferson County, KY-IN
1953             Los Angeles-Long Beach-Anaheim, CA
1954             Los Angeles-Long Beach-Anaheim, CA
1955                               Raleigh-Cary, NC
1956             San Francisco-Oakland-Berkeley, CA
1957             San Francisco-Oakland-Berkeley, CA
1958             San Jose-Sunnyvale-Santa Clara, CA
1959             San Jose-Sunnyvale-Santa Clara, CA
1960                             Urban Honolulu, HI
1961             San Jose-Sunnyvale-Santa Clara, CA
1962                    Kahului-Wailuku-Lahaina, HI
1963                    Kahului-Wailuku-Lahaina, HI
1964             San Jose-Sunnyvale-Santa Clara, CA
1965             San Jose-Sunnyvale-Santa Clara, CA
1966             San Jose-Sunnyvale-Santa Clara, CA
1967             San Jose-Sunnyvale-Santa Clara, CA
1968                    San Juan-Bayamón-Caguas, PR
1969                             Salt Lake City, UT
1970                             Salt Lake City, UT
1971                             Salt Lake City, UT
1972                             Salt Lake City, UT
1973                Sacramento-Roseville-Folsom, CA
1974                             Kansas City, MO-KS
1975                Sacramento-Roseville-Folsom, CA
1976                Sacramento-Roseville-Folsom, CA
1977                                       Hilo, HI
1978                Sacramento-Roseville-Folsom, CA
1979                Sacramento-Roseville-Folsom, CA
1980                Sacramento-Roseville-Folsom, CA
1981                Sacramento-Roseville-Folsom, CA
1982             Los Angeles-Long Beach-Anaheim, CA
1983                       New Orleans-Metairie, LA
1984             Los Angeles-Long Beach-Anaheim, CA
1985              North Port-Sarasota-Bradenton, FL
1986              North Port-Sarasota-Bradenton, FL
1987              North Port-Sarasota-Bradenton, FL
1988              North Port-Sarasota-Bradenton, FL
1989                               St. Louis, MO-IL
1990                               St. Louis, MO-IL
1991                               St. Louis, MO-IL
1992                               St. Louis, MO-IL
1993                               St. Louis, MO-IL
1994                               St. Louis, MO-IL
1995                               St. Louis, MO-IL
1996                               St. Louis, MO-IL
1997                               St. Louis, MO-IL
1998                               St. Louis, MO-IL
1999                               St. Louis, MO-IL
2000          Hartford-East Hartford-Middletown, CT
2001                               St. Louis, MO-IL
2002                               St. Louis, MO-IL
2003                               St. Louis, MO-IL
2004                               St. Louis, MO-IL
2005                               St. Louis, MO-IL
2006                               St. Louis, MO-IL
2007                               St. Louis, MO-IL
2008                               St. Louis, MO-IL
2009                               St. Louis, MO-IL
2010                               St. Louis, MO-IL
2011                               St. Louis, MO-IL
2012                               St. Louis, MO-IL
2013                               St. Louis, MO-IL
2014                               St. Louis, MO-IL
2015                               St. Louis, MO-IL
2016                               St. Louis, MO-IL
2017            Tampa-St. Petersburg-Clearwater, FL
2018                                   Syracuse, NY
2019                     Denver-Aurora-Lakewood, CO
2020            Tampa-St. Petersburg-Clearwater, FL
2021            Tampa-St. Petersburg-Clearwater, FL
2022            Tampa-St. Petersburg-Clearwater, FL
2023            Tampa-St. Petersburg-Clearwater, FL
2024            Tampa-St. Petersburg-Clearwater, FL
2025            Tampa-St. Petersburg-Clearwater, FL
2026            Tampa-St. Petersburg-Clearwater, FL
2027            Tampa-St. Petersburg-Clearwater, FL
2028            Tampa-St. Petersburg-Clearwater, FL
2029                                     Tucson, AZ
2030                                     Tucson, AZ
2031         Crestview-Fort Walton Beach-Destin, FL
2032                         Milwaukee-Waukesha, WI
2033                    Shreveport-Bossier City, LA
2034                                    Medford, OR
2035                  Orlando-Kissimmee-Sanford, FL
2036                Dallas-Fort Worth-Arlington, TX
2037                Sacramento-Roseville-Folsom, CA
2038                           Cincinnati, OH-KY-IN
2039                               Jacksonville, FL
2040             San Diego-Chula Vista-Carlsbad, CA
2041                               Raleigh-Cary, NC
2042   Washington-Arlington-Alexandria, DC-VA-MD-WV
2043   Washington-Arlington-Alexandria, DC-VA-MD-WV
2044           Houston-The Woodlands-Sugar Land, TX
2045           Houston-The Woodlands-Sugar Land, TX
2046          New York-Newark-Jersey City, NY-NJ-PA
2047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2048                      Phoenix-Mesa-Chandler, AZ
2049                      Phoenix-Mesa-Chandler, AZ
2050             Los Angeles-Long Beach-Anaheim, CA
2051                 Pensacola-Ferry Pass-Brent, FL
2052        Minneapolis-St. Paul-Bloomington, MN-WI
2053                    San Juan-Bayamón-Caguas, PR
2054   Washington-Arlington-Alexandria, DC-VA-MD-WV
2055                                     Bangor, ME
2056                        Buffalo-Cheektowaga, NY
2057                        Harrisburg-Carlisle, PA
2058                               Jacksonville, FL
2059                 Boston-Cambridge-Newton, MA-NH
2060                           Cincinnati, OH-KY-IN
2061                 Boston-Cambridge-Newton, MA-NH
2062                     Denver-Aurora-Lakewood, CO
2063                       New Orleans-Metairie, LA
2064                 Des Moines-West Des Moines, IA
2065     Virginia Beach-Norfolk-Newport News, VA-NC
2066                Dallas-Fort Worth-Arlington, TX
2067        Miami-Fort Lauderdale-Pompano Beach, FL
2068                 Boston-Cambridge-Newton, MA-NH
2069                 Boston-Cambridge-Newton, MA-NH
2070                 Boston-Cambridge-Newton, MA-NH
2071             San Francisco-Oakland-Berkeley, CA
2072                          Manchester-Nashua, NH
2073                Charleston-North Charleston, SC
2074                                      Tulsa, OK
2075                           Cleveland-Elyria, OH
2076                           Cleveland-Elyria, OH
2077              Charlotte-Concord-Gastonia, NC-SC
2078              Charlotte-Concord-Gastonia, NC-SC
2079               Indianapolis-Carmel-Anderson, IN
2080                                   Columbus, OH
2081                                   Columbus, OH
2082                                   Columbus, OH
2083                           Cincinnati, OH-KY-IN
2084                Sacramento-Roseville-Folsom, CA
2085   Washington-Arlington-Alexandria, DC-VA-MD-WV
2086   Washington-Arlington-Alexandria, DC-VA-MD-WV
2087   Washington-Arlington-Alexandria, DC-VA-MD-WV
2088   Washington-Arlington-Alexandria, DC-VA-MD-WV
2089                                    Madison, WI
2090          New York-Newark-Jersey City, NY-NJ-PA
2091          New York-Newark-Jersey City, NY-NJ-PA
2092          New York-Newark-Jersey City, NY-NJ-PA
2093          New York-Newark-Jersey City, NY-NJ-PA
2094          New York-Newark-Jersey City, NY-NJ-PA
2095          New York-Newark-Jersey City, NY-NJ-PA
2096                 Pensacola-Ferry Pass-Brent, FL
2097                      Greensboro-High Point, NC
2098   Washington-Arlington-Alexandria, DC-VA-MD-WV
2099   Washington-Arlington-Alexandria, DC-VA-MD-WV
2100                                 Wilmington, NC
2101               Indianapolis-Carmel-Anderson, IN
2102         Deltona-Daytona Beach-Ormond Beach, FL
2103               Indianapolis-Carmel-Anderson, IN
2104                         Milwaukee-Waukesha, WI
2105                          Carbondale-Marion, IL
2106                Dallas-Fort Worth-Arlington, TX
2107          New York-Newark-Jersey City, NY-NJ-PA
2108                                Panama City, FL
2109          New York-Newark-Jersey City, NY-NJ-PA
2110                      Phoenix-Mesa-Chandler, AZ
2111                                  Knoxville, TN
2112          New York-Newark-Jersey City, NY-NJ-PA
2113          New York-Newark-Jersey City, NY-NJ-PA
2114          New York-Newark-Jersey City, NY-NJ-PA
2115          New York-Newark-Jersey City, NY-NJ-PA
2116          New York-Newark-Jersey City, NY-NJ-PA
2117          New York-Newark-Jersey City, NY-NJ-PA
2118          New York-Newark-Jersey City, NY-NJ-PA
2119          New York-Newark-Jersey City, NY-NJ-PA
2120          New York-Newark-Jersey City, NY-NJ-PA
2121          New York-Newark-Jersey City, NY-NJ-PA
2122          New York-Newark-Jersey City, NY-NJ-PA
2123          New York-Newark-Jersey City, NY-NJ-PA
2124                                Spartanburg, SC
2125     Virginia Beach-Norfolk-Newport News, VA-NC
2126                    Omaha-Council Bluffs, NE-IA
2127     Virginia Beach-Norfolk-Newport News, VA-NC
2128    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2129                                 Pittsburgh, PA
2130                                 Pittsburgh, PA
2131                                  Fairbanks, AK
2132                                 Pittsburgh, PA
2133                                   Savannah, GA
2134                                   Savannah, GA
2135             Louisville/Jefferson County, KY-IN
2136                               Raleigh-Cary, NC
2137                               Raleigh-Cary, NC
2138                      Providence-Warwick, RI-MA
2139                 Boston-Cambridge-Newton, MA-NH
2140             Louisville/Jefferson County, KY-IN
2141                                   Columbus, OH
2142              Charlotte-Concord-Gastonia, NC-SC
2143                Charleston-North Charleston, SC
2144                           Cleveland-Elyria, OH
2145                            Charlottesville, VA
2146                                      Akron, OH
2147   Washington-Arlington-Alexandria, DC-VA-MD-WV
2148                    Seattle-Tacoma-Bellevue, WA
2149                           Sioux City, IA-NE-SD
2150             Chicago-Naperville-Elgin, IL-IN-WI
2151             Chicago-Naperville-Elgin, IL-IN-WI
2152               Las Vegas-Henderson-Paradise, NV
2153                  San Antonio-New Braunfels, TX
2154                      Phoenix-Mesa-Chandler, AZ
2155        Minneapolis-St. Paul-Bloomington, MN-WI
2156        Minneapolis-St. Paul-Bloomington, MN-WI
2157                                 Eau Claire, WI
2158                    Albany-Schenectady-Troy, NY
2159                                 Wilmington, NC
2160                     Denver-Aurora-Lakewood, CO
2161   Washington-Arlington-Alexandria, DC-VA-MD-WV
2162             San Diego-Chula Vista-Carlsbad, CA
2163  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2164                      Cape Coral-Fort Myers, FL
2165                                   Richmond, VA
2166                      Greensboro-High Point, NC
2167                                   Syracuse, NY
2168                             Kansas City, MO-KS
2169                     Denver-Aurora-Lakewood, CO
2170                      Grand Rapids-Kentwood, MI
2171                                 Huntsville, AL
2172           Houston-The Woodlands-Sugar Land, TX
2173             Los Angeles-Long Beach-Anaheim, CA
2174        Miami-Fort Lauderdale-Pompano Beach, FL
2175                 Pensacola-Ferry Pass-Brent, FL
2176                     Denver-Aurora-Lakewood, CO
2177                 Pensacola-Ferry Pass-Brent, FL
2178                          New Haven-Milford, CT
2179                          New Haven-Milford, CT
2180                  Orlando-Kissimmee-Sanford, FL
2181             Los Angeles-Long Beach-Anaheim, CA
2182                           Glenwood Springs, CO
2183                          Birmingham-Hoover, AL
2184          New York-Newark-Jersey City, NY-NJ-PA
2185                         Milwaukee-Waukesha, WI
2186   Washington-Arlington-Alexandria, DC-VA-MD-WV
2187   Washington-Arlington-Alexandria, DC-VA-MD-WV
2188                Dallas-Fort Worth-Arlington, TX
2189                Dallas-Fort Worth-Arlington, TX
2190                Dallas-Fort Worth-Arlington, TX
2191                             Urban Honolulu, HI
2192          New York-Newark-Jersey City, NY-NJ-PA
2193           Atlanta-Sandy Springs-Alpharetta, GA
2194             Chicago-Naperville-Elgin, IL-IN-WI
2195    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2197                      Phoenix-Mesa-Chandler, AZ
2198                      Phoenix-Mesa-Chandler, AZ
2199             San Diego-Chula Vista-Carlsbad, CA
2200                                  Fairbanks, AK
2201            Portland-Vancouver-Hillsboro, OR-WA
2202                 Boston-Cambridge-Newton, MA-NH
2203                 Boston-Cambridge-Newton, MA-NH
2204          New York-Newark-Jersey City, NY-NJ-PA
2205           Riverside-San Bernardino-Ontario, CA
2206             San Francisco-Oakland-Berkeley, CA
2207           Atlanta-Sandy Springs-Alpharetta, GA
2208           Atlanta-Sandy Springs-Alpharetta, GA
2209           Atlanta-Sandy Springs-Alpharetta, GA
2210           Atlanta-Sandy Springs-Alpharetta, GA
2211           Atlanta-Sandy Springs-Alpharetta, GA
2212           Atlanta-Sandy Springs-Alpharetta, GA
2213                 Boston-Cambridge-Newton, MA-NH
2214   Washington-Arlington-Alexandria, DC-VA-MD-WV
2215                    Detroit-Warren-Dearborn, MI
2216                    Detroit-Warren-Dearborn, MI
2217                    Detroit-Warren-Dearborn, MI
2218          New York-Newark-Jersey City, NY-NJ-PA
2219          New York-Newark-Jersey City, NY-NJ-PA
2220          New York-Newark-Jersey City, NY-NJ-PA
2221          New York-Newark-Jersey City, NY-NJ-PA
2222             Los Angeles-Long Beach-Anaheim, CA
2223             Los Angeles-Long Beach-Anaheim, CA
2224             Los Angeles-Long Beach-Anaheim, CA
2225        Minneapolis-St. Paul-Bloomington, MN-WI
2226        Minneapolis-St. Paul-Bloomington, MN-WI
2227             San Jose-Sunnyvale-Santa Clara, CA
2228                             Salt Lake City, UT
2229                             Salt Lake City, UT
2230                             Salt Lake City, UT
2231            Tampa-St. Petersburg-Clearwater, FL
2232            Tampa-St. Petersburg-Clearwater, FL
2233             Los Angeles-Long Beach-Anaheim, CA
2234                    Detroit-Warren-Dearborn, MI
2235             Chicago-Naperville-Elgin, IL-IN-WI
2236                     Denver-Aurora-Lakewood, CO
2237          New York-Newark-Jersey City, NY-NJ-PA
2238           Houston-The Woodlands-Sugar Land, TX
2239           Houston-The Woodlands-Sugar Land, TX
2240           Houston-The Woodlands-Sugar Land, TX
2241           Houston-The Woodlands-Sugar Land, TX
2242                               Raleigh-Cary, NC
2243             San Francisco-Oakland-Berkeley, CA
2244           Houston-The Woodlands-Sugar Land, TX
2245          New York-Newark-Jersey City, NY-NJ-PA
2246          New York-Newark-Jersey City, NY-NJ-PA
2247             Chicago-Naperville-Elgin, IL-IN-WI
2248                                   Richmond, VA
2249    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2250                             Kansas City, MO-KS
2251                Dallas-Fort Worth-Arlington, TX
2252                      Grand Rapids-Kentwood, MI
2253    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2254  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2255                                  Fairbanks, AK
2256                                           <NA>
2257                                           <NA>
2258                    Seattle-Tacoma-Bellevue, WA
2259                    Seattle-Tacoma-Bellevue, WA
2260                             Salt Lake City, UT
2261                     Denver-Aurora-Lakewood, CO
2262   Washington-Arlington-Alexandria, DC-VA-MD-WV
2263              Allentown-Bethlehem-Easton, PA-NJ
2264           Atlanta-Sandy Springs-Alpharetta, GA
2265           Atlanta-Sandy Springs-Alpharetta, GA
2266           Atlanta-Sandy Springs-Alpharetta, GA
2267           Atlanta-Sandy Springs-Alpharetta, GA
2268           Atlanta-Sandy Springs-Alpharetta, GA
2269           Atlanta-Sandy Springs-Alpharetta, GA
2270           Atlanta-Sandy Springs-Alpharetta, GA
2271           Atlanta-Sandy Springs-Alpharetta, GA
2272                                     Bangor, ME
2273                 Boston-Cambridge-Newton, MA-NH
2274                 Boston-Cambridge-Newton, MA-NH
2275                            Charlottesville, VA
2276                Charleston-North Charleston, SC
2277                           Cincinnati, OH-KY-IN
2278                        Harrisburg-Carlisle, PA
2279                    Detroit-Warren-Dearborn, MI
2280                    Detroit-Warren-Dearborn, MI
2281                    Detroit-Warren-Dearborn, MI
2282                    Detroit-Warren-Dearborn, MI
2283                    Detroit-Warren-Dearborn, MI
2284                    Detroit-Warren-Dearborn, MI
2285                    Detroit-Warren-Dearborn, MI
2286          New York-Newark-Jersey City, NY-NJ-PA
2287                      Phoenix-Mesa-Chandler, AZ
2288               Indianapolis-Carmel-Anderson, IN
2289          New York-Newark-Jersey City, NY-NJ-PA
2290          New York-Newark-Jersey City, NY-NJ-PA
2291          New York-Newark-Jersey City, NY-NJ-PA
2292          New York-Newark-Jersey City, NY-NJ-PA
2293          New York-Newark-Jersey City, NY-NJ-PA
2294          New York-Newark-Jersey City, NY-NJ-PA
2295          New York-Newark-Jersey City, NY-NJ-PA
2296          New York-Newark-Jersey City, NY-NJ-PA
2297          New York-Newark-Jersey City, NY-NJ-PA
2298          New York-Newark-Jersey City, NY-NJ-PA
2299          New York-Newark-Jersey City, NY-NJ-PA
2300          New York-Newark-Jersey City, NY-NJ-PA
2301                        Harrisburg-Carlisle, PA
2302        Minneapolis-St. Paul-Bloomington, MN-WI
2303        Minneapolis-St. Paul-Bloomington, MN-WI
2304        Minneapolis-St. Paul-Bloomington, MN-WI
2305                               Raleigh-Cary, NC
2306                                    Roanoke, VA
2307                                  Rochester, NY
2308                                  Knoxville, TN
2309               Austin-Round Rock-Georgetown, TX
2310               Austin-Round Rock-Georgetown, TX
2311                                    Madison, WI
2312               Austin-Round Rock-Georgetown, TX
2313          Hartford-East Hartford-Middletown, CT
2314                 Boston-Cambridge-Newton, MA-NH
2315                 Boston-Cambridge-Newton, MA-NH
2316               Indianapolis-Carmel-Anderson, IN
2317                 Boston-Cambridge-Newton, MA-NH
2318             San Francisco-Oakland-Berkeley, CA
2319              Charlotte-Concord-Gastonia, NC-SC
2320              Charlotte-Concord-Gastonia, NC-SC
2321              Charlotte-Concord-Gastonia, NC-SC
2322              Charlotte-Concord-Gastonia, NC-SC
2323              Charlotte-Concord-Gastonia, NC-SC
2324                                    Salinas, CA
2325              Charlotte-Concord-Gastonia, NC-SC
2326              Charlotte-Concord-Gastonia, NC-SC
2327              Charlotte-Concord-Gastonia, NC-SC
2328                           Cincinnati, OH-KY-IN
2329   Washington-Arlington-Alexandria, DC-VA-MD-WV
2330                Dallas-Fort Worth-Arlington, TX
2331                Dallas-Fort Worth-Arlington, TX
2332                Dallas-Fort Worth-Arlington, TX
2333                Dallas-Fort Worth-Arlington, TX
2334                Dallas-Fort Worth-Arlington, TX
2335                Dallas-Fort Worth-Arlington, TX
2336                Dallas-Fort Worth-Arlington, TX
2337                Dallas-Fort Worth-Arlington, TX
2338                Dallas-Fort Worth-Arlington, TX
2339                Dallas-Fort Worth-Arlington, TX
2340                Dallas-Fort Worth-Arlington, TX
2341                Dallas-Fort Worth-Arlington, TX
2342                Dallas-Fort Worth-Arlington, TX
2343                Dallas-Fort Worth-Arlington, TX
2344                Dallas-Fort Worth-Arlington, TX
2345                Dallas-Fort Worth-Arlington, TX
2346                                Springfield, MO
2347                                   Columbia, MO
2348                    Seattle-Tacoma-Bellevue, WA
2349           Houston-The Woodlands-Sugar Land, TX
2350        Miami-Fort Lauderdale-Pompano Beach, FL
2351          New York-Newark-Jersey City, NY-NJ-PA
2352               Las Vegas-Henderson-Paradise, NV
2353                    Shreveport-Bossier City, LA
2354                                 Wilmington, NC
2355                                   Richmond, VA
2356                Burlington-South Burlington, VT
2357          New York-Newark-Jersey City, NY-NJ-PA
2358                  Orlando-Kissimmee-Sanford, FL
2359                        Harrisburg-Carlisle, PA
2360                    Portland-South Portland, ME
2361       Little Rock-North Little Rock-Conway, AR
2362                   McAllen-Edinburg-Mission, TX
2363        Miami-Fort Lauderdale-Pompano Beach, FL
2364        Miami-Fort Lauderdale-Pompano Beach, FL
2365        Miami-Fort Lauderdale-Pompano Beach, FL
2366        Miami-Fort Lauderdale-Pompano Beach, FL
2367        Miami-Fort Lauderdale-Pompano Beach, FL
2368        Miami-Fort Lauderdale-Pompano Beach, FL
2369                                Tallahassee, FL
2370        Miami-Fort Lauderdale-Pompano Beach, FL
2371                Charleston-North Charleston, SC
2372             Chicago-Naperville-Elgin, IL-IN-WI
2373             Chicago-Naperville-Elgin, IL-IN-WI
2374             Chicago-Naperville-Elgin, IL-IN-WI
2375             Chicago-Naperville-Elgin, IL-IN-WI
2376             Chicago-Naperville-Elgin, IL-IN-WI
2377                            Charlottesville, VA
2378    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2379    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2380                      Phoenix-Mesa-Chandler, AZ
2381                      Phoenix-Mesa-Chandler, AZ
2382                      Phoenix-Mesa-Chandler, AZ
2383                      Phoenix-Mesa-Chandler, AZ
2384            Portland-Vancouver-Hillsboro, OR-WA
2385                                Baton Rouge, LA
2386                               Raleigh-Cary, NC
2387                      Cape Coral-Fort Myers, FL
2388                       Kingsport-Bristol, TN-VA
2389                                 Pittsburgh, PA
2390                      Greensboro-High Point, NC
2391                                    Roanoke, VA
2392                          Birmingham-Hoover, AL
2393                    San Juan-Bayamón-Caguas, PR
2394                                   Columbus, OH
2395             Louisville/Jefferson County, KY-IN
2396                                   Fargo, ND-MN
2397                                       Yuma, AZ
2398                                  Anchorage, AK
2399                                  Anchorage, AK
2400                                           <NA>
2401   Washington-Arlington-Alexandria, DC-VA-MD-WV
2402                                  Ketchikan, AK
2403                             Urban Honolulu, HI
2404                                  Ketchikan, AK
2405             Los Angeles-Long Beach-Anaheim, CA
2406             Los Angeles-Long Beach-Anaheim, CA
2407                    Omaha-Council Bluffs, NE-IA
2408                                           <NA>
2409            Portland-Vancouver-Hillsboro, OR-WA
2410                    Kahului-Wailuku-Lahaina, HI
2411                    Seattle-Tacoma-Bellevue, WA
2412                    Seattle-Tacoma-Bellevue, WA
2413                    Seattle-Tacoma-Bellevue, WA
2414                    Seattle-Tacoma-Bellevue, WA
2415             San Francisco-Oakland-Berkeley, CA
2416                                Albuquerque, NM
2417                      Cape Coral-Fort Myers, FL
2418                    Albany-Schenectady-Troy, NY
2419          Hartford-East Hartford-Middletown, CT
2420          Hartford-East Hartford-Middletown, CT
2421                 Boston-Cambridge-Newton, MA-NH
2422                 Boston-Cambridge-Newton, MA-NH
2423                 Boston-Cambridge-Newton, MA-NH
2424                 Boston-Cambridge-Newton, MA-NH
2425             Los Angeles-Long Beach-Anaheim, CA
2426   Washington-Arlington-Alexandria, DC-VA-MD-WV
2427        Miami-Fort Lauderdale-Pompano Beach, FL
2428          New York-Newark-Jersey City, NY-NJ-PA
2429                    Seattle-Tacoma-Bellevue, WA
2430          New York-Newark-Jersey City, NY-NJ-PA
2431          New York-Newark-Jersey City, NY-NJ-PA
2432          New York-Newark-Jersey City, NY-NJ-PA
2433             Los Angeles-Long Beach-Anaheim, CA
2434             Los Angeles-Long Beach-Anaheim, CA
2435           Riverside-San Bernardino-Ontario, CA
2436                      Providence-Warwick, RI-MA
2437                      Providence-Warwick, RI-MA
2438             San Diego-Chula Vista-Carlsbad, CA
2439                    San Juan-Bayamón-Caguas, PR
2440                    San Juan-Bayamón-Caguas, PR
2441                Sacramento-Roseville-Folsom, CA
2442              North Port-Sarasota-Bradenton, FL
2443                                   Syracuse, NY
2444           Atlanta-Sandy Springs-Alpharetta, GA
2445           Atlanta-Sandy Springs-Alpharetta, GA
2446           Atlanta-Sandy Springs-Alpharetta, GA
2447           Atlanta-Sandy Springs-Alpharetta, GA
2448           Atlanta-Sandy Springs-Alpharetta, GA
2449           Atlanta-Sandy Springs-Alpharetta, GA
2450           Atlanta-Sandy Springs-Alpharetta, GA
2451           Atlanta-Sandy Springs-Alpharetta, GA
2452           Atlanta-Sandy Springs-Alpharetta, GA
2453           Atlanta-Sandy Springs-Alpharetta, GA
2454           Atlanta-Sandy Springs-Alpharetta, GA
2455           Atlanta-Sandy Springs-Alpharetta, GA
2456           Atlanta-Sandy Springs-Alpharetta, GA
2457           Atlanta-Sandy Springs-Alpharetta, GA
2458           Atlanta-Sandy Springs-Alpharetta, GA
2459           Atlanta-Sandy Springs-Alpharetta, GA
2460           Atlanta-Sandy Springs-Alpharetta, GA
2461           Atlanta-Sandy Springs-Alpharetta, GA
2462           Atlanta-Sandy Springs-Alpharetta, GA
2463           Atlanta-Sandy Springs-Alpharetta, GA
2464           Atlanta-Sandy Springs-Alpharetta, GA
2465           Atlanta-Sandy Springs-Alpharetta, GA
2466               Austin-Round Rock-Georgetown, TX
2467               Austin-Round Rock-Georgetown, TX
2468 Nashville-Davidson--Murfreesboro--Franklin, TN
2469                 Boston-Cambridge-Newton, MA-NH
2470                                 Jackson, WY-ID
2471              Charlotte-Concord-Gastonia, NC-SC
2472                           Cincinnati, OH-KY-IN
2473                           Cincinnati, OH-KY-IN
2474                           Cincinnati, OH-KY-IN
2475                              Traverse City, MI
2476                Dallas-Fort Worth-Arlington, TX
2477                    Detroit-Warren-Dearborn, MI
2478                    Detroit-Warren-Dearborn, MI
2479                    Detroit-Warren-Dearborn, MI
2480                    Detroit-Warren-Dearborn, MI
2481                    Detroit-Warren-Dearborn, MI
2482                    Detroit-Warren-Dearborn, MI
2483                    Detroit-Warren-Dearborn, MI
2484                    Detroit-Warren-Dearborn, MI
2485                    Detroit-Warren-Dearborn, MI
2486                                    El Paso, TX
2487              Palm Bay-Melbourne-Titusville, FL
2488   Washington-Arlington-Alexandria, DC-VA-MD-WV
2489               Indianapolis-Carmel-Anderson, IN
2490          New York-Newark-Jersey City, NY-NJ-PA
2491          New York-Newark-Jersey City, NY-NJ-PA
2492             Los Angeles-Long Beach-Anaheim, CA
2493             Los Angeles-Long Beach-Anaheim, CA
2494                  Orlando-Kissimmee-Sanford, FL
2495                              Memphis, TN-MS-AR
2496        Miami-Fort Lauderdale-Pompano Beach, FL
2497        Miami-Fort Lauderdale-Pompano Beach, FL
2498        Minneapolis-St. Paul-Bloomington, MN-WI
2499        Minneapolis-St. Paul-Bloomington, MN-WI
2500        Minneapolis-St. Paul-Bloomington, MN-WI
2501        Minneapolis-St. Paul-Bloomington, MN-WI
2502        Minneapolis-St. Paul-Bloomington, MN-WI
2503        Minneapolis-St. Paul-Bloomington, MN-WI
2504        Minneapolis-St. Paul-Bloomington, MN-WI
2505        Minneapolis-St. Paul-Bloomington, MN-WI
2506        Minneapolis-St. Paul-Bloomington, MN-WI
2507        Minneapolis-St. Paul-Bloomington, MN-WI
2508        Minneapolis-St. Paul-Bloomington, MN-WI
2509        Minneapolis-St. Paul-Bloomington, MN-WI
2510          New York-Newark-Jersey City, NY-NJ-PA
2511                      Greensboro-High Point, NC
2512                      Cape Coral-Fort Myers, FL
2513                  San Antonio-New Braunfels, TX
2514                    Seattle-Tacoma-Bellevue, WA
2515                    Seattle-Tacoma-Bellevue, WA
2516                                 Rapid City, SD
2517                    Seattle-Tacoma-Bellevue, WA
2518             San Francisco-Oakland-Berkeley, CA
2519                    San Juan-Bayamón-Caguas, PR
2520                             Salt Lake City, UT
2521                             Salt Lake City, UT
2522                             Salt Lake City, UT
2523                             Salt Lake City, UT
2524                             Salt Lake City, UT
2525                             Salt Lake City, UT
2526                             Salt Lake City, UT
2527                             Salt Lake City, UT
2528                             Salt Lake City, UT
2529                             Salt Lake City, UT
2530                             Salt Lake City, UT
2531                             Salt Lake City, UT
2532                             Salt Lake City, UT
2533                       Kingsport-Bristol, TN-VA
2534                Burlington-South Burlington, VT
2535          New York-Newark-Jersey City, NY-NJ-PA
2536          New York-Newark-Jersey City, NY-NJ-PA
2537          New York-Newark-Jersey City, NY-NJ-PA
2538          New York-Newark-Jersey City, NY-NJ-PA
2539          New York-Newark-Jersey City, NY-NJ-PA
2540          New York-Newark-Jersey City, NY-NJ-PA
2541   Washington-Arlington-Alexandria, DC-VA-MD-WV
2542   Washington-Arlington-Alexandria, DC-VA-MD-WV
2543             Los Angeles-Long Beach-Anaheim, CA
2544                                Tallahassee, FL
2545                      Brownsville-Harlingen, TX
2546                Dallas-Fort Worth-Arlington, TX
2547                Dallas-Fort Worth-Arlington, TX
2548                Dallas-Fort Worth-Arlington, TX
2549                Dallas-Fort Worth-Arlington, TX
2550                Dallas-Fort Worth-Arlington, TX
2551                Dallas-Fort Worth-Arlington, TX
2552                 Des Moines-West Des Moines, IA
2553    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2554                              Fort Smith, AR-OK
2555                             Grand Junction, CO
2556                                    Wichita, KS
2557                                    Jackson, MS
2558                               Lake Charles, LA
2559        Miami-Fort Lauderdale-Pompano Beach, FL
2560                    Omaha-Council Bluffs, NE-IA
2561             Chicago-Naperville-Elgin, IL-IN-WI
2562             Chicago-Naperville-Elgin, IL-IN-WI
2563             Chicago-Naperville-Elgin, IL-IN-WI
2564                                Springfield, IL
2565                                Tallahassee, FL
2566                             Salt Lake City, UT
2567                                    El Paso, TX
2568              Charlotte-Concord-Gastonia, NC-SC
2569              Charlotte-Concord-Gastonia, NC-SC
2570              Charlotte-Concord-Gastonia, NC-SC
2571              Charlotte-Concord-Gastonia, NC-SC
2572              Charlotte-Concord-Gastonia, NC-SC
2573              Charlotte-Concord-Gastonia, NC-SC
2574   Washington-Arlington-Alexandria, DC-VA-MD-WV
2575   Washington-Arlington-Alexandria, DC-VA-MD-WV
2576                      Greensboro-High Point, NC
2577                                    Madison, WI
2578    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2579                 Pensacola-Ferry Pass-Brent, FL
2580                                 Huntsville, AL
2581                                   Bismarck, ND
2582                                     Casper, WY
2583                             Corpus Christi, TX
2584                     Denver-Aurora-Lakewood, CO
2585                     Denver-Aurora-Lakewood, CO
2586                     Denver-Aurora-Lakewood, CO
2587                     Denver-Aurora-Lakewood, CO
2588                     Denver-Aurora-Lakewood, CO
2589                     Denver-Aurora-Lakewood, CO
2590                     Denver-Aurora-Lakewood, CO
2591                     Denver-Aurora-Lakewood, CO
2592                    Detroit-Warren-Dearborn, MI
2593                    Detroit-Warren-Dearborn, MI
2594                    Detroit-Warren-Dearborn, MI
2595                               St. Louis, MO-IL
2596          New York-Newark-Jersey City, NY-NJ-PA
2597           Houston-The Woodlands-Sugar Land, TX
2598           Houston-The Woodlands-Sugar Land, TX
2599           Houston-The Woodlands-Sugar Land, TX
2600           Houston-The Woodlands-Sugar Land, TX
2601             Los Angeles-Long Beach-Anaheim, CA
2602                                    Lubbock, TX
2603                                    Midland, TX
2604                             Kansas City, MO-KS
2605        Minneapolis-St. Paul-Bloomington, MN-WI
2606        Minneapolis-St. Paul-Bloomington, MN-WI
2607        Minneapolis-St. Paul-Bloomington, MN-WI
2608        Minneapolis-St. Paul-Bloomington, MN-WI
2609        Minneapolis-St. Paul-Bloomington, MN-WI
2610        Minneapolis-St. Paul-Bloomington, MN-WI
2611        Minneapolis-St. Paul-Bloomington, MN-WI
2612                    Omaha-Council Bluffs, NE-IA
2613             Chicago-Naperville-Elgin, IL-IN-WI
2614             Chicago-Naperville-Elgin, IL-IN-WI
2615             Chicago-Naperville-Elgin, IL-IN-WI
2616             Chicago-Naperville-Elgin, IL-IN-WI
2617             Chicago-Naperville-Elgin, IL-IN-WI
2618     Virginia Beach-Norfolk-Newport News, VA-NC
2619                      Phoenix-Mesa-Chandler, AZ
2620                                   Richmond, VA
2621                                   Savannah, GA
2622                    Seattle-Tacoma-Bellevue, WA
2623             San Francisco-Oakland-Berkeley, CA
2624             San Francisco-Oakland-Berkeley, CA
2625                             Salt Lake City, UT
2626                             Salt Lake City, UT
2627                             Salt Lake City, UT
2628                             Salt Lake City, UT
2629                             Salt Lake City, UT
2630                             Salt Lake City, UT
2631                             Salt Lake City, UT
2632                                     Tucson, AZ
2633            Portland-Vancouver-Hillsboro, OR-WA
2634   Washington-Arlington-Alexandria, DC-VA-MD-WV
2635                     Denver-Aurora-Lakewood, CO
2636                     Denver-Aurora-Lakewood, CO
2637                     Denver-Aurora-Lakewood, CO
2638                 Des Moines-West Des Moines, IA
2639          New York-Newark-Jersey City, NY-NJ-PA
2640          New York-Newark-Jersey City, NY-NJ-PA
2641                                  Anchorage, AK
2642                Sacramento-Roseville-Folsom, CA
2643   Washington-Arlington-Alexandria, DC-VA-MD-WV
2644   Washington-Arlington-Alexandria, DC-VA-MD-WV
2645   Washington-Arlington-Alexandria, DC-VA-MD-WV
2646   Washington-Arlington-Alexandria, DC-VA-MD-WV
2647           Houston-The Woodlands-Sugar Land, TX
2648           Houston-The Woodlands-Sugar Land, TX
2649           Houston-The Woodlands-Sugar Land, TX
2650           Houston-The Woodlands-Sugar Land, TX
2651           Houston-The Woodlands-Sugar Land, TX
2652           Houston-The Woodlands-Sugar Land, TX
2653           Houston-The Woodlands-Sugar Land, TX
2654           Houston-The Woodlands-Sugar Land, TX
2655                             Kansas City, MO-KS
2656                   McAllen-Edinburg-Mission, TX
2657                    Omaha-Council Bluffs, NE-IA
2658                                 Pittsburgh, PA
2659             San Diego-Chula Vista-Carlsbad, CA
2660                           Glenwood Springs, CO
2661             San Francisco-Oakland-Berkeley, CA
2662             San Francisco-Oakland-Berkeley, CA
2663             San Francisco-Oakland-Berkeley, CA
2664             San Francisco-Oakland-Berkeley, CA
2665                Sacramento-Roseville-Folsom, CA
2666                           Glenwood Springs, CO
2667             Los Angeles-Long Beach-Anaheim, CA
2668               Austin-Round Rock-Georgetown, TX
2669             Los Angeles-Long Beach-Anaheim, CA
2670                  Baltimore-Columbia-Towson, MD
2671                                   Columbus, OH
2672                     Denver-Aurora-Lakewood, CO
2673            Portland-Vancouver-Hillsboro, OR-WA
2674               Las Vegas-Henderson-Paradise, NV
2675               Las Vegas-Henderson-Paradise, NV
2676             San Diego-Chula Vista-Carlsbad, CA
2677                      Phoenix-Mesa-Chandler, AZ
2678                      Cape Coral-Fort Myers, FL
2679             San Diego-Chula Vista-Carlsbad, CA
2680                         Milwaukee-Waukesha, WI
2681                                    El Paso, TX
2682                                Sioux Falls, SD
2683           Houston-The Woodlands-Sugar Land, TX
2684           Houston-The Woodlands-Sugar Land, TX
2685           Houston-The Woodlands-Sugar Land, TX
2686                             Kansas City, MO-KS
2687                 Boston-Cambridge-Newton, MA-NH
2688                 Boston-Cambridge-Newton, MA-NH
2689                 Boston-Cambridge-Newton, MA-NH
2690                Charleston-North Charleston, SC
2691                                   Columbus, OH
2692   Washington-Arlington-Alexandria, DC-VA-MD-WV
2693                    Detroit-Warren-Dearborn, MI
2694          New York-Newark-Jersey City, NY-NJ-PA
2695          New York-Newark-Jersey City, NY-NJ-PA
2696          New York-Newark-Jersey City, NY-NJ-PA
2697          New York-Newark-Jersey City, NY-NJ-PA
2698                                Spartanburg, SC
2699          New York-Newark-Jersey City, NY-NJ-PA
2700          New York-Newark-Jersey City, NY-NJ-PA
2701          New York-Newark-Jersey City, NY-NJ-PA
2702                              Oklahoma City, OK
2703             Chicago-Naperville-Elgin, IL-IN-WI
2704             Chicago-Naperville-Elgin, IL-IN-WI
2705             Chicago-Naperville-Elgin, IL-IN-WI
2706             Chicago-Naperville-Elgin, IL-IN-WI
2707    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2708    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2709                    Shreveport-Bossier City, LA
2710                               Raleigh-Cary, NC
2711             Fayetteville-Springdale-Rogers, AR
2712                              Evansville, IN-KY
2713   Washington-Arlington-Alexandria, DC-VA-MD-WV
2714             Chicago-Naperville-Elgin, IL-IN-WI
2715             Chicago-Naperville-Elgin, IL-IN-WI
2716                 Pensacola-Ferry Pass-Brent, FL
2717        Minneapolis-St. Paul-Bloomington, MN-WI
2718           Riverside-San Bernardino-Ontario, CA
2719                      Cape Coral-Fort Myers, FL
2720              Charlotte-Concord-Gastonia, NC-SC
2721              Charlotte-Concord-Gastonia, NC-SC
2722                          Manchester-Nashua, NH
2723    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
2725                          Birmingham-Hoover, AL
2726                     Denver-Aurora-Lakewood, CO
2727   Washington-Arlington-Alexandria, DC-VA-MD-WV
2728           Houston-The Woodlands-Sugar Land, TX
2729           Houston-The Woodlands-Sugar Land, TX
2730                                    Wichita, KS
2731       Little Rock-North Little Rock-Conway, AR
2732           Atlanta-Sandy Springs-Alpharetta, GA
2733                                     Bangor, ME
2734 Nashville-Davidson--Murfreesboro--Franklin, TN
2735                Burlington-South Burlington, VT
2736                  Baltimore-Columbia-Towson, MD
2737                      Grand Rapids-Kentwood, MI
2738                                Spartanburg, SC
2739          New York-Newark-Jersey City, NY-NJ-PA
2740          New York-Newark-Jersey City, NY-NJ-PA
2741          New York-Newark-Jersey City, NY-NJ-PA
2742          New York-Newark-Jersey City, NY-NJ-PA
2743          New York-Newark-Jersey City, NY-NJ-PA
2744             Fayetteville-Springdale-Rogers, AR
2745                               Raleigh-Cary, NC
2746                                   Richmond, VA
2747                                  Rochester, NY
2748                                  Rochester, NY
2749                                   Savannah, GA
2750                                   Savannah, GA
2751            Tampa-St. Petersburg-Clearwater, FL
2752                                 Huntsville, AL
2753               Austin-Round Rock-Georgetown, TX
2754                                     Tucson, AZ
2755                             Chattanooga, TN-GA
2756                                 Greenville, NC
2757                                 Boise City, ID
2758                    Kahului-Wailuku-Lahaina, HI
2759                                    Midland, TX
2760             Los Angeles-Long Beach-Anaheim, CA
2761                             Urban Honolulu, HI
2762                                  Lafayette, LA
2763                           Cleveland-Elyria, OH
2764                           Cleveland-Elyria, OH
2765                           Cleveland-Elyria, OH
2766                                  Anchorage, AK
2767              Charlotte-Concord-Gastonia, NC-SC
2768              Charlotte-Concord-Gastonia, NC-SC
2769              Charlotte-Concord-Gastonia, NC-SC
2770              Charlotte-Concord-Gastonia, NC-SC
2771              Charlotte-Concord-Gastonia, NC-SC
2772              Charlotte-Concord-Gastonia, NC-SC
2773              Charlotte-Concord-Gastonia, NC-SC
2774              Charlotte-Concord-Gastonia, NC-SC
2775              Charlotte-Concord-Gastonia, NC-SC
2776              Charlotte-Concord-Gastonia, NC-SC
2777              Charlotte-Concord-Gastonia, NC-SC
2778              Charlotte-Concord-Gastonia, NC-SC
2779              Charlotte-Concord-Gastonia, NC-SC
2780              Charlotte-Concord-Gastonia, NC-SC
2781                           Cincinnati, OH-KY-IN
2782   Washington-Arlington-Alexandria, DC-VA-MD-WV
2783   Washington-Arlington-Alexandria, DC-VA-MD-WV
2784                Dallas-Fort Worth-Arlington, TX
2785                Dallas-Fort Worth-Arlington, TX
2786                Dallas-Fort Worth-Arlington, TX
2787                Dallas-Fort Worth-Arlington, TX
2788                Dallas-Fort Worth-Arlington, TX
2789                Dallas-Fort Worth-Arlington, TX
2790                Dallas-Fort Worth-Arlington, TX
2791                Dallas-Fort Worth-Arlington, TX
2792                Dallas-Fort Worth-Arlington, TX
2793                Dallas-Fort Worth-Arlington, TX
2794                Dallas-Fort Worth-Arlington, TX
2795                Dallas-Fort Worth-Arlington, TX
2796                Dallas-Fort Worth-Arlington, TX
2797                Dallas-Fort Worth-Arlington, TX
2798                Dallas-Fort Worth-Arlington, TX
2799                Dallas-Fort Worth-Arlington, TX
2800                Dallas-Fort Worth-Arlington, TX
2801                Dallas-Fort Worth-Arlington, TX
2802                    Omaha-Council Bluffs, NE-IA
2803                          Lexington-Fayette, KY
2804                                   Syracuse, NY
2805                              Oklahoma City, OK
2806                                   Columbia, MO
2807                                       Reno, NV
2808                                           <NA>
2809                                   Columbus, OH
2810               Indianapolis-Carmel-Anderson, IN
2811                               Jacksonville, FL
2812                     Scranton--Wilkes-Barre, PA
2813                            Gulfport-Biloxi, MS
2814         Crestview-Fort Walton Beach-Destin, FL
2815                                      Tulsa, OK
2816                                     Bangor, ME
2817                 Augusta-Richmond County, GA-SC
2818             Los Angeles-Long Beach-Anaheim, CA
2819              North Port-Sarasota-Bradenton, FL
2820                               Grand Island, NE
2821                              Memphis, TN-MS-AR
2822                      Providence-Warwick, RI-MA
2823                                   Columbia, SC
2824  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
2825                                     Mobile, AL
2826                             Kansas City, MO-KS
2827                          Steamboat Springs, CO
2828                              Memphis, TN-MS-AR
2829        Miami-Fort Lauderdale-Pompano Beach, FL
2830        Miami-Fort Lauderdale-Pompano Beach, FL
2831        Miami-Fort Lauderdale-Pompano Beach, FL
2832                                       Reno, NV
2833        Miami-Fort Lauderdale-Pompano Beach, FL
2834                 Des Moines-West Des Moines, IA
2835        Miami-Fort Lauderdale-Pompano Beach, FL
2836        Miami-Fort Lauderdale-Pompano Beach, FL
2837                                    Madison, WI
2838                                   Richmond, VA
2839                                       Waco, TX
2840             Chicago-Naperville-Elgin, IL-IN-WI
2841             Chicago-Naperville-Elgin, IL-IN-WI
2842           Riverside-San Bernardino-Ontario, CA
2843        Miami-Fort Lauderdale-Pompano Beach, FL
2844                                    El Paso, TX
2845                                   New Bern, NC
2846                    San Juan-Bayamón-Caguas, PR
2847                      Phoenix-Mesa-Chandler, AZ
2848                      Phoenix-Mesa-Chandler, AZ
2849                                 Pittsburgh, PA
2850                  Baltimore-Columbia-Towson, MD
2851                             Grand Junction, CO
2852                                  Rochester, NY
2853     Virginia Beach-Norfolk-Newport News, VA-NC
2854                 Pensacola-Ferry Pass-Brent, FL
2855             Los Angeles-Long Beach-Anaheim, CA
2856                      Brownsville-Harlingen, TX
2857                    Seattle-Tacoma-Bellevue, WA
2858                          Manchester-Nashua, NH
2859                                  Asheville, NC
2860             San Francisco-Oakland-Berkeley, CA
2861           Houston-The Woodlands-Sugar Land, TX
2862            Portland-Vancouver-Hillsboro, OR-WA
2863                    San Juan-Bayamón-Caguas, PR
2864                                   Columbia, SC
2865                                  Asheville, NC
2866                          Lexington-Fayette, KY
2867                               St. Louis, MO-IL
2868                                Columbus, GA-AL
2869            Tampa-St. Petersburg-Clearwater, FL
2870                                     Tucson, AZ
2871                                Albuquerque, NM
2872                Dallas-Fort Worth-Arlington, TX
2873                              Oklahoma City, OK
2874                Charleston-North Charleston, SC
2875                  Baltimore-Columbia-Towson, MD
2876               Indianapolis-Carmel-Anderson, IN
2877                                  Ketchikan, AK
2878                                  Ketchikan, AK
2879                  Orlando-Kissimmee-Sanford, FL
2880                         Milwaukee-Waukesha, WI
2881            Portland-Vancouver-Hillsboro, OR-WA
2882             San Diego-Chula Vista-Carlsbad, CA
2883                  San Antonio-New Braunfels, TX
2884                    Seattle-Tacoma-Bellevue, WA
2885                    Seattle-Tacoma-Bellevue, WA
2886                    Seattle-Tacoma-Bellevue, WA
2887                    Seattle-Tacoma-Bellevue, WA
2888                    Seattle-Tacoma-Bellevue, WA
2889                    Seattle-Tacoma-Bellevue, WA
2890                    Seattle-Tacoma-Bellevue, WA
2891                    Seattle-Tacoma-Bellevue, WA
2892                    Seattle-Tacoma-Bellevue, WA
2893                    Seattle-Tacoma-Bellevue, WA
2894                    Seattle-Tacoma-Bellevue, WA
2895                    Seattle-Tacoma-Bellevue, WA
2896             San Jose-Sunnyvale-Santa Clara, CA
2897          Hartford-East Hartford-Middletown, CT
2898          Hartford-East Hartford-Middletown, CT
2899          Hartford-East Hartford-Middletown, CT
2900                 Boston-Cambridge-Newton, MA-NH
2901                 Boston-Cambridge-Newton, MA-NH
2902                 Boston-Cambridge-Newton, MA-NH
2903                          Aguadilla-Isabela, PR
2904                        Buffalo-Cheektowaga, NY
2905                Charleston-North Charleston, SC
2906                           Cleveland-Elyria, OH
2907             San Diego-Chula Vista-Carlsbad, CA
2908   Washington-Arlington-Alexandria, DC-VA-MD-WV
2909          New York-Newark-Jersey City, NY-NJ-PA
2910          New York-Newark-Jersey City, NY-NJ-PA
2911        Miami-Fort Lauderdale-Pompano Beach, FL
2912        Miami-Fort Lauderdale-Pompano Beach, FL
2913        Miami-Fort Lauderdale-Pompano Beach, FL
2914        Miami-Fort Lauderdale-Pompano Beach, FL
2915        Miami-Fort Lauderdale-Pompano Beach, FL
2916          New York-Newark-Jersey City, NY-NJ-PA
2917          New York-Newark-Jersey City, NY-NJ-PA
2918           Houston-The Woodlands-Sugar Land, TX
2919                               Jacksonville, FL
2920                               Jacksonville, FL
2921                               Jacksonville, FL
2922                               Jacksonville, FL
2923          New York-Newark-Jersey City, NY-NJ-PA
2924          New York-Newark-Jersey City, NY-NJ-PA
2925          New York-Newark-Jersey City, NY-NJ-PA
2926          New York-Newark-Jersey City, NY-NJ-PA
2927          New York-Newark-Jersey City, NY-NJ-PA
2928                  Orlando-Kissimmee-Sanford, FL
2929        Miami-Fort Lauderdale-Pompano Beach, FL
2930        Miami-Fort Lauderdale-Pompano Beach, FL
2931        Miami-Fort Lauderdale-Pompano Beach, FL
2932        Miami-Fort Lauderdale-Pompano Beach, FL
2933        Miami-Fort Lauderdale-Pompano Beach, FL
2934                                      Ponce, PR
2935                                   Richmond, VA
2936                                   Richmond, VA
2937                                   Richmond, VA
2938                                       Reno, NV
2939                      Cape Coral-Fort Myers, FL
2940             San Diego-Chula Vista-Carlsbad, CA
2941                  San Antonio-New Braunfels, TX
2942             San Jose-Sunnyvale-Santa Clara, CA
2943                    San Juan-Bayamón-Caguas, PR
2944                Burlington-South Burlington, VT
2945              North Port-Sarasota-Bradenton, FL
2946                              Oklahoma City, OK
2947           Atlanta-Sandy Springs-Alpharetta, GA
2948           Atlanta-Sandy Springs-Alpharetta, GA
2949           Atlanta-Sandy Springs-Alpharetta, GA
2950           Atlanta-Sandy Springs-Alpharetta, GA
2951           Atlanta-Sandy Springs-Alpharetta, GA
2952           Atlanta-Sandy Springs-Alpharetta, GA
2953                                   Billings, MT
2954                                 Fort Wayne, IN
2955                             Urban Honolulu, HI
2956                                 Huntsville, AL
2957                                           <NA>
2958   Washington-Arlington-Alexandria, DC-VA-MD-WV
2959                    Detroit-Warren-Dearborn, MI
2960            Davenport-Moline-Rock Island, IA-IL
2961        Miami-Fort Lauderdale-Pompano Beach, FL
2962                           Cleveland-Elyria, OH
2963                          Lexington-Fayette, KY
2964                                     Elmira, NY
2965                                Columbus, GA-AL
2966                                 Fort Wayne, IN
2967                                 Wilmington, NC
2968                                     Albany, GA
2969             Chicago-Naperville-Elgin, IL-IN-WI
2970            Portland-Vancouver-Hillsboro, OR-WA
2971                      Cape Coral-Fort Myers, FL
2972   Washington-Arlington-Alexandria, DC-VA-MD-WV
2973                               St. Louis, MO-IL
2974                             Grand Junction, CO
2975                             Salt Lake City, UT
2976                                  Rochester, NY
2977               Indianapolis-Carmel-Anderson, IN
2978                     Denver-Aurora-Lakewood, CO
2979                     Denver-Aurora-Lakewood, CO
2980                     Denver-Aurora-Lakewood, CO
2981                     Denver-Aurora-Lakewood, CO
2982          New York-Newark-Jersey City, NY-NJ-PA
2983               Las Vegas-Henderson-Paradise, NV
2984                  Orlando-Kissimmee-Sanford, FL
2985           Riverside-San Bernardino-Ontario, CA
2986                      Cape Coral-Fort Myers, FL
2987                      Cape Coral-Fort Myers, FL
2988                               St. Louis, MO-IL
2989            Tampa-St. Petersburg-Clearwater, FL
2990                          Trenton-Princeton, NJ
2991                          Trenton-Princeton, NJ
2992                                  Knoxville, TN
2993             Fayetteville-Springdale-Rogers, AR
2994                      Grand Rapids-Kentwood, MI
2995                      Greensboro-High Point, NC
2996   Washington-Arlington-Alexandria, DC-VA-MD-WV
2997             Chicago-Naperville-Elgin, IL-IN-WI
2998                          Aguadilla-Isabela, PR
2999                               St. Louis, MO-IL
3000                                     Mobile, AL
3001                          Birmingham-Hoover, AL
3002                                     Lawton, OK
3003                             Chattanooga, TN-GA
3004                               Cedar Rapids, IA
3005   Washington-Arlington-Alexandria, DC-VA-MD-WV
3006                Dallas-Fort Worth-Arlington, TX
3007                Dallas-Fort Worth-Arlington, TX
3008                Dallas-Fort Worth-Arlington, TX
3009                Dallas-Fort Worth-Arlington, TX
3010                Dallas-Fort Worth-Arlington, TX
3011                Dallas-Fort Worth-Arlington, TX
3012                Dallas-Fort Worth-Arlington, TX
3013                      Grand Rapids-Kentwood, MI
3014        Miami-Fort Lauderdale-Pompano Beach, FL
3015        Miami-Fort Lauderdale-Pompano Beach, FL
3016        Miami-Fort Lauderdale-Pompano Beach, FL
3017             Chicago-Naperville-Elgin, IL-IN-WI
3018             Chicago-Naperville-Elgin, IL-IN-WI
3019             Chicago-Naperville-Elgin, IL-IN-WI
3020             Chicago-Naperville-Elgin, IL-IN-WI
3021              Charlotte-Concord-Gastonia, NC-SC
3022                                   Savannah, GA
3023                                  Knoxville, TN
3024                    Atlantic City-Hammonton, NJ
3025                                      Akron, OH
3026                           Cleveland-Elyria, OH
3027               Las Vegas-Henderson-Paradise, NV
3028             Los Angeles-Long Beach-Anaheim, CA
3029                         Milwaukee-Waukesha, WI
3030             Louisville/Jefferson County, KY-IN
3031                 Augusta-Richmond County, GA-SC
3032                           Cleveland-Elyria, OH
3033              Charlotte-Concord-Gastonia, NC-SC
3034              Charlotte-Concord-Gastonia, NC-SC
3035              Charlotte-Concord-Gastonia, NC-SC
3036              Charlotte-Concord-Gastonia, NC-SC
3037                           Cincinnati, OH-KY-IN
3038   Washington-Arlington-Alexandria, DC-VA-MD-WV
3039   Washington-Arlington-Alexandria, DC-VA-MD-WV
3040   Washington-Arlington-Alexandria, DC-VA-MD-WV
3041   Washington-Arlington-Alexandria, DC-VA-MD-WV
3042   Washington-Arlington-Alexandria, DC-VA-MD-WV
3043   Washington-Arlington-Alexandria, DC-VA-MD-WV
3044                 Des Moines-West Des Moines, IA
3045                          Birmingham-Hoover, AL
3046                                Panama City, FL
3047                                Gainesville, FL
3048                      Grand Rapids-Kentwood, MI
3049                                       Erie, PA
3050               Indianapolis-Carmel-Anderson, IN
3051    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3052                    South Bend-Mishawaka, IN-MI
3053               Austin-Round Rock-Georgetown, TX
3054                                Bakersfield, CA
3055                   Prescott Valley-Prescott, AZ
3056                        Santa Rosa-Petaluma, CA
3057                     Denver-Aurora-Lakewood, CO
3058                     Denver-Aurora-Lakewood, CO
3059                     Denver-Aurora-Lakewood, CO
3060                Dallas-Fort Worth-Arlington, TX
3061                Dallas-Fort Worth-Arlington, TX
3062                    Detroit-Warren-Dearborn, MI
3063                                 Fort Wayne, IN
3064                                     Juneau, AK
3065                                      Hobbs, NM
3066                                Idaho Falls, ID
3067             Los Angeles-Long Beach-Anaheim, CA
3068             Los Angeles-Long Beach-Anaheim, CA
3069             Los Angeles-Long Beach-Anaheim, CA
3070                                 Alexandria, LA
3071                                   Victoria, TX
3072        Minneapolis-St. Paul-Bloomington, MN-WI
3073             Chicago-Naperville-Elgin, IL-IN-WI
3074                    Portland-South Portland, ME
3075                                   Santa Fe, NM
3076                                   Savannah, GA
3077                                    Roanoke, VA
3078                    Seattle-Tacoma-Bellevue, WA
3079             San Francisco-Oakland-Berkeley, CA
3080             San Francisco-Oakland-Berkeley, CA
3081             San Francisco-Oakland-Berkeley, CA
3082             San Francisco-Oakland-Berkeley, CA
3083                             Salt Lake City, UT
3084                         Eugene-Springfield, OR
3085     Virginia Beach-Norfolk-Newport News, VA-NC
3086                                Walla Walla, WA
3087                                  Anchorage, AK
3088             Los Angeles-Long Beach-Anaheim, CA
3089                                    Salinas, CA
3090                    Seattle-Tacoma-Bellevue, WA
3091                    Seattle-Tacoma-Bellevue, WA
3092               Austin-Round Rock-Georgetown, TX
3093                             Urban Honolulu, HI
3094                                   Sikeston, MO
3095                                      Tulsa, OK
3096                    San Juan-Bayamón-Caguas, PR
3097                                   Columbus, OH
3098                     Denver-Aurora-Lakewood, CO
3099                     Denver-Aurora-Lakewood, CO
3100          New York-Newark-Jersey City, NY-NJ-PA
3101                                     Fresno, CA
3102   Washington-Arlington-Alexandria, DC-VA-MD-WV
3103   Washington-Arlington-Alexandria, DC-VA-MD-WV
3104           Houston-The Woodlands-Sugar Land, TX
3105           Houston-The Woodlands-Sugar Land, TX
3106           Houston-The Woodlands-Sugar Land, TX
3107           Houston-The Woodlands-Sugar Land, TX
3108           Houston-The Woodlands-Sugar Land, TX
3109           Houston-The Woodlands-Sugar Land, TX
3110            Portland-Vancouver-Hillsboro, OR-WA
3111                                    Redding, CA
3112             Los Angeles-Long Beach-Anaheim, CA
3113             Los Angeles-Long Beach-Anaheim, CA
3114                                           <NA>
3115                    San Juan-Bayamón-Caguas, PR
3116    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3117                                     Salina, KS
3118              North Port-Sarasota-Bradenton, FL
3119                             Corpus Christi, TX
3120                                    Liberal, KS
3121                                Albuquerque, NM
3122                                Albuquerque, NM
3123               Austin-Round Rock-Georgetown, TX
3124               Austin-Round Rock-Georgetown, TX
3125                          Birmingham-Hoover, AL
3126 Nashville-Davidson--Murfreesboro--Franklin, TN
3127 Nashville-Davidson--Murfreesboro--Franklin, TN
3128 Nashville-Davidson--Murfreesboro--Franklin, TN
3129                      Phoenix-Mesa-Chandler, AZ
3130                        Buffalo-Cheektowaga, NY
3131                  Baltimore-Columbia-Towson, MD
3132                  Baltimore-Columbia-Towson, MD
3133                  Baltimore-Columbia-Towson, MD
3134                  Baltimore-Columbia-Towson, MD
3135                  Baltimore-Columbia-Towson, MD
3136                  Baltimore-Columbia-Towson, MD
3137                  Baltimore-Columbia-Towson, MD
3138                  Baltimore-Columbia-Towson, MD
3139                  Baltimore-Columbia-Towson, MD
3140                  Baltimore-Columbia-Towson, MD
3141                Charleston-North Charleston, SC
3142                                   Columbus, OH
3143                                   Columbus, OH
3144                Dallas-Fort Worth-Arlington, TX
3145                Dallas-Fort Worth-Arlington, TX
3146                Dallas-Fort Worth-Arlington, TX
3147                Dallas-Fort Worth-Arlington, TX
3148                Dallas-Fort Worth-Arlington, TX
3149                Dallas-Fort Worth-Arlington, TX
3150                Dallas-Fort Worth-Arlington, TX
3151                Dallas-Fort Worth-Arlington, TX
3152   Washington-Arlington-Alexandria, DC-VA-MD-WV
3153   Washington-Arlington-Alexandria, DC-VA-MD-WV
3154                     Denver-Aurora-Lakewood, CO
3155                     Denver-Aurora-Lakewood, CO
3156        Miami-Fort Lauderdale-Pompano Beach, FL
3157           Houston-The Woodlands-Sugar Land, TX
3158           Houston-The Woodlands-Sugar Land, TX
3159           Houston-The Woodlands-Sugar Land, TX
3160           Houston-The Woodlands-Sugar Land, TX
3161          New York-Newark-Jersey City, NY-NJ-PA
3162               Las Vegas-Henderson-Paradise, NV
3163               Las Vegas-Henderson-Paradise, NV
3164                                    Lubbock, TX
3165                                    Lubbock, TX
3166             Los Angeles-Long Beach-Anaheim, CA
3167       Little Rock-North Little Rock-Conway, AR
3168                                    Midland, TX
3169                             Kansas City, MO-KS
3170                             Kansas City, MO-KS
3171                  Orlando-Kissimmee-Sanford, FL
3172                  Orlando-Kissimmee-Sanford, FL
3173                  Orlando-Kissimmee-Sanford, FL
3174             Chicago-Naperville-Elgin, IL-IN-WI
3175             Chicago-Naperville-Elgin, IL-IN-WI
3176             Chicago-Naperville-Elgin, IL-IN-WI
3177             Chicago-Naperville-Elgin, IL-IN-WI
3178             Chicago-Naperville-Elgin, IL-IN-WI
3179             Chicago-Naperville-Elgin, IL-IN-WI
3180             Chicago-Naperville-Elgin, IL-IN-WI
3181                              Memphis, TN-MS-AR
3182                         Milwaukee-Waukesha, WI
3183  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3184             San Francisco-Oakland-Berkeley, CA
3185             San Francisco-Oakland-Berkeley, CA
3186                    Omaha-Council Bluffs, NE-IA
3187                    Omaha-Council Bluffs, NE-IA
3188                      Phoenix-Mesa-Chandler, AZ
3189                      Phoenix-Mesa-Chandler, AZ
3190                      Phoenix-Mesa-Chandler, AZ
3191                                 Pittsburgh, PA
3192           Riverside-San Bernardino-Ontario, CA
3193                      Providence-Warwick, RI-MA
3194                      Providence-Warwick, RI-MA
3195                               Raleigh-Cary, NC
3196                                       Reno, NV
3197                                       Reno, NV
3198                                  Rochester, NY
3199                      Cape Coral-Fort Myers, FL
3200             San Diego-Chula Vista-Carlsbad, CA
3201             San Diego-Chula Vista-Carlsbad, CA
3202                  San Antonio-New Braunfels, TX
3203                  San Antonio-New Braunfels, TX
3204                                   Savannah, GA
3205             Louisville/Jefferson County, KY-IN
3206                Sacramento-Roseville-Folsom, CA
3207                               St. Louis, MO-IL
3208                               St. Louis, MO-IL
3209                               St. Louis, MO-IL
3210                               St. Louis, MO-IL
3211            Tampa-St. Petersburg-Clearwater, FL
3212            Tampa-St. Petersburg-Clearwater, FL
3213            Tampa-St. Petersburg-Clearwater, FL
3214                                      Tulsa, OK
3215                                      Tulsa, OK
3216                                   Savannah, GA
3217              Charlotte-Concord-Gastonia, NC-SC
3218                Dallas-Fort Worth-Arlington, TX
3219                Dallas-Fort Worth-Arlington, TX
3220                                       Yuma, AZ
3221                      Phoenix-Mesa-Chandler, AZ
3222                      Phoenix-Mesa-Chandler, AZ
3223                                   Richmond, VA
3224          Hartford-East Hartford-Middletown, CT
3225                 Boston-Cambridge-Newton, MA-NH
3226   Washington-Arlington-Alexandria, DC-VA-MD-WV
3227   Washington-Arlington-Alexandria, DC-VA-MD-WV
3228          New York-Newark-Jersey City, NY-NJ-PA
3229          New York-Newark-Jersey City, NY-NJ-PA
3230   Washington-Arlington-Alexandria, DC-VA-MD-WV
3231   Washington-Arlington-Alexandria, DC-VA-MD-WV
3232                                   Columbus, OH
3233          New York-Newark-Jersey City, NY-NJ-PA
3234          New York-Newark-Jersey City, NY-NJ-PA
3235          New York-Newark-Jersey City, NY-NJ-PA
3236             Chicago-Naperville-Elgin, IL-IN-WI
3237             Chicago-Naperville-Elgin, IL-IN-WI
3238             Chicago-Naperville-Elgin, IL-IN-WI
3239    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3240                                      Akron, OH
3241              North Port-Sarasota-Bradenton, FL
3242                                  Asheville, NC
3243            Portland-Vancouver-Hillsboro, OR-WA
3244                                     Fresno, CA
3245                                   Columbia, SC
3246                              Wausau-Weston, WI
3247           Houston-The Woodlands-Sugar Land, TX
3248                                       Erie, PA
3249   Washington-Arlington-Alexandria, DC-VA-MD-WV
3250                         Milwaukee-Waukesha, WI
3251             Chicago-Naperville-Elgin, IL-IN-WI
3252                              State College, PA
3253                     Scranton--Wilkes-Barre, PA
3254                           Cincinnati, OH-KY-IN
3255        Minneapolis-St. Paul-Bloomington, MN-WI
3256        Miami-Fort Lauderdale-Pompano Beach, FL
3257                 Boston-Cambridge-Newton, MA-NH
3258              Charlotte-Concord-Gastonia, NC-SC
3259                      Grand Rapids-Kentwood, MI
3260    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3261    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3262                                  Rochester, NY
3263                                Spartanburg, SC
3264                       New Orleans-Metairie, LA
3265           Houston-The Woodlands-Sugar Land, TX
3266                                   Santa Fe, NM
3267          Hartford-East Hartford-Middletown, CT
3268              Charlotte-Concord-Gastonia, NC-SC
3269                Dallas-Fort Worth-Arlington, TX
3270                Dallas-Fort Worth-Arlington, TX
3271                                 Montgomery, AL
3272    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3273                                       Hilo, HI
3274             Los Angeles-Long Beach-Anaheim, CA
3275                               Salisbury, MD-DE
3276                                 San Angelo, TX
3277                                  Marquette, MI
3278                      Phoenix-Mesa-Chandler, AZ
3279                       Beaumont-Port Arthur, TX
3280                                  Anchorage, AK
3281                                  Anchorage, AK
3282                                  Anchorage, AK
3283                    Seattle-Tacoma-Bellevue, WA
3284                                           <NA>
3285                                           <NA>
3286          New York-Newark-Jersey City, NY-NJ-PA
3287          New York-Newark-Jersey City, NY-NJ-PA
3288                      Providence-Warwick, RI-MA
3289                  San Antonio-New Braunfels, TX
3290           Atlanta-Sandy Springs-Alpharetta, GA
3291           Atlanta-Sandy Springs-Alpharetta, GA
3292           Atlanta-Sandy Springs-Alpharetta, GA
3293           Atlanta-Sandy Springs-Alpharetta, GA
3294           Atlanta-Sandy Springs-Alpharetta, GA
3295           Atlanta-Sandy Springs-Alpharetta, GA
3296                                Gainesville, FL
3297                                  Anchorage, AK
3298                    Shreveport-Bossier City, LA
3299                                    Bozeman, MT
3300                               St. Louis, MO-IL
3301   Washington-Arlington-Alexandria, DC-VA-MD-WV
3302                Dallas-Fort Worth-Arlington, TX
3303                Dallas-Fort Worth-Arlington, TX
3304                                    Salinas, CA
3305              Charlotte-Concord-Gastonia, NC-SC
3306              Charlotte-Concord-Gastonia, NC-SC
3307   Washington-Arlington-Alexandria, DC-VA-MD-WV
3308   Washington-Arlington-Alexandria, DC-VA-MD-WV
3309                               Salisbury, MD-DE
3310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3311                     Denver-Aurora-Lakewood, CO
3312                                    Lubbock, TX
3313             Chicago-Naperville-Elgin, IL-IN-WI
3314                  San Antonio-New Braunfels, TX
3315             San Francisco-Oakland-Berkeley, CA
3316          New York-Newark-Jersey City, NY-NJ-PA
3317          New York-Newark-Jersey City, NY-NJ-PA
3318           Houston-The Woodlands-Sugar Land, TX
3319                             Urban Honolulu, HI
3320             San Diego-Chula Vista-Carlsbad, CA
3321                                      Minot, ND
3322             San Francisco-Oakland-Berkeley, CA
3323                  Baltimore-Columbia-Towson, MD
3324   Washington-Arlington-Alexandria, DC-VA-MD-WV
3325                         Eugene-Springfield, OR
3326                     Spokane-Spokane Valley, WA
3327             Chicago-Naperville-Elgin, IL-IN-WI
3328                    Omaha-Council Bluffs, NE-IA
3329             Los Angeles-Long Beach-Anaheim, CA
3330             San Diego-Chula Vista-Carlsbad, CA
3331             San Diego-Chula Vista-Carlsbad, CA
3332             Los Angeles-Long Beach-Anaheim, CA
3333                               St. Louis, MO-IL
3334            Tampa-St. Petersburg-Clearwater, FL
3335                Charleston-North Charleston, SC
3336                Dallas-Fort Worth-Arlington, TX
3337                Dallas-Fort Worth-Arlington, TX
3338                Dallas-Fort Worth-Arlington, TX
3339           Houston-The Woodlands-Sugar Land, TX
3340           Houston-The Woodlands-Sugar Land, TX
3341           Houston-The Woodlands-Sugar Land, TX
3342                                 Rapid City, SD
3343              Charlotte-Concord-Gastonia, NC-SC
3344              Charlotte-Concord-Gastonia, NC-SC
3345          New York-Newark-Jersey City, NY-NJ-PA
3346     Virginia Beach-Norfolk-Newport News, VA-NC
3347    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3348        Minneapolis-St. Paul-Bloomington, MN-WI
3349    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3350    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3351                     Denver-Aurora-Lakewood, CO
3352                     Denver-Aurora-Lakewood, CO
3353                    Shreveport-Bossier City, LA
3354    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3355             Chicago-Naperville-Elgin, IL-IN-WI
3356           Atlanta-Sandy Springs-Alpharetta, GA
3357   Washington-Arlington-Alexandria, DC-VA-MD-WV
3358                Dallas-Fort Worth-Arlington, TX
3359                Dallas-Fort Worth-Arlington, TX
3360                                     Peoria, IL
3361                San Luis Obispo-Paso Robles, CA
3362                      College Station-Bryan, TX
3363        Miami-Fort Lauderdale-Pompano Beach, FL
3364    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3365                           Champaign-Urbana, IL
3366           Atlanta-Sandy Springs-Alpharetta, GA
3367           Atlanta-Sandy Springs-Alpharetta, GA
3368                  Baltimore-Columbia-Towson, MD
3369                    Detroit-Warren-Dearborn, MI
3370             Chicago-Naperville-Elgin, IL-IN-WI
3371                                Bakersfield, CA
3372                Dallas-Fort Worth-Arlington, TX
3373        Miami-Fort Lauderdale-Pompano Beach, FL
3374   Washington-Arlington-Alexandria, DC-VA-MD-WV
3375   Washington-Arlington-Alexandria, DC-VA-MD-WV
3376                     Denver-Aurora-Lakewood, CO
3377                                           <NA>
3378             Chicago-Naperville-Elgin, IL-IN-WI
3379                         Kennewick-Richland, WA
3380             San Francisco-Oakland-Berkeley, CA
3381                                       Reno, NV
3382                     Denver-Aurora-Lakewood, CO
3383          New York-Newark-Jersey City, NY-NJ-PA
3384          New York-Newark-Jersey City, NY-NJ-PA
3385           Houston-The Woodlands-Sugar Land, TX
3386               Indianapolis-Carmel-Anderson, IN
3387             San Francisco-Oakland-Berkeley, CA
3388                      Cape Coral-Fort Myers, FL
3389               Las Vegas-Henderson-Paradise, NV
3390                                   Amarillo, TX
3391                Dallas-Fort Worth-Arlington, TX
3392                Dallas-Fort Worth-Arlington, TX
3393           Houston-The Woodlands-Sugar Land, TX
3394                             Kansas City, MO-KS
3395                             Salt Lake City, UT
3396             Louisville/Jefferson County, KY-IN
3397           Houston-The Woodlands-Sugar Land, TX
3398              Charlotte-Concord-Gastonia, NC-SC
3399           Atlanta-Sandy Springs-Alpharetta, GA
3400                Dallas-Fort Worth-Arlington, TX
3401          New York-Newark-Jersey City, NY-NJ-PA
3402           Atlanta-Sandy Springs-Alpharetta, GA
3403                                Bloomington, IL
3404                               Cedar Rapids, IA
3405                    Detroit-Warren-Dearborn, MI
3406          New York-Newark-Jersey City, NY-NJ-PA
3407                              Memphis, TN-MS-AR
3408            Davenport-Moline-Rock Island, IA-IL
3409                             Urban Honolulu, HI
3410                    South Bend-Mishawaka, IN-MI
3411               Austin-Round Rock-Georgetown, TX
3412                                Spartanburg, SC
3413                                    Durango, CO
3414              Charlotte-Concord-Gastonia, NC-SC
3415              Charlotte-Concord-Gastonia, NC-SC
3416              Charlotte-Concord-Gastonia, NC-SC
3417              Charlotte-Concord-Gastonia, NC-SC
3418              Charlotte-Concord-Gastonia, NC-SC
3419              Charlotte-Concord-Gastonia, NC-SC
3420              Charlotte-Concord-Gastonia, NC-SC
3421                Dallas-Fort Worth-Arlington, TX
3422                Dallas-Fort Worth-Arlington, TX
3423                Dallas-Fort Worth-Arlington, TX
3424                Dallas-Fort Worth-Arlington, TX
3425                Dallas-Fort Worth-Arlington, TX
3426                                 Jackson, WY-ID
3427                                Springfield, MO
3428                                    Abilene, TX
3429                    San Juan-Bayamón-Caguas, PR
3430        Miami-Fort Lauderdale-Pompano Beach, FL
3431                                   Bismarck, ND
3432                      Grand Rapids-Kentwood, MI
3433                  Santa Maria-Santa Barbara, CA
3434                                 Bellingham, WA
3435                      Phoenix-Mesa-Chandler, AZ
3436                Burlington-South Burlington, VT
3437                  San Antonio-New Braunfels, TX
3438                              Wichita Falls, TX
3439             Los Angeles-Long Beach-Anaheim, CA
3440                                 Pittsburgh, PA
3441             Los Angeles-Long Beach-Anaheim, CA
3442                Dallas-Fort Worth-Arlington, TX
3443                      Phoenix-Mesa-Chandler, AZ
3444           Riverside-San Bernardino-Ontario, CA
3445            Portland-Vancouver-Hillsboro, OR-WA
3446            Portland-Vancouver-Hillsboro, OR-WA
3447            Portland-Vancouver-Hillsboro, OR-WA
3448            Portland-Vancouver-Hillsboro, OR-WA
3449                San Luis Obispo-Paso Robles, CA
3450             San Diego-Chula Vista-Carlsbad, CA
3451                    Seattle-Tacoma-Bellevue, WA
3452                    Seattle-Tacoma-Bellevue, WA
3453                    Seattle-Tacoma-Bellevue, WA
3454                    Seattle-Tacoma-Bellevue, WA
3455                    Seattle-Tacoma-Bellevue, WA
3456                                           <NA>
3457                                           <NA>
3458             San Jose-Sunnyvale-Santa Clara, CA
3459             Los Angeles-Long Beach-Anaheim, CA
3460          Hartford-East Hartford-Middletown, CT
3461                 Boston-Cambridge-Newton, MA-NH
3462                 Boston-Cambridge-Newton, MA-NH
3463          New York-Newark-Jersey City, NY-NJ-PA
3464             Los Angeles-Long Beach-Anaheim, CA
3465             Los Angeles-Long Beach-Anaheim, CA
3466          New York-Newark-Jersey City, NY-NJ-PA
3467                    San Juan-Bayamón-Caguas, PR
3468           Atlanta-Sandy Springs-Alpharetta, GA
3469           Atlanta-Sandy Springs-Alpharetta, GA
3470                             Grand Forks, ND-MN
3471           Atlanta-Sandy Springs-Alpharetta, GA
3472                                    Wichita, KS
3473                 Boston-Cambridge-Newton, MA-NH
3474                                    Bozeman, MT
3475                                 Boise City, ID
3476                                Tallahassee, FL
3477                                   Columbia, SC
3478                                      Minot, ND
3479                                Lewiston, ID-WA
3480                                    Medford, OR
3481             Los Angeles-Long Beach-Anaheim, CA
3482                             Kansas City, MO-KS
3483                              Memphis, TN-MS-AR
3484                                   Missoula, MT
3485                           Glenwood Springs, CO
3486        Minneapolis-St. Paul-Bloomington, MN-WI
3487            Portland-Vancouver-Hillsboro, OR-WA
3488                                      Tulsa, OK
3489                                     Mobile, AL
3490                              Traverse City, MI
3491                           Dayton-Kettering, OH
3492                Dallas-Fort Worth-Arlington, TX
3493                Dallas-Fort Worth-Arlington, TX
3494                Dallas-Fort Worth-Arlington, TX
3495                Dallas-Fort Worth-Arlington, TX
3496                                Gainesville, FL
3497        Miami-Fort Lauderdale-Pompano Beach, FL
3498                                 Charleston, WV
3499              Charlotte-Concord-Gastonia, NC-SC
3500   Washington-Arlington-Alexandria, DC-VA-MD-WV
3501                                    Madison, WI
3502     Virginia Beach-Norfolk-Newport News, VA-NC
3503    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3504                                   Bismarck, ND
3505                                   Brainerd, MN
3506                     Denver-Aurora-Lakewood, CO
3507                     Denver-Aurora-Lakewood, CO
3508                     Denver-Aurora-Lakewood, CO
3509                     Denver-Aurora-Lakewood, CO
3510                Dallas-Fort Worth-Arlington, TX
3511                Dallas-Fort Worth-Arlington, TX
3512                Dallas-Fort Worth-Arlington, TX
3513   Washington-Arlington-Alexandria, DC-VA-MD-WV
3514                                   Appleton, WI
3515                                  Marquette, MI
3516        Minneapolis-St. Paul-Bloomington, MN-WI
3517        Minneapolis-St. Paul-Bloomington, MN-WI
3518                    Omaha-Council Bluffs, NE-IA
3519             Chicago-Naperville-Elgin, IL-IN-WI
3520             Chicago-Naperville-Elgin, IL-IN-WI
3521            Portland-Vancouver-Hillsboro, OR-WA
3522            Portland-Vancouver-Hillsboro, OR-WA
3523                      Phoenix-Mesa-Chandler, AZ
3524                      Phoenix-Mesa-Chandler, AZ
3525                     Spokane-Spokane Valley, WA
3526   Washington-Arlington-Alexandria, DC-VA-MD-WV
3527             San Diego-Chula Vista-Carlsbad, CA
3528                San Luis Obispo-Paso Robles, CA
3529                             Salt Lake City, UT
3530                             Salt Lake City, UT
3531                             Salt Lake City, UT
3532                             Salt Lake City, UT
3533                             Salt Lake City, UT
3534                    Seattle-Tacoma-Bellevue, WA
3535                                    Pullman, WA
3536                  Santa Maria-Santa Barbara, CA
3537                    Seattle-Tacoma-Bellevue, WA
3538                    Seattle-Tacoma-Bellevue, WA
3539                     Denver-Aurora-Lakewood, CO
3540   Washington-Arlington-Alexandria, DC-VA-MD-WV
3541   Washington-Arlington-Alexandria, DC-VA-MD-WV
3542           Houston-The Woodlands-Sugar Land, TX
3543                                  Knoxville, TN
3544                                           <NA>
3545                                   Syracuse, NY
3546             Chicago-Naperville-Elgin, IL-IN-WI
3547                                    Jackson, MS
3548                                       Reno, NV
3549             San Francisco-Oakland-Berkeley, CA
3550             San Francisco-Oakland-Berkeley, CA
3551             Los Angeles-Long Beach-Anaheim, CA
3552                                 Charleston, WV
3553                             Grand Junction, CO
3554                Dallas-Fort Worth-Arlington, TX
3555                     Denver-Aurora-Lakewood, CO
3556        Miami-Fort Lauderdale-Pompano Beach, FL
3557                      Grand Rapids-Kentwood, MI
3558           Houston-The Woodlands-Sugar Land, TX
3559               Las Vegas-Henderson-Paradise, NV
3560                      Phoenix-Mesa-Chandler, AZ
3561                                 Pittsburgh, PA
3562                Sacramento-Roseville-Folsom, CA
3563                               St. Louis, MO-IL
3564                               St. Louis, MO-IL
3565                Sacramento-Roseville-Folsom, CA
3566   Washington-Arlington-Alexandria, DC-VA-MD-WV
3567           Houston-The Woodlands-Sugar Land, TX
3568           Houston-The Woodlands-Sugar Land, TX
3569                  Santa Maria-Santa Barbara, CA
3570              Charlotte-Concord-Gastonia, NC-SC
3571                      Grand Rapids-Kentwood, MI
3572    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3573             Chicago-Naperville-Elgin, IL-IN-WI
3574                           Dayton-Kettering, OH
3575    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3576                     Denver-Aurora-Lakewood, CO
3577                                 Boise City, ID
3578           Houston-The Woodlands-Sugar Land, TX
3579                         Eugene-Springfield, OR
3580           Atlanta-Sandy Springs-Alpharetta, GA
3581           Atlanta-Sandy Springs-Alpharetta, GA
3582                 Des Moines-West Des Moines, IA
3583                    Detroit-Warren-Dearborn, MI
3584          New York-Newark-Jersey City, NY-NJ-PA
3585          New York-Newark-Jersey City, NY-NJ-PA
3586        Minneapolis-St. Paul-Bloomington, MN-WI
3587        Minneapolis-St. Paul-Bloomington, MN-WI
3588                                  Knoxville, TN
3589                                Springfield, MO
3590                                    Bozeman, MT
3591                San Luis Obispo-Paso Robles, CA
3592              Charlotte-Concord-Gastonia, NC-SC
3593                                   Missoula, MT
3594                                Panama City, FL
3595                Dallas-Fort Worth-Arlington, TX
3596                Dallas-Fort Worth-Arlington, TX
3597                Dallas-Fort Worth-Arlington, TX
3598                 Des Moines-West Des Moines, IA
3599                         Eugene-Springfield, OR
3600                        Buffalo-Cheektowaga, NY
3601                                    Edwards, CO
3602                      Phoenix-Mesa-Chandler, AZ
3603                                Bloomington, IL
3604                                   Key West, FL
3605                                           <NA>
3606                                  Anchorage, AK
3607                                 Boise City, ID
3608                Dallas-Fort Worth-Arlington, TX
3609                             Urban Honolulu, HI
3610             Chicago-Naperville-Elgin, IL-IN-WI
3611            Portland-Vancouver-Hillsboro, OR-WA
3612            Portland-Vancouver-Hillsboro, OR-WA
3613            Portland-Vancouver-Hillsboro, OR-WA
3614             San Diego-Chula Vista-Carlsbad, CA
3615                    Seattle-Tacoma-Bellevue, WA
3616                                     Tucson, AZ
3617                 Boston-Cambridge-Newton, MA-NH
3618          New York-Newark-Jersey City, NY-NJ-PA
3619           Atlanta-Sandy Springs-Alpharetta, GA
3620           Atlanta-Sandy Springs-Alpharetta, GA
3621                    South Bend-Mishawaka, IN-MI
3622        Minneapolis-St. Paul-Bloomington, MN-WI
3623                                   Columbus, MS
3624                             Salt Lake City, UT
3625                Dallas-Fort Worth-Arlington, TX
3626                Dallas-Fort Worth-Arlington, TX
3627                Dallas-Fort Worth-Arlington, TX
3628                Dallas-Fort Worth-Arlington, TX
3629                  San Antonio-New Braunfels, TX
3630       Little Rock-North Little Rock-Conway, AR
3631        Miami-Fort Lauderdale-Pompano Beach, FL
3632  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3633                          Aguadilla-Isabela, PR
3634                                   Columbia, SC
3635              Charlotte-Concord-Gastonia, NC-SC
3636   Washington-Arlington-Alexandria, DC-VA-MD-WV
3637                                Sioux Falls, SD
3638                          Manchester-Nashua, NH
3639    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3640                                Albuquerque, NM
3641                                   Billings, MT
3642                Dallas-Fort Worth-Arlington, TX
3643                Dallas-Fort Worth-Arlington, TX
3644                    Detroit-Warren-Dearborn, MI
3645                    Detroit-Warren-Dearborn, MI
3646                     Spokane-Spokane Valley, WA
3647        Minneapolis-St. Paul-Bloomington, MN-WI
3648             Chicago-Naperville-Elgin, IL-IN-WI
3649                                    Edwards, CO
3650             San Francisco-Oakland-Berkeley, CA
3651             San Jose-Sunnyvale-Santa Clara, CA
3652                             Salt Lake City, UT
3653                             Salt Lake City, UT
3654                             Salt Lake City, UT
3655               Las Vegas-Henderson-Paradise, NV
3656             San Diego-Chula Vista-Carlsbad, CA
3657                    Seattle-Tacoma-Bellevue, WA
3658                     Denver-Aurora-Lakewood, CO
3659                Hilton Head Island-Bluffton, SC
3660             Chicago-Naperville-Elgin, IL-IN-WI
3661                 Pensacola-Ferry Pass-Brent, FL
3662                                     Helena, MT
3663                                   Key West, FL
3664                  San Antonio-New Braunfels, TX
3665                            Gulfport-Biloxi, MS
3666             Los Angeles-Long Beach-Anaheim, CA
3667   Washington-Arlington-Alexandria, DC-VA-MD-WV
3668          New York-Newark-Jersey City, NY-NJ-PA
3669                  Orlando-Kissimmee-Sanford, FL
3670             Chicago-Naperville-Elgin, IL-IN-WI
3671             San Francisco-Oakland-Berkeley, CA
3672             San Francisco-Oakland-Berkeley, CA
3673             San Francisco-Oakland-Berkeley, CA
3674                      Phoenix-Mesa-Chandler, AZ
3675                                    Wichita, KS
3676              Charlotte-Concord-Gastonia, NC-SC
3677                Sacramento-Roseville-Folsom, CA
3678                               St. Louis, MO-IL
3679                Dallas-Fort Worth-Arlington, TX
3680                                   Fargo, ND-MN
3681                                Sioux Falls, SD
3682           Houston-The Woodlands-Sugar Land, TX
3683           Houston-The Woodlands-Sugar Land, TX
3684            Davenport-Moline-Rock Island, IA-IL
3685                               Raleigh-Cary, NC
3686   Washington-Arlington-Alexandria, DC-VA-MD-WV
3687   Washington-Arlington-Alexandria, DC-VA-MD-WV
3688          New York-Newark-Jersey City, NY-NJ-PA
3689                              Memphis, TN-MS-AR
3690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3691             Chicago-Naperville-Elgin, IL-IN-WI
3692              Charlotte-Concord-Gastonia, NC-SC
3693              Charlotte-Concord-Gastonia, NC-SC
3694    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3695    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3696           Houston-The Woodlands-Sugar Land, TX
3697                                     Mobile, AL
3698           Atlanta-Sandy Springs-Alpharetta, GA
3699                    Detroit-Warren-Dearborn, MI
3700                                  Anchorage, AK
3701                                     Bangor, ME
3702              Charlotte-Concord-Gastonia, NC-SC
3703        Miami-Fort Lauderdale-Pompano Beach, FL
3704                                    Lubbock, TX
3705                Dallas-Fort Worth-Arlington, TX
3706                Dallas-Fort Worth-Arlington, TX
3707                Dallas-Fort Worth-Arlington, TX
3708                Dallas-Fort Worth-Arlington, TX
3709                Dallas-Fort Worth-Arlington, TX
3710                Dallas-Fort Worth-Arlington, TX
3711                Dallas-Fort Worth-Arlington, TX
3712                Dallas-Fort Worth-Arlington, TX
3713                Dallas-Fort Worth-Arlington, TX
3714                         Milwaukee-Waukesha, WI
3715          New York-Newark-Jersey City, NY-NJ-PA
3716          New York-Newark-Jersey City, NY-NJ-PA
3717                        Buffalo-Cheektowaga, NY
3718                          Steamboat Springs, CO
3719        Miami-Fort Lauderdale-Pompano Beach, FL
3720     Virginia Beach-Norfolk-Newport News, VA-NC
3721                                   Savannah, GA
3722                    San Juan-Bayamón-Caguas, PR
3723                                Springfield, MO
3724                             Salt Lake City, UT
3725                                  Anchorage, AK
3726                                           <NA>
3727                                           <NA>
3728          New York-Newark-Jersey City, NY-NJ-PA
3729               Las Vegas-Henderson-Paradise, NV
3730                    San Juan-Bayamón-Caguas, PR
3731            Tampa-St. Petersburg-Clearwater, FL
3732           Atlanta-Sandy Springs-Alpharetta, GA
3733                              Memphis, TN-MS-AR
3734          New York-Newark-Jersey City, NY-NJ-PA
3735                Dallas-Fort Worth-Arlington, TX
3736                Dallas-Fort Worth-Arlington, TX
3737        Miami-Fort Lauderdale-Pompano Beach, FL
3738                              Oklahoma City, OK
3739                         Milwaukee-Waukesha, WI
3740                               Cedar Rapids, IA
3741              Charlotte-Concord-Gastonia, NC-SC
3742              Charlotte-Concord-Gastonia, NC-SC
3743   Washington-Arlington-Alexandria, DC-VA-MD-WV
3744   Washington-Arlington-Alexandria, DC-VA-MD-WV
3745                              Memphis, TN-MS-AR
3746                    Albany-Schenectady-Troy, NY
3747                Dallas-Fort Worth-Arlington, TX
3748           Houston-The Woodlands-Sugar Land, TX
3749             Los Angeles-Long Beach-Anaheim, CA
3750                                Lewiston, ID-WA
3751             Chicago-Naperville-Elgin, IL-IN-WI
3752             Chicago-Naperville-Elgin, IL-IN-WI
3753             Chicago-Naperville-Elgin, IL-IN-WI
3754                      Phoenix-Mesa-Chandler, AZ
3755                San Luis Obispo-Paso Robles, CA
3756             San Francisco-Oakland-Berkeley, CA
3757                             Salt Lake City, UT
3758                                           <NA>
3759                                 Huntsville, AL
3760                      Brownsville-Harlingen, TX
3761   Washington-Arlington-Alexandria, DC-VA-MD-WV
3762           Houston-The Woodlands-Sugar Land, TX
3763             Chicago-Naperville-Elgin, IL-IN-WI
3764             San Francisco-Oakland-Berkeley, CA
3765                                Albuquerque, NM
3766 Nashville-Davidson--Murfreesboro--Franklin, TN
3767 Nashville-Davidson--Murfreesboro--Franklin, TN
3768                  Baltimore-Columbia-Towson, MD
3769                  Baltimore-Columbia-Towson, MD
3770                     Denver-Aurora-Lakewood, CO
3771                               Jacksonville, FL
3772                          Steamboat Springs, CO
3773           Houston-The Woodlands-Sugar Land, TX
3774               Las Vegas-Henderson-Paradise, NV
3775               Las Vegas-Henderson-Paradise, NV
3776               Las Vegas-Henderson-Paradise, NV
3777               Las Vegas-Henderson-Paradise, NV
3778               Las Vegas-Henderson-Paradise, NV
3779       Little Rock-North Little Rock-Conway, AR
3780                  Orlando-Kissimmee-Sanford, FL
3781             Chicago-Naperville-Elgin, IL-IN-WI
3782                          Manchester-Nashua, NH
3783                          Manchester-Nashua, NH
3784                         Milwaukee-Waukesha, WI
3785            Portland-Vancouver-Hillsboro, OR-WA
3786            Portland-Vancouver-Hillsboro, OR-WA
3787                      Phoenix-Mesa-Chandler, AZ
3788                      Phoenix-Mesa-Chandler, AZ
3789                  San Antonio-New Braunfels, TX
3790             Louisville/Jefferson County, KY-IN
3791                Sacramento-Roseville-Folsom, CA
3792                Sacramento-Roseville-Folsom, CA
3793                               St. Louis, MO-IL
3794                Dallas-Fort Worth-Arlington, TX
3795                Dallas-Fort Worth-Arlington, TX
3796                    Detroit-Warren-Dearborn, MI
3797                                 Huntsville, AL
3798                      Phoenix-Mesa-Chandler, AZ
3799                      Phoenix-Mesa-Chandler, AZ
3800              Charlotte-Concord-Gastonia, NC-SC
3801          New York-Newark-Jersey City, NY-NJ-PA
3802                               Raleigh-Cary, NC
3803             Chicago-Naperville-Elgin, IL-IN-WI
3804   Washington-Arlington-Alexandria, DC-VA-MD-WV
3805                              Oklahoma City, OK
3806                               Worcester, MA-CT
3807                                   Billings, MT
3808                Hilton Head Island-Bluffton, SC
3809                  Baltimore-Columbia-Towson, MD
3810        Miami-Fort Lauderdale-Pompano Beach, FL
3811                Charleston-North Charleston, SC
3812        Miami-Fort Lauderdale-Pompano Beach, FL
3813          New York-Newark-Jersey City, NY-NJ-PA
3814                               Worcester, MA-CT
3815                               Worcester, MA-CT
3816                    San Juan-Bayamón-Caguas, PR
3817                                           <NA>
3818                                    Madison, WI
3819                                Bloomington, IL
3820                        Buffalo-Cheektowaga, NY
3821                     Denver-Aurora-Lakewood, CO
3822                     Denver-Aurora-Lakewood, CO
3823                     Denver-Aurora-Lakewood, CO
3824                 Des Moines-West Des Moines, IA
3825                                    Durango, CO
3826                                Sioux Falls, SD
3827                      Brownsville-Harlingen, TX
3828    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3829          New York-Newark-Jersey City, NY-NJ-PA
3830          New York-Newark-Jersey City, NY-NJ-PA
3831               Las Vegas-Henderson-Paradise, NV
3832                  Orlando-Kissimmee-Sanford, FL
3833                  Orlando-Kissimmee-Sanford, FL
3834             Chicago-Naperville-Elgin, IL-IN-WI
3835        Miami-Fort Lauderdale-Pompano Beach, FL
3836                    Portland-South Portland, ME
3837                    Portland-South Portland, ME
3838                               Raleigh-Cary, NC
3839                               Raleigh-Cary, NC
3840                      Cape Coral-Fort Myers, FL
3841           Poughkeepsie-Newburgh-Middletown, NY
3842           Poughkeepsie-Newburgh-Middletown, NY
3843                                   Syracuse, NY
3844            Tampa-St. Petersburg-Clearwater, FL
3845                          Trenton-Princeton, NJ
3846                          Trenton-Princeton, NJ
3847                          Trenton-Princeton, NJ
3848                          Trenton-Princeton, NJ
3849                Charleston-North Charleston, SC
3850                    Atlantic City-Hammonton, NJ
3851                    Atlantic City-Hammonton, NJ
3852                                      Akron, OH
3853                                   Columbus, OH
3854        Miami-Fort Lauderdale-Pompano Beach, FL
3855        Miami-Fort Lauderdale-Pompano Beach, FL
3856               Indianapolis-Carmel-Anderson, IN
3857               Las Vegas-Henderson-Paradise, NV
3858             Los Angeles-Long Beach-Anaheim, CA
3859                                 Pittsburgh, PA
3860          New York-Newark-Jersey City, NY-NJ-PA
3861                  Orlando-Kissimmee-Sanford, FL
3862                  Orlando-Kissimmee-Sanford, FL
3863                  Orlando-Kissimmee-Sanford, FL
3864  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3865  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3866  Myrtle Beach-Conway-North Myrtle Beach, SC-NC
3867                                           <NA>
3868             Chicago-Naperville-Elgin, IL-IN-WI
3869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3870                      Cape Coral-Fort Myers, FL
3871                      Cape Coral-Fort Myers, FL
3872             Louisville/Jefferson County, KY-IN
3873                                  Knoxville, TN
3874             Los Angeles-Long Beach-Anaheim, CA
3875             San Francisco-Oakland-Berkeley, CA
3876                     Denver-Aurora-Lakewood, CO
3877              Allentown-Bethlehem-Easton, PA-NJ
3878             Chicago-Naperville-Elgin, IL-IN-WI
3879                    Detroit-Warren-Dearborn, MI
3880                                   Savannah, GA
3881                                       Hilo, HI
3882           Houston-The Woodlands-Sugar Land, TX
3883                               Worcester, MA-CT
3884                           Cleveland-Elyria, OH
3885                                  Asheville, NC
3886        Minneapolis-St. Paul-Bloomington, MN-WI
3887        Minneapolis-St. Paul-Bloomington, MN-WI
3888        Minneapolis-St. Paul-Bloomington, MN-WI
3889        Miami-Fort Lauderdale-Pompano Beach, FL
3890                                Punta Gorda, FL
3891           Houston-The Woodlands-Sugar Land, TX
3892                             Urban Honolulu, HI
3893          New York-Newark-Jersey City, NY-NJ-PA
3894                                  Anchorage, AK
3895                                  Anchorage, AK
3896           Houston-The Woodlands-Sugar Land, TX
3897             Chicago-Naperville-Elgin, IL-IN-WI
3898             San Jose-Sunnyvale-Santa Clara, CA
3899           Atlanta-Sandy Springs-Alpharetta, GA
3900                    Detroit-Warren-Dearborn, MI
3901              Charlotte-Concord-Gastonia, NC-SC
3902              Charlotte-Concord-Gastonia, NC-SC
3903              Charlotte-Concord-Gastonia, NC-SC
3904                Dallas-Fort Worth-Arlington, TX
3905                      Phoenix-Mesa-Chandler, AZ
3906                                  Anchorage, AK
3907                                           <NA>
3908                    Seattle-Tacoma-Bellevue, WA
3909        Miami-Fort Lauderdale-Pompano Beach, FL
3910                                           <NA>
3911           Atlanta-Sandy Springs-Alpharetta, GA
3912           Atlanta-Sandy Springs-Alpharetta, GA
3913           Atlanta-Sandy Springs-Alpharetta, GA
3914               Las Vegas-Henderson-Paradise, NV
3915                                     Casper, WY
3916                                   Aberdeen, SD
3917          New York-Newark-Jersey City, NY-NJ-PA
3918                      Greensboro-High Point, NC
3919                                   Billings, MT
3920                                Baton Rouge, LA
3921                                 Charleston, WV
3922   Washington-Arlington-Alexandria, DC-VA-MD-WV
3923                                Spartanburg, SC
3924    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3925    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3926    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3927                                   Gillette, WY
3928                     Denver-Aurora-Lakewood, CO
3929                     Denver-Aurora-Lakewood, CO
3930                     Denver-Aurora-Lakewood, CO
3931                     Denver-Aurora-Lakewood, CO
3932                Dallas-Fort Worth-Arlington, TX
3933                Dallas-Fort Worth-Arlington, TX
3934                      Phoenix-Mesa-Chandler, AZ
3935                                     Hailey, ID
3936                         Eugene-Springfield, OR
3937                                 Twin Falls, ID
3938                                Albuquerque, NM
3939             San Francisco-Oakland-Berkeley, CA
3940           Atlanta-Sandy Springs-Alpharetta, GA
3941                        Buffalo-Cheektowaga, NY
3942                        Buffalo-Cheektowaga, NY
3943                  Baltimore-Columbia-Towson, MD
3944                                   Columbus, OH
3945                                   Columbus, OH
3946                Dallas-Fort Worth-Arlington, TX
3947                Dallas-Fort Worth-Arlington, TX
3948                      Grand Rapids-Kentwood, MI
3949                      Phoenix-Mesa-Chandler, AZ
3950                                Panama City, FL
3951             Louisville/Jefferson County, KY-IN
3952                               Cedar Rapids, IA
3953                Dallas-Fort Worth-Arlington, TX
3954           Houston-The Woodlands-Sugar Land, TX
3955           Atlanta-Sandy Springs-Alpharetta, GA
3956                           Dayton-Kettering, OH
3957   Washington-Arlington-Alexandria, DC-VA-MD-WV
3958                Burlington-South Burlington, VT
3959    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3960          New York-Newark-Jersey City, NY-NJ-PA
3961                                 Montgomery, AL
3962                                    Durango, CO
3963                                   Florence, SC
3964                                 Huntsville, AL
3965        Miami-Fort Lauderdale-Pompano Beach, FL
3966                Charleston-North Charleston, SC
3967                                     Laredo, TX
3968                           Cincinnati, OH-KY-IN
3969    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
3970                      Greensboro-High Point, NC
3971                Dallas-Fort Worth-Arlington, TX
3972                                Bloomington, IL
3973                      La Crosse-Onalaska, WI-MN
3974                                Bakersfield, CA
3975                    South Bend-Mishawaka, IN-MI
3976                                  Rochester, NY
3977          New York-Newark-Jersey City, NY-NJ-PA
3978           Riverside-San Bernardino-Ontario, CA
3979                       Kingsport-Bristol, TN-VA
3980                Burlington-South Burlington, VT
3981                                  Rochester, MN
3982        Miami-Fort Lauderdale-Pompano Beach, FL
3983                                    Del Rio, TX
3984                                 Charleston, WV
3985                              Evansville, IN-KY
3986                                Great Falls, MT
3987           Riverside-San Bernardino-Ontario, CA
3988                                       Reno, NV
3989          New York-Newark-Jersey City, NY-NJ-PA
3990                    Portland-South Portland, ME
3991                Charleston-North Charleston, SC
3992                                           <NA>
3993           Atlanta-Sandy Springs-Alpharetta, GA
3994                                   Appleton, WI
3995                    Albany-Schenectady-Troy, NY
3996                                    Wichita, KS
3997                                  Rochester, MN
3998        Miami-Fort Lauderdale-Pompano Beach, FL
3999                              Wausau-Weston, WI
4000                             Chattanooga, TN-GA
4001                               Jacksonville, FL
4002          New York-Newark-Jersey City, NY-NJ-PA
4003              Charlotte-Concord-Gastonia, NC-SC
4004                       New Orleans-Metairie, LA
4005           Houston-The Woodlands-Sugar Land, TX
4006                  Orlando-Kissimmee-Sanford, FL
4007             San Francisco-Oakland-Berkeley, CA
4008        Minneapolis-St. Paul-Bloomington, MN-WI
4009           Atlanta-Sandy Springs-Alpharetta, GA
4010           Atlanta-Sandy Springs-Alpharetta, GA
4011                      Phoenix-Mesa-Chandler, AZ
4012                     Spokane-Spokane Valley, WA
4013                    Detroit-Warren-Dearborn, MI
4014                                      Kapaa, HI
4015              Charlotte-Concord-Gastonia, NC-SC
4016   Washington-Arlington-Alexandria, DC-VA-MD-WV
4017              Charlotte-Concord-Gastonia, NC-SC
4018        Miami-Fort Lauderdale-Pompano Beach, FL
4019        Miami-Fort Lauderdale-Pompano Beach, FL
4020             Chicago-Naperville-Elgin, IL-IN-WI
4021            Portland-Vancouver-Hillsboro, OR-WA
4022             Chicago-Naperville-Elgin, IL-IN-WI
4023              Charlotte-Concord-Gastonia, NC-SC
4024    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4025    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4026   Washington-Arlington-Alexandria, DC-VA-MD-WV
4027                                     Monroe, LA
4028   Washington-Arlington-Alexandria, DC-VA-MD-WV
4029                             Salt Lake City, UT
4030                             Urban Honolulu, HI
4031             San Jose-Sunnyvale-Santa Clara, CA
4032                      Cape Coral-Fort Myers, FL
4033                             Urban Honolulu, HI
4034           Houston-The Woodlands-Sugar Land, TX
4035           Houston-The Woodlands-Sugar Land, TX
4036                                   Escanaba, MI
4037   Washington-Arlington-Alexandria, DC-VA-MD-WV
4038                                           <NA>
4039                      Phoenix-Mesa-Chandler, AZ
4040                             Salt Lake City, UT
4041                                  Watertown, SD
4042             Chicago-Naperville-Elgin, IL-IN-WI
4043                               St. Louis, MO-IL
4044                Dallas-Fort Worth-Arlington, TX
4045                    Kahului-Wailuku-Lahaina, HI
4046             Los Angeles-Long Beach-Anaheim, CA
4047                  Orlando-Kissimmee-Sanford, FL
4048                  Baltimore-Columbia-Towson, MD
4049             Chicago-Naperville-Elgin, IL-IN-WI
4050           Houston-The Woodlands-Sugar Land, TX
4051                                       Hilo, HI
4052                             Salt Lake City, UT
4053                                  Anchorage, AK
4054           Atlanta-Sandy Springs-Alpharetta, GA
4055                    Kahului-Wailuku-Lahaina, HI
4056              Charlotte-Concord-Gastonia, NC-SC
4057             Chicago-Naperville-Elgin, IL-IN-WI
4058             Chicago-Naperville-Elgin, IL-IN-WI
4059              Charlotte-Concord-Gastonia, NC-SC
4060              Charlotte-Concord-Gastonia, NC-SC
4061               Austin-Round Rock-Georgetown, TX
4062             Los Angeles-Long Beach-Anaheim, CA
4063                                 Pittsburgh, PA
4064             Chicago-Naperville-Elgin, IL-IN-WI
4065                Dallas-Fort Worth-Arlington, TX
4066                                 Pittsburgh, PA
4067                                  Anchorage, AK
4068            Portland-Vancouver-Hillsboro, OR-WA
4069            Portland-Vancouver-Hillsboro, OR-WA
4070                      Cape Coral-Fort Myers, FL
4071                    Seattle-Tacoma-Bellevue, WA
4072                  Orlando-Kissimmee-Sanford, FL
4073                       New Orleans-Metairie, LA
4074           Atlanta-Sandy Springs-Alpharetta, GA
4075           Atlanta-Sandy Springs-Alpharetta, GA
4076                                       Reno, NV
4077                             Salt Lake City, UT
4078          New York-Newark-Jersey City, NY-NJ-PA
4079              Charlotte-Concord-Gastonia, NC-SC
4080                                   Richmond, VA
4081              Charlotte-Concord-Gastonia, NC-SC
4082              Charlotte-Concord-Gastonia, NC-SC
4083                                     Ithaca, NY
4084    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4085                           Glenwood Springs, CO
4086                Dallas-Fort Worth-Arlington, TX
4087             Los Angeles-Long Beach-Anaheim, CA
4088                                           <NA>
4089               Austin-Round Rock-Georgetown, TX
4090              North Port-Sarasota-Bradenton, FL
4091                                 St. George, UT
4092             Chicago-Naperville-Elgin, IL-IN-WI
4093    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4094    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4095           Houston-The Woodlands-Sugar Land, TX
4096                                  Anchorage, AK
4097                     Denver-Aurora-Lakewood, CO
4098                                  Green Bay, WI
4099          New York-Newark-Jersey City, NY-NJ-PA
4100               Las Vegas-Henderson-Paradise, NV
4101                  Orlando-Kissimmee-Sanford, FL
4102                  Orlando-Kissimmee-Sanford, FL
4103                  Orlando-Kissimmee-Sanford, FL
4104                  Orlando-Kissimmee-Sanford, FL
4105        Miami-Fort Lauderdale-Pompano Beach, FL
4106                                    Madison, WI
4107                                   Syracuse, NY
4108                                           <NA>
4109              Charlotte-Concord-Gastonia, NC-SC
4110                Dallas-Fort Worth-Arlington, TX
4111                                Spartanburg, SC
4112                                           <NA>
4113                                           <NA>
4114                 Boston-Cambridge-Newton, MA-NH
4115             San Jose-Sunnyvale-Santa Clara, CA
4116                           Cincinnati, OH-KY-IN
4117                                 Twin Falls, ID
4118                                      Ozark, AL
4119                                Great Falls, MT
4120                           Butte-Silver Bow, MT
4121                                 Charleston, WV
4122                             Salt Lake City, UT
4123                Dallas-Fort Worth-Arlington, TX
4124              Charlotte-Concord-Gastonia, NC-SC
4125              Charlotte-Concord-Gastonia, NC-SC
4126              Charlotte-Concord-Gastonia, NC-SC
4127    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
4128                                Tallahassee, FL
4129                Dallas-Fort Worth-Arlington, TX
4130                    Detroit-Warren-Dearborn, MI
4131                                  Marquette, MI
4132             Los Angeles-Long Beach-Anaheim, CA
4133                        Santa Rosa-Petaluma, CA
4134                                           <NA>
4135        Minneapolis-St. Paul-Bloomington, MN-WI
4136                              Oklahoma City, OK
4137                                 St. George, UT
4138                      Brownsville-Harlingen, TX
4139          New York-Newark-Jersey City, NY-NJ-PA
4140             Los Angeles-Long Beach-Anaheim, CA
4141             Chicago-Naperville-Elgin, IL-IN-WI
4142                                Albuquerque, NM
4143                    San Juan-Bayamón-Caguas, PR
4144               Austin-Round Rock-Georgetown, TX
4145                Dallas-Fort Worth-Arlington, TX
4146           Houston-The Woodlands-Sugar Land, TX
4147           Houston-The Woodlands-Sugar Land, TX
4148             Los Angeles-Long Beach-Anaheim, CA
4149            Tampa-St. Petersburg-Clearwater, FL
4150                Dallas-Fort Worth-Arlington, TX
4151              Charlotte-Concord-Gastonia, NC-SC
4152                                    Bozeman, MT
4153             Fayetteville-Springdale-Rogers, AR
4154          New York-Newark-Jersey City, NY-NJ-PA
4155        Minneapolis-St. Paul-Bloomington, MN-WI
4156                 Boston-Cambridge-Newton, MA-NH
4157          New York-Newark-Jersey City, NY-NJ-PA
4158          New York-Newark-Jersey City, NY-NJ-PA
4159          New York-Newark-Jersey City, NY-NJ-PA
4160          New York-Newark-Jersey City, NY-NJ-PA
4161     Virginia Beach-Norfolk-Newport News, VA-NC
4162                                 Jackson, WY-ID
4163                Dallas-Fort Worth-Arlington, TX
4164                                    El Paso, TX
4165                                Spartanburg, SC
4166                                 Montgomery, AL
                                                        NAME.x
1             New York-Newark-Jersey City, NY-NJ-PA Metro Area
2           Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3                                  Jacksonville, FL Metro Area
4                Los Angeles-Long Beach-Anaheim, CA Metro Area
5                Los Angeles-Long Beach-Anaheim, CA Metro Area
6                Los Angeles-Long Beach-Anaheim, CA Metro Area
7             New York-Newark-Jersey City, NY-NJ-PA Metro Area
8             New York-Newark-Jersey City, NY-NJ-PA Metro Area
9                     Orlando-Kissimmee-Sanford, FL Metro Area
10          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
11                         New Orleans-Metairie, LA Metro Area
12                        Cape Coral-Fort Myers, FL Metro Area
13                      Seattle-Tacoma-Bellevue, WA Metro Area
14                      Seattle-Tacoma-Bellevue, WA Metro Area
15                      Seattle-Tacoma-Bellevue, WA Metro Area
16                               Salt Lake City, UT Metro Area
17              Tampa-St. Petersburg-Clearwater, FL Metro Area
18             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
19             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
20             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
21             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
22             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
23             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
24             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
25             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
26             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
27             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
28             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
29             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
30             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
31             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
32             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
33             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
34                      Detroit-Warren-Dearborn, MI Metro Area
35                      Detroit-Warren-Dearborn, MI Metro Area
36          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
37          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
38          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
39          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
40                               Salt Lake City, UT Metro Area
41                               Salt Lake City, UT Metro Area
42                               Salt Lake City, UT Metro Area
43             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
44             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
45          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
46          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
47             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
48             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
49             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
50             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
51             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
52             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
53             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
54            New York-Newark-Jersey City, NY-NJ-PA Metro Area
55               Los Angeles-Long Beach-Anaheim, CA Metro Area
56            New York-Newark-Jersey City, NY-NJ-PA Metro Area
57          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
58                               Salt Lake City, UT Metro Area
59                               Salt Lake City, UT Metro Area
60          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
61          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
62          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
63          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
64                               Salt Lake City, UT Metro Area
65                               Salt Lake City, UT Metro Area
66                               Salt Lake City, UT Metro Area
67                               Salt Lake City, UT Metro Area
68                               Salt Lake City, UT Metro Area
69                               Salt Lake City, UT Metro Area
70                               Salt Lake City, UT Metro Area
71                               Salt Lake City, UT Metro Area
72                               Salt Lake City, UT Metro Area
73             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
74             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
75             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
76                      Detroit-Warren-Dearborn, MI Metro Area
77             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
78             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
79             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
80             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
81             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
82             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
83             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
84             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
85             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
86             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
87             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
88               Los Angeles-Long Beach-Anaheim, CA Metro Area
89               Los Angeles-Long Beach-Anaheim, CA Metro Area
90               Los Angeles-Long Beach-Anaheim, CA Metro Area
91               Los Angeles-Long Beach-Anaheim, CA Metro Area
92               Los Angeles-Long Beach-Anaheim, CA Metro Area
93          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
94          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
95                      Seattle-Tacoma-Bellevue, WA Metro Area
96                               Salt Lake City, UT Metro Area
97             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
98             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
99             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
100            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
101            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
102            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
103            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
104                     Detroit-Warren-Dearborn, MI Metro Area
105              Los Angeles-Long Beach-Anaheim, CA Metro Area
106              Los Angeles-Long Beach-Anaheim, CA Metro Area
107         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
108                              Salt Lake City, UT Metro Area
109            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
110            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
111            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
112            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
113            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
114            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
115            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
116                     Detroit-Warren-Dearborn, MI Metro Area
117                     Detroit-Warren-Dearborn, MI Metro Area
118                Las Vegas-Henderson-Paradise, NV Metro Area
119              Los Angeles-Long Beach-Anaheim, CA Metro Area
120              Los Angeles-Long Beach-Anaheim, CA Metro Area
121                   Orlando-Kissimmee-Sanford, FL Metro Area
122                   Orlando-Kissimmee-Sanford, FL Metro Area
123         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
124         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
125                       Cape Coral-Fort Myers, FL Metro Area
126                     Seattle-Tacoma-Bellevue, WA Metro Area
127                     Seattle-Tacoma-Bellevue, WA Metro Area
128                     Seattle-Tacoma-Bellevue, WA Metro Area
129                     Seattle-Tacoma-Bellevue, WA Metro Area
130                              Salt Lake City, UT Metro Area
131                              Salt Lake City, UT Metro Area
132                              Salt Lake City, UT Metro Area
133                              Salt Lake City, UT Metro Area
134             Tampa-St. Petersburg-Clearwater, FL Metro Area
135              San Diego-Chula Vista-Carlsbad, CA Metro Area
136              Los Angeles-Long Beach-Anaheim, CA Metro Area
137                     Seattle-Tacoma-Bellevue, WA Metro Area
138            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
139                     Detroit-Warren-Dearborn, MI Metro Area
140                     Detroit-Warren-Dearborn, MI Metro Area
141                     Detroit-Warren-Dearborn, MI Metro Area
142                     Detroit-Warren-Dearborn, MI Metro Area
143           New York-Newark-Jersey City, NY-NJ-PA Metro Area
144           New York-Newark-Jersey City, NY-NJ-PA Metro Area
145         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
146         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
147                                Raleigh-Cary, NC Metro Area
148                              Salt Lake City, UT Metro Area
149                              Salt Lake City, UT Metro Area
150            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
151            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
152            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
153  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
154                            Cincinnati, OH-KY-IN Metro Area
155                            Cincinnati, OH-KY-IN Metro Area
156                 Dallas-Fort Worth-Arlington, TX Metro Area
157                     Detroit-Warren-Dearborn, MI Metro Area
158                     Detroit-Warren-Dearborn, MI Metro Area
159                     Detroit-Warren-Dearborn, MI Metro Area
160                     Detroit-Warren-Dearborn, MI Metro Area
161                              Urban Honolulu, HI Metro Area
162           New York-Newark-Jersey City, NY-NJ-PA Metro Area
163           New York-Newark-Jersey City, NY-NJ-PA Metro Area
164                                Raleigh-Cary, NC Metro Area
165                   San Antonio-New Braunfels, TX Metro Area
166                     Seattle-Tacoma-Bellevue, WA Metro Area
167                              Salt Lake City, UT Metro Area
168                              Salt Lake City, UT Metro Area
169                              Salt Lake City, UT Metro Area
170                              Salt Lake City, UT Metro Area
171            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
172                     Detroit-Warren-Dearborn, MI Metro Area
173                     Detroit-Warren-Dearborn, MI Metro Area
174                     Detroit-Warren-Dearborn, MI Metro Area
175                     Detroit-Warren-Dearborn, MI Metro Area
176                     Detroit-Warren-Dearborn, MI Metro Area
177         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
178         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
179         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
180         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
181         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
182         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
183              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
184               North Port-Sarasota-Bradenton, FL Metro Area
185             Tampa-St. Petersburg-Clearwater, FL Metro Area
186              Los Angeles-Long Beach-Anaheim, CA Metro Area
187            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
188            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
189         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
190            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
191            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
192            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
193            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
194                     Detroit-Warren-Dearborn, MI Metro Area
195                     Detroit-Warren-Dearborn, MI Metro Area
196           New York-Newark-Jersey City, NY-NJ-PA Metro Area
197           New York-Newark-Jersey City, NY-NJ-PA Metro Area
198         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
199            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
200            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
201            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
202            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
203            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
204         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
205                              Salt Lake City, UT Metro Area
206            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
207            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
208            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
209         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
210            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
211            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
212            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
213            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
214                Austin-Round Rock-Georgetown, TX Metro Area
215  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
216                  Boston-Cambridge-Newton, MA-NH Metro Area
217    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
218                      Denver-Aurora-Lakewood, CO Metro Area
219                 Dallas-Fort Worth-Arlington, TX Metro Area
220                     Detroit-Warren-Dearborn, MI Metro Area
221                     Detroit-Warren-Dearborn, MI Metro Area
222                     Detroit-Warren-Dearborn, MI Metro Area
223           New York-Newark-Jersey City, NY-NJ-PA Metro Area
224                Las Vegas-Henderson-Paradise, NV Metro Area
225              Los Angeles-Long Beach-Anaheim, CA Metro Area
226           New York-Newark-Jersey City, NY-NJ-PA Metro Area
227           New York-Newark-Jersey City, NY-NJ-PA Metro Area
228                   Orlando-Kissimmee-Sanford, FL Metro Area
229                        New Orleans-Metairie, LA Metro Area
230              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
231             Portland-Vancouver-Hillsboro, OR-WA Metro Area
232     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
233                                Raleigh-Cary, NC Metro Area
234                       Cape Coral-Fort Myers, FL Metro Area
235                     Seattle-Tacoma-Bellevue, WA Metro Area
236             Tampa-St. Petersburg-Clearwater, FL Metro Area
237                     Detroit-Warren-Dearborn, MI Metro Area
238                     Detroit-Warren-Dearborn, MI Metro Area
239         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
240         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
241            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
242            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
243                              Salt Lake City, UT Metro Area
244                              Salt Lake City, UT Metro Area
245            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
246         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
247                              Salt Lake City, UT Metro Area
248            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
249                  Boston-Cambridge-Newton, MA-NH Metro Area
250                     Detroit-Warren-Dearborn, MI Metro Area
251           New York-Newark-Jersey City, NY-NJ-PA Metro Area
252           New York-Newark-Jersey City, NY-NJ-PA Metro Area
253         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
254         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
255                     Seattle-Tacoma-Bellevue, WA Metro Area
256            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
257            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
258         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
259                     Seattle-Tacoma-Bellevue, WA Metro Area
260                              Salt Lake City, UT Metro Area
261                              Salt Lake City, UT Metro Area
262                              Salt Lake City, UT Metro Area
263                              Salt Lake City, UT Metro Area
264            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
265            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
266                     Detroit-Warren-Dearborn, MI Metro Area
267         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
268            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
269           New York-Newark-Jersey City, NY-NJ-PA Metro Area
270         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
271            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
272            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
273            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
274                     Detroit-Warren-Dearborn, MI Metro Area
275         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
276                Las Vegas-Henderson-Paradise, NV Metro Area
277              Los Angeles-Long Beach-Anaheim, CA Metro Area
278              Los Angeles-Long Beach-Anaheim, CA Metro Area
279                   Orlando-Kissimmee-Sanford, FL Metro Area
280                     Seattle-Tacoma-Bellevue, WA Metro Area
281            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
282            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
283           New York-Newark-Jersey City, NY-NJ-PA Metro Area
284                     Detroit-Warren-Dearborn, MI Metro Area
285                     Seattle-Tacoma-Bellevue, WA Metro Area
286                              Salt Lake City, UT Metro Area
287                              Salt Lake City, UT Metro Area
288            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
289            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
290                     Detroit-Warren-Dearborn, MI Metro Area
291                     Detroit-Warren-Dearborn, MI Metro Area
292                Las Vegas-Henderson-Paradise, NV Metro Area
293              Los Angeles-Long Beach-Anaheim, CA Metro Area
294         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
295                       Phoenix-Mesa-Chandler, AZ Metro Area
296              San Diego-Chula Vista-Carlsbad, CA Metro Area
297                              Salt Lake City, UT Metro Area
298              Los Angeles-Long Beach-Anaheim, CA Metro Area
299                     Seattle-Tacoma-Bellevue, WA Metro Area
300                              Salt Lake City, UT Metro Area
301                              Salt Lake City, UT Metro Area
302         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
303                              Salt Lake City, UT Metro Area
304                                  Boise City, ID Metro Area
305                 Dallas-Fort Worth-Arlington, TX Metro Area
306                     Detroit-Warren-Dearborn, MI Metro Area
307                     Detroit-Warren-Dearborn, MI Metro Area
308                     Detroit-Warren-Dearborn, MI Metro Area
309           New York-Newark-Jersey City, NY-NJ-PA Metro Area
310                      Spokane-Spokane Valley, WA Metro Area
311           New York-Newark-Jersey City, NY-NJ-PA Metro Area
312                Las Vegas-Henderson-Paradise, NV Metro Area
313              Los Angeles-Long Beach-Anaheim, CA Metro Area
314         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
315            Riverside-San Bernardino-Ontario, CA Metro Area
316              San Diego-Chula Vista-Carlsbad, CA Metro Area
317              San Francisco-Oakland-Berkeley, CA Metro Area
318              San Jose-Sunnyvale-Santa Clara, CA Metro Area
319              Los Angeles-Long Beach-Anaheim, CA Metro Area
320         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
321                              Salt Lake City, UT Metro Area
322            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
323         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
324                     Seattle-Tacoma-Bellevue, WA Metro Area
325                              Salt Lake City, UT Metro Area
326            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
327         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
328            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
329            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
330            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
331                     Detroit-Warren-Dearborn, MI Metro Area
332                     Detroit-Warren-Dearborn, MI Metro Area
333           New York-Newark-Jersey City, NY-NJ-PA Metro Area
334           New York-Newark-Jersey City, NY-NJ-PA Metro Area
335         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
336                Las Vegas-Henderson-Paradise, NV Metro Area
337            Riverside-San Bernardino-Ontario, CA Metro Area
338                Las Vegas-Henderson-Paradise, NV Metro Area
339                   Orlando-Kissimmee-Sanford, FL Metro Area
340                   Orlando-Kissimmee-Sanford, FL Metro Area
341                      Denver-Aurora-Lakewood, CO Metro Area
342                Las Vegas-Henderson-Paradise, NV Metro Area
343     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
344                                      Fresno, CA Metro Area
345              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
346             Tampa-St. Petersburg-Clearwater, FL Metro Area
347             Tampa-St. Petersburg-Clearwater, FL Metro Area
348                           Trenton-Princeton, NJ Metro Area
349                      Denver-Aurora-Lakewood, CO Metro Area
350                Las Vegas-Henderson-Paradise, NV Metro Area
351     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
352                Las Vegas-Henderson-Paradise, NV Metro Area
353                Las Vegas-Henderson-Paradise, NV Metro Area
354                   Orlando-Kissimmee-Sanford, FL Metro Area
355             Tampa-St. Petersburg-Clearwater, FL Metro Area
356              San Diego-Chula Vista-Carlsbad, CA Metro Area
357                     San Juan-Bayamón-Caguas, PR Metro Area
358                Las Vegas-Henderson-Paradise, NV Metro Area
359                Las Vegas-Henderson-Paradise, NV Metro Area
360           New York-Newark-Jersey City, NY-NJ-PA Metro Area
361    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
362           New York-Newark-Jersey City, NY-NJ-PA Metro Area
363              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
364    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
365              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
366              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
367           New York-Newark-Jersey City, NY-NJ-PA Metro Area
368                            Cleveland-Elyria, OH Metro Area
369               Charlotte-Concord-Gastonia, NC-SC Metro Area
370    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
371                       Greensboro-High Point, NC Metro Area
372                Indianapolis-Carmel-Anderson, IN Metro Area
373                                   Rochester, NY Metro Area
374    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
375           New York-Newark-Jersey City, NY-NJ-PA Metro Area
376              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
377                 Hilton Head Island-Bluffton, SC Metro Area
378                Indianapolis-Carmel-Anderson, IN Metro Area
379    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
380              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
381              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
382              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
383           New York-Newark-Jersey City, NY-NJ-PA Metro Area
384           New York-Newark-Jersey City, NY-NJ-PA Metro Area
385    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
386    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
387           New York-Newark-Jersey City, NY-NJ-PA Metro Area
388           New York-Newark-Jersey City, NY-NJ-PA Metro Area
389           New York-Newark-Jersey City, NY-NJ-PA Metro Area
390              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
391              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
392           New York-Newark-Jersey City, NY-NJ-PA Metro Area
393           New York-Newark-Jersey City, NY-NJ-PA Metro Area
394    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
395              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
396              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
397              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
398              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
399               Charlotte-Concord-Gastonia, NC-SC Metro Area
400         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
401              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
402  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
403                            Cincinnati, OH-KY-IN Metro Area
404                               Oklahoma City, OK Metro Area
405              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
406                Austin-Round Rock-Georgetown, TX Metro Area
407              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
408              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
409              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
410              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
411                 Dallas-Fort Worth-Arlington, TX Metro Area
412              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
413                 Dallas-Fort Worth-Arlington, TX Metro Area
414                 Dallas-Fort Worth-Arlington, TX Metro Area
415                 Dallas-Fort Worth-Arlington, TX Metro Area
416              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
417    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
418    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
419         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
420         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
421         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
422              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
423                 Dallas-Fort Worth-Arlington, TX Metro Area
424                     Detroit-Warren-Dearborn, MI Metro Area
425                               Memphis, TN-MS-AR Metro Area
426                                Lake Charles, LA Metro Area
427                                    Montrose, CO Micro Area
428                 Dallas-Fort Worth-Arlington, TX Metro Area
429              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
430                 Dallas-Fort Worth-Arlington, TX Metro Area
431              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
432              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
433                 Dallas-Fort Worth-Arlington, TX Metro Area
434              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
435                 Dallas-Fort Worth-Arlington, TX Metro Area
436                 Dallas-Fort Worth-Arlington, TX Metro Area
437                 Dallas-Fort Worth-Arlington, TX Metro Area
438                 Dallas-Fort Worth-Arlington, TX Metro Area
439                 Dallas-Fort Worth-Arlington, TX Metro Area
440               Charlotte-Concord-Gastonia, NC-SC Metro Area
441         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
442              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
443              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
444              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
445                 Dallas-Fort Worth-Arlington, TX Metro Area
446                 Dallas-Fort Worth-Arlington, TX Metro Area
447                 Dallas-Fort Worth-Arlington, TX Metro Area
448                 Dallas-Fort Worth-Arlington, TX Metro Area
449                 Dallas-Fort Worth-Arlington, TX Metro Area
450               Charlotte-Concord-Gastonia, NC-SC Metro Area
451              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
452                 Dallas-Fort Worth-Arlington, TX Metro Area
453              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
454                                  Pittsburgh, PA Metro Area
455                 Dallas-Fort Worth-Arlington, TX Metro Area
456              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
457                 Dallas-Fort Worth-Arlington, TX Metro Area
458              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
459              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
460                 Dallas-Fort Worth-Arlington, TX Metro Area
461              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
462                Austin-Round Rock-Georgetown, TX Metro Area
463                            Cincinnati, OH-KY-IN Metro Area
464                                Raleigh-Cary, NC Metro Area
465              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
466              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
467                 Dallas-Fort Worth-Arlington, TX Metro Area
468              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
469         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
470         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
471         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
472                 Dallas-Fort Worth-Arlington, TX Metro Area
473                 Dallas-Fort Worth-Arlington, TX Metro Area
474              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
475                 Dallas-Fort Worth-Arlington, TX Metro Area
476                 Dallas-Fort Worth-Arlington, TX Metro Area
477         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
478              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
479                 Dallas-Fort Worth-Arlington, TX Metro Area
480                 Dallas-Fort Worth-Arlington, TX Metro Area
481                 Dallas-Fort Worth-Arlington, TX Metro Area
482         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
483   Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
484                       Cape Coral-Fort Myers, FL Metro Area
485           New York-Newark-Jersey City, NY-NJ-PA Metro Area
486         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
487            Houston-The Woodlands-Sugar Land, TX Metro Area
488                Las Vegas-Henderson-Paradise, NV Metro Area
489                        New Orleans-Metairie, LA Metro Area
490              Los Angeles-Long Beach-Anaheim, CA Metro Area
491             Tampa-St. Petersburg-Clearwater, FL Metro Area
492         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
493                Las Vegas-Henderson-Paradise, NV Metro Area
494              Los Angeles-Long Beach-Anaheim, CA Metro Area
495           New York-Newark-Jersey City, NY-NJ-PA Metro Area
496                   Baltimore-Columbia-Towson, MD Metro Area
497         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
498                Las Vegas-Henderson-Paradise, NV Metro Area
499                     San Juan-Bayamón-Caguas, PR Metro Area
500             Tampa-St. Petersburg-Clearwater, FL Metro Area
501                Las Vegas-Henderson-Paradise, NV Metro Area
502         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
503         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
504                Las Vegas-Henderson-Paradise, NV Metro Area
505                        New Orleans-Metairie, LA Metro Area
506             Tampa-St. Petersburg-Clearwater, FL Metro Area
507                  Boston-Cambridge-Newton, MA-NH Metro Area
508                Las Vegas-Henderson-Paradise, NV Metro Area
509                Las Vegas-Henderson-Paradise, NV Metro Area
510                       Cape Coral-Fort Myers, FL Metro Area
511             Tampa-St. Petersburg-Clearwater, FL Metro Area
512                   Orlando-Kissimmee-Sanford, FL Metro Area
513                   Orlando-Kissimmee-Sanford, FL Metro Area
514                   Orlando-Kissimmee-Sanford, FL Metro Area
515            Houston-The Woodlands-Sugar Land, TX Metro Area
516         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
517                Las Vegas-Henderson-Paradise, NV Metro Area
518                        New Orleans-Metairie, LA Metro Area
519              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
520             Tampa-St. Petersburg-Clearwater, FL Metro Area
521                Las Vegas-Henderson-Paradise, NV Metro Area
522  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
523         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
524            Houston-The Woodlands-Sugar Land, TX Metro Area
525                   Orlando-Kissimmee-Sanford, FL Metro Area
526                Austin-Round Rock-Georgetown, TX Metro Area
527  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
528                  Boston-Cambridge-Newton, MA-NH Metro Area
529                   Baltimore-Columbia-Towson, MD Metro Area
530                      Denver-Aurora-Lakewood, CO Metro Area
531           New York-Newark-Jersey City, NY-NJ-PA Metro Area
532                Indianapolis-Carmel-Anderson, IN Metro Area
533                Las Vegas-Henderson-Paradise, NV Metro Area
534           New York-Newark-Jersey City, NY-NJ-PA Metro Area
535           New York-Newark-Jersey City, NY-NJ-PA Metro Area
536                Las Vegas-Henderson-Paradise, NV Metro Area
537         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
538                Las Vegas-Henderson-Paradise, NV Metro Area
539             Tampa-St. Petersburg-Clearwater, FL Metro Area
540  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
541                  Boston-Cambridge-Newton, MA-NH Metro Area
542                     Detroit-Warren-Dearborn, MI Metro Area
543                   Orlando-Kissimmee-Sanford, FL Metro Area
544                        New Orleans-Metairie, LA Metro Area
545                                  Pittsburgh, PA Metro Area
546                     Seattle-Tacoma-Bellevue, WA Metro Area
547         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
548                              Kansas City, MO-KS Metro Area
549                        New Orleans-Metairie, LA Metro Area
550     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
551              Louisville/Jefferson County, KY-IN Metro Area
552                   Orlando-Kissimmee-Sanford, FL Metro Area
553                       Cape Coral-Fort Myers, FL Metro Area
554                Las Vegas-Henderson-Paradise, NV Metro Area
555              Los Angeles-Long Beach-Anaheim, CA Metro Area
556  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
557                           Aguadilla-Isabela, PR Metro Area
558               Charlotte-Concord-Gastonia, NC-SC Metro Area
559                Las Vegas-Henderson-Paradise, NV Metro Area
560                                  Pittsburgh, PA Metro Area
561                     San Juan-Bayamón-Caguas, PR Metro Area
562                Las Vegas-Henderson-Paradise, NV Metro Area
563         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
564                Las Vegas-Henderson-Paradise, NV Metro Area
565                Las Vegas-Henderson-Paradise, NV Metro Area
566                Las Vegas-Henderson-Paradise, NV Metro Area
567                   Orlando-Kissimmee-Sanford, FL Metro Area
568                        New Orleans-Metairie, LA Metro Area
569                       Cape Coral-Fort Myers, FL Metro Area
570                Las Vegas-Henderson-Paradise, NV Metro Area
571              Los Angeles-Long Beach-Anaheim, CA Metro Area
572                   Orlando-Kissimmee-Sanford, FL Metro Area
573              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
574                  Boston-Cambridge-Newton, MA-NH Metro Area
575             Tampa-St. Petersburg-Clearwater, FL Metro Area
576         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
577                  Boston-Cambridge-Newton, MA-NH Metro Area
578                   Baltimore-Columbia-Towson, MD Metro Area
579                                    Columbus, OH Metro Area
580                Las Vegas-Henderson-Paradise, NV Metro Area
581               Charlotte-Concord-Gastonia, NC-SC Metro Area
582               Charlotte-Concord-Gastonia, NC-SC Metro Area
583    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
584     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
585    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
586               Charlotte-Concord-Gastonia, NC-SC Metro Area
587               Charlotte-Concord-Gastonia, NC-SC Metro Area
588               Charlotte-Concord-Gastonia, NC-SC Metro Area
589               Charlotte-Concord-Gastonia, NC-SC Metro Area
590               Charlotte-Concord-Gastonia, NC-SC Metro Area
591               Charlotte-Concord-Gastonia, NC-SC Metro Area
592    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
593    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
594    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
595               Charlotte-Concord-Gastonia, NC-SC Metro Area
596               Charlotte-Concord-Gastonia, NC-SC Metro Area
597               Charlotte-Concord-Gastonia, NC-SC Metro Area
598               Charlotte-Concord-Gastonia, NC-SC Metro Area
599     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
600               Charlotte-Concord-Gastonia, NC-SC Metro Area
601               Allentown-Bethlehem-Easton, PA-NJ Metro Area
602  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
603           New York-Newark-Jersey City, NY-NJ-PA Metro Area
604    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
605                                      Peoria, IL Metro Area
606               Charlotte-Concord-Gastonia, NC-SC Metro Area
607               Charlotte-Concord-Gastonia, NC-SC Metro Area
608     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
609               Charlotte-Concord-Gastonia, NC-SC Metro Area
610               Charlotte-Concord-Gastonia, NC-SC Metro Area
611               Charlotte-Concord-Gastonia, NC-SC Metro Area
612               Charlotte-Concord-Gastonia, NC-SC Metro Area
613               Charlotte-Concord-Gastonia, NC-SC Metro Area
614    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
615               Charlotte-Concord-Gastonia, NC-SC Metro Area
616                                     Jackson, MS Metro Area
617                                Jacksonville, FL Metro Area
618                        New Orleans-Metairie, LA Metro Area
619     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
620                                  Montgomery, AL Metro Area
621               Charlotte-Concord-Gastonia, NC-SC Metro Area
622    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
623    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
624               Charlotte-Concord-Gastonia, NC-SC Metro Area
625     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
626     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
627               Charlotte-Concord-Gastonia, NC-SC Metro Area
628               Charlotte-Concord-Gastonia, NC-SC Metro Area
629               Charlotte-Concord-Gastonia, NC-SC Metro Area
630               Charlotte-Concord-Gastonia, NC-SC Metro Area
631               Charlotte-Concord-Gastonia, NC-SC Metro Area
632               Charlotte-Concord-Gastonia, NC-SC Metro Area
633               Charlotte-Concord-Gastonia, NC-SC Metro Area
634               Charlotte-Concord-Gastonia, NC-SC Metro Area
635               Charlotte-Concord-Gastonia, NC-SC Metro Area
636    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
637    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
638               Charlotte-Concord-Gastonia, NC-SC Metro Area
639               Charlotte-Concord-Gastonia, NC-SC Metro Area
640               Charlotte-Concord-Gastonia, NC-SC Metro Area
641    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
642    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
643               Charlotte-Concord-Gastonia, NC-SC Metro Area
644               Charlotte-Concord-Gastonia, NC-SC Metro Area
645               Charlotte-Concord-Gastonia, NC-SC Metro Area
646               Charlotte-Concord-Gastonia, NC-SC Metro Area
647               Charlotte-Concord-Gastonia, NC-SC Metro Area
648               Charlotte-Concord-Gastonia, NC-SC Metro Area
649               Charlotte-Concord-Gastonia, NC-SC Metro Area
650    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
651    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
652     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
653     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
654               Charlotte-Concord-Gastonia, NC-SC Metro Area
655               Charlotte-Concord-Gastonia, NC-SC Metro Area
656               Charlotte-Concord-Gastonia, NC-SC Metro Area
657               Charlotte-Concord-Gastonia, NC-SC Metro Area
658               Charlotte-Concord-Gastonia, NC-SC Metro Area
659               Charlotte-Concord-Gastonia, NC-SC Metro Area
660               Charlotte-Concord-Gastonia, NC-SC Metro Area
661               Charlotte-Concord-Gastonia, NC-SC Metro Area
662               Charlotte-Concord-Gastonia, NC-SC Metro Area
663               Charlotte-Concord-Gastonia, NC-SC Metro Area
664    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
665               Charlotte-Concord-Gastonia, NC-SC Metro Area
666               Charlotte-Concord-Gastonia, NC-SC Metro Area
667    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
668     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
669  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
670                 Charleston-North Charleston, SC Metro Area
671    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
672                                  Wilmington, NC Metro Area
673                                Jacksonville, FL Metro Area
674         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
675                                Raleigh-Cary, NC Metro Area
676               Charlotte-Concord-Gastonia, NC-SC Metro Area
677               Charlotte-Concord-Gastonia, NC-SC Metro Area
678     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
679     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
680     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
681     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
682     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
683               Charlotte-Concord-Gastonia, NC-SC Metro Area
684               Charlotte-Concord-Gastonia, NC-SC Metro Area
685    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
686    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
687    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
688    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
689              Los Angeles-Long Beach-Anaheim, CA Metro Area
690                      Denver-Aurora-Lakewood, CO Metro Area
691              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
692              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
693              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
694              Los Angeles-Long Beach-Anaheim, CA Metro Area
695              San Diego-Chula Vista-Carlsbad, CA Metro Area
696                      Denver-Aurora-Lakewood, CO Metro Area
697              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
698              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
699                      Denver-Aurora-Lakewood, CO Metro Area
700              San Francisco-Oakland-Berkeley, CA Metro Area
701                      Denver-Aurora-Lakewood, CO Metro Area
702              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
703                      Denver-Aurora-Lakewood, CO Metro Area
704            Houston-The Woodlands-Sugar Land, TX Metro Area
705                      Spokane-Spokane Valley, WA Metro Area
706              Los Angeles-Long Beach-Anaheim, CA Metro Area
707             Portland-Vancouver-Hillsboro, OR-WA Metro Area
708                     Seattle-Tacoma-Bellevue, WA Metro Area
709              San Francisco-Oakland-Berkeley, CA Metro Area
710              San Jose-Sunnyvale-Santa Clara, CA Metro Area
711                     Seattle-Tacoma-Bellevue, WA Metro Area
712                              Salt Lake City, UT Metro Area
713                      Denver-Aurora-Lakewood, CO Metro Area
714                       Phoenix-Mesa-Chandler, AZ Metro Area
715                       Phoenix-Mesa-Chandler, AZ Metro Area
716             Portland-Vancouver-Hillsboro, OR-WA Metro Area
717              San Francisco-Oakland-Berkeley, CA Metro Area
718              Los Angeles-Long Beach-Anaheim, CA Metro Area
719              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
720                      Denver-Aurora-Lakewood, CO Metro Area
721              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
722                 Dallas-Fort Worth-Arlington, TX Metro Area
723                      Denver-Aurora-Lakewood, CO Metro Area
724                      Denver-Aurora-Lakewood, CO Metro Area
725              Los Angeles-Long Beach-Anaheim, CA Metro Area
726                      Denver-Aurora-Lakewood, CO Metro Area
727              Los Angeles-Long Beach-Anaheim, CA Metro Area
728                Austin-Round Rock-Georgetown, TX Metro Area
729                                  Boise City, ID Metro Area
730                                     Bozeman, MT Micro Area
731                  Des Moines-West Des Moines, IA Metro Area
732                               Memphis, TN-MS-AR Metro Area
733                     Omaha-Council Bluffs, NE-IA Metro Area
734                      Denver-Aurora-Lakewood, CO Metro Area
735                      Denver-Aurora-Lakewood, CO Metro Area
736         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
737                      Denver-Aurora-Lakewood, CO Metro Area
738                      Denver-Aurora-Lakewood, CO Metro Area
739              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
740              San Francisco-Oakland-Berkeley, CA Metro Area
741              San Francisco-Oakland-Berkeley, CA Metro Area
742                       Phoenix-Mesa-Chandler, AZ Metro Area
743             Portland-Vancouver-Hillsboro, OR-WA Metro Area
744              San Diego-Chula Vista-Carlsbad, CA Metro Area
745                     Seattle-Tacoma-Bellevue, WA Metro Area
746              San Francisco-Oakland-Berkeley, CA Metro Area
747              San Francisco-Oakland-Berkeley, CA Metro Area
748         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
749                              Salt Lake City, UT Metro Area
750              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
751              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
752                     Detroit-Warren-Dearborn, MI Metro Area
753                                  Boise City, ID Metro Area
754                                  Boise City, ID Metro Area
755              Los Angeles-Long Beach-Anaheim, CA Metro Area
756                     Seattle-Tacoma-Bellevue, WA Metro Area
757              San Francisco-Oakland-Berkeley, CA Metro Area
758            Houston-The Woodlands-Sugar Land, TX Metro Area
759            Houston-The Woodlands-Sugar Land, TX Metro Area
760            Houston-The Woodlands-Sugar Land, TX Metro Area
761              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
762                      Denver-Aurora-Lakewood, CO Metro Area
763                     Detroit-Warren-Dearborn, MI Metro Area
764         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
765                     Detroit-Warren-Dearborn, MI Metro Area
766                                     El Paso, TX Metro Area
767                              Salt Lake City, UT Metro Area
768                      Denver-Aurora-Lakewood, CO Metro Area
769                      Denver-Aurora-Lakewood, CO Metro Area
770              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
771    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
772              Los Angeles-Long Beach-Anaheim, CA Metro Area
773                       Phoenix-Mesa-Chandler, AZ Metro Area
774                                      Tucson, AZ Metro Area
775                                  Boise City, ID Metro Area
776                                     Bozeman, MT Micro Area
777                      Spokane-Spokane Valley, WA Metro Area
778                         Santa Rosa-Petaluma, CA Metro Area
779              San Jose-Sunnyvale-Santa Clara, CA Metro Area
780                            Glenwood Springs, CO Micro Area
781            Houston-The Woodlands-Sugar Land, TX Metro Area
782            Houston-The Woodlands-Sugar Land, TX Metro Area
783              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
784              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
785                 Dallas-Fort Worth-Arlington, TX Metro Area
786              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
787                       Phoenix-Mesa-Chandler, AZ Metro Area
788              San Francisco-Oakland-Berkeley, CA Metro Area
789                      Denver-Aurora-Lakewood, CO Metro Area
790                      Denver-Aurora-Lakewood, CO Metro Area
791                      Denver-Aurora-Lakewood, CO Metro Area
792              San Diego-Chula Vista-Carlsbad, CA Metro Area
793         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
794                                    Appleton, WI Metro Area
795    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
796                      Denver-Aurora-Lakewood, CO Metro Area
797              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
798             Portland-Vancouver-Hillsboro, OR-WA Metro Area
799                 Dallas-Fort Worth-Arlington, TX Metro Area
800              Los Angeles-Long Beach-Anaheim, CA Metro Area
801              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
802                      Denver-Aurora-Lakewood, CO Metro Area
803            Houston-The Woodlands-Sugar Land, TX Metro Area
804              Los Angeles-Long Beach-Anaheim, CA Metro Area
805                     Detroit-Warren-Dearborn, MI Metro Area
806         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
807                       Phoenix-Mesa-Chandler, AZ Metro Area
808                       Phoenix-Mesa-Chandler, AZ Metro Area
809              San Francisco-Oakland-Berkeley, CA Metro Area
810                            Cleveland-Elyria, OH Metro Area
811                                    Columbia, MO Metro Area
812                                     Wichita, KS Metro Area
813                                 Spartanburg, SC Metro Area
814                                   Knoxville, TN Metro Area
815                     Detroit-Warren-Dearborn, MI Metro Area
816              Los Angeles-Long Beach-Anaheim, CA Metro Area
817                                      Fresno, CA Metro Area
818                                     Medford, OR Metro Area
819              San Francisco-Oakland-Berkeley, CA Metro Area
820              San Diego-Chula Vista-Carlsbad, CA Metro Area
821              San Francisco-Oakland-Berkeley, CA Metro Area
822                 Sacramento-Roseville-Folsom, CA Metro Area
823              Los Angeles-Long Beach-Anaheim, CA Metro Area
824                     Seattle-Tacoma-Bellevue, WA Metro Area
825              San Francisco-Oakland-Berkeley, CA Metro Area
826                                      Fresno, CA Metro Area
827                      Denver-Aurora-Lakewood, CO Metro Area
828                     Detroit-Warren-Dearborn, MI Metro Area
829              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
830            Houston-The Woodlands-Sugar Land, TX Metro Area
831                       Phoenix-Mesa-Chandler, AZ Metro Area
832              San Jose-Sunnyvale-Santa Clara, CA Metro Area
833                              Salt Lake City, UT Metro Area
834                     Detroit-Warren-Dearborn, MI Metro Area
835                      Denver-Aurora-Lakewood, CO Metro Area
836                       Phoenix-Mesa-Chandler, AZ Metro Area
837                     Seattle-Tacoma-Bellevue, WA Metro Area
838                              Salt Lake City, UT Metro Area
839                      Denver-Aurora-Lakewood, CO Metro Area
840                      Denver-Aurora-Lakewood, CO Metro Area
841                      Denver-Aurora-Lakewood, CO Metro Area
842                     Seattle-Tacoma-Bellevue, WA Metro Area
843                       Phoenix-Mesa-Chandler, AZ Metro Area
844                 Sacramento-Roseville-Folsom, CA Metro Area
845                Austin-Round Rock-Georgetown, TX Metro Area
846                                      Fresno, CA Metro Area
847                                     Salinas, CA Metro Area
848             Portland-Vancouver-Hillsboro, OR-WA Metro Area
849              San Jose-Sunnyvale-Santa Clara, CA Metro Area
850                         Santa Rosa-Petaluma, CA Metro Area
851              Los Angeles-Long Beach-Anaheim, CA Metro Area
852              Los Angeles-Long Beach-Anaheim, CA Metro Area
853              Los Angeles-Long Beach-Anaheim, CA Metro Area
854                       Phoenix-Mesa-Chandler, AZ Metro Area
855              San Francisco-Oakland-Berkeley, CA Metro Area
856                     Detroit-Warren-Dearborn, MI Metro Area
857             Portland-Vancouver-Hillsboro, OR-WA Metro Area
858         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
859              Los Angeles-Long Beach-Anaheim, CA Metro Area
860                                  Boise City, ID Metro Area
861                                      Fresno, CA Metro Area
862                      Spokane-Spokane Valley, WA Metro Area
863              San Jose-Sunnyvale-Santa Clara, CA Metro Area
864            Riverside-San Bernardino-Ontario, CA Metro Area
865                 Dallas-Fort Worth-Arlington, TX Metro Area
866             Portland-Vancouver-Hillsboro, OR-WA Metro Area
867                       Phoenix-Mesa-Chandler, AZ Metro Area
868              Los Angeles-Long Beach-Anaheim, CA Metro Area
869                                  Boise City, ID Metro Area
870                 Dallas-Fort Worth-Arlington, TX Metro Area
871                      Spokane-Spokane Valley, WA Metro Area
872                Austin-Round Rock-Georgetown, TX Metro Area
873                      Spokane-Spokane Valley, WA Metro Area
874              Los Angeles-Long Beach-Anaheim, CA Metro Area
875             Portland-Vancouver-Hillsboro, OR-WA Metro Area
876              San Diego-Chula Vista-Carlsbad, CA Metro Area
877                      Denver-Aurora-Lakewood, CO Metro Area
878                 Dallas-Fort Worth-Arlington, TX Metro Area
879              San Diego-Chula Vista-Carlsbad, CA Metro Area
880              Los Angeles-Long Beach-Anaheim, CA Metro Area
881                      Denver-Aurora-Lakewood, CO Metro Area
882                      Denver-Aurora-Lakewood, CO Metro Area
883              San Francisco-Oakland-Berkeley, CA Metro Area
884              San Francisco-Oakland-Berkeley, CA Metro Area
885              San Francisco-Oakland-Berkeley, CA Metro Area
886                                  Boise City, ID Metro Area
887             Portland-Vancouver-Hillsboro, OR-WA Metro Area
888              San Diego-Chula Vista-Carlsbad, CA Metro Area
889                     Seattle-Tacoma-Bellevue, WA Metro Area
890                     Seattle-Tacoma-Bellevue, WA Metro Area
891              San Francisco-Oakland-Berkeley, CA Metro Area
892              San Francisco-Oakland-Berkeley, CA Metro Area
893              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
894              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
895                       Phoenix-Mesa-Chandler, AZ Metro Area
896              Los Angeles-Long Beach-Anaheim, CA Metro Area
897             Portland-Vancouver-Hillsboro, OR-WA Metro Area
898              San Diego-Chula Vista-Carlsbad, CA Metro Area
899              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
900                     Detroit-Warren-Dearborn, MI Metro Area
901              Los Angeles-Long Beach-Anaheim, CA Metro Area
902                     Seattle-Tacoma-Bellevue, WA Metro Area
903            Houston-The Woodlands-Sugar Land, TX Metro Area
904              San Francisco-Oakland-Berkeley, CA Metro Area
905             Portland-Vancouver-Hillsboro, OR-WA Metro Area
906                     Seattle-Tacoma-Bellevue, WA Metro Area
907                     Seattle-Tacoma-Bellevue, WA Metro Area
908                     Seattle-Tacoma-Bellevue, WA Metro Area
909                                     Pullman, WA Micro Area
910                 Sacramento-Roseville-Folsom, CA Metro Area
911                     Seattle-Tacoma-Bellevue, WA Metro Area
912                     Seattle-Tacoma-Bellevue, WA Metro Area
913                     Seattle-Tacoma-Bellevue, WA Metro Area
914                     Seattle-Tacoma-Bellevue, WA Metro Area
915                     Seattle-Tacoma-Bellevue, WA Metro Area
916                     Seattle-Tacoma-Bellevue, WA Metro Area
917                     Seattle-Tacoma-Bellevue, WA Metro Area
918                     Seattle-Tacoma-Bellevue, WA Metro Area
919             Portland-Vancouver-Hillsboro, OR-WA Metro Area
920             Portland-Vancouver-Hillsboro, OR-WA Metro Area
921                     Seattle-Tacoma-Bellevue, WA Metro Area
922              San Francisco-Oakland-Berkeley, CA Metro Area
923                     Seattle-Tacoma-Bellevue, WA Metro Area
924                     Seattle-Tacoma-Bellevue, WA Metro Area
925                     Seattle-Tacoma-Bellevue, WA Metro Area
926              San Francisco-Oakland-Berkeley, CA Metro Area
927              Los Angeles-Long Beach-Anaheim, CA Metro Area
928             Portland-Vancouver-Hillsboro, OR-WA Metro Area
929                     Seattle-Tacoma-Bellevue, WA Metro Area
930                                  Boise City, ID Metro Area
931                      Spokane-Spokane Valley, WA Metro Area
932                Las Vegas-Henderson-Paradise, NV Metro Area
933              Los Angeles-Long Beach-Anaheim, CA Metro Area
934                      Spokane-Spokane Valley, WA Metro Area
935              San Jose-Sunnyvale-Santa Clara, CA Metro Area
936              San Francisco-Oakland-Berkeley, CA Metro Area
937                     Seattle-Tacoma-Bellevue, WA Metro Area
938                     Seattle-Tacoma-Bellevue, WA Metro Area
939              Los Angeles-Long Beach-Anaheim, CA Metro Area
940                     Seattle-Tacoma-Bellevue, WA Metro Area
941                     Seattle-Tacoma-Bellevue, WA Metro Area
942                                     Bozeman, MT Micro Area
943                          Eugene-Springfield, OR Metro Area
944                                   Kalispell, MT Micro Area
945                                 Great Falls, MT Metro Area
946                                 Idaho Falls, ID Metro Area
947                                     Medford, OR Metro Area
948                                     Salinas, CA Metro Area
949                                    Missoula, MT Metro Area
950              San Francisco-Oakland-Berkeley, CA Metro Area
951             Portland-Vancouver-Hillsboro, OR-WA Metro Area
952                                     Pullman, WA Micro Area
953                                     Redding, CA Metro Area
954                                        Bend, OR Metro Area
955                                        Reno, NV Metro Area
956                 Sacramento-Roseville-Folsom, CA Metro Area
957                Las Vegas-Henderson-Paradise, NV Metro Area
958                                  Boise City, ID Metro Area
959                         Santa Rosa-Petaluma, CA Metro Area
960                     Seattle-Tacoma-Bellevue, WA Metro Area
961                     Seattle-Tacoma-Bellevue, WA Metro Area
962            Houston-The Woodlands-Sugar Land, TX Metro Area
963              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
964              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
965                      Denver-Aurora-Lakewood, CO Metro Area
966                      Denver-Aurora-Lakewood, CO Metro Area
967    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
968              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
969              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
970                  Boston-Cambridge-Newton, MA-NH Metro Area
971                      Denver-Aurora-Lakewood, CO Metro Area
972                      Denver-Aurora-Lakewood, CO Metro Area
973           New York-Newark-Jersey City, NY-NJ-PA Metro Area
974            Houston-The Woodlands-Sugar Land, TX Metro Area
975            Houston-The Woodlands-Sugar Land, TX Metro Area
976            Houston-The Woodlands-Sugar Land, TX Metro Area
977            Houston-The Woodlands-Sugar Land, TX Metro Area
978                      Denver-Aurora-Lakewood, CO Metro Area
979    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
980    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
981    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
982    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
983    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
984    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
985                       College Station-Bryan, TX Metro Area
986                      Denver-Aurora-Lakewood, CO Metro Area
987                      Denver-Aurora-Lakewood, CO Metro Area
988              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
989                      Denver-Aurora-Lakewood, CO Metro Area
990                      Denver-Aurora-Lakewood, CO Metro Area
991           New York-Newark-Jersey City, NY-NJ-PA Metro Area
992           New York-Newark-Jersey City, NY-NJ-PA Metro Area
993           New York-Newark-Jersey City, NY-NJ-PA Metro Area
994           New York-Newark-Jersey City, NY-NJ-PA Metro Area
995           New York-Newark-Jersey City, NY-NJ-PA Metro Area
996    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
997            Houston-The Woodlands-Sugar Land, TX Metro Area
998              Los Angeles-Long Beach-Anaheim, CA Metro Area
999              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1000             San Francisco-Oakland-Berkeley, CA Metro Area
1001          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1002   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1003                     Denver-Aurora-Lakewood, CO Metro Area
1004             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1005             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1006             San Francisco-Oakland-Berkeley, CA Metro Area
1007                     Denver-Aurora-Lakewood, CO Metro Area
1008                     Denver-Aurora-Lakewood, CO Metro Area
1009             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1010             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1011                     Denver-Aurora-Lakewood, CO Metro Area
1012          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1014   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1015                     Denver-Aurora-Lakewood, CO Metro Area
1016             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1017             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1018                 Boston-Cambridge-Newton, MA-NH Metro Area
1019          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1021           Houston-The Woodlands-Sugar Land, TX Metro Area
1022           Houston-The Woodlands-Sugar Land, TX Metro Area
1023             Los Angeles-Long Beach-Anaheim, CA Metro Area
1024             Los Angeles-Long Beach-Anaheim, CA Metro Area
1025                             Kansas City, MO-KS Metro Area
1026             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1027             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1028             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1029            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1030                      Phoenix-Mesa-Chandler, AZ Metro Area
1031                  San Antonio-New Braunfels, TX Metro Area
1032                Sacramento-Roseville-Folsom, CA Metro Area
1033          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1034             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1035             San Francisco-Oakland-Berkeley, CA Metro Area
1036                           Cleveland-Elyria, OH Metro Area
1037                           Cleveland-Elyria, OH Metro Area
1038                           Cleveland-Elyria, OH Metro Area
1039                     Denver-Aurora-Lakewood, CO Metro Area
1040                     Denver-Aurora-Lakewood, CO Metro Area
1041   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1042           Houston-The Woodlands-Sugar Land, TX Metro Area
1043           Houston-The Woodlands-Sugar Land, TX Metro Area
1044                               Jacksonville, FL Metro Area
1045                  Orlando-Kissimmee-Sanford, FL Metro Area
1046        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1047             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1048             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1049        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1050                      Phoenix-Mesa-Chandler, AZ Metro Area
1051                               Raleigh-Cary, NC Metro Area
1052                      Cape Coral-Fort Myers, FL Metro Area
1053             San Diego-Chula Vista-Carlsbad, CA Metro Area
1054                                   Savannah, GA Metro Area
1055             San Francisco-Oakland-Berkeley, CA Metro Area
1056                    San Juan-Bayamón-Caguas, PR Metro Area
1057                             Salt Lake City, UT Metro Area
1058              North Port-Sarasota-Bradenton, FL Metro Area
1059            Tampa-St. Petersburg-Clearwater, FL Metro Area
1060                     Denver-Aurora-Lakewood, CO Metro Area
1061                     Denver-Aurora-Lakewood, CO Metro Area
1062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1063   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1064           Houston-The Woodlands-Sugar Land, TX Metro Area
1065             San Francisco-Oakland-Berkeley, CA Metro Area
1066                     Denver-Aurora-Lakewood, CO Metro Area
1067                     Denver-Aurora-Lakewood, CO Metro Area
1068             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1069          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1070          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1072           Houston-The Woodlands-Sugar Land, TX Metro Area
1073           Houston-The Woodlands-Sugar Land, TX Metro Area
1074           Houston-The Woodlands-Sugar Land, TX Metro Area
1075             San Francisco-Oakland-Berkeley, CA Metro Area
1076             San Francisco-Oakland-Berkeley, CA Metro Area
1077             San Francisco-Oakland-Berkeley, CA Metro Area
1078 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1079                 Boston-Cambridge-Newton, MA-NH Metro Area
1080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1081                               Jacksonville, FL Metro Area
1082             Los Angeles-Long Beach-Anaheim, CA Metro Area
1083                  Orlando-Kissimmee-Sanford, FL Metro Area
1084        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1085                               Raleigh-Cary, NC Metro Area
1086             San Francisco-Oakland-Berkeley, CA Metro Area
1087            Tampa-St. Petersburg-Clearwater, FL Metro Area
1088                     Denver-Aurora-Lakewood, CO Metro Area
1089                               Jacksonville, FL Metro Area
1090             Los Angeles-Long Beach-Anaheim, CA Metro Area
1091          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1092                       New Orleans-Metairie, LA Metro Area
1093             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1094                      Phoenix-Mesa-Chandler, AZ Metro Area
1095                      Cape Coral-Fort Myers, FL Metro Area
1096            Tampa-St. Petersburg-Clearwater, FL Metro Area
1097                     Denver-Aurora-Lakewood, CO Metro Area
1098                     Denver-Aurora-Lakewood, CO Metro Area
1099                     Denver-Aurora-Lakewood, CO Metro Area
1100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1101   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1102   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1103           Houston-The Woodlands-Sugar Land, TX Metro Area
1104             San Francisco-Oakland-Berkeley, CA Metro Area
1105                     Denver-Aurora-Lakewood, CO Metro Area
1106                     Denver-Aurora-Lakewood, CO Metro Area
1107          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1108          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1109   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1111           Houston-The Woodlands-Sugar Land, TX Metro Area
1112           Houston-The Woodlands-Sugar Land, TX Metro Area
1113           Houston-The Woodlands-Sugar Land, TX Metro Area
1114           Houston-The Woodlands-Sugar Land, TX Metro Area
1115           Houston-The Woodlands-Sugar Land, TX Metro Area
1116           Houston-The Woodlands-Sugar Land, TX Metro Area
1117             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1118             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1119                     Denver-Aurora-Lakewood, CO Metro Area
1120          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1121           Houston-The Woodlands-Sugar Land, TX Metro Area
1122           Houston-The Woodlands-Sugar Land, TX Metro Area
1123           Houston-The Woodlands-Sugar Land, TX Metro Area
1124               Las Vegas-Henderson-Paradise, NV Metro Area
1125                  Orlando-Kissimmee-Sanford, FL Metro Area
1126             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1127                     Denver-Aurora-Lakewood, CO Metro Area
1128                     Denver-Aurora-Lakewood, CO Metro Area
1129   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1130             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1131                     Denver-Aurora-Lakewood, CO Metro Area
1132             Los Angeles-Long Beach-Anaheim, CA Metro Area
1133                     Denver-Aurora-Lakewood, CO Metro Area
1134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1136           Houston-The Woodlands-Sugar Land, TX Metro Area
1137           Houston-The Woodlands-Sugar Land, TX Metro Area
1138             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1139           Houston-The Woodlands-Sugar Land, TX Metro Area
1140           Houston-The Woodlands-Sugar Land, TX Metro Area
1141                     Denver-Aurora-Lakewood, CO Metro Area
1142                     Denver-Aurora-Lakewood, CO Metro Area
1143                     Denver-Aurora-Lakewood, CO Metro Area
1144                     Denver-Aurora-Lakewood, CO Metro Area
1145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1146           Houston-The Woodlands-Sugar Land, TX Metro Area
1147                     Denver-Aurora-Lakewood, CO Metro Area
1148                     Denver-Aurora-Lakewood, CO Metro Area
1149                     Denver-Aurora-Lakewood, CO Metro Area
1150                     Denver-Aurora-Lakewood, CO Metro Area
1151                  Baltimore-Columbia-Towson, MD Metro Area
1152                           Cleveland-Elyria, OH Metro Area
1153   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1154                     Denver-Aurora-Lakewood, CO Metro Area
1155          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1156        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1157                      Grand Rapids-Kentwood, MI Metro Area
1158   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1159           Houston-The Woodlands-Sugar Land, TX Metro Area
1160                                 Pittsburgh, PA Metro Area
1161                                   Richmond, VA Metro Area
1162                                  Rochester, NY Metro Area
1163             San Diego-Chula Vista-Carlsbad, CA Metro Area
1164                     Denver-Aurora-Lakewood, CO Metro Area
1165             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1166          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1167                     Denver-Aurora-Lakewood, CO Metro Area
1168          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1169             San Francisco-Oakland-Berkeley, CA Metro Area
1170             San Francisco-Oakland-Berkeley, CA Metro Area
1171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1172             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1173             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1174                     Denver-Aurora-Lakewood, CO Metro Area
1175                     Denver-Aurora-Lakewood, CO Metro Area
1176             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1177             San Francisco-Oakland-Berkeley, CA Metro Area
1178          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1179           Houston-The Woodlands-Sugar Land, TX Metro Area
1180           Houston-The Woodlands-Sugar Land, TX Metro Area
1181                     Denver-Aurora-Lakewood, CO Metro Area
1182                     Denver-Aurora-Lakewood, CO Metro Area
1183   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1184             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1185             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1186             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1187               Austin-Round Rock-Georgetown, TX Metro Area
1188   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1189          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1190        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1191   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1192   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1193           Houston-The Woodlands-Sugar Land, TX Metro Area
1194                    Kahului-Wailuku-Lahaina, HI Metro Area
1195             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1196             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1197             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1198          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1199           Houston-The Woodlands-Sugar Land, TX Metro Area
1200   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1201                           Cleveland-Elyria, OH Metro Area
1202   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1203           Houston-The Woodlands-Sugar Land, TX Metro Area
1204           Houston-The Woodlands-Sugar Land, TX Metro Area
1205                Dallas-Fort Worth-Arlington, TX Metro Area
1206                Dallas-Fort Worth-Arlington, TX Metro Area
1207               Las Vegas-Henderson-Paradise, NV Metro Area
1208               Austin-Round Rock-Georgetown, TX Metro Area
1209               Las Vegas-Henderson-Paradise, NV Metro Area
1210                      Phoenix-Mesa-Chandler, AZ Metro Area
1211                  Baltimore-Columbia-Towson, MD Metro Area
1212                  Baltimore-Columbia-Towson, MD Metro Area
1213                  Baltimore-Columbia-Towson, MD Metro Area
1214                  Baltimore-Columbia-Towson, MD Metro Area
1215                  Orlando-Kissimmee-Sanford, FL Metro Area
1216             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1217             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1218                  Baltimore-Columbia-Towson, MD Metro Area
1219                  Orlando-Kissimmee-Sanford, FL Metro Area
1220               Las Vegas-Henderson-Paradise, NV Metro Area
1221                Dallas-Fort Worth-Arlington, TX Metro Area
1222                  Baltimore-Columbia-Towson, MD Metro Area
1223                Dallas-Fort Worth-Arlington, TX Metro Area
1224                Dallas-Fort Worth-Arlington, TX Metro Area
1225                Dallas-Fort Worth-Arlington, TX Metro Area
1226                Dallas-Fort Worth-Arlington, TX Metro Area
1227                Dallas-Fort Worth-Arlington, TX Metro Area
1228           Houston-The Woodlands-Sugar Land, TX Metro Area
1229          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1230                  Orlando-Kissimmee-Sanford, FL Metro Area
1231             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1232                         Milwaukee-Waukesha, WI Metro Area
1233                      Phoenix-Mesa-Chandler, AZ Metro Area
1234                      Phoenix-Mesa-Chandler, AZ Metro Area
1235                      Phoenix-Mesa-Chandler, AZ Metro Area
1236                               St. Louis, MO-IL Metro Area
1237               Austin-Round Rock-Georgetown, TX Metro Area
1238 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1239                           Cleveland-Elyria, OH Metro Area
1240                                Panama City, FL Metro Area
1241        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1242           Houston-The Woodlands-Sugar Land, TX Metro Area
1243               Indianapolis-Carmel-Anderson, IN Metro Area
1244                                    Jackson, MS Metro Area
1245               Las Vegas-Henderson-Paradise, NV Metro Area
1246       Little Rock-North Little Rock-Conway, AR Metro Area
1247                             Kansas City, MO-KS Metro Area
1248                              Memphis, TN-MS-AR Metro Area
1249  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1250    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1251                      Phoenix-Mesa-Chandler, AZ Metro Area
1252                                 Pittsburgh, PA Metro Area
1253                                   Richmond, VA Metro Area
1254                      Cape Coral-Fort Myers, FL Metro Area
1255            Tampa-St. Petersburg-Clearwater, FL Metro Area
1256 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1257                Dallas-Fort Worth-Arlington, TX Metro Area
1258                Dallas-Fort Worth-Arlington, TX Metro Area
1259                Dallas-Fort Worth-Arlington, TX Metro Area
1260                                    El Paso, TX Metro Area
1261           Houston-The Woodlands-Sugar Land, TX Metro Area
1262           Houston-The Woodlands-Sugar Land, TX Metro Area
1263             Los Angeles-Long Beach-Anaheim, CA Metro Area
1264             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1265                      Phoenix-Mesa-Chandler, AZ Metro Area
1266                      Phoenix-Mesa-Chandler, AZ Metro Area
1267                      Phoenix-Mesa-Chandler, AZ Metro Area
1268             San Diego-Chula Vista-Carlsbad, CA Metro Area
1269             Los Angeles-Long Beach-Anaheim, CA Metro Area
1270                  Baltimore-Columbia-Towson, MD Metro Area
1271                Dallas-Fort Worth-Arlington, TX Metro Area
1272   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1273           Houston-The Woodlands-Sugar Land, TX Metro Area
1274                      Brownsville-Harlingen, TX Metro Area
1275             Los Angeles-Long Beach-Anaheim, CA Metro Area
1276             Los Angeles-Long Beach-Anaheim, CA Metro Area
1277                             Kansas City, MO-KS Metro Area
1278             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1279        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1280                       New Orleans-Metairie, LA Metro Area
1281             San Francisco-Oakland-Berkeley, CA Metro Area
1282                               Raleigh-Cary, NC Metro Area
1283             Los Angeles-Long Beach-Anaheim, CA Metro Area
1284                               St. Louis, MO-IL Metro Area
1285            Tampa-St. Petersburg-Clearwater, FL Metro Area
1286             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1287             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1288                  Baltimore-Columbia-Towson, MD Metro Area
1289                  Orlando-Kissimmee-Sanford, FL Metro Area
1290                  Baltimore-Columbia-Towson, MD Metro Area
1291                Dallas-Fort Worth-Arlington, TX Metro Area
1292           Houston-The Woodlands-Sugar Land, TX Metro Area
1293                  Orlando-Kissimmee-Sanford, FL Metro Area
1294             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1295            Tampa-St. Petersburg-Clearwater, FL Metro Area
1296               Las Vegas-Henderson-Paradise, NV Metro Area
1297               Austin-Round Rock-Georgetown, TX Metro Area
1298          Hartford-East Hartford-Middletown, CT Metro Area
1299                Dallas-Fort Worth-Arlington, TX Metro Area
1300                     Denver-Aurora-Lakewood, CO Metro Area
1301           Houston-The Woodlands-Sugar Land, TX Metro Area
1302          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1303                             Kansas City, MO-KS Metro Area
1304                  Orlando-Kissimmee-Sanford, FL Metro Area
1305     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1306                      Phoenix-Mesa-Chandler, AZ Metro Area
1307                      Cape Coral-Fort Myers, FL Metro Area
1308             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1309              North Port-Sarasota-Bradenton, FL Metro Area
1310            Tampa-St. Petersburg-Clearwater, FL Metro Area
1311                 Boston-Cambridge-Newton, MA-NH Metro Area
1312                  Baltimore-Columbia-Towson, MD Metro Area
1313                Charleston-North Charleston, SC Metro Area
1314                           Cleveland-Elyria, OH Metro Area
1315              Charlotte-Concord-Gastonia, NC-SC Metro Area
1316                                   Columbus, OH Metro Area
1317                    Detroit-Warren-Dearborn, MI Metro Area
1318                                Panama City, FL Metro Area
1319                               Jacksonville, FL Metro Area
1320             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1321        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1322                         Milwaukee-Waukesha, WI Metro Area
1323                       New Orleans-Metairie, LA Metro Area
1324  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1325             San Francisco-Oakland-Berkeley, CA Metro Area
1326             San Francisco-Oakland-Berkeley, CA Metro Area
1327    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1328                                 Pittsburgh, PA Metro Area
1329                 Pensacola-Ferry Pass-Brent, FL Metro Area
1330                               Raleigh-Cary, NC Metro Area
1331                                   Savannah, GA Metro Area
1332         Crestview-Fort Walton Beach-Destin, FL Metro Area
1333                     Denver-Aurora-Lakewood, CO Metro Area
1334                     Denver-Aurora-Lakewood, CO Metro Area
1335               Las Vegas-Henderson-Paradise, NV Metro Area
1336             San Francisco-Oakland-Berkeley, CA Metro Area
1337                      Phoenix-Mesa-Chandler, AZ Metro Area
1338             San Diego-Chula Vista-Carlsbad, CA Metro Area
1339               Las Vegas-Henderson-Paradise, NV Metro Area
1340 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1341 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1342                  Baltimore-Columbia-Towson, MD Metro Area
1343                  Baltimore-Columbia-Towson, MD Metro Area
1344                  Baltimore-Columbia-Towson, MD Metro Area
1345                  Baltimore-Columbia-Towson, MD Metro Area
1346                  Baltimore-Columbia-Towson, MD Metro Area
1347                  Baltimore-Columbia-Towson, MD Metro Area
1348             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1349             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1350             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1351             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1352             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1353             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1354                  Baltimore-Columbia-Towson, MD Metro Area
1355        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1356                  Orlando-Kissimmee-Sanford, FL Metro Area
1357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1358                Dallas-Fort Worth-Arlington, TX Metro Area
1359                Dallas-Fort Worth-Arlington, TX Metro Area
1360                Dallas-Fort Worth-Arlington, TX Metro Area
1361                Dallas-Fort Worth-Arlington, TX Metro Area
1362               Las Vegas-Henderson-Paradise, NV Metro Area
1363                Sacramento-Roseville-Folsom, CA Metro Area
1364               Austin-Round Rock-Georgetown, TX Metro Area
1365                     Denver-Aurora-Lakewood, CO Metro Area
1366           Houston-The Woodlands-Sugar Land, TX Metro Area
1367             San Francisco-Oakland-Berkeley, CA Metro Area
1368             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1369                          Birmingham-Hoover, AL Metro Area
1370 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1371 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1372                           Cincinnati, OH-KY-IN Metro Area
1373                      Grand Rapids-Kentwood, MI Metro Area
1374               Indianapolis-Carmel-Anderson, IN Metro Area
1375             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1376                                   Savannah, GA Metro Area
1377         Crestview-Fort Walton Beach-Destin, FL Metro Area
1378          Hartford-East Hartford-Middletown, CT Metro Area
1379                        Buffalo-Cheektowaga, NY Metro Area
1380                Charleston-North Charleston, SC Metro Area
1381                           Cleveland-Elyria, OH Metro Area
1382        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1383                                Spartanburg, SC Metro Area
1384           Houston-The Woodlands-Sugar Land, TX Metro Area
1385          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1386               Las Vegas-Henderson-Paradise, NV Metro Area
1387          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1388             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1389        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1390  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1391     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1392                      Phoenix-Mesa-Chandler, AZ Metro Area
1393                                 Pittsburgh, PA Metro Area
1394                      Providence-Warwick, RI-MA Metro Area
1395                    Portland-South Portland, ME Metro Area
1396                               Raleigh-Cary, NC Metro Area
1397                                  Rochester, NY Metro Area
1398                      Cape Coral-Fort Myers, FL Metro Area
1399             Louisville/Jefferson County, KY-IN Metro Area
1400                     Denver-Aurora-Lakewood, CO Metro Area
1401               Las Vegas-Henderson-Paradise, NV Metro Area
1402 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1403 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1404 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1405                Dallas-Fort Worth-Arlington, TX Metro Area
1406             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1407                               St. Louis, MO-IL Metro Area
1408 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1409 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1410                  Baltimore-Columbia-Towson, MD Metro Area
1411               Las Vegas-Henderson-Paradise, NV Metro Area
1412             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1413                               St. Louis, MO-IL Metro Area
1414 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1415             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1416             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1417              North Port-Sarasota-Bradenton, FL Metro Area
1418                               St. Louis, MO-IL Metro Area
1419 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1420                  Baltimore-Columbia-Towson, MD Metro Area
1421   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1422               Las Vegas-Henderson-Paradise, NV Metro Area
1423                      Phoenix-Mesa-Chandler, AZ Metro Area
1424                               St. Louis, MO-IL Metro Area
1425            Tampa-St. Petersburg-Clearwater, FL Metro Area
1426               Las Vegas-Henderson-Paradise, NV Metro Area
1427               Las Vegas-Henderson-Paradise, NV Metro Area
1428                      Phoenix-Mesa-Chandler, AZ Metro Area
1429           Houston-The Woodlands-Sugar Land, TX Metro Area
1430           Houston-The Woodlands-Sugar Land, TX Metro Area
1431                     Denver-Aurora-Lakewood, CO Metro Area
1432             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1433                  Baltimore-Columbia-Towson, MD Metro Area
1434                  Orlando-Kissimmee-Sanford, FL Metro Area
1435             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1436             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1437            Tampa-St. Petersburg-Clearwater, FL Metro Area
1438                                Albuquerque, NM Metro Area
1439               Austin-Round Rock-Georgetown, TX Metro Area
1440                          Birmingham-Hoover, AL Metro Area
1441                     Denver-Aurora-Lakewood, CO Metro Area
1442                     Denver-Aurora-Lakewood, CO Metro Area
1443                                    El Paso, TX Metro Area
1444           Houston-The Woodlands-Sugar Land, TX Metro Area
1445          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1446             Los Angeles-Long Beach-Anaheim, CA Metro Area
1447                  Orlando-Kissimmee-Sanford, FL Metro Area
1448             San Francisco-Oakland-Berkeley, CA Metro Area
1449                    Omaha-Council Bluffs, NE-IA Metro Area
1450             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1451                             Salt Lake City, UT Metro Area
1452             Los Angeles-Long Beach-Anaheim, CA Metro Area
1453                               St. Louis, MO-IL Metro Area
1454            Tampa-St. Petersburg-Clearwater, FL Metro Area
1455                                   Amarillo, TX Metro Area
1456               Austin-Round Rock-Georgetown, TX Metro Area
1457                                   Columbus, OH Metro Area
1458                           Colorado Springs, CO Metro Area
1459   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1460                                Panama City, FL Metro Area
1461        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1462           Houston-The Woodlands-Sugar Land, TX Metro Area
1463                                    Lubbock, TX Metro Area
1464       Little Rock-North Little Rock-Conway, AR Metro Area
1465                                    Midland, TX Metro Area
1466                             Kansas City, MO-KS Metro Area
1467             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1468        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1469                       New Orleans-Metairie, LA Metro Area
1470             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1471                      Phoenix-Mesa-Chandler, AZ Metro Area
1472                 Pensacola-Ferry Pass-Brent, FL Metro Area
1473                  San Antonio-New Braunfels, TX Metro Area
1474                                      Tulsa, OK Metro Area
1475         Crestview-Fort Walton Beach-Destin, FL Metro Area
1476 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1477 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1478 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1479        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1480             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1481                               St. Louis, MO-IL Metro Area
1482                               St. Louis, MO-IL Metro Area
1483                                   Columbus, OH Metro Area
1484                Dallas-Fort Worth-Arlington, TX Metro Area
1485                  Orlando-Kissimmee-Sanford, FL Metro Area
1486                         Milwaukee-Waukesha, WI Metro Area
1487                    Omaha-Council Bluffs, NE-IA Metro Area
1488                      Cape Coral-Fort Myers, FL Metro Area
1489                               St. Louis, MO-IL Metro Area
1490            Tampa-St. Petersburg-Clearwater, FL Metro Area
1491                          Birmingham-Hoover, AL Metro Area
1492 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1493             Los Angeles-Long Beach-Anaheim, CA Metro Area
1494                  Baltimore-Columbia-Towson, MD Metro Area
1495                           Cincinnati, OH-KY-IN Metro Area
1496                Dallas-Fort Worth-Arlington, TX Metro Area
1497                Dallas-Fort Worth-Arlington, TX Metro Area
1498                                    El Paso, TX Metro Area
1499                     Spokane-Spokane Valley, WA Metro Area
1500           Houston-The Woodlands-Sugar Land, TX Metro Area
1501               Indianapolis-Carmel-Anderson, IN Metro Area
1502               Las Vegas-Henderson-Paradise, NV Metro Area
1503          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1504             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1505             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1506                         Milwaukee-Waukesha, WI Metro Area
1507                  Santa Maria-Santa Barbara, CA Metro Area
1508             Los Angeles-Long Beach-Anaheim, CA Metro Area
1509                               St. Louis, MO-IL Metro Area
1510                                      Tulsa, OK Metro Area
1511                                     Tucson, AZ Metro Area
1512                                Albuquerque, NM Metro Area
1513                        Buffalo-Cheektowaga, NY Metro Area
1514                Charleston-North Charleston, SC Metro Area
1515                          Steamboat Springs, CO Micro Area
1516           Houston-The Woodlands-Sugar Land, TX Metro Area
1517                                    Wichita, KS Metro Area
1518               Las Vegas-Henderson-Paradise, NV Metro Area
1519             Los Angeles-Long Beach-Anaheim, CA Metro Area
1520       Little Rock-North Little Rock-Conway, AR Metro Area
1521        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1522                       New Orleans-Metairie, LA Metro Area
1523             San Francisco-Oakland-Berkeley, CA Metro Area
1524                              Oklahoma City, OK Metro Area
1525                                       Reno, NV Metro Area
1526             San Diego-Chula Vista-Carlsbad, CA Metro Area
1527            Tampa-St. Petersburg-Clearwater, FL Metro Area
1528                               St. Louis, MO-IL Metro Area
1529 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1530             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1531             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1532 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1533                  Baltimore-Columbia-Towson, MD Metro Area
1534                               St. Louis, MO-IL Metro Area
1535           Houston-The Woodlands-Sugar Land, TX Metro Area
1536                               St. Louis, MO-IL Metro Area
1537               Austin-Round Rock-Georgetown, TX Metro Area
1538                     Denver-Aurora-Lakewood, CO Metro Area
1539           Houston-The Woodlands-Sugar Land, TX Metro Area
1540               Las Vegas-Henderson-Paradise, NV Metro Area
1541             Los Angeles-Long Beach-Anaheim, CA Metro Area
1542                      Phoenix-Mesa-Chandler, AZ Metro Area
1543               Austin-Round Rock-Georgetown, TX Metro Area
1544           Houston-The Woodlands-Sugar Land, TX Metro Area
1545           Houston-The Woodlands-Sugar Land, TX Metro Area
1546                      Phoenix-Mesa-Chandler, AZ Metro Area
1547                  San Antonio-New Braunfels, TX Metro Area
1548             San Francisco-Oakland-Berkeley, CA Metro Area
1549               Las Vegas-Henderson-Paradise, NV Metro Area
1550             San Francisco-Oakland-Berkeley, CA Metro Area
1551               Las Vegas-Henderson-Paradise, NV Metro Area
1552                  Baltimore-Columbia-Towson, MD Metro Area
1553           Houston-The Woodlands-Sugar Land, TX Metro Area
1554           Houston-The Woodlands-Sugar Land, TX Metro Area
1555           Houston-The Woodlands-Sugar Land, TX Metro Area
1556                  Orlando-Kissimmee-Sanford, FL Metro Area
1557                       New Orleans-Metairie, LA Metro Area
1558                               Raleigh-Cary, NC Metro Area
1559                  Baltimore-Columbia-Towson, MD Metro Area
1560                Dallas-Fort Worth-Arlington, TX Metro Area
1561   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1563                      Phoenix-Mesa-Chandler, AZ Metro Area
1564                      Phoenix-Mesa-Chandler, AZ Metro Area
1565                                 Pittsburgh, PA Metro Area
1566                  San Antonio-New Braunfels, TX Metro Area
1567            Tampa-St. Petersburg-Clearwater, FL Metro Area
1568                     Denver-Aurora-Lakewood, CO Metro Area
1569                     Denver-Aurora-Lakewood, CO Metro Area
1570               Las Vegas-Henderson-Paradise, NV Metro Area
1571             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1572                      Phoenix-Mesa-Chandler, AZ Metro Area
1573                Sacramento-Roseville-Folsom, CA Metro Area
1574               Las Vegas-Henderson-Paradise, NV Metro Area
1575             San Francisco-Oakland-Berkeley, CA Metro Area
1576                  Baltimore-Columbia-Towson, MD Metro Area
1577           Houston-The Woodlands-Sugar Land, TX Metro Area
1578                                      Kapaa, HI Micro Area
1579             San Francisco-Oakland-Berkeley, CA Metro Area
1580             San Francisco-Oakland-Berkeley, CA Metro Area
1581                      Phoenix-Mesa-Chandler, AZ Metro Area
1582           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1583 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1584                  Baltimore-Columbia-Towson, MD Metro Area
1585                Dallas-Fort Worth-Arlington, TX Metro Area
1586                     Denver-Aurora-Lakewood, CO Metro Area
1587                                    El Paso, TX Metro Area
1588                                Spartanburg, SC Metro Area
1589        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1590        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1591                       New Orleans-Metairie, LA Metro Area
1592                      Phoenix-Mesa-Chandler, AZ Metro Area
1593                               St. Louis, MO-IL Metro Area
1594                               St. Louis, MO-IL Metro Area
1595               Austin-Round Rock-Georgetown, TX Metro Area
1596             Los Angeles-Long Beach-Anaheim, CA Metro Area
1597                                Panama City, FL Metro Area
1598        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1599                      Brownsville-Harlingen, TX Metro Area
1600               Las Vegas-Henderson-Paradise, NV Metro Area
1601             Los Angeles-Long Beach-Anaheim, CA Metro Area
1602                                    Lubbock, TX Metro Area
1603          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1604             Los Angeles-Long Beach-Anaheim, CA Metro Area
1605                                    Midland, TX Metro Area
1606                  Orlando-Kissimmee-Sanford, FL Metro Area
1607                              Memphis, TN-MS-AR Metro Area
1608             San Francisco-Oakland-Berkeley, CA Metro Area
1609                              Oklahoma City, OK Metro Area
1610           Riverside-San Bernardino-Ontario, CA Metro Area
1611    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1612                 Pensacola-Ferry Pass-Brent, FL Metro Area
1613                      Cape Coral-Fort Myers, FL Metro Area
1614                  San Antonio-New Braunfels, TX Metro Area
1615                  San Antonio-New Braunfels, TX Metro Area
1616                                   Savannah, GA Metro Area
1617             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1618            Tampa-St. Petersburg-Clearwater, FL Metro Area
1619                                      Tulsa, OK Metro Area
1620           Houston-The Woodlands-Sugar Land, TX Metro Area
1621           Houston-The Woodlands-Sugar Land, TX Metro Area
1622             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1623             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1624                Dallas-Fort Worth-Arlington, TX Metro Area
1625                Dallas-Fort Worth-Arlington, TX Metro Area
1626             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1627                Dallas-Fort Worth-Arlington, TX Metro Area
1628                Dallas-Fort Worth-Arlington, TX Metro Area
1629             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1630                     Denver-Aurora-Lakewood, CO Metro Area
1631                               St. Louis, MO-IL Metro Area
1632                  Baltimore-Columbia-Towson, MD Metro Area
1633                Dallas-Fort Worth-Arlington, TX Metro Area
1634           Houston-The Woodlands-Sugar Land, TX Metro Area
1635                  Orlando-Kissimmee-Sanford, FL Metro Area
1636                      Cape Coral-Fort Myers, FL Metro Area
1637              North Port-Sarasota-Bradenton, FL Metro Area
1638 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1639                  Baltimore-Columbia-Towson, MD Metro Area
1640                  Baltimore-Columbia-Towson, MD Metro Area
1641                  Baltimore-Columbia-Towson, MD Metro Area
1642                               St. Louis, MO-IL Metro Area
1643 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1644             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1645                      Phoenix-Mesa-Chandler, AZ Metro Area
1646                      Phoenix-Mesa-Chandler, AZ Metro Area
1647                      Phoenix-Mesa-Chandler, AZ Metro Area
1648                                Albuquerque, NM Metro Area
1649                                   Amarillo, TX Metro Area
1650               Austin-Round Rock-Georgetown, TX Metro Area
1651               Austin-Round Rock-Georgetown, TX Metro Area
1652                Dallas-Fort Worth-Arlington, TX Metro Area
1653                     Spokane-Spokane Valley, WA Metro Area
1654             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1655                         Milwaukee-Waukesha, WI Metro Area
1656             San Francisco-Oakland-Berkeley, CA Metro Area
1657            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1658                  San Antonio-New Braunfels, TX Metro Area
1659                             Salt Lake City, UT Metro Area
1660                Sacramento-Roseville-Folsom, CA Metro Area
1661             Los Angeles-Long Beach-Anaheim, CA Metro Area
1662                               St. Louis, MO-IL Metro Area
1663                                 Boise City, ID Metro Area
1664             Los Angeles-Long Beach-Anaheim, CA Metro Area
1665                  Baltimore-Columbia-Towson, MD Metro Area
1666                                    Bozeman, MT Micro Area
1667                           Colorado Springs, CO Metro Area
1668                         Eugene-Springfield, OR Metro Area
1669             Los Angeles-Long Beach-Anaheim, CA Metro Area
1670                         Milwaukee-Waukesha, WI Metro Area
1671           Riverside-San Bernardino-Ontario, CA Metro Area
1672           Riverside-San Bernardino-Ontario, CA Metro Area
1673                                       Reno, NV Metro Area
1674             San Diego-Chula Vista-Carlsbad, CA Metro Area
1675                  Santa Maria-Santa Barbara, CA Metro Area
1676             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1677                                      Tulsa, OK Metro Area
1678                                     Tucson, AZ Metro Area
1679                                Albuquerque, NM Metro Area
1680                                    El Paso, TX Metro Area
1681                             Urban Honolulu, HI Metro Area
1682             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1683                       New Orleans-Metairie, LA Metro Area
1684                       New Orleans-Metairie, LA Metro Area
1685                      Phoenix-Mesa-Chandler, AZ Metro Area
1686                      Phoenix-Mesa-Chandler, AZ Metro Area
1687               Austin-Round Rock-Georgetown, TX Metro Area
1688               Austin-Round Rock-Georgetown, TX Metro Area
1689           Houston-The Woodlands-Sugar Land, TX Metro Area
1690                                       Reno, NV Metro Area
1691                Sacramento-Roseville-Folsom, CA Metro Area
1692                Sacramento-Roseville-Folsom, CA Metro Area
1693               Austin-Round Rock-Georgetown, TX Metro Area
1694                Dallas-Fort Worth-Arlington, TX Metro Area
1695                  Baltimore-Columbia-Towson, MD Metro Area
1696                  Baltimore-Columbia-Towson, MD Metro Area
1697           Houston-The Woodlands-Sugar Land, TX Metro Area
1698                               St. Louis, MO-IL Metro Area
1699                               St. Louis, MO-IL Metro Area
1700             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1701                       New Orleans-Metairie, LA Metro Area
1702                     Denver-Aurora-Lakewood, CO Metro Area
1703               Las Vegas-Henderson-Paradise, NV Metro Area
1704             San Francisco-Oakland-Berkeley, CA Metro Area
1705                Sacramento-Roseville-Folsom, CA Metro Area
1706                               St. Louis, MO-IL Metro Area
1707                             Urban Honolulu, HI Metro Area
1708           Houston-The Woodlands-Sugar Land, TX Metro Area
1709           Houston-The Woodlands-Sugar Land, TX Metro Area
1710               Las Vegas-Henderson-Paradise, NV Metro Area
1711             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1712                    Kahului-Wailuku-Lahaina, HI Metro Area
1713                                       Reno, NV Metro Area
1714                Sacramento-Roseville-Folsom, CA Metro Area
1715                Dallas-Fort Worth-Arlington, TX Metro Area
1716                Dallas-Fort Worth-Arlington, TX Metro Area
1717           Houston-The Woodlands-Sugar Land, TX Metro Area
1718               Austin-Round Rock-Georgetown, TX Metro Area
1719                Dallas-Fort Worth-Arlington, TX Metro Area
1720             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1721             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1722                  Baltimore-Columbia-Towson, MD Metro Area
1723        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1724          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1725                  Orlando-Kissimmee-Sanford, FL Metro Area
1726                       New Orleans-Metairie, LA Metro Area
1727                      Cape Coral-Fort Myers, FL Metro Area
1728                  Baltimore-Columbia-Towson, MD Metro Area
1729                Dallas-Fort Worth-Arlington, TX Metro Area
1730                Dallas-Fort Worth-Arlington, TX Metro Area
1731                Dallas-Fort Worth-Arlington, TX Metro Area
1732                     Denver-Aurora-Lakewood, CO Metro Area
1733           Houston-The Woodlands-Sugar Land, TX Metro Area
1734                             Kansas City, MO-KS Metro Area
1735                               St. Louis, MO-IL Metro Area
1736                               St. Louis, MO-IL Metro Area
1737                               St. Louis, MO-IL Metro Area
1738                    Albany-Schenectady-Troy, NY Metro Area
1739          Hartford-East Hartford-Middletown, CT Metro Area
1740                          Birmingham-Hoover, AL Metro Area
1741                        Buffalo-Cheektowaga, NY Metro Area
1742                           Cincinnati, OH-KY-IN Metro Area
1743        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1744               Indianapolis-Carmel-Anderson, IN Metro Area
1745                              Memphis, TN-MS-AR Metro Area
1746                       New Orleans-Metairie, LA Metro Area
1747     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1748                      Phoenix-Mesa-Chandler, AZ Metro Area
1749             Louisville/Jefferson County, KY-IN Metro Area
1750                               St. Louis, MO-IL Metro Area
1751               Austin-Round Rock-Georgetown, TX Metro Area
1752                          Birmingham-Hoover, AL Metro Area
1753 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1754                  Baltimore-Columbia-Towson, MD Metro Area
1755                Charleston-North Charleston, SC Metro Area
1756                                   Columbus, OH Metro Area
1757                Dallas-Fort Worth-Arlington, TX Metro Area
1758   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1759                     Denver-Aurora-Lakewood, CO Metro Area
1760        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1761                      Grand Rapids-Kentwood, MI Metro Area
1762   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1763                               Jacksonville, FL Metro Area
1764          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1765                             Kansas City, MO-KS Metro Area
1766                  Orlando-Kissimmee-Sanford, FL Metro Area
1767        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1768                       New Orleans-Metairie, LA Metro Area
1769                    Omaha-Council Bluffs, NE-IA Metro Area
1770     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1771                      Phoenix-Mesa-Chandler, AZ Metro Area
1772                      Providence-Warwick, RI-MA Metro Area
1773                                   Richmond, VA Metro Area
1774             San Diego-Chula Vista-Carlsbad, CA Metro Area
1775             Louisville/Jefferson County, KY-IN Metro Area
1776                    Seattle-Tacoma-Bellevue, WA Metro Area
1777             San Francisco-Oakland-Berkeley, CA Metro Area
1778            Tampa-St. Petersburg-Clearwater, FL Metro Area
1779                 Boston-Cambridge-Newton, MA-NH Metro Area
1780                        Buffalo-Cheektowaga, NY Metro Area
1781                           Cleveland-Elyria, OH Metro Area
1782                           Cleveland-Elyria, OH Metro Area
1783                           Cincinnati, OH-KY-IN Metro Area
1784           Houston-The Woodlands-Sugar Land, TX Metro Area
1785           Houston-The Woodlands-Sugar Land, TX Metro Area
1786             Los Angeles-Long Beach-Anaheim, CA Metro Area
1787                              Memphis, TN-MS-AR Metro Area
1788        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1789  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1790             San Francisco-Oakland-Berkeley, CA Metro Area
1791                              Oklahoma City, OK Metro Area
1792    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1793                                 Pittsburgh, PA Metro Area
1794                               Raleigh-Cary, NC Metro Area
1795                      Cape Coral-Fort Myers, FL Metro Area
1796                Sacramento-Roseville-Folsom, CA Metro Area
1797             Los Angeles-Long Beach-Anaheim, CA Metro Area
1798              North Port-Sarasota-Bradenton, FL Metro Area
1799                               St. Louis, MO-IL Metro Area
1800                                     Tucson, AZ Metro Area
1801                  Orlando-Kissimmee-Sanford, FL Metro Area
1802             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1803                Dallas-Fort Worth-Arlington, TX Metro Area
1804                     Denver-Aurora-Lakewood, CO Metro Area
1805           Houston-The Woodlands-Sugar Land, TX Metro Area
1806                  Baltimore-Columbia-Towson, MD Metro Area
1807                               St. Louis, MO-IL Metro Area
1808             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1809                       New Orleans-Metairie, LA Metro Area
1810                               St. Louis, MO-IL Metro Area
1811                  Baltimore-Columbia-Towson, MD Metro Area
1812   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1813                      Phoenix-Mesa-Chandler, AZ Metro Area
1814                      Cape Coral-Fort Myers, FL Metro Area
1815                               St. Louis, MO-IL Metro Area
1816           Houston-The Woodlands-Sugar Land, TX Metro Area
1817                               St. Louis, MO-IL Metro Area
1818           Houston-The Woodlands-Sugar Land, TX Metro Area
1819           Houston-The Woodlands-Sugar Land, TX Metro Area
1820                             Kansas City, MO-KS Metro Area
1821 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1822                  Baltimore-Columbia-Towson, MD Metro Area
1823        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1824             Los Angeles-Long Beach-Anaheim, CA Metro Area
1825          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1826                  Orlando-Kissimmee-Sanford, FL Metro Area
1827                  Orlando-Kissimmee-Sanford, FL Metro Area
1828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1829                  San Antonio-New Braunfels, TX Metro Area
1830            Tampa-St. Petersburg-Clearwater, FL Metro Area
1831                Dallas-Fort Worth-Arlington, TX Metro Area
1832                  Baltimore-Columbia-Towson, MD Metro Area
1833             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1834               Austin-Round Rock-Georgetown, TX Metro Area
1835                                 Bellingham, WA Metro Area
1836             Los Angeles-Long Beach-Anaheim, CA Metro Area
1837                             Urban Honolulu, HI Metro Area
1838                                      Kapaa, HI Micro Area
1839           Riverside-San Bernardino-Ontario, CA Metro Area
1840                      Phoenix-Mesa-Chandler, AZ Metro Area
1841           Riverside-San Bernardino-Ontario, CA Metro Area
1842             San Diego-Chula Vista-Carlsbad, CA Metro Area
1843                                 Boise City, ID Metro Area
1844             Los Angeles-Long Beach-Anaheim, CA Metro Area
1845                         Eugene-Springfield, OR Metro Area
1846                     Spokane-Spokane Valley, WA Metro Area
1847                                       Hilo, HI Micro Area
1848                  Santa Maria-Santa Barbara, CA Metro Area
1849             Los Angeles-Long Beach-Anaheim, CA Metro Area
1850                             Urban Honolulu, HI Metro Area
1851               Austin-Round Rock-Georgetown, TX Metro Area
1852           Houston-The Woodlands-Sugar Land, TX Metro Area
1853             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1854                      Phoenix-Mesa-Chandler, AZ Metro Area
1855                               St. Louis, MO-IL Metro Area
1856               Las Vegas-Henderson-Paradise, NV Metro Area
1857             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1858                               St. Louis, MO-IL Metro Area
1859           Houston-The Woodlands-Sugar Land, TX Metro Area
1860             San Francisco-Oakland-Berkeley, CA Metro Area
1861             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1862 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1863                      Phoenix-Mesa-Chandler, AZ Metro Area
1864 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1865                Dallas-Fort Worth-Arlington, TX Metro Area
1866 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1867             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1868                  Baltimore-Columbia-Towson, MD Metro Area
1869                  Orlando-Kissimmee-Sanford, FL Metro Area
1870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1871                      Phoenix-Mesa-Chandler, AZ Metro Area
1872                      Phoenix-Mesa-Chandler, AZ Metro Area
1873                      Phoenix-Mesa-Chandler, AZ Metro Area
1874             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1875             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1876                     Denver-Aurora-Lakewood, CO Metro Area
1877               Austin-Round Rock-Georgetown, TX Metro Area
1878                     Spokane-Spokane Valley, WA Metro Area
1879           Houston-The Woodlands-Sugar Land, TX Metro Area
1880             San Francisco-Oakland-Berkeley, CA Metro Area
1881                              Oklahoma City, OK Metro Area
1882            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1883                                       Reno, NV Metro Area
1884                  San Antonio-New Braunfels, TX Metro Area
1885             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1886                             Salt Lake City, UT Metro Area
1887                Sacramento-Roseville-Folsom, CA Metro Area
1888                                Albuquerque, NM Metro Area
1889               Austin-Round Rock-Georgetown, TX Metro Area
1890             Los Angeles-Long Beach-Anaheim, CA Metro Area
1891                                   Columbus, OH Metro Area
1892                           Colorado Springs, CO Metro Area
1893                                    El Paso, TX Metro Area
1894        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1895             Los Angeles-Long Beach-Anaheim, CA Metro Area
1896                                      Kapaa, HI Micro Area
1897                         Milwaukee-Waukesha, WI Metro Area
1898                    Omaha-Council Bluffs, NE-IA Metro Area
1899           Riverside-San Bernardino-Ontario, CA Metro Area
1900           Riverside-San Bernardino-Ontario, CA Metro Area
1901             Los Angeles-Long Beach-Anaheim, CA Metro Area
1902            Tampa-St. Petersburg-Clearwater, FL Metro Area
1903                      Phoenix-Mesa-Chandler, AZ Metro Area
1904                      Cape Coral-Fort Myers, FL Metro Area
1905              North Port-Sarasota-Bradenton, FL Metro Area
1906 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1907                  Baltimore-Columbia-Towson, MD Metro Area
1908        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1909 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1910                Dallas-Fort Worth-Arlington, TX Metro Area
1911           Houston-The Woodlands-Sugar Land, TX Metro Area
1912                Sacramento-Roseville-Folsom, CA Metro Area
1913               Las Vegas-Henderson-Paradise, NV Metro Area
1914             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1915                               St. Louis, MO-IL Metro Area
1916                  Baltimore-Columbia-Towson, MD Metro Area
1917                  Baltimore-Columbia-Towson, MD Metro Area
1918                  Orlando-Kissimmee-Sanford, FL Metro Area
1919            Tampa-St. Petersburg-Clearwater, FL Metro Area
1920             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1921             Los Angeles-Long Beach-Anaheim, CA Metro Area
1922             Los Angeles-Long Beach-Anaheim, CA Metro Area
1923             San Diego-Chula Vista-Carlsbad, CA Metro Area
1924             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1925                  Orlando-Kissimmee-Sanford, FL Metro Area
1926            Tampa-St. Petersburg-Clearwater, FL Metro Area
1927             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1928                         Milwaukee-Waukesha, WI Metro Area
1929   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1930                             Kansas City, MO-KS Metro Area
1931             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1932             Louisville/Jefferson County, KY-IN Metro Area
1933                                 Boise City, ID Metro Area
1934                Dallas-Fort Worth-Arlington, TX Metro Area
1935           Houston-The Woodlands-Sugar Land, TX Metro Area
1936             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1937                             Urban Honolulu, HI Metro Area
1938                    Kahului-Wailuku-Lahaina, HI Metro Area
1939                                     Tucson, AZ Metro Area
1940                Dallas-Fort Worth-Arlington, TX Metro Area
1941           Houston-The Woodlands-Sugar Land, TX Metro Area
1942 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1943                Dallas-Fort Worth-Arlington, TX Metro Area
1944                                    El Paso, TX Metro Area
1945             Los Angeles-Long Beach-Anaheim, CA Metro Area
1946               Las Vegas-Henderson-Paradise, NV Metro Area
1947             San Francisco-Oakland-Berkeley, CA Metro Area
1948                  Orlando-Kissimmee-Sanford, FL Metro Area
1949             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1950                  Baltimore-Columbia-Towson, MD Metro Area
1951                      Cape Coral-Fort Myers, FL Metro Area
1952            Tampa-St. Petersburg-Clearwater, FL Metro Area
1953             San Francisco-Oakland-Berkeley, CA Metro Area
1954             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1955                      Phoenix-Mesa-Chandler, AZ Metro Area
1956             Los Angeles-Long Beach-Anaheim, CA Metro Area
1957             San Diego-Chula Vista-Carlsbad, CA Metro Area
1958                Dallas-Fort Worth-Arlington, TX Metro Area
1959               Las Vegas-Henderson-Paradise, NV Metro Area
1960                    Kahului-Wailuku-Lahaina, HI Metro Area
1961                    Kahului-Wailuku-Lahaina, HI Metro Area
1962                             Urban Honolulu, HI Metro Area
1963                                       Hilo, HI Micro Area
1964             Los Angeles-Long Beach-Anaheim, CA Metro Area
1965           Riverside-San Bernardino-Ontario, CA Metro Area
1966                                       Reno, NV Metro Area
1967             Los Angeles-Long Beach-Anaheim, CA Metro Area
1968                  Orlando-Kissimmee-Sanford, FL Metro Area
1969                Dallas-Fort Worth-Arlington, TX Metro Area
1970             Los Angeles-Long Beach-Anaheim, CA Metro Area
1971                  Orlando-Kissimmee-Sanford, FL Metro Area
1972                Sacramento-Roseville-Folsom, CA Metro Area
1973                     Spokane-Spokane Valley, WA Metro Area
1974             San Diego-Chula Vista-Carlsbad, CA Metro Area
1975                    Seattle-Tacoma-Bellevue, WA Metro Area
1976             Los Angeles-Long Beach-Anaheim, CA Metro Area
1977                             Urban Honolulu, HI Metro Area
1978             Los Angeles-Long Beach-Anaheim, CA Metro Area
1979           Riverside-San Bernardino-Ontario, CA Metro Area
1980           Riverside-San Bernardino-Ontario, CA Metro Area
1981             Los Angeles-Long Beach-Anaheim, CA Metro Area
1982                Dallas-Fort Worth-Arlington, TX Metro Area
1983                      Phoenix-Mesa-Chandler, AZ Metro Area
1984               Austin-Round Rock-Georgetown, TX Metro Area
1985                                   Columbus, OH Metro Area
1986               Austin-Round Rock-Georgetown, TX Metro Area
1987               Indianapolis-Carmel-Anderson, IN Metro Area
1988          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1989                  Baltimore-Columbia-Towson, MD Metro Area
1990                Dallas-Fort Worth-Arlington, TX Metro Area
1991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1992           Houston-The Woodlands-Sugar Land, TX Metro Area
1993                               Jacksonville, FL Metro Area
1994          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1995             Los Angeles-Long Beach-Anaheim, CA Metro Area
1996             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1997                       New Orleans-Metairie, LA Metro Area
1998                    Seattle-Tacoma-Bellevue, WA Metro Area
1999               Austin-Round Rock-Georgetown, TX Metro Area
2000 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2001 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2002                                   Columbus, OH Metro Area
2003                 Des Moines-West Des Moines, IA Metro Area
2004                                Panama City, FL Metro Area
2005                                    Wichita, KS Metro Area
2006             Los Angeles-Long Beach-Anaheim, CA Metro Area
2007       Little Rock-North Little Rock-Conway, AR Metro Area
2008                             Kansas City, MO-KS Metro Area
2009                  Orlando-Kissimmee-Sanford, FL Metro Area
2010        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2011                         Milwaukee-Waukesha, WI Metro Area
2012                              Oklahoma City, OK Metro Area
2013                    Omaha-Council Bluffs, NE-IA Metro Area
2014                      Phoenix-Mesa-Chandler, AZ Metro Area
2015                 Pensacola-Ferry Pass-Brent, FL Metro Area
2016              North Port-Sarasota-Bradenton, FL Metro Area
2017 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2018                  Baltimore-Columbia-Towson, MD Metro Area
2019                                   Columbus, OH Metro Area
2020   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2021             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2022                               Raleigh-Cary, NC Metro Area
2023             Louisville/Jefferson County, KY-IN Metro Area
2024          Hartford-East Hartford-Middletown, CT Metro Area
2025                          Birmingham-Hoover, AL Metro Area
2026                        Buffalo-Cheektowaga, NY Metro Area
2027                           Cincinnati, OH-KY-IN Metro Area
2028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2029             San Diego-Chula Vista-Carlsbad, CA Metro Area
2030               Las Vegas-Henderson-Paradise, NV Metro Area
2031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2032                Dallas-Fort Worth-Arlington, TX Metro Area
2033           Houston-The Woodlands-Sugar Land, TX Metro Area
2034                      Phoenix-Mesa-Chandler, AZ Metro Area
2035   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2036                               St. Louis, MO-IL Metro Area
2037                Dallas-Fort Worth-Arlington, TX Metro Area
2038                      Phoenix-Mesa-Chandler, AZ Metro Area
2039                Dallas-Fort Worth-Arlington, TX Metro Area
2040                Dallas-Fort Worth-Arlington, TX Metro Area
2041                Dallas-Fort Worth-Arlington, TX Metro Area
2042          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2043                                 Pittsburgh, PA Metro Area
2044                                   Savannah, GA Metro Area
2045                                      Tulsa, OK Metro Area
2046                Dallas-Fort Worth-Arlington, TX Metro Area
2047                      Phoenix-Mesa-Chandler, AZ Metro Area
2048                                Bakersfield, CA Metro Area
2049                         Eugene-Springfield, OR Metro Area
2050                Dallas-Fort Worth-Arlington, TX Metro Area
2051                Dallas-Fort Worth-Arlington, TX Metro Area
2052           Houston-The Woodlands-Sugar Land, TX Metro Area
2053           Houston-The Woodlands-Sugar Land, TX Metro Area
2054           Houston-The Woodlands-Sugar Land, TX Metro Area
2055   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2056   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2057    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2058          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2059               Indianapolis-Carmel-Anderson, IN Metro Area
2060          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2061                                   Columbus, OH Metro Area
2062          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2063          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2064          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2065          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2066          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2067          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2068          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2069                                 Pittsburgh, PA Metro Area
2070                               Raleigh-Cary, NC Metro Area
2071          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2073          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2074              Charlotte-Concord-Gastonia, NC-SC Metro Area
2075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2076          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2077          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2078          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2079          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2080          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2081                 Boston-Cambridge-Newton, MA-NH Metro Area
2082    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2083          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2084              Charlotte-Concord-Gastonia, NC-SC Metro Area
2085          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2086                               Raleigh-Cary, NC Metro Area
2087             Louisville/Jefferson County, KY-IN Metro Area
2088                 Boston-Cambridge-Newton, MA-NH Metro Area
2089          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2090                Charleston-North Charleston, SC Metro Area
2091                    Detroit-Warren-Dearborn, MI Metro Area
2092                                   Key West, FL Micro Area
2093                         Milwaukee-Waukesha, WI Metro Area
2094                       New Orleans-Metairie, LA Metro Area
2095                    Portland-South Portland, ME Metro Area
2096              Charlotte-Concord-Gastonia, NC-SC Metro Area
2097          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2098                       New Orleans-Metairie, LA Metro Area
2099              North Port-Sarasota-Bradenton, FL Metro Area
2100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2101                 Boston-Cambridge-Newton, MA-NH Metro Area
2102              Charlotte-Concord-Gastonia, NC-SC Metro Area
2103   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2104          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2105 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2106                  Baltimore-Columbia-Towson, MD Metro Area
2107                  Baltimore-Columbia-Towson, MD Metro Area
2108   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2109     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2110    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2111    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2112                                 Pittsburgh, PA Metro Area
2113                           Cleveland-Elyria, OH Metro Area
2114                                   Columbus, OH Metro Area
2115               Indianapolis-Carmel-Anderson, IN Metro Area
2116               Indianapolis-Carmel-Anderson, IN Metro Area
2117                                   Richmond, VA Metro Area
2118                           Cincinnati, OH-KY-IN Metro Area
2119              Charlotte-Concord-Gastonia, NC-SC Metro Area
2120                               Jacksonville, FL Metro Area
2121                 Boston-Cambridge-Newton, MA-NH Metro Area
2122                               Raleigh-Cary, NC Metro Area
2123                                   Columbus, OH Metro Area
2124   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2125   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2126          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2127          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2128                 Boston-Cambridge-Newton, MA-NH Metro Area
2129          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2130          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2131             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2132                 Boston-Cambridge-Newton, MA-NH Metro Area
2133   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2134          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2135   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2136    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2137          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2138   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2139              Charlotte-Concord-Gastonia, NC-SC Metro Area
2140          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2141              Charlotte-Concord-Gastonia, NC-SC Metro Area
2142   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2144   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2145   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2146   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2147                        Buffalo-Cheektowaga, NY Metro Area
2148   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2149             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2150                      Greensboro-High Point, NC Metro Area
2151          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2152   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2153        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2154        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2155                                    Bozeman, MT Micro Area
2156             San Francisco-Oakland-Berkeley, CA Metro Area
2157        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2158    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2159    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2160    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2161    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2162    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2163    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2164    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2165    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2166    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2167                 Boston-Cambridge-Newton, MA-NH Metro Area
2168    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2169                                  Flagstaff, AZ Metro Area
2170                     Denver-Aurora-Lakewood, CO Metro Area
2171   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2172       Little Rock-North Little Rock-Conway, AR Metro Area
2173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2174                                   Key West, FL Micro Area
2175                  Orlando-Kissimmee-Sanford, FL Metro Area
2176                  Orlando-Kissimmee-Sanford, FL Metro Area
2177            Tampa-St. Petersburg-Clearwater, FL Metro Area
2178        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2179            Tampa-St. Petersburg-Clearwater, FL Metro Area
2180                          New Haven-Milford, CT Metro Area
2181                 Boston-Cambridge-Newton, MA-NH Metro Area
2182           Houston-The Woodlands-Sugar Land, TX Metro Area
2183          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2184                         Milwaukee-Waukesha, WI Metro Area
2185          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2186               Las Vegas-Henderson-Paradise, NV Metro Area
2187        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2188                 Boston-Cambridge-Newton, MA-NH Metro Area
2189           Riverside-San Bernardino-Ontario, CA Metro Area
2190                    Kahului-Wailuku-Lahaina, HI Metro Area
2191                Dallas-Fort Worth-Arlington, TX Metro Area
2192                      Phoenix-Mesa-Chandler, AZ Metro Area
2193                Dallas-Fort Worth-Arlington, TX Metro Area
2194                                                      <NA>
2195             San Diego-Chula Vista-Carlsbad, CA Metro Area
2196             San Francisco-Oakland-Berkeley, CA Metro Area
2197                             Kansas City, MO-KS Metro Area
2198                               Raleigh-Cary, NC Metro Area
2199        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2200                    Seattle-Tacoma-Bellevue, WA Metro Area
2201                             Urban Honolulu, HI Metro Area
2202                      Cape Coral-Fort Myers, FL Metro Area
2203             San Francisco-Oakland-Berkeley, CA Metro Area
2204                      Cape Coral-Fort Myers, FL Metro Area
2205          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2206          Hartford-East Hartford-Middletown, CT Metro Area
2207                                Albuquerque, NM Metro Area
2208                 Boston-Cambridge-Newton, MA-NH Metro Area
2209                                 Jackson, WY-ID Micro Area
2210              Palm Bay-Melbourne-Titusville, FL Metro Area
2211        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2212            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2213                  Orlando-Kissimmee-Sanford, FL Metro Area
2214             Los Angeles-Long Beach-Anaheim, CA Metro Area
2215                             Kansas City, MO-KS Metro Area
2216                      Phoenix-Mesa-Chandler, AZ Metro Area
2217                Dallas-Fort Worth-Arlington, TX Metro Area
2218               Austin-Round Rock-Georgetown, TX Metro Area
2219                     Denver-Aurora-Lakewood, CO Metro Area
2220        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2221                    San Juan-Bayamón-Caguas, PR Metro Area
2222                           Cincinnati, OH-KY-IN Metro Area
2223          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2224                               Raleigh-Cary, NC Metro Area
2225        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2226             San Diego-Chula Vista-Carlsbad, CA Metro Area
2227           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2228               Austin-Round Rock-Georgetown, TX Metro Area
2229                             Kansas City, MO-KS Metro Area
2230        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2231             Los Angeles-Long Beach-Anaheim, CA Metro Area
2232                    Seattle-Tacoma-Bellevue, WA Metro Area
2233              Charlotte-Concord-Gastonia, NC-SC Metro Area
2234          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2235           Riverside-San Bernardino-Ontario, CA Metro Area
2236                      Cape Coral-Fort Myers, FL Metro Area
2237             Los Angeles-Long Beach-Anaheim, CA Metro Area
2238                 Boston-Cambridge-Newton, MA-NH Metro Area
2239                          Steamboat Springs, CO Micro Area
2240                                       Reno, NV Metro Area
2241                             Salt Lake City, UT Metro Area
2242             San Francisco-Oakland-Berkeley, CA Metro Area
2243            Tampa-St. Petersburg-Clearwater, FL Metro Area
2244                               Raleigh-Cary, NC Metro Area
2245                                   Columbus, OH Metro Area
2246                             Kansas City, MO-KS Metro Area
2247                                Albuquerque, NM Metro Area
2248          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2249                    Seattle-Tacoma-Bellevue, WA Metro Area
2250        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2251                             Salt Lake City, UT Metro Area
2252            Tampa-St. Petersburg-Clearwater, FL Metro Area
2253                    San Juan-Bayamón-Caguas, PR Metro Area
2254        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2255                                  Anchorage, AK Metro Area
2256                             Urban Honolulu, HI Metro Area
2257                                                      <NA>
2258                             Urban Honolulu, HI Metro Area
2259                                       Hilo, HI Micro Area
2260                             Urban Honolulu, HI Metro Area
2261                    Kahului-Wailuku-Lahaina, HI Metro Area
2262               Las Vegas-Henderson-Paradise, NV Metro Area
2263           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2264                                Baton Rouge, LA Metro Area
2265                                Gainesville, FL Metro Area
2266                            Gulfport-Biloxi, MS Metro Area
2267                          Lexington-Fayette, KY Metro Area
2268                                     Mobile, AL Metro Area
2269                                    Roanoke, VA Metro Area
2270                                Springfield, MO Metro Area
2271                                      Tulsa, OK Metro Area
2272          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2273                         Milwaukee-Waukesha, WI Metro Area
2274                                   Richmond, VA Metro Area
2275           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2276          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2277                 Boston-Cambridge-Newton, MA-NH Metro Area
2278                    Detroit-Warren-Dearborn, MI Metro Area
2279                Burlington-South Burlington, VT Metro Area
2280                Charleston-North Charleston, SC Metro Area
2281                                Spartanburg, SC Metro Area
2282                    Portland-South Portland, ME Metro Area
2283                               Raleigh-Cary, NC Metro Area
2284                                  Rochester, NY Metro Area
2285                                  Knoxville, TN Metro Area
2286                           Cincinnati, OH-KY-IN Metro Area
2287           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2288          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2289                                     Bangor, ME Metro Area
2290 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2291                Charleston-North Charleston, SC Metro Area
2292                Charleston-North Charleston, SC Metro Area
2293                                 Pittsburgh, PA Metro Area
2294                                   Savannah, GA Metro Area
2295                          Birmingham-Hoover, AL Metro Area
2296                      Greensboro-High Point, NC Metro Area
2297                                Spartanburg, SC Metro Area
2298                              Memphis, TN-MS-AR Metro Area
2299                    Portland-South Portland, ME Metro Area
2300                                   Savannah, GA Metro Area
2301           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2302                           Cincinnati, OH-KY-IN Metro Area
2303                 Des Moines-West Des Moines, IA Metro Area
2304          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2305          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2306           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2307                    Detroit-Warren-Dearborn, MI Metro Area
2308          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2309            Tampa-St. Petersburg-Clearwater, FL Metro Area
2310                 Boston-Cambridge-Newton, MA-NH Metro Area
2311                Dallas-Fort Worth-Arlington, TX Metro Area
2312          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2313        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2314               Austin-Round Rock-Georgetown, TX Metro Area
2315                Dallas-Fort Worth-Arlington, TX Metro Area
2316                Dallas-Fort Worth-Arlington, TX Metro Area
2317                      Phoenix-Mesa-Chandler, AZ Metro Area
2318              Charlotte-Concord-Gastonia, NC-SC Metro Area
2319                                   Columbus, OH Metro Area
2320               Las Vegas-Henderson-Paradise, NV Metro Area
2321        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2322                       New Orleans-Metairie, LA Metro Area
2323     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2324                      Phoenix-Mesa-Chandler, AZ Metro Area
2325                                 Pittsburgh, PA Metro Area
2326                    Portland-South Portland, ME Metro Area
2327            Tampa-St. Petersburg-Clearwater, FL Metro Area
2328              Charlotte-Concord-Gastonia, NC-SC Metro Area
2329          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2330                               Jacksonville, FL Metro Area
2331                              Memphis, TN-MS-AR Metro Area
2332                                Albuquerque, NM Metro Area
2333                                     Bangor, ME Metro Area
2334                                   Columbus, OH Metro Area
2335                      Greensboro-High Point, NC Metro Area
2336                                    Wichita, KS Metro Area
2337             Los Angeles-Long Beach-Anaheim, CA Metro Area
2338                        Harrisburg-Carlisle, PA Metro Area
2339                   McAllen-Edinburg-Mission, TX Metro Area
2340                         Milwaukee-Waukesha, WI Metro Area
2341           Riverside-San Bernardino-Ontario, CA Metro Area
2342        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2343                    Portland-South Portland, ME Metro Area
2344                      Cape Coral-Fort Myers, FL Metro Area
2345             San Francisco-Oakland-Berkeley, CA Metro Area
2346             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2347             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2348              Charlotte-Concord-Gastonia, NC-SC Metro Area
2349        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2350                Dallas-Fort Worth-Arlington, TX Metro Area
2351                Dallas-Fort Worth-Arlington, TX Metro Area
2352        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2353                Dallas-Fort Worth-Arlington, TX Metro Area
2354              Charlotte-Concord-Gastonia, NC-SC Metro Area
2355                Dallas-Fort Worth-Arlington, TX Metro Area
2356              Charlotte-Concord-Gastonia, NC-SC Metro Area
2357             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2358               Austin-Round Rock-Georgetown, TX Metro Area
2359                Dallas-Fort Worth-Arlington, TX Metro Area
2360              Charlotte-Concord-Gastonia, NC-SC Metro Area
2361                Dallas-Fort Worth-Arlington, TX Metro Area
2362                Dallas-Fort Worth-Arlington, TX Metro Area
2363            Tampa-St. Petersburg-Clearwater, FL Metro Area
2364               Las Vegas-Henderson-Paradise, NV Metro Area
2365                      Phoenix-Mesa-Chandler, AZ Metro Area
2366             San Francisco-Oakland-Berkeley, CA Metro Area
2367                    San Juan-Bayamón-Caguas, PR Metro Area
2368                                                      <NA>
2369              Charlotte-Concord-Gastonia, NC-SC Metro Area
2370                Dallas-Fort Worth-Arlington, TX Metro Area
2371                Dallas-Fort Worth-Arlington, TX Metro Area
2372                                   Key West, FL Micro Area
2373           Riverside-San Bernardino-Ontario, CA Metro Area
2374                    San Juan-Bayamón-Caguas, PR Metro Area
2375             Los Angeles-Long Beach-Anaheim, CA Metro Area
2376              North Port-Sarasota-Bradenton, FL Metro Area
2377              Charlotte-Concord-Gastonia, NC-SC Metro Area
2378                Dallas-Fort Worth-Arlington, TX Metro Area
2379                      Cape Coral-Fort Myers, FL Metro Area
2380                 Boston-Cambridge-Newton, MA-NH Metro Area
2381          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2382          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2383        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2384              Charlotte-Concord-Gastonia, NC-SC Metro Area
2385                Dallas-Fort Worth-Arlington, TX Metro Area
2386        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2387                Dallas-Fort Worth-Arlington, TX Metro Area
2388                Dallas-Fort Worth-Arlington, TX Metro Area
2389    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2390              Charlotte-Concord-Gastonia, NC-SC Metro Area
2391              Charlotte-Concord-Gastonia, NC-SC Metro Area
2392              Charlotte-Concord-Gastonia, NC-SC Metro Area
2393        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2394        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2395    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2396                Dallas-Fort Worth-Arlington, TX Metro Area
2397                Dallas-Fort Worth-Arlington, TX Metro Area
2398                             Urban Honolulu, HI Metro Area
2399                                                      <NA>
2400                                  Anchorage, AK Metro Area
2401                    Seattle-Tacoma-Bellevue, WA Metro Area
2402                    Seattle-Tacoma-Bellevue, WA Metro Area
2403                                  Anchorage, AK Metro Area
2404                                  Anchorage, AK Metro Area
2405                                      Kapaa, HI Micro Area
2406            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2407                    Seattle-Tacoma-Bellevue, WA Metro Area
2408                                  Anchorage, AK Metro Area
2409                                      Kapaa, HI Micro Area
2410                    Seattle-Tacoma-Bellevue, WA Metro Area
2411           Riverside-San Bernardino-Ontario, CA Metro Area
2412        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2413                                      Kapaa, HI Micro Area
2414                  Orlando-Kissimmee-Sanford, FL Metro Area
2415   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2416          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2417                 Boston-Cambridge-Newton, MA-NH Metro Area
2418        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2419        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2420             San Francisco-Oakland-Berkeley, CA Metro Area
2421                        Buffalo-Cheektowaga, NY Metro Area
2422        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2423             San Diego-Chula Vista-Carlsbad, CA Metro Area
2424              North Port-Sarasota-Bradenton, FL Metro Area
2425          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2426        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2427                                   Richmond, VA Metro Area
2428                                Albuquerque, NM Metro Area
2429                 Boston-Cambridge-Newton, MA-NH Metro Area
2430             Los Angeles-Long Beach-Anaheim, CA Metro Area
2431        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2432           Riverside-San Bernardino-Ontario, CA Metro Area
2433          Hartford-East Hartford-Middletown, CT Metro Area
2434                        Buffalo-Cheektowaga, NY Metro Area
2435          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2436                  Orlando-Kissimmee-Sanford, FL Metro Area
2437        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2438          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2440            Tampa-St. Petersburg-Clearwater, FL Metro Area
2441          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2442                 Boston-Cambridge-Newton, MA-NH Metro Area
2443                  Orlando-Kissimmee-Sanford, FL Metro Area
2444                    Albany-Schenectady-Troy, NY Metro Area
2445          Hartford-East Hartford-Middletown, CT Metro Area
2446                                 Boise City, ID Metro Area
2447                                    Bozeman, MT Micro Area
2448                                   Columbus, OH Metro Area
2449                           Dayton-Kettering, OH Metro Area
2450                                    Edwards, CO Micro Area
2451                      Greensboro-High Point, NC Metro Area
2452                                 Huntsville, AL Metro Area
2453                                 Wilmington, NC Metro Area
2454                               Jacksonville, FL Metro Area
2455                    Omaha-Council Bluffs, NE-IA Metro Area
2456     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2457                 Pensacola-Ferry Pass-Brent, FL Metro Area
2458                    Portland-South Portland, ME Metro Area
2459                               Raleigh-Cary, NC Metro Area
2460             San Diego-Chula Vista-Carlsbad, CA Metro Area
2461             San Francisco-Oakland-Berkeley, CA Metro Area
2462                    San Juan-Bayamón-Caguas, PR Metro Area
2463             Los Angeles-Long Beach-Anaheim, CA Metro Area
2464                                     Tucson, AZ Metro Area
2465         Crestview-Fort Walton Beach-Destin, FL Metro Area
2466                    Detroit-Warren-Dearborn, MI Metro Area
2467                    Seattle-Tacoma-Bellevue, WA Metro Area
2468                             Salt Lake City, UT Metro Area
2469        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2471                             Salt Lake City, UT Metro Area
2472        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2473               Las Vegas-Henderson-Paradise, NV Metro Area
2474                      Cape Coral-Fort Myers, FL Metro Area
2475                    Detroit-Warren-Dearborn, MI Metro Area
2476          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2477               Austin-Round Rock-Georgetown, TX Metro Area
2478                 Boston-Cambridge-Newton, MA-NH Metro Area
2479                        Buffalo-Cheektowaga, NY Metro Area
2480                         Milwaukee-Waukesha, WI Metro Area
2481  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2482             San Diego-Chula Vista-Carlsbad, CA Metro Area
2483                  San Antonio-New Braunfels, TX Metro Area
2484             San Francisco-Oakland-Berkeley, CA Metro Area
2485              North Port-Sarasota-Bradenton, FL Metro Area
2486           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2487           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2488                    Seattle-Tacoma-Bellevue, WA Metro Area
2489                             Salt Lake City, UT Metro Area
2490                       New Orleans-Metairie, LA Metro Area
2491        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2492               Indianapolis-Carmel-Anderson, IN Metro Area
2493            Tampa-St. Petersburg-Clearwater, FL Metro Area
2494                 Boston-Cambridge-Newton, MA-NH Metro Area
2495                             Salt Lake City, UT Metro Area
2496                 Boston-Cambridge-Newton, MA-NH Metro Area
2497          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2498          Hartford-East Hartford-Middletown, CT Metro Area
2499                  Baltimore-Columbia-Towson, MD Metro Area
2500                    Detroit-Warren-Dearborn, MI Metro Area
2501        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2502                             Kansas City, MO-KS Metro Area
2503                         Milwaukee-Waukesha, WI Metro Area
2504                                   Missoula, MT Metro Area
2505           Riverside-San Bernardino-Ontario, CA Metro Area
2506                  San Antonio-New Braunfels, TX Metro Area
2507                Sacramento-Roseville-Folsom, CA Metro Area
2508             Los Angeles-Long Beach-Anaheim, CA Metro Area
2509              North Port-Sarasota-Bradenton, FL Metro Area
2510                 Boston-Cambridge-Newton, MA-NH Metro Area
2511                    Detroit-Warren-Dearborn, MI Metro Area
2512                           Cincinnati, OH-KY-IN Metro Area
2513                    Detroit-Warren-Dearborn, MI Metro Area
2514               Austin-Round Rock-Georgetown, TX Metro Area
2515          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2516        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2517            Tampa-St. Petersburg-Clearwater, FL Metro Area
2518                 Boston-Cambridge-Newton, MA-NH Metro Area
2519           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2520 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2521                 Boston-Cambridge-Newton, MA-NH Metro Area
2522                  Baltimore-Columbia-Towson, MD Metro Area
2523   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2524        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2525               Indianapolis-Carmel-Anderson, IN Metro Area
2526                       New Orleans-Metairie, LA Metro Area
2527            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2528                               Raleigh-Cary, NC Metro Area
2529                                       Reno, NV Metro Area
2530                  San Antonio-New Braunfels, TX Metro Area
2531                               St. Louis, MO-IL Metro Area
2532            Tampa-St. Petersburg-Clearwater, FL Metro Area
2533           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2534          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2535                Burlington-South Burlington, VT Metro Area
2536                        Buffalo-Cheektowaga, NY Metro Area
2537                      Grand Rapids-Kentwood, MI Metro Area
2538                                Spartanburg, SC Metro Area
2539                Hilton Head Island-Bluffton, SC Metro Area
2540                                   Richmond, VA Metro Area
2541                Burlington-South Burlington, VT Metro Area
2542                               St. Louis, MO-IL Metro Area
2543                                       Hilo, HI Micro Area
2544                Dallas-Fort Worth-Arlington, TX Metro Area
2545                Dallas-Fort Worth-Arlington, TX Metro Area
2546                      Brownsville-Harlingen, TX Metro Area
2547                                   Columbia, SC Metro Area
2548                           Champaign-Urbana, IL Metro Area
2549                             Corpus Christi, TX Metro Area
2550                                Springfield, IL Metro Area
2551                                  Knoxville, TN Metro Area
2552        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2553        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2554                Dallas-Fort Worth-Arlington, TX Metro Area
2555                Dallas-Fort Worth-Arlington, TX Metro Area
2556                Dallas-Fort Worth-Arlington, TX Metro Area
2557                Dallas-Fort Worth-Arlington, TX Metro Area
2558                Dallas-Fort Worth-Arlington, TX Metro Area
2559                    Omaha-Council Bluffs, NE-IA Metro Area
2560        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2561                    Omaha-Council Bluffs, NE-IA Metro Area
2562                 Des Moines-West Des Moines, IA Metro Area
2563                                  Rochester, MN Metro Area
2564                Dallas-Fort Worth-Arlington, TX Metro Area
2565        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2566              Charlotte-Concord-Gastonia, NC-SC Metro Area
2567              Charlotte-Concord-Gastonia, NC-SC Metro Area
2568                                    Madison, WI Metro Area
2569                           Cleveland-Elyria, OH Metro Area
2570                    Detroit-Warren-Dearborn, MI Metro Area
2571                                  Lafayette, LA Metro Area
2572       Little Rock-North Little Rock-Conway, AR Metro Area
2573                        Harrisburg-Carlisle, PA Metro Area
2574                           Dayton-Kettering, OH Metro Area
2575                                  Knoxville, TN Metro Area
2576   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2577    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2578                          Manchester-Nashua, NH Metro Area
2579   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2580   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2581        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2582                     Denver-Aurora-Lakewood, CO Metro Area
2583                Dallas-Fort Worth-Arlington, TX Metro Area
2584                                   Appleton, WI Metro Area
2585 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2586                                     Casper, WY Metro Area
2587                         Eugene-Springfield, OR Metro Area
2588                                    Midland, TX Metro Area
2589     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2590             Louisville/Jefferson County, KY-IN Metro Area
2591                                                      <NA>
2592                    Albany-Schenectady-Troy, NY Metro Area
2593                    Omaha-Council Bluffs, NE-IA Metro Area
2594                    South Bend-Mishawaka, IN-MI Metro Area
2595                Dallas-Fort Worth-Arlington, TX Metro Area
2596             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2597        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2598                             Kansas City, MO-KS Metro Area
2599                         Milwaukee-Waukesha, WI Metro Area
2600           Riverside-San Bernardino-Ontario, CA Metro Area
2601             Fayetteville-Springdale-Rogers, AR Metro Area
2602                     Denver-Aurora-Lakewood, CO Metro Area
2603                     Denver-Aurora-Lakewood, CO Metro Area
2604           Houston-The Woodlands-Sugar Land, TX Metro Area
2605                                   Bismarck, ND Metro Area
2606                              Memphis, TN-MS-AR Metro Area
2607                              Oklahoma City, OK Metro Area
2608                    Omaha-Council Bluffs, NE-IA Metro Area
2609                                 Pittsburgh, PA Metro Area
2610                                   Richmond, VA Metro Area
2611             Louisville/Jefferson County, KY-IN Metro Area
2612        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2613          Hartford-East Hartford-Middletown, CT Metro Area
2614                    Albany-Schenectady-Troy, NY Metro Area
2615                          Birmingham-Hoover, AL Metro Area
2616                              Memphis, TN-MS-AR Metro Area
2617                                 Rapid City, SD Metro Area
2618                    Detroit-Warren-Dearborn, MI Metro Area
2619                                    Durango, CO Micro Area
2620        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2621                     Denver-Aurora-Lakewood, CO Metro Area
2622           Riverside-San Bernardino-Ontario, CA Metro Area
2623                                Albuquerque, NM Metro Area
2624                                     Tucson, AZ Metro Area
2625                                Albuquerque, NM Metro Area
2626                                     Fresno, CA Metro Area
2627                                     Helena, MT Micro Area
2628                         Kennewick-Richland, WA Metro Area
2629           Riverside-San Bernardino-Ontario, CA Metro Area
2630                                 Rapid City, SD Metro Area
2631                                     Tucson, AZ Metro Area
2632                             Salt Lake City, UT Metro Area
2633                                 Boise City, ID Metro Area
2634             San Francisco-Oakland-Berkeley, CA Metro Area
2635                                      Kapaa, HI Micro Area
2636                                    Madison, WI Metro Area
2637                                   Missoula, MT Metro Area
2638           Houston-The Woodlands-Sugar Land, TX Metro Area
2639                  San Antonio-New Braunfels, TX Metro Area
2640                Sacramento-Roseville-Folsom, CA Metro Area
2641                     Denver-Aurora-Lakewood, CO Metro Area
2642           Houston-The Woodlands-Sugar Land, TX Metro Area
2643            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2644                      Phoenix-Mesa-Chandler, AZ Metro Area
2645             San Diego-Chula Vista-Carlsbad, CA Metro Area
2646                    San Juan-Bayamón-Caguas, PR Metro Area
2647                  Baltimore-Columbia-Towson, MD Metro Area
2648                                   Columbus, OH Metro Area
2649                           Cincinnati, OH-KY-IN Metro Area
2650                             Urban Honolulu, HI Metro Area
2651                                 Jackson, WY-ID Micro Area
2652    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2653                                 Pittsburgh, PA Metro Area
2654                    Seattle-Tacoma-Bellevue, WA Metro Area
2655          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2656           Houston-The Woodlands-Sugar Land, TX Metro Area
2657           Houston-The Woodlands-Sugar Land, TX Metro Area
2658           Houston-The Woodlands-Sugar Land, TX Metro Area
2659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2660             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2661                  Baltimore-Columbia-Towson, MD Metro Area
2662                             Urban Honolulu, HI Metro Area
2663                  Orlando-Kissimmee-Sanford, FL Metro Area
2664                    Seattle-Tacoma-Bellevue, WA Metro Area
2665          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2666                     Denver-Aurora-Lakewood, CO Metro Area
2667          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2668             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2669 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2670                    San Juan-Bayamón-Caguas, PR Metro Area
2671                      Cape Coral-Fort Myers, FL Metro Area
2672                                Panama City, FL Metro Area
2673           Houston-The Woodlands-Sugar Land, TX Metro Area
2674                             Urban Honolulu, HI Metro Area
2675                             Kansas City, MO-KS Metro Area
2676 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2677                             Urban Honolulu, HI Metro Area
2678               Indianapolis-Carmel-Anderson, IN Metro Area
2679                  San Antonio-New Braunfels, TX Metro Area
2680        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2681           Houston-The Woodlands-Sugar Land, TX Metro Area
2682                Dallas-Fort Worth-Arlington, TX Metro Area
2683                 Des Moines-West Des Moines, IA Metro Area
2684                                   Key West, FL Micro Area
2685             Louisville/Jefferson County, KY-IN Metro Area
2686   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2687                Charleston-North Charleston, SC Metro Area
2688                           Cleveland-Elyria, OH Metro Area
2689                               Jacksonville, FL Metro Area
2690                 Boston-Cambridge-Newton, MA-NH Metro Area
2691          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2692                                    Madison, WI Metro Area
2693                                   Columbus, OH Metro Area
2694                             Kansas City, MO-KS Metro Area
2695                              Memphis, TN-MS-AR Metro Area
2696                                    Madison, WI Metro Area
2697             Louisville/Jefferson County, KY-IN Metro Area
2698          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2699             Fayetteville-Springdale-Rogers, AR Metro Area
2700                                   Key West, FL Micro Area
2701             Louisville/Jefferson County, KY-IN Metro Area
2702          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2703          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2704                Charleston-North Charleston, SC Metro Area
2705                               Jacksonville, FL Metro Area
2706             Louisville/Jefferson County, KY-IN Metro Area
2707                                   Key West, FL Micro Area
2708                       New Orleans-Metairie, LA Metro Area
2709              Charlotte-Concord-Gastonia, NC-SC Metro Area
2710                 Boston-Cambridge-Newton, MA-NH Metro Area
2711          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2712             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2713                                     Ithaca, NY Metro Area
2714                                   Columbia, SC Metro Area
2715                 Pensacola-Ferry Pass-Brent, FL Metro Area
2716             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2717                      Brownsville-Harlingen, TX Metro Area
2718        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2719                                  Green Bay, WI Metro Area
2720                               Salisbury, MD-DE Metro Area
2721             Louisville/Jefferson County, KY-IN Metro Area
2722    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2723          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2724                                   Savannah, GA Metro Area
2725           Houston-The Woodlands-Sugar Land, TX Metro Area
2726                                  Dickinson, ND Micro Area
2727                    Albany-Schenectady-Troy, NY Metro Area
2728                                     Mobile, AL Metro Area
2729                               St. Louis, MO-IL Metro Area
2730           Houston-The Woodlands-Sugar Land, TX Metro Area
2731                     Denver-Aurora-Lakewood, CO Metro Area
2732              Allentown-Bethlehem-Easton, PA-NJ Metro Area
2733          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2734          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2735          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2736        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2737          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2738          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2739                Burlington-South Burlington, VT Metro Area
2740                    Portland-South Portland, ME Metro Area
2741                                   Columbia, SC Metro Area
2742                      Grand Rapids-Kentwood, MI Metro Area
2743     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2744           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2745          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2746                 Boston-Cambridge-Newton, MA-NH Metro Area
2747          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2748          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2749          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2750          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2751                Dallas-Fort Worth-Arlington, TX Metro Area
2752                Dallas-Fort Worth-Arlington, TX Metro Area
2753        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2754                      Phoenix-Mesa-Chandler, AZ Metro Area
2755              Charlotte-Concord-Gastonia, NC-SC Metro Area
2756              Charlotte-Concord-Gastonia, NC-SC Metro Area
2757                Dallas-Fort Worth-Arlington, TX Metro Area
2758                Dallas-Fort Worth-Arlington, TX Metro Area
2759                Dallas-Fort Worth-Arlington, TX Metro Area
2760                Dallas-Fort Worth-Arlington, TX Metro Area
2761              Charlotte-Concord-Gastonia, NC-SC Metro Area
2762              Charlotte-Concord-Gastonia, NC-SC Metro Area
2763                Dallas-Fort Worth-Arlington, TX Metro Area
2764        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2765                      Phoenix-Mesa-Chandler, AZ Metro Area
2766             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2767                 Boston-Cambridge-Newton, MA-NH Metro Area
2768                        Buffalo-Cheektowaga, NY Metro Area
2769                  Baltimore-Columbia-Towson, MD Metro Area
2770                           Cincinnati, OH-KY-IN Metro Area
2771                Dallas-Fort Worth-Arlington, TX Metro Area
2772                                   Key West, FL Micro Area
2773        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2774             Los Angeles-Long Beach-Anaheim, CA Metro Area
2775        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2776                      Phoenix-Mesa-Chandler, AZ Metro Area
2777                      Cape Coral-Fort Myers, FL Metro Area
2778             San Francisco-Oakland-Berkeley, CA Metro Area
2779                               St. Louis, MO-IL Metro Area
2780                                   Syracuse, NY Metro Area
2781                Dallas-Fort Worth-Arlington, TX Metro Area
2782                Dallas-Fort Worth-Arlington, TX Metro Area
2783              North Port-Sarasota-Bradenton, FL Metro Area
2784    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2785 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2786                                 Boise City, ID Metro Area
2787             Los Angeles-Long Beach-Anaheim, CA Metro Area
2788                           Colorado Springs, CO Metro Area
2789                           Cincinnati, OH-KY-IN Metro Area
2790   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2791                                 Jackson, WY-ID Micro Area
2792       Little Rock-North Little Rock-Conway, AR Metro Area
2793                             Kansas City, MO-KS Metro Area
2794                  Orlando-Kissimmee-Sanford, FL Metro Area
2795        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2796                                 Pittsburgh, PA Metro Area
2797             San Diego-Chula Vista-Carlsbad, CA Metro Area
2798                                   Savannah, GA Metro Area
2799                    San Juan-Bayamón-Caguas, PR Metro Area
2800                Sacramento-Roseville-Folsom, CA Metro Area
2801             Los Angeles-Long Beach-Anaheim, CA Metro Area
2802                Dallas-Fort Worth-Arlington, TX Metro Area
2803              Charlotte-Concord-Gastonia, NC-SC Metro Area
2804              Charlotte-Concord-Gastonia, NC-SC Metro Area
2805             Los Angeles-Long Beach-Anaheim, CA Metro Area
2806                Dallas-Fort Worth-Arlington, TX Metro Area
2807                Dallas-Fort Worth-Arlington, TX Metro Area
2808        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2809                Dallas-Fort Worth-Arlington, TX Metro Area
2810        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2811        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2812              Charlotte-Concord-Gastonia, NC-SC Metro Area
2813                Dallas-Fort Worth-Arlington, TX Metro Area
2814                Dallas-Fort Worth-Arlington, TX Metro Area
2815               Austin-Round Rock-Georgetown, TX Metro Area
2816              Charlotte-Concord-Gastonia, NC-SC Metro Area
2817              Charlotte-Concord-Gastonia, NC-SC Metro Area
2818   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2819                Dallas-Fort Worth-Arlington, TX Metro Area
2820                Dallas-Fort Worth-Arlington, TX Metro Area
2821                Dallas-Fort Worth-Arlington, TX Metro Area
2822    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2823              Charlotte-Concord-Gastonia, NC-SC Metro Area
2824              Charlotte-Concord-Gastonia, NC-SC Metro Area
2825              Charlotte-Concord-Gastonia, NC-SC Metro Area
2826                      Phoenix-Mesa-Chandler, AZ Metro Area
2827                Dallas-Fort Worth-Arlington, TX Metro Area
2828        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2829                               Raleigh-Cary, NC Metro Area
2830 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2831                Charleston-North Charleston, SC Metro Area
2832              Charlotte-Concord-Gastonia, NC-SC Metro Area
2833   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2834                Dallas-Fort Worth-Arlington, TX Metro Area
2835                               Jacksonville, FL Metro Area
2836                    Seattle-Tacoma-Bellevue, WA Metro Area
2837                      Phoenix-Mesa-Chandler, AZ Metro Area
2838              Charlotte-Concord-Gastonia, NC-SC Metro Area
2839                Dallas-Fort Worth-Arlington, TX Metro Area
2840        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2841                                     Tucson, AZ Metro Area
2842                Dallas-Fort Worth-Arlington, TX Metro Area
2843    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2844                Dallas-Fort Worth-Arlington, TX Metro Area
2845              Charlotte-Concord-Gastonia, NC-SC Metro Area
2846              Charlotte-Concord-Gastonia, NC-SC Metro Area
2847                  Orlando-Kissimmee-Sanford, FL Metro Area
2848                                    Madison, WI Metro Area
2849                Dallas-Fort Worth-Arlington, TX Metro Area
2850                Dallas-Fort Worth-Arlington, TX Metro Area
2851                      Phoenix-Mesa-Chandler, AZ Metro Area
2852              Charlotte-Concord-Gastonia, NC-SC Metro Area
2853                Dallas-Fort Worth-Arlington, TX Metro Area
2854        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2855                Dallas-Fort Worth-Arlington, TX Metro Area
2856                Dallas-Fort Worth-Arlington, TX Metro Area
2857        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2858             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2859    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2860        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2861                Dallas-Fort Worth-Arlington, TX Metro Area
2862                Dallas-Fort Worth-Arlington, TX Metro Area
2863    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2864    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2865                Dallas-Fort Worth-Arlington, TX Metro Area
2866                Dallas-Fort Worth-Arlington, TX Metro Area
2867                 Boston-Cambridge-Newton, MA-NH Metro Area
2868              Charlotte-Concord-Gastonia, NC-SC Metro Area
2869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2870             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2871                    Seattle-Tacoma-Bellevue, WA Metro Area
2872                    Seattle-Tacoma-Bellevue, WA Metro Area
2873                    Seattle-Tacoma-Bellevue, WA Metro Area
2874                    Seattle-Tacoma-Bellevue, WA Metro Area
2875                    Seattle-Tacoma-Bellevue, WA Metro Area
2876                    Seattle-Tacoma-Bellevue, WA Metro Area
2877                                                      <NA>
2878                                     Juneau, AK Micro Area
2879             San Diego-Chula Vista-Carlsbad, CA Metro Area
2880                    Seattle-Tacoma-Bellevue, WA Metro Area
2881                                Albuquerque, NM Metro Area
2882                  Orlando-Kissimmee-Sanford, FL Metro Area
2883                    Seattle-Tacoma-Bellevue, WA Metro Area
2884             Los Angeles-Long Beach-Anaheim, CA Metro Area
2885                                   Columbus, OH Metro Area
2886                           Cincinnati, OH-KY-IN Metro Area
2887               Indianapolis-Carmel-Anderson, IN Metro Area
2888                         Milwaukee-Waukesha, WI Metro Area
2889                    Kahului-Wailuku-Lahaina, HI Metro Area
2890                              Oklahoma City, OK Metro Area
2891                    Omaha-Council Bluffs, NE-IA Metro Area
2892                               Raleigh-Cary, NC Metro Area
2893                  San Antonio-New Braunfels, TX Metro Area
2894                               St. Louis, MO-IL Metro Area
2895                                     Tucson, AZ Metro Area
2896                             Urban Honolulu, HI Metro Area
2897             Los Angeles-Long Beach-Anaheim, CA Metro Area
2898        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2899                      Cape Coral-Fort Myers, FL Metro Area
2900                                   Key West, FL Micro Area
2901                  San Antonio-New Braunfels, TX Metro Area
2902                                   Savannah, GA Metro Area
2903                  Orlando-Kissimmee-Sanford, FL Metro Area
2904                 Boston-Cambridge-Newton, MA-NH Metro Area
2905             Los Angeles-Long Beach-Anaheim, CA Metro Area
2906                 Boston-Cambridge-Newton, MA-NH Metro Area
2907                 Boston-Cambridge-Newton, MA-NH Metro Area
2908                    San Juan-Bayamón-Caguas, PR Metro Area
2909                                                      <NA>
2910                                                      <NA>
2911                               Jacksonville, FL Metro Area
2912                      Providence-Warwick, RI-MA Metro Area
2913             San Diego-Chula Vista-Carlsbad, CA Metro Area
2914                    San Juan-Bayamón-Caguas, PR Metro Area
2915                             Salt Lake City, UT Metro Area
2916                  Orlando-Kissimmee-Sanford, FL Metro Area
2917            Tampa-St. Petersburg-Clearwater, FL Metro Area
2918          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2919                 Boston-Cambridge-Newton, MA-NH Metro Area
2920        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2921             Los Angeles-Long Beach-Anaheim, CA Metro Area
2922          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2923                          Aguadilla-Isabela, PR Metro Area
2924                                   Key West, FL Micro Area
2925           Houston-The Woodlands-Sugar Land, TX Metro Area
2926                  San Antonio-New Braunfels, TX Metro Area
2927              North Port-Sarasota-Bradenton, FL Metro Area
2928                      Providence-Warwick, RI-MA Metro Area
2929          Hartford-East Hartford-Middletown, CT Metro Area
2930          Hartford-East Hartford-Middletown, CT Metro Area
2931                 Boston-Cambridge-Newton, MA-NH Metro Area
2932          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2933                      Providence-Warwick, RI-MA Metro Area
2934                  Orlando-Kissimmee-Sanford, FL Metro Area
2935        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2936             Los Angeles-Long Beach-Anaheim, CA Metro Area
2937                  Orlando-Kissimmee-Sanford, FL Metro Area
2938          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2939          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2940        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2941                 Boston-Cambridge-Newton, MA-NH Metro Area
2942          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2943                               Raleigh-Cary, NC Metro Area
2944          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2945          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2946                             Salt Lake City, UT Metro Area
2947                        Buffalo-Cheektowaga, NY Metro Area
2948                Charleston-North Charleston, SC Metro Area
2949                      Grand Rapids-Kentwood, MI Metro Area
2950          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2951                      Providence-Warwick, RI-MA Metro Area
2952              North Port-Sarasota-Bradenton, FL Metro Area
2953        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2954                    Detroit-Warren-Dearborn, MI Metro Area
2955                             Salt Lake City, UT Metro Area
2956           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2957           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2958                             Salt Lake City, UT Metro Area
2959   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2960        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2961        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2962        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2963                    Detroit-Warren-Dearborn, MI Metro Area
2964                    Detroit-Warren-Dearborn, MI Metro Area
2965           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2966           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2967           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2968           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2969                    Detroit-Warren-Dearborn, MI Metro Area
2970          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2971        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2972                           Cincinnati, OH-KY-IN Metro Area
2973                             Salt Lake City, UT Metro Area
2974                             Salt Lake City, UT Metro Area
2975   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2976           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2977                    Detroit-Warren-Dearborn, MI Metro Area
2978                               Cedar Rapids, IA Metro Area
2979                                   Fargo, ND-MN Metro Area
2980                               Raleigh-Cary, NC Metro Area
2981             Fayetteville-Springdale-Rogers, AR Metro Area
2982        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2983                               Raleigh-Cary, NC Metro Area
2984       Little Rock-North Little Rock-Conway, AR Metro Area
2985                  Orlando-Kissimmee-Sanford, FL Metro Area
2986                    Portland-South Portland, ME Metro Area
2987                                   Syracuse, NY Metro Area
2988               Las Vegas-Henderson-Paradise, NV Metro Area
2989                          Trenton-Princeton, NJ Metro Area
2990                  Orlando-Kissimmee-Sanford, FL Metro Area
2991                      Cape Coral-Fort Myers, FL Metro Area
2992                     Denver-Aurora-Lakewood, CO Metro Area
2993                     Denver-Aurora-Lakewood, CO Metro Area
2994   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2995             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2996                                Spartanburg, SC Metro Area
2997     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2998          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2999   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3000                Dallas-Fort Worth-Arlington, TX Metro Area
3001        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3002                Dallas-Fort Worth-Arlington, TX Metro Area
3003                Dallas-Fort Worth-Arlington, TX Metro Area
3004                Dallas-Fort Worth-Arlington, TX Metro Area
3005               Indianapolis-Carmel-Anderson, IN Metro Area
3006                                  Asheville, NC Metro Area
3007                                Bakersfield, CA Metro Area
3008                          Birmingham-Hoover, AL Metro Area
3009                                Garden City, KS Micro Area
3010                                     Laredo, TX Metro Area
3011  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3012         Crestview-Fort Walton Beach-Destin, FL Metro Area
3013        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3014                           Cincinnati, OH-KY-IN Metro Area
3015                                   Savannah, GA Metro Area
3016                                  Knoxville, TN Metro Area
3017                                   Columbus, OH Metro Area
3018                              Evansville, IN-KY Metro Area
3019       Little Rock-North Little Rock-Conway, AR Metro Area
3020                  San Antonio-New Braunfels, TX Metro Area
3021               Austin-Round Rock-Georgetown, TX Metro Area
3022        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3023                Dallas-Fort Worth-Arlington, TX Metro Area
3024                  Orlando-Kissimmee-Sanford, FL Metro Area
3025                  Orlando-Kissimmee-Sanford, FL Metro Area
3026             Los Angeles-Long Beach-Anaheim, CA Metro Area
3027               Indianapolis-Carmel-Anderson, IN Metro Area
3028                         Milwaukee-Waukesha, WI Metro Area
3029             Los Angeles-Long Beach-Anaheim, CA Metro Area
3030             Los Angeles-Long Beach-Anaheim, CA Metro Area
3031   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3032    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3033                                Panama City, FL Metro Area
3034                         Milwaukee-Waukesha, WI Metro Area
3035                                Tallahassee, FL Metro Area
3036         Crestview-Fort Walton Beach-Destin, FL Metro Area
3037    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3038                 Augusta-Richmond County, GA-SC Metro Area
3039                    Albany-Schenectady-Troy, NY Metro Area
3040                 Des Moines-West Des Moines, IA Metro Area
3041                                 Huntsville, AL Metro Area
3042                                 Montgomery, AL Metro Area
3043                    Portland-South Portland, ME Metro Area
3044   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3045    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3046              Charlotte-Concord-Gastonia, NC-SC Metro Area
3047              Charlotte-Concord-Gastonia, NC-SC Metro Area
3048   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3049              Charlotte-Concord-Gastonia, NC-SC Metro Area
3050   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3051                           Cincinnati, OH-KY-IN Metro Area
3052                Dallas-Fort Worth-Arlington, TX Metro Area
3053           Riverside-San Bernardino-Ontario, CA Metro Area
3054                     Denver-Aurora-Lakewood, CO Metro Area
3055                     Denver-Aurora-Lakewood, CO Metro Area
3056             San Francisco-Oakland-Berkeley, CA Metro Area
3057                               Jacksonville, FL Metro Area
3058           Riverside-San Bernardino-Ontario, CA Metro Area
3059                                   Savannah, GA Metro Area
3060                                    Lubbock, TX Metro Area
3061                       Kingsport-Bristol, TN-VA Metro Area
3062                      Providence-Warwick, RI-MA Metro Area
3063                Dallas-Fort Worth-Arlington, TX Metro Area
3064                    Seattle-Tacoma-Bellevue, WA Metro Area
3065           Houston-The Woodlands-Sugar Land, TX Metro Area
3066                     Denver-Aurora-Lakewood, CO Metro Area
3067                              Oklahoma City, OK Metro Area
3068                                     Fresno, CA Metro Area
3069                                    Medford, OR Metro Area
3070           Houston-The Woodlands-Sugar Land, TX Metro Area
3071           Houston-The Woodlands-Sugar Land, TX Metro Area
3072                                   Columbus, OH Metro Area
3073                              Oklahoma City, OK Metro Area
3074                    Detroit-Warren-Dearborn, MI Metro Area
3075                      Phoenix-Mesa-Chandler, AZ Metro Area
3076             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3077             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3078                             Kansas City, MO-KS Metro Area
3079                         Eugene-Springfield, OR Metro Area
3080                                    Medford, OR Metro Area
3081           Riverside-San Bernardino-Ontario, CA Metro Area
3082                  Santa Maria-Santa Barbara, CA Metro Area
3083                 Des Moines-West Des Moines, IA Metro Area
3084                             Salt Lake City, UT Metro Area
3085           Houston-The Woodlands-Sugar Land, TX Metro Area
3086                    Seattle-Tacoma-Bellevue, WA Metro Area
3087                                  Fairbanks, AK Metro Area
3088                                  Anchorage, AK Metro Area
3089                    Seattle-Tacoma-Bellevue, WA Metro Area
3090           Riverside-San Bernardino-Ontario, CA Metro Area
3091                                Walla Walla, WA Metro Area
3092             San Francisco-Oakland-Berkeley, CA Metro Area
3093          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3094             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3095             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3096             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3097           Houston-The Woodlands-Sugar Land, TX Metro Area
3098                                 Pittsburgh, PA Metro Area
3099             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3100                          Aguadilla-Isabela, PR Metro Area
3101             Los Angeles-Long Beach-Anaheim, CA Metro Area
3102               Austin-Round Rock-Georgetown, TX Metro Area
3103                      Cape Coral-Fort Myers, FL Metro Area
3104                   McAllen-Edinburg-Mission, TX Metro Area
3105            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3106             San Diego-Chula Vista-Carlsbad, CA Metro Area
3107             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3108                Sacramento-Roseville-Folsom, CA Metro Area
3109             Los Angeles-Long Beach-Anaheim, CA Metro Area
3110           Houston-The Woodlands-Sugar Land, TX Metro Area
3111             San Francisco-Oakland-Berkeley, CA Metro Area
3112                  Baltimore-Columbia-Towson, MD Metro Area
3113                           Cleveland-Elyria, OH Metro Area
3114   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3115   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3116           Houston-The Woodlands-Sugar Land, TX Metro Area
3117                     Denver-Aurora-Lakewood, CO Metro Area
3118                     Denver-Aurora-Lakewood, CO Metro Area
3119           Houston-The Woodlands-Sugar Land, TX Metro Area
3120                     Denver-Aurora-Lakewood, CO Metro Area
3121             San Francisco-Oakland-Berkeley, CA Metro Area
3122             San Diego-Chula Vista-Carlsbad, CA Metro Area
3123                                Albuquerque, NM Metro Area
3124                                    Lubbock, TX Metro Area
3125               Las Vegas-Henderson-Paradise, NV Metro Area
3126                               St. Louis, MO-IL Metro Area
3127             San Francisco-Oakland-Berkeley, CA Metro Area
3128                Sacramento-Roseville-Folsom, CA Metro Area
3129 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3130            Tampa-St. Petersburg-Clearwater, FL Metro Area
3131                    Albany-Schenectady-Troy, NY Metro Area
3132               Austin-Round Rock-Georgetown, TX Metro Area
3133                                   Columbus, OH Metro Area
3134                Dallas-Fort Worth-Arlington, TX Metro Area
3135                             Kansas City, MO-KS Metro Area
3136                          Manchester-Nashua, NH Metro Area
3137                                   Syracuse, NY Metro Area
3138                         Milwaukee-Waukesha, WI Metro Area
3139        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3140                  San Antonio-New Braunfels, TX Metro Area
3141                Dallas-Fort Worth-Arlington, TX Metro Area
3142        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3143  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3144               Indianapolis-Carmel-Anderson, IN Metro Area
3145                              Memphis, TN-MS-AR Metro Area
3146        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3147                         Milwaukee-Waukesha, WI Metro Area
3148             San Diego-Chula Vista-Carlsbad, CA Metro Area
3149                                   Savannah, GA Metro Area
3150              North Port-Sarasota-Bradenton, FL Metro Area
3151                      Cape Coral-Fort Myers, FL Metro Area
3152           Houston-The Woodlands-Sugar Land, TX Metro Area
3153                             Kansas City, MO-KS Metro Area
3154                           Colorado Springs, CO Metro Area
3155                                   Montrose, CO Micro Area
3156          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3157                                Albuquerque, NM Metro Area
3158                             Corpus Christi, TX Metro Area
3159   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3160                                    Jackson, MS Metro Area
3161                  Orlando-Kissimmee-Sanford, FL Metro Area
3162                                     Fresno, CA Metro Area
3163                              Oklahoma City, OK Metro Area
3164               Las Vegas-Henderson-Paradise, NV Metro Area
3165           Houston-The Woodlands-Sugar Land, TX Metro Area
3166                Dallas-Fort Worth-Arlington, TX Metro Area
3167                               St. Louis, MO-IL Metro Area
3168               Las Vegas-Henderson-Paradise, NV Metro Area
3169           Houston-The Woodlands-Sugar Land, TX Metro Area
3170   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3171                  San Antonio-New Braunfels, TX Metro Area
3172           Houston-The Woodlands-Sugar Land, TX Metro Area
3173          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3174                    Detroit-Warren-Dearborn, MI Metro Area
3175                          Manchester-Nashua, NH Metro Area
3176                                   Savannah, GA Metro Area
3177                                Albuquerque, NM Metro Area
3178          Hartford-East Hartford-Middletown, CT Metro Area
3179             Los Angeles-Long Beach-Anaheim, CA Metro Area
3180                  San Antonio-New Braunfels, TX Metro Area
3181            Tampa-St. Petersburg-Clearwater, FL Metro Area
3182        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3183 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3184           Houston-The Woodlands-Sugar Land, TX Metro Area
3185                             Kansas City, MO-KS Metro Area
3186   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3187 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3188                              Oklahoma City, OK Metro Area
3189                                    Wichita, KS Metro Area
3190               Indianapolis-Carmel-Anderson, IN Metro Area
3191            Tampa-St. Petersburg-Clearwater, FL Metro Area
3192             San Francisco-Oakland-Berkeley, CA Metro Area
3193             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3194        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3195                               St. Louis, MO-IL Metro Area
3196             San Francisco-Oakland-Berkeley, CA Metro Area
3197             Los Angeles-Long Beach-Anaheim, CA Metro Area
3198                  Baltimore-Columbia-Towson, MD Metro Area
3199                                 Pittsburgh, PA Metro Area
3200                                       Reno, NV Metro Area
3201                Dallas-Fort Worth-Arlington, TX Metro Area
3202                           Colorado Springs, CO Metro Area
3203                               St. Louis, MO-IL Metro Area
3204           Houston-The Woodlands-Sugar Land, TX Metro Area
3205               Las Vegas-Henderson-Paradise, NV Metro Area
3206               Austin-Round Rock-Georgetown, TX Metro Area
3207                      Cape Coral-Fort Myers, FL Metro Area
3208                                      Tulsa, OK Metro Area
3209                               Raleigh-Cary, NC Metro Area
3210             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3211          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3212                                 Pittsburgh, PA Metro Area
3213               Indianapolis-Carmel-Anderson, IN Metro Area
3214               Las Vegas-Henderson-Paradise, NV Metro Area
3215                               St. Louis, MO-IL Metro Area
3216           Houston-The Woodlands-Sugar Land, TX Metro Area
3217           Houston-The Woodlands-Sugar Land, TX Metro Area
3218                                    El Paso, TX Metro Area
3219                                Tallahassee, FL Metro Area
3220                      Phoenix-Mesa-Chandler, AZ Metro Area
3221                                    Salinas, CA Metro Area
3222                  Santa Maria-Santa Barbara, CA Metro Area
3223           Houston-The Woodlands-Sugar Land, TX Metro Area
3224   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3225                             Kansas City, MO-KS Metro Area
3226                                     Bangor, ME Metro Area
3227                Charleston-North Charleston, SC Metro Area
3228                                 Pittsburgh, PA Metro Area
3229                               St. Louis, MO-IL Metro Area
3230          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3231                           Cincinnati, OH-KY-IN Metro Area
3232   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3233                           Cleveland-Elyria, OH Metro Area
3234                               Jacksonville, FL Metro Area
3235                                    Roanoke, VA Metro Area
3236                                  Asheville, NC Metro Area
3237                                  Duluth, MN-WI Metro Area
3238                                   Savannah, GA Metro Area
3239                                   Columbus, OH Metro Area
3240             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3241   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3242             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3243   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3244             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3245             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3246             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3247   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3248             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3249                                  Knoxville, TN Metro Area
3250   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3251                            Charlottesville, VA Metro Area
3252             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3253   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3254        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3255                            Gulfport-Biloxi, MS Metro Area
3256        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3257                                  Rochester, NY Metro Area
3258                             Chattanooga, TN-GA Metro Area
3259    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3260                                  Asheville, NC Metro Area
3261                                    Roanoke, VA Metro Area
3262                 Boston-Cambridge-Newton, MA-NH Metro Area
3263           Houston-The Woodlands-Sugar Land, TX Metro Area
3264   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3265                                Panama City, FL Metro Area
3266                     Denver-Aurora-Lakewood, CO Metro Area
3267                Dallas-Fort Worth-Arlington, TX Metro Area
3268                    San Juan-Bayamón-Caguas, PR Metro Area
3269                           Cleveland-Elyria, OH Metro Area
3270                                                      <NA>
3271                Dallas-Fort Worth-Arlington, TX Metro Area
3272             Los Angeles-Long Beach-Anaheim, CA Metro Area
3273                Dallas-Fort Worth-Arlington, TX Metro Area
3274                    Kahului-Wailuku-Lahaina, HI Metro Area
3275    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3276                Dallas-Fort Worth-Arlington, TX Metro Area
3277             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3278                           Cincinnati, OH-KY-IN Metro Area
3279                Dallas-Fort Worth-Arlington, TX Metro Area
3280                                       Hilo, HI Micro Area
3281                    Kahului-Wailuku-Lahaina, HI Metro Area
3282                                                      <NA>
3283                                  Anchorage, AK Metro Area
3284                                  Anchorage, AK Metro Area
3285                    Seattle-Tacoma-Bellevue, WA Metro Area
3286        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3287                      Cape Coral-Fort Myers, FL Metro Area
3288                      Cape Coral-Fort Myers, FL Metro Area
3289          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3290                                   Appleton, WI Metro Area
3291                               Cedar Rapids, IA Metro Area
3292                Sacramento-Roseville-Folsom, CA Metro Area
3293                                                      <NA>
3294                                                      <NA>
3295                                   Savannah, GA Metro Area
3296           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3297           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3298           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3299        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3300          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3301                                   Key West, FL Micro Area
3302                           Dayton-Kettering, OH Metro Area
3303                               Texarkana, TX-AR Metro Area
3304                Dallas-Fort Worth-Arlington, TX Metro Area
3305                                      Akron, OH Metro Area
3306         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3307          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3308                                Tallahassee, FL Metro Area
3309              Charlotte-Concord-Gastonia, NC-SC Metro Area
3310                           Cleveland-Elyria, OH Metro Area
3311                                   Syracuse, NY Metro Area
3312                      Phoenix-Mesa-Chandler, AZ Metro Area
3313                                  Kalispell, MT Micro Area
3314             San Francisco-Oakland-Berkeley, CA Metro Area
3315                                 Jackson, WY-ID Micro Area
3316                             Urban Honolulu, HI Metro Area
3317             Los Angeles-Long Beach-Anaheim, CA Metro Area
3318                                    Edwards, CO Micro Area
3319           Houston-The Woodlands-Sugar Land, TX Metro Area
3320   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3321                     Denver-Aurora-Lakewood, CO Metro Area
3322 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3323             San Diego-Chula Vista-Carlsbad, CA Metro Area
3324                                Albuquerque, NM Metro Area
3325             San Diego-Chula Vista-Carlsbad, CA Metro Area
3326             Los Angeles-Long Beach-Anaheim, CA Metro Area
3327           Riverside-San Bernardino-Ontario, CA Metro Area
3328                  Orlando-Kissimmee-Sanford, FL Metro Area
3329             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3330                  Baltimore-Columbia-Towson, MD Metro Area
3331                       New Orleans-Metairie, LA Metro Area
3332             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3333             San Francisco-Oakland-Berkeley, CA Metro Area
3334                    San Juan-Bayamón-Caguas, PR Metro Area
3335           Houston-The Woodlands-Sugar Land, TX Metro Area
3336                                     Peoria, IL Metro Area
3337                 Pensacola-Ferry Pass-Brent, FL Metro Area
3338                                 Rapid City, SD Metro Area
3339                                    Bozeman, MT Micro Area
3340                Charleston-North Charleston, SC Metro Area
3341     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3342                Dallas-Fort Worth-Arlington, TX Metro Area
3343                Hilton Head Island-Bluffton, SC Metro Area
3344                                   Appleton, WI Metro Area
3345                    Omaha-Council Bluffs, NE-IA Metro Area
3346          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3347        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3348                    San Juan-Bayamón-Caguas, PR Metro Area
3349                                     Bangor, ME Metro Area
3350                      Grand Rapids-Kentwood, MI Metro Area
3351                                     Helena, MT Micro Area
3352                    Shreveport-Bossier City, LA Metro Area
3353                     Denver-Aurora-Lakewood, CO Metro Area
3354                             Salt Lake City, UT Metro Area
3355                    Kahului-Wailuku-Lahaina, HI Metro Area
3356                                 Fort Wayne, IN Metro Area
3357                      Phoenix-Mesa-Chandler, AZ Metro Area
3358                                   Richmond, VA Metro Area
3359            Tampa-St. Petersburg-Clearwater, FL Metro Area
3360                Dallas-Fort Worth-Arlington, TX Metro Area
3361                      Phoenix-Mesa-Chandler, AZ Metro Area
3362                Dallas-Fort Worth-Arlington, TX Metro Area
3363             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3364                                                      <NA>
3365                Dallas-Fort Worth-Arlington, TX Metro Area
3366                                   Key West, FL Micro Area
3367                                Tallahassee, FL Metro Area
3368                             Salt Lake City, UT Metro Area
3369        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3370                                Sioux Falls, SD Metro Area
3371                Dallas-Fort Worth-Arlington, TX Metro Area
3372                                   Missoula, MT Metro Area
3373                 Pensacola-Ferry Pass-Brent, FL Metro Area
3374                          Birmingham-Hoover, AL Metro Area
3375                                   Savannah, GA Metro Area
3376                                Idaho Falls, ID Metro Area
3377        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3378                                 Boise City, ID Metro Area
3379        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3380                           Glenwood Springs, CO Micro Area
3381           Houston-The Woodlands-Sugar Land, TX Metro Area
3382                             Urban Honolulu, HI Metro Area
3383                                    Bozeman, MT Micro Area
3384                                    Edwards, CO Micro Area
3385               Austin-Round Rock-Georgetown, TX Metro Area
3386             San Francisco-Oakland-Berkeley, CA Metro Area
3387                      Cape Coral-Fort Myers, FL Metro Area
3388             San Francisco-Oakland-Berkeley, CA Metro Area
3389                  Orlando-Kissimmee-Sanford, FL Metro Area
3390                Dallas-Fort Worth-Arlington, TX Metro Area
3391                                Panama City, FL Metro Area
3392                                 Wilmington, NC Metro Area
3393                                                      <NA>
3394                 Boston-Cambridge-Newton, MA-NH Metro Area
3395                    Kahului-Wailuku-Lahaina, HI Metro Area
3396        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3397   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3398                             Urban Honolulu, HI Metro Area
3399                             Urban Honolulu, HI Metro Area
3400                                       Hilo, HI Micro Area
3401                                   Montrose, CO Micro Area
3402                                  Lafayette, LA Metro Area
3403           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3404           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3405                              Wausau-Weston, WI Metro Area
3406                 Des Moines-West Des Moines, IA Metro Area
3407          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3408           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3409        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3410           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3411                    San Juan-Bayamón-Caguas, PR Metro Area
3412   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3413                      Phoenix-Mesa-Chandler, AZ Metro Area
3414        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3415          Hartford-East Hartford-Middletown, CT Metro Area
3416                                  Rochester, NY Metro Area
3417             San Diego-Chula Vista-Carlsbad, CA Metro Area
3418                    Seattle-Tacoma-Bellevue, WA Metro Area
3419                                                      <NA>
3420                                                      <NA>
3421                                       Reno, NV Metro Area
3422                                    Edwards, CO Micro Area
3423                                     Fresno, CA Metro Area
3424     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3425                               Raleigh-Cary, NC Metro Area
3426                Dallas-Fort Worth-Arlington, TX Metro Area
3427                Dallas-Fort Worth-Arlington, TX Metro Area
3428                Dallas-Fort Worth-Arlington, TX Metro Area
3429                Dallas-Fort Worth-Arlington, TX Metro Area
3430               Indianapolis-Carmel-Anderson, IN Metro Area
3431                      Phoenix-Mesa-Chandler, AZ Metro Area
3432                Dallas-Fort Worth-Arlington, TX Metro Area
3433                Dallas-Fort Worth-Arlington, TX Metro Area
3434                    Seattle-Tacoma-Bellevue, WA Metro Area
3435                           Cleveland-Elyria, OH Metro Area
3436    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3437             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3438                Dallas-Fort Worth-Arlington, TX Metro Area
3439          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3440                    Seattle-Tacoma-Bellevue, WA Metro Area
3441                    Seattle-Tacoma-Bellevue, WA Metro Area
3442             San Francisco-Oakland-Berkeley, CA Metro Area
3443                                  Anchorage, AK Metro Area
3444            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3445               Austin-Round Rock-Georgetown, TX Metro Area
3446             Los Angeles-Long Beach-Anaheim, CA Metro Area
3447                  Orlando-Kissimmee-Sanford, FL Metro Area
3448                    Kahului-Wailuku-Lahaina, HI Metro Area
3449                    Seattle-Tacoma-Bellevue, WA Metro Area
3450                                       Hilo, HI Micro Area
3451                                Albuquerque, NM Metro Area
3452                Charleston-North Charleston, SC Metro Area
3453                                     Juneau, AK Micro Area
3454                                  Ketchikan, AK Micro Area
3455                       New Orleans-Metairie, LA Metro Area
3456                    Seattle-Tacoma-Bellevue, WA Metro Area
3457                                  Anchorage, AK Metro Area
3458                                       Hilo, HI Micro Area
3459            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3460                    San Juan-Bayamón-Caguas, PR Metro Area
3461                       New Orleans-Metairie, LA Metro Area
3462            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3463           Riverside-San Bernardino-Ontario, CA Metro Area
3464                               Jacksonville, FL Metro Area
3465        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3466                             Vineyard Haven, MA Micro Area
3467          Hartford-East Hartford-Middletown, CT Metro Area
3468         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3469                                    Wichita, KS Metro Area
3470        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3471             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3472           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3473                                                      <NA>
3474           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3475           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3476           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3477           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3478        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3479                             Salt Lake City, UT Metro Area
3480                             Salt Lake City, UT Metro Area
3481                              Memphis, TN-MS-AR Metro Area
3482                    Detroit-Warren-Dearborn, MI Metro Area
3483             Los Angeles-Long Beach-Anaheim, CA Metro Area
3484        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3485           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3486                                   Billings, MT Metro Area
3487                    Detroit-Warren-Dearborn, MI Metro Area
3488                             Salt Lake City, UT Metro Area
3489           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3490             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3491                Dallas-Fort Worth-Arlington, TX Metro Area
3492                                   Billings, MT Metro Area
3493                                Baton Rouge, LA Metro Area
3494                                    Jackson, MS Metro Area
3495              North Port-Sarasota-Bradenton, FL Metro Area
3496        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3497                          Birmingham-Hoover, AL Metro Area
3498                  Orlando-Kissimmee-Sanford, FL Metro Area
3499                                Columbus, GA-AL Metro Area
3500                Burlington-South Burlington, VT Metro Area
3501              Charlotte-Concord-Gastonia, NC-SC Metro Area
3502    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3503         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
3504                     Denver-Aurora-Lakewood, CO Metro Area
3505        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3506                                   Bismarck, ND Metro Area
3507                             Grand Junction, CO Metro Area
3508                San Luis Obispo-Paso Robles, CA Metro Area
3509                                  Knoxville, TN Metro Area
3510                           Glenwood Springs, CO Micro Area
3511                                    Durango, CO Micro Area
3512                             Grand Junction, CO Metro Area
3513        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3514        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3515                    Detroit-Warren-Dearborn, MI Metro Area
3516                           Cleveland-Elyria, OH Metro Area
3517                                  Kalispell, MT Micro Area
3518                             Salt Lake City, UT Metro Area
3519                        Harrisburg-Carlisle, PA Metro Area
3520                                     Hailey, ID Micro Area
3521           Riverside-San Bernardino-Ontario, CA Metro Area
3522                        Santa Rosa-Petaluma, CA Metro Area
3523                                    Edwards, CO Micro Area
3524                        Santa Rosa-Petaluma, CA Metro Area
3525             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3526                Dallas-Fort Worth-Arlington, TX Metro Area
3527                                 Jackson, WY-ID Micro Area
3528             San Diego-Chula Vista-Carlsbad, CA Metro Area
3529                                   Billings, MT Metro Area
3530                         Eugene-Springfield, OR Metro Area
3531                                   Missoula, MT Metro Area
3532                              Oklahoma City, OK Metro Area
3533                    Omaha-Council Bluffs, NE-IA Metro Area
3534                      Phoenix-Mesa-Chandler, AZ Metro Area
3535                                 Boise City, ID Metro Area
3536             San Diego-Chula Vista-Carlsbad, CA Metro Area
3537                                    El Paso, TX Metro Area
3538                  Santa Maria-Santa Barbara, CA Metro Area
3539                                   Richmond, VA Metro Area
3540                  San Antonio-New Braunfels, TX Metro Area
3541                                                      <NA>
3542                    San Juan-Bayamón-Caguas, PR Metro Area
3543           Houston-The Woodlands-Sugar Land, TX Metro Area
3544                     Denver-Aurora-Lakewood, CO Metro Area
3545                     Denver-Aurora-Lakewood, CO Metro Area
3546                Burlington-South Burlington, VT Metro Area
3547           Houston-The Woodlands-Sugar Land, TX Metro Area
3548             San Francisco-Oakland-Berkeley, CA Metro Area
3549                                       Hilo, HI Micro Area
3550                                      Kapaa, HI Micro Area
3551                             Urban Honolulu, HI Metro Area
3552             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3553                     Denver-Aurora-Lakewood, CO Metro Area
3554                    Seattle-Tacoma-Bellevue, WA Metro Area
3555              North Port-Sarasota-Bradenton, FL Metro Area
3556                                   Columbus, OH Metro Area
3557                  Orlando-Kissimmee-Sanford, FL Metro Area
3558             San Diego-Chula Vista-Carlsbad, CA Metro Area
3559                                    El Paso, TX Metro Area
3560                    Kahului-Wailuku-Lahaina, HI Metro Area
3561               Austin-Round Rock-Georgetown, TX Metro Area
3562                    Kahului-Wailuku-Lahaina, HI Metro Area
3563    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3564             San Diego-Chula Vista-Carlsbad, CA Metro Area
3565   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3566                             Kansas City, MO-KS Metro Area
3567               Indianapolis-Carmel-Anderson, IN Metro Area
3568                                    Midland, TX Metro Area
3569                      Phoenix-Mesa-Chandler, AZ Metro Area
3570               Indianapolis-Carmel-Anderson, IN Metro Area
3571              Charlotte-Concord-Gastonia, NC-SC Metro Area
3572                             Kansas City, MO-KS Metro Area
3573              Allentown-Bethlehem-Easton, PA-NJ Metro Area
3574    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3575                        Buffalo-Cheektowaga, NY Metro Area
3576                                    Durango, CO Micro Area
3577           Houston-The Woodlands-Sugar Land, TX Metro Area
3578                                Springfield, MO Metro Area
3579             Los Angeles-Long Beach-Anaheim, CA Metro Area
3580                                Bloomington, IL Metro Area
3581                              Evansville, IN-KY Metro Area
3582                    Detroit-Warren-Dearborn, MI Metro Area
3583                                   Syracuse, NY Metro Area
3584                            Charlottesville, VA Metro Area
3585                                    Madison, WI Metro Area
3586                                    Madison, WI Metro Area
3587             Fayetteville-Springdale-Rogers, AR Metro Area
3588                    Detroit-Warren-Dearborn, MI Metro Area
3589           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3590                Dallas-Fort Worth-Arlington, TX Metro Area
3591                Dallas-Fort Worth-Arlington, TX Metro Area
3592                                   Richmond, VA Metro Area
3593                Dallas-Fort Worth-Arlington, TX Metro Area
3594                Dallas-Fort Worth-Arlington, TX Metro Area
3595               Austin-Round Rock-Georgetown, TX Metro Area
3596                                    Bozeman, MT Micro Area
3597                    Omaha-Council Bluffs, NE-IA Metro Area
3598                      Phoenix-Mesa-Chandler, AZ Metro Area
3599                Dallas-Fort Worth-Arlington, TX Metro Area
3600                Dallas-Fort Worth-Arlington, TX Metro Area
3601                Dallas-Fort Worth-Arlington, TX Metro Area
3602                                       Hilo, HI Micro Area
3603             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3604                Dallas-Fort Worth-Arlington, TX Metro Area
3605              Charlotte-Concord-Gastonia, NC-SC Metro Area
3606                      Phoenix-Mesa-Chandler, AZ Metro Area
3607               Austin-Round Rock-Georgetown, TX Metro Area
3608            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3609            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3610                                  Anchorage, AK Metro Area
3611                                     Tucson, AZ Metro Area
3612                                       Hilo, HI Micro Area
3613           Riverside-San Bernardino-Ontario, CA Metro Area
3614                     Spokane-Spokane Valley, WA Metro Area
3615                                                      <NA>
3616            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3617                                    Bozeman, MT Micro Area
3618                Sacramento-Roseville-Folsom, CA Metro Area
3619                                   Syracuse, NY Metro Area
3620             Fayetteville-Springdale-Rogers, AR Metro Area
3621                    Detroit-Warren-Dearborn, MI Metro Area
3622                                 Boise City, ID Metro Area
3623           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3624        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3625                             Chattanooga, TN-GA Metro Area
3626                      College Station-Bryan, TX Metro Area
3627                              Evansville, IN-KY Metro Area
3628                                     Mobile, AL Metro Area
3629        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3630   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3631             Louisville/Jefferson County, KY-IN Metro Area
3632                Dallas-Fort Worth-Arlington, TX Metro Area
3633        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3634   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3635                    Omaha-Council Bluffs, NE-IA Metro Area
3636                 Pensacola-Ferry Pass-Brent, FL Metro Area
3637              Charlotte-Concord-Gastonia, NC-SC Metro Area
3638              Charlotte-Concord-Gastonia, NC-SC Metro Area
3639                                  Knoxville, TN Metro Area
3640             San Francisco-Oakland-Berkeley, CA Metro Area
3641                             Salt Lake City, UT Metro Area
3642                    South Bend-Mishawaka, IN-MI Metro Area
3643                      Grand Rapids-Kentwood, MI Metro Area
3644                              Memphis, TN-MS-AR Metro Area
3645     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3646             San Diego-Chula Vista-Carlsbad, CA Metro Area
3647                                 Rapid City, SD Metro Area
3648                           Glenwood Springs, CO Micro Area
3649                     Denver-Aurora-Lakewood, CO Metro Area
3650                                   Montrose, CO Micro Area
3651           Riverside-San Bernardino-Ontario, CA Metro Area
3652                                    Medford, OR Metro Area
3653                                       Bend, OR Metro Area
3654                                      Tulsa, OK Metro Area
3655                    Seattle-Tacoma-Bellevue, WA Metro Area
3656                  Santa Maria-Santa Barbara, CA Metro Area
3657                        Santa Rosa-Petaluma, CA Metro Area
3658                                 Jackson, WY-ID Micro Area
3659          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3660            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3661           Houston-The Woodlands-Sugar Land, TX Metro Area
3662                     Denver-Aurora-Lakewood, CO Metro Area
3663          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3664   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3665           Houston-The Woodlands-Sugar Land, TX Metro Area
3666                                       Reno, NV Metro Area
3667               Austin-Round Rock-Georgetown, TX Metro Area
3668           Houston-The Woodlands-Sugar Land, TX Metro Area
3669                         Milwaukee-Waukesha, WI Metro Area
3670             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3671                    Kahului-Wailuku-Lahaina, HI Metro Area
3672                                Albuquerque, NM Metro Area
3673                                      Kapaa, HI Micro Area
3674                                 Pittsburgh, PA Metro Area
3675               Las Vegas-Henderson-Paradise, NV Metro Area
3676             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3677                                       Hilo, HI Micro Area
3678                  San Antonio-New Braunfels, TX Metro Area
3679                                 Huntsville, AL Metro Area
3680                      Phoenix-Mesa-Chandler, AZ Metro Area
3681                      Phoenix-Mesa-Chandler, AZ Metro Area
3682                      Grand Rapids-Kentwood, MI Metro Area
3683                                Spartanburg, SC Metro Area
3684                Dallas-Fort Worth-Arlington, TX Metro Area
3685           Houston-The Woodlands-Sugar Land, TX Metro Area
3686                           Cleveland-Elyria, OH Metro Area
3687                                   Savannah, GA Metro Area
3688                    South Bend-Mishawaka, IN-MI Metro Area
3689          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3690          Hartford-East Hartford-Middletown, CT Metro Area
3691                           Dayton-Kettering, OH Metro Area
3692                                     Mobile, AL Metro Area
3693                                  Knoxville, TN Metro Area
3694                           Dayton-Kettering, OH Metro Area
3695     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3696                                  Knoxville, TN Metro Area
3697           Houston-The Woodlands-Sugar Land, TX Metro Area
3698                                   Columbia, SC Metro Area
3699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3700                Dallas-Fort Worth-Arlington, TX Metro Area
3701                Dallas-Fort Worth-Arlington, TX Metro Area
3702                 Des Moines-West Des Moines, IA Metro Area
3703             San Diego-Chula Vista-Carlsbad, CA Metro Area
3704                Dallas-Fort Worth-Arlington, TX Metro Area
3705                Charleston-North Charleston, SC Metro Area
3706                                   Key West, FL Micro Area
3707                                Spartanburg, SC Metro Area
3708                                                      <NA>
3709                             Urban Honolulu, HI Metro Area
3710               Indianapolis-Carmel-Anderson, IN Metro Area
3711                              Oklahoma City, OK Metro Area
3712                  San Antonio-New Braunfels, TX Metro Area
3713                  Santa Maria-Santa Barbara, CA Metro Area
3714                Dallas-Fort Worth-Arlington, TX Metro Area
3715                                 Jackson, WY-ID Micro Area
3716             Los Angeles-Long Beach-Anaheim, CA Metro Area
3717             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3718             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3719          Hartford-East Hartford-Middletown, CT Metro Area
3720        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3721                Dallas-Fort Worth-Arlington, TX Metro Area
3722               Austin-Round Rock-Georgetown, TX Metro Area
3723              Charlotte-Concord-Gastonia, NC-SC Metro Area
3724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3725                                                      <NA>
3726                                     Juneau, AK Micro Area
3727                                  Anchorage, AK Metro Area
3728                                  Rochester, NY Metro Area
3729        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3730   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3731          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3732                                    Madison, WI Metro Area
3733                    Detroit-Warren-Dearborn, MI Metro Area
3734                      Providence-Warwick, RI-MA Metro Area
3735                                   Syracuse, NY Metro Area
3736                                  Lafayette, LA Metro Area
3737                                Tallahassee, FL Metro Area
3738        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3739                  Orlando-Kissimmee-Sanford, FL Metro Area
3740              Charlotte-Concord-Gastonia, NC-SC Metro Area
3741                               Cedar Rapids, IA Metro Area
3742                              Memphis, TN-MS-AR Metro Area
3743                        Buffalo-Cheektowaga, NY Metro Area
3744                      Grand Rapids-Kentwood, MI Metro Area
3745   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3746   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3747                                  Manhattan, KS Metro Area
3748                                     Tucson, AZ Metro Area
3749                                   Montrose, CO Micro Area
3750                     Denver-Aurora-Lakewood, CO Metro Area
3751                     Scranton--Wilkes-Barre, PA Metro Area
3752                                   Syracuse, NY Metro Area
3753                                 Jackson, WY-ID Micro Area
3754                                    Roswell, NM Micro Area
3755                     Denver-Aurora-Lakewood, CO Metro Area
3756                                    Bozeman, MT Micro Area
3757                             Grand Junction, CO Metro Area
3758                                  Anchorage, AK Metro Area
3759             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3760           Houston-The Woodlands-Sugar Land, TX Metro Area
3761                Sacramento-Roseville-Folsom, CA Metro Area
3762                                Albuquerque, NM Metro Area
3763                             Urban Honolulu, HI Metro Area
3764                               Raleigh-Cary, NC Metro Area
3765                  Baltimore-Columbia-Towson, MD Metro Area
3766             San Diego-Chula Vista-Carlsbad, CA Metro Area
3767             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3768                                Albuquerque, NM Metro Area
3769              North Port-Sarasota-Bradenton, FL Metro Area
3770                    Albany-Schenectady-Troy, NY Metro Area
3771                     Denver-Aurora-Lakewood, CO Metro Area
3772            Tampa-St. Petersburg-Clearwater, FL Metro Area
3773                             Salt Lake City, UT Metro Area
3774                          Birmingham-Hoover, AL Metro Area
3775                                   Columbus, OH Metro Area
3776             Louisville/Jefferson County, KY-IN Metro Area
3777                        Buffalo-Cheektowaga, NY Metro Area
3778                  San Antonio-New Braunfels, TX Metro Area
3779                      Phoenix-Mesa-Chandler, AZ Metro Area
3780                                   Columbus, OH Metro Area
3781            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3782                  Orlando-Kissimmee-Sanford, FL Metro Area
3783            Tampa-St. Petersburg-Clearwater, FL Metro Area
3784            Tampa-St. Petersburg-Clearwater, FL Metro Area
3785                Dallas-Fort Worth-Arlington, TX Metro Area
3786             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3787                        Buffalo-Cheektowaga, NY Metro Area
3788             Louisville/Jefferson County, KY-IN Metro Area
3789        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3790                Dallas-Fort Worth-Arlington, TX Metro Area
3791           Houston-The Woodlands-Sugar Land, TX Metro Area
3792                               St. Louis, MO-IL Metro Area
3793                Sacramento-Roseville-Folsom, CA Metro Area
3794                               Cedar Rapids, IA Metro Area
3795                                   Fargo, ND-MN Metro Area
3796   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3797           Houston-The Woodlands-Sugar Land, TX Metro Area
3798                               Cedar Rapids, IA Metro Area
3799                                   Fargo, ND-MN Metro Area
3800                      Grand Rapids-Kentwood, MI Metro Area
3801                           Dayton-Kettering, OH Metro Area
3802                                 Pittsburgh, PA Metro Area
3803                                    Roanoke, VA Metro Area
3804                                 Huntsville, AL Metro Area
3805   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3806    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3807             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3808              Charlotte-Concord-Gastonia, NC-SC Metro Area
3809          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3810                  Orlando-Kissimmee-Sanford, FL Metro Area
3811          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3812                               Worcester, MA-CT Metro Area
3813                               Worcester, MA-CT Metro Area
3814        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3815          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3816                                                      <NA>
3817                    San Juan-Bayamón-Caguas, PR Metro Area
3818           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3819                  Orlando-Kissimmee-Sanford, FL Metro Area
3820                      Cape Coral-Fort Myers, FL Metro Area
3821                                Sioux Falls, SD Metro Area
3822                      Brownsville-Harlingen, TX Metro Area
3823           Riverside-San Bernardino-Ontario, CA Metro Area
3824               Las Vegas-Henderson-Paradise, NV Metro Area
3825               Las Vegas-Henderson-Paradise, NV Metro Area
3826               Las Vegas-Henderson-Paradise, NV Metro Area
3827                  Orlando-Kissimmee-Sanford, FL Metro Area
3828                  Orlando-Kissimmee-Sanford, FL Metro Area
3829  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3830                      Cape Coral-Fort Myers, FL Metro Area
3831                               St. Louis, MO-IL Metro Area
3832                           Cleveland-Elyria, OH Metro Area
3833           Riverside-San Bernardino-Ontario, CA Metro Area
3834                          Trenton-Princeton, NJ Metro Area
3835          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3836                  Orlando-Kissimmee-Sanford, FL Metro Area
3837                      Cape Coral-Fort Myers, FL Metro Area
3838          Hartford-East Hartford-Middletown, CT Metro Area
3839                          Trenton-Princeton, NJ Metro Area
3840          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3841                  Orlando-Kissimmee-Sanford, FL Metro Area
3842            Tampa-St. Petersburg-Clearwater, FL Metro Area
3843            Tampa-St. Petersburg-Clearwater, FL Metro Area
3844                      Grand Rapids-Kentwood, MI Metro Area
3845           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3846             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3847        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3848            Tampa-St. Petersburg-Clearwater, FL Metro Area
3849        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3850        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3851            Tampa-St. Petersburg-Clearwater, FL Metro Area
3852                      Cape Coral-Fort Myers, FL Metro Area
3853             Los Angeles-Long Beach-Anaheim, CA Metro Area
3854                    Atlantic City-Hammonton, NJ Metro Area
3855             Louisville/Jefferson County, KY-IN Metro Area
3856                 Pensacola-Ferry Pass-Brent, FL Metro Area
3857                           Cleveland-Elyria, OH Metro Area
3858                                 Pittsburgh, PA Metro Area
3859  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3860  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3861                    Atlantic City-Hammonton, NJ Metro Area
3862                          Manchester-Nashua, NH Metro Area
3863                                                      <NA>
3864          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3865                                 Pittsburgh, PA Metro Area
3866          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3867                  Orlando-Kissimmee-Sanford, FL Metro Area
3868  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3869  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3870                    Atlantic City-Hammonton, NJ Metro Area
3871                                 Pittsburgh, PA Metro Area
3872        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3873   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3874                                    Salinas, CA Metro Area
3875                                Bakersfield, CA Metro Area
3876                                   Billings, MT Metro Area
3877   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3878                             Kansas City, MO-KS Metro Area
3879           Houston-The Woodlands-Sugar Land, TX Metro Area
3880             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3881                             Urban Honolulu, HI Metro Area
3882                              Oklahoma City, OK Metro Area
3883          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3884   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3885        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3886                                  Asheville, NC Metro Area
3887               Indianapolis-Carmel-Anderson, IN Metro Area
3888        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3889        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3890        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3891                                    Lubbock, TX Metro Area
3892                                                      <NA>
3893                                    Edwards, CO Micro Area
3894            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3895                             Salt Lake City, UT Metro Area
3896                                   Richmond, VA Metro Area
3897                                       Hilo, HI Micro Area
3898                               St. Louis, MO-IL Metro Area
3899                                  Rochester, MN Metro Area
3900                                  Green Bay, WI Metro Area
3901                             Kansas City, MO-KS Metro Area
3902                              Oklahoma City, OK Metro Area
3903              North Port-Sarasota-Bradenton, FL Metro Area
3904             Fayetteville-Springdale-Rogers, AR Metro Area
3905                 Des Moines-West Des Moines, IA Metro Area
3906                                                      <NA>
3907                                  Anchorage, AK Metro Area
3908   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3909          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3910          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3911                           Cincinnati, OH-KY-IN Metro Area
3912                                    El Paso, TX Metro Area
3913                                  Rochester, NY Metro Area
3914                           Cincinnati, OH-KY-IN Metro Area
3915                             Salt Lake City, UT Metro Area
3916        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3917     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3918                Dallas-Fort Worth-Arlington, TX Metro Area
3919                Dallas-Fort Worth-Arlington, TX Metro Area
3920              Charlotte-Concord-Gastonia, NC-SC Metro Area
3921   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3922     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3923    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3924                                Spartanburg, SC Metro Area
3925                                    Madison, WI Metro Area
3926     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3927                     Denver-Aurora-Lakewood, CO Metro Area
3928                           Glenwood Springs, CO Micro Area
3929                                  Kalispell, MT Micro Area
3930                                    Medford, OR Metro Area
3931                                      Minot, ND Micro Area
3932                                Idaho Falls, ID Metro Area
3933                                   Santa Fe, NM Metro Area
3934                                    Medford, OR Metro Area
3935             San Francisco-Oakland-Berkeley, CA Metro Area
3936             Los Angeles-Long Beach-Anaheim, CA Metro Area
3937                     Denver-Aurora-Lakewood, CO Metro Area
3938           Houston-The Woodlands-Sugar Land, TX Metro Area
3939               Indianapolis-Carmel-Anderson, IN Metro Area
3940             Los Angeles-Long Beach-Anaheim, CA Metro Area
3941               Las Vegas-Henderson-Paradise, NV Metro Area
3942                      Phoenix-Mesa-Chandler, AZ Metro Area
3943                               Jacksonville, FL Metro Area
3944           Houston-The Woodlands-Sugar Land, TX Metro Area
3945                Dallas-Fort Worth-Arlington, TX Metro Area
3946                          Steamboat Springs, CO Micro Area
3947                               Raleigh-Cary, NC Metro Area
3948                      Cape Coral-Fort Myers, FL Metro Area
3949                                      Tulsa, OK Metro Area
3950           Houston-The Woodlands-Sugar Land, TX Metro Area
3951                      Phoenix-Mesa-Chandler, AZ Metro Area
3952                      Phoenix-Mesa-Chandler, AZ Metro Area
3953                                Bloomington, IL Metro Area
3954        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3955                Hilton Head Island-Bluffton, SC Metro Area
3956          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3957                                   Key West, FL Micro Area
3958   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3959                         Milwaukee-Waukesha, WI Metro Area
3960   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3961           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3962                Dallas-Fort Worth-Arlington, TX Metro Area
3963              Charlotte-Concord-Gastonia, NC-SC Metro Area
3964              Charlotte-Concord-Gastonia, NC-SC Metro Area
3965    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3966   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3967                Dallas-Fort Worth-Arlington, TX Metro Area
3968               Austin-Round Rock-Georgetown, TX Metro Area
3969          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3970        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3971                                      Tulsa, OK Metro Area
3972                Dallas-Fort Worth-Arlington, TX Metro Area
3973             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3974                      Phoenix-Mesa-Chandler, AZ Metro Area
3975              Charlotte-Concord-Gastonia, NC-SC Metro Area
3976    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3977    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3978              Charlotte-Concord-Gastonia, NC-SC Metro Area
3979              Charlotte-Concord-Gastonia, NC-SC Metro Area
3980   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3981             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3982                                   Columbus, OH Metro Area
3983                Dallas-Fort Worth-Arlington, TX Metro Area
3984              Charlotte-Concord-Gastonia, NC-SC Metro Area
3985              Charlotte-Concord-Gastonia, NC-SC Metro Area
3986                    Seattle-Tacoma-Bellevue, WA Metro Area
3987            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3988            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3989                        Buffalo-Cheektowaga, NY Metro Area
3990          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3991        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3992          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3993             Louisville/Jefferson County, KY-IN Metro Area
3994                    Detroit-Warren-Dearborn, MI Metro Area
3995                    Detroit-Warren-Dearborn, MI Metro Area
3996        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3997           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3998                           Cincinnati, OH-KY-IN Metro Area
3999                    Detroit-Warren-Dearborn, MI Metro Area
4000                    Detroit-Warren-Dearborn, MI Metro Area
4001                    San Juan-Bayamón-Caguas, PR Metro Area
4002                                   Syracuse, NY Metro Area
4003                                      Tulsa, OK Metro Area
4004             San Diego-Chula Vista-Carlsbad, CA Metro Area
4005             Los Angeles-Long Beach-Anaheim, CA Metro Area
4006                      Cape Coral-Fort Myers, FL Metro Area
4007                Sacramento-Roseville-Folsom, CA Metro Area
4008            Davenport-Moline-Rock Island, IA-IL Metro Area
4009                          Birmingham-Hoover, AL Metro Area
4010                                  Knoxville, TN Metro Area
4011                                     Tucson, AZ Metro Area
4012            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4013               Indianapolis-Carmel-Anderson, IN Metro Area
4014             San Diego-Chula Vista-Carlsbad, CA Metro Area
4015                 Augusta-Richmond County, GA-SC Metro Area
4016          Hartford-East Hartford-Middletown, CT Metro Area
4017                               Raleigh-Cary, NC Metro Area
4018  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4019                                   Key West, FL Micro Area
4020               Indianapolis-Carmel-Anderson, IN Metro Area
4021                                  Anchorage, AK Metro Area
4022             Fayetteville-Springdale-Rogers, AR Metro Area
4023                Charleston-North Charleston, SC Metro Area
4024   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4025                    Albany-Schenectady-Troy, NY Metro Area
4026                                    Roanoke, VA Metro Area
4027           Houston-The Woodlands-Sugar Land, TX Metro Area
4028        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4029           Houston-The Woodlands-Sugar Land, TX Metro Area
4030             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4031 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4032                Dallas-Fort Worth-Arlington, TX Metro Area
4033                                       Hilo, HI Micro Area
4034                                 Pittsburgh, PA Metro Area
4035                    Shreveport-Bossier City, LA Metro Area
4036        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4037          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4038        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4039                                  Flagstaff, AZ Metro Area
4040                                    Bozeman, MT Micro Area
4041                     Denver-Aurora-Lakewood, CO Metro Area
4042              Charlotte-Concord-Gastonia, NC-SC Metro Area
4043                                 Pittsburgh, PA Metro Area
4044                Charleston-North Charleston, SC Metro Area
4045             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4046                  Orlando-Kissimmee-Sanford, FL Metro Area
4047                                      Ponce, PR Metro Area
4048                                    Jackson, MS Metro Area
4049                      Grand Rapids-Kentwood, MI Metro Area
4050                  San Antonio-New Braunfels, TX Metro Area
4051            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4052                                  Anchorage, AK Metro Area
4053                                     Juneau, AK Micro Area
4054                                Spartanburg, SC Metro Area
4055                             Salt Lake City, UT Metro Area
4056                                 Wilmington, NC Metro Area
4057                    San Juan-Bayamón-Caguas, PR Metro Area
4058                               St. Louis, MO-IL Metro Area
4059                               Jacksonville, FL Metro Area
4060                                   Savannah, GA Metro Area
4061                                       Reno, NV Metro Area
4062                               St. Louis, MO-IL Metro Area
4063  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4064                           Colorado Springs, CO Metro Area
4065             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4066        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4067                                                      <NA>
4068                 Boston-Cambridge-Newton, MA-NH Metro Area
4069   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4070             Los Angeles-Long Beach-Anaheim, CA Metro Area
4071                  Baltimore-Columbia-Towson, MD Metro Area
4072          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4073                 Boston-Cambridge-Newton, MA-NH Metro Area
4074                          Steamboat Springs, CO Micro Area
4075          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4076           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4077                              Memphis, TN-MS-AR Metro Area
4078  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
4079                                Springfield, MO Metro Area
4080        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4081                          Birmingham-Hoover, AL Metro Area
4082                Burlington-South Burlington, VT Metro Area
4083              Charlotte-Concord-Gastonia, NC-SC Metro Area
4084                    Portland-South Portland, ME Metro Area
4085                Dallas-Fort Worth-Arlington, TX Metro Area
4086                                Columbus, GA-AL Metro Area
4087                                      Tulsa, OK Metro Area
4088           Houston-The Woodlands-Sugar Land, TX Metro Area
4089               Indianapolis-Carmel-Anderson, IN Metro Area
4090                                 Pittsburgh, PA Metro Area
4091                      Phoenix-Mesa-Chandler, AZ Metro Area
4092                    Portland-South Portland, ME Metro Area
4093               Austin-Round Rock-Georgetown, TX Metro Area
4094              North Port-Sarasota-Bradenton, FL Metro Area
4095                                    Wichita, KS Metro Area
4096        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4097                                Bloomington, IL Metro Area
4098                  Orlando-Kissimmee-Sanford, FL Metro Area
4099           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4100                              Memphis, TN-MS-AR Metro Area
4101                                 Huntsville, AL Metro Area
4102                                    Madison, WI Metro Area
4103                 Pensacola-Ferry Pass-Brent, FL Metro Area
4104           Poughkeepsie-Newburgh-Middletown, NY Metro Area
4105                      Providence-Warwick, RI-MA Metro Area
4106                  Orlando-Kissimmee-Sanford, FL Metro Area
4107                      Cape Coral-Fort Myers, FL Metro Area
4108                    Detroit-Warren-Dearborn, MI Metro Area
4109                  San Antonio-New Braunfels, TX Metro Area
4110   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4111        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4112                                  Ketchikan, AK Micro Area
4113                                  Anchorage, AK Metro Area
4114           Riverside-San Bernardino-Ontario, CA Metro Area
4115                 Boston-Cambridge-Newton, MA-NH Metro Area
4116             Los Angeles-Long Beach-Anaheim, CA Metro Area
4117                             Salt Lake City, UT Metro Area
4118           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4119                             Salt Lake City, UT Metro Area
4120                             Salt Lake City, UT Metro Area
4121           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4122                           Cincinnati, OH-KY-IN Metro Area
4123                                Springfield, MO Metro Area
4124                                    Jackson, MS Metro Area
4125                 Pensacola-Ferry Pass-Brent, FL Metro Area
4126                      Providence-Warwick, RI-MA Metro Area
4127               Indianapolis-Carmel-Anderson, IN Metro Area
4128   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4129                                   Columbia, MO Metro Area
4130                                  Marquette, MI Micro Area
4131        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4132                                 Jackson, WY-ID Micro Area
4133                Dallas-Fort Worth-Arlington, TX Metro Area
4134                     Denver-Aurora-Lakewood, CO Metro Area
4135                      Grand Rapids-Kentwood, MI Metro Area
4136        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4137                     Denver-Aurora-Lakewood, CO Metro Area
4138           Houston-The Woodlands-Sugar Land, TX Metro Area
4139                    Kahului-Wailuku-Lahaina, HI Metro Area
4140                                       Hilo, HI Micro Area
4141                           Colorado Springs, CO Metro Area
4142             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4143             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4144                Sacramento-Roseville-Folsom, CA Metro Area
4145             Los Angeles-Long Beach-Anaheim, CA Metro Area
4146                          Birmingham-Hoover, AL Metro Area
4147                               Jacksonville, FL Metro Area
4148 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
4149                      Providence-Warwick, RI-MA Metro Area
4150                                Sioux Falls, SD Metro Area
4151                          Lexington-Fayette, KY Metro Area
4152           Houston-The Woodlands-Sugar Land, TX Metro Area
4153           Houston-The Woodlands-Sugar Land, TX Metro Area
4154                                 Jackson, WY-ID Micro Area
4155                             Urban Honolulu, HI Metro Area
4156     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4157                                     Bangor, ME Metro Area
4158                Burlington-South Burlington, VT Metro Area
4159                                  Rochester, NY Metro Area
4160                                   Syracuse, NY Metro Area
4161                 Boston-Cambridge-Newton, MA-NH Metro Area
4162              Charlotte-Concord-Gastonia, NC-SC Metro Area
4163                                   Amarillo, TX Metro Area
4164             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4165                Dallas-Fort Worth-Arlington, TX Metro Area
4166              Charlotte-Concord-Gastonia, NC-SC Metro Area
     total_populationE.x total_populationM.x age_distributionE.x
1               19908595                  NA             9713298
2                6123949                  NA             3001027
3                1613587                  NA              790463
4               13111917                  NA             6515114
5               13111917                  NA             6515114
6               13111917                  NA             6515114
7               19908595                  NA             9713298
8               19908595                  NA             9713298
9                2679298                  NA             1318555
10               6123949                  NA             3001027
11               1264357                  NA              612537
12                772902                  NA              380685
13               4001701                  NA             2024424
14               4001701                  NA             2024424
15               4001701                  NA             2024424
16               1254675                  NA              635422
17               3194310                  NA             1562880
18               6094752                  NA             2965233
19               6094752                  NA             2965233
20               6094752                  NA             2965233
21               6094752                  NA             2965233
22               6094752                  NA             2965233
23               6094752                  NA             2965233
24               6094752                  NA             2965233
25               6094752                  NA             2965233
26               6094752                  NA             2965233
27               6094752                  NA             2965233
28               6094752                  NA             2965233
29               6094752                  NA             2965233
30               6094752                  NA             2965233
31               6094752                  NA             2965233
32               6094752                  NA             2965233
33               6094752                  NA             2965233
34               4375604                  NA             2148947
35               4375604                  NA             2148947
36               3678328                  NA             1837913
37               3678328                  NA             1837913
38               3678328                  NA             1837913
39               3678328                  NA             1837913
40               1254675                  NA              635422
41               1254675                  NA              635422
42               1254675                  NA              635422
43               6094752                  NA             2965233
44               6094752                  NA             2965233
45               3678328                  NA             1837913
46               3678328                  NA             1837913
47               6094752                  NA             2965233
48               6094752                  NA             2965233
49               6094752                  NA             2965233
50               6094752                  NA             2965233
51               6094752                  NA             2965233
52               6094752                  NA             2965233
53               6094752                  NA             2965233
54              19908595                  NA             9713298
55              13111917                  NA             6515114
56              19908595                  NA             9713298
57               3678328                  NA             1837913
58               1254675                  NA              635422
59               1254675                  NA              635422
60               3678328                  NA             1837913
61               3678328                  NA             1837913
62               3678328                  NA             1837913
63               3678328                  NA             1837913
64               1254675                  NA              635422
65               1254675                  NA              635422
66               1254675                  NA              635422
67               1254675                  NA              635422
68               1254675                  NA              635422
69               1254675                  NA              635422
70               1254675                  NA              635422
71               1254675                  NA              635422
72               1254675                  NA              635422
73               6094752                  NA             2965233
74               6094752                  NA             2965233
75               6094752                  NA             2965233
76               4375604                  NA             2148947
77               6094752                  NA             2965233
78               6094752                  NA             2965233
79               6094752                  NA             2965233
80               6094752                  NA             2965233
81               6094752                  NA             2965233
82               6094752                  NA             2965233
83               6094752                  NA             2965233
84               6094752                  NA             2965233
85               6094752                  NA             2965233
86               6094752                  NA             2965233
87               6094752                  NA             2965233
88              13111917                  NA             6515114
89              13111917                  NA             6515114
90              13111917                  NA             6515114
91              13111917                  NA             6515114
92              13111917                  NA             6515114
93               3678328                  NA             1837913
94               3678328                  NA             1837913
95               4001701                  NA             2024424
96               1254675                  NA              635422
97               6094752                  NA             2965233
98               6094752                  NA             2965233
99               6094752                  NA             2965233
100              6094752                  NA             2965233
101              6094752                  NA             2965233
102              6094752                  NA             2965233
103              6094752                  NA             2965233
104              4375604                  NA             2148947
105             13111917                  NA             6515114
106             13111917                  NA             6515114
107              3678328                  NA             1837913
108              1254675                  NA              635422
109              6094752                  NA             2965233
110              6094752                  NA             2965233
111              6094752                  NA             2965233
112              6094752                  NA             2965233
113              6094752                  NA             2965233
114              6094752                  NA             2965233
115              6094752                  NA             2965233
116              4375604                  NA             2148947
117              4375604                  NA             2148947
118              2265926                  NA             1137581
119             13111917                  NA             6515114
120             13111917                  NA             6515114
121              2679298                  NA             1318555
122              2679298                  NA             1318555
123              6123949                  NA             3001027
124              6123949                  NA             3001027
125               772902                  NA              380685
126              4001701                  NA             2024424
127              4001701                  NA             2024424
128              4001701                  NA             2024424
129              4001701                  NA             2024424
130              1254675                  NA              635422
131              1254675                  NA              635422
132              1254675                  NA              635422
133              1254675                  NA              635422
134              3194310                  NA             1562880
135              3289701                  NA             1667851
136             13111917                  NA             6515114
137              4001701                  NA             2024424
138              6094752                  NA             2965233
139              4375604                  NA             2148947
140              4375604                  NA             2148947
141              4375604                  NA             2148947
142              4375604                  NA             2148947
143             19908595                  NA             9713298
144             19908595                  NA             9713298
145              3678328                  NA             1837913
146              3678328                  NA             1837913
147              1420825                  NA              698689
148              1254675                  NA              635422
149              1254675                  NA              635422
150              6094752                  NA             2965233
151              6094752                  NA             2965233
152              6094752                  NA             2965233
153              1990873                  NA              978574
154              2253528                  NA             1113732
155              2253528                  NA             1113732
156              7673379                  NA             3806912
157              4375604                  NA             2148947
158              4375604                  NA             2148947
159              4375604                  NA             2148947
160              4375604                  NA             2148947
161              1010100                  NA              512085
162             19908595                  NA             9713298
163             19908595                  NA             9713298
164              1420825                  NA              698689
165              2570862                  NA             1280273
166              4001701                  NA             2024424
167              1254675                  NA              635422
168              1254675                  NA              635422
169              1254675                  NA              635422
170              1254675                  NA              635422
171              6094752                  NA             2965233
172              4375604                  NA             2148947
173              4375604                  NA             2148947
174              4375604                  NA             2148947
175              4375604                  NA             2148947
176              4375604                  NA             2148947
177              6123949                  NA             3001027
178              3678328                  NA             1837913
179              3678328                  NA             1837913
180              3678328                  NA             1837913
181              3678328                  NA             1837913
182              3678328                  NA             1837913
183              9566955                  NA             4718471
184               844461                  NA              407362
185              3194310                  NA             1562880
186             13111917                  NA             6515114
187              6094752                  NA             2965233
188              6094752                  NA             2965233
189              3678328                  NA             1837913
190              6094752                  NA             2965233
191              6094752                  NA             2965233
192              6094752                  NA             2965233
193              6094752                  NA             2965233
194              4375604                  NA             2148947
195              4375604                  NA             2148947
196             19908595                  NA             9713298
197             19908595                  NA             9713298
198              3678328                  NA             1837913
199              6094752                  NA             2965233
200              6094752                  NA             2965233
201              6094752                  NA             2965233
202              6094752                  NA             2965233
203              6094752                  NA             2965233
204              3678328                  NA             1837913
205              1254675                  NA              635422
206              6094752                  NA             2965233
207              6094752                  NA             2965233
208              6094752                  NA             2965233
209              3678328                  NA             1837913
210              6094752                  NA             2965233
211              6094752                  NA             2965233
212              6094752                  NA             2965233
213              6094752                  NA             2965233
214              2296377                  NA             1160944
215              1990873                  NA              978574
216              4912449                  NA             2407307
217              6346083                  NA             3128067
218              2959386                  NA             1493164
219              7673379                  NA             3806912
220              4375604                  NA             2148947
221              4375604                  NA             2148947
222              4375604                  NA             2148947
223             19908595                  NA             9713298
224              2265926                  NA             1137581
225             13111917                  NA             6515114
226             19908595                  NA             9713298
227             19908595                  NA             9713298
228              2679298                  NA             1318555
229              1264357                  NA              612537
230              9566955                  NA             4718471
231              2505312                  NA             1250855
232              6232894                  NA             3033772
233              1420825                  NA              698689
234               772902                  NA              380685
235              4001701                  NA             2024424
236              3194310                  NA             1562880
237              4375604                  NA             2148947
238              4375604                  NA             2148947
239              3678328                  NA             1837913
240              3678328                  NA             1837913
241              6094752                  NA             2965233
242              6094752                  NA             2965233
243              1254675                  NA              635422
244              1254675                  NA              635422
245              6094752                  NA             2965233
246              3678328                  NA             1837913
247              1254675                  NA              635422
248              6094752                  NA             2965233
249              4912449                  NA             2407307
250              4375604                  NA             2148947
251             19908595                  NA             9713298
252             19908595                  NA             9713298
253              3678328                  NA             1837913
254              3678328                  NA             1837913
255              4001701                  NA             2024424
256              6094752                  NA             2965233
257              6094752                  NA             2965233
258              3678328                  NA             1837913
259              4001701                  NA             2024424
260              1254675                  NA              635422
261              1254675                  NA              635422
262              1254675                  NA              635422
263              1254675                  NA              635422
264              6094752                  NA             2965233
265              6094752                  NA             2965233
266              4375604                  NA             2148947
267              3678328                  NA             1837913
268              6094752                  NA             2965233
269             19908595                  NA             9713298
270              3678328                  NA             1837913
271              6094752                  NA             2965233
272              6094752                  NA             2965233
273              6094752                  NA             2965233
274              4375604                  NA             2148947
275              6123949                  NA             3001027
276              2265926                  NA             1137581
277             13111917                  NA             6515114
278             13111917                  NA             6515114
279              2679298                  NA             1318555
280              4001701                  NA             2024424
281              6094752                  NA             2965233
282              6094752                  NA             2965233
283             19908595                  NA             9713298
284              4375604                  NA             2148947
285              4001701                  NA             2024424
286              1254675                  NA              635422
287              1254675                  NA              635422
288              6094752                  NA             2965233
289              6094752                  NA             2965233
290              4375604                  NA             2148947
291              4375604                  NA             2148947
292              2265926                  NA             1137581
293             13111917                  NA             6515114
294              3678328                  NA             1837913
295              4864209                  NA             2434382
296              3289701                  NA             1667851
297              1254675                  NA              635422
298             13111917                  NA             6515114
299              4001701                  NA             2024424
300              1254675                  NA              635422
301              1254675                  NA              635422
302              3678328                  NA             1837913
303              1254675                  NA              635422
304               771602                  NA              388362
305              7673379                  NA             3806912
306              4375604                  NA             2148947
307              4375604                  NA             2148947
308              4375604                  NA             2148947
309             19908595                  NA             9713298
310               585485                  NA              292820
311             19908595                  NA             9713298
312              2265926                  NA             1137581
313             13111917                  NA             6515114
314              3678328                  NA             1837913
315              4610050                  NA             2315218
316              3289701                  NA             1667851
317              4692242                  NA             2342253
318              1981584                  NA             1011796
319             13111917                  NA             6515114
320              3678328                  NA             1837913
321              1254675                  NA              635422
322              6094752                  NA             2965233
323              3678328                  NA             1837913
324              4001701                  NA             2024424
325              1254675                  NA              635422
326              6094752                  NA             2965233
327              3678328                  NA             1837913
328              6094752                  NA             2965233
329              6094752                  NA             2965233
330              6094752                  NA             2965233
331              4375604                  NA             2148947
332              4375604                  NA             2148947
333             19908595                  NA             9713298
334             19908595                  NA             9713298
335              3678328                  NA             1837913
336              2265926                  NA             1137581
337              4610050                  NA             2315218
338              2265926                  NA             1137581
339              2679298                  NA             1318555
340              2679298                  NA             1318555
341              2959386                  NA             1493164
342              2265926                  NA             1137581
343              6232894                  NA             3033772
344              1008280                  NA              506526
345              9566955                  NA             4718471
346              3194310                  NA             1562880
347              3194310                  NA             1562880
348               383732                  NA              189495
349              2959386                  NA             1493164
350              2265926                  NA             1137581
351              6232894                  NA             3033772
352              2265926                  NA             1137581
353              2265926                  NA             1137581
354              2679298                  NA             1318555
355              3194310                  NA             1562880
356              3289701                  NA             1667851
357              2073546                  NA              975289
358              2265926                  NA             1137581
359              2265926                  NA             1137581
360             19908595                  NA             9713298
361              6346083                  NA             3128067
362             19908595                  NA             9713298
363              9566955                  NA             4718471
364              6346083                  NA             3128067
365              9566955                  NA             4718471
366              9566955                  NA             4718471
367             19908595                  NA             9713298
368              2079759                  NA             1012336
369              2668688                  NA             1305000
370              6346083                  NA             3128067
371               775169                  NA              372915
372              2109957                  NA             1038760
373              1086859                  NA              532509
374              6346083                  NA             3128067
375             19908595                  NA             9713298
376              9566955                  NA             4718471
377               218515                  NA              108665
378              2109957                  NA             1038760
379              6346083                  NA             3128067
380              9566955                  NA             4718471
381              9566955                  NA             4718471
382              9566955                  NA             4718471
383             19908595                  NA             9713298
384             19908595                  NA             9713298
385              6346083                  NA             3128067
386              6346083                  NA             3128067
387             19908595                  NA             9713298
388             19908595                  NA             9713298
389             19908595                  NA             9713298
390              9566955                  NA             4718471
391              9566955                  NA             4718471
392             19908595                  NA             9713298
393             19908595                  NA             9713298
394              6346083                  NA             3128067
395              9566955                  NA             4718471
396              9566955                  NA             4718471
397              9566955                  NA             4718471
398              9566955                  NA             4718471
399              2668688                  NA             1305000
400              6123949                  NA             3001027
401              9566955                  NA             4718471
402              1990873                  NA              978574
403              2253528                  NA             1113732
404              1428923                  NA              708697
405              9566955                  NA             4718471
406              2296377                  NA             1160944
407              9566955                  NA             4718471
408              9566955                  NA             4718471
409              9566955                  NA             4718471
410              9566955                  NA             4718471
411              7673379                  NA             3806912
412              9566955                  NA             4718471
413              7673379                  NA             3806912
414              7673379                  NA             3806912
415              7673379                  NA             3806912
416              9566955                  NA             4718471
417              6346083                  NA             3128067
418              6346083                  NA             3128067
419              6123949                  NA             3001027
420              6123949                  NA             3001027
421              6123949                  NA             3001027
422              9566955                  NA             4718471
423              7673379                  NA             3806912
424              4375604                  NA             2148947
425              1335804                  NA              641128
426               216217                  NA              106627
427                47759                  NA               23950
428              7673379                  NA             3806912
429              9566955                  NA             4718471
430              7673379                  NA             3806912
431              9566955                  NA             4718471
432              9566955                  NA             4718471
433              7673379                  NA             3806912
434              9566955                  NA             4718471
435              7673379                  NA             3806912
436              7673379                  NA             3806912
437              7673379                  NA             3806912
438              7673379                  NA             3806912
439              7673379                  NA             3806912
440              2668688                  NA             1305000
441              6123949                  NA             3001027
442              9566955                  NA             4718471
443              9566955                  NA             4718471
444              9566955                  NA             4718471
445              7673379                  NA             3806912
446              7673379                  NA             3806912
447              7673379                  NA             3806912
448              7673379                  NA             3806912
449              7673379                  NA             3806912
450              2668688                  NA             1305000
451              9566955                  NA             4718471
452              7673379                  NA             3806912
453              9566955                  NA             4718471
454              2365501                  NA             1162773
455              7673379                  NA             3806912
456              9566955                  NA             4718471
457              7673379                  NA             3806912
458              9566955                  NA             4718471
459              9566955                  NA             4718471
460              7673379                  NA             3806912
461              9566955                  NA             4718471
462              2296377                  NA             1160944
463              2253528                  NA             1113732
464              1420825                  NA              698689
465              9566955                  NA             4718471
466              9566955                  NA             4718471
467              7673379                  NA             3806912
468              9566955                  NA             4718471
469              6123949                  NA             3001027
470              6123949                  NA             3001027
471              6123949                  NA             3001027
472              7673379                  NA             3806912
473              7673379                  NA             3806912
474              9566955                  NA             4718471
475              7673379                  NA             3806912
476              7673379                  NA             3806912
477              6123949                  NA             3001027
478              9566955                  NA             4718471
479              7673379                  NA             3806912
480              7673379                  NA             3806912
481              7673379                  NA             3806912
482              6123949                  NA             3001027
483               496299                  NA              240510
484               772902                  NA              380685
485             19908595                  NA             9713298
486              6123949                  NA             3001027
487              7142603                  NA             3563435
488              2265926                  NA             1137581
489              1264357                  NA              612537
490             13111917                  NA             6515114
491              3194310                  NA             1562880
492              6123949                  NA             3001027
493              2265926                  NA             1137581
494             13111917                  NA             6515114
495             19908595                  NA             9713298
496              2840005                  NA             1374325
497              6123949                  NA             3001027
498              2265926                  NA             1137581
499              2073546                  NA              975289
500              3194310                  NA             1562880
501              2265926                  NA             1137581
502              6123949                  NA             3001027
503              6123949                  NA             3001027
504              2265926                  NA             1137581
505              1264357                  NA              612537
506              3194310                  NA             1562880
507              4912449                  NA             2407307
508              2265926                  NA             1137581
509              2265926                  NA             1137581
510               772902                  NA              380685
511              3194310                  NA             1562880
512              2679298                  NA             1318555
513              2679298                  NA             1318555
514              2679298                  NA             1318555
515              7142603                  NA             3563435
516              6123949                  NA             3001027
517              2265926                  NA             1137581
518              1264357                  NA              612537
519              9566955                  NA             4718471
520              3194310                  NA             1562880
521              2265926                  NA             1137581
522              1990873                  NA              978574
523              6123949                  NA             3001027
524              7142603                  NA             3563435
525              2679298                  NA             1318555
526              2296377                  NA             1160944
527              1990873                  NA              978574
528              4912449                  NA             2407307
529              2840005                  NA             1374325
530              2959386                  NA             1493164
531             19908595                  NA             9713298
532              2109957                  NA             1038760
533              2265926                  NA             1137581
534             19908595                  NA             9713298
535             19908595                  NA             9713298
536              2265926                  NA             1137581
537              6123949                  NA             3001027
538              2265926                  NA             1137581
539              3194310                  NA             1562880
540              1990873                  NA              978574
541              4912449                  NA             2407307
542              4375604                  NA             2148947
543              2679298                  NA             1318555
544              1264357                  NA              612537
545              2365501                  NA             1162773
546              4001701                  NA             2024424
547              6123949                  NA             3001027
548              2190750                  NA             1084347
549              1264357                  NA              612537
550              6232894                  NA             3033772
551              1282588                  NA              630858
552              2679298                  NA             1318555
553               772902                  NA              380685
554              2265926                  NA             1137581
555             13111917                  NA             6515114
556              1990873                  NA              978574
557               308919                  NA              149938
558              2668688                  NA             1305000
559              2265926                  NA             1137581
560              2365501                  NA             1162773
561              2073546                  NA              975289
562              2265926                  NA             1137581
563              6123949                  NA             3001027
564              2265926                  NA             1137581
565              2265926                  NA             1137581
566              2265926                  NA             1137581
567              2679298                  NA             1318555
568              1264357                  NA              612537
569               772902                  NA              380685
570              2265926                  NA             1137581
571             13111917                  NA             6515114
572              2679298                  NA             1318555
573              9566955                  NA             4718471
574              4912449                  NA             2407307
575              3194310                  NA             1562880
576              6123949                  NA             3001027
577              4912449                  NA             2407307
578              2840005                  NA             1374325
579              2137223                  NA             1061042
580              2265926                  NA             1137581
581              2668688                  NA             1305000
582              2668688                  NA             1305000
583              6346083                  NA             3128067
584              6232894                  NA             3033772
585              6346083                  NA             3128067
586              2668688                  NA             1305000
587              2668688                  NA             1305000
588              2668688                  NA             1305000
589              2668688                  NA             1305000
590              2668688                  NA             1305000
591              2668688                  NA             1305000
592              6346083                  NA             3128067
593              6346083                  NA             3128067
594              6346083                  NA             3128067
595              2668688                  NA             1305000
596              2668688                  NA             1305000
597              2668688                  NA             1305000
598              2668688                  NA             1305000
599              6232894                  NA             3033772
600              2668688                  NA             1305000
601               863166                  NA              427343
602              1990873                  NA              978574
603             19908595                  NA             9713298
604              6346083                  NA             3128067
605               401702                  NA              198867
606              2668688                  NA             1305000
607              2668688                  NA             1305000
608              6232894                  NA             3033772
609              2668688                  NA             1305000
610              2668688                  NA             1305000
611              2668688                  NA             1305000
612              2668688                  NA             1305000
613              2668688                  NA             1305000
614              6346083                  NA             3128067
615              2668688                  NA             1305000
616               591397                  NA              285117
617              1613587                  NA              790463
618              1264357                  NA              612537
619              6232894                  NA             3033772
620               384740                  NA              183928
621              2668688                  NA             1305000
622              6346083                  NA             3128067
623              6346083                  NA             3128067
624              2668688                  NA             1305000
625              6232894                  NA             3033772
626              6232894                  NA             3033772
627              2668688                  NA             1305000
628              2668688                  NA             1305000
629              2668688                  NA             1305000
630              2668688                  NA             1305000
631              2668688                  NA             1305000
632              2668688                  NA             1305000
633              2668688                  NA             1305000
634              2668688                  NA             1305000
635              2668688                  NA             1305000
636              6346083                  NA             3128067
637              6346083                  NA             3128067
638              2668688                  NA             1305000
639              2668688                  NA             1305000
640              2668688                  NA             1305000
641              6346083                  NA             3128067
642              6346083                  NA             3128067
643              2668688                  NA             1305000
644              2668688                  NA             1305000
645              2668688                  NA             1305000
646              2668688                  NA             1305000
647              2668688                  NA             1305000
648              2668688                  NA             1305000
649              2668688                  NA             1305000
650              6346083                  NA             3128067
651              6346083                  NA             3128067
652              6232894                  NA             3033772
653              6232894                  NA             3033772
654              2668688                  NA             1305000
655              2668688                  NA             1305000
656              2668688                  NA             1305000
657              2668688                  NA             1305000
658              2668688                  NA             1305000
659              2668688                  NA             1305000
660              2668688                  NA             1305000
661              2668688                  NA             1305000
662              2668688                  NA             1305000
663              2668688                  NA             1305000
664              6346083                  NA             3128067
665              2668688                  NA             1305000
666              2668688                  NA             1305000
667              6346083                  NA             3128067
668              6232894                  NA             3033772
669              1990873                  NA              978574
670               803398                  NA              394257
671              6346083                  NA             3128067
672               289726                  NA              140509
673              1613587                  NA              790463
674              3678328                  NA             1837913
675              1420825                  NA              698689
676              2668688                  NA             1305000
677              2668688                  NA             1305000
678              6232894                  NA             3033772
679              6232894                  NA             3033772
680              6232894                  NA             3033772
681              6232894                  NA             3033772
682              6232894                  NA             3033772
683              2668688                  NA             1305000
684              2668688                  NA             1305000
685              6346083                  NA             3128067
686              6346083                  NA             3128067
687              6346083                  NA             3128067
688              6346083                  NA             3128067
689             13111917                  NA             6515114
690              2959386                  NA             1493164
691              9566955                  NA             4718471
692              9566955                  NA             4718471
693              9566955                  NA             4718471
694             13111917                  NA             6515114
695              3289701                  NA             1667851
696              2959386                  NA             1493164
697              9566955                  NA             4718471
698              9566955                  NA             4718471
699              2959386                  NA             1493164
700              4692242                  NA             2342253
701              2959386                  NA             1493164
702              9566955                  NA             4718471
703              2959386                  NA             1493164
704              7142603                  NA             3563435
705               585485                  NA              292820
706             13111917                  NA             6515114
707              2505312                  NA             1250855
708              4001701                  NA             2024424
709              4692242                  NA             2342253
710              1981584                  NA             1011796
711              4001701                  NA             2024424
712              1254675                  NA              635422
713              2959386                  NA             1493164
714              4864209                  NA             2434382
715              4864209                  NA             2434382
716              2505312                  NA             1250855
717              4692242                  NA             2342253
718             13111917                  NA             6515114
719              9566955                  NA             4718471
720              2959386                  NA             1493164
721              9566955                  NA             4718471
722              7673379                  NA             3806912
723              2959386                  NA             1493164
724              2959386                  NA             1493164
725             13111917                  NA             6515114
726              2959386                  NA             1493164
727             13111917                  NA             6515114
728              2296377                  NA             1160944
729               771602                  NA              388362
730               119685                  NA               62534
731               711490                  NA              355020
732              1335804                  NA              641128
733               966688                  NA              483251
734              2959386                  NA             1493164
735              2959386                  NA             1493164
736              3678328                  NA             1837913
737              2959386                  NA             1493164
738              2959386                  NA             1493164
739              9566955                  NA             4718471
740              4692242                  NA             2342253
741              4692242                  NA             2342253
742              4864209                  NA             2434382
743              2505312                  NA             1250855
744              3289701                  NA             1667851
745              4001701                  NA             2024424
746              4692242                  NA             2342253
747              4692242                  NA             2342253
748              3678328                  NA             1837913
749              1254675                  NA              635422
750              9566955                  NA             4718471
751              9566955                  NA             4718471
752              4375604                  NA             2148947
753               771602                  NA              388362
754               771602                  NA              388362
755             13111917                  NA             6515114
756              4001701                  NA             2024424
757              4692242                  NA             2342253
758              7142603                  NA             3563435
759              7142603                  NA             3563435
760              7142603                  NA             3563435
761              9566955                  NA             4718471
762              2959386                  NA             1493164
763              4375604                  NA             2148947
764              3678328                  NA             1837913
765              4375604                  NA             2148947
766               867161                  NA              431851
767              1254675                  NA              635422
768              2959386                  NA             1493164
769              2959386                  NA             1493164
770              9566955                  NA             4718471
771              6346083                  NA             3128067
772             13111917                  NA             6515114
773              4864209                  NA             2434382
774              1042393                  NA              516095
775               771602                  NA              388362
776               119685                  NA               62534
777               585485                  NA              292820
778               488436                  NA              240478
779              1981584                  NA             1011796
780                79008                  NA               40763
781              7142603                  NA             3563435
782              7142603                  NA             3563435
783              9566955                  NA             4718471
784              9566955                  NA             4718471
785              7673379                  NA             3806912
786              9566955                  NA             4718471
787              4864209                  NA             2434382
788              4692242                  NA             2342253
789              2959386                  NA             1493164
790              2959386                  NA             1493164
791              2959386                  NA             1493164
792              3289701                  NA             1667851
793              3678328                  NA             1837913
794               242972                  NA              122440
795              6346083                  NA             3128067
796              2959386                  NA             1493164
797              9566955                  NA             4718471
798              2505312                  NA             1250855
799              7673379                  NA             3806912
800             13111917                  NA             6515114
801              9566955                  NA             4718471
802              2959386                  NA             1493164
803              7142603                  NA             3563435
804             13111917                  NA             6515114
805              4375604                  NA             2148947
806              3678328                  NA             1837913
807              4864209                  NA             2434382
808              4864209                  NA             2434382
809              4692242                  NA             2342253
810              2079759                  NA             1012336
811               211078                  NA              103187
812               646794                  NA              322648
813               330119                  NA              161252
814               884359                  NA              435364
815              4375604                  NA             2148947
816             13111917                  NA             6515114
817              1008280                  NA              506526
818               222604                  NA              109360
819              4692242                  NA             2342253
820              3289701                  NA             1667851
821              4692242                  NA             2342253
822              2394673                  NA             1181313
823             13111917                  NA             6515114
824              4001701                  NA             2024424
825              4692242                  NA             2342253
826              1008280                  NA              506526
827              2959386                  NA             1493164
828              4375604                  NA             2148947
829              9566955                  NA             4718471
830              7142603                  NA             3563435
831              4864209                  NA             2434382
832              1981584                  NA             1011796
833              1254675                  NA              635422
834              4375604                  NA             2148947
835              2959386                  NA             1493164
836              4864209                  NA             2434382
837              4001701                  NA             2024424
838              1254675                  NA              635422
839              2959386                  NA             1493164
840              2959386                  NA             1493164
841              2959386                  NA             1493164
842              4001701                  NA             2024424
843              4864209                  NA             2434382
844              2394673                  NA             1181313
845              2296377                  NA             1160944
846              1008280                  NA              506526
847               437609                  NA              223186
848              2505312                  NA             1250855
849              1981584                  NA             1011796
850               488436                  NA              240478
851             13111917                  NA             6515114
852             13111917                  NA             6515114
853             13111917                  NA             6515114
854              4864209                  NA             2434382
855              4692242                  NA             2342253
856              4375604                  NA             2148947
857              2505312                  NA             1250855
858              3678328                  NA             1837913
859             13111917                  NA             6515114
860               771602                  NA              388362
861              1008280                  NA              506526
862               585485                  NA              292820
863              1981584                  NA             1011796
864              4610050                  NA             2315218
865              7673379                  NA             3806912
866              2505312                  NA             1250855
867              4864209                  NA             2434382
868             13111917                  NA             6515114
869               771602                  NA              388362
870              7673379                  NA             3806912
871               585485                  NA              292820
872              2296377                  NA             1160944
873               585485                  NA              292820
874             13111917                  NA             6515114
875              2505312                  NA             1250855
876              3289701                  NA             1667851
877              2959386                  NA             1493164
878              7673379                  NA             3806912
879              3289701                  NA             1667851
880             13111917                  NA             6515114
881              2959386                  NA             1493164
882              2959386                  NA             1493164
883              4692242                  NA             2342253
884              4692242                  NA             2342253
885              4692242                  NA             2342253
886               771602                  NA              388362
887              2505312                  NA             1250855
888              3289701                  NA             1667851
889              4001701                  NA             2024424
890              4001701                  NA             2024424
891              4692242                  NA             2342253
892              4692242                  NA             2342253
893              9566955                  NA             4718471
894              9566955                  NA             4718471
895              4864209                  NA             2434382
896             13111917                  NA             6515114
897              2505312                  NA             1250855
898              3289701                  NA             1667851
899              9566955                  NA             4718471
900              4375604                  NA             2148947
901             13111917                  NA             6515114
902              4001701                  NA             2024424
903              7142603                  NA             3563435
904              4692242                  NA             2342253
905              2505312                  NA             1250855
906              4001701                  NA             2024424
907              4001701                  NA             2024424
908              4001701                  NA             2024424
909                47141                  NA               23954
910              2394673                  NA             1181313
911              4001701                  NA             2024424
912              4001701                  NA             2024424
913              4001701                  NA             2024424
914              4001701                  NA             2024424
915              4001701                  NA             2024424
916              4001701                  NA             2024424
917              4001701                  NA             2024424
918              4001701                  NA             2024424
919              2505312                  NA             1250855
920              2505312                  NA             1250855
921              4001701                  NA             2024424
922              4692242                  NA             2342253
923              4001701                  NA             2024424
924              4001701                  NA             2024424
925              4001701                  NA             2024424
926              4692242                  NA             2342253
927             13111917                  NA             6515114
928              2505312                  NA             1250855
929              4001701                  NA             2024424
930               771602                  NA              388362
931               585485                  NA              292820
932              2265926                  NA             1137581
933             13111917                  NA             6515114
934               585485                  NA              292820
935              1981584                  NA             1011796
936              4692242                  NA             2342253
937              4001701                  NA             2024424
938              4001701                  NA             2024424
939             13111917                  NA             6515114
940              4001701                  NA             2024424
941              4001701                  NA             2024424
942               119685                  NA               62534
943               382218                  NA              189292
944               105950                  NA               53095
945                84423                  NA               43002
946               158478                  NA               79833
947               222604                  NA              109360
948               437609                  NA              223186
949               118541                  NA               59633
950              4692242                  NA             2342253
951              2505312                  NA             1250855
952                47141                  NA               23954
953               181852                  NA               89879
954               199352                  NA               99597
955               490769                  NA              249622
956              2394673                  NA             1181313
957              2265926                  NA             1137581
958               771602                  NA              388362
959               488436                  NA              240478
960              4001701                  NA             2024424
961              4001701                  NA             2024424
962              7142603                  NA             3563435
963              9566955                  NA             4718471
964              9566955                  NA             4718471
965              2959386                  NA             1493164
966              2959386                  NA             1493164
967              6346083                  NA             3128067
968              9566955                  NA             4718471
969              9566955                  NA             4718471
970              4912449                  NA             2407307
971              2959386                  NA             1493164
972              2959386                  NA             1493164
973             19908595                  NA             9713298
974              7142603                  NA             3563435
975              7142603                  NA             3563435
976              7142603                  NA             3563435
977              7142603                  NA             3563435
978              2959386                  NA             1493164
979              6346083                  NA             3128067
980              6346083                  NA             3128067
981              6346083                  NA             3128067
982              6346083                  NA             3128067
983              6346083                  NA             3128067
984              6346083                  NA             3128067
985               269418                  NA              135977
986              2959386                  NA             1493164
987              2959386                  NA             1493164
988              9566955                  NA             4718471
989              2959386                  NA             1493164
990              2959386                  NA             1493164
991             19908595                  NA             9713298
992             19908595                  NA             9713298
993             19908595                  NA             9713298
994             19908595                  NA             9713298
995             19908595                  NA             9713298
996              6346083                  NA             3128067
997              7142603                  NA             3563435
998             13111917                  NA             6515114
999              9566955                  NA             4718471
1000             4692242                  NA             2342253
1001            19908595                  NA             9713298
1002             6346083                  NA             3128067
1003             2959386                  NA             1493164
1004             9566955                  NA             4718471
1005             9566955                  NA             4718471
1006             4692242                  NA             2342253
1007             2959386                  NA             1493164
1008             2959386                  NA             1493164
1009             9566955                  NA             4718471
1010             9566955                  NA             4718471
1011             2959386                  NA             1493164
1012            19908595                  NA             9713298
1013             6123949                  NA             3001027
1014             6346083                  NA             3128067
1015             2959386                  NA             1493164
1016             9566955                  NA             4718471
1017             9566955                  NA             4718471
1018             4912449                  NA             2407307
1019            19908595                  NA             9713298
1020             6346083                  NA             3128067
1021             7142603                  NA             3563435
1022             7142603                  NA             3563435
1023            13111917                  NA             6515114
1024            13111917                  NA             6515114
1025             2190750                  NA             1084347
1026             9566955                  NA             4718471
1027             9566955                  NA             4718471
1028             9566955                  NA             4718471
1029             2505312                  NA             1250855
1030             4864209                  NA             2434382
1031             2570862                  NA             1280273
1032             2394673                  NA             1181313
1033            19908595                  NA             9713298
1034             9566955                  NA             4718471
1035             4692242                  NA             2342253
1036             2079759                  NA             1012336
1037             2079759                  NA             1012336
1038             2079759                  NA             1012336
1039             2959386                  NA             1493164
1040             2959386                  NA             1493164
1041             6346083                  NA             3128067
1042             7142603                  NA             3563435
1043             7142603                  NA             3563435
1044             1613587                  NA              790463
1045             2679298                  NA             1318555
1046             6123949                  NA             3001027
1047             9566955                  NA             4718471
1048             9566955                  NA             4718471
1049             6123949                  NA             3001027
1050             4864209                  NA             2434382
1051             1420825                  NA              698689
1052              772902                  NA              380685
1053             3289701                  NA             1667851
1054              406575                  NA              197548
1055             4692242                  NA             2342253
1056             2073546                  NA              975289
1057             1254675                  NA              635422
1058              844461                  NA              407362
1059             3194310                  NA             1562880
1060             2959386                  NA             1493164
1061             2959386                  NA             1493164
1062            19908595                  NA             9713298
1063             6346083                  NA             3128067
1064             7142603                  NA             3563435
1065             4692242                  NA             2342253
1066             2959386                  NA             1493164
1067             2959386                  NA             1493164
1068             9566955                  NA             4718471
1069            19908595                  NA             9713298
1070            19908595                  NA             9713298
1071            19908595                  NA             9713298
1072             7142603                  NA             3563435
1073             7142603                  NA             3563435
1074             7142603                  NA             3563435
1075             4692242                  NA             2342253
1076             4692242                  NA             2342253
1077             4692242                  NA             2342253
1078             1990873                  NA              978574
1079             4912449                  NA             2407307
1080             6123949                  NA             3001027
1081             1613587                  NA              790463
1082            13111917                  NA             6515114
1083             2679298                  NA             1318555
1084             6123949                  NA             3001027
1085             1420825                  NA              698689
1086             4692242                  NA             2342253
1087             3194310                  NA             1562880
1088             2959386                  NA             1493164
1089             1613587                  NA              790463
1090            13111917                  NA             6515114
1091            19908595                  NA             9713298
1092             1264357                  NA              612537
1093             9566955                  NA             4718471
1094             4864209                  NA             2434382
1095              772902                  NA              380685
1096             3194310                  NA             1562880
1097             2959386                  NA             1493164
1098             2959386                  NA             1493164
1099             2959386                  NA             1493164
1100            19908595                  NA             9713298
1101             6346083                  NA             3128067
1102             6346083                  NA             3128067
1103             7142603                  NA             3563435
1104             4692242                  NA             2342253
1105             2959386                  NA             1493164
1106             2959386                  NA             1493164
1107            19908595                  NA             9713298
1108            19908595                  NA             9713298
1109             6346083                  NA             3128067
1110             6346083                  NA             3128067
1111             7142603                  NA             3563435
1112             7142603                  NA             3563435
1113             7142603                  NA             3563435
1114             7142603                  NA             3563435
1115             7142603                  NA             3563435
1116             7142603                  NA             3563435
1117             9566955                  NA             4718471
1118             9566955                  NA             4718471
1119             2959386                  NA             1493164
1120            19908595                  NA             9713298
1121             7142603                  NA             3563435
1122             7142603                  NA             3563435
1123             7142603                  NA             3563435
1124             2265926                  NA             1137581
1125             2679298                  NA             1318555
1126             9566955                  NA             4718471
1127             2959386                  NA             1493164
1128             2959386                  NA             1493164
1129             6346083                  NA             3128067
1130             9566955                  NA             4718471
1131             2959386                  NA             1493164
1132            13111917                  NA             6515114
1133             2959386                  NA             1493164
1134            19908595                  NA             9713298
1135             6346083                  NA             3128067
1136             7142603                  NA             3563435
1137             7142603                  NA             3563435
1138             9566955                  NA             4718471
1139             7142603                  NA             3563435
1140             7142603                  NA             3563435
1141             2959386                  NA             1493164
1142             2959386                  NA             1493164
1143             2959386                  NA             1493164
1144             2959386                  NA             1493164
1145             6346083                  NA             3128067
1146             7142603                  NA             3563435
1147             2959386                  NA             1493164
1148             2959386                  NA             1493164
1149             2959386                  NA             1493164
1150             2959386                  NA             1493164
1151             2840005                  NA             1374325
1152             2079759                  NA             1012336
1153             6346083                  NA             3128067
1154             2959386                  NA             1493164
1155            19908595                  NA             9713298
1156             6123949                  NA             3001027
1157             1087068                  NA              546278
1158             6346083                  NA             3128067
1159             7142603                  NA             3563435
1160             2365501                  NA             1162773
1161             1316145                  NA              640643
1162             1086859                  NA              532509
1163             3289701                  NA             1667851
1164             2959386                  NA             1493164
1165             9566955                  NA             4718471
1166            19908595                  NA             9713298
1167             2959386                  NA             1493164
1168            19908595                  NA             9713298
1169             4692242                  NA             2342253
1170             4692242                  NA             2342253
1171             6346083                  NA             3128067
1172             9566955                  NA             4718471
1173             9566955                  NA             4718471
1174             2959386                  NA             1493164
1175             2959386                  NA             1493164
1176             9566955                  NA             4718471
1177             4692242                  NA             2342253
1178            19908595                  NA             9713298
1179             7142603                  NA             3563435
1180             7142603                  NA             3563435
1181             2959386                  NA             1493164
1182             2959386                  NA             1493164
1183             6346083                  NA             3128067
1184             9566955                  NA             4718471
1185             9566955                  NA             4718471
1186             9566955                  NA             4718471
1187             2296377                  NA             1160944
1188             6346083                  NA             3128067
1189            19908595                  NA             9713298
1190             6123949                  NA             3001027
1191             6346083                  NA             3128067
1192             6346083                  NA             3128067
1193             7142603                  NA             3563435
1194              164765                  21               82304
1195             9566955                  NA             4718471
1196             9566955                  NA             4718471
1197             9566955                  NA             4718471
1198            19908595                  NA             9713298
1199             7142603                  NA             3563435
1200             6346083                  NA             3128067
1201             2079759                  NA             1012336
1202             6346083                  NA             3128067
1203             7142603                  NA             3563435
1204             7142603                  NA             3563435
1205             7673379                  NA             3806912
1206             7673379                  NA             3806912
1207             2265926                  NA             1137581
1208             2296377                  NA             1160944
1209             2265926                  NA             1137581
1210             4864209                  NA             2434382
1211             2840005                  NA             1374325
1212             2840005                  NA             1374325
1213             2840005                  NA             1374325
1214             2840005                  NA             1374325
1215             2679298                  NA             1318555
1216             9566955                  NA             4718471
1217             9566955                  NA             4718471
1218             2840005                  NA             1374325
1219             2679298                  NA             1318555
1220             2265926                  NA             1137581
1221             7673379                  NA             3806912
1222             2840005                  NA             1374325
1223             7673379                  NA             3806912
1224             7673379                  NA             3806912
1225             7673379                  NA             3806912
1226             7673379                  NA             3806912
1227             7673379                  NA             3806912
1228             7142603                  NA             3563435
1229            19908595                  NA             9713298
1230             2679298                  NA             1318555
1231             9566955                  NA             4718471
1232             1568940                  NA              770847
1233             4864209                  NA             2434382
1234             4864209                  NA             2434382
1235             4864209                  NA             2434382
1236             2813523                  NA             1375126
1237             2296377                  NA             1160944
1238             1990873                  NA              978574
1239             2079759                  NA             1012336
1240              181055                  NA               90237
1241             6123949                  NA             3001027
1242             7142603                  NA             3563435
1243             2109957                  NA             1038760
1244              591397                  NA              285117
1245             2265926                  NA             1137581
1246              749290                  NA              363653
1247             2190750                  NA             1084347
1248             1335804                  NA              641128
1249              496299                  NA              240510
1250             6232894                  NA             3033772
1251             4864209                  NA             2434382
1252             2365501                  NA             1162773
1253             1316145                  NA              640643
1254              772902                  NA              380685
1255             3194310                  NA             1562880
1256             1990873                  NA              978574
1257             7673379                  NA             3806912
1258             7673379                  NA             3806912
1259             7673379                  NA             3806912
1260              867161                  NA              431851
1261             7142603                  NA             3563435
1262             7142603                  NA             3563435
1263            13111917                  NA             6515114
1264             9566955                  NA             4718471
1265             4864209                  NA             2434382
1266             4864209                  NA             2434382
1267             4864209                  NA             2434382
1268             3289701                  NA             1667851
1269            13111917                  NA             6515114
1270             2840005                  NA             1374325
1271             7673379                  NA             3806912
1272             6346083                  NA             3128067
1273             7142603                  NA             3563435
1274              421854                  NA              208182
1275            13111917                  NA             6515114
1276            13111917                  NA             6515114
1277             2190750                  NA             1084347
1278             9566955                  NA             4718471
1279             3678328                  NA             1837913
1280             1264357                  NA              612537
1281             4692242                  NA             2342253
1282             1420825                  NA              698689
1283            13111917                  NA             6515114
1284             2813523                  NA             1375126
1285             3194310                  NA             1562880
1286             9566955                  NA             4718471
1287             9566955                  NA             4718471
1288             2840005                  NA             1374325
1289             2679298                  NA             1318555
1290             2840005                  NA             1374325
1291             7673379                  NA             3806912
1292             7142603                  NA             3563435
1293             2679298                  NA             1318555
1294             9566955                  NA             4718471
1295             3194310                  NA             1562880
1296             2265926                  NA             1137581
1297             2296377                  NA             1160944
1298             1215703                 422              594920
1299             7673379                  NA             3806912
1300             2959386                  NA             1493164
1301             7142603                  NA             3563435
1302            19908595                  NA             9713298
1303             2190750                  NA             1084347
1304             2679298                  NA             1318555
1305             1798025                  NA              886709
1306             4864209                  NA             2434382
1307              772902                  NA              380685
1308             1981584                  NA             1011796
1309              844461                  NA              407362
1310             3194310                  NA             1562880
1311             4912449                  NA             2407307
1312             2840005                  NA             1374325
1313              803398                  NA              394257
1314             2079759                  NA             1012336
1315             2668688                  NA             1305000
1316             2137223                  NA             1061042
1317             4375604                  NA             2148947
1318              181055                  NA               90237
1319             1613587                  NA              790463
1320             9566955                  NA             4718471
1321             6123949                  NA             3001027
1322             1568940                  NA              770847
1323             1264357                  NA              612537
1324              496299                  NA              240510
1325             4692242                  NA             2342253
1326             4692242                  NA             2342253
1327             6232894                  NA             3033772
1328             2365501                  NA             1162773
1329              510290                  NA              256202
1330             1420825                  NA              698689
1331              406575                  NA              197548
1332              288639                  NA              146836
1333             2959386                  NA             1493164
1334             2959386                  NA             1493164
1335             2265926                  NA             1137581
1336             4692242                  NA             2342253
1337             4864209                  NA             2434382
1338             3289701                  NA             1667851
1339             2265926                  NA             1137581
1340             1990873                  NA              978574
1341             1990873                  NA              978574
1342             2840005                  NA             1374325
1343             2840005                  NA             1374325
1344             2840005                  NA             1374325
1345             2840005                  NA             1374325
1346             2840005                  NA             1374325
1347             2840005                  NA             1374325
1348             9566955                  NA             4718471
1349             9566955                  NA             4718471
1350             9566955                  NA             4718471
1351             9566955                  NA             4718471
1352             9566955                  NA             4718471
1353             9566955                  NA             4718471
1354             2840005                  NA             1374325
1355             6123949                  NA             3001027
1356             2679298                  NA             1318555
1357             9566955                  NA             4718471
1358             7673379                  NA             3806912
1359             7673379                  NA             3806912
1360             7673379                  NA             3806912
1361             7673379                  NA             3806912
1362             2265926                  NA             1137581
1363             2394673                  NA             1181313
1364             2296377                  NA             1160944
1365             2959386                  NA             1493164
1366             7142603                  NA             3563435
1367             4692242                  NA             2342253
1368             1981584                  NA             1011796
1369             1114368                  NA              538428
1370             1990873                  NA              978574
1371             1990873                  NA              978574
1372             2253528                  NA             1113732
1373             1087068                  NA              546278
1374             2109957                  NA             1038760
1375             9566955                  NA             4718471
1376              406575                  NA              197548
1377              288639                  NA              146836
1378             1215703                 422              594920
1379             1163462                  NA              568061
1380              803398                  NA              394257
1381             2079759                  NA             1012336
1382             6123949                  NA             3001027
1383              330119                  NA              161252
1384             7142603                  NA             3563435
1385            19908595                  NA             9713298
1386             2265926                  NA             1137581
1387            19908595                  NA             9713298
1388             9566955                  NA             4718471
1389             6123949                  NA             3001027
1390              496299                  NA              240510
1391             1798025                  NA              886709
1392             4864209                  NA             2434382
1393             2365501                  NA             1162773
1394             1670949                  NA              818990
1395              552916                  NA              270938
1396             1420825                  NA              698689
1397             1086859                  NA              532509
1398              772902                  NA              380685
1399             1282588                  NA              630858
1400             2959386                  NA             1493164
1401             2265926                  NA             1137581
1402             1990873                  NA              978574
1403             1990873                  NA              978574
1404             1990873                  NA              978574
1405             7673379                  NA             3806912
1406             9566955                  NA             4718471
1407             2813523                  NA             1375126
1408             1990873                  NA              978574
1409             1990873                  NA              978574
1410             2840005                  NA             1374325
1411             2265926                  NA             1137581
1412             9566955                  NA             4718471
1413             2813523                  NA             1375126
1414             1990873                  NA              978574
1415             9566955                  NA             4718471
1416             9566955                  NA             4718471
1417              844461                  NA              407362
1418             2813523                  NA             1375126
1419             1990873                  NA              978574
1420             2840005                  NA             1374325
1421             6346083                  NA             3128067
1422             2265926                  NA             1137581
1423             4864209                  NA             2434382
1424             2813523                  NA             1375126
1425             3194310                  NA             1562880
1426             2265926                  NA             1137581
1427             2265926                  NA             1137581
1428             4864209                  NA             2434382
1429             7142603                  NA             3563435
1430             7142603                  NA             3563435
1431             2959386                  NA             1493164
1432             9566955                  NA             4718471
1433             2840005                  NA             1374325
1434             2679298                  NA             1318555
1435             9566955                  NA             4718471
1436             9566955                  NA             4718471
1437             3194310                  NA             1562880
1438              915968                  NA              453044
1439             2296377                  NA             1160944
1440             1114368                  NA              538428
1441             2959386                  NA             1493164
1442             2959386                  NA             1493164
1443              867161                  NA              431851
1444             7142603                  NA             3563435
1445            19908595                  NA             9713298
1446            13111917                  NA             6515114
1447             2679298                  NA             1318555
1448             4692242                  NA             2342253
1449              966688                  NA              483251
1450             1981584                  NA             1011796
1451             1254675                  NA              635422
1452            13111917                  NA             6515114
1453             2813523                  NA             1375126
1454             3194310                  NA             1562880
1455              269278                 239              135933
1456             2296377                  NA             1160944
1457             2137223                  NA             1061042
1458              755081                  NA              384572
1459             6346083                  NA             3128067
1460              181055                  NA               90237
1461             6123949                  NA             3001027
1462             7142603                  NA             3563435
1463              322285                  NA              159719
1464              749290                  NA              363653
1465              174621                  NA               89435
1466             2190750                  NA             1084347
1467             9566955                  NA             4718471
1468             3678328                  NA             1837913
1469             1264357                  NA              612537
1470             9566955                  NA             4718471
1471             4864209                  NA             2434382
1472              510290                  NA              256202
1473             2570862                  NA             1280273
1474             1017724                  NA              503252
1475              288639                  NA              146836
1476             1990873                  NA              978574
1477             1990873                  NA              978574
1478             1990873                  NA              978574
1479             6123949                  NA             3001027
1480             9566955                  NA             4718471
1481             2813523                  NA             1375126
1482             2813523                  NA             1375126
1483             2137223                  NA             1061042
1484             7673379                  NA             3806912
1485             2679298                  NA             1318555
1486             1568940                  NA              770847
1487              966688                  NA              483251
1488              772902                  NA              380685
1489             2813523                  NA             1375126
1490             3194310                  NA             1562880
1491             1114368                  NA              538428
1492             1990873                  NA              978574
1493            13111917                  NA             6515114
1494             2840005                  NA             1374325
1495             2253528                  NA             1113732
1496             7673379                  NA             3806912
1497             7673379                  NA             3806912
1498              867161                  NA              431851
1499              585485                  NA              292820
1500             7142603                  NA             3563435
1501             2109957                  NA             1038760
1502             2265926                  NA             1137581
1503            19908595                  NA             9713298
1504             9566955                  NA             4718471
1505             9566955                  NA             4718471
1506             1568940                  NA              770847
1507              445213                  NA              223753
1508            13111917                  NA             6515114
1509             2813523                  NA             1375126
1510             1017724                  NA              503252
1511             1042393                  NA              516095
1512              915968                  NA              453044
1513             1163462                  NA              568061
1514              803398                  NA              394257
1515               24944                  NA               13144
1516             7142603                  NA             3563435
1517              646794                  NA              322648
1518             2265926                  NA             1137581
1519            13111917                  NA             6515114
1520              749290                  NA              363653
1521             6123949                  NA             3001027
1522             1264357                  NA              612537
1523             4692242                  NA             2342253
1524             1428923                  NA              708697
1525              490769                  NA              249622
1526             3289701                  NA             1667851
1527             3194310                  NA             1562880
1528             2813523                  NA             1375126
1529             1990873                  NA              978574
1530             9566955                  NA             4718471
1531             9566955                  NA             4718471
1532             1990873                  NA              978574
1533             2840005                  NA             1374325
1534             2813523                  NA             1375126
1535             7142603                  NA             3563435
1536             2813523                  NA             1375126
1537             2296377                  NA             1160944
1538             2959386                  NA             1493164
1539             7142603                  NA             3563435
1540             2265926                  NA             1137581
1541            13111917                  NA             6515114
1542             4864209                  NA             2434382
1543             2296377                  NA             1160944
1544             7142603                  NA             3563435
1545             7142603                  NA             3563435
1546             4864209                  NA             2434382
1547             2570862                  NA             1280273
1548             4692242                  NA             2342253
1549             2265926                  NA             1137581
1550             4692242                  NA             2342253
1551             2265926                  NA             1137581
1552             2840005                  NA             1374325
1553             7142603                  NA             3563435
1554             7142603                  NA             3563435
1555             7142603                  NA             3563435
1556             2679298                  NA             1318555
1557             1264357                  NA              612537
1558             1420825                  NA              698689
1559             2840005                  NA             1374325
1560             7673379                  NA             3806912
1561             6346083                  NA             3128067
1562             9566955                  NA             4718471
1563             4864209                  NA             2434382
1564             4864209                  NA             2434382
1565             2365501                  NA             1162773
1566             2570862                  NA             1280273
1567             3194310                  NA             1562880
1568             2959386                  NA             1493164
1569             2959386                  NA             1493164
1570             2265926                  NA             1137581
1571             9566955                  NA             4718471
1572             4864209                  NA             2434382
1573             2394673                  NA             1181313
1574             2265926                  NA             1137581
1575             4692242                  NA             2342253
1576             2840005                  NA             1374325
1577             7142603                  NA             3563435
1578               73511                  NA               36809
1579             4692242                  NA             2342253
1580             4692242                  NA             2342253
1581             4864209                  NA             2434382
1582             6094752                  NA             2965233
1583             1990873                  NA              978574
1584             2840005                  NA             1374325
1585             7673379                  NA             3806912
1586             2959386                  NA             1493164
1587              867161                  NA              431851
1588              330119                  NA              161252
1589             6123949                  NA             3001027
1590             3678328                  NA             1837913
1591             1264357                  NA              612537
1592             4864209                  NA             2434382
1593             2813523                  NA             1375126
1594             2813523                  NA             1375126
1595             2296377                  NA             1160944
1596            13111917                  NA             6515114
1597              181055                  NA               90237
1598             6123949                  NA             3001027
1599              421854                  NA              208182
1600             2265926                  NA             1137581
1601            13111917                  NA             6515114
1602              322285                  NA              159719
1603            19908595                  NA             9713298
1604            13111917                  NA             6515114
1605              174621                  NA               89435
1606             2679298                  NA             1318555
1607             1335804                  NA              641128
1608             4692242                  NA             2342253
1609             1428923                  NA              708697
1610             4610050                  NA             2315218
1611             6232894                  NA             3033772
1612              510290                  NA              256202
1613              772902                  NA              380685
1614             2570862                  NA             1280273
1615             2570862                  NA             1280273
1616              406575                  NA              197548
1617             1981584                  NA             1011796
1618             3194310                  NA             1562880
1619             1017724                  NA              503252
1620             7142603                  NA             3563435
1621             7142603                  NA             3563435
1622             9566955                  NA             4718471
1623             9566955                  NA             4718471
1624             7673379                  NA             3806912
1625             7673379                  NA             3806912
1626             9566955                  NA             4718471
1627             7673379                  NA             3806912
1628             7673379                  NA             3806912
1629             9566955                  NA             4718471
1630             2959386                  NA             1493164
1631             2813523                  NA             1375126
1632             2840005                  NA             1374325
1633             7673379                  NA             3806912
1634             7142603                  NA             3563435
1635             2679298                  NA             1318555
1636              772902                  NA              380685
1637              844461                  NA              407362
1638             1990873                  NA              978574
1639             2840005                  NA             1374325
1640             2840005                  NA             1374325
1641             2840005                  NA             1374325
1642             2813523                  NA             1375126
1643             1990873                  NA              978574
1644             9566955                  NA             4718471
1645             4864209                  NA             2434382
1646             4864209                  NA             2434382
1647             4864209                  NA             2434382
1648              915968                  NA              453044
1649              269278                 239              135933
1650             2296377                  NA             1160944
1651             2296377                  NA             1160944
1652             7673379                  NA             3806912
1653              585485                  NA              292820
1654             9566955                  NA             4718471
1655             1568940                  NA              770847
1656             4692242                  NA             2342253
1657             2505312                  NA             1250855
1658             2570862                  NA             1280273
1659             1254675                  NA              635422
1660             2394673                  NA             1181313
1661            13111917                  NA             6515114
1662             2813523                  NA             1375126
1663              771602                  NA              388362
1664            13111917                  NA             6515114
1665             2840005                  NA             1374325
1666              119685                  NA               62534
1667              755081                  NA              384572
1668              382218                  NA              189292
1669            13111917                  NA             6515114
1670             1568940                  NA              770847
1671             4610050                  NA             2315218
1672             4610050                  NA             2315218
1673              490769                  NA              249622
1674             3289701                  NA             1667851
1675              445213                  NA              223753
1676             1981584                  NA             1011796
1677             1017724                  NA              503252
1678             1042393                  NA              516095
1679              915968                  NA              453044
1680              867161                  NA              431851
1681             1010100                  NA              512085
1682             9566955                  NA             4718471
1683             1264357                  NA              612537
1684             1264357                  NA              612537
1685             4864209                  NA             2434382
1686             4864209                  NA             2434382
1687             2296377                  NA             1160944
1688             2296377                  NA             1160944
1689             7142603                  NA             3563435
1690              490769                  NA              249622
1691             2394673                  NA             1181313
1692             2394673                  NA             1181313
1693             2296377                  NA             1160944
1694             7673379                  NA             3806912
1695             2840005                  NA             1374325
1696             2840005                  NA             1374325
1697             7142603                  NA             3563435
1698             2813523                  NA             1375126
1699             2813523                  NA             1375126
1700             9566955                  NA             4718471
1701             1264357                  NA              612537
1702             2959386                  NA             1493164
1703             2265926                  NA             1137581
1704             4692242                  NA             2342253
1705             2394673                  NA             1181313
1706             2813523                  NA             1375126
1707             1010100                  NA              512085
1708             7142603                  NA             3563435
1709             7142603                  NA             3563435
1710             2265926                  NA             1137581
1711             9566955                  NA             4718471
1712              164765                  21               82304
1713              490769                  NA              249622
1714             2394673                  NA             1181313
1715             7673379                  NA             3806912
1716             7673379                  NA             3806912
1717             7142603                  NA             3563435
1718             2296377                  NA             1160944
1719             7673379                  NA             3806912
1720             9566955                  NA             4718471
1721             9566955                  NA             4718471
1722             2840005                  NA             1374325
1723             6123949                  NA             3001027
1724            19908595                  NA             9713298
1725             2679298                  NA             1318555
1726             1264357                  NA              612537
1727              772902                  NA              380685
1728             2840005                  NA             1374325
1729             7673379                  NA             3806912
1730             7673379                  NA             3806912
1731             7673379                  NA             3806912
1732             2959386                  NA             1493164
1733             7142603                  NA             3563435
1734             2190750                  NA             1084347
1735             2813523                  NA             1375126
1736             2813523                  NA             1375126
1737             2813523                  NA             1375126
1738              901729                  NA              444836
1739             1215703                 422              594920
1740             1114368                  NA              538428
1741             1163462                  NA              568061
1742             2253528                  NA             1113732
1743             6123949                  NA             3001027
1744             2109957                  NA             1038760
1745             1335804                  NA              641128
1746             1264357                  NA              612537
1747             1798025                  NA              886709
1748             4864209                  NA             2434382
1749             1282588                  NA              630858
1750             2813523                  NA             1375126
1751             2296377                  NA             1160944
1752             1114368                  NA              538428
1753             1990873                  NA              978574
1754             2840005                  NA             1374325
1755              803398                  NA              394257
1756             2137223                  NA             1061042
1757             7673379                  NA             3806912
1758             6346083                  NA             3128067
1759             2959386                  NA             1493164
1760             6123949                  NA             3001027
1761             1087068                  NA              546278
1762             6346083                  NA             3128067
1763             1613587                  NA              790463
1764            19908595                  NA             9713298
1765             2190750                  NA             1084347
1766             2679298                  NA             1318555
1767             3678328                  NA             1837913
1768             1264357                  NA              612537
1769              966688                  NA              483251
1770             1798025                  NA              886709
1771             4864209                  NA             2434382
1772             1670949                  NA              818990
1773             1316145                  NA              640643
1774             3289701                  NA             1667851
1775             1282588                  NA              630858
1776             4001701                  NA             2024424
1777             4692242                  NA             2342253
1778             3194310                  NA             1562880
1779             4912449                  NA             2407307
1780             1163462                  NA              568061
1781             2079759                  NA             1012336
1782             2079759                  NA             1012336
1783             2253528                  NA             1113732
1784             7142603                  NA             3563435
1785             7142603                  NA             3563435
1786            13111917                  NA             6515114
1787             1335804                  NA              641128
1788             6123949                  NA             3001027
1789              496299                  NA              240510
1790             4692242                  NA             2342253
1791             1428923                  NA              708697
1792             6232894                  NA             3033772
1793             2365501                  NA             1162773
1794             1420825                  NA              698689
1795              772902                  NA              380685
1796             2394673                  NA             1181313
1797            13111917                  NA             6515114
1798              844461                  NA              407362
1799             2813523                  NA             1375126
1800             1042393                  NA              516095
1801             2679298                  NA             1318555
1802             9566955                  NA             4718471
1803             7673379                  NA             3806912
1804             2959386                  NA             1493164
1805             7142603                  NA             3563435
1806             2840005                  NA             1374325
1807             2813523                  NA             1375126
1808             9566955                  NA             4718471
1809             1264357                  NA              612537
1810             2813523                  NA             1375126
1811             2840005                  NA             1374325
1812             6346083                  NA             3128067
1813             4864209                  NA             2434382
1814              772902                  NA              380685
1815             2813523                  NA             1375126
1816             7142603                  NA             3563435
1817             2813523                  NA             1375126
1818             7142603                  NA             3563435
1819             7142603                  NA             3563435
1820             2190750                  NA             1084347
1821             1990873                  NA              978574
1822             2840005                  NA             1374325
1823             6123949                  NA             3001027
1824            13111917                  NA             6515114
1825            19908595                  NA             9713298
1826             2679298                  NA             1318555
1827             2679298                  NA             1318555
1828             6123949                  NA             3001027
1829             2570862                  NA             1280273
1830             3194310                  NA             1562880
1831             7673379                  NA             3806912
1832             2840005                  NA             1374325
1833             9566955                  NA             4718471
1834             2296377                  NA             1160944
1835              226523                  NA              112654
1836            13111917                  NA             6515114
1837             1010100                  NA              512085
1838               73511                  NA               36809
1839             4610050                  NA             2315218
1840             4864209                  NA             2434382
1841             4610050                  NA             2315218
1842             3289701                  NA             1667851
1843              771602                  NA              388362
1844            13111917                  NA             6515114
1845              382218                  NA              189292
1846              585485                  NA              292820
1847              202163                  NA              100828
1848              445213                  NA              223753
1849            13111917                  NA             6515114
1850             1010100                  NA              512085
1851             2296377                  NA             1160944
1852             7142603                  NA             3563435
1853             9566955                  NA             4718471
1854             4864209                  NA             2434382
1855             2813523                  NA             1375126
1856             2265926                  NA             1137581
1857             9566955                  NA             4718471
1858             2813523                  NA             1375126
1859             7142603                  NA             3563435
1860             4692242                  NA             2342253
1861             1981584                  NA             1011796
1862             1990873                  NA              978574
1863             4864209                  NA             2434382
1864             1990873                  NA              978574
1865             7673379                  NA             3806912
1866             1990873                  NA              978574
1867             9566955                  NA             4718471
1868             2840005                  NA             1374325
1869             2679298                  NA             1318555
1870             9566955                  NA             4718471
1871             4864209                  NA             2434382
1872             4864209                  NA             2434382
1873             4864209                  NA             2434382
1874             1981584                  NA             1011796
1875             9566955                  NA             4718471
1876             2959386                  NA             1493164
1877             2296377                  NA             1160944
1878              585485                  NA              292820
1879             7142603                  NA             3563435
1880             4692242                  NA             2342253
1881             1428923                  NA              708697
1882             2505312                  NA             1250855
1883              490769                  NA              249622
1884             2570862                  NA             1280273
1885             1981584                  NA             1011796
1886             1254675                  NA              635422
1887             2394673                  NA             1181313
1888              915968                  NA              453044
1889             2296377                  NA             1160944
1890            13111917                  NA             6515114
1891             2137223                  NA             1061042
1892              755081                  NA              384572
1893              867161                  NA              431851
1894             6123949                  NA             3001027
1895            13111917                  NA             6515114
1896               73511                  NA               36809
1897             1568940                  NA              770847
1898              966688                  NA              483251
1899             4610050                  NA             2315218
1900             4610050                  NA             2315218
1901            13111917                  NA             6515114
1902             3194310                  NA             1562880
1903             4864209                  NA             2434382
1904              772902                  NA              380685
1905              844461                  NA              407362
1906             1990873                  NA              978574
1907             2840005                  NA             1374325
1908             6123949                  NA             3001027
1909             1990873                  NA              978574
1910             7673379                  NA             3806912
1911             7142603                  NA             3563435
1912             2394673                  NA             1181313
1913             2265926                  NA             1137581
1914             9566955                  NA             4718471
1915             2813523                  NA             1375126
1916             2840005                  NA             1374325
1917             2840005                  NA             1374325
1918             2679298                  NA             1318555
1919             3194310                  NA             1562880
1920             9566955                  NA             4718471
1921            13111917                  NA             6515114
1922            13111917                  NA             6515114
1923             3289701                  NA             1667851
1924             1981584                  NA             1011796
1925             2679298                  NA             1318555
1926             3194310                  NA             1562880
1927             9566955                  NA             4718471
1928             1568940                  NA              770847
1929             6346083                  NA             3128067
1930             2190750                  NA             1084347
1931             9566955                  NA             4718471
1932             1282588                  NA              630858
1933              771602                  NA              388362
1934             7673379                  NA             3806912
1935             7142603                  NA             3563435
1936             1981584                  NA             1011796
1937             1010100                  NA              512085
1938              164765                  21               82304
1939             1042393                  NA              516095
1940             7673379                  NA             3806912
1941             7142603                  NA             3563435
1942             1990873                  NA              978574
1943             7673379                  NA             3806912
1944              867161                  NA              431851
1945            13111917                  NA             6515114
1946             2265926                  NA             1137581
1947             4692242                  NA             2342253
1948             2679298                  NA             1318555
1949             9566955                  NA             4718471
1950             2840005                  NA             1374325
1951              772902                  NA              380685
1952             3194310                  NA             1562880
1953             4692242                  NA             2342253
1954             1981584                  NA             1011796
1955             4864209                  NA             2434382
1956            13111917                  NA             6515114
1957             3289701                  NA             1667851
1958             7673379                  NA             3806912
1959             2265926                  NA             1137581
1960              164765                  21               82304
1961              164765                  21               82304
1962             1010100                  NA              512085
1963              202163                  NA              100828
1964            13111917                  NA             6515114
1965             4610050                  NA             2315218
1966              490769                  NA              249622
1967            13111917                  NA             6515114
1968             2679298                  NA             1318555
1969             7673379                  NA             3806912
1970            13111917                  NA             6515114
1971             2679298                  NA             1318555
1972             2394673                  NA             1181313
1973              585485                  NA              292820
1974             3289701                  NA             1667851
1975             4001701                  NA             2024424
1976            13111917                  NA             6515114
1977             1010100                  NA              512085
1978            13111917                  NA             6515114
1979             4610050                  NA             2315218
1980             4610050                  NA             2315218
1981            13111917                  NA             6515114
1982             7673379                  NA             3806912
1983             4864209                  NA             2434382
1984             2296377                  NA             1160944
1985             2137223                  NA             1061042
1986             2296377                  NA             1160944
1987             2109957                  NA             1038760
1988            19908595                  NA             9713298
1989             2840005                  NA             1374325
1990             7673379                  NA             3806912
1991             6123949                  NA             3001027
1992             7142603                  NA             3563435
1993             1613587                  NA              790463
1994            19908595                  NA             9713298
1995            13111917                  NA             6515114
1996             9566955                  NA             4718471
1997             1264357                  NA              612537
1998             4001701                  NA             2024424
1999             2296377                  NA             1160944
2000             1990873                  NA              978574
2001             1990873                  NA              978574
2002             2137223                  NA             1061042
2003              711490                  NA              355020
2004              181055                  NA               90237
2005              646794                  NA              322648
2006            13111917                  NA             6515114
2007              749290                  NA              363653
2008             2190750                  NA             1084347
2009             2679298                  NA             1318555
2010             6123949                  NA             3001027
2011             1568940                  NA              770847
2012             1428923                  NA              708697
2013              966688                  NA              483251
2014             4864209                  NA             2434382
2015              510290                  NA              256202
2016              844461                  NA              407362
2017             1990873                  NA              978574
2018             2840005                  NA             1374325
2019             2137223                  NA             1061042
2020             6346083                  NA             3128067
2021             9566955                  NA             4718471
2022             1420825                  NA              698689
2023             1282588                  NA              630858
2024             1215703                 422              594920
2025             1114368                  NA              538428
2026             1163462                  NA              568061
2027             2253528                  NA             1113732
2028             6123949                  NA             3001027
2029             3289701                  NA             1667851
2030             2265926                  NA             1137581
2031             1990873                  NA              978574
2032             7673379                  NA             3806912
2033             7142603                  NA             3563435
2034             4864209                  NA             2434382
2035             6346083                  NA             3128067
2036             2813523                  NA             1375126
2037             7673379                  NA             3806912
2038             4864209                  NA             2434382
2039             7673379                  NA             3806912
2040             7673379                  NA             3806912
2041             7673379                  NA             3806912
2042            19908595                  NA             9713298
2043             2365501                  NA             1162773
2044              406575                  NA              197548
2045             1017724                  NA              503252
2046             7673379                  NA             3806912
2047             4864209                  NA             2434382
2048              906883                  NA              464093
2049              382218                  NA              189292
2050             7673379                  NA             3806912
2051             7673379                  NA             3806912
2052             7142603                  NA             3563435
2053             7142603                  NA             3563435
2054             7142603                  NA             3563435
2055             6346083                  NA             3128067
2056             6346083                  NA             3128067
2057             6232894                  NA             3033772
2058            19908595                  NA             9713298
2059             2109957                  NA             1038760
2060            19908595                  NA             9713298
2061             2137223                  NA             1061042
2062            19908595                  NA             9713298
2063            19908595                  NA             9713298
2064            19908595                  NA             9713298
2065            19908595                  NA             9713298
2066            19908595                  NA             9713298
2067            19908595                  NA             9713298
2068            19908595                  NA             9713298
2069             2365501                  NA             1162773
2070             1420825                  NA              698689
2071            19908595                  NA             9713298
2072            19908595                  NA             9713298
2073            19908595                  NA             9713298
2074             2668688                  NA             1305000
2075            19908595                  NA             9713298
2076            19908595                  NA             9713298
2077            19908595                  NA             9713298
2078            19908595                  NA             9713298
2079            19908595                  NA             9713298
2080            19908595                  NA             9713298
2081             4912449                  NA             2407307
2082             6232894                  NA             3033772
2083            19908595                  NA             9713298
2084             2668688                  NA             1305000
2085            19908595                  NA             9713298
2086             1420825                  NA              698689
2087             1282588                  NA              630858
2088             4912449                  NA             2407307
2089            19908595                  NA             9713298
2090              803398                  NA              394257
2091             4375604                  NA             2148947
2092               82044                  NA               42677
2093             1568940                  NA              770847
2094             1264357                  NA              612537
2095              552916                  NA              270938
2096             2668688                  NA             1305000
2097            19908595                  NA             9713298
2098             1264357                  NA              612537
2099              844461                  NA              407362
2100            19908595                  NA             9713298
2101             4912449                  NA             2407307
2102             2668688                  NA             1305000
2103             6346083                  NA             3128067
2104            19908595                  NA             9713298
2105             1990873                  NA              978574
2106             2840005                  NA             1374325
2107             2840005                  NA             1374325
2108             6346083                  NA             3128067
2109             1798025                  NA              886709
2110             6232894                  NA             3033772
2111             6232894                  NA             3033772
2112             2365501                  NA             1162773
2113             2079759                  NA             1012336
2114             2137223                  NA             1061042
2115             2109957                  NA             1038760
2116             2109957                  NA             1038760
2117             1316145                  NA              640643
2118             2253528                  NA             1113732
2119             2668688                  NA             1305000
2120             1613587                  NA              790463
2121             4912449                  NA             2407307
2122             1420825                  NA              698689
2123             2137223                  NA             1061042
2124             6346083                  NA             3128067
2125             6346083                  NA             3128067
2126            19908595                  NA             9713298
2127            19908595                  NA             9713298
2128             4912449                  NA             2407307
2129            19908595                  NA             9713298
2130            19908595                  NA             9713298
2131             9566955                  NA             4718471
2132             4912449                  NA             2407307
2133             6346083                  NA             3128067
2134            19908595                  NA             9713298
2135             6346083                  NA             3128067
2136             6232894                  NA             3033772
2137            19908595                  NA             9713298
2138             6346083                  NA             3128067
2139             2668688                  NA             1305000
2140            19908595                  NA             9713298
2141             2668688                  NA             1305000
2142             6346083                  NA             3128067
2143             9566955                  NA             4718471
2144             6346083                  NA             3128067
2145             6346083                  NA             3128067
2146             6346083                  NA             3128067
2147             1163462                  NA              568061
2148             6346083                  NA             3128067
2149             9566955                  NA             4718471
2150              775169                  NA              372915
2151            19908595                  NA             9713298
2152             6346083                  NA             3128067
2153             3678328                  NA             1837913
2154             3678328                  NA             1837913
2155              119685                  NA               62534
2156             4692242                  NA             2342253
2157             3678328                  NA             1837913
2158             6232894                  NA             3033772
2159             6232894                  NA             3033772
2160             6232894                  NA             3033772
2161             6232894                  NA             3033772
2162             6232894                  NA             3033772
2163             6232894                  NA             3033772
2164             6232894                  NA             3033772
2165             6232894                  NA             3033772
2166             6232894                  NA             3033772
2167             4912449                  NA             2407307
2168             6232894                  NA             3033772
2169              144705                  NA               71707
2170             2959386                  NA             1493164
2171             6346083                  NA             3128067
2172              749290                  NA              363653
2173            19908595                  NA             9713298
2174               82044                  NA               42677
2175             2679298                  NA             1318555
2176             2679298                  NA             1318555
2177             3194310                  NA             1562880
2178             6123949                  NA             3001027
2179             3194310                  NA             1562880
2180              866377                  58              420485
2181             4912449                  NA             2407307
2182             7142603                  NA             3563435
2183            19908595                  NA             9713298
2184             1568940                  NA              770847
2185            19908595                  NA             9713298
2186             2265926                  NA             1137581
2187             6123949                  NA             3001027
2188             4912449                  NA             2407307
2189             4610050                  NA             2315218
2190              164765                  21               82304
2191             7673379                  NA             3806912
2192             4864209                  NA             2434382
2193             7673379                  NA             3806912
2194                  NA                  NA                  NA
2195             3289701                  NA             1667851
2196             4692242                  NA             2342253
2197             2190750                  NA             1084347
2198             1420825                  NA              698689
2199             6123949                  NA             3001027
2200             4001701                  NA             2024424
2201             1010100                  NA              512085
2202              772902                  NA              380685
2203             4692242                  NA             2342253
2204              772902                  NA              380685
2205            19908595                  NA             9713298
2206             1215703                 422              594920
2207              915968                  NA              453044
2208             4912449                  NA             2407307
2209               35159                  NA               18160
2210              610723                  NA              300904
2211             6123949                  NA             3001027
2212             2505312                  NA             1250855
2213             2679298                  NA             1318555
2214            13111917                  NA             6515114
2215             2190750                  NA             1084347
2216             4864209                  NA             2434382
2217             7673379                  NA             3806912
2218             2296377                  NA             1160944
2219             2959386                  NA             1493164
2220             6123949                  NA             3001027
2221             2073546                  NA              975289
2222             2253528                  NA             1113732
2223            19908595                  NA             9713298
2224             1420825                  NA              698689
2225             6123949                  NA             3001027
2226             3289701                  NA             1667851
2227             6094752                  NA             2965233
2228             2296377                  NA             1160944
2229             2190750                  NA             1084347
2230             3678328                  NA             1837913
2231            13111917                  NA             6515114
2232             4001701                  NA             2024424
2233             2668688                  NA             1305000
2234            19908595                  NA             9713298
2235             4610050                  NA             2315218
2236              772902                  NA              380685
2237            13111917                  NA             6515114
2238             4912449                  NA             2407307
2239               24944                  NA               13144
2240              490769                  NA              249622
2241             1254675                  NA              635422
2242             4692242                  NA             2342253
2243             3194310                  NA             1562880
2244             1420825                  NA              698689
2245             2137223                  NA             1061042
2246             2190750                  NA             1084347
2247              915968                  NA              453044
2248            19908595                  NA             9713298
2249             4001701                  NA             2024424
2250             3678328                  NA             1837913
2251             1254675                  NA              635422
2252             3194310                  NA             1562880
2253             2073546                  NA              975289
2254             6123949                  NA             3001027
2255              399335                  NA              205955
2256             1010100                  NA              512085
2257                  NA                  NA                  NA
2258             1010100                  NA              512085
2259              202163                  NA              100828
2260             1010100                  NA              512085
2261              164765                  21               82304
2262             2265926                  NA             1137581
2263             6094752                  NA             2965233
2264              869755                  NA              427134
2265              341067                  NA              165567
2266              416839                  NA              205169
2267              515954                  NA              253400
2268              429312                  NA              206306
2269              314708                  NA              152116
2270              477056                  NA              234726
2271             1017724                  NA              503252
2272            19908595                  NA             9713298
2273             1568940                  NA              770847
2274             1316145                  NA              640643
2275             6094752                  NA             2965233
2276            19908595                  NA             9713298
2277             4912449                  NA             2407307
2278             4375604                  NA             2148947
2279              225745                  NA              112032
2280              803398                  NA              394257
2281              330119                  NA              161252
2282              552916                  NA              270938
2283             1420825                  NA              698689
2284             1086859                  NA              532509
2285              884359                  NA              435364
2286             2253528                  NA             1113732
2287             6094752                  NA             2965233
2288            19908595                  NA             9713298
2289              152640                  NA               75942
2290             1990873                  NA              978574
2291              803398                  NA              394257
2292              803398                  NA              394257
2293             2365501                  NA             1162773
2294              406575                  NA              197548
2295             1114368                  NA              538428
2296              775169                  NA              372915
2297              330119                  NA              161252
2298             1335804                  NA              641128
2299              552916                  NA              270938
2300              406575                  NA              197548
2301             6094752                  NA             2965233
2302             2253528                  NA             1113732
2303              711490                  NA              355020
2304            19908595                  NA             9713298
2305            19908595                  NA             9713298
2306             6094752                  NA             2965233
2307             4375604                  NA             2148947
2308            19908595                  NA             9713298
2309             3194310                  NA             1562880
2310             4912449                  NA             2407307
2311             7673379                  NA             3806912
2312            19908595                  NA             9713298
2313             6123949                  NA             3001027
2314             2296377                  NA             1160944
2315             7673379                  NA             3806912
2316             7673379                  NA             3806912
2317             4864209                  NA             2434382
2318             2668688                  NA             1305000
2319             2137223                  NA             1061042
2320             2265926                  NA             1137581
2321             3678328                  NA             1837913
2322             1264357                  NA              612537
2323             1798025                  NA              886709
2324             4864209                  NA             2434382
2325             2365501                  NA             1162773
2326              552916                  NA              270938
2327             3194310                  NA             1562880
2328             2668688                  NA             1305000
2329            19908595                  NA             9713298
2330             1613587                  NA              790463
2331             1335804                  NA              641128
2332              915968                  NA              453044
2333              152640                  NA               75942
2334             2137223                  NA             1061042
2335              775169                  NA              372915
2336              646794                  NA              322648
2337            13111917                  NA             6515114
2338              593318                  NA              293750
2339              873167                  NA              431639
2340             1568940                  NA              770847
2341             4610050                  NA             2315218
2342             6123949                  NA             3001027
2343              552916                  NA              270938
2344              772902                  NA              380685
2345             4692242                  NA             2342253
2346             9566955                  NA             4718471
2347             9566955                  NA             4718471
2348             2668688                  NA             1305000
2349             6123949                  NA             3001027
2350             7673379                  NA             3806912
2351             7673379                  NA             3806912
2352             6123949                  NA             3001027
2353             7673379                  NA             3806912
2354             2668688                  NA             1305000
2355             7673379                  NA             3806912
2356             2668688                  NA             1305000
2357             9566955                  NA             4718471
2358             2296377                  NA             1160944
2359             7673379                  NA             3806912
2360             2668688                  NA             1305000
2361             7673379                  NA             3806912
2362             7673379                  NA             3806912
2363             3194310                  NA             1562880
2364             2265926                  NA             1137581
2365             4864209                  NA             2434382
2366             4692242                  NA             2342253
2367             2073546                  NA              975289
2368                  NA                  NA                  NA
2369             2668688                  NA             1305000
2370             7673379                  NA             3806912
2371             7673379                  NA             3806912
2372               82044                  NA               42677
2373             4610050                  NA             2315218
2374             2073546                  NA              975289
2375            13111917                  NA             6515114
2376              844461                  NA              407362
2377             2668688                  NA             1305000
2378             7673379                  NA             3806912
2379              772902                  NA              380685
2380             4912449                  NA             2407307
2381            19908595                  NA             9713298
2382            19908595                  NA             9713298
2383             6123949                  NA             3001027
2384             2668688                  NA             1305000
2385             7673379                  NA             3806912
2386             6123949                  NA             3001027
2387             7673379                  NA             3806912
2388             7673379                  NA             3806912
2389             6232894                  NA             3033772
2390             2668688                  NA             1305000
2391             2668688                  NA             1305000
2392             2668688                  NA             1305000
2393             6123949                  NA             3001027
2394             6123949                  NA             3001027
2395             6232894                  NA             3033772
2396             7673379                  NA             3806912
2397             7673379                  NA             3806912
2398             1010100                  NA              512085
2399                  NA                  NA                  NA
2400              399335                  NA              205955
2401             4001701                  NA             2024424
2402             4001701                  NA             2024424
2403              399335                  NA              205955
2404              399335                  NA              205955
2405               73511                  NA               36809
2406             2505312                  NA             1250855
2407             4001701                  NA             2024424
2408              399335                  NA              205955
2409               73511                  NA               36809
2410             4001701                  NA             2024424
2411             4610050                  NA             2315218
2412             6123949                  NA             3001027
2413               73511                  NA               36809
2414             2679298                  NA             1318555
2415             6346083                  NA             3128067
2416            19908595                  NA             9713298
2417             4912449                  NA             2407307
2418             6123949                  NA             3001027
2419             6123949                  NA             3001027
2420             4692242                  NA             2342253
2421             1163462                  NA              568061
2422             6123949                  NA             3001027
2423             3289701                  NA             1667851
2424              844461                  NA              407362
2425            19908595                  NA             9713298
2426             6123949                  NA             3001027
2427             1316145                  NA              640643
2428              915968                  NA              453044
2429             4912449                  NA             2407307
2430            13111917                  NA             6515114
2431             6123949                  NA             3001027
2432             4610050                  NA             2315218
2433             1215703                 422              594920
2434             1163462                  NA              568061
2435            19908595                  NA             9713298
2436             2679298                  NA             1318555
2437             6123949                  NA             3001027
2438            19908595                  NA             9713298
2439            19908595                  NA             9713298
2440             3194310                  NA             1562880
2441            19908595                  NA             9713298
2442             4912449                  NA             2407307
2443             2679298                  NA             1318555
2444              901729                  NA              444836
2445             1215703                 422              594920
2446              771602                  NA              388362
2447              119685                  NA               62534
2448             2137223                  NA             1061042
2449              812506                  NA              397560
2450               55650                  NA               29968
2451              775169                  NA              372915
2452              493980                  NA              244298
2453              289726                  NA              140509
2454             1613587                  NA              790463
2455              966688                  NA              483251
2456             1798025                  NA              886709
2457              510290                  NA              256202
2458              552916                  NA              270938
2459             1420825                  NA              698689
2460             3289701                  NA             1667851
2461             4692242                  NA             2342253
2462             2073546                  NA              975289
2463            13111917                  NA             6515114
2464             1042393                  NA              516095
2465              288639                  NA              146836
2466             4375604                  NA             2148947
2467             4001701                  NA             2024424
2468             1254675                  NA              635422
2469             6123949                  NA             3001027
2470             3678328                  NA             1837913
2471             1254675                  NA              635422
2472             6123949                  NA             3001027
2473             2265926                  NA             1137581
2474              772902                  NA              380685
2475             4375604                  NA             2148947
2476            19908595                  NA             9713298
2477             2296377                  NA             1160944
2478             4912449                  NA             2407307
2479             1163462                  NA              568061
2480             1568940                  NA              770847
2481              496299                  NA              240510
2482             3289701                  NA             1667851
2483             2570862                  NA             1280273
2484             4692242                  NA             2342253
2485              844461                  NA              407362
2486             6094752                  NA             2965233
2487             6094752                  NA             2965233
2488             4001701                  NA             2024424
2489             1254675                  NA              635422
2490             1264357                  NA              612537
2491             6123949                  NA             3001027
2492             2109957                  NA             1038760
2493             3194310                  NA             1562880
2494             4912449                  NA             2407307
2495             1254675                  NA              635422
2496             4912449                  NA             2407307
2497            19908595                  NA             9713298
2498             1215703                 422              594920
2499             2840005                  NA             1374325
2500             4375604                  NA             2148947
2501             6123949                  NA             3001027
2502             2190750                  NA             1084347
2503             1568940                  NA              770847
2504              118541                  NA               59633
2505             4610050                  NA             2315218
2506             2570862                  NA             1280273
2507             2394673                  NA             1181313
2508            13111917                  NA             6515114
2509              844461                  NA              407362
2510             4912449                  NA             2407307
2511             4375604                  NA             2148947
2512             2253528                  NA             1113732
2513             4375604                  NA             2148947
2514             2296377                  NA             1160944
2515            19908595                  NA             9713298
2516             3678328                  NA             1837913
2517             3194310                  NA             1562880
2518             4912449                  NA             2407307
2519             6094752                  NA             2965233
2520             1990873                  NA              978574
2521             4912449                  NA             2407307
2522             2840005                  NA             1374325
2523             6346083                  NA             3128067
2524             6123949                  NA             3001027
2525             2109957                  NA             1038760
2526             1264357                  NA              612537
2527             2505312                  NA             1250855
2528             1420825                  NA              698689
2529              490769                  NA              249622
2530             2570862                  NA             1280273
2531             2813523                  NA             1375126
2532             3194310                  NA             1562880
2533             6094752                  NA             2965233
2534            19908595                  NA             9713298
2535              225745                  NA              112032
2536             1163462                  NA              568061
2537             1087068                  NA              546278
2538              330119                  NA              161252
2539              218515                  NA              108665
2540             1316145                  NA              640643
2541              225745                  NA              112032
2542             2813523                  NA             1375126
2543              202163                  NA              100828
2544             7673379                  NA             3806912
2545             7673379                  NA             3806912
2546              421854                  NA              208182
2547              831913                  NA              404751
2548              223223                  NA              111472
2549              422187                  NA              211290
2550              208406                  NA              100899
2551              884359                  NA              435364
2552             6123949                  NA             3001027
2553             6123949                  NA             3001027
2554             7673379                  NA             3806912
2555             7673379                  NA             3806912
2556             7673379                  NA             3806912
2557             7673379                  NA             3806912
2558             7673379                  NA             3806912
2559              966688                  NA              483251
2560             6123949                  NA             3001027
2561              966688                  NA              483251
2562              711490                  NA              355020
2563              225911                  NA              111978
2564             7673379                  NA             3806912
2565             6123949                  NA             3001027
2566             2668688                  NA             1305000
2567             2668688                  NA             1305000
2568              678995                  NA              341280
2569             2079759                  NA             1012336
2570             4375604                  NA             2148947
2571              479865                  NA              235485
2572              749290                  NA              363653
2573              593318                  NA              293750
2574              812506                  NA              397560
2575              884359                  NA              435364
2576             6346083                  NA             3128067
2577             6232894                  NA             3033772
2578              422733                  NA              212276
2579             6346083                  NA             3128067
2580             6346083                  NA             3128067
2581             3678328                  NA             1837913
2582             2959386                  NA             1493164
2583             7673379                  NA             3806912
2584              242972                  NA              122440
2585             1990873                  NA              978574
2586               79506                  NA               40147
2587              382218                  NA              189292
2588              174621                  NA               89435
2589             1798025                  NA              886709
2590             1282588                  NA              630858
2591                  NA                  NA                  NA
2592              901729                  NA              444836
2593              966688                  NA              483251
2594              323992                  NA              159346
2595             7673379                  NA             3806912
2596             9566955                  NA             4718471
2597             3678328                  NA             1837913
2598             2190750                  NA             1084347
2599             1568940                  NA              770847
2600             4610050                  NA             2315218
2601              550596                  NA              277195
2602             2959386                  NA             1493164
2603             2959386                  NA             1493164
2604             7142603                  NA             3563435
2605              133467                 110               67534
2606             1335804                  NA              641128
2607             1428923                  NA              708697
2608              966688                  NA              483251
2609             2365501                  NA             1162773
2610             1316145                  NA              640643
2611             1282588                  NA              630858
2612             3678328                  NA             1837913
2613             1215703                 422              594920
2614              901729                  NA              444836
2615             1114368                  NA              538428
2616             1335804                  NA              641128
2617              140356                  NA               72104
2618             4375604                  NA             2148947
2619               55983                  NA               28379
2620             3678328                  NA             1837913
2621             2959386                  NA             1493164
2622             4610050                  NA             2315218
2623              915968                  NA              453044
2624             1042393                  NA              516095
2625              915968                  NA              453044
2626             1008280                  NA              506526
2627               83760                  NA               42020
2628              304252                  NA              154587
2629             4610050                  NA             2315218
2630              140356                  NA               72104
2631             1042393                  NA              516095
2632             1254675                  NA              635422
2633              771602                  NA              388362
2634             4692242                  NA             2342253
2635               73511                  NA               36809
2636              678995                  NA              341280
2637              118541                  NA               59633
2638             7142603                  NA             3563435
2639             2570862                  NA             1280273
2640             2394673                  NA             1181313
2641             2959386                  NA             1493164
2642             7142603                  NA             3563435
2643             2505312                  NA             1250855
2644             4864209                  NA             2434382
2645             3289701                  NA             1667851
2646             2073546                  NA              975289
2647             2840005                  NA             1374325
2648             2137223                  NA             1061042
2649             2253528                  NA             1113732
2650             1010100                  NA              512085
2651               35159                  NA               18160
2652             6232894                  NA             3033772
2653             2365501                  NA             1162773
2654             4001701                  NA             2024424
2655            19908595                  NA             9713298
2656             7142603                  NA             3563435
2657             7142603                  NA             3563435
2658             7142603                  NA             3563435
2659            19908595                  NA             9713298
2660             9566955                  NA             4718471
2661             2840005                  NA             1374325
2662             1010100                  NA              512085
2663             2679298                  NA             1318555
2664             4001701                  NA             2024424
2665            19908595                  NA             9713298
2666             2959386                  NA             1493164
2667            19908595                  NA             9713298
2668             1981584                  NA             1011796
2669             1990873                  NA              978574
2670             2073546                  NA              975289
2671              772902                  NA              380685
2672              181055                  NA               90237
2673             7142603                  NA             3563435
2674             1010100                  NA              512085
2675             2190750                  NA             1084347
2676             1990873                  NA              978574
2677             1010100                  NA              512085
2678             2109957                  NA             1038760
2679             2570862                  NA             1280273
2680             6123949                  NA             3001027
2681             7142603                  NA             3563435
2682             7673379                  NA             3806912
2683              711490                  NA              355020
2684               82044                  NA               42677
2685             1282588                  NA              630858
2686             6346083                  NA             3128067
2687              803398                  NA              394257
2688             2079759                  NA             1012336
2689             1613587                  NA              790463
2690             4912449                  NA             2407307
2691            19908595                  NA             9713298
2692              678995                  NA              341280
2693             2137223                  NA             1061042
2694             2190750                  NA             1084347
2695             1335804                  NA              641128
2696              678995                  NA              341280
2697             1282588                  NA              630858
2698            19908595                  NA             9713298
2699              550596                  NA              277195
2700               82044                  NA               42677
2701             1282588                  NA              630858
2702            19908595                  NA             9713298
2703            19908595                  NA             9713298
2704              803398                  NA              394257
2705             1613587                  NA              790463
2706             1282588                  NA              630858
2707               82044                  NA               42677
2708             1264357                  NA              612537
2709             2668688                  NA             1305000
2710             4912449                  NA             2407307
2711            19908595                  NA             9713298
2712             9566955                  NA             4718471
2713              102555                  NA               50314
2714              831913                  NA              404751
2715              510290                  NA              256202
2716             9566955                  NA             4718471
2717              421854                  NA              208182
2718             3678328                  NA             1837913
2719              328011                  NA              164852
2720              421982                  NA              206161
2721             1282588                  NA              630858
2722             6232894                  NA             3033772
2723            19908595                  NA             9713298
2724              406575                  NA              197548
2725             7142603                  NA             3563435
2726               33828                 100               17746
2727              901729                  NA              444836
2728              429312                  NA              206306
2729             2813523                  NA             1375126
2730             7142603                  NA             3563435
2731             2959386                  NA             1493164
2732              863166                  NA              427343
2733            19908595                  NA             9713298
2734            19908595                  NA             9713298
2735            19908595                  NA             9713298
2736             3678328                  NA             1837913
2737            19908595                  NA             9713298
2738            19908595                  NA             9713298
2739              225745                  NA              112032
2740              552916                  NA              270938
2741              831913                  NA              404751
2742             1087068                  NA              546278
2743             1798025                  NA              886709
2744             6094752                  NA             2965233
2745            19908595                  NA             9713298
2746             4912449                  NA             2407307
2747            19908595                  NA             9713298
2748            19908595                  NA             9713298
2749            19908595                  NA             9713298
2750            19908595                  NA             9713298
2751             7673379                  NA             3806912
2752             7673379                  NA             3806912
2753             6123949                  NA             3001027
2754             4864209                  NA             2434382
2755             2668688                  NA             1305000
2756             2668688                  NA             1305000
2757             7673379                  NA             3806912
2758             7673379                  NA             3806912
2759             7673379                  NA             3806912
2760             7673379                  NA             3806912
2761             2668688                  NA             1305000
2762             2668688                  NA             1305000
2763             7673379                  NA             3806912
2764             6123949                  NA             3001027
2765             4864209                  NA             2434382
2766             9566955                  NA             4718471
2767             4912449                  NA             2407307
2768             1163462                  NA              568061
2769             2840005                  NA             1374325
2770             2253528                  NA             1113732
2771             7673379                  NA             3806912
2772               82044                  NA               42677
2773             6123949                  NA             3001027
2774            13111917                  NA             6515114
2775             6123949                  NA             3001027
2776             4864209                  NA             2434382
2777              772902                  NA              380685
2778             4692242                  NA             2342253
2779             2813523                  NA             1375126
2780              658694                  NA              322943
2781             7673379                  NA             3806912
2782             7673379                  NA             3806912
2783              844461                  NA              407362
2784             6232894                  NA             3033772
2785             1990873                  NA              978574
2786              771602                  NA              388362
2787            13111917                  NA             6515114
2788              755081                  NA              384572
2789             2253528                  NA             1113732
2790             6346083                  NA             3128067
2791               35159                  NA               18160
2792              749290                  NA              363653
2793             2190750                  NA             1084347
2794             2679298                  NA             1318555
2795             6123949                  NA             3001027
2796             2365501                  NA             1162773
2797             3289701                  NA             1667851
2798              406575                  NA              197548
2799             2073546                  NA              975289
2800             2394673                  NA             1181313
2801            13111917                  NA             6515114
2802             7673379                  NA             3806912
2803             2668688                  NA             1305000
2804             2668688                  NA             1305000
2805            13111917                  NA             6515114
2806             7673379                  NA             3806912
2807             7673379                  NA             3806912
2808             6123949                  NA             3001027
2809             7673379                  NA             3806912
2810             6123949                  NA             3001027
2811             6123949                  NA             3001027
2812             2668688                  NA             1305000
2813             7673379                  NA             3806912
2814             7673379                  NA             3806912
2815             2296377                  NA             1160944
2816             2668688                  NA             1305000
2817             2668688                  NA             1305000
2818             6346083                  NA             3128067
2819             7673379                  NA             3806912
2820             7673379                  NA             3806912
2821             7673379                  NA             3806912
2822             6232894                  NA             3033772
2823             2668688                  NA             1305000
2824             2668688                  NA             1305000
2825             2668688                  NA             1305000
2826             4864209                  NA             2434382
2827             7673379                  NA             3806912
2828             6123949                  NA             3001027
2829             1420825                  NA              698689
2830             1990873                  NA              978574
2831              803398                  NA              394257
2832             2668688                  NA             1305000
2833             6346083                  NA             3128067
2834             7673379                  NA             3806912
2835             1613587                  NA              790463
2836             4001701                  NA             2024424
2837             4864209                  NA             2434382
2838             2668688                  NA             1305000
2839             7673379                  NA             3806912
2840             6123949                  NA             3001027
2841             1042393                  NA              516095
2842             7673379                  NA             3806912
2843             6232894                  NA             3033772
2844             7673379                  NA             3806912
2845             2668688                  NA             1305000
2846             2668688                  NA             1305000
2847             2679298                  NA             1318555
2848              678995                  NA              341280
2849             7673379                  NA             3806912
2850             7673379                  NA             3806912
2851             4864209                  NA             2434382
2852             2668688                  NA             1305000
2853             7673379                  NA             3806912
2854             6123949                  NA             3001027
2855             7673379                  NA             3806912
2856             7673379                  NA             3806912
2857             6123949                  NA             3001027
2858             9566955                  NA             4718471
2859             6232894                  NA             3033772
2860             6123949                  NA             3001027
2861             7673379                  NA             3806912
2862             7673379                  NA             3806912
2863             6232894                  NA             3033772
2864             6232894                  NA             3033772
2865             7673379                  NA             3806912
2866             7673379                  NA             3806912
2867             4912449                  NA             2407307
2868             2668688                  NA             1305000
2869             6232894                  NA             3033772
2870             9566955                  NA             4718471
2871             4001701                  NA             2024424
2872             4001701                  NA             2024424
2873             4001701                  NA             2024424
2874             4001701                  NA             2024424
2875             4001701                  NA             2024424
2876             4001701                  NA             2024424
2877                  NA                  NA                  NA
2878               32108                  NA               16461
2879             3289701                  NA             1667851
2880             4001701                  NA             2024424
2881              915968                  NA              453044
2882             2679298                  NA             1318555
2883             4001701                  NA             2024424
2884            13111917                  NA             6515114
2885             2137223                  NA             1061042
2886             2253528                  NA             1113732
2887             2109957                  NA             1038760
2888             1568940                  NA              770847
2889              164765                  21               82304
2890             1428923                  NA              708697
2891              966688                  NA              483251
2892             1420825                  NA              698689
2893             2570862                  NA             1280273
2894             2813523                  NA             1375126
2895             1042393                  NA              516095
2896             1010100                  NA              512085
2897            13111917                  NA             6515114
2898             6123949                  NA             3001027
2899              772902                  NA              380685
2900               82044                  NA               42677
2901             2570862                  NA             1280273
2902              406575                  NA              197548
2903             2679298                  NA             1318555
2904             4912449                  NA             2407307
2905            13111917                  NA             6515114
2906             4912449                  NA             2407307
2907             4912449                  NA             2407307
2908             2073546                  NA              975289
2909                  NA                  NA                  NA
2910                  NA                  NA                  NA
2911             1613587                  NA              790463
2912             1670949                  NA              818990
2913             3289701                  NA             1667851
2914             2073546                  NA              975289
2915             1254675                  NA              635422
2916             2679298                  NA             1318555
2917             3194310                  NA             1562880
2918            19908595                  NA             9713298
2919             4912449                  NA             2407307
2920             6123949                  NA             3001027
2921            13111917                  NA             6515114
2922            19908595                  NA             9713298
2923              308919                  NA              149938
2924               82044                  NA               42677
2925             7142603                  NA             3563435
2926             2570862                  NA             1280273
2927              844461                  NA              407362
2928             1670949                  NA              818990
2929             1215703                 422              594920
2930             1215703                 422              594920
2931             4912449                  NA             2407307
2932            19908595                  NA             9713298
2933             1670949                  NA              818990
2934             2679298                  NA             1318555
2935             6123949                  NA             3001027
2936            13111917                  NA             6515114
2937             2679298                  NA             1318555
2938            19908595                  NA             9713298
2939            19908595                  NA             9713298
2940             6123949                  NA             3001027
2941             4912449                  NA             2407307
2942            19908595                  NA             9713298
2943             1420825                  NA              698689
2944            19908595                  NA             9713298
2945            19908595                  NA             9713298
2946             1254675                  NA              635422
2947             1163462                  NA              568061
2948              803398                  NA              394257
2949             1087068                  NA              546278
2950            19908595                  NA             9713298
2951             1670949                  NA              818990
2952              844461                  NA              407362
2953             3678328                  NA             1837913
2954             4375604                  NA             2148947
2955             1254675                  NA              635422
2956             6094752                  NA             2965233
2957             6094752                  NA             2965233
2958             1254675                  NA              635422
2959             6346083                  NA             3128067
2960             3678328                  NA             1837913
2961             3678328                  NA             1837913
2962             3678328                  NA             1837913
2963             4375604                  NA             2148947
2964             4375604                  NA             2148947
2965             6094752                  NA             2965233
2966             6094752                  NA             2965233
2967             6094752                  NA             2965233
2968             6094752                  NA             2965233
2969             4375604                  NA             2148947
2970            19908595                  NA             9713298
2971             3678328                  NA             1837913
2972             2253528                  NA             1113732
2973             1254675                  NA              635422
2974             1254675                  NA              635422
2975             6346083                  NA             3128067
2976             6094752                  NA             2965233
2977             4375604                  NA             2148947
2978              275693                  NA              137408
2979              251635                  NA              126980
2980             1420825                  NA              698689
2981              550596                  NA              277195
2982             6123949                  NA             3001027
2983             1420825                  NA              698689
2984              749290                  NA              363653
2985             2679298                  NA             1318555
2986              552916                  NA              270938
2987              658694                  NA              322943
2988             2265926                  NA             1137581
2989              383732                  NA              189495
2990             2679298                  NA             1318555
2991              772902                  NA              380685
2992             2959386                  NA             1493164
2993             2959386                  NA             1493164
2994             6346083                  NA             3128067
2995             9566955                  NA             4718471
2996              330119                  NA              161252
2997             1798025                  NA              886709
2998            19908595                  NA             9713298
2999             6346083                  NA             3128067
3000             7673379                  NA             3806912
3001             6123949                  NA             3001027
3002             7673379                  NA             3806912
3003             7673379                  NA             3806912
3004             7673379                  NA             3806912
3005             2109957                  NA             1038760
3006              469484                  NA              227358
3007              906883                  NA              464093
3008             1114368                  NA              538428
3009               42151                  NA               21738
3010              267282                  NA              132495
3011              496299                  NA              240510
3012              288639                  NA              146836
3013             6123949                  NA             3001027
3014             2253528                  NA             1113732
3015              406575                  NA              197548
3016              884359                  NA              435364
3017             2137223                  NA             1061042
3018              313961                  NA              153951
3019              749290                  NA              363653
3020             2570862                  NA             1280273
3021             2296377                  NA             1160944
3022             6123949                  NA             3001027
3023             7673379                  NA             3806912
3024             2679298                  NA             1318555
3025             2679298                  NA             1318555
3026            13111917                  NA             6515114
3027             2109957                  NA             1038760
3028             1568940                  NA              770847
3029            13111917                  NA             6515114
3030            13111917                  NA             6515114
3031             6346083                  NA             3128067
3032             6232894                  NA             3033772
3033              181055                  NA               90237
3034             1568940                  NA              770847
3035              386064                  NA              186619
3036              288639                  NA              146836
3037             6232894                  NA             3033772
3038              612898                  NA              299409
3039              901729                  NA              444836
3040              711490                  NA              355020
3041              493980                  NA              244298
3042              384740                  NA              183928
3043              552916                  NA              270938
3044             6346083                  NA             3128067
3045             6232894                  NA             3033772
3046             2668688                  NA             1305000
3047             2668688                  NA             1305000
3048             6346083                  NA             3128067
3049             2668688                  NA             1305000
3050             6346083                  NA             3128067
3051             2253528                  NA             1113732
3052             7673379                  NA             3806912
3053             4610050                  NA             2315218
3054             2959386                  NA             1493164
3055             2959386                  NA             1493164
3056             4692242                  NA             2342253
3057             1613587                  NA              790463
3058             4610050                  NA             2315218
3059              406575                  NA              197548
3060              322285                  NA              159719
3061              308386                  NA              152054
3062             1670949                  NA              818990
3063             7673379                  NA             3806912
3064             4001701                  NA             2024424
3065             7142603                  NA             3563435
3066             2959386                  NA             1493164
3067             1428923                  NA              708697
3068             1008280                  NA              506526
3069              222604                  NA              109360
3070             7142603                  NA             3563435
3071             7142603                  NA             3563435
3072             2137223                  NA             1061042
3073             1428923                  NA              708697
3074             4375604                  NA             2148947
3075             4864209                  NA             2434382
3076             9566955                  NA             4718471
3077             9566955                  NA             4718471
3078             2190750                  NA             1084347
3079              382218                  NA              189292
3080              222604                  NA              109360
3081             4610050                  NA             2315218
3082              445213                  NA              223753
3083              711490                  NA              355020
3084             1254675                  NA              635422
3085             7142603                  NA             3563435
3086             4001701                  NA             2024424
3087               96299                  NA               52279
3088              399335                  NA              205955
3089             4001701                  NA             2024424
3090             4610050                  NA             2315218
3091               62150                  NA               31276
3092             4692242                  NA             2342253
3093            19908595                  NA             9713298
3094             9566955                  NA             4718471
3095             9566955                  NA             4718471
3096             9566955                  NA             4718471
3097             7142603                  NA             3563435
3098             2365501                  NA             1162773
3099             1981584                  NA             1011796
3100              308919                  NA              149938
3101            13111917                  NA             6515114
3102             2296377                  NA             1160944
3103              772902                  NA              380685
3104              873167                  NA              431639
3105             2505312                  NA             1250855
3106             3289701                  NA             1667851
3107             1981584                  NA             1011796
3108             2394673                  NA             1181313
3109            13111917                  NA             6515114
3110             7142603                  NA             3563435
3111             4692242                  NA             2342253
3112             2840005                  NA             1374325
3113             2079759                  NA             1012336
3114             6346083                  NA             3128067
3115             6346083                  NA             3128067
3116             7142603                  NA             3563435
3117             2959386                  NA             1493164
3118             2959386                  NA             1493164
3119             7142603                  NA             3563435
3120             2959386                  NA             1493164
3121             4692242                  NA             2342253
3122             3289701                  NA             1667851
3123              915968                  NA              453044
3124              322285                  NA              159719
3125             2265926                  NA             1137581
3126             2813523                  NA             1375126
3127             4692242                  NA             2342253
3128             2394673                  NA             1181313
3129             1990873                  NA              978574
3130             3194310                  NA             1562880
3131              901729                  NA              444836
3132             2296377                  NA             1160944
3133             2137223                  NA             1061042
3134             7673379                  NA             3806912
3135             2190750                  NA             1084347
3136              422733                  NA              212276
3137              658694                  NA              322943
3138             1568940                  NA              770847
3139             6123949                  NA             3001027
3140             2570862                  NA             1280273
3141             7673379                  NA             3806912
3142             6123949                  NA             3001027
3143              496299                  NA              240510
3144             2109957                  NA             1038760
3145             1335804                  NA              641128
3146             6123949                  NA             3001027
3147             1568940                  NA              770847
3148             3289701                  NA             1667851
3149              406575                  NA              197548
3150              844461                  NA              407362
3151              772902                  NA              380685
3152             7142603                  NA             3563435
3153             2190750                  NA             1084347
3154              755081                  NA              384572
3155               47759                  NA               23950
3156            19908595                  NA             9713298
3157              915968                  NA              453044
3158              422187                  NA              211290
3159             6346083                  NA             3128067
3160              591397                  NA              285117
3161             2679298                  NA             1318555
3162             1008280                  NA              506526
3163             1428923                  NA              708697
3164             2265926                  NA             1137581
3165             7142603                  NA             3563435
3166             7673379                  NA             3806912
3167             2813523                  NA             1375126
3168             2265926                  NA             1137581
3169             7142603                  NA             3563435
3170             6346083                  NA             3128067
3171             2570862                  NA             1280273
3172             7142603                  NA             3563435
3173            19908595                  NA             9713298
3174             4375604                  NA             2148947
3175              422733                  NA              212276
3176              406575                  NA              197548
3177              915968                  NA              453044
3178             1215703                 422              594920
3179            13111917                  NA             6515114
3180             2570862                  NA             1280273
3181             3194310                  NA             1562880
3182             6123949                  NA             3001027
3183             1990873                  NA              978574
3184             7142603                  NA             3563435
3185             2190750                  NA             1084347
3186             6346083                  NA             3128067
3187             1990873                  NA              978574
3188             1428923                  NA              708697
3189              646794                  NA              322648
3190             2109957                  NA             1038760
3191             3194310                  NA             1562880
3192             4692242                  NA             2342253
3193             9566955                  NA             4718471
3194             6123949                  NA             3001027
3195             2813523                  NA             1375126
3196             4692242                  NA             2342253
3197            13111917                  NA             6515114
3198             2840005                  NA             1374325
3199             2365501                  NA             1162773
3200              490769                  NA              249622
3201             7673379                  NA             3806912
3202              755081                  NA              384572
3203             2813523                  NA             1375126
3204             7142603                  NA             3563435
3205             2265926                  NA             1137581
3206             2296377                  NA             1160944
3207              772902                  NA              380685
3208             1017724                  NA              503252
3209             1420825                  NA              698689
3210             1981584                  NA             1011796
3211            19908595                  NA             9713298
3212             2365501                  NA             1162773
3213             2109957                  NA             1038760
3214             2265926                  NA             1137581
3215             2813523                  NA             1375126
3216             7142603                  NA             3563435
3217             7142603                  NA             3563435
3218              867161                  NA              431851
3219              386064                  NA              186619
3220             4864209                  NA             2434382
3221              437609                  NA              223186
3222              445213                  NA              223753
3223             7142603                  NA             3563435
3224             6346083                  NA             3128067
3225             2190750                  NA             1084347
3226              152640                  NA               75942
3227              803398                  NA              394257
3228             2365501                  NA             1162773
3229             2813523                  NA             1375126
3230            19908595                  NA             9713298
3231             2253528                  NA             1113732
3232             6346083                  NA             3128067
3233             2079759                  NA             1012336
3234             1613587                  NA              790463
3235              314708                  NA              152116
3236              469484                  NA              227358
3237              291491                  NA              148126
3238              406575                  NA              197548
3239             2137223                  NA             1061042
3240             9566955                  NA             4718471
3241             6346083                  NA             3128067
3242             9566955                  NA             4718471
3243             6346083                  NA             3128067
3244             9566955                  NA             4718471
3245             9566955                  NA             4718471
3246             9566955                  NA             4718471
3247             6346083                  NA             3128067
3248             9566955                  NA             4718471
3249              884359                  NA              435364
3250             6346083                  NA             3128067
3251              221648                  NA              106730
3252             9566955                  NA             4718471
3253             6346083                  NA             3128067
3254             3678328                  NA             1837913
3255              416839                  NA              205169
3256             3678328                  NA             1837913
3257             1086859                  NA              532509
3258              564466                  NA              276108
3259             6232894                  NA             3033772
3260              469484                  NA              227358
3261              314708                  NA              152116
3262             4912449                  NA             2407307
3263             7142603                  NA             3563435
3264             6346083                  NA             3128067
3265              181055                  NA               90237
3266             2959386                  NA             1493164
3267             7673379                  NA             3806912
3268             2073546                  NA              975289
3269             2079759                  NA             1012336
3270                  NA                  NA                  NA
3271             7673379                  NA             3806912
3272            13111917                  NA             6515114
3273             7673379                  NA             3806912
3274              164765                  21               82304
3275             6232894                  NA             3033772
3276             7673379                  NA             3806912
3277             9566955                  NA             4718471
3278             2253528                  NA             1113732
3279             7673379                  NA             3806912
3280              202163                  NA              100828
3281              164765                  21               82304
3282                  NA                  NA                  NA
3283              399335                  NA              205955
3284              399335                  NA              205955
3285             4001701                  NA             2024424
3286             6123949                  NA             3001027
3287              772902                  NA              380685
3288              772902                  NA              380685
3289            19908595                  NA             9713298
3290              242972                  NA              122440
3291              275693                  NA              137408
3292             2394673                  NA             1181313
3293                  NA                  NA                  NA
3294                  NA                  NA                  NA
3295              406575                  NA              197548
3296             6094752                  NA             2965233
3297             6094752                  NA             2965233
3298             6094752                  NA             2965233
3299             3678328                  NA             1837913
3300            19908595                  NA             9713298
3301               82044                  NA               42677
3302              812506                  NA              397560
3303              147453                  NA               73990
3304             7673379                  NA             3806912
3305              700578                  NA              343022
3306              676035                  NA              330879
3307            19908595                  NA             9713298
3308              386064                  NA              186619
3309             2668688                  NA             1305000
3310             2079759                  NA             1012336
3311              658694                  NA              322943
3312             4864209                  NA             2434382
3313              105950                  NA               53095
3314             4692242                  NA             2342253
3315               35159                  NA               18160
3316             1010100                  NA              512085
3317            13111917                  NA             6515114
3318               55650                  NA               29968
3319             7142603                  NA             3563435
3320             6346083                  NA             3128067
3321             2959386                  NA             1493164
3322             1990873                  NA              978574
3323             3289701                  NA             1667851
3324              915968                  NA              453044
3325             3289701                  NA             1667851
3326            13111917                  NA             6515114
3327             4610050                  NA             2315218
3328             2679298                  NA             1318555
3329             9566955                  NA             4718471
3330             2840005                  NA             1374325
3331             1264357                  NA              612537
3332             9566955                  NA             4718471
3333             4692242                  NA             2342253
3334             2073546                  NA              975289
3335             7142603                  NA             3563435
3336              401702                  NA              198867
3337              510290                  NA              256202
3338              140356                  NA               72104
3339              119685                  NA               62534
3340              803398                  NA              394257
3341             1798025                  NA              886709
3342             7673379                  NA             3806912
3343              218515                  NA              108665
3344              242972                  NA              122440
3345              966688                  NA              483251
3346            19908595                  NA             9713298
3347             6123949                  NA             3001027
3348             2073546                  NA              975289
3349              152640                  NA               75942
3350             1087068                  NA              546278
3351               83760                  NA               42020
3352              391957                  NA              189194
3353             2959386                  NA             1493164
3354             1254675                  NA              635422
3355              164765                  21               82304
3356              419715                  NA              207197
3357             4864209                  NA             2434382
3358             1316145                  NA              640643
3359             3194310                  NA             1562880
3360             7673379                  NA             3806912
3361             4864209                  NA             2434382
3362             7673379                  NA             3806912
3363             9566955                  NA             4718471
3364                  NA                  NA                  NA
3365             7673379                  NA             3806912
3366               82044                  NA               42677
3367              386064                  NA              186619
3368             1254675                  NA              635422
3369             6123949                  NA             3001027
3370              277944                  NA              140783
3371             7673379                  NA             3806912
3372              118541                  NA               59633
3373              510290                  NA              256202
3374             1114368                  NA              538428
3375              406575                  NA              197548
3376              158478                  NA               79833
3377             3678328                  NA             1837913
3378              771602                  NA              388362
3379             3678328                  NA             1837913
3380               79008                  NA               40763
3381             7142603                  NA             3563435
3382             1010100                  NA              512085
3383              119685                  NA               62534
3384               55650                  NA               29968
3385             2296377                  NA             1160944
3386             4692242                  NA             2342253
3387              772902                  NA              380685
3388             4692242                  NA             2342253
3389             2679298                  NA             1318555
3390             7673379                  NA             3806912
3391              181055                  NA               90237
3392              289726                  NA              140509
3393                  NA                  NA                  NA
3394             4912449                  NA             2407307
3395              164765                  21               82304
3396             3678328                  NA             1837913
3397             6346083                  NA             3128067
3398             1010100                  NA              512085
3399             1010100                  NA              512085
3400              202163                  NA              100828
3401               47759                  NA               23950
3402              479865                  NA              235485
3403             6094752                  NA             2965233
3404             6094752                  NA             2965233
3405              166222                  NA               84066
3406              711490                  NA              355020
3407            19908595                  NA             9713298
3408             6094752                  NA             2965233
3409             3678328                  NA             1837913
3410             6094752                  NA             2965233
3411             2073546                  NA              975289
3412             6346083                  NA             3128067
3413             4864209                  NA             2434382
3414             6123949                  NA             3001027
3415             1215703                 422              594920
3416             1086859                  NA              532509
3417             3289701                  NA             1667851
3418             4001701                  NA             2024424
3419                  NA                  NA                  NA
3420                  NA                  NA                  NA
3421              490769                  NA              249622
3422               55650                  NA               29968
3423             1008280                  NA              506526
3424             1798025                  NA              886709
3425             1420825                  NA              698689
3426             7673379                  NA             3806912
3427             7673379                  NA             3806912
3428             7673379                  NA             3806912
3429             7673379                  NA             3806912
3430             2109957                  NA             1038760
3431             4864209                  NA             2434382
3432             7673379                  NA             3806912
3433             7673379                  NA             3806912
3434             4001701                  NA             2024424
3435             2079759                  NA             1012336
3436             6232894                  NA             3033772
3437             9566955                  NA             4718471
3438             7673379                  NA             3806912
3439            19908595                  NA             9713298
3440             4001701                  NA             2024424
3441             4001701                  NA             2024424
3442             4692242                  NA             2342253
3443              399335                  NA              205955
3444             2505312                  NA             1250855
3445             2296377                  NA             1160944
3446            13111917                  NA             6515114
3447             2679298                  NA             1318555
3448              164765                  21               82304
3449             4001701                  NA             2024424
3450              202163                  NA              100828
3451              915968                  NA              453044
3452              803398                  NA              394257
3453               32108                  NA               16461
3454               13910                  NA                7232
3455             1264357                  NA              612537
3456             4001701                  NA             2024424
3457              399335                  NA              205955
3458              202163                  NA              100828
3459             2505312                  NA             1250855
3460             2073546                  NA              975289
3461             1264357                  NA              612537
3462             2505312                  NA             1250855
3463             4610050                  NA             2315218
3464             1613587                  NA              790463
3465             6123949                  NA             3001027
3466               20543                  NA               10091
3467             1215703                 422              594920
3468              676035                  NA              330879
3469              646794                  NA              322648
3470             3678328                  NA             1837913
3471             1981584                  NA             1011796
3472             6094752                  NA             2965233
3473                  NA                  NA                  NA
3474             6094752                  NA             2965233
3475             6094752                  NA             2965233
3476             6094752                  NA             2965233
3477             6094752                  NA             2965233
3478             3678328                  NA             1837913
3479             1254675                  NA              635422
3480             1254675                  NA              635422
3481             1335804                  NA              641128
3482             4375604                  NA             2148947
3483            13111917                  NA             6515114
3484             3678328                  NA             1837913
3485             6094752                  NA             2965233
3486              185147                  NA               92047
3487             4375604                  NA             2148947
3488             1254675                  NA              635422
3489             6094752                  NA             2965233
3490             9566955                  NA             4718471
3491             7673379                  NA             3806912
3492              185147                  NA               92047
3493              869755                  NA              427134
3494              591397                  NA              285117
3495              844461                  NA              407362
3496             6123949                  NA             3001027
3497             1114368                  NA              538428
3498             2679298                  NA             1318555
3499              326159                  NA              160906
3500              225745                  NA              112032
3501             2668688                  NA             1305000
3502             6232894                  NA             3033772
3503              676035                  NA              330879
3504             2959386                  NA             1493164
3505             3678328                  NA             1837913
3506              133467                 110               67534
3507              156131                  NA               77615
3508              281712                  NA              142477
3509              884359                  NA              435364
3510               79008                  NA               40763
3511               55983                  NA               28379
3512              156131                  NA               77615
3513             3678328                  NA             1837913
3514             3678328                  NA             1837913
3515             4375604                  NA             2148947
3516             2079759                  NA             1012336
3517              105950                  NA               53095
3518             1254675                  NA              635422
3519              593318                  NA              293750
3520               25381                 138               13207
3521             4610050                  NA             2315218
3522              488436                  NA              240478
3523               55650                  NA               29968
3524              488436                  NA              240478
3525             9566955                  NA             4718471
3526             7673379                  NA             3806912
3527               35159                  NA               18160
3528             3289701                  NA             1667851
3529              185147                  NA               92047
3530              382218                  NA              189292
3531              118541                  NA               59633
3532             1428923                  NA              708697
3533              966688                  NA              483251
3534             4864209                  NA             2434382
3535              771602                  NA              388362
3536             3289701                  NA             1667851
3537              867161                  NA              431851
3538              445213                  NA              223753
3539             1316145                  NA              640643
3540             2570862                  NA             1280273
3541                  NA                  NA                  NA
3542             2073546                  NA              975289
3543             7142603                  NA             3563435
3544             2959386                  NA             1493164
3545             2959386                  NA             1493164
3546              225745                  NA              112032
3547             7142603                  NA             3563435
3548             4692242                  NA             2342253
3549              202163                  NA              100828
3550               73511                  NA               36809
3551             1010100                  NA              512085
3552             9566955                  NA             4718471
3553             2959386                  NA             1493164
3554             4001701                  NA             2024424
3555              844461                  NA              407362
3556             2137223                  NA             1061042
3557             2679298                  NA             1318555
3558             3289701                  NA             1667851
3559              867161                  NA              431851
3560              164765                  21               82304
3561             2296377                  NA             1160944
3562              164765                  21               82304
3563             6232894                  NA             3033772
3564             3289701                  NA             1667851
3565             6346083                  NA             3128067
3566             2190750                  NA             1084347
3567             2109957                  NA             1038760
3568              174621                  NA               89435
3569             4864209                  NA             2434382
3570             2109957                  NA             1038760
3571             2668688                  NA             1305000
3572             2190750                  NA             1084347
3573              863166                  NA              427343
3574             6232894                  NA             3033772
3575             1163462                  NA              568061
3576               55983                  NA               28379
3577             7142603                  NA             3563435
3578              477056                  NA              234726
3579            13111917                  NA             6515114
3580              171284                  NA               83922
3581              313961                  NA              153951
3582             4375604                  NA             2148947
3583              658694                  NA              322943
3584              221648                  NA              106730
3585              678995                  NA              341280
3586              678995                  NA              341280
3587              550596                  NA              277195
3588             4375604                  NA             2148947
3589             6094752                  NA             2965233
3590             7673379                  NA             3806912
3591             7673379                  NA             3806912
3592             1316145                  NA              640643
3593             7673379                  NA             3806912
3594             7673379                  NA             3806912
3595             2296377                  NA             1160944
3596              119685                  NA               62534
3597              966688                  NA              483251
3598             4864209                  NA             2434382
3599             7673379                  NA             3806912
3600             7673379                  NA             3806912
3601             7673379                  NA             3806912
3602              202163                  NA              100828
3603             9566955                  NA             4718471
3604             7673379                  NA             3806912
3605             2668688                  NA             1305000
3606             4864209                  NA             2434382
3607             2296377                  NA             1160944
3608             2505312                  NA             1250855
3609             2505312                  NA             1250855
3610              399335                  NA              205955
3611             1042393                  NA              516095
3612              202163                  NA              100828
3613             4610050                  NA             2315218
3614              585485                  NA              292820
3615                  NA                  NA                  NA
3616             2505312                  NA             1250855
3617              119685                  NA               62534
3618             2394673                  NA             1181313
3619              658694                  NA              322943
3620              550596                  NA              277195
3621             4375604                  NA             2148947
3622              771602                  NA              388362
3623             6094752                  NA             2965233
3624             6123949                  NA             3001027
3625              564466                  NA              276108
3626              269418                  NA              135977
3627              313961                  NA              153951
3628              429312                  NA              206306
3629             6123949                  NA             3001027
3630             6346083                  NA             3128067
3631             1282588                  NA              630858
3632             7673379                  NA             3806912
3633             6123949                  NA             3001027
3634             6346083                  NA             3128067
3635              966688                  NA              483251
3636              510290                  NA              256202
3637             2668688                  NA             1305000
3638             2668688                  NA             1305000
3639              884359                  NA              435364
3640             4692242                  NA             2342253
3641             1254675                  NA              635422
3642              323992                  NA              159346
3643             1087068                  NA              546278
3644             1335804                  NA              641128
3645             1798025                  NA              886709
3646             3289701                  NA             1667851
3647              140356                  NA               72104
3648               79008                  NA               40763
3649             2959386                  NA             1493164
3650               47759                  NA               23950
3651             4610050                  NA             2315218
3652              222604                  NA              109360
3653              199352                  NA               99597
3654             1017724                  NA              503252
3655             4001701                  NA             2024424
3656              445213                  NA              223753
3657              488436                  NA              240478
3658               35159                  NA               18160
3659            19908595                  NA             9713298
3660             2505312                  NA             1250855
3661             7142603                  NA             3563435
3662             2959386                  NA             1493164
3663            19908595                  NA             9713298
3664             6346083                  NA             3128067
3665             7142603                  NA             3563435
3666              490769                  NA              249622
3667             2296377                  NA             1160944
3668             7142603                  NA             3563435
3669             1568940                  NA              770847
3670             1981584                  NA             1011796
3671              164765                  21               82304
3672              915968                  NA              453044
3673               73511                  NA               36809
3674             2365501                  NA             1162773
3675             2265926                  NA             1137581
3676             9566955                  NA             4718471
3677              202163                  NA              100828
3678             2570862                  NA             1280273
3679              493980                  NA              244298
3680             4864209                  NA             2434382
3681             4864209                  NA             2434382
3682             1087068                  NA              546278
3683              330119                  NA              161252
3684             7673379                  NA             3806912
3685             7142603                  NA             3563435
3686             2079759                  NA             1012336
3687              406575                  NA              197548
3688              323992                  NA              159346
3689            19908595                  NA             9713298
3690             1215703                 422              594920
3691              812506                  NA              397560
3692              429312                  NA              206306
3693              884359                  NA              435364
3694              812506                  NA              397560
3695             1798025                  NA              886709
3696              884359                  NA              435364
3697             7142603                  NA             3563435
3698              831913                  NA              404751
3699            19908595                  NA             9713298
3700             7673379                  NA             3806912
3701             7673379                  NA             3806912
3702              711490                  NA              355020
3703             3289701                  NA             1667851
3704             7673379                  NA             3806912
3705              803398                  NA              394257
3706               82044                  NA               42677
3707              330119                  NA              161252
3708                  NA                  NA                  NA
3709             1010100                  NA              512085
3710             2109957                  NA             1038760
3711             1428923                  NA              708697
3712             2570862                  NA             1280273
3713              445213                  NA              223753
3714             7673379                  NA             3806912
3715               35159                  NA               18160
3716            13111917                  NA             6515114
3717             9566955                  NA             4718471
3718             9566955                  NA             4718471
3719             1215703                 422              594920
3720             6123949                  NA             3001027
3721             7673379                  NA             3806912
3722             2296377                  NA             1160944
3723             2668688                  NA             1305000
3724             6232894                  NA             3033772
3725                  NA                  NA                  NA
3726               32108                  NA               16461
3727              399335                  NA              205955
3728             1086859                  NA              532509
3729             6123949                  NA             3001027
3730             6346083                  NA             3128067
3731            19908595                  NA             9713298
3732              678995                  NA              341280
3733             4375604                  NA             2148947
3734             1670949                  NA              818990
3735              658694                  NA              322943
3736              479865                  NA              235485
3737              386064                  NA              186619
3738             6123949                  NA             3001027
3739             2679298                  NA             1318555
3740             2668688                  NA             1305000
3741              275693                  NA              137408
3742             1335804                  NA              641128
3743             1163462                  NA              568061
3744             1087068                  NA              546278
3745             6346083                  NA             3128067
3746             6346083                  NA             3128067
3747              133834                  NA               70614
3748             1042393                  NA              516095
3749               47759                  NA               23950
3750             2959386                  NA             1493164
3751              567287                  NA              281431
3752              658694                  NA              322943
3753               35159                  NA               18160
3754               64701                  NA               32652
3755             2959386                  NA             1493164
3756              119685                  NA               62534
3757              156131                  NA               77615
3758              399335                  NA              205955
3759             9566955                  NA             4718471
3760             7142603                  NA             3563435
3761             2394673                  NA             1181313
3762              915968                  NA              453044
3763             1010100                  NA              512085
3764             1420825                  NA              698689
3765             2840005                  NA             1374325
3766             3289701                  NA             1667851
3767             1981584                  NA             1011796
3768              915968                  NA              453044
3769              844461                  NA              407362
3770              901729                  NA              444836
3771             2959386                  NA             1493164
3772             3194310                  NA             1562880
3773             1254675                  NA              635422
3774             1114368                  NA              538428
3775             2137223                  NA             1061042
3776             1282588                  NA              630858
3777             1163462                  NA              568061
3778             2570862                  NA             1280273
3779             4864209                  NA             2434382
3780             2137223                  NA             1061042
3781             2505312                  NA             1250855
3782             2679298                  NA             1318555
3783             3194310                  NA             1562880
3784             3194310                  NA             1562880
3785             7673379                  NA             3806912
3786             9566955                  NA             4718471
3787             1163462                  NA              568061
3788             1282588                  NA              630858
3789             6123949                  NA             3001027
3790             7673379                  NA             3806912
3791             7142603                  NA             3563435
3792             2813523                  NA             1375126
3793             2394673                  NA             1181313
3794              275693                  NA              137408
3795              251635                  NA              126980
3796             6346083                  NA             3128067
3797             7142603                  NA             3563435
3798              275693                  NA              137408
3799              251635                  NA              126980
3800             1087068                  NA              546278
3801              812506                  NA              397560
3802             2365501                  NA             1162773
3803              314708                  NA              152116
3804              493980                  NA              244298
3805             6346083                  NA             3128067
3806             6232894                  NA             3033772
3807             9566955                  NA             4718471
3808             2668688                  NA             1305000
3809            19908595                  NA             9713298
3810             2679298                  NA             1318555
3811            19908595                  NA             9713298
3812              975551                 164              484741
3813              975551                 164              484741
3814             6123949                  NA             3001027
3815            19908595                  NA             9713298
3816                  NA                  NA                  NA
3817             2073546                  NA              975289
3818             6094752                  NA             2965233
3819             2679298                  NA             1318555
3820              772902                  NA              380685
3821              277944                  NA              140783
3822              421854                  NA              208182
3823             4610050                  NA             2315218
3824             2265926                  NA             1137581
3825             2265926                  NA             1137581
3826             2265926                  NA             1137581
3827             2679298                  NA             1318555
3828             2679298                  NA             1318555
3829              496299                  NA              240510
3830              772902                  NA              380685
3831             2813523                  NA             1375126
3832             2079759                  NA             1012336
3833             4610050                  NA             2315218
3834              383732                  NA              189495
3835            19908595                  NA             9713298
3836             2679298                  NA             1318555
3837              772902                  NA              380685
3838             1215703                 422              594920
3839              383732                  NA              189495
3840            19908595                  NA             9713298
3841             2679298                  NA             1318555
3842             3194310                  NA             1562880
3843             3194310                  NA             1562880
3844             1087068                  NA              546278
3845             6094752                  NA             2965233
3846             9566955                  NA             4718471
3847             6123949                  NA             3001027
3848             3194310                  NA             1562880
3849             6123949                  NA             3001027
3850             6123949                  NA             3001027
3851             3194310                  NA             1562880
3852              772902                  NA              380685
3853            13111917                  NA             6515114
3854              274339                  NA              133897
3855             1282588                  NA              630858
3856              510290                  NA              256202
3857             2079759                  NA             1012336
3858             2365501                  NA             1162773
3859              496299                  NA              240510
3860              496299                  NA              240510
3861              274339                  NA              133897
3862              422733                  NA              212276
3863                  NA                  NA                  NA
3864            19908595                  NA             9713298
3865             2365501                  NA             1162773
3866            19908595                  NA             9713298
3867             2679298                  NA             1318555
3868              496299                  NA              240510
3869              496299                  NA              240510
3870              274339                  NA              133897
3871             2365501                  NA             1162773
3872             6123949                  NA             3001027
3873             6346083                  NA             3128067
3874              437609                  NA              223186
3875              906883                  NA              464093
3876              185147                  NA               92047
3877             6346083                  NA             3128067
3878             2190750                  NA             1084347
3879             7142603                  NA             3563435
3880             9566955                  NA             4718471
3881             1010100                  NA              512085
3882             1428923                  NA              708697
3883            19908595                  NA             9713298
3884             6346083                  NA             3128067
3885             3678328                  NA             1837913
3886              469484                  NA              227358
3887             2109957                  NA             1038760
3888             6123949                  NA             3001027
3889             3678328                  NA             1837913
3890             3678328                  NA             1837913
3891              322285                  NA              159719
3892                  NA                  NA                  NA
3893               55650                  NA               29968
3894             2505312                  NA             1250855
3895             1254675                  NA              635422
3896             1316145                  NA              640643
3897              202163                  NA              100828
3898             2813523                  NA             1375126
3899              225911                  NA              111978
3900              328011                  NA              164852
3901             2190750                  NA             1084347
3902             1428923                  NA              708697
3903              844461                  NA              407362
3904              550596                  NA              277195
3905              711490                  NA              355020
3906                  NA                  NA                  NA
3907              399335                  NA              205955
3908             6346083                  NA             3128067
3909            19908595                  NA             9713298
3910            19908595                  NA             9713298
3911             2253528                  NA             1113732
3912              867161                  NA              431851
3913             1086859                  NA              532509
3914             2253528                  NA             1113732
3915             1254675                  NA              635422
3916             3678328                  NA             1837913
3917             1798025                  NA              886709
3918             7673379                  NA             3806912
3919             7673379                  NA             3806912
3920             2668688                  NA             1305000
3921             6346083                  NA             3128067
3922             1798025                  NA              886709
3923             6232894                  NA             3033772
3924              330119                  NA              161252
3925              678995                  NA              341280
3926             1798025                  NA              886709
3927             2959386                  NA             1493164
3928               79008                  NA               40763
3929              105950                  NA               53095
3930              222604                  NA              109360
3931               77140                  NA               40384
3932              158478                  NA               79833
3933              154481                  NA               75375
3934              222604                  NA              109360
3935             4692242                  NA             2342253
3936            13111917                  NA             6515114
3937             2959386                  NA             1493164
3938             7142603                  NA             3563435
3939             2109957                  NA             1038760
3940            13111917                  NA             6515114
3941             2265926                  NA             1137581
3942             4864209                  NA             2434382
3943             1613587                  NA              790463
3944             7142603                  NA             3563435
3945             7673379                  NA             3806912
3946               24944                  NA               13144
3947             1420825                  NA              698689
3948              772902                  NA              380685
3949             1017724                  NA              503252
3950             7142603                  NA             3563435
3951             4864209                  NA             2434382
3952             4864209                  NA             2434382
3953              171284                  NA               83922
3954             6123949                  NA             3001027
3955              218515                  NA              108665
3956            19908595                  NA             9713298
3957               82044                  NA               42677
3958             6346083                  NA             3128067
3959             1568940                  NA              770847
3960             6346083                  NA             3128067
3961             6094752                  NA             2965233
3962             7673379                  NA             3806912
3963             2668688                  NA             1305000
3964             2668688                  NA             1305000
3965             6232894                  NA             3033772
3966             6346083                  NA             3128067
3967             7673379                  NA             3806912
3968             2296377                  NA             1160944
3969            19908595                  NA             9713298
3970             6123949                  NA             3001027
3971             1017724                  NA              503252
3972             7673379                  NA             3806912
3973             9566955                  NA             4718471
3974             4864209                  NA             2434382
3975             2668688                  NA             1305000
3976             6232894                  NA             3033772
3977             6232894                  NA             3033772
3978             2668688                  NA             1305000
3979             2668688                  NA             1305000
3980             6346083                  NA             3128067
3981             9566955                  NA             4718471
3982             2137223                  NA             1061042
3983             7673379                  NA             3806912
3984             2668688                  NA             1305000
3985             2668688                  NA             1305000
3986             4001701                  NA             2024424
3987             2505312                  NA             1250855
3988             2505312                  NA             1250855
3989             1163462                  NA              568061
3990            19908595                  NA             9713298
3991             6123949                  NA             3001027
3992            19908595                  NA             9713298
3993             1282588                  NA              630858
3994             4375604                  NA             2148947
3995             4375604                  NA             2148947
3996             3678328                  NA             1837913
3997             6094752                  NA             2965233
3998             2253528                  NA             1113732
3999             4375604                  NA             2148947
4000             4375604                  NA             2148947
4001             2073546                  NA              975289
4002              658694                  NA              322943
4003             1017724                  NA              503252
4004             3289701                  NA             1667851
4005            13111917                  NA             6515114
4006              772902                  NA              380685
4007             2394673                  NA             1181313
4008              382983                  NA              189968
4009             1114368                  NA              538428
4010              884359                  NA              435364
4011             1042393                  NA              516095
4012             2505312                  NA             1250855
4013             2109957                  NA             1038760
4014             3289701                  NA             1667851
4015              612898                  NA              299409
4016             1215703                 422              594920
4017             1420825                  NA              698689
4018              496299                  NA              240510
4019               82044                  NA               42677
4020             2109957                  NA             1038760
4021              399335                  NA              205955
4022              550596                  NA              277195
4023              803398                  NA              394257
4024             6346083                  NA             3128067
4025              901729                  NA              444836
4026              314708                  NA              152116
4027             7142603                  NA             3563435
4028             6123949                  NA             3001027
4029             7142603                  NA             3563435
4030             1981584                  NA             1011796
4031             1990873                  NA              978574
4032             7673379                  NA             3806912
4033              202163                  NA              100828
4034             2365501                  NA             1162773
4035              391957                  NA              189194
4036             3678328                  NA             1837913
4037            19908595                  NA             9713298
4038             6123949                  NA             3001027
4039              144705                  NA               71707
4040              119685                  NA               62534
4041             2959386                  NA             1493164
4042             2668688                  NA             1305000
4043             2365501                  NA             1162773
4044              803398                  NA              394257
4045             1981584                  NA             1011796
4046             2679298                  NA             1318555
4047              222831                  NA              106479
4048              591397                  NA              285117
4049             1087068                  NA              546278
4050             2570862                  NA             1280273
4051             2505312                  NA             1250855
4052              399335                  NA              205955
4053               32108                  NA               16461
4054              330119                  NA              161252
4055             1254675                  NA              635422
4056              289726                  NA              140509
4057             2073546                  NA              975289
4058             2813523                  NA             1375126
4059             1613587                  NA              790463
4060              406575                  NA              197548
4061              490769                  NA              249622
4062             2813523                  NA             1375126
4063              496299                  NA              240510
4064              755081                  NA              384572
4065             1981584                  NA             1011796
4066             6123949                  NA             3001027
4067                  NA                  NA                  NA
4068             4912449                  NA             2407307
4069             6346083                  NA             3128067
4070            13111917                  NA             6515114
4071             2840005                  NA             1374325
4072            19908595                  NA             9713298
4073             4912449                  NA             2407307
4074               24944                  NA               13144
4075            19908595                  NA             9713298
4076             6094752                  NA             2965233
4077             1335804                  NA              641128
4078              496299                  NA              240510
4079              477056                  NA              234726
4080             6123949                  NA             3001027
4081             1114368                  NA              538428
4082              225745                  NA              112032
4083             2668688                  NA             1305000
4084              552916                  NA              270938
4085             7673379                  NA             3806912
4086              326159                  NA              160906
4087             1017724                  NA              503252
4088             7142603                  NA             3563435
4089             2109957                  NA             1038760
4090             2365501                  NA             1162773
4091             4864209                  NA             2434382
4092              552916                  NA              270938
4093             2296377                  NA             1160944
4094              844461                  NA              407362
4095              646794                  NA              322648
4096             3678328                  NA             1837913
4097              171284                  NA               83922
4098             2679298                  NA             1318555
4099             6094752                  NA             2965233
4100             1335804                  NA              641128
4101              493980                  NA              244298
4102              678995                  NA              341280
4103              510290                  NA              256202
4104              697704                  NA              348873
4105             1670949                  NA              818990
4106             2679298                  NA             1318555
4107              772902                  NA              380685
4108             4375604                  NA             2148947
4109             2570862                  NA             1280273
4110             6346083                  NA             3128067
4111             6123949                  NA             3001027
4112               13910                  NA                7232
4113              399335                  NA              205955
4114             4610050                  NA             2315218
4115             4912449                  NA             2407307
4116            13111917                  NA             6515114
4117             1254675                  NA              635422
4118             6094752                  NA             2965233
4119             1254675                  NA              635422
4120             1254675                  NA              635422
4121             6094752                  NA             2965233
4122             2253528                  NA             1113732
4123              477056                  NA              234726
4124              591397                  NA              285117
4125              510290                  NA              256202
4126             1670949                  NA              818990
4127             2109957                  NA             1038760
4128             6346083                  NA             3128067
4129              211078                  NA              103187
4130               66376                  NA               33782
4131             3678328                  NA             1837913
4132               35159                  NA               18160
4133             7673379                  NA             3806912
4134             2959386                  NA             1493164
4135             1087068                  NA              546278
4136             3678328                  NA             1837913
4137             2959386                  NA             1493164
4138             7142603                  NA             3563435
4139              164765                  21               82304
4140              202163                  NA              100828
4141              755081                  NA              384572
4142             9566955                  NA             4718471
4143             9566955                  NA             4718471
4144             2394673                  NA             1181313
4145            13111917                  NA             6515114
4146             1114368                  NA              538428
4147             1613587                  NA              790463
4148             1990873                  NA              978574
4149             1670949                  NA              818990
4150              277944                  NA              140783
4151              515954                  NA              253400
4152             7142603                  NA             3563435
4153             7142603                  NA             3563435
4154               35159                  NA               18160
4155             1010100                  NA              512085
4156             1798025                  NA              886709
4157              152640                  NA               75942
4158              225745                  NA              112032
4159             1086859                  NA              532509
4160              658694                  NA              322943
4161             4912449                  NA             2407307
4162             2668688                  NA             1305000
4163              269278                 239              135933
4164             9566955                  NA             4718471
4165             7673379                  NA             3806912
4166             2668688                  NA             1305000
     age_distributionM.x
1                    650
2                    195
3                    387
4                     NA
5                     NA
6                     NA
7                    650
8                    650
9                    326
10                   195
11                   452
12                    73
13                    73
14                    73
15                    73
16                   145
17                   249
18                   880
19                   880
20                   880
21                   880
22                   880
23                   880
24                   880
25                   880
26                   880
27                   880
28                   880
29                   880
30                   880
31                   880
32                   880
33                   880
34                   188
35                   188
36                   458
37                   458
38                   458
39                   458
40                   145
41                   145
42                   145
43                   880
44                   880
45                   458
46                   458
47                   880
48                   880
49                   880
50                   880
51                   880
52                   880
53                   880
54                   650
55                    NA
56                   650
57                   458
58                   145
59                   145
60                   458
61                   458
62                   458
63                   458
64                   145
65                   145
66                   145
67                   145
68                   145
69                   145
70                   145
71                   145
72                   145
73                   880
74                   880
75                   880
76                   188
77                   880
78                   880
79                   880
80                   880
81                   880
82                   880
83                   880
84                   880
85                   880
86                   880
87                   880
88                    NA
89                    NA
90                    NA
91                    NA
92                    NA
93                   458
94                   458
95                    73
96                   145
97                   880
98                   880
99                   880
100                  880
101                  880
102                  880
103                  880
104                  188
105                   NA
106                   NA
107                  458
108                  145
109                  880
110                  880
111                  880
112                  880
113                  880
114                  880
115                  880
116                  188
117                  188
118                   NA
119                   NA
120                   NA
121                  326
122                  326
123                  195
124                  195
125                   73
126                   73
127                   73
128                   73
129                   73
130                  145
131                  145
132                  145
133                  145
134                  249
135                   NA
136                   NA
137                   73
138                  880
139                  188
140                  188
141                  188
142                  188
143                  650
144                  650
145                  458
146                  458
147                  221
148                  145
149                  145
150                  880
151                  880
152                  880
153                  496
154                  640
155                  640
156                  442
157                  188
158                  188
159                  188
160                  188
161                   30
162                  650
163                  650
164                  221
165                  338
166                   73
167                  145
168                  145
169                  145
170                  145
171                  880
172                  188
173                  188
174                  188
175                  188
176                  188
177                  195
178                  458
179                  458
180                  458
181                  458
182                  458
183                  425
184                  124
185                  249
186                   NA
187                  880
188                  880
189                  458
190                  880
191                  880
192                  880
193                  880
194                  188
195                  188
196                  650
197                  650
198                  458
199                  880
200                  880
201                  880
202                  880
203                  880
204                  458
205                  145
206                  880
207                  880
208                  880
209                  458
210                  880
211                  880
212                  880
213                  880
214                  432
215                  496
216                  403
217                  735
218                  389
219                  442
220                  188
221                  188
222                  188
223                  650
224                   NA
225                   NA
226                  650
227                  650
228                  326
229                  452
230                  425
231                  406
232                  332
233                  221
234                   73
235                   73
236                  249
237                  188
238                  188
239                  458
240                  458
241                  880
242                  880
243                  145
244                  145
245                  880
246                  458
247                  145
248                  880
249                  403
250                  188
251                  650
252                  650
253                  458
254                  458
255                   73
256                  880
257                  880
258                  458
259                   73
260                  145
261                  145
262                  145
263                  145
264                  880
265                  880
266                  188
267                  458
268                  880
269                  650
270                  458
271                  880
272                  880
273                  880
274                  188
275                  195
276                   NA
277                   NA
278                   NA
279                  326
280                   73
281                  880
282                  880
283                  650
284                  188
285                   73
286                  145
287                  145
288                  880
289                  880
290                  188
291                  188
292                   NA
293                   NA
294                  458
295                  157
296                   NA
297                  145
298                   NA
299                   73
300                  145
301                  145
302                  458
303                  145
304                  230
305                  442
306                  188
307                  188
308                  188
309                  650
310                  126
311                  650
312                   NA
313                   NA
314                  458
315                  243
316                   NA
317                  320
318                  354
319                   NA
320                  458
321                  145
322                  880
323                  458
324                   73
325                  145
326                  880
327                  458
328                  880
329                  880
330                  880
331                  188
332                  188
333                  650
334                  650
335                  458
336                   NA
337                  243
338                   NA
339                  326
340                  326
341                  389
342                   NA
343                  332
344                   56
345                  425
346                  249
347                  249
348                   92
349                  389
350                   NA
351                  332
352                   NA
353                   NA
354                  326
355                  249
356                   NA
357                  435
358                   NA
359                   NA
360                  650
361                  735
362                  650
363                  425
364                  735
365                  425
366                  425
367                  650
368                  195
369                  381
370                  735
371                  218
372                  572
373                  342
374                  735
375                  650
376                  425
377                  349
378                  572
379                  735
380                  425
381                  425
382                  425
383                  650
384                  650
385                  735
386                  735
387                  650
388                  650
389                  650
390                  425
391                  425
392                  650
393                  650
394                  735
395                  425
396                  425
397                  425
398                  425
399                  381
400                  195
401                  425
402                  496
403                  640
404                  296
405                  425
406                  432
407                  425
408                  425
409                  425
410                  425
411                  442
412                  425
413                  442
414                  442
415                  442
416                  425
417                  735
418                  735
419                  195
420                  195
421                  195
422                  425
423                  442
424                  188
425                  280
426                  251
427                  207
428                  442
429                  425
430                  442
431                  425
432                  425
433                  442
434                  425
435                  442
436                  442
437                  442
438                  442
439                  442
440                  381
441                  195
442                  425
443                  425
444                  425
445                  442
446                  442
447                  442
448                  442
449                  442
450                  381
451                  425
452                  442
453                  425
454                  204
455                  442
456                  425
457                  442
458                  425
459                  425
460                  442
461                  425
462                  432
463                  640
464                  221
465                  425
466                  425
467                  442
468                  425
469                  195
470                  195
471                  195
472                  442
473                  442
474                  425
475                  442
476                  442
477                  195
478                  425
479                  442
480                  442
481                  442
482                  195
483                  173
484                   73
485                  650
486                  195
487                  532
488                   NA
489                  452
490                   NA
491                  249
492                  195
493                   NA
494                   NA
495                  650
496                  218
497                  195
498                   NA
499                  435
500                  249
501                   NA
502                  195
503                  195
504                   NA
505                  452
506                  249
507                  403
508                   NA
509                   NA
510                   73
511                  249
512                  326
513                  326
514                  326
515                  532
516                  195
517                   NA
518                  452
519                  425
520                  249
521                   NA
522                  496
523                  195
524                  532
525                  326
526                  432
527                  496
528                  403
529                  218
530                  389
531                  650
532                  572
533                   NA
534                  650
535                  650
536                   NA
537                  195
538                   NA
539                  249
540                  496
541                  403
542                  188
543                  326
544                  452
545                  204
546                   73
547                  195
548                  492
549                  452
550                  332
551                  398
552                  326
553                   73
554                   NA
555                   NA
556                  496
557                   90
558                  381
559                   NA
560                  204
561                  435
562                   NA
563                  195
564                   NA
565                   NA
566                   NA
567                  326
568                  452
569                   73
570                   NA
571                   NA
572                  326
573                  425
574                  403
575                  249
576                  195
577                  403
578                  218
579                  342
580                   NA
581                  381
582                  381
583                  735
584                  332
585                  735
586                  381
587                  381
588                  381
589                  381
590                  381
591                  381
592                  735
593                  735
594                  735
595                  381
596                  381
597                  381
598                  381
599                  332
600                  381
601                  249
602                  496
603                  650
604                  735
605                  193
606                  381
607                  381
608                  332
609                  381
610                  381
611                  381
612                  381
613                  381
614                  735
615                  381
616                  421
617                  387
618                  452
619                  332
620                  283
621                  381
622                  735
623                  735
624                  381
625                  332
626                  332
627                  381
628                  381
629                  381
630                  381
631                  381
632                  381
633                  381
634                  381
635                  381
636                  735
637                  735
638                  381
639                  381
640                  381
641                  735
642                  735
643                  381
644                  381
645                  381
646                  381
647                  381
648                  381
649                  381
650                  735
651                  735
652                  332
653                  332
654                  381
655                  381
656                  381
657                  381
658                  381
659                  381
660                  381
661                  381
662                  381
663                  381
664                  735
665                  381
666                  381
667                  735
668                  332
669                  496
670                  163
671                  735
672                  212
673                  387
674                  458
675                  221
676                  381
677                  381
678                  332
679                  332
680                  332
681                  332
682                  332
683                  381
684                  381
685                  735
686                  735
687                  735
688                  735
689                   NA
690                  389
691                  425
692                  425
693                  425
694                   NA
695                   NA
696                  389
697                  425
698                  425
699                  389
700                  320
701                  389
702                  425
703                  389
704                  532
705                  126
706                   NA
707                  406
708                   73
709                  320
710                  354
711                   73
712                  145
713                  389
714                  157
715                  157
716                  406
717                  320
718                   NA
719                  425
720                  389
721                  425
722                  442
723                  389
724                  389
725                   NA
726                  389
727                   NA
728                  432
729                  230
730                  190
731                  278
732                  280
733                  270
734                  389
735                  389
736                  458
737                  389
738                  389
739                  425
740                  320
741                  320
742                  157
743                  406
744                   NA
745                   73
746                  320
747                  320
748                  458
749                  145
750                  425
751                  425
752                  188
753                  230
754                  230
755                   NA
756                   73
757                  320
758                  532
759                  532
760                  532
761                  425
762                  389
763                  188
764                  458
765                  188
766                  177
767                  145
768                  389
769                  389
770                  425
771                  735
772                   NA
773                  157
774                  117
775                  230
776                  190
777                  126
778                  204
779                  354
780                  308
781                  532
782                  532
783                  425
784                  425
785                  442
786                  425
787                  157
788                  320
789                  389
790                  389
791                  389
792                   NA
793                  458
794                  180
795                  735
796                  389
797                  425
798                  406
799                  442
800                   NA
801                  425
802                  389
803                  532
804                   NA
805                  188
806                  458
807                  157
808                  157
809                  320
810                  195
811                  195
812                  249
813                  101
814                  356
815                  188
816                   NA
817                   56
818                  231
819                  320
820                   NA
821                  320
822                  252
823                   NA
824                   73
825                  320
826                   56
827                  389
828                  188
829                  425
830                  532
831                  157
832                  354
833                  145
834                  188
835                  389
836                  157
837                   73
838                  145
839                  389
840                  389
841                  389
842                   73
843                  157
844                  252
845                  432
846                   56
847                  110
848                  406
849                  354
850                  204
851                   NA
852                   NA
853                   NA
854                  157
855                  320
856                  188
857                  406
858                  458
859                   NA
860                  230
861                   56
862                  126
863                  354
864                  243
865                  442
866                  406
867                  157
868                   NA
869                  230
870                  442
871                  126
872                  432
873                  126
874                   NA
875                  406
876                   NA
877                  389
878                  442
879                   NA
880                   NA
881                  389
882                  389
883                  320
884                  320
885                  320
886                  230
887                  406
888                   NA
889                   73
890                   73
891                  320
892                  320
893                  425
894                  425
895                  157
896                   NA
897                  406
898                   NA
899                  425
900                  188
901                   NA
902                   73
903                  532
904                  320
905                  406
906                   73
907                   73
908                   73
909                  106
910                  252
911                   73
912                   73
913                   73
914                   73
915                   73
916                   73
917                   73
918                   73
919                  406
920                  406
921                   73
922                  320
923                   73
924                   73
925                   73
926                  320
927                   NA
928                  406
929                   73
930                  230
931                  126
932                   NA
933                   NA
934                  126
935                  354
936                  320
937                   73
938                   73
939                   NA
940                   73
941                   73
942                  190
943                   38
944                  130
945                  119
946                  230
947                  231
948                  110
949                  128
950                  320
951                  406
952                  106
953                  141
954                  226
955                  187
956                  252
957                   NA
958                  230
959                  204
960                   73
961                   73
962                  532
963                  425
964                  425
965                  389
966                  389
967                  735
968                  425
969                  425
970                  403
971                  389
972                  389
973                  650
974                  532
975                  532
976                  532
977                  532
978                  389
979                  735
980                  735
981                  735
982                  735
983                  735
984                  735
985                  189
986                  389
987                  389
988                  425
989                  389
990                  389
991                  650
992                  650
993                  650
994                  650
995                  650
996                  735
997                  532
998                   NA
999                  425
1000                 320
1001                 650
1002                 735
1003                 389
1004                 425
1005                 425
1006                 320
1007                 389
1008                 389
1009                 425
1010                 425
1011                 389
1012                 650
1013                 195
1014                 735
1015                 389
1016                 425
1017                 425
1018                 403
1019                 650
1020                 735
1021                 532
1022                 532
1023                  NA
1024                  NA
1025                 492
1026                 425
1027                 425
1028                 425
1029                 406
1030                 157
1031                 338
1032                 252
1033                 650
1034                 425
1035                 320
1036                 195
1037                 195
1038                 195
1039                 389
1040                 389
1041                 735
1042                 532
1043                 532
1044                 387
1045                 326
1046                 195
1047                 425
1048                 425
1049                 195
1050                 157
1051                 221
1052                  73
1053                  NA
1054                 414
1055                 320
1056                 435
1057                 145
1058                 124
1059                 249
1060                 389
1061                 389
1062                 650
1063                 735
1064                 532
1065                 320
1066                 389
1067                 389
1068                 425
1069                 650
1070                 650
1071                 650
1072                 532
1073                 532
1074                 532
1075                 320
1076                 320
1077                 320
1078                 496
1079                 403
1080                 195
1081                 387
1082                  NA
1083                 326
1084                 195
1085                 221
1086                 320
1087                 249
1088                 389
1089                 387
1090                  NA
1091                 650
1092                 452
1093                 425
1094                 157
1095                  73
1096                 249
1097                 389
1098                 389
1099                 389
1100                 650
1101                 735
1102                 735
1103                 532
1104                 320
1105                 389
1106                 389
1107                 650
1108                 650
1109                 735
1110                 735
1111                 532
1112                 532
1113                 532
1114                 532
1115                 532
1116                 532
1117                 425
1118                 425
1119                 389
1120                 650
1121                 532
1122                 532
1123                 532
1124                  NA
1125                 326
1126                 425
1127                 389
1128                 389
1129                 735
1130                 425
1131                 389
1132                  NA
1133                 389
1134                 650
1135                 735
1136                 532
1137                 532
1138                 425
1139                 532
1140                 532
1141                 389
1142                 389
1143                 389
1144                 389
1145                 735
1146                 532
1147                 389
1148                 389
1149                 389
1150                 389
1151                 218
1152                 195
1153                 735
1154                 389
1155                 650
1156                 195
1157                 323
1158                 735
1159                 532
1160                 204
1161                 629
1162                 342
1163                  NA
1164                 389
1165                 425
1166                 650
1167                 389
1168                 650
1169                 320
1170                 320
1171                 735
1172                 425
1173                 425
1174                 389
1175                 389
1176                 425
1177                 320
1178                 650
1179                 532
1180                 532
1181                 389
1182                 389
1183                 735
1184                 425
1185                 425
1186                 425
1187                 432
1188                 735
1189                 650
1190                 195
1191                 735
1192                 735
1193                 532
1194                 124
1195                 425
1196                 425
1197                 425
1198                 650
1199                 532
1200                 735
1201                 195
1202                 735
1203                 532
1204                 532
1205                 442
1206                 442
1207                  NA
1208                 432
1209                  NA
1210                 157
1211                 218
1212                 218
1213                 218
1214                 218
1215                 326
1216                 425
1217                 425
1218                 218
1219                 326
1220                  NA
1221                 442
1222                 218
1223                 442
1224                 442
1225                 442
1226                 442
1227                 442
1228                 532
1229                 650
1230                 326
1231                 425
1232                 201
1233                 157
1234                 157
1235                 157
1236                 423
1237                 432
1238                 496
1239                 195
1240                 148
1241                 195
1242                 532
1243                 572
1244                 421
1245                  NA
1246                 316
1247                 492
1248                 280
1249                 173
1250                 332
1251                 157
1252                 204
1253                 629
1254                  73
1255                 249
1256                 496
1257                 442
1258                 442
1259                 442
1260                 177
1261                 532
1262                 532
1263                  NA
1264                 425
1265                 157
1266                 157
1267                 157
1268                  NA
1269                  NA
1270                 218
1271                 442
1272                 735
1273                 532
1274                 136
1275                  NA
1276                  NA
1277                 492
1278                 425
1279                 458
1280                 452
1281                 320
1282                 221
1283                  NA
1284                 423
1285                 249
1286                 425
1287                 425
1288                 218
1289                 326
1290                 218
1291                 442
1292                 532
1293                 326
1294                 425
1295                 249
1296                  NA
1297                 432
1298                 926
1299                 442
1300                 389
1301                 532
1302                 650
1303                 492
1304                 326
1305                 642
1306                 157
1307                  73
1308                 354
1309                 124
1310                 249
1311                 403
1312                 218
1313                 163
1314                 195
1315                 381
1316                 342
1317                 188
1318                 148
1319                 387
1320                 425
1321                 195
1322                 201
1323                 452
1324                 173
1325                 320
1326                 320
1327                 332
1328                 204
1329                 214
1330                 221
1331                 414
1332                 223
1333                 389
1334                 389
1335                  NA
1336                 320
1337                 157
1338                  NA
1339                  NA
1340                 496
1341                 496
1342                 218
1343                 218
1344                 218
1345                 218
1346                 218
1347                 218
1348                 425
1349                 425
1350                 425
1351                 425
1352                 425
1353                 425
1354                 218
1355                 195
1356                 326
1357                 425
1358                 442
1359                 442
1360                 442
1361                 442
1362                  NA
1363                 252
1364                 432
1365                 389
1366                 532
1367                 320
1368                 354
1369                 383
1370                 496
1371                 496
1372                 640
1373                 323
1374                 572
1375                 425
1376                 414
1377                 223
1378                 926
1379                 155
1380                 163
1381                 195
1382                 195
1383                 101
1384                 532
1385                 650
1386                  NA
1387                 650
1388                 425
1389                 195
1390                 173
1391                 642
1392                 157
1393                 204
1394                 468
1395                 223
1396                 221
1397                 342
1398                  73
1399                 398
1400                 389
1401                  NA
1402                 496
1403                 496
1404                 496
1405                 442
1406                 425
1407                 423
1408                 496
1409                 496
1410                 218
1411                  NA
1412                 425
1413                 423
1414                 496
1415                 425
1416                 425
1417                 124
1418                 423
1419                 496
1420                 218
1421                 735
1422                  NA
1423                 157
1424                 423
1425                 249
1426                  NA
1427                  NA
1428                 157
1429                 532
1430                 532
1431                 389
1432                 425
1433                 218
1434                 326
1435                 425
1436                 425
1437                 249
1438                 376
1439                 432
1440                 383
1441                 389
1442                 389
1443                 177
1444                 532
1445                 650
1446                  NA
1447                 326
1448                 320
1449                 270
1450                 354
1451                 145
1452                  NA
1453                 423
1454                 249
1455                 280
1456                 432
1457                 342
1458                 211
1459                 735
1460                 148
1461                 195
1462                 532
1463                  88
1464                 316
1465                 316
1466                 492
1467                 425
1468                 458
1469                 452
1470                 425
1471                 157
1472                 214
1473                 338
1474                 211
1475                 223
1476                 496
1477                 496
1478                 496
1479                 195
1480                 425
1481                 423
1482                 423
1483                 342
1484                 442
1485                 326
1486                 201
1487                 270
1488                  73
1489                 423
1490                 249
1491                 383
1492                 496
1493                  NA
1494                 218
1495                 640
1496                 442
1497                 442
1498                 177
1499                 126
1500                 532
1501                 572
1502                  NA
1503                 650
1504                 425
1505                 425
1506                 201
1507                 185
1508                  NA
1509                 423
1510                 211
1511                 117
1512                 376
1513                 155
1514                 163
1515                 156
1516                 532
1517                 249
1518                  NA
1519                  NA
1520                 316
1521                 195
1522                 452
1523                 320
1524                 296
1525                 187
1526                  NA
1527                 249
1528                 423
1529                 496
1530                 425
1531                 425
1532                 496
1533                 218
1534                 423
1535                 532
1536                 423
1537                 432
1538                 389
1539                 532
1540                  NA
1541                  NA
1542                 157
1543                 432
1544                 532
1545                 532
1546                 157
1547                 338
1548                 320
1549                  NA
1550                 320
1551                  NA
1552                 218
1553                 532
1554                 532
1555                 532
1556                 326
1557                 452
1558                 221
1559                 218
1560                 442
1561                 735
1562                 425
1563                 157
1564                 157
1565                 204
1566                 338
1567                 249
1568                 389
1569                 389
1570                  NA
1571                 425
1572                 157
1573                 252
1574                  NA
1575                 320
1576                 218
1577                 532
1578                 115
1579                 320
1580                 320
1581                 157
1582                 880
1583                 496
1584                 218
1585                 442
1586                 389
1587                 177
1588                 101
1589                 195
1590                 458
1591                 452
1592                 157
1593                 423
1594                 423
1595                 432
1596                  NA
1597                 148
1598                 195
1599                 136
1600                  NA
1601                  NA
1602                  88
1603                 650
1604                  NA
1605                 316
1606                 326
1607                 280
1608                 320
1609                 296
1610                 243
1611                 332
1612                 214
1613                  73
1614                 338
1615                 338
1616                 414
1617                 354
1618                 249
1619                 211
1620                 532
1621                 532
1622                 425
1623                 425
1624                 442
1625                 442
1626                 425
1627                 442
1628                 442
1629                 425
1630                 389
1631                 423
1632                 218
1633                 442
1634                 532
1635                 326
1636                  73
1637                 124
1638                 496
1639                 218
1640                 218
1641                 218
1642                 423
1643                 496
1644                 425
1645                 157
1646                 157
1647                 157
1648                 376
1649                 280
1650                 432
1651                 432
1652                 442
1653                 126
1654                 425
1655                 201
1656                 320
1657                 406
1658                 338
1659                 145
1660                 252
1661                  NA
1662                 423
1663                 230
1664                  NA
1665                 218
1666                 190
1667                 211
1668                  38
1669                  NA
1670                 201
1671                 243
1672                 243
1673                 187
1674                  NA
1675                 185
1676                 354
1677                 211
1678                 117
1679                 376
1680                 177
1681                  30
1682                 425
1683                 452
1684                 452
1685                 157
1686                 157
1687                 432
1688                 432
1689                 532
1690                 187
1691                 252
1692                 252
1693                 432
1694                 442
1695                 218
1696                 218
1697                 532
1698                 423
1699                 423
1700                 425
1701                 452
1702                 389
1703                  NA
1704                 320
1705                 252
1706                 423
1707                  30
1708                 532
1709                 532
1710                  NA
1711                 425
1712                 124
1713                 187
1714                 252
1715                 442
1716                 442
1717                 532
1718                 432
1719                 442
1720                 425
1721                 425
1722                 218
1723                 195
1724                 650
1725                 326
1726                 452
1727                  73
1728                 218
1729                 442
1730                 442
1731                 442
1732                 389
1733                 532
1734                 492
1735                 423
1736                 423
1737                 423
1738                 160
1739                 926
1740                 383
1741                 155
1742                 640
1743                 195
1744                 572
1745                 280
1746                 452
1747                 642
1748                 157
1749                 398
1750                 423
1751                 432
1752                 383
1753                 496
1754                 218
1755                 163
1756                 342
1757                 442
1758                 735
1759                 389
1760                 195
1761                 323
1762                 735
1763                 387
1764                 650
1765                 492
1766                 326
1767                 458
1768                 452
1769                 270
1770                 642
1771                 157
1772                 468
1773                 629
1774                  NA
1775                 398
1776                  73
1777                 320
1778                 249
1779                 403
1780                 155
1781                 195
1782                 195
1783                 640
1784                 532
1785                 532
1786                  NA
1787                 280
1788                 195
1789                 173
1790                 320
1791                 296
1792                 332
1793                 204
1794                 221
1795                  73
1796                 252
1797                  NA
1798                 124
1799                 423
1800                 117
1801                 326
1802                 425
1803                 442
1804                 389
1805                 532
1806                 218
1807                 423
1808                 425
1809                 452
1810                 423
1811                 218
1812                 735
1813                 157
1814                  73
1815                 423
1816                 532
1817                 423
1818                 532
1819                 532
1820                 492
1821                 496
1822                 218
1823                 195
1824                  NA
1825                 650
1826                 326
1827                 326
1828                 195
1829                 338
1830                 249
1831                 442
1832                 218
1833                 425
1834                 432
1835                 110
1836                  NA
1837                  30
1838                 115
1839                 243
1840                 157
1841                 243
1842                  NA
1843                 230
1844                  NA
1845                  38
1846                 126
1847                  55
1848                 185
1849                  NA
1850                  30
1851                 432
1852                 532
1853                 425
1854                 157
1855                 423
1856                  NA
1857                 425
1858                 423
1859                 532
1860                 320
1861                 354
1862                 496
1863                 157
1864                 496
1865                 442
1866                 496
1867                 425
1868                 218
1869                 326
1870                 425
1871                 157
1872                 157
1873                 157
1874                 354
1875                 425
1876                 389
1877                 432
1878                 126
1879                 532
1880                 320
1881                 296
1882                 406
1883                 187
1884                 338
1885                 354
1886                 145
1887                 252
1888                 376
1889                 432
1890                  NA
1891                 342
1892                 211
1893                 177
1894                 195
1895                  NA
1896                 115
1897                 201
1898                 270
1899                 243
1900                 243
1901                  NA
1902                 249
1903                 157
1904                  73
1905                 124
1906                 496
1907                 218
1908                 195
1909                 496
1910                 442
1911                 532
1912                 252
1913                  NA
1914                 425
1915                 423
1916                 218
1917                 218
1918                 326
1919                 249
1920                 425
1921                  NA
1922                  NA
1923                  NA
1924                 354
1925                 326
1926                 249
1927                 425
1928                 201
1929                 735
1930                 492
1931                 425
1932                 398
1933                 230
1934                 442
1935                 532
1936                 354
1937                  30
1938                 124
1939                 117
1940                 442
1941                 532
1942                 496
1943                 442
1944                 177
1945                  NA
1946                  NA
1947                 320
1948                 326
1949                 425
1950                 218
1951                  73
1952                 249
1953                 320
1954                 354
1955                 157
1956                  NA
1957                  NA
1958                 442
1959                  NA
1960                 124
1961                 124
1962                  30
1963                  55
1964                  NA
1965                 243
1966                 187
1967                  NA
1968                 326
1969                 442
1970                  NA
1971                 326
1972                 252
1973                 126
1974                  NA
1975                  73
1976                  NA
1977                  30
1978                  NA
1979                 243
1980                 243
1981                  NA
1982                 442
1983                 157
1984                 432
1985                 342
1986                 432
1987                 572
1988                 650
1989                 218
1990                 442
1991                 195
1992                 532
1993                 387
1994                 650
1995                  NA
1996                 425
1997                 452
1998                  73
1999                 432
2000                 496
2001                 496
2002                 342
2003                 278
2004                 148
2005                 249
2006                  NA
2007                 316
2008                 492
2009                 326
2010                 195
2011                 201
2012                 296
2013                 270
2014                 157
2015                 214
2016                 124
2017                 496
2018                 218
2019                 342
2020                 735
2021                 425
2022                 221
2023                 398
2024                 926
2025                 383
2026                 155
2027                 640
2028                 195
2029                  NA
2030                  NA
2031                 496
2032                 442
2033                 532
2034                 157
2035                 735
2036                 423
2037                 442
2038                 157
2039                 442
2040                 442
2041                 442
2042                 650
2043                 204
2044                 414
2045                 211
2046                 442
2047                 157
2048                 104
2049                  38
2050                 442
2051                 442
2052                 532
2053                 532
2054                 532
2055                 735
2056                 735
2057                 332
2058                 650
2059                 572
2060                 650
2061                 342
2062                 650
2063                 650
2064                 650
2065                 650
2066                 650
2067                 650
2068                 650
2069                 204
2070                 221
2071                 650
2072                 650
2073                 650
2074                 381
2075                 650
2076                 650
2077                 650
2078                 650
2079                 650
2080                 650
2081                 403
2082                 332
2083                 650
2084                 381
2085                 650
2086                 221
2087                 398
2088                 403
2089                 650
2090                 163
2091                 188
2092                 177
2093                 201
2094                 452
2095                 223
2096                 381
2097                 650
2098                 452
2099                 124
2100                 650
2101                 403
2102                 381
2103                 735
2104                 650
2105                 496
2106                 218
2107                 218
2108                 735
2109                 642
2110                 332
2111                 332
2112                 204
2113                 195
2114                 342
2115                 572
2116                 572
2117                 629
2118                 640
2119                 381
2120                 387
2121                 403
2122                 221
2123                 342
2124                 735
2125                 735
2126                 650
2127                 650
2128                 403
2129                 650
2130                 650
2131                 425
2132                 403
2133                 735
2134                 650
2135                 735
2136                 332
2137                 650
2138                 735
2139                 381
2140                 650
2141                 381
2142                 735
2143                 425
2144                 735
2145                 735
2146                 735
2147                 155
2148                 735
2149                 425
2150                 218
2151                 650
2152                 735
2153                 458
2154                 458
2155                 190
2156                 320
2157                 458
2158                 332
2159                 332
2160                 332
2161                 332
2162                 332
2163                 332
2164                 332
2165                 332
2166                 332
2167                 403
2168                 332
2169                 113
2170                 389
2171                 735
2172                 316
2173                 650
2174                 177
2175                 326
2176                 326
2177                 249
2178                 195
2179                 249
2180                 915
2181                 403
2182                 532
2183                 650
2184                 201
2185                 650
2186                  NA
2187                 195
2188                 403
2189                 243
2190                 124
2191                 442
2192                 157
2193                 442
2194                  NA
2195                  NA
2196                 320
2197                 492
2198                 221
2199                 195
2200                  73
2201                  30
2202                  73
2203                 320
2204                  73
2205                 650
2206                 926
2207                 376
2208                 403
2209                 188
2210                  75
2211                 195
2212                 406
2213                 326
2214                  NA
2215                 492
2216                 157
2217                 442
2218                 432
2219                 389
2220                 195
2221                 435
2222                 640
2223                 650
2224                 221
2225                 195
2226                  NA
2227                 880
2228                 432
2229                 492
2230                 458
2231                  NA
2232                  73
2233                 381
2234                 650
2235                 243
2236                  73
2237                  NA
2238                 403
2239                 156
2240                 187
2241                 145
2242                 320
2243                 249
2244                 221
2245                 342
2246                 492
2247                 376
2248                 650
2249                  73
2250                 458
2251                 145
2252                 249
2253                 435
2254                 195
2255                 208
2256                  30
2257                  NA
2258                  30
2259                  55
2260                  30
2261                 124
2262                  NA
2263                 880
2264                 671
2265                 165
2266                 299
2267                 455
2268                 228
2269                 417
2270                 332
2271                 211
2272                 650
2273                 201
2274                 629
2275                 880
2276                 650
2277                 403
2278                 188
2279                 173
2280                 163
2281                 101
2282                 223
2283                 221
2284                 342
2285                 356
2286                 640
2287                 880
2288                 650
2289                 126
2290                 496
2291                 163
2292                 163
2293                 204
2294                 414
2295                 383
2296                 218
2297                 101
2298                 280
2299                 223
2300                 414
2301                 880
2302                 640
2303                 278
2304                 650
2305                 650
2306                 880
2307                 188
2308                 650
2309                 249
2310                 403
2311                 442
2312                 650
2313                 195
2314                 432
2315                 442
2316                 442
2317                 157
2318                 381
2319                 342
2320                  NA
2321                 458
2322                 452
2323                 642
2324                 157
2325                 204
2326                 223
2327                 249
2328                 381
2329                 650
2330                 387
2331                 280
2332                 376
2333                 126
2334                 342
2335                 218
2336                 249
2337                  NA
2338                 186
2339                 200
2340                 201
2341                 243
2342                 195
2343                 223
2344                  73
2345                 320
2346                 425
2347                 425
2348                 381
2349                 195
2350                 442
2351                 442
2352                 195
2353                 442
2354                 381
2355                 442
2356                 381
2357                 425
2358                 432
2359                 442
2360                 381
2361                 442
2362                 442
2363                 249
2364                  NA
2365                 157
2366                 320
2367                 435
2368                  NA
2369                 381
2370                 442
2371                 442
2372                 177
2373                 243
2374                 435
2375                  NA
2376                 124
2377                 381
2378                 442
2379                  73
2380                 403
2381                 650
2382                 650
2383                 195
2384                 381
2385                 442
2386                 195
2387                 442
2388                 442
2389                 332
2390                 381
2391                 381
2392                 381
2393                 195
2394                 195
2395                 332
2396                 442
2397                 442
2398                  30
2399                  NA
2400                 208
2401                  73
2402                  73
2403                 208
2404                 208
2405                 115
2406                 406
2407                  73
2408                 208
2409                 115
2410                  73
2411                 243
2412                 195
2413                 115
2414                 326
2415                 735
2416                 650
2417                 403
2418                 195
2419                 195
2420                 320
2421                 155
2422                 195
2423                  NA
2424                 124
2425                 650
2426                 195
2427                 629
2428                 376
2429                 403
2430                  NA
2431                 195
2432                 243
2433                 926
2434                 155
2435                 650
2436                 326
2437                 195
2438                 650
2439                 650
2440                 249
2441                 650
2442                 403
2443                 326
2444                 160
2445                 926
2446                 230
2447                 190
2448                 342
2449                 201
2450                 225
2451                 218
2452                 233
2453                 212
2454                 387
2455                 270
2456                 642
2457                 214
2458                 223
2459                 221
2460                  NA
2461                 320
2462                 435
2463                  NA
2464                 117
2465                 223
2466                 188
2467                  73
2468                 145
2469                 195
2470                 458
2471                 145
2472                 195
2473                  NA
2474                  73
2475                 188
2476                 650
2477                 432
2478                 403
2479                 155
2480                 201
2481                 173
2482                  NA
2483                 338
2484                 320
2485                 124
2486                 880
2487                 880
2488                  73
2489                 145
2490                 452
2491                 195
2492                 572
2493                 249
2494                 403
2495                 145
2496                 403
2497                 650
2498                 926
2499                 218
2500                 188
2501                 195
2502                 492
2503                 201
2504                 128
2505                 243
2506                 338
2507                 252
2508                  NA
2509                 124
2510                 403
2511                 188
2512                 640
2513                 188
2514                 432
2515                 650
2516                 458
2517                 249
2518                 403
2519                 880
2520                 496
2521                 403
2522                 218
2523                 735
2524                 195
2525                 572
2526                 452
2527                 406
2528                 221
2529                 187
2530                 338
2531                 423
2532                 249
2533                 880
2534                 650
2535                 173
2536                 155
2537                 323
2538                 101
2539                 349
2540                 629
2541                 173
2542                 423
2543                  55
2544                 442
2545                 442
2546                 136
2547                 336
2548                 223
2549                 199
2550                 142
2551                 356
2552                 195
2553                 195
2554                 442
2555                 442
2556                 442
2557                 442
2558                 442
2559                 270
2560                 195
2561                 270
2562                 278
2563                 102
2564                 442
2565                 195
2566                 381
2567                 381
2568                 162
2569                 195
2570                 188
2571                 329
2572                 316
2573                 186
2574                 201
2575                 356
2576                 735
2577                 332
2578                  44
2579                 735
2580                 735
2581                 458
2582                 389
2583                 442
2584                 180
2585                 496
2586                 166
2587                  38
2588                 316
2589                 642
2590                 398
2591                  NA
2592                 160
2593                 270
2594                 109
2595                 442
2596                 425
2597                 458
2598                 492
2599                 201
2600                 243
2601                 287
2602                 389
2603                 389
2604                 532
2605                 408
2606                 280
2607                 296
2608                 270
2609                 204
2610                 629
2611                 398
2612                 458
2613                 926
2614                 160
2615                 383
2616                 280
2617                 269
2618                 188
2619                  61
2620                 458
2621                 389
2622                 243
2623                 376
2624                 117
2625                 376
2626                  56
2627                 175
2628                 312
2629                 243
2630                 269
2631                 117
2632                 145
2633                 230
2634                 320
2635                 115
2636                 162
2637                 128
2638                 532
2639                 338
2640                 252
2641                 389
2642                 532
2643                 406
2644                 157
2645                  NA
2646                 435
2647                 218
2648                 342
2649                 640
2650                  30
2651                 188
2652                 332
2653                 204
2654                  73
2655                 650
2656                 532
2657                 532
2658                 532
2659                 650
2660                 425
2661                 218
2662                  30
2663                 326
2664                  73
2665                 650
2666                 389
2667                 650
2668                 354
2669                 496
2670                 435
2671                  73
2672                 148
2673                 532
2674                  30
2675                 492
2676                 496
2677                  30
2678                 572
2679                 338
2680                 195
2681                 532
2682                 442
2683                 278
2684                 177
2685                 398
2686                 735
2687                 163
2688                 195
2689                 387
2690                 403
2691                 650
2692                 162
2693                 342
2694                 492
2695                 280
2696                 162
2697                 398
2698                 650
2699                 287
2700                 177
2701                 398
2702                 650
2703                 650
2704                 163
2705                 387
2706                 398
2707                 177
2708                 452
2709                 381
2710                 403
2711                 650
2712                 425
2713                 236
2714                 336
2715                 214
2716                 425
2717                 136
2718                 458
2719                 168
2720                 308
2721                 398
2722                 332
2723                 650
2724                 414
2725                 532
2726                 253
2727                 160
2728                 228
2729                 423
2730                 532
2731                 389
2732                 249
2733                 650
2734                 650
2735                 650
2736                 458
2737                 650
2738                 650
2739                 173
2740                 223
2741                 336
2742                 323
2743                 642
2744                 880
2745                 650
2746                 403
2747                 650
2748                 650
2749                 650
2750                 650
2751                 442
2752                 442
2753                 195
2754                 157
2755                 381
2756                 381
2757                 442
2758                 442
2759                 442
2760                 442
2761                 381
2762                 381
2763                 442
2764                 195
2765                 157
2766                 425
2767                 403
2768                 155
2769                 218
2770                 640
2771                 442
2772                 177
2773                 195
2774                  NA
2775                 195
2776                 157
2777                  73
2778                 320
2779                 423
2780                 249
2781                 442
2782                 442
2783                 124
2784                 332
2785                 496
2786                 230
2787                  NA
2788                 211
2789                 640
2790                 735
2791                 188
2792                 316
2793                 492
2794                 326
2795                 195
2796                 204
2797                  NA
2798                 414
2799                 435
2800                 252
2801                  NA
2802                 442
2803                 381
2804                 381
2805                  NA
2806                 442
2807                 442
2808                 195
2809                 442
2810                 195
2811                 195
2812                 381
2813                 442
2814                 442
2815                 432
2816                 381
2817                 381
2818                 735
2819                 442
2820                 442
2821                 442
2822                 332
2823                 381
2824                 381
2825                 381
2826                 157
2827                 442
2828                 195
2829                 221
2830                 496
2831                 163
2832                 381
2833                 735
2834                 442
2835                 387
2836                  73
2837                 157
2838                 381
2839                 442
2840                 195
2841                 117
2842                 442
2843                 332
2844                 442
2845                 381
2846                 381
2847                 326
2848                 162
2849                 442
2850                 442
2851                 157
2852                 381
2853                 442
2854                 195
2855                 442
2856                 442
2857                 195
2858                 425
2859                 332
2860                 195
2861                 442
2862                 442
2863                 332
2864                 332
2865                 442
2866                 442
2867                 403
2868                 381
2869                 332
2870                 425
2871                  73
2872                  73
2873                  73
2874                  73
2875                  73
2876                  73
2877                  NA
2878                 170
2879                  NA
2880                  73
2881                 376
2882                 326
2883                  73
2884                  NA
2885                 342
2886                 640
2887                 572
2888                 201
2889                 124
2890                 296
2891                 270
2892                 221
2893                 338
2894                 423
2895                 117
2896                  30
2897                  NA
2898                 195
2899                  73
2900                 177
2901                 338
2902                 414
2903                 326
2904                 403
2905                  NA
2906                 403
2907                 403
2908                 435
2909                  NA
2910                  NA
2911                 387
2912                 468
2913                  NA
2914                 435
2915                 145
2916                 326
2917                 249
2918                 650
2919                 403
2920                 195
2921                  NA
2922                 650
2923                  90
2924                 177
2925                 532
2926                 338
2927                 124
2928                 468
2929                 926
2930                 926
2931                 403
2932                 650
2933                 468
2934                 326
2935                 195
2936                  NA
2937                 326
2938                 650
2939                 650
2940                 195
2941                 403
2942                 650
2943                 221
2944                 650
2945                 650
2946                 145
2947                 155
2948                 163
2949                 323
2950                 650
2951                 468
2952                 124
2953                 458
2954                 188
2955                 145
2956                 880
2957                 880
2958                 145
2959                 735
2960                 458
2961                 458
2962                 458
2963                 188
2964                 188
2965                 880
2966                 880
2967                 880
2968                 880
2969                 188
2970                 650
2971                 458
2972                 640
2973                 145
2974                 145
2975                 735
2976                 880
2977                 188
2978                 125
2979                 301
2980                 221
2981                 287
2982                 195
2983                 221
2984                 316
2985                 326
2986                 223
2987                 249
2988                  NA
2989                  92
2990                 326
2991                  73
2992                 389
2993                 389
2994                 735
2995                 425
2996                 101
2997                 642
2998                 650
2999                 735
3000                 442
3001                 195
3002                 442
3003                 442
3004                 442
3005                 572
3006                 262
3007                 104
3008                 383
3009                 161
3010                 136
3011                 173
3012                 223
3013                 195
3014                 640
3015                 414
3016                 356
3017                 342
3018                 276
3019                 316
3020                 338
3021                 432
3022                 195
3023                 442
3024                 326
3025                 326
3026                  NA
3027                 572
3028                 201
3029                  NA
3030                  NA
3031                 735
3032                 332
3033                 148
3034                 201
3035                 280
3036                 223
3037                 332
3038                 472
3039                 160
3040                 278
3041                 233
3042                 283
3043                 223
3044                 735
3045                 332
3046                 381
3047                 381
3048                 735
3049                 381
3050                 735
3051                 640
3052                 442
3053                 243
3054                 389
3055                 389
3056                 320
3057                 387
3058                 243
3059                 414
3060                  88
3061                 280
3062                 468
3063                 442
3064                  73
3065                 532
3066                 389
3067                 296
3068                  56
3069                 231
3070                 532
3071                 532
3072                 342
3073                 296
3074                 188
3075                 157
3076                 425
3077                 425
3078                 492
3079                  38
3080                 231
3081                 243
3082                 185
3083                 278
3084                 145
3085                 532
3086                  73
3087                 219
3088                 208
3089                  73
3090                 243
3091                 269
3092                 320
3093                 650
3094                 425
3095                 425
3096                 425
3097                 532
3098                 204
3099                 354
3100                  90
3101                  NA
3102                 432
3103                  73
3104                 200
3105                 406
3106                  NA
3107                 354
3108                 252
3109                  NA
3110                 532
3111                 320
3112                 218
3113                 195
3114                 735
3115                 735
3116                 532
3117                 389
3118                 389
3119                 532
3120                 389
3121                 320
3122                  NA
3123                 376
3124                  88
3125                  NA
3126                 423
3127                 320
3128                 252
3129                 496
3130                 249
3131                 160
3132                 432
3133                 342
3134                 442
3135                 492
3136                  44
3137                 249
3138                 201
3139                 195
3140                 338
3141                 442
3142                 195
3143                 173
3144                 572
3145                 280
3146                 195
3147                 201
3148                  NA
3149                 414
3150                 124
3151                  73
3152                 532
3153                 492
3154                 211
3155                 207
3156                 650
3157                 376
3158                 199
3159                 735
3160                 421
3161                 326
3162                  56
3163                 296
3164                  NA
3165                 532
3166                 442
3167                 423
3168                  NA
3169                 532
3170                 735
3171                 338
3172                 532
3173                 650
3174                 188
3175                  44
3176                 414
3177                 376
3178                 926
3179                  NA
3180                 338
3181                 249
3182                 195
3183                 496
3184                 532
3185                 492
3186                 735
3187                 496
3188                 296
3189                 249
3190                 572
3191                 249
3192                 320
3193                 425
3194                 195
3195                 423
3196                 320
3197                  NA
3198                 218
3199                 204
3200                 187
3201                 442
3202                 211
3203                 423
3204                 532
3205                  NA
3206                 432
3207                  73
3208                 211
3209                 221
3210                 354
3211                 650
3212                 204
3213                 572
3214                  NA
3215                 423
3216                 532
3217                 532
3218                 177
3219                 280
3220                 157
3221                 110
3222                 185
3223                 532
3224                 735
3225                 492
3226                 126
3227                 163
3228                 204
3229                 423
3230                 650
3231                 640
3232                 735
3233                 195
3234                 387
3235                 417
3236                 262
3237                 172
3238                 414
3239                 342
3240                 425
3241                 735
3242                 425
3243                 735
3244                 425
3245                 425
3246                 425
3247                 735
3248                 425
3249                 356
3250                 735
3251                 331
3252                 425
3253                 735
3254                 458
3255                 299
3256                 458
3257                 342
3258                 458
3259                 332
3260                 262
3261                 417
3262                 403
3263                 532
3264                 735
3265                 148
3266                 389
3267                 442
3268                 435
3269                 195
3270                  NA
3271                 442
3272                  NA
3273                 442
3274                 124
3275                 332
3276                 442
3277                 425
3278                 640
3279                 442
3280                  55
3281                 124
3282                  NA
3283                 208
3284                 208
3285                  73
3286                 195
3287                  73
3288                  73
3289                 650
3290                 180
3291                 125
3292                 252
3293                  NA
3294                  NA
3295                 414
3296                 880
3297                 880
3298                 880
3299                 458
3300                 650
3301                 177
3302                 201
3303                 284
3304                 442
3305                 159
3306                 298
3307                 650
3308                 280
3309                 381
3310                 195
3311                 249
3312                 157
3313                 130
3314                 320
3315                 188
3316                  30
3317                  NA
3318                 225
3319                 532
3320                 735
3321                 389
3322                 496
3323                  NA
3324                 376
3325                  NA
3326                  NA
3327                 243
3328                 326
3329                 425
3330                 218
3331                 452
3332                 425
3333                 320
3334                 435
3335                 532
3336                 193
3337                 214
3338                 269
3339                 190
3340                 163
3341                 642
3342                 442
3343                 349
3344                 180
3345                 270
3346                 650
3347                 195
3348                 435
3349                 126
3350                 323
3351                 175
3352                 244
3353                 389
3354                 145
3355                 124
3356                 118
3357                 157
3358                 629
3359                 249
3360                 442
3361                 157
3362                 442
3363                 425
3364                  NA
3365                 442
3366                 177
3367                 280
3368                 145
3369                 195
3370                 421
3371                 442
3372                 128
3373                 214
3374                 383
3375                 414
3376                 230
3377                 458
3378                 230
3379                 458
3380                 308
3381                 532
3382                  30
3383                 190
3384                 225
3385                 432
3386                 320
3387                  73
3388                 320
3389                 326
3390                 442
3391                 148
3392                 212
3393                  NA
3394                 403
3395                 124
3396                 458
3397                 735
3398                  30
3399                  30
3400                  55
3401                 207
3402                 329
3403                 880
3404                 880
3405                 154
3406                 278
3407                 650
3408                 880
3409                 458
3410                 880
3411                 435
3412                 735
3413                 157
3414                 195
3415                 926
3416                 342
3417                  NA
3418                  73
3419                  NA
3420                  NA
3421                 187
3422                 225
3423                  56
3424                 642
3425                 221
3426                 442
3427                 442
3428                 442
3429                 442
3430                 572
3431                 157
3432                 442
3433                 442
3434                  73
3435                 195
3436                 332
3437                 425
3438                 442
3439                 650
3440                  73
3441                  73
3442                 320
3443                 208
3444                 406
3445                 432
3446                  NA
3447                 326
3448                 124
3449                  73
3450                  55
3451                 376
3452                 163
3453                 170
3454                  51
3455                 452
3456                  73
3457                 208
3458                  55
3459                 406
3460                 435
3461                 452
3462                 406
3463                 243
3464                 387
3465                 195
3466                 308
3467                 926
3468                 298
3469                 249
3470                 458
3471                 354
3472                 880
3473                  NA
3474                 880
3475                 880
3476                 880
3477                 880
3478                 458
3479                 145
3480                 145
3481                 280
3482                 188
3483                  NA
3484                 458
3485                 880
3486                 125
3487                 188
3488                 145
3489                 880
3490                 425
3491                 442
3492                 125
3493                 671
3494                 421
3495                 124
3496                 195
3497                 383
3498                 326
3499                 371
3500                 173
3501                 381
3502                 332
3503                 298
3504                 389
3505                 458
3506                 408
3507                 112
3508                 194
3509                 356
3510                 308
3511                  61
3512                 112
3513                 458
3514                 458
3515                 188
3516                 195
3517                 130
3518                 145
3519                 186
3520                 222
3521                 243
3522                 204
3523                 225
3524                 204
3525                 425
3526                 442
3527                 188
3528                  NA
3529                 125
3530                  38
3531                 128
3532                 296
3533                 270
3534                 157
3535                 230
3536                  NA
3537                 177
3538                 185
3539                 629
3540                 338
3541                  NA
3542                 435
3543                 532
3544                 389
3545                 389
3546                 173
3547                 532
3548                 320
3549                  55
3550                 115
3551                  30
3552                 425
3553                 389
3554                  73
3555                 124
3556                 342
3557                 326
3558                  NA
3559                 177
3560                 124
3561                 432
3562                 124
3563                 332
3564                  NA
3565                 735
3566                 492
3567                 572
3568                 316
3569                 157
3570                 572
3571                 381
3572                 492
3573                 249
3574                 332
3575                 155
3576                  61
3577                 532
3578                 332
3579                  NA
3580                  37
3581                 276
3582                 188
3583                 249
3584                 331
3585                 162
3586                 162
3587                 287
3588                 188
3589                 880
3590                 442
3591                 442
3592                 629
3593                 442
3594                 442
3595                 432
3596                 190
3597                 270
3598                 157
3599                 442
3600                 442
3601                 442
3602                  55
3603                 425
3604                 442
3605                 381
3606                 157
3607                 432
3608                 406
3609                 406
3610                 208
3611                 117
3612                  55
3613                 243
3614                 126
3615                  NA
3616                 406
3617                 190
3618                 252
3619                 249
3620                 287
3621                 188
3622                 230
3623                 880
3624                 195
3625                 458
3626                 189
3627                 276
3628                 228
3629                 195
3630                 735
3631                 398
3632                 442
3633                 195
3634                 735
3635                 270
3636                 214
3637                 381
3638                 381
3639                 356
3640                 320
3641                 145
3642                 109
3643                 323
3644                 280
3645                 642
3646                  NA
3647                 269
3648                 308
3649                 389
3650                 207
3651                 243
3652                 231
3653                 226
3654                 211
3655                  73
3656                 185
3657                 204
3658                 188
3659                 650
3660                 406
3661                 532
3662                 389
3663                 650
3664                 735
3665                 532
3666                 187
3667                 432
3668                 532
3669                 201
3670                 354
3671                 124
3672                 376
3673                 115
3674                 204
3675                  NA
3676                 425
3677                  55
3678                 338
3679                 233
3680                 157
3681                 157
3682                 323
3683                 101
3684                 442
3685                 532
3686                 195
3687                 414
3688                 109
3689                 650
3690                 926
3691                 201
3692                 228
3693                 356
3694                 201
3695                 642
3696                 356
3697                 532
3698                 336
3699                 650
3700                 442
3701                 442
3702                 278
3703                  NA
3704                 442
3705                 163
3706                 177
3707                 101
3708                  NA
3709                  30
3710                 572
3711                 296
3712                 338
3713                 185
3714                 442
3715                 188
3716                  NA
3717                 425
3718                 425
3719                 926
3720                 195
3721                 442
3722                 432
3723                 381
3724                 332
3725                  NA
3726                 170
3727                 208
3728                 342
3729                 195
3730                 735
3731                 650
3732                 162
3733                 188
3734                 468
3735                 249
3736                 329
3737                 280
3738                 195
3739                 326
3740                 381
3741                 125
3742                 280
3743                 155
3744                 323
3745                 735
3746                 735
3747                 269
3748                 117
3749                 207
3750                 389
3751                 119
3752                 249
3753                 188
3754                 134
3755                 389
3756                 190
3757                 112
3758                 208
3759                 425
3760                 532
3761                 252
3762                 376
3763                  30
3764                 221
3765                 218
3766                  NA
3767                 354
3768                 376
3769                 124
3770                 160
3771                 389
3772                 249
3773                 145
3774                 383
3775                 342
3776                 398
3777                 155
3778                 338
3779                 157
3780                 342
3781                 406
3782                 326
3783                 249
3784                 249
3785                 442
3786                 425
3787                 155
3788                 398
3789                 195
3790                 442
3791                 532
3792                 423
3793                 252
3794                 125
3795                 301
3796                 735
3797                 532
3798                 125
3799                 301
3800                 323
3801                 201
3802                 204
3803                 417
3804                 233
3805                 735
3806                 332
3807                 425
3808                 381
3809                 650
3810                 326
3811                 650
3812                 608
3813                 608
3814                 195
3815                 650
3816                  NA
3817                 435
3818                 880
3819                 326
3820                  73
3821                 421
3822                 136
3823                 243
3824                  NA
3825                  NA
3826                  NA
3827                 326
3828                 326
3829                 173
3830                  73
3831                 423
3832                 195
3833                 243
3834                  92
3835                 650
3836                 326
3837                  73
3838                 926
3839                  92
3840                 650
3841                 326
3842                 249
3843                 249
3844                 323
3845                 880
3846                 425
3847                 195
3848                 249
3849                 195
3850                 195
3851                 249
3852                  73
3853                  NA
3854                  52
3855                 398
3856                 214
3857                 195
3858                 204
3859                 173
3860                 173
3861                  52
3862                  44
3863                  NA
3864                 650
3865                 204
3866                 650
3867                 326
3868                 173
3869                 173
3870                  52
3871                 204
3872                 195
3873                 735
3874                 110
3875                 104
3876                 125
3877                 735
3878                 492
3879                 532
3880                 425
3881                  30
3882                 296
3883                 650
3884                 735
3885                 458
3886                 262
3887                 572
3888                 195
3889                 458
3890                 458
3891                  88
3892                  NA
3893                 225
3894                 406
3895                 145
3896                 629
3897                  55
3898                 423
3899                 102
3900                 168
3901                 492
3902                 296
3903                 124
3904                 287
3905                 278
3906                  NA
3907                 208
3908                 735
3909                 650
3910                 650
3911                 640
3912                 177
3913                 342
3914                 640
3915                 145
3916                 458
3917                 642
3918                 442
3919                 442
3920                 381
3921                 735
3922                 642
3923                 332
3924                 101
3925                 162
3926                 642
3927                 389
3928                 308
3929                 130
3930                 231
3931                 211
3932                 230
3933                  58
3934                 231
3935                 320
3936                  NA
3937                 389
3938                 532
3939                 572
3940                  NA
3941                  NA
3942                 157
3943                 387
3944                 532
3945                 442
3946                 156
3947                 221
3948                  73
3949                 211
3950                 532
3951                 157
3952                 157
3953                  37
3954                 195
3955                 349
3956                 650
3957                 177
3958                 735
3959                 201
3960                 735
3961                 880
3962                 442
3963                 381
3964                 381
3965                 332
3966                 735
3967                 442
3968                 432
3969                 650
3970                 195
3971                 211
3972                 442
3973                 425
3974                 157
3975                 381
3976                 332
3977                 332
3978                 381
3979                 381
3980                 735
3981                 425
3982                 342
3983                 442
3984                 381
3985                 381
3986                  73
3987                 406
3988                 406
3989                 155
3990                 650
3991                 195
3992                 650
3993                 398
3994                 188
3995                 188
3996                 458
3997                 880
3998                 640
3999                 188
4000                 188
4001                 435
4002                 249
4003                 211
4004                  NA
4005                  NA
4006                  73
4007                 252
4008                 213
4009                 383
4010                 356
4011                 117
4012                 406
4013                 572
4014                  NA
4015                 472
4016                 926
4017                 221
4018                 173
4019                 177
4020                 572
4021                 208
4022                 287
4023                 163
4024                 735
4025                 160
4026                 417
4027                 532
4028                 195
4029                 532
4030                 354
4031                 496
4032                 442
4033                  55
4034                 204
4035                 244
4036                 458
4037                 650
4038                 195
4039                 113
4040                 190
4041                 389
4042                 381
4043                 204
4044                 163
4045                 354
4046                 326
4047                  NA
4048                 421
4049                 323
4050                 338
4051                 406
4052                 208
4053                 170
4054                 101
4055                 145
4056                 212
4057                 435
4058                 423
4059                 387
4060                 414
4061                 187
4062                 423
4063                 173
4064                 211
4065                 354
4066                 195
4067                  NA
4068                 403
4069                 735
4070                  NA
4071                 218
4072                 650
4073                 403
4074                 156
4075                 650
4076                 880
4077                 280
4078                 173
4079                 332
4080                 195
4081                 383
4082                 173
4083                 381
4084                 223
4085                 442
4086                 371
4087                 211
4088                 532
4089                 572
4090                 204
4091                 157
4092                 223
4093                 432
4094                 124
4095                 249
4096                 458
4097                  37
4098                 326
4099                 880
4100                 280
4101                 233
4102                 162
4103                 214
4104                  85
4105                 468
4106                 326
4107                  73
4108                 188
4109                 338
4110                 735
4111                 195
4112                  51
4113                 208
4114                 243
4115                 403
4116                  NA
4117                 145
4118                 880
4119                 145
4120                 145
4121                 880
4122                 640
4123                 332
4124                 421
4125                 214
4126                 468
4127                 572
4128                 735
4129                 195
4130                 113
4131                 458
4132                 188
4133                 442
4134                 389
4135                 323
4136                 458
4137                 389
4138                 532
4139                 124
4140                  55
4141                 211
4142                 425
4143                 425
4144                 252
4145                  NA
4146                 383
4147                 387
4148                 496
4149                 468
4150                 421
4151                 455
4152                 532
4153                 532
4154                 188
4155                  30
4156                 642
4157                 126
4158                 173
4159                 342
4160                 249
4161                 403
4162                 381
4163                 280
4164                 425
4165                 442
4166                 381
                                                        NAME.y
1                       Detroit-Warren-Dearborn, MI Metro Area
2                       Detroit-Warren-Dearborn, MI Metro Area
3                       Detroit-Warren-Dearborn, MI Metro Area
4                       Detroit-Warren-Dearborn, MI Metro Area
5                San Francisco-Oakland-Berkeley, CA Metro Area
6                         Phoenix-Mesa-Chandler, AZ Metro Area
7                       Detroit-Warren-Dearborn, MI Metro Area
8           Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
9                       Detroit-Warren-Dearborn, MI Metro Area
10                      Detroit-Warren-Dearborn, MI Metro Area
11                      Detroit-Warren-Dearborn, MI Metro Area
12                      Detroit-Warren-Dearborn, MI Metro Area
13              Portland-Vancouver-Hillsboro, OR-WA Metro Area
14                        Phoenix-Mesa-Chandler, AZ Metro Area
15               San Jose-Sunnyvale-Santa Clara, CA Metro Area
16               San Jose-Sunnyvale-Santa Clara, CA Metro Area
17                      Detroit-Warren-Dearborn, MI Metro Area
18                             Dayton-Kettering, OH Metro Area
19                          Buffalo-Cheektowaga, NY Metro Area
20                                  Panama City, FL Metro Area
21          Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
22             Riverside-San Bernardino-Ontario, CA Metro Area
23                        Providence-Warwick, RI-MA Metro Area
24                                 Jacksonville, FL Metro Area
25          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
26                                    Asheville, NC Metro Area
27            New York-Newark-Jersey City, NY-NJ-PA Metro Area
28                                     Key West, FL Micro Area
29                                      Jackson, MS Metro Area
30               Los Angeles-Long Beach-Anaheim, CA Metro Area
31              Portland-Vancouver-Hillsboro, OR-WA Metro Area
32                                 Raleigh-Cary, NC Metro Area
33                  Sacramento-Roseville-Folsom, CA Metro Area
34          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
35               San Francisco-Oakland-Berkeley, CA Metro Area
36                       Denver-Aurora-Lakewood, CO Metro Area
37            New York-Newark-Jersey City, NY-NJ-PA Metro Area
38               San Diego-Chula Vista-Carlsbad, CA Metro Area
39                      Seattle-Tacoma-Bellevue, WA Metro Area
40               San Diego-Chula Vista-Carlsbad, CA Metro Area
41                  Sacramento-Roseville-Folsom, CA Metro Area
42                           Kennewick-Richland, WA Metro Area
43            New York-Newark-Jersey City, NY-NJ-PA Metro Area
44            New York-Newark-Jersey City, NY-NJ-PA Metro Area
45             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
46                  Dallas-Fort Worth-Arlington, TX Metro Area
47                                    Lafayette, LA Metro Area
48                 Austin-Round Rock-Georgetown, TX Metro Area
49                             Cincinnati, OH-KY-IN Metro Area
50                               Kansas City, MO-KS Metro Area
51               Chicago-Naperville-Elgin, IL-IN-WI Metro Area
52               San Diego-Chula Vista-Carlsbad, CA Metro Area
53                                     Syracuse, NY Metro Area
54          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
55                               Urban Honolulu, HI Metro Area
56                          Buffalo-Cheektowaga, NY Metro Area
57                                  Sioux Falls, SD Metro Area
58                                      Bozeman, MT Micro Area
59                      Seattle-Tacoma-Bellevue, WA Metro Area
60                   Des Moines-West Des Moines, IA Metro Area
61                   Boston-Cambridge-Newton, MA-NH Metro Area
62            New York-Newark-Jersey City, NY-NJ-PA Metro Area
63                                     Fargo, ND-MN Metro Area
64             Atlanta-Sandy Springs-Alpharetta, GA Metro Area
65     Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
66            New York-Newark-Jersey City, NY-NJ-PA Metro Area
67                         New Orleans-Metairie, LA Metro Area
68                    San Antonio-New Braunfels, TX Metro Area
69               Los Angeles-Long Beach-Anaheim, CA Metro Area
70                                       Fresno, CA Metro Area
71                                  Idaho Falls, ID Metro Area
72             Riverside-San Bernardino-Ontario, CA Metro Area
73                              Gulfport-Biloxi, MS Metro Area
74                   Boston-Cambridge-Newton, MA-NH Metro Area
75                    Orlando-Kissimmee-Sanford, FL Metro Area
76                                  Spartanburg, SC Metro Area
77                      Albany-Schenectady-Troy, NY Metro Area
78            Hartford-East Hartford-Middletown, CT Metro Area
79                      Detroit-Warren-Dearborn, MI Metro Area
80                           Milwaukee-Waukesha, WI Metro Area
81                  Dallas-Fort Worth-Arlington, TX Metro Area
82                                Memphis, TN-MS-AR Metro Area
83                    Baltimore-Columbia-Towson, MD Metro Area
84                                     Columbus, OH Metro Area
85                         New Orleans-Metairie, LA Metro Area
86       Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
87                                   Pittsburgh, PA Metro Area
88          Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
89                    Orlando-Kissimmee-Sanford, FL Metro Area
90                 Las Vegas-Henderson-Paradise, NV Metro Area
91               San Diego-Chula Vista-Carlsbad, CA Metro Area
92                  Sacramento-Roseville-Folsom, CA Metro Area
93                                 Raleigh-Cary, NC Metro Area
94                                     Columbus, OH Metro Area
95                    Orlando-Kissimmee-Sanford, FL Metro Area
96              Portland-Vancouver-Hillsboro, OR-WA Metro Area
97                      Omaha-Council Bluffs, NE-IA Metro Area
98           Deltona-Daytona Beach-Ormond Beach, FL Metro Area
99                 Indianapolis-Carmel-Anderson, IN Metro Area
100           New York-Newark-Jersey City, NY-NJ-PA Metro Area
101                              Salt Lake City, UT Metro Area
102               North Port-Sarasota-Bradenton, FL Metro Area
103          Crestview-Fort Walton Beach-Destin, FL Metro Area
104                  Boston-Cambridge-Newton, MA-NH Metro Area
105                Indianapolis-Carmel-Anderson, IN Metro Area
106                                      Tucson, AZ Metro Area
107              Los Angeles-Long Beach-Anaheim, CA Metro Area
108              Los Angeles-Long Beach-Anaheim, CA Metro Area
109              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
110                       Greensboro-High Point, NC Metro Area
111                            Cleveland-Elyria, OH Metro Area
112                       Grand Rapids-Kentwood, MI Metro Area
113     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
114              Los Angeles-Long Beach-Anaheim, CA Metro Area
115            Houston-The Woodlands-Sugar Land, TX Metro Area
116                           Kalamazoo-Portage, MI Metro Area
117           New York-Newark-Jersey City, NY-NJ-PA Metro Area
118           New York-Newark-Jersey City, NY-NJ-PA Metro Area
119                      Denver-Aurora-Lakewood, CO Metro Area
120                                        Hilo, HI Micro Area
121           New York-Newark-Jersey City, NY-NJ-PA Metro Area
122           New York-Newark-Jersey City, NY-NJ-PA Metro Area
123           New York-Newark-Jersey City, NY-NJ-PA Metro Area
124           New York-Newark-Jersey City, NY-NJ-PA Metro Area
125           New York-Newark-Jersey City, NY-NJ-PA Metro Area
126                                       Kapaa, HI Micro Area
127                              Salt Lake City, UT Metro Area
128              Los Angeles-Long Beach-Anaheim, CA Metro Area
129                      Spokane-Spokane Valley, WA Metro Area
130                      Spokane-Spokane Valley, WA Metro Area
131                                  Jackson, WY-ID Micro Area
132              San Francisco-Oakland-Berkeley, CA Metro Area
133                            Colorado Springs, CO Metro Area
134           New York-Newark-Jersey City, NY-NJ-PA Metro Area
135           New York-Newark-Jersey City, NY-NJ-PA Metro Area
136                                        Reno, NV Metro Area
137                                  Boise City, ID Metro Area
138                                Jacksonville, NC Metro Area
139                            Cincinnati, OH-KY-IN Metro Area
140                                    Syracuse, NY Metro Area
141                            Cleveland-Elyria, OH Metro Area
142             Tampa-St. Petersburg-Clearwater, FL Metro Area
143                                    Syracuse, NY Metro Area
144                Las Vegas-Henderson-Paradise, NV Metro Area
145                                   Duluth, MN-WI Metro Area
146           Hartford-East Hartford-Middletown, CT Metro Area
147           New York-Newark-Jersey City, NY-NJ-PA Metro Area
148                Austin-Round Rock-Georgetown, TX Metro Area
149                Las Vegas-Henderson-Paradise, NV Metro Area
150                  Augusta-Richmond County, GA-SC Metro Area
151                                    Richmond, VA Metro Area
152                   San Antonio-New Braunfels, TX Metro Area
153              Los Angeles-Long Beach-Anaheim, CA Metro Area
154           New York-Newark-Jersey City, NY-NJ-PA Metro Area
155                  Boston-Cambridge-Newton, MA-NH Metro Area
156              Los Angeles-Long Beach-Anaheim, CA Metro Area
157           Hartford-East Hartford-Middletown, CT Metro Area
158                         Buffalo-Cheektowaga, NY Metro Area
159           New York-Newark-Jersey City, NY-NJ-PA Metro Area
160                                    Richmond, VA Metro Area
161              Los Angeles-Long Beach-Anaheim, CA Metro Area
162                         Buffalo-Cheektowaga, NY Metro Area
163                                    Richmond, VA Metro Area
164                   Orlando-Kissimmee-Sanford, FL Metro Area
165              Los Angeles-Long Beach-Anaheim, CA Metro Area
166                                   Anchorage, AK Metro Area
167                                   Kalispell, MT Micro Area
168              Los Angeles-Long Beach-Anaheim, CA Metro Area
169                                    Missoula, MT Metro Area
170                                      Hailey, ID Micro Area
171                               Oklahoma City, OK Metro Area
172                       Grand Rapids-Kentwood, MI Metro Area
173              Los Angeles-Long Beach-Anaheim, CA Metro Area
174                       Phoenix-Mesa-Chandler, AZ Metro Area
175              San Diego-Chula Vista-Carlsbad, CA Metro Area
176                     Seattle-Tacoma-Bellevue, WA Metro Area
177           New York-Newark-Jersey City, NY-NJ-PA Metro Area
178                                  Boise City, ID Metro Area
179                      Spokane-Spokane Valley, WA Metro Area
180                       Phoenix-Mesa-Chandler, AZ Metro Area
181              San Francisco-Oakland-Berkeley, CA Metro Area
182                 Sacramento-Roseville-Folsom, CA Metro Area
183           New York-Newark-Jersey City, NY-NJ-PA Metro Area
184           New York-Newark-Jersey City, NY-NJ-PA Metro Area
185           New York-Newark-Jersey City, NY-NJ-PA Metro Area
186                  Boston-Cambridge-Newton, MA-NH Metro Area
187        Little Rock-North Little Rock-Conway, AR Metro Area
188                                 Baton Rouge, LA Metro Area
189             Portland-Vancouver-Hillsboro, OR-WA Metro Area
190                           Lexington-Fayette, KY Metro Area
191                              Urban Honolulu, HI Metro Area
192    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
193                                St. Louis, MO-IL Metro Area
194                   Orlando-Kissimmee-Sanford, FL Metro Area
195                       La Crosse-Onalaska, WI-MN Metro Area
196                   Orlando-Kissimmee-Sanford, FL Metro Area
197                   Orlando-Kissimmee-Sanford, FL Metro Area
198                                   Green Bay, WI Metro Area
199             Tampa-St. Petersburg-Clearwater, FL Metro Area
200                                      Tucson, AZ Metro Area
201                      Denver-Aurora-Lakewood, CO Metro Area
202              San Francisco-Oakland-Berkeley, CA Metro Area
203                                   Knoxville, TN Metro Area
204                                Cedar Rapids, IA Metro Area
205                      Denver-Aurora-Lakewood, CO Metro Area
206                                   Brunswick, GA Metro Area
207                       Cape Coral-Fort Myers, FL Metro Area
208                                 Spartanburg, SC Metro Area
209    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
210         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
211   Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
212                                    Savannah, GA Metro Area
213                                       Tulsa, OK Metro Area
214         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
215         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
216         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
217         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
218         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
219         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
220                 Dallas-Fort Worth-Arlington, TX Metro Area
221         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
222                       Cape Coral-Fort Myers, FL Metro Area
223         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
224         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
225         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
226                     Portland-South Portland, ME Metro Area
227         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
228         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
229         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
230         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
231         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
232         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
233         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
234         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
235         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
236         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
237                        Lansing-East Lansing, MI Metro Area
238                        New Orleans-Metairie, LA Metro Area
239                        New Orleans-Metairie, LA Metro Area
240              Los Angeles-Long Beach-Anaheim, CA Metro Area
241                           Birmingham-Hoover, AL Metro Area
242               Charlotte-Concord-Gastonia, NC-SC Metro Area
243                                Raleigh-Cary, NC Metro Area
244              San Francisco-Oakland-Berkeley, CA Metro Area
245                  Pensacola-Ferry Pass-Brent, FL Metro Area
246                   Orlando-Kissimmee-Sanford, FL Metro Area
247            Riverside-San Bernardino-Ontario, CA Metro Area
248                 Hilton Head Island-Bluffton, SC Metro Area
249              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
250              Louisville/Jefferson County, KY-IN Metro Area
251                                    Syracuse, NY Metro Area
252              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
253              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
254                                   Duluth, MN-WI Metro Area
255              Los Angeles-Long Beach-Anaheim, CA Metro Area
256                  Des Moines-West Des Moines, IA Metro Area
257                 Charleston-North Charleston, SC Metro Area
258                Indianapolis-Carmel-Anderson, IN Metro Area
259            Riverside-San Bernardino-Ontario, CA Metro Area
260                  Boston-Cambridge-Newton, MA-NH Metro Area
261                              Kansas City, MO-KS Metro Area
262                                 Albuquerque, NM Metro Area
263                                        Reno, NV Metro Area
264                                 Albuquerque, NM Metro Area
265         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
266     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
267                                   Rochester, MN Metro Area
268                     Portland-South Portland, ME Metro Area
269                  Boston-Cambridge-Newton, MA-NH Metro Area
270                     South Bend-Mishawaka, IN-MI Metro Area
271  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
272    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
273                Las Vegas-Henderson-Paradise, NV Metro Area
274                                Raleigh-Cary, NC Metro Area
275                                Raleigh-Cary, NC Metro Area
276                                Raleigh-Cary, NC Metro Area
277                                Raleigh-Cary, NC Metro Area
278              San Francisco-Oakland-Berkeley, CA Metro Area
279                                Raleigh-Cary, NC Metro Area
280                                Raleigh-Cary, NC Metro Area
281                 Dallas-Fort Worth-Arlington, TX Metro Area
282                 Burlington-South Burlington, VT Metro Area
283                       Cape Coral-Fort Myers, FL Metro Area
284                                   Green Bay, WI Metro Area
285              San Diego-Chula Vista-Carlsbad, CA Metro Area
286                   Orlando-Kissimmee-Sanford, FL Metro Area
287             Tampa-St. Petersburg-Clearwater, FL Metro Area
288                                Fayetteville, NC Metro Area
289                     Seattle-Tacoma-Bellevue, WA Metro Area
290                   Baltimore-Columbia-Towson, MD Metro Area
291    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
292                     Seattle-Tacoma-Bellevue, WA Metro Area
293                     Seattle-Tacoma-Bellevue, WA Metro Area
294                          Milwaukee-Waukesha, WI Metro Area
295                     Seattle-Tacoma-Bellevue, WA Metro Area
296                     Seattle-Tacoma-Bellevue, WA Metro Area
297                                  St. George, UT Metro Area
298                     Seattle-Tacoma-Bellevue, WA Metro Area
299  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
300                            Cincinnati, OH-KY-IN Metro Area
301         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
302                     Detroit-Warren-Dearborn, MI Metro Area
303                     Detroit-Warren-Dearborn, MI Metro Area
304                              Salt Lake City, UT Metro Area
305                              Salt Lake City, UT Metro Area
306                                Cedar Rapids, IA Metro Area
307                          Milwaukee-Waukesha, WI Metro Area
308                                    Columbus, OH Metro Area
309                              Salt Lake City, UT Metro Area
310                              Salt Lake City, UT Metro Area
311                              Salt Lake City, UT Metro Area
312                              Salt Lake City, UT Metro Area
313                              Salt Lake City, UT Metro Area
314           New York-Newark-Jersey City, NY-NJ-PA Metro Area
315                              Salt Lake City, UT Metro Area
316                              Salt Lake City, UT Metro Area
317                              Salt Lake City, UT Metro Area
318                              Salt Lake City, UT Metro Area
319                              Salt Lake City, UT Metro Area
320  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
321         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
322                              Chattanooga, TN-GA Metro Area
323                       Grand Rapids-Kentwood, MI Metro Area
324                          Eugene-Springfield, OR Metro Area
325                                        Bend, OR Metro Area
326              Louisville/Jefferson County, KY-IN Metro Area
327                                St. Louis, MO-IL Metro Area
328                      Spokane-Spokane Valley, WA Metro Area
329                                   Green Bay, WI Metro Area
330                                 Sioux Falls, SD Metro Area
331                                     Saginaw, MI Metro Area
332                Las Vegas-Henderson-Paradise, NV Metro Area
333             Tampa-St. Petersburg-Clearwater, FL Metro Area
334             Tampa-St. Petersburg-Clearwater, FL Metro Area
335             Tampa-St. Petersburg-Clearwater, FL Metro Area
336            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
337            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
338                Austin-Round Rock-Georgetown, TX Metro Area
339                   Baltimore-Columbia-Towson, MD Metro Area
340                            Cleveland-Elyria, OH Metro Area
341              San Diego-Chula Vista-Carlsbad, CA Metro Area
342            Riverside-San Bernardino-Ontario, CA Metro Area
343               Charlotte-Concord-Gastonia, NC-SC Metro Area
344                      Denver-Aurora-Lakewood, CO Metro Area
345                      Denver-Aurora-Lakewood, CO Metro Area
346           New York-Newark-Jersey City, NY-NJ-PA Metro Area
347                Las Vegas-Henderson-Paradise, NV Metro Area
348                   Orlando-Kissimmee-Sanford, FL Metro Area
349            Riverside-San Bernardino-Ontario, CA Metro Area
350                               Memphis, TN-MS-AR Metro Area
351         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
352             Portland-Vancouver-Hillsboro, OR-WA Metro Area
353     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
354     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
355     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
356                       Phoenix-Mesa-Chandler, AZ Metro Area
357                                Raleigh-Cary, NC Metro Area
358              San Diego-Chula Vista-Carlsbad, CA Metro Area
359                   San Antonio-New Braunfels, TX Metro Area
360                     San Juan-Bayamón-Caguas, PR Metro Area
361           New York-Newark-Jersey City, NY-NJ-PA Metro Area
362               Charlotte-Concord-Gastonia, NC-SC Metro Area
363               Charlotte-Concord-Gastonia, NC-SC Metro Area
364                              Urban Honolulu, HI Metro Area
365                Las Vegas-Henderson-Paradise, NV Metro Area
366                       Phoenix-Mesa-Chandler, AZ Metro Area
367         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
368            Houston-The Woodlands-Sugar Land, TX Metro Area
369           New York-Newark-Jersey City, NY-NJ-PA Metro Area
370                      Denver-Aurora-Lakewood, CO Metro Area
371           New York-Newark-Jersey City, NY-NJ-PA Metro Area
372           New York-Newark-Jersey City, NY-NJ-PA Metro Area
373           New York-Newark-Jersey City, NY-NJ-PA Metro Area
374                                   Asheville, NC Metro Area
375                       Greensboro-High Point, NC Metro Area
376                                 Springfield, IL Metro Area
377    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
378    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
379                                   Knoxville, TN Metro Area
380                       Cape Coral-Fort Myers, FL Metro Area
381            Houston-The Woodlands-Sugar Land, TX Metro Area
382              San Francisco-Oakland-Berkeley, CA Metro Area
383  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
384              San Francisco-Oakland-Berkeley, CA Metro Area
385              San Francisco-Oakland-Berkeley, CA Metro Area
386             Tampa-St. Petersburg-Clearwater, FL Metro Area
387                                Jacksonville, FL Metro Area
388                     Seattle-Tacoma-Bellevue, WA Metro Area
389                                   Rochester, NY Metro Area
390                     Seattle-Tacoma-Bellevue, WA Metro Area
391                                St. Louis, MO-IL Metro Area
392                                    Syracuse, NY Metro Area
393                Indianapolis-Carmel-Anderson, IN Metro Area
394                       Phoenix-Mesa-Chandler, AZ Metro Area
395        Little Rock-North Little Rock-Conway, AR Metro Area
396           New York-Newark-Jersey City, NY-NJ-PA Metro Area
397                                   Knoxville, TN Metro Area
398                                  Pittsburgh, PA Metro Area
399           Hartford-East Hartford-Middletown, CT Metro Area
400                                                       <NA>
401                   Orlando-Kissimmee-Sanford, FL Metro Area
402                Austin-Round Rock-Georgetown, TX Metro Area
403                Austin-Round Rock-Georgetown, TX Metro Area
404                Austin-Round Rock-Georgetown, TX Metro Area
405              Louisville/Jefferson County, KY-IN Metro Area
406                Las Vegas-Henderson-Paradise, NV Metro Area
407            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
408                                    Syracuse, NY Metro Area
409                  Boston-Cambridge-Newton, MA-NH Metro Area
410                                    Fargo, ND-MN Metro Area
411           New York-Newark-Jersey City, NY-NJ-PA Metro Area
412              Los Angeles-Long Beach-Anaheim, CA Metro Area
413                               Oklahoma City, OK Metro Area
414                                      Fresno, CA Metro Area
415              Fayetteville-Springdale-Rogers, AR Metro Area
416             Portland-Vancouver-Hillsboro, OR-WA Metro Area
417                   Orlando-Kissimmee-Sanford, FL Metro Area
418                            Cincinnati, OH-KY-IN Metro Area
419                   Orlando-Kissimmee-Sanford, FL Metro Area
420             Tampa-St. Petersburg-Clearwater, FL Metro Area
421                            Cincinnati, OH-KY-IN Metro Area
422                                     Wichita, KS Metro Area
423                                      Monroe, LA Metro Area
424    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
425    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
426                 Dallas-Fort Worth-Arlington, TX Metro Area
427                 Dallas-Fort Worth-Arlington, TX Metro Area
428                           Birmingham-Hoover, AL Metro Area
429              San Jose-Sunnyvale-Santa Clara, CA Metro Area
430                   Orlando-Kissimmee-Sanford, FL Metro Area
431         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
432                                    Richmond, VA Metro Area
433                                       Tulsa, OK Metro Area
434              Los Angeles-Long Beach-Anaheim, CA Metro Area
435                       Phoenix-Mesa-Chandler, AZ Metro Area
436         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
437                            Colorado Springs, CO Metro Area
438                      Spokane-Spokane Valley, WA Metro Area
439                                 Garden City, KS Micro Area
440                                   Lynchburg, VA Metro Area
441              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
442                                      Bangor, ME Metro Area
443                                Jacksonville, FL Metro Area
444                                 Sioux Falls, SD Metro Area
445              Louisville/Jefferson County, KY-IN Metro Area
446                                    Syracuse, NY Metro Area
447                Austin-Round Rock-Georgetown, TX Metro Area
448            Riverside-San Bernardino-Ontario, CA Metro Area
449                                   Lafayette, LA Metro Area
450    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
451                Austin-Round Rock-Georgetown, TX Metro Area
452              San Jose-Sunnyvale-Santa Clara, CA Metro Area
453                              Kansas City, MO-KS Metro Area
454         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
455  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
456                            Cleveland-Elyria, OH Metro Area
457                              Kansas City, MO-KS Metro Area
458                                  Fort Wayne, IN Metro Area
459                        New Orleans-Metairie, LA Metro Area
460                                    Columbia, SC Metro Area
461                           Lexington-Fayette, KY Metro Area
462              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
463              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
464              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
465                                        Reno, NV Metro Area
466                       Grand Rapids-Kentwood, MI Metro Area
467              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
468              Fayetteville-Springdale-Rogers, AR Metro Area
469              Los Angeles-Long Beach-Anaheim, CA Metro Area
470                                    Key West, FL Micro Area
471              Louisville/Jefferson County, KY-IN Metro Area
472            Houston-The Woodlands-Sugar Land, TX Metro Area
473                  Augusta-Richmond County, GA-SC Metro Area
474                                Raleigh-Cary, NC Metro Area
475                        New Orleans-Metairie, LA Metro Area
476                                 Albuquerque, NM Metro Area
477            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
478                        Lansing-East Lansing, MI Metro Area
479                      Denver-Aurora-Lakewood, CO Metro Area
480                Las Vegas-Henderson-Paradise, NV Metro Area
481                     Seattle-Tacoma-Bellevue, WA Metro Area
482                     Atlantic City-Hammonton, NJ Metro Area
483                     Atlantic City-Hammonton, NJ Metro Area
484                     Atlantic City-Hammonton, NJ Metro Area
485            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
486                Austin-Round Rock-Georgetown, TX Metro Area
487            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
488              Los Angeles-Long Beach-Anaheim, CA Metro Area
489            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
490            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
491           Hartford-East Hartford-Middletown, CT Metro Area
492  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
493  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
494  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
495  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
496                  Boston-Cambridge-Newton, MA-NH Metro Area
497                  Boston-Cambridge-Newton, MA-NH Metro Area
498                  Boston-Cambridge-Newton, MA-NH Metro Area
499                  Boston-Cambridge-Newton, MA-NH Metro Area
500                  Boston-Cambridge-Newton, MA-NH Metro Area
501              Los Angeles-Long Beach-Anaheim, CA Metro Area
502                   Baltimore-Columbia-Towson, MD Metro Area
503                      Denver-Aurora-Lakewood, CO Metro Area
504                   Baltimore-Columbia-Towson, MD Metro Area
505                   Baltimore-Columbia-Towson, MD Metro Area
506                   Baltimore-Columbia-Towson, MD Metro Area
507                   Baltimore-Columbia-Towson, MD Metro Area
508                            Cleveland-Elyria, OH Metro Area
509                   Orlando-Kissimmee-Sanford, FL Metro Area
510                            Cleveland-Elyria, OH Metro Area
511                            Cleveland-Elyria, OH Metro Area
512            Houston-The Woodlands-Sugar Land, TX Metro Area
513               Charlotte-Concord-Gastonia, NC-SC Metro Area
514                                    Columbus, OH Metro Area
515                   Baltimore-Columbia-Towson, MD Metro Area
516                 Dallas-Fort Worth-Arlington, TX Metro Area
517                 Dallas-Fort Worth-Arlington, TX Metro Area
518                 Dallas-Fort Worth-Arlington, TX Metro Area
519                 Dallas-Fort Worth-Arlington, TX Metro Area
520              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
521                     Detroit-Warren-Dearborn, MI Metro Area
522           New York-Newark-Jersey City, NY-NJ-PA Metro Area
523           New York-Newark-Jersey City, NY-NJ-PA Metro Area
524           New York-Newark-Jersey City, NY-NJ-PA Metro Area
525           New York-Newark-Jersey City, NY-NJ-PA Metro Area
526           New York-Newark-Jersey City, NY-NJ-PA Metro Area
527         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
528         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
529         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
530         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
531         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
532         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
533         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
534         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
535            Houston-The Woodlands-Sugar Land, TX Metro Area
536            Houston-The Woodlands-Sugar Land, TX Metro Area
537                Indianapolis-Carmel-Anderson, IN Metro Area
538                Indianapolis-Carmel-Anderson, IN Metro Area
539                Indianapolis-Carmel-Anderson, IN Metro Area
540                Las Vegas-Henderson-Paradise, NV Metro Area
541                Las Vegas-Henderson-Paradise, NV Metro Area
542            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
543                       Greensboro-High Point, NC Metro Area
544                Las Vegas-Henderson-Paradise, NV Metro Area
545                Las Vegas-Henderson-Paradise, NV Metro Area
546                Las Vegas-Henderson-Paradise, NV Metro Area
547              Los Angeles-Long Beach-Anaheim, CA Metro Area
548              Los Angeles-Long Beach-Anaheim, CA Metro Area
549             Tampa-St. Petersburg-Clearwater, FL Metro Area
550              Los Angeles-Long Beach-Anaheim, CA Metro Area
551              Los Angeles-Long Beach-Anaheim, CA Metro Area
552                                  Pittsburgh, PA Metro Area
553                                  Pittsburgh, PA Metro Area
554                              Kansas City, MO-KS Metro Area
555                              Kansas City, MO-KS Metro Area
556                   Orlando-Kissimmee-Sanford, FL Metro Area
557                   Orlando-Kissimmee-Sanford, FL Metro Area
558                   Orlando-Kissimmee-Sanford, FL Metro Area
559              San Francisco-Oakland-Berkeley, CA Metro Area
560                   Orlando-Kissimmee-Sanford, FL Metro Area
561                   Orlando-Kissimmee-Sanford, FL Metro Area
562                          Milwaukee-Waukesha, WI Metro Area
563     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
564                        New Orleans-Metairie, LA Metro Area
565           New York-Newark-Jersey City, NY-NJ-PA Metro Area
566              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
567              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
568              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
569              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
570                                  Pittsburgh, PA Metro Area
571                                  Pittsburgh, PA Metro Area
572                                  Pittsburgh, PA Metro Area
573              San Diego-Chula Vista-Carlsbad, CA Metro Area
574                     San Juan-Bayamón-Caguas, PR Metro Area
575                                St. Louis, MO-IL Metro Area
576            Houston-The Woodlands-Sugar Land, TX Metro Area
577             Tampa-St. Petersburg-Clearwater, FL Metro Area
578             Tampa-St. Petersburg-Clearwater, FL Metro Area
579             Tampa-St. Petersburg-Clearwater, FL Metro Area
580             Tampa-St. Petersburg-Clearwater, FL Metro Area
581               North Port-Sarasota-Bradenton, FL Metro Area
582              Louisville/Jefferson County, KY-IN Metro Area
583          Crestview-Fort Walton Beach-Destin, FL Metro Area
584                Las Vegas-Henderson-Paradise, NV Metro Area
585                       Phoenix-Mesa-Chandler, AZ Metro Area
586                     Albany-Schenectady-Troy, NY Metro Area
587                Las Vegas-Henderson-Paradise, NV Metro Area
588           New York-Newark-Jersey City, NY-NJ-PA Metro Area
589         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
590     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
591         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
592  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
593           New York-Newark-Jersey City, NY-NJ-PA Metro Area
594           New York-Newark-Jersey City, NY-NJ-PA Metro Area
595             Tampa-St. Petersburg-Clearwater, FL Metro Area
596          Crestview-Fort Walton Beach-Destin, FL Metro Area
597                                St. Louis, MO-IL Metro Area
598                   San Antonio-New Braunfels, TX Metro Area
599                 Charleston-North Charleston, SC Metro Area
600                   Baltimore-Columbia-Towson, MD Metro Area
601               Charlotte-Concord-Gastonia, NC-SC Metro Area
602               Charlotte-Concord-Gastonia, NC-SC Metro Area
603               Charlotte-Concord-Gastonia, NC-SC Metro Area
604               Charlotte-Concord-Gastonia, NC-SC Metro Area
605               Charlotte-Concord-Gastonia, NC-SC Metro Area
606         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
607                               Oklahoma City, OK Metro Area
608                   Orlando-Kissimmee-Sanford, FL Metro Area
609                Indianapolis-Carmel-Anderson, IN Metro Area
610                               Memphis, TN-MS-AR Metro Area
611                       Phoenix-Mesa-Chandler, AZ Metro Area
612                                       Akron, OH Metro Area
613                            Cleveland-Elyria, OH Metro Area
614                            Dayton-Kettering, OH Metro Area
615                Austin-Round Rock-Georgetown, TX Metro Area
616    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
617    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
618    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
619              San Francisco-Oakland-Berkeley, CA Metro Area
620                 Dallas-Fort Worth-Arlington, TX Metro Area
621    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
622           New York-Newark-Jersey City, NY-NJ-PA Metro Area
623                       Providence-Warwick, RI-MA Metro Area
624            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
625                     Detroit-Warren-Dearborn, MI Metro Area
626                     Portland-South Portland, ME Metro Area
627                                    Savannah, GA Metro Area
628        Little Rock-North Little Rock-Conway, AR Metro Area
629               Palm Bay-Melbourne-Titusville, FL Metro Area
630                     Detroit-Warren-Dearborn, MI Metro Area
631                              Kansas City, MO-KS Metro Area
632              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
633                          Milwaukee-Waukesha, WI Metro Area
634                                       Flint, MI Metro Area
635                            Dayton-Kettering, OH Metro Area
636                  Boston-Cambridge-Newton, MA-NH Metro Area
637                                  Pittsburgh, PA Metro Area
638                 Dallas-Fort Worth-Arlington, TX Metro Area
639                     Omaha-Council Bluffs, NE-IA Metro Area
640           New York-Newark-Jersey City, NY-NJ-PA Metro Area
641         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
642            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
643                       Cape Coral-Fort Myers, FL Metro Area
644                         Buffalo-Cheektowaga, NY Metro Area
645                                  Pittsburgh, PA Metro Area
646               Allentown-Bethlehem-Easton, PA-NJ Metro Area
647      Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
648      Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
649                                Jacksonville, FL Metro Area
650                                Jacksonville, FL Metro Area
651                           Manchester-Nashua, NH Metro Area
652                  Boston-Cambridge-Newton, MA-NH Metro Area
653                                Jacksonville, FL Metro Area
654                                   Asheville, NC Metro Area
655                                Raleigh-Cary, NC Metro Area
656                                Fayetteville, NC Metro Area
657                                Jacksonville, NC Metro Area
658                         Harrisburg-Carlisle, PA Metro Area
659         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
660                 Charleston-North Charleston, SC Metro Area
661            Houston-The Woodlands-Sugar Land, TX Metro Area
662                  Des Moines-West Des Moines, IA Metro Area
663                                 Spartanburg, SC Metro Area
664                     Portland-South Portland, ME Metro Area
665                        New Orleans-Metairie, LA Metro Area
666                                     Jackson, MS Metro Area
667                        New Orleans-Metairie, LA Metro Area
668                           Lexington-Fayette, KY Metro Area
669     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
670     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
671                           Birmingham-Hoover, AL Metro Area
672     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
673     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
674     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
675     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
676                      Denver-Aurora-Lakewood, CO Metro Area
677              San Diego-Chula Vista-Carlsbad, CA Metro Area
678                     Seattle-Tacoma-Bellevue, WA Metro Area
679                Indianapolis-Carmel-Anderson, IN Metro Area
680           New York-Newark-Jersey City, NY-NJ-PA Metro Area
681              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
682           Hartford-East Hartford-Middletown, CT Metro Area
683                                   Knoxville, TN Metro Area
684                       Providence-Warwick, RI-MA Metro Area
685                                Raleigh-Cary, NC Metro Area
686                                St. Louis, MO-IL Metro Area
687                                    Syracuse, NY Metro Area
688              Louisville/Jefferson County, KY-IN Metro Area
689                                 Albuquerque, NM Metro Area
690            Houston-The Woodlands-Sugar Land, TX Metro Area
691                                     Lincoln, NE Metro Area
692                     Albany-Schenectady-Troy, NY Metro Area
693            Riverside-San Bernardino-Ontario, CA Metro Area
694                            Glenwood Springs, CO Micro Area
695                              Urban Honolulu, HI Metro Area
696                     Seattle-Tacoma-Bellevue, WA Metro Area
697                                 Albuquerque, NM Metro Area
698  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
699                              Kansas City, MO-KS Metro Area
700                                                       <NA>
701                                     Medford, OR Metro Area
702            Riverside-San Bernardino-Ontario, CA Metro Area
703                   Santa Maria-Santa Barbara, CA Metro Area
704              Los Angeles-Long Beach-Anaheim, CA Metro Area
705                                  Boise City, ID Metro Area
706                                  Boise City, ID Metro Area
707                                  Boise City, ID Metro Area
708            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
709                                  Boise City, ID Metro Area
710                                  Boise City, ID Metro Area
711                                        Hilo, HI Micro Area
712              Los Angeles-Long Beach-Anaheim, CA Metro Area
713                                  Boise City, ID Metro Area
714                         Santa Rosa-Petaluma, CA Metro Area
715              Los Angeles-Long Beach-Anaheim, CA Metro Area
716              Los Angeles-Long Beach-Anaheim, CA Metro Area
717                     Kahului-Wailuku-Lahaina, HI Metro Area
718                                     Bozeman, MT Micro Area
719                   Baltimore-Columbia-Towson, MD Metro Area
720                                     Bozeman, MT Micro Area
721                               Oklahoma City, OK Metro Area
722                              Killeen-Temple, TX Metro Area
723                  Boston-Cambridge-Newton, MA-NH Metro Area
724           New York-Newark-Jersey City, NY-NJ-PA Metro Area
725                            Colorado Springs, CO Metro Area
726              Los Angeles-Long Beach-Anaheim, CA Metro Area
727                 Dallas-Fort Worth-Arlington, TX Metro Area
728                      Denver-Aurora-Lakewood, CO Metro Area
729                      Denver-Aurora-Lakewood, CO Metro Area
730                      Denver-Aurora-Lakewood, CO Metro Area
731                      Denver-Aurora-Lakewood, CO Metro Area
732                      Denver-Aurora-Lakewood, CO Metro Area
733                      Denver-Aurora-Lakewood, CO Metro Area
734                                      Tucson, AZ Metro Area
735                              Salt Lake City, UT Metro Area
736                                  Pittsburgh, PA Metro Area
737                  Des Moines-West Des Moines, IA Metro Area
738                          Kennewick-Richland, WA Metro Area
739                         Harrisburg-Carlisle, PA Metro Area
740                          Eugene-Springfield, OR Metro Area
741                      Denver-Aurora-Lakewood, CO Metro Area
742                                      Fresno, CA Metro Area
743                                      Fresno, CA Metro Area
744                                      Fresno, CA Metro Area
745                                      Fresno, CA Metro Area
746                                        Bend, OR Metro Area
747              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
748                                   Kalispell, MT Micro Area
749              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
750         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
751               North Port-Sarasota-Bradenton, FL Metro Area
752                                Jacksonville, FL Metro Area
753                       Phoenix-Mesa-Chandler, AZ Metro Area
754                      Spokane-Spokane Valley, WA Metro Area
755                      Spokane-Spokane Valley, WA Metro Area
756                  Boston-Cambridge-Newton, MA-NH Metro Area
757  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
758         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
759         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
760              San Jose-Sunnyvale-Santa Clara, CA Metro Area
761               Allentown-Bethlehem-Easton, PA-NJ Metro Area
762                           Steamboat Springs, CO Micro Area
763                              Salt Lake City, UT Metro Area
764                       La Crosse-Onalaska, WI-MN Metro Area
765            Houston-The Woodlands-Sugar Land, TX Metro Area
766            Houston-The Woodlands-Sugar Land, TX Metro Area
767                                   Pocatello, ID Metro Area
768                            Cleveland-Elyria, OH Metro Area
769                                    Fargo, ND-MN Metro Area
770    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
771                                  Pittsburgh, PA Metro Area
772              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
773              Los Angeles-Long Beach-Anaheim, CA Metro Area
774              Los Angeles-Long Beach-Anaheim, CA Metro Area
775              Los Angeles-Long Beach-Anaheim, CA Metro Area
776              Los Angeles-Long Beach-Anaheim, CA Metro Area
777              Los Angeles-Long Beach-Anaheim, CA Metro Area
778              Los Angeles-Long Beach-Anaheim, CA Metro Area
779              Los Angeles-Long Beach-Anaheim, CA Metro Area
780              Los Angeles-Long Beach-Anaheim, CA Metro Area
781                                 Baton Rouge, LA Metro Area
782              San Francisco-Oakland-Berkeley, CA Metro Area
783                Indianapolis-Carmel-Anderson, IN Metro Area
784                           Kalamazoo-Portage, MI Metro Area
785                   San Antonio-New Braunfels, TX Metro Area
786                                     Madison, WI Metro Area
787         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
788              San Diego-Chula Vista-Carlsbad, CA Metro Area
789                          Milwaukee-Waukesha, WI Metro Area
790                Las Vegas-Henderson-Paradise, NV Metro Area
791                          Eugene-Springfield, OR Metro Area
792                                     Salinas, CA Metro Area
793                                     Madison, WI Metro Area
794         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
795         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
796                                 Great Falls, MT Metro Area
797                                   Green Bay, WI Metro Area
798              San Francisco-Oakland-Berkeley, CA Metro Area
799                                     Roswell, NM Micro Area
800                     Kahului-Wailuku-Lahaina, HI Metro Area
801                      Scranton--Wilkes-Barre, PA Metro Area
802           New York-Newark-Jersey City, NY-NJ-PA Metro Area
803                                Jacksonville, FL Metro Area
804                     Omaha-Council Bluffs, NE-IA Metro Area
805                       Providence-Warwick, RI-MA Metro Area
806                            Sault Ste. Marie, MI Micro Area
807            Riverside-San Bernardino-Ontario, CA Metro Area
808                   San Antonio-New Braunfels, TX Metro Area
809            Riverside-San Bernardino-Ontario, CA Metro Area
810         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
811              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
812              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
813              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
814              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
815                      Denver-Aurora-Lakewood, CO Metro Area
816             Portland-Vancouver-Hillsboro, OR-WA Metro Area
817             Portland-Vancouver-Hillsboro, OR-WA Metro Area
818             Portland-Vancouver-Hillsboro, OR-WA Metro Area
819             Portland-Vancouver-Hillsboro, OR-WA Metro Area
820             Portland-Vancouver-Hillsboro, OR-WA Metro Area
821             Portland-Vancouver-Hillsboro, OR-WA Metro Area
822             Portland-Vancouver-Hillsboro, OR-WA Metro Area
823             Portland-Vancouver-Hillsboro, OR-WA Metro Area
824                              Kansas City, MO-KS Metro Area
825                                        Hilo, HI Micro Area
826                       Phoenix-Mesa-Chandler, AZ Metro Area
827                       Phoenix-Mesa-Chandler, AZ Metro Area
828                                  Pittsburgh, PA Metro Area
829                          Milwaukee-Waukesha, WI Metro Area
830                Las Vegas-Henderson-Paradise, NV Metro Area
831                                        Bend, OR Metro Area
832            Riverside-San Bernardino-Ontario, CA Metro Area
833                                  Boise City, ID Metro Area
834                                     Madison, WI Metro Area
835                                  Rapid City, SD Metro Area
836                               Memphis, TN-MS-AR Metro Area
837            Riverside-San Bernardino-Ontario, CA Metro Area
838                                      Helena, MT Micro Area
839                                    Appleton, WI Metro Area
840               Charlotte-Concord-Gastonia, NC-SC Metro Area
841                                    Richmond, VA Metro Area
842                                        Reno, NV Metro Area
843                 Sacramento-Roseville-Folsom, CA Metro Area
844              San Diego-Chula Vista-Carlsbad, CA Metro Area
845              San Diego-Chula Vista-Carlsbad, CA Metro Area
846              San Diego-Chula Vista-Carlsbad, CA Metro Area
847              San Diego-Chula Vista-Carlsbad, CA Metro Area
848              San Diego-Chula Vista-Carlsbad, CA Metro Area
849              San Diego-Chula Vista-Carlsbad, CA Metro Area
850              San Diego-Chula Vista-Carlsbad, CA Metro Area
851                                     Salinas, CA Metro Area
852                    Prescott Valley-Prescott, AZ Metro Area
853                 San Luis Obispo-Paso Robles, CA Metro Area
854                Las Vegas-Henderson-Paradise, NV Metro Area
855                   Santa Maria-Santa Barbara, CA Metro Area
856                                St. Louis, MO-IL Metro Area
857                 San Luis Obispo-Paso Robles, CA Metro Area
858                Las Vegas-Henderson-Paradise, NV Metro Area
859         Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
860                     Seattle-Tacoma-Bellevue, WA Metro Area
861                     Seattle-Tacoma-Bellevue, WA Metro Area
862                     Seattle-Tacoma-Bellevue, WA Metro Area
863                     Seattle-Tacoma-Bellevue, WA Metro Area
864              San Francisco-Oakland-Berkeley, CA Metro Area
865              San Francisco-Oakland-Berkeley, CA Metro Area
866              San Francisco-Oakland-Berkeley, CA Metro Area
867              San Francisco-Oakland-Berkeley, CA Metro Area
868              San Francisco-Oakland-Berkeley, CA Metro Area
869              San Francisco-Oakland-Berkeley, CA Metro Area
870              San Francisco-Oakland-Berkeley, CA Metro Area
871              San Francisco-Oakland-Berkeley, CA Metro Area
872              San Jose-Sunnyvale-Santa Clara, CA Metro Area
873              San Jose-Sunnyvale-Santa Clara, CA Metro Area
874              San Jose-Sunnyvale-Santa Clara, CA Metro Area
875              San Jose-Sunnyvale-Santa Clara, CA Metro Area
876              San Jose-Sunnyvale-Santa Clara, CA Metro Area
877                     Detroit-Warren-Dearborn, MI Metro Area
878                                      Tucson, AZ Metro Area
879                                        Hilo, HI Micro Area
880                              Salt Lake City, UT Metro Area
881                                     Durango, CO Micro Area
882                   Orlando-Kissimmee-Sanford, FL Metro Area
883                                 Bakersfield, CA Metro Area
884                 San Luis Obispo-Paso Robles, CA Metro Area
885                              Urban Honolulu, HI Metro Area
886                 Sacramento-Roseville-Folsom, CA Metro Area
887                 Sacramento-Roseville-Folsom, CA Metro Area
888                 Sacramento-Roseville-Folsom, CA Metro Area
889                              Urban Honolulu, HI Metro Area
890                                        Bend, OR Metro Area
891                     Seattle-Tacoma-Bellevue, WA Metro Area
892              Los Angeles-Long Beach-Anaheim, CA Metro Area
893                           Birmingham-Hoover, AL Metro Area
894                     South Bend-Mishawaka, IN-MI Metro Area
895                 Dallas-Fort Worth-Arlington, TX Metro Area
896                         Santa Rosa-Petaluma, CA Metro Area
897                         Santa Rosa-Petaluma, CA Metro Area
898                         Santa Rosa-Petaluma, CA Metro Area
899                     Omaha-Council Bluffs, NE-IA Metro Area
900                     Omaha-Council Bluffs, NE-IA Metro Area
901                                   Anchorage, AK Metro Area
902                                      Tucson, AZ Metro Area
903    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
904              Los Angeles-Long Beach-Anaheim, CA Metro Area
905                                 Albuquerque, NM Metro Area
906                                    Billings, MT Metro Area
907              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
908                                  Boise City, ID Metro Area
909                                  Boise City, ID Metro Area
910                                  Boise City, ID Metro Area
911                                     Bozeman, MT Micro Area
912                          Kennewick-Richland, WA Metro Area
913                     Detroit-Warren-Dearborn, MI Metro Area
914           New York-Newark-Jersey City, NY-NJ-PA Metro Area
915                        New Orleans-Metairie, LA Metro Area
916                                    Missoula, MT Metro Area
917                                   Kalispell, MT Micro Area
918                      Spokane-Spokane Valley, WA Metro Area
919           New York-Newark-Jersey City, NY-NJ-PA Metro Area
920                   Santa Maria-Santa Barbara, CA Metro Area
921           New York-Newark-Jersey City, NY-NJ-PA Metro Area
922                      Spokane-Spokane Valley, WA Metro Area
923                                     Medford, OR Metro Area
924                                      Helena, MT Micro Area
925                                 Idaho Falls, ID Metro Area
926              Los Angeles-Long Beach-Anaheim, CA Metro Area
927                                     Medford, OR Metro Area
928                                     Medford, OR Metro Area
929              San Francisco-Oakland-Berkeley, CA Metro Area
930                     Seattle-Tacoma-Bellevue, WA Metro Area
931                     Seattle-Tacoma-Bellevue, WA Metro Area
932                     Seattle-Tacoma-Bellevue, WA Metro Area
933                     Seattle-Tacoma-Bellevue, WA Metro Area
934             Portland-Vancouver-Hillsboro, OR-WA Metro Area
935             Portland-Vancouver-Hillsboro, OR-WA Metro Area
936            Riverside-San Bernardino-Ontario, CA Metro Area
937                                     El Paso, TX Metro Area
938                                     Pullman, WA Micro Area
939                                        Bend, OR Metro Area
940              San Diego-Chula Vista-Carlsbad, CA Metro Area
941                   Santa Maria-Santa Barbara, CA Metro Area
942                     Seattle-Tacoma-Bellevue, WA Metro Area
943                     Seattle-Tacoma-Bellevue, WA Metro Area
944                     Seattle-Tacoma-Bellevue, WA Metro Area
945                     Seattle-Tacoma-Bellevue, WA Metro Area
946                     Seattle-Tacoma-Bellevue, WA Metro Area
947                     Seattle-Tacoma-Bellevue, WA Metro Area
948                     Seattle-Tacoma-Bellevue, WA Metro Area
949                     Seattle-Tacoma-Bellevue, WA Metro Area
950                     Seattle-Tacoma-Bellevue, WA Metro Area
951                     Seattle-Tacoma-Bellevue, WA Metro Area
952                     Seattle-Tacoma-Bellevue, WA Metro Area
953                     Seattle-Tacoma-Bellevue, WA Metro Area
954                     Seattle-Tacoma-Bellevue, WA Metro Area
955                     Seattle-Tacoma-Bellevue, WA Metro Area
956                     Seattle-Tacoma-Bellevue, WA Metro Area
957              San Francisco-Oakland-Berkeley, CA Metro Area
958              San Jose-Sunnyvale-Santa Clara, CA Metro Area
959              Los Angeles-Long Beach-Anaheim, CA Metro Area
960                         Santa Rosa-Petaluma, CA Metro Area
961                      Denver-Aurora-Lakewood, CO Metro Area
962                Austin-Round Rock-Georgetown, TX Metro Area
963           Hartford-East Hartford-Middletown, CT Metro Area
964     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
965                                   Kalispell, MT Micro Area
966                                    Missoula, MT Metro Area
967            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
968                                                       <NA>
969                                    Appleton, WI Metro Area
970                      Denver-Aurora-Lakewood, CO Metro Area
971                Austin-Round Rock-Georgetown, TX Metro Area
972                     Omaha-Council Bluffs, NE-IA Metro Area
973                Austin-Round Rock-Georgetown, TX Metro Area
974                                    Meridian, MS Micro Area
975                     Seattle-Tacoma-Bellevue, WA Metro Area
976              Los Angeles-Long Beach-Anaheim, CA Metro Area
977           New York-Newark-Jersey City, NY-NJ-PA Metro Area
978              Los Angeles-Long Beach-Anaheim, CA Metro Area
979                Austin-Round Rock-Georgetown, TX Metro Area
980           Hartford-East Hartford-Middletown, CT Metro Area
981              Los Angeles-Long Beach-Anaheim, CA Metro Area
982                                Raleigh-Cary, NC Metro Area
983                                    Savannah, GA Metro Area
984                       Greensboro-High Point, NC Metro Area
985                           Birmingham-Hoover, AL Metro Area
986                            Cincinnati, OH-KY-IN Metro Area
987            Atlanta-Sandy Springs-Alpharetta, GA Metro Area
988                                  Boise City, ID Metro Area
989                                  Jackson, WY-ID Micro Area
990                                        Bend, OR Metro Area
991                  Boston-Cambridge-Newton, MA-NH Metro Area
992                      Denver-Aurora-Lakewood, CO Metro Area
993                   Orlando-Kissimmee-Sanford, FL Metro Area
994                        New Orleans-Metairie, LA Metro Area
995             Tampa-St. Petersburg-Clearwater, FL Metro Area
996                 Hilton Head Island-Bluffton, SC Metro Area
997                  Boston-Cambridge-Newton, MA-NH Metro Area
998                                       Kapaa, HI Micro Area
999                  Des Moines-West Des Moines, IA Metro Area
1000                                      Kapaa, HI Micro Area
1001                        Buffalo-Cheektowaga, NY Metro Area
1002          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1003                             Urban Honolulu, HI Metro Area
1004                             Urban Honolulu, HI Metro Area
1005                    Kahului-Wailuku-Lahaina, HI Metro Area
1006               Las Vegas-Henderson-Paradise, NV Metro Area
1007                       New Orleans-Metairie, LA Metro Area
1008                                 Pittsburgh, PA Metro Area
1009                                    Saginaw, MI Metro Area
1010                    Portland-South Portland, ME Metro Area
1011                                    Lincoln, NE Metro Area
1012                           Cleveland-Elyria, OH Metro Area
1013                           Cleveland-Elyria, OH Metro Area
1014                      Cape Coral-Fort Myers, FL Metro Area
1015                                       Reno, NV Metro Area
1016                           Colorado Springs, CO Metro Area
1017                                     Salina, KS Micro Area
1018          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1019        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1020                 Boston-Cambridge-Newton, MA-NH Metro Area
1021         Crestview-Fort Walton Beach-Destin, FL Metro Area
1022                     Denver-Aurora-Lakewood, CO Metro Area
1023                  Santa Maria-Santa Barbara, CA Metro Area
1024          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1025                     Denver-Aurora-Lakewood, CO Metro Area
1026   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1027     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1028                                  Duluth, MN-WI Metro Area
1029                     Denver-Aurora-Lakewood, CO Metro Area
1030                     Denver-Aurora-Lakewood, CO Metro Area
1031                     Denver-Aurora-Lakewood, CO Metro Area
1032                     Denver-Aurora-Lakewood, CO Metro Area
1033                Dallas-Fort Worth-Arlington, TX Metro Area
1034                                     Joplin, MO Metro Area
1035           Houston-The Woodlands-Sugar Land, TX Metro Area
1036                     Denver-Aurora-Lakewood, CO Metro Area
1037                      Cape Coral-Fort Myers, FL Metro Area
1038          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1039                           Colorado Springs, CO Metro Area
1040                Sacramento-Roseville-Folsom, CA Metro Area
1041 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1042                           Colorado Springs, CO Metro Area
1043                              Oklahoma City, OK Metro Area
1044          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1045        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1046          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1047                             Salt Lake City, UT Metro Area
1048                                 Jackson, WY-ID Micro Area
1049          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1050          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1051          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1052          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1053          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1054          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1055          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1056          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1057          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1058          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1059          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1060                                Sioux Falls, SD Metro Area
1061             San Francisco-Oakland-Berkeley, CA Metro Area
1062                                                      <NA>
1063        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1064                             Killeen-Temple, TX Metro Area
1065        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1066            Tampa-St. Petersburg-Clearwater, FL Metro Area
1067                  San Antonio-New Braunfels, TX Metro Area
1068                                Spartanburg, SC Metro Area
1069                                 Pittsburgh, PA Metro Area
1070             Louisville/Jefferson County, KY-IN Metro Area
1071              North Port-Sarasota-Bradenton, FL Metro Area
1072                                Panama City, FL Metro Area
1073                       New Orleans-Metairie, LA Metro Area
1074             Louisville/Jefferson County, KY-IN Metro Area
1075                Sacramento-Roseville-Folsom, CA Metro Area
1076                  Baltimore-Columbia-Towson, MD Metro Area
1077                  Orlando-Kissimmee-Sanford, FL Metro Area
1078   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1079   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1080   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1081   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1082   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1083   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1084   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1085   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1086                         Kennewick-Richland, WA Metro Area
1087   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1088                                Albuquerque, NM Metro Area
1089           Houston-The Woodlands-Sugar Land, TX Metro Area
1090           Houston-The Woodlands-Sugar Land, TX Metro Area
1091           Houston-The Woodlands-Sugar Land, TX Metro Area
1092           Houston-The Woodlands-Sugar Land, TX Metro Area
1093                                 Paducah, KY-IL Micro Area
1094           Houston-The Woodlands-Sugar Land, TX Metro Area
1095           Houston-The Woodlands-Sugar Land, TX Metro Area
1096           Houston-The Woodlands-Sugar Land, TX Metro Area
1097                Charleston-North Charleston, SC Metro Area
1098                              Oklahoma City, OK Metro Area
1099   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1100                    Portland-South Portland, ME Metro Area
1101                                  Rochester, NY Metro Area
1102                               Jacksonville, FL Metro Area
1103                  San Antonio-New Braunfels, TX Metro Area
1104          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1105                  Baltimore-Columbia-Towson, MD Metro Area
1106                                   Columbus, OH Metro Area
1107                                   Richmond, VA Metro Area
1108               Las Vegas-Henderson-Paradise, NV Metro Area
1109                                     Bangor, ME Metro Area
1110                          Manchester-Nashua, NH Metro Area
1111 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1112                         Milwaukee-Waukesha, WI Metro Area
1113                           Cleveland-Elyria, OH Metro Area
1114               Indianapolis-Carmel-Anderson, IN Metro Area
1115                  Orlando-Kissimmee-Sanford, FL Metro Area
1116            Tampa-St. Petersburg-Clearwater, FL Metro Area
1117                                   Columbus, OH Metro Area
1118                           Cincinnati, OH-KY-IN Metro Area
1119                                    Madison, WI Metro Area
1120                           Cincinnati, OH-KY-IN Metro Area
1121                    Detroit-Warren-Dearborn, MI Metro Area
1122                           Cincinnati, OH-KY-IN Metro Area
1123                      Cape Coral-Fort Myers, FL Metro Area
1124             Los Angeles-Long Beach-Anaheim, CA Metro Area
1125             Los Angeles-Long Beach-Anaheim, CA Metro Area
1126                    Detroit-Warren-Dearborn, MI Metro Area
1127             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1128            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1129                     Denver-Aurora-Lakewood, CO Metro Area
1130                Sacramento-Roseville-Folsom, CA Metro Area
1131                               Raleigh-Cary, NC Metro Area
1132                  Baltimore-Columbia-Towson, MD Metro Area
1133                    Kahului-Wailuku-Lahaina, HI Metro Area
1134                      Cape Coral-Fort Myers, FL Metro Area
1135     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1136                      Phoenix-Mesa-Chandler, AZ Metro Area
1137             San Diego-Chula Vista-Carlsbad, CA Metro Area
1138                                      Flint, MI Metro Area
1139        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1140                                  Lafayette, LA Metro Area
1141   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1142                          Birmingham-Hoover, AL Metro Area
1143                                   Billings, MT Metro Area
1144                                       Hilo, HI Micro Area
1145                                   Syracuse, NY Metro Area
1146                             Salt Lake City, UT Metro Area
1147                               St. Louis, MO-IL Metro Area
1148          Hartford-East Hartford-Middletown, CT Metro Area
1149               Indianapolis-Carmel-Anderson, IN Metro Area
1150             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1151             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1152             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1153             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1154           Riverside-San Bernardino-Ontario, CA Metro Area
1155             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1156             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1157                     Denver-Aurora-Lakewood, CO Metro Area
1158             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1159             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1160             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1161             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1162             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1163             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1164                                      Kapaa, HI Micro Area
1165                              Memphis, TN-MS-AR Metro Area
1166                                   Columbus, OH Metro Area
1167                               Cedar Rapids, IA Metro Area
1168            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1169   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1170                      Phoenix-Mesa-Chandler, AZ Metro Area
1171                        Buffalo-Cheektowaga, NY Metro Area
1172                             Chattanooga, TN-GA Metro Area
1173                                    Bozeman, MT Micro Area
1174             Louisville/Jefferson County, KY-IN Metro Area
1175 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1176                                     Peoria, IL Metro Area
1177                                    Medford, OR Metro Area
1178                  San Antonio-New Braunfels, TX Metro Area
1179                Dallas-Fort Worth-Arlington, TX Metro Area
1180           Riverside-San Bernardino-Ontario, CA Metro Area
1181            Davenport-Moline-Rock Island, IA-IL Metro Area
1182                Dallas-Fort Worth-Arlington, TX Metro Area
1183                                     Ithaca, NY Metro Area
1184                Burlington-South Burlington, VT Metro Area
1185                               Cedar Rapids, IA Metro Area
1186                           Dayton-Kettering, OH Metro Area
1187             San Francisco-Oakland-Berkeley, CA Metro Area
1188          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1189                      Providence-Warwick, RI-MA Metro Area
1190             San Francisco-Oakland-Berkeley, CA Metro Area
1191                    Portland-South Portland, ME Metro Area
1192    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1193                               St. Louis, MO-IL Metro Area
1194             San Francisco-Oakland-Berkeley, CA Metro Area
1195                      Providence-Warwick, RI-MA Metro Area
1196                                  Rochester, NY Metro Area
1197            Davenport-Moline-Rock Island, IA-IL Metro Area
1198   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1199          Hartford-East Hartford-Middletown, CT Metro Area
1200        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1201            Tampa-St. Petersburg-Clearwater, FL Metro Area
1202                           Cincinnati, OH-KY-IN Metro Area
1203           Riverside-San Bernardino-Ontario, CA Metro Area
1204                                     Tucson, AZ Metro Area
1205                                Panama City, FL Metro Area
1206                                Albuquerque, NM Metro Area
1207                                      Kapaa, HI Micro Area
1208                                Albuquerque, NM Metro Area
1209                                Albuquerque, NM Metro Area
1210                                Albuquerque, NM Metro Area
1211                    Albany-Schenectady-Troy, NY Metro Area
1212                  Orlando-Kissimmee-Sanford, FL Metro Area
1213        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1214                      Cape Coral-Fort Myers, FL Metro Area
1215                      Cape Coral-Fort Myers, FL Metro Area
1216                Sacramento-Roseville-Folsom, CA Metro Area
1217                    Albany-Schenectady-Troy, NY Metro Area
1218                Sacramento-Roseville-Folsom, CA Metro Area
1219                    Albany-Schenectady-Troy, NY Metro Area
1220                                   Amarillo, TX Metro Area
1221                                   Amarillo, TX Metro Area
1222           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1223           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1224                                    El Paso, TX Metro Area
1225               Las Vegas-Henderson-Paradise, NV Metro Area
1226             Los Angeles-Long Beach-Anaheim, CA Metro Area
1227                      Phoenix-Mesa-Chandler, AZ Metro Area
1228           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1229           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1230           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1231           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1232           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1233             Los Angeles-Long Beach-Anaheim, CA Metro Area
1234             San Francisco-Oakland-Berkeley, CA Metro Area
1235                             Salt Lake City, UT Metro Area
1236           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1237           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1238           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1239           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1240           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1241           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1242                                      Tulsa, OK Metro Area
1243           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1244           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1245                    Kahului-Wailuku-Lahaina, HI Metro Area
1246           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1247           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1248           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1249           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1250           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1251                             Urban Honolulu, HI Metro Area
1252           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1253           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1254           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1255           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1256                 Boston-Cambridge-Newton, MA-NH Metro Area
1257          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1258                    Omaha-Council Bluffs, NE-IA Metro Area
1259                                   Savannah, GA Metro Area
1260               Austin-Round Rock-Georgetown, TX Metro Area
1261        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1262                    Omaha-Council Bluffs, NE-IA Metro Area
1263             San Francisco-Oakland-Berkeley, CA Metro Area
1264                    Seattle-Tacoma-Bellevue, WA Metro Area
1265           Riverside-San Bernardino-Ontario, CA Metro Area
1266             San Diego-Chula Vista-Carlsbad, CA Metro Area
1267               Austin-Round Rock-Georgetown, TX Metro Area
1268               Austin-Round Rock-Georgetown, TX Metro Area
1269               Austin-Round Rock-Georgetown, TX Metro Area
1270               Austin-Round Rock-Georgetown, TX Metro Area
1271               Austin-Round Rock-Georgetown, TX Metro Area
1272               Austin-Round Rock-Georgetown, TX Metro Area
1273               Austin-Round Rock-Georgetown, TX Metro Area
1274               Austin-Round Rock-Georgetown, TX Metro Area
1275               Austin-Round Rock-Georgetown, TX Metro Area
1276               Austin-Round Rock-Georgetown, TX Metro Area
1277               Austin-Round Rock-Georgetown, TX Metro Area
1278               Austin-Round Rock-Georgetown, TX Metro Area
1279               Austin-Round Rock-Georgetown, TX Metro Area
1280               Austin-Round Rock-Georgetown, TX Metro Area
1281               Austin-Round Rock-Georgetown, TX Metro Area
1282               Austin-Round Rock-Georgetown, TX Metro Area
1283               Austin-Round Rock-Georgetown, TX Metro Area
1284               Austin-Round Rock-Georgetown, TX Metro Area
1285                      Providence-Warwick, RI-MA Metro Area
1286               Las Vegas-Henderson-Paradise, NV Metro Area
1287           Riverside-San Bernardino-Ontario, CA Metro Area
1288          Hartford-East Hartford-Middletown, CT Metro Area
1289          Hartford-East Hartford-Middletown, CT Metro Area
1290                          Birmingham-Hoover, AL Metro Area
1291                          Birmingham-Hoover, AL Metro Area
1292                          Birmingham-Hoover, AL Metro Area
1293                          Birmingham-Hoover, AL Metro Area
1294                          Birmingham-Hoover, AL Metro Area
1295                          Birmingham-Hoover, AL Metro Area
1296                                 Bellingham, WA Metro Area
1297 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1298 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1299 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1300                                   Montrose, CO Micro Area
1301 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1302 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1303 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1304 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1305 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1306                                       Reno, NV Metro Area
1307 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1308             Los Angeles-Long Beach-Anaheim, CA Metro Area
1309 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1310 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1311 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1312 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1313 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1314 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1315 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1316 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1317 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1318 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1319 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1320 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1321 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1322 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1323 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1324 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1325                             Urban Honolulu, HI Metro Area
1326                    Kahului-Wailuku-Lahaina, HI Metro Area
1327 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1328 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1329 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1330 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1331 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1332 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1333                        Buffalo-Cheektowaga, NY Metro Area
1334        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1335                                 Boise City, ID Metro Area
1336                                 Boise City, ID Metro Area
1337                                 Boise City, ID Metro Area
1338                                 Boise City, ID Metro Area
1339                                       Reno, NV Metro Area
1340                Dallas-Fort Worth-Arlington, TX Metro Area
1341           Houston-The Woodlands-Sugar Land, TX Metro Area
1342                Charleston-North Charleston, SC Metro Area
1343                                Spartanburg, SC Metro Area
1344               Indianapolis-Carmel-Anderson, IN Metro Area
1345                               Jacksonville, FL Metro Area
1346                      Phoenix-Mesa-Chandler, AZ Metro Area
1347                                   Savannah, GA Metro Area
1348                     Denver-Aurora-Lakewood, CO Metro Area
1349             Los Angeles-Long Beach-Anaheim, CA Metro Area
1350        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1351                      Phoenix-Mesa-Chandler, AZ Metro Area
1352             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1353                 Boston-Cambridge-Newton, MA-NH Metro Area
1354              North Port-Sarasota-Bradenton, FL Metro Area
1355                        Buffalo-Cheektowaga, NY Metro Area
1356                        Buffalo-Cheektowaga, NY Metro Area
1357                        Buffalo-Cheektowaga, NY Metro Area
1358             Los Angeles-Long Beach-Anaheim, CA Metro Area
1359                       New Orleans-Metairie, LA Metro Area
1360                               Raleigh-Cary, NC Metro Area
1361            Tampa-St. Petersburg-Clearwater, FL Metro Area
1362                              Oklahoma City, OK Metro Area
1363             Los Angeles-Long Beach-Anaheim, CA Metro Area
1364             Los Angeles-Long Beach-Anaheim, CA Metro Area
1365             Los Angeles-Long Beach-Anaheim, CA Metro Area
1366             Los Angeles-Long Beach-Anaheim, CA Metro Area
1367             Los Angeles-Long Beach-Anaheim, CA Metro Area
1368             Los Angeles-Long Beach-Anaheim, CA Metro Area
1369                  Baltimore-Columbia-Towson, MD Metro Area
1370                  Baltimore-Columbia-Towson, MD Metro Area
1371                    Seattle-Tacoma-Bellevue, WA Metro Area
1372                  Baltimore-Columbia-Towson, MD Metro Area
1373                  Baltimore-Columbia-Towson, MD Metro Area
1374                  Baltimore-Columbia-Towson, MD Metro Area
1375                  Baltimore-Columbia-Towson, MD Metro Area
1376                  Baltimore-Columbia-Towson, MD Metro Area
1377                  Baltimore-Columbia-Towson, MD Metro Area
1378                  Baltimore-Columbia-Towson, MD Metro Area
1379                  Baltimore-Columbia-Towson, MD Metro Area
1380                  Baltimore-Columbia-Towson, MD Metro Area
1381                  Baltimore-Columbia-Towson, MD Metro Area
1382                    San Juan-Bayamón-Caguas, PR Metro Area
1383                  Baltimore-Columbia-Towson, MD Metro Area
1384                  Baltimore-Columbia-Towson, MD Metro Area
1385                  Baltimore-Columbia-Towson, MD Metro Area
1386                                       Hilo, HI Micro Area
1387                  Baltimore-Columbia-Towson, MD Metro Area
1388   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1389                  Baltimore-Columbia-Towson, MD Metro Area
1390                  Baltimore-Columbia-Towson, MD Metro Area
1391                  Baltimore-Columbia-Towson, MD Metro Area
1392                                       Hilo, HI Micro Area
1393                  Baltimore-Columbia-Towson, MD Metro Area
1394                  Baltimore-Columbia-Towson, MD Metro Area
1395                  Baltimore-Columbia-Towson, MD Metro Area
1396                  Baltimore-Columbia-Towson, MD Metro Area
1397                  Baltimore-Columbia-Towson, MD Metro Area
1398                  Baltimore-Columbia-Towson, MD Metro Area
1399                  Baltimore-Columbia-Towson, MD Metro Area
1400                      Cape Coral-Fort Myers, FL Metro Area
1401                                    Bozeman, MT Micro Area
1402                             Kansas City, MO-KS Metro Area
1403                         Milwaukee-Waukesha, WI Metro Area
1404                Charleston-North Charleston, SC Metro Area
1405                           Colorado Springs, CO Metro Area
1406                Charleston-North Charleston, SC Metro Area
1407             Los Angeles-Long Beach-Anaheim, CA Metro Area
1408                      Cape Coral-Fort Myers, FL Metro Area
1409                           Cleveland-Elyria, OH Metro Area
1410                           Cleveland-Elyria, OH Metro Area
1411                             Urban Honolulu, HI Metro Area
1412                           Cleveland-Elyria, OH Metro Area
1413                           Cleveland-Elyria, OH Metro Area
1414                                   Columbus, OH Metro Area
1415                                   Columbus, OH Metro Area
1416                                     Tucson, AZ Metro Area
1417                                   Columbus, OH Metro Area
1418                      Phoenix-Mesa-Chandler, AZ Metro Area
1419                                Panama City, FL Metro Area
1420                                   Columbus, OH Metro Area
1421                                   Columbus, OH Metro Area
1422                                   Columbus, OH Metro Area
1423                                   Columbus, OH Metro Area
1424                                   Columbus, OH Metro Area
1425                                   Columbus, OH Metro Area
1426                  Santa Maria-Santa Barbara, CA Metro Area
1427                           Colorado Springs, CO Metro Area
1428                           Colorado Springs, CO Metro Area
1429                             Corpus Christi, TX Metro Area
1430                      Cape Coral-Fort Myers, FL Metro Area
1431                     Spokane-Spokane Valley, WA Metro Area
1432             San Francisco-Oakland-Berkeley, CA Metro Area
1433                           Cincinnati, OH-KY-IN Metro Area
1434                           Cincinnati, OH-KY-IN Metro Area
1435                           Cincinnati, OH-KY-IN Metro Area
1436            Tampa-St. Petersburg-Clearwater, FL Metro Area
1437                           Cincinnati, OH-KY-IN Metro Area
1438                Dallas-Fort Worth-Arlington, TX Metro Area
1439             Los Angeles-Long Beach-Anaheim, CA Metro Area
1440                Dallas-Fort Worth-Arlington, TX Metro Area
1441             San Francisco-Oakland-Berkeley, CA Metro Area
1442                Dallas-Fort Worth-Arlington, TX Metro Area
1443                Dallas-Fort Worth-Arlington, TX Metro Area
1444                Dallas-Fort Worth-Arlington, TX Metro Area
1445                Dallas-Fort Worth-Arlington, TX Metro Area
1446                Dallas-Fort Worth-Arlington, TX Metro Area
1447                Dallas-Fort Worth-Arlington, TX Metro Area
1448                Dallas-Fort Worth-Arlington, TX Metro Area
1449                Dallas-Fort Worth-Arlington, TX Metro Area
1450                Dallas-Fort Worth-Arlington, TX Metro Area
1451                Dallas-Fort Worth-Arlington, TX Metro Area
1452                Dallas-Fort Worth-Arlington, TX Metro Area
1453                Dallas-Fort Worth-Arlington, TX Metro Area
1454                Dallas-Fort Worth-Arlington, TX Metro Area
1455                Dallas-Fort Worth-Arlington, TX Metro Area
1456                Dallas-Fort Worth-Arlington, TX Metro Area
1457                Dallas-Fort Worth-Arlington, TX Metro Area
1458                Dallas-Fort Worth-Arlington, TX Metro Area
1459                Dallas-Fort Worth-Arlington, TX Metro Area
1460                Dallas-Fort Worth-Arlington, TX Metro Area
1461                Dallas-Fort Worth-Arlington, TX Metro Area
1462                Dallas-Fort Worth-Arlington, TX Metro Area
1463                Dallas-Fort Worth-Arlington, TX Metro Area
1464                Dallas-Fort Worth-Arlington, TX Metro Area
1465                Dallas-Fort Worth-Arlington, TX Metro Area
1466                Dallas-Fort Worth-Arlington, TX Metro Area
1467                Dallas-Fort Worth-Arlington, TX Metro Area
1468                Dallas-Fort Worth-Arlington, TX Metro Area
1469                Dallas-Fort Worth-Arlington, TX Metro Area
1470                Dallas-Fort Worth-Arlington, TX Metro Area
1471                Dallas-Fort Worth-Arlington, TX Metro Area
1472                Dallas-Fort Worth-Arlington, TX Metro Area
1473                Dallas-Fort Worth-Arlington, TX Metro Area
1474                Dallas-Fort Worth-Arlington, TX Metro Area
1475                Dallas-Fort Worth-Arlington, TX Metro Area
1476             San Francisco-Oakland-Berkeley, CA Metro Area
1477              North Port-Sarasota-Bradenton, FL Metro Area
1478   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1479   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1480   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1481                     Denver-Aurora-Lakewood, CO Metro Area
1482   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1483   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1484   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1485   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1486   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1487   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1488   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1489                  Baltimore-Columbia-Towson, MD Metro Area
1490   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
1491                     Denver-Aurora-Lakewood, CO Metro Area
1492          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1493                     Denver-Aurora-Lakewood, CO Metro Area
1494          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1495                     Denver-Aurora-Lakewood, CO Metro Area
1496              North Port-Sarasota-Bradenton, FL Metro Area
1497                     Denver-Aurora-Lakewood, CO Metro Area
1498                     Denver-Aurora-Lakewood, CO Metro Area
1499                     Denver-Aurora-Lakewood, CO Metro Area
1500              North Port-Sarasota-Bradenton, FL Metro Area
1501                     Denver-Aurora-Lakewood, CO Metro Area
1502                     Denver-Aurora-Lakewood, CO Metro Area
1503                     Denver-Aurora-Lakewood, CO Metro Area
1504                  Orlando-Kissimmee-Sanford, FL Metro Area
1505    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1506                     Denver-Aurora-Lakewood, CO Metro Area
1507                     Denver-Aurora-Lakewood, CO Metro Area
1508                     Denver-Aurora-Lakewood, CO Metro Area
1509        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1510                     Denver-Aurora-Lakewood, CO Metro Area
1511                     Denver-Aurora-Lakewood, CO Metro Area
1512                     Denver-Aurora-Lakewood, CO Metro Area
1513                     Denver-Aurora-Lakewood, CO Metro Area
1514                     Denver-Aurora-Lakewood, CO Metro Area
1515                     Denver-Aurora-Lakewood, CO Metro Area
1516                     Denver-Aurora-Lakewood, CO Metro Area
1517                     Denver-Aurora-Lakewood, CO Metro Area
1518                Sacramento-Roseville-Folsom, CA Metro Area
1519                     Denver-Aurora-Lakewood, CO Metro Area
1520                     Denver-Aurora-Lakewood, CO Metro Area
1521                     Denver-Aurora-Lakewood, CO Metro Area
1522                     Denver-Aurora-Lakewood, CO Metro Area
1523                     Denver-Aurora-Lakewood, CO Metro Area
1524                     Denver-Aurora-Lakewood, CO Metro Area
1525                     Denver-Aurora-Lakewood, CO Metro Area
1526                     Denver-Aurora-Lakewood, CO Metro Area
1527                     Denver-Aurora-Lakewood, CO Metro Area
1528            Tampa-St. Petersburg-Clearwater, FL Metro Area
1529           Houston-The Woodlands-Sugar Land, TX Metro Area
1530           Houston-The Woodlands-Sugar Land, TX Metro Area
1531             San Diego-Chula Vista-Carlsbad, CA Metro Area
1532                    Detroit-Warren-Dearborn, MI Metro Area
1533                    Detroit-Warren-Dearborn, MI Metro Area
1534                    Detroit-Warren-Dearborn, MI Metro Area
1535                                Albuquerque, NM Metro Area
1536    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1537                                    El Paso, TX Metro Area
1538                                    El Paso, TX Metro Area
1539                                    El Paso, TX Metro Area
1540                                    El Paso, TX Metro Area
1541                                    El Paso, TX Metro Area
1542             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1543            Tampa-St. Petersburg-Clearwater, FL Metro Area
1544                               Jacksonville, FL Metro Area
1545            Tampa-St. Petersburg-Clearwater, FL Metro Area
1546                                    El Paso, TX Metro Area
1547                                    El Paso, TX Metro Area
1548             San Diego-Chula Vista-Carlsbad, CA Metro Area
1549                         Eugene-Springfield, OR Metro Area
1550                         Eugene-Springfield, OR Metro Area
1551                                     Fresno, CA Metro Area
1552                     Denver-Aurora-Lakewood, CO Metro Area
1553               Las Vegas-Henderson-Paradise, NV Metro Area
1554             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1555        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1556               Austin-Round Rock-Georgetown, TX Metro Area
1557        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1558        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1559                      Providence-Warwick, RI-MA Metro Area
1560        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1561        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1562        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1563        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1564             Los Angeles-Long Beach-Anaheim, CA Metro Area
1565        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1566        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1567        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1568     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1569                                      Tulsa, OK Metro Area
1570                     Spokane-Spokane Valley, WA Metro Area
1571                          Manchester-Nashua, NH Metro Area
1572                     Spokane-Spokane Valley, WA Metro Area
1573                     Spokane-Spokane Valley, WA Metro Area
1574                      Phoenix-Mesa-Chandler, AZ Metro Area
1575                     Spokane-Spokane Valley, WA Metro Area
1576                      Grand Rapids-Kentwood, MI Metro Area
1577                                Spartanburg, SC Metro Area
1578             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1579             Los Angeles-Long Beach-Anaheim, CA Metro Area
1580                             Salt Lake City, UT Metro Area
1581 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
1582           Houston-The Woodlands-Sugar Land, TX Metro Area
1583                               Raleigh-Cary, NC Metro Area
1584          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1585           Houston-The Woodlands-Sugar Land, TX Metro Area
1586           Houston-The Woodlands-Sugar Land, TX Metro Area
1587           Houston-The Woodlands-Sugar Land, TX Metro Area
1588           Houston-The Woodlands-Sugar Land, TX Metro Area
1589           Houston-The Woodlands-Sugar Land, TX Metro Area
1590           Houston-The Woodlands-Sugar Land, TX Metro Area
1591           Houston-The Woodlands-Sugar Land, TX Metro Area
1592           Houston-The Woodlands-Sugar Land, TX Metro Area
1593           Houston-The Woodlands-Sugar Land, TX Metro Area
1594          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1595           Houston-The Woodlands-Sugar Land, TX Metro Area
1596           Houston-The Woodlands-Sugar Land, TX Metro Area
1597           Houston-The Woodlands-Sugar Land, TX Metro Area
1598           Houston-The Woodlands-Sugar Land, TX Metro Area
1599           Houston-The Woodlands-Sugar Land, TX Metro Area
1600           Houston-The Woodlands-Sugar Land, TX Metro Area
1601           Houston-The Woodlands-Sugar Land, TX Metro Area
1602           Houston-The Woodlands-Sugar Land, TX Metro Area
1603           Houston-The Woodlands-Sugar Land, TX Metro Area
1604           Houston-The Woodlands-Sugar Land, TX Metro Area
1605           Houston-The Woodlands-Sugar Land, TX Metro Area
1606           Houston-The Woodlands-Sugar Land, TX Metro Area
1607           Houston-The Woodlands-Sugar Land, TX Metro Area
1608           Houston-The Woodlands-Sugar Land, TX Metro Area
1609           Houston-The Woodlands-Sugar Land, TX Metro Area
1610           Houston-The Woodlands-Sugar Land, TX Metro Area
1611           Houston-The Woodlands-Sugar Land, TX Metro Area
1612           Houston-The Woodlands-Sugar Land, TX Metro Area
1613           Houston-The Woodlands-Sugar Land, TX Metro Area
1614           Houston-The Woodlands-Sugar Land, TX Metro Area
1615          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1616           Houston-The Woodlands-Sugar Land, TX Metro Area
1617           Houston-The Woodlands-Sugar Land, TX Metro Area
1618           Houston-The Woodlands-Sugar Land, TX Metro Area
1619           Houston-The Woodlands-Sugar Land, TX Metro Area
1620                                    Jackson, MS Metro Area
1621                      Brownsville-Harlingen, TX Metro Area
1622                           Colorado Springs, CO Metro Area
1623                             Salt Lake City, UT Metro Area
1624             San Francisco-Oakland-Berkeley, CA Metro Area
1625                Sacramento-Roseville-Folsom, CA Metro Area
1626                      Grand Rapids-Kentwood, MI Metro Area
1627           Houston-The Woodlands-Sugar Land, TX Metro Area
1628                  Orlando-Kissimmee-Sanford, FL Metro Area
1629           Houston-The Woodlands-Sugar Land, TX Metro Area
1630                                    Wichita, KS Metro Area
1631                                    Wichita, KS Metro Area
1632                    Portland-South Portland, ME Metro Area
1633               Indianapolis-Carmel-Anderson, IN Metro Area
1634               Indianapolis-Carmel-Anderson, IN Metro Area
1635               Indianapolis-Carmel-Anderson, IN Metro Area
1636               Indianapolis-Carmel-Anderson, IN Metro Area
1637               Indianapolis-Carmel-Anderson, IN Metro Area
1638          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1639        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1640         Crestview-Fort Walton Beach-Destin, FL Metro Area
1641                          Manchester-Nashua, NH Metro Area
1642                               Jacksonville, FL Metro Area
1643                               Jacksonville, FL Metro Area
1644                               Jacksonville, FL Metro Area
1645           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1646                  Baltimore-Columbia-Towson, MD Metro Area
1647                              Oklahoma City, OK Metro Area
1648               Las Vegas-Henderson-Paradise, NV Metro Area
1649               Las Vegas-Henderson-Paradise, NV Metro Area
1650               Indianapolis-Carmel-Anderson, IN Metro Area
1651                       New Orleans-Metairie, LA Metro Area
1652                                 Pittsburgh, PA Metro Area
1653               Las Vegas-Henderson-Paradise, NV Metro Area
1654                                 Pittsburgh, PA Metro Area
1655            Tampa-St. Petersburg-Clearwater, FL Metro Area
1656               Las Vegas-Henderson-Paradise, NV Metro Area
1657               Las Vegas-Henderson-Paradise, NV Metro Area
1658           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1659             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1660               Las Vegas-Henderson-Paradise, NV Metro Area
1661               Las Vegas-Henderson-Paradise, NV Metro Area
1662                                 Pittsburgh, PA Metro Area
1663               Las Vegas-Henderson-Paradise, NV Metro Area
1664               Las Vegas-Henderson-Paradise, NV Metro Area
1665               Las Vegas-Henderson-Paradise, NV Metro Area
1666               Las Vegas-Henderson-Paradise, NV Metro Area
1667               Las Vegas-Henderson-Paradise, NV Metro Area
1668               Las Vegas-Henderson-Paradise, NV Metro Area
1669               Las Vegas-Henderson-Paradise, NV Metro Area
1670               Las Vegas-Henderson-Paradise, NV Metro Area
1671               Las Vegas-Henderson-Paradise, NV Metro Area
1672               Las Vegas-Henderson-Paradise, NV Metro Area
1673               Las Vegas-Henderson-Paradise, NV Metro Area
1674               Las Vegas-Henderson-Paradise, NV Metro Area
1675               Las Vegas-Henderson-Paradise, NV Metro Area
1676               Las Vegas-Henderson-Paradise, NV Metro Area
1677               Las Vegas-Henderson-Paradise, NV Metro Area
1678               Las Vegas-Henderson-Paradise, NV Metro Area
1679             Los Angeles-Long Beach-Anaheim, CA Metro Area
1680             Los Angeles-Long Beach-Anaheim, CA Metro Area
1681                                      Kapaa, HI Micro Area
1682                       New Orleans-Metairie, LA Metro Area
1683                  San Antonio-New Braunfels, TX Metro Area
1684             Los Angeles-Long Beach-Anaheim, CA Metro Area
1685                                      Tulsa, OK Metro Area
1686                  Orlando-Kissimmee-Sanford, FL Metro Area
1687        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1688             Los Angeles-Long Beach-Anaheim, CA Metro Area
1689             Los Angeles-Long Beach-Anaheim, CA Metro Area
1690             Los Angeles-Long Beach-Anaheim, CA Metro Area
1691             Los Angeles-Long Beach-Anaheim, CA Metro Area
1692           Riverside-San Bernardino-Ontario, CA Metro Area
1693                               Raleigh-Cary, NC Metro Area
1694                                    Lubbock, TX Metro Area
1695                Dallas-Fort Worth-Arlington, TX Metro Area
1696           Houston-The Woodlands-Sugar Land, TX Metro Area
1697          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1698                       New Orleans-Metairie, LA Metro Area
1699                              Oklahoma City, OK Metro Area
1700          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1701          New York-Newark-Jersey City, NY-NJ-PA Metro Area
1702             Los Angeles-Long Beach-Anaheim, CA Metro Area
1703             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1704             Los Angeles-Long Beach-Anaheim, CA Metro Area
1705             Los Angeles-Long Beach-Anaheim, CA Metro Area
1706             Los Angeles-Long Beach-Anaheim, CA Metro Area
1707             Los Angeles-Long Beach-Anaheim, CA Metro Area
1708             Los Angeles-Long Beach-Anaheim, CA Metro Area
1709           Riverside-San Bernardino-Ontario, CA Metro Area
1710             Los Angeles-Long Beach-Anaheim, CA Metro Area
1711             Los Angeles-Long Beach-Anaheim, CA Metro Area
1712             Los Angeles-Long Beach-Anaheim, CA Metro Area
1713             Los Angeles-Long Beach-Anaheim, CA Metro Area
1714             Los Angeles-Long Beach-Anaheim, CA Metro Area
1715       Little Rock-North Little Rock-Conway, AR Metro Area
1716                                    Midland, TX Metro Area
1717                                    Midland, TX Metro Area
1718                             Kansas City, MO-KS Metro Area
1719                             Kansas City, MO-KS Metro Area
1720              North Port-Sarasota-Bradenton, FL Metro Area
1721                             Kansas City, MO-KS Metro Area
1722                             Kansas City, MO-KS Metro Area
1723                             Kansas City, MO-KS Metro Area
1724                             Kansas City, MO-KS Metro Area
1725                             Kansas City, MO-KS Metro Area
1726                             Kansas City, MO-KS Metro Area
1727                             Kansas City, MO-KS Metro Area
1728                        Buffalo-Cheektowaga, NY Metro Area
1729                                    Bozeman, MT Micro Area
1730           Riverside-San Bernardino-Ontario, CA Metro Area
1731                    Seattle-Tacoma-Bellevue, WA Metro Area
1732                                     Fresno, CA Metro Area
1733                      Phoenix-Mesa-Chandler, AZ Metro Area
1734                  Orlando-Kissimmee-Sanford, FL Metro Area
1735                 Boston-Cambridge-Newton, MA-NH Metro Area
1736                 Des Moines-West Des Moines, IA Metro Area
1737             San Diego-Chula Vista-Carlsbad, CA Metro Area
1738                  Orlando-Kissimmee-Sanford, FL Metro Area
1739                  Orlando-Kissimmee-Sanford, FL Metro Area
1740                  Orlando-Kissimmee-Sanford, FL Metro Area
1741                  Orlando-Kissimmee-Sanford, FL Metro Area
1742                  Orlando-Kissimmee-Sanford, FL Metro Area
1743                  Orlando-Kissimmee-Sanford, FL Metro Area
1744                  Orlando-Kissimmee-Sanford, FL Metro Area
1745                  Orlando-Kissimmee-Sanford, FL Metro Area
1746                  Orlando-Kissimmee-Sanford, FL Metro Area
1747                  Orlando-Kissimmee-Sanford, FL Metro Area
1748                                      Kapaa, HI Micro Area
1749                  Orlando-Kissimmee-Sanford, FL Metro Area
1750                  Orlando-Kissimmee-Sanford, FL Metro Area
1751             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1752             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1753             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1754             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1755             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1756             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1757             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1758             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1759             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1760             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1761             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1762             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1763             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1764             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1765             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1766             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1767             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1768             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1769             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1770             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1771             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1772             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1773             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1774             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1775             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1776             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1777             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1778             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1779             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1780             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1781             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1782                               St. Louis, MO-IL Metro Area
1783             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1784             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1785             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1786             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1787             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1788             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1789             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1790             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1791             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1792             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1793             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1794             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1795             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1796             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1797             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1798             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1799             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1800             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1801                              Memphis, TN-MS-AR Metro Area
1802                              Memphis, TN-MS-AR Metro Area
1803                              Memphis, TN-MS-AR Metro Area
1804                              Memphis, TN-MS-AR Metro Area
1805                              Memphis, TN-MS-AR Metro Area
1806                  San Antonio-New Braunfels, TX Metro Area
1807        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1808        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1809        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1810                             Kansas City, MO-KS Metro Area
1811                         Milwaukee-Waukesha, WI Metro Area
1812                         Milwaukee-Waukesha, WI Metro Area
1813                         Milwaukee-Waukesha, WI Metro Area
1814                         Milwaukee-Waukesha, WI Metro Area
1815                         Milwaukee-Waukesha, WI Metro Area
1816        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1817                      Cape Coral-Fort Myers, FL Metro Area
1818             San Diego-Chula Vista-Carlsbad, CA Metro Area
1819                       New Orleans-Metairie, LA Metro Area
1820                       New Orleans-Metairie, LA Metro Area
1821                       New Orleans-Metairie, LA Metro Area
1822                       New Orleans-Metairie, LA Metro Area
1823                       New Orleans-Metairie, LA Metro Area
1824                       New Orleans-Metairie, LA Metro Area
1825                       New Orleans-Metairie, LA Metro Area
1826                       New Orleans-Metairie, LA Metro Area
1827                           Colorado Springs, CO Metro Area
1828                       New Orleans-Metairie, LA Metro Area
1829                       New Orleans-Metairie, LA Metro Area
1830                       New Orleans-Metairie, LA Metro Area
1831                                      Tulsa, OK Metro Area
1832  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1833  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
1834             San Francisco-Oakland-Berkeley, CA Metro Area
1835             San Francisco-Oakland-Berkeley, CA Metro Area
1836             San Francisco-Oakland-Berkeley, CA Metro Area
1837             San Francisco-Oakland-Berkeley, CA Metro Area
1838             San Diego-Chula Vista-Carlsbad, CA Metro Area
1839             San Francisco-Oakland-Berkeley, CA Metro Area
1840               Indianapolis-Carmel-Anderson, IN Metro Area
1841             San Francisco-Oakland-Berkeley, CA Metro Area
1842             San Francisco-Oakland-Berkeley, CA Metro Area
1843             San Francisco-Oakland-Berkeley, CA Metro Area
1844             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1845             San Francisco-Oakland-Berkeley, CA Metro Area
1846             San Francisco-Oakland-Berkeley, CA Metro Area
1847             San Francisco-Oakland-Berkeley, CA Metro Area
1848             San Francisco-Oakland-Berkeley, CA Metro Area
1849             San Francisco-Oakland-Berkeley, CA Metro Area
1850                Sacramento-Roseville-Folsom, CA Metro Area
1851                              Oklahoma City, OK Metro Area
1852                              Oklahoma City, OK Metro Area
1853                              Oklahoma City, OK Metro Area
1854                    Kahului-Wailuku-Lahaina, HI Metro Area
1855              North Port-Sarasota-Bradenton, FL Metro Area
1856                    Omaha-Council Bluffs, NE-IA Metro Area
1857                    Omaha-Council Bluffs, NE-IA Metro Area
1858                    Omaha-Council Bluffs, NE-IA Metro Area
1859                  San Antonio-New Braunfels, TX Metro Area
1860           Riverside-San Bernardino-Ontario, CA Metro Area
1861           Riverside-San Bernardino-Ontario, CA Metro Area
1862                                   Savannah, GA Metro Area
1863             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1864             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1865             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
1866     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1867     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1868     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1869     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
1870          Hartford-East Hartford-Middletown, CT Metro Area
1871                    Omaha-Council Bluffs, NE-IA Metro Area
1872            Portland-Vancouver-Hillsboro, OR-WA Metro Area
1873            Tampa-St. Petersburg-Clearwater, FL Metro Area
1874                                      Kapaa, HI Micro Area
1875             San Francisco-Oakland-Berkeley, CA Metro Area
1876    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
1877        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
1878                      Phoenix-Mesa-Chandler, AZ Metro Area
1879                         Milwaukee-Waukesha, WI Metro Area
1880                      Phoenix-Mesa-Chandler, AZ Metro Area
1881           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
1882                      Phoenix-Mesa-Chandler, AZ Metro Area
1883                      Phoenix-Mesa-Chandler, AZ Metro Area
1884                      Phoenix-Mesa-Chandler, AZ Metro Area
1885                      Phoenix-Mesa-Chandler, AZ Metro Area
1886                      Phoenix-Mesa-Chandler, AZ Metro Area
1887                      Phoenix-Mesa-Chandler, AZ Metro Area
1888                      Phoenix-Mesa-Chandler, AZ Metro Area
1889                      Phoenix-Mesa-Chandler, AZ Metro Area
1890                      Phoenix-Mesa-Chandler, AZ Metro Area
1891                      Phoenix-Mesa-Chandler, AZ Metro Area
1892                      Phoenix-Mesa-Chandler, AZ Metro Area
1893                      Phoenix-Mesa-Chandler, AZ Metro Area
1894                      Phoenix-Mesa-Chandler, AZ Metro Area
1895                      Phoenix-Mesa-Chandler, AZ Metro Area
1896                             Urban Honolulu, HI Metro Area
1897                      Phoenix-Mesa-Chandler, AZ Metro Area
1898                      Phoenix-Mesa-Chandler, AZ Metro Area
1899                      Phoenix-Mesa-Chandler, AZ Metro Area
1900                      Phoenix-Mesa-Chandler, AZ Metro Area
1901                      Phoenix-Mesa-Chandler, AZ Metro Area
1902                      Phoenix-Mesa-Chandler, AZ Metro Area
1903                                 Pittsburgh, PA Metro Area
1904                                 Pittsburgh, PA Metro Area
1905                                 Pittsburgh, PA Metro Area
1906                                 Pittsburgh, PA Metro Area
1907                                 Pittsburgh, PA Metro Area
1908                                 Pittsburgh, PA Metro Area
1909                 Pensacola-Ferry Pass-Brent, FL Metro Area
1910                 Pensacola-Ferry Pass-Brent, FL Metro Area
1911                 Pensacola-Ferry Pass-Brent, FL Metro Area
1912           Riverside-San Bernardino-Ontario, CA Metro Area
1913           Riverside-San Bernardino-Ontario, CA Metro Area
1914                               Raleigh-Cary, NC Metro Area
1915             San Francisco-Oakland-Berkeley, CA Metro Area
1916                               Raleigh-Cary, NC Metro Area
1917                    San Juan-Bayamón-Caguas, PR Metro Area
1918                  San Antonio-New Braunfels, TX Metro Area
1919                               Raleigh-Cary, NC Metro Area
1920                                   Richmond, VA Metro Area
1921                                       Reno, NV Metro Area
1922                                       Reno, NV Metro Area
1923                                       Reno, NV Metro Area
1924                                       Reno, NV Metro Area
1925                                  Rochester, NY Metro Area
1926                                  Rochester, NY Metro Area
1927                    Detroit-Warren-Dearborn, MI Metro Area
1928                      Cape Coral-Fort Myers, FL Metro Area
1929                      Cape Coral-Fort Myers, FL Metro Area
1930                      Cape Coral-Fort Myers, FL Metro Area
1931                      Cape Coral-Fort Myers, FL Metro Area
1932                      Cape Coral-Fort Myers, FL Metro Area
1933             San Diego-Chula Vista-Carlsbad, CA Metro Area
1934         Crestview-Fort Walton Beach-Destin, FL Metro Area
1935                Charleston-North Charleston, SC Metro Area
1936                     Spokane-Spokane Valley, WA Metro Area
1937             San Diego-Chula Vista-Carlsbad, CA Metro Area
1938             San Diego-Chula Vista-Carlsbad, CA Metro Area
1939             San Diego-Chula Vista-Carlsbad, CA Metro Area
1940        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
1941                                     Tucson, AZ Metro Area
1942                  San Antonio-New Braunfels, TX Metro Area
1943                  San Antonio-New Braunfels, TX Metro Area
1944                  San Antonio-New Braunfels, TX Metro Area
1945                  San Antonio-New Braunfels, TX Metro Area
1946                Dallas-Fort Worth-Arlington, TX Metro Area
1947                  Santa Maria-Santa Barbara, CA Metro Area
1948             Louisville/Jefferson County, KY-IN Metro Area
1949             Louisville/Jefferson County, KY-IN Metro Area
1950             Louisville/Jefferson County, KY-IN Metro Area
1951             Louisville/Jefferson County, KY-IN Metro Area
1952             Louisville/Jefferson County, KY-IN Metro Area
1953             Los Angeles-Long Beach-Anaheim, CA Metro Area
1954             Los Angeles-Long Beach-Anaheim, CA Metro Area
1955                               Raleigh-Cary, NC Metro Area
1956             San Francisco-Oakland-Berkeley, CA Metro Area
1957             San Francisco-Oakland-Berkeley, CA Metro Area
1958             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1959             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1960                             Urban Honolulu, HI Metro Area
1961             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1962                    Kahului-Wailuku-Lahaina, HI Metro Area
1963                    Kahului-Wailuku-Lahaina, HI Metro Area
1964             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1965             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1966             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1967             San Jose-Sunnyvale-Santa Clara, CA Metro Area
1968                    San Juan-Bayamón-Caguas, PR Metro Area
1969                             Salt Lake City, UT Metro Area
1970                             Salt Lake City, UT Metro Area
1971                             Salt Lake City, UT Metro Area
1972                             Salt Lake City, UT Metro Area
1973                Sacramento-Roseville-Folsom, CA Metro Area
1974                             Kansas City, MO-KS Metro Area
1975                Sacramento-Roseville-Folsom, CA Metro Area
1976                Sacramento-Roseville-Folsom, CA Metro Area
1977                                       Hilo, HI Micro Area
1978                Sacramento-Roseville-Folsom, CA Metro Area
1979                Sacramento-Roseville-Folsom, CA Metro Area
1980                Sacramento-Roseville-Folsom, CA Metro Area
1981                Sacramento-Roseville-Folsom, CA Metro Area
1982             Los Angeles-Long Beach-Anaheim, CA Metro Area
1983                       New Orleans-Metairie, LA Metro Area
1984             Los Angeles-Long Beach-Anaheim, CA Metro Area
1985              North Port-Sarasota-Bradenton, FL Metro Area
1986              North Port-Sarasota-Bradenton, FL Metro Area
1987              North Port-Sarasota-Bradenton, FL Metro Area
1988              North Port-Sarasota-Bradenton, FL Metro Area
1989                               St. Louis, MO-IL Metro Area
1990                               St. Louis, MO-IL Metro Area
1991                               St. Louis, MO-IL Metro Area
1992                               St. Louis, MO-IL Metro Area
1993                               St. Louis, MO-IL Metro Area
1994                               St. Louis, MO-IL Metro Area
1995                               St. Louis, MO-IL Metro Area
1996                               St. Louis, MO-IL Metro Area
1997                               St. Louis, MO-IL Metro Area
1998                               St. Louis, MO-IL Metro Area
1999                               St. Louis, MO-IL Metro Area
2000          Hartford-East Hartford-Middletown, CT Metro Area
2001                               St. Louis, MO-IL Metro Area
2002                               St. Louis, MO-IL Metro Area
2003                               St. Louis, MO-IL Metro Area
2004                               St. Louis, MO-IL Metro Area
2005                               St. Louis, MO-IL Metro Area
2006                               St. Louis, MO-IL Metro Area
2007                               St. Louis, MO-IL Metro Area
2008                               St. Louis, MO-IL Metro Area
2009                               St. Louis, MO-IL Metro Area
2010                               St. Louis, MO-IL Metro Area
2011                               St. Louis, MO-IL Metro Area
2012                               St. Louis, MO-IL Metro Area
2013                               St. Louis, MO-IL Metro Area
2014                               St. Louis, MO-IL Metro Area
2015                               St. Louis, MO-IL Metro Area
2016                               St. Louis, MO-IL Metro Area
2017            Tampa-St. Petersburg-Clearwater, FL Metro Area
2018                                   Syracuse, NY Metro Area
2019                     Denver-Aurora-Lakewood, CO Metro Area
2020            Tampa-St. Petersburg-Clearwater, FL Metro Area
2021            Tampa-St. Petersburg-Clearwater, FL Metro Area
2022            Tampa-St. Petersburg-Clearwater, FL Metro Area
2023            Tampa-St. Petersburg-Clearwater, FL Metro Area
2024            Tampa-St. Petersburg-Clearwater, FL Metro Area
2025            Tampa-St. Petersburg-Clearwater, FL Metro Area
2026            Tampa-St. Petersburg-Clearwater, FL Metro Area
2027            Tampa-St. Petersburg-Clearwater, FL Metro Area
2028            Tampa-St. Petersburg-Clearwater, FL Metro Area
2029                                     Tucson, AZ Metro Area
2030                                     Tucson, AZ Metro Area
2031         Crestview-Fort Walton Beach-Destin, FL Metro Area
2032                         Milwaukee-Waukesha, WI Metro Area
2033                    Shreveport-Bossier City, LA Metro Area
2034                                    Medford, OR Metro Area
2035                  Orlando-Kissimmee-Sanford, FL Metro Area
2036                Dallas-Fort Worth-Arlington, TX Metro Area
2037                Sacramento-Roseville-Folsom, CA Metro Area
2038                           Cincinnati, OH-KY-IN Metro Area
2039                               Jacksonville, FL Metro Area
2040             San Diego-Chula Vista-Carlsbad, CA Metro Area
2041                               Raleigh-Cary, NC Metro Area
2042   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2043   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2044           Houston-The Woodlands-Sugar Land, TX Metro Area
2045           Houston-The Woodlands-Sugar Land, TX Metro Area
2046          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2047    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2048                      Phoenix-Mesa-Chandler, AZ Metro Area
2049                      Phoenix-Mesa-Chandler, AZ Metro Area
2050             Los Angeles-Long Beach-Anaheim, CA Metro Area
2051                 Pensacola-Ferry Pass-Brent, FL Metro Area
2052        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2053                    San Juan-Bayamón-Caguas, PR Metro Area
2054   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2055                                     Bangor, ME Metro Area
2056                        Buffalo-Cheektowaga, NY Metro Area
2057                        Harrisburg-Carlisle, PA Metro Area
2058                               Jacksonville, FL Metro Area
2059                 Boston-Cambridge-Newton, MA-NH Metro Area
2060                           Cincinnati, OH-KY-IN Metro Area
2061                 Boston-Cambridge-Newton, MA-NH Metro Area
2062                     Denver-Aurora-Lakewood, CO Metro Area
2063                       New Orleans-Metairie, LA Metro Area
2064                 Des Moines-West Des Moines, IA Metro Area
2065     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2066                Dallas-Fort Worth-Arlington, TX Metro Area
2067        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2068                 Boston-Cambridge-Newton, MA-NH Metro Area
2069                 Boston-Cambridge-Newton, MA-NH Metro Area
2070                 Boston-Cambridge-Newton, MA-NH Metro Area
2071             San Francisco-Oakland-Berkeley, CA Metro Area
2072                          Manchester-Nashua, NH Metro Area
2073                Charleston-North Charleston, SC Metro Area
2074                                      Tulsa, OK Metro Area
2075                           Cleveland-Elyria, OH Metro Area
2076                           Cleveland-Elyria, OH Metro Area
2077              Charlotte-Concord-Gastonia, NC-SC Metro Area
2078              Charlotte-Concord-Gastonia, NC-SC Metro Area
2079               Indianapolis-Carmel-Anderson, IN Metro Area
2080                                   Columbus, OH Metro Area
2081                                   Columbus, OH Metro Area
2082                                   Columbus, OH Metro Area
2083                           Cincinnati, OH-KY-IN Metro Area
2084                Sacramento-Roseville-Folsom, CA Metro Area
2085   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2086   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2087   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2088   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2089                                    Madison, WI Metro Area
2090          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2091          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2092          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2093          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2094          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2095          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2096                 Pensacola-Ferry Pass-Brent, FL Metro Area
2097                      Greensboro-High Point, NC Metro Area
2098   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2099   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2100                                 Wilmington, NC Metro Area
2101               Indianapolis-Carmel-Anderson, IN Metro Area
2102         Deltona-Daytona Beach-Ormond Beach, FL Metro Area
2103               Indianapolis-Carmel-Anderson, IN Metro Area
2104                         Milwaukee-Waukesha, WI Metro Area
2105                          Carbondale-Marion, IL Metro Area
2106                Dallas-Fort Worth-Arlington, TX Metro Area
2107          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2108                                Panama City, FL Metro Area
2109          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2110                      Phoenix-Mesa-Chandler, AZ Metro Area
2111                                  Knoxville, TN Metro Area
2112          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2113          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2114          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2115          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2116          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2117          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2118          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2119          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2120          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2121          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2122          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2123          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2124                                Spartanburg, SC Metro Area
2125     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2126                    Omaha-Council Bluffs, NE-IA Metro Area
2127     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2128    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2129                                 Pittsburgh, PA Metro Area
2130                                 Pittsburgh, PA Metro Area
2131                                  Fairbanks, AK Metro Area
2132                                 Pittsburgh, PA Metro Area
2133                                   Savannah, GA Metro Area
2134                                   Savannah, GA Metro Area
2135             Louisville/Jefferson County, KY-IN Metro Area
2136                               Raleigh-Cary, NC Metro Area
2137                               Raleigh-Cary, NC Metro Area
2138                      Providence-Warwick, RI-MA Metro Area
2139                 Boston-Cambridge-Newton, MA-NH Metro Area
2140             Louisville/Jefferson County, KY-IN Metro Area
2141                                   Columbus, OH Metro Area
2142              Charlotte-Concord-Gastonia, NC-SC Metro Area
2143                Charleston-North Charleston, SC Metro Area
2144                           Cleveland-Elyria, OH Metro Area
2145                            Charlottesville, VA Metro Area
2146                                      Akron, OH Metro Area
2147   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2148                    Seattle-Tacoma-Bellevue, WA Metro Area
2149                           Sioux City, IA-NE-SD Metro Area
2150             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2151             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2152               Las Vegas-Henderson-Paradise, NV Metro Area
2153                  San Antonio-New Braunfels, TX Metro Area
2154                      Phoenix-Mesa-Chandler, AZ Metro Area
2155        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2156        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2157                                 Eau Claire, WI Metro Area
2158                    Albany-Schenectady-Troy, NY Metro Area
2159                                 Wilmington, NC Metro Area
2160                     Denver-Aurora-Lakewood, CO Metro Area
2161   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2162             San Diego-Chula Vista-Carlsbad, CA Metro Area
2163  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2164                      Cape Coral-Fort Myers, FL Metro Area
2165                                   Richmond, VA Metro Area
2166                      Greensboro-High Point, NC Metro Area
2167                                   Syracuse, NY Metro Area
2168                             Kansas City, MO-KS Metro Area
2169                     Denver-Aurora-Lakewood, CO Metro Area
2170                      Grand Rapids-Kentwood, MI Metro Area
2171                                 Huntsville, AL Metro Area
2172           Houston-The Woodlands-Sugar Land, TX Metro Area
2173             Los Angeles-Long Beach-Anaheim, CA Metro Area
2174        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2175                 Pensacola-Ferry Pass-Brent, FL Metro Area
2176                     Denver-Aurora-Lakewood, CO Metro Area
2177                 Pensacola-Ferry Pass-Brent, FL Metro Area
2178                          New Haven-Milford, CT Metro Area
2179                          New Haven-Milford, CT Metro Area
2180                  Orlando-Kissimmee-Sanford, FL Metro Area
2181             Los Angeles-Long Beach-Anaheim, CA Metro Area
2182                           Glenwood Springs, CO Micro Area
2183                          Birmingham-Hoover, AL Metro Area
2184          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2185                         Milwaukee-Waukesha, WI Metro Area
2186   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2187   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2188                Dallas-Fort Worth-Arlington, TX Metro Area
2189                Dallas-Fort Worth-Arlington, TX Metro Area
2190                Dallas-Fort Worth-Arlington, TX Metro Area
2191                             Urban Honolulu, HI Metro Area
2192          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2193           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2194             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2195    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2196    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2197                      Phoenix-Mesa-Chandler, AZ Metro Area
2198                      Phoenix-Mesa-Chandler, AZ Metro Area
2199             San Diego-Chula Vista-Carlsbad, CA Metro Area
2200                                  Fairbanks, AK Metro Area
2201            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2202                 Boston-Cambridge-Newton, MA-NH Metro Area
2203                 Boston-Cambridge-Newton, MA-NH Metro Area
2204          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2205           Riverside-San Bernardino-Ontario, CA Metro Area
2206             San Francisco-Oakland-Berkeley, CA Metro Area
2207           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2208           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2209           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2210           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2211           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2212           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2213                 Boston-Cambridge-Newton, MA-NH Metro Area
2214   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2215                    Detroit-Warren-Dearborn, MI Metro Area
2216                    Detroit-Warren-Dearborn, MI Metro Area
2217                    Detroit-Warren-Dearborn, MI Metro Area
2218          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2219          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2220          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2221          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2222             Los Angeles-Long Beach-Anaheim, CA Metro Area
2223             Los Angeles-Long Beach-Anaheim, CA Metro Area
2224             Los Angeles-Long Beach-Anaheim, CA Metro Area
2225        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2226        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2227             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2228                             Salt Lake City, UT Metro Area
2229                             Salt Lake City, UT Metro Area
2230                             Salt Lake City, UT Metro Area
2231            Tampa-St. Petersburg-Clearwater, FL Metro Area
2232            Tampa-St. Petersburg-Clearwater, FL Metro Area
2233             Los Angeles-Long Beach-Anaheim, CA Metro Area
2234                    Detroit-Warren-Dearborn, MI Metro Area
2235             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2236                     Denver-Aurora-Lakewood, CO Metro Area
2237          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2238           Houston-The Woodlands-Sugar Land, TX Metro Area
2239           Houston-The Woodlands-Sugar Land, TX Metro Area
2240           Houston-The Woodlands-Sugar Land, TX Metro Area
2241           Houston-The Woodlands-Sugar Land, TX Metro Area
2242                               Raleigh-Cary, NC Metro Area
2243             San Francisco-Oakland-Berkeley, CA Metro Area
2244           Houston-The Woodlands-Sugar Land, TX Metro Area
2245          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2246          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2247             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2248                                   Richmond, VA Metro Area
2249    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2250                             Kansas City, MO-KS Metro Area
2251                Dallas-Fort Worth-Arlington, TX Metro Area
2252                      Grand Rapids-Kentwood, MI Metro Area
2253    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2254  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2255                                  Fairbanks, AK Metro Area
2256                                                      <NA>
2257                                                      <NA>
2258                    Seattle-Tacoma-Bellevue, WA Metro Area
2259                    Seattle-Tacoma-Bellevue, WA Metro Area
2260                             Salt Lake City, UT Metro Area
2261                     Denver-Aurora-Lakewood, CO Metro Area
2262   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2263              Allentown-Bethlehem-Easton, PA-NJ Metro Area
2264           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2265           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2266           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2267           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2268           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2269           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2270           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2271           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2272                                     Bangor, ME Metro Area
2273                 Boston-Cambridge-Newton, MA-NH Metro Area
2274                 Boston-Cambridge-Newton, MA-NH Metro Area
2275                            Charlottesville, VA Metro Area
2276                Charleston-North Charleston, SC Metro Area
2277                           Cincinnati, OH-KY-IN Metro Area
2278                        Harrisburg-Carlisle, PA Metro Area
2279                    Detroit-Warren-Dearborn, MI Metro Area
2280                    Detroit-Warren-Dearborn, MI Metro Area
2281                    Detroit-Warren-Dearborn, MI Metro Area
2282                    Detroit-Warren-Dearborn, MI Metro Area
2283                    Detroit-Warren-Dearborn, MI Metro Area
2284                    Detroit-Warren-Dearborn, MI Metro Area
2285                    Detroit-Warren-Dearborn, MI Metro Area
2286          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2287                      Phoenix-Mesa-Chandler, AZ Metro Area
2288               Indianapolis-Carmel-Anderson, IN Metro Area
2289          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2290          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2291          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2292          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2293          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2294          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2295          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2296          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2297          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2298          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2299          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2300          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2301                        Harrisburg-Carlisle, PA Metro Area
2302        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2303        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2304        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2305                               Raleigh-Cary, NC Metro Area
2306                                    Roanoke, VA Metro Area
2307                                  Rochester, NY Metro Area
2308                                  Knoxville, TN Metro Area
2309               Austin-Round Rock-Georgetown, TX Metro Area
2310               Austin-Round Rock-Georgetown, TX Metro Area
2311                                    Madison, WI Metro Area
2312               Austin-Round Rock-Georgetown, TX Metro Area
2313          Hartford-East Hartford-Middletown, CT Metro Area
2314                 Boston-Cambridge-Newton, MA-NH Metro Area
2315                 Boston-Cambridge-Newton, MA-NH Metro Area
2316               Indianapolis-Carmel-Anderson, IN Metro Area
2317                 Boston-Cambridge-Newton, MA-NH Metro Area
2318             San Francisco-Oakland-Berkeley, CA Metro Area
2319              Charlotte-Concord-Gastonia, NC-SC Metro Area
2320              Charlotte-Concord-Gastonia, NC-SC Metro Area
2321              Charlotte-Concord-Gastonia, NC-SC Metro Area
2322              Charlotte-Concord-Gastonia, NC-SC Metro Area
2323              Charlotte-Concord-Gastonia, NC-SC Metro Area
2324                                    Salinas, CA Metro Area
2325              Charlotte-Concord-Gastonia, NC-SC Metro Area
2326              Charlotte-Concord-Gastonia, NC-SC Metro Area
2327              Charlotte-Concord-Gastonia, NC-SC Metro Area
2328                           Cincinnati, OH-KY-IN Metro Area
2329   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2330                Dallas-Fort Worth-Arlington, TX Metro Area
2331                Dallas-Fort Worth-Arlington, TX Metro Area
2332                Dallas-Fort Worth-Arlington, TX Metro Area
2333                Dallas-Fort Worth-Arlington, TX Metro Area
2334                Dallas-Fort Worth-Arlington, TX Metro Area
2335                Dallas-Fort Worth-Arlington, TX Metro Area
2336                Dallas-Fort Worth-Arlington, TX Metro Area
2337                Dallas-Fort Worth-Arlington, TX Metro Area
2338                Dallas-Fort Worth-Arlington, TX Metro Area
2339                Dallas-Fort Worth-Arlington, TX Metro Area
2340                Dallas-Fort Worth-Arlington, TX Metro Area
2341                Dallas-Fort Worth-Arlington, TX Metro Area
2342                Dallas-Fort Worth-Arlington, TX Metro Area
2343                Dallas-Fort Worth-Arlington, TX Metro Area
2344                Dallas-Fort Worth-Arlington, TX Metro Area
2345                Dallas-Fort Worth-Arlington, TX Metro Area
2346                                Springfield, MO Metro Area
2347                                   Columbia, MO Metro Area
2348                    Seattle-Tacoma-Bellevue, WA Metro Area
2349           Houston-The Woodlands-Sugar Land, TX Metro Area
2350        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2351          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2352               Las Vegas-Henderson-Paradise, NV Metro Area
2353                    Shreveport-Bossier City, LA Metro Area
2354                                 Wilmington, NC Metro Area
2355                                   Richmond, VA Metro Area
2356                Burlington-South Burlington, VT Metro Area
2357          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2358                  Orlando-Kissimmee-Sanford, FL Metro Area
2359                        Harrisburg-Carlisle, PA Metro Area
2360                    Portland-South Portland, ME Metro Area
2361       Little Rock-North Little Rock-Conway, AR Metro Area
2362                   McAllen-Edinburg-Mission, TX Metro Area
2363        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2364        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2365        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2366        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2367        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2368        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2369                                Tallahassee, FL Metro Area
2370        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2371                Charleston-North Charleston, SC Metro Area
2372             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2373             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2374             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2375             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2376             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2377                            Charlottesville, VA Metro Area
2378    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2379    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2380                      Phoenix-Mesa-Chandler, AZ Metro Area
2381                      Phoenix-Mesa-Chandler, AZ Metro Area
2382                      Phoenix-Mesa-Chandler, AZ Metro Area
2383                      Phoenix-Mesa-Chandler, AZ Metro Area
2384            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2385                                Baton Rouge, LA Metro Area
2386                               Raleigh-Cary, NC Metro Area
2387                      Cape Coral-Fort Myers, FL Metro Area
2388                       Kingsport-Bristol, TN-VA Metro Area
2389                                 Pittsburgh, PA Metro Area
2390                      Greensboro-High Point, NC Metro Area
2391                                    Roanoke, VA Metro Area
2392                          Birmingham-Hoover, AL Metro Area
2393                    San Juan-Bayamón-Caguas, PR Metro Area
2394                                   Columbus, OH Metro Area
2395             Louisville/Jefferson County, KY-IN Metro Area
2396                                   Fargo, ND-MN Metro Area
2397                                       Yuma, AZ Metro Area
2398                                  Anchorage, AK Metro Area
2399                                  Anchorage, AK Metro Area
2400                                                      <NA>
2401   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2402                                  Ketchikan, AK Micro Area
2403                             Urban Honolulu, HI Metro Area
2404                                  Ketchikan, AK Micro Area
2405             Los Angeles-Long Beach-Anaheim, CA Metro Area
2406             Los Angeles-Long Beach-Anaheim, CA Metro Area
2407                    Omaha-Council Bluffs, NE-IA Metro Area
2408                                                      <NA>
2409            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2410                    Kahului-Wailuku-Lahaina, HI Metro Area
2411                    Seattle-Tacoma-Bellevue, WA Metro Area
2412                    Seattle-Tacoma-Bellevue, WA Metro Area
2413                    Seattle-Tacoma-Bellevue, WA Metro Area
2414                    Seattle-Tacoma-Bellevue, WA Metro Area
2415             San Francisco-Oakland-Berkeley, CA Metro Area
2416                                Albuquerque, NM Metro Area
2417                      Cape Coral-Fort Myers, FL Metro Area
2418                    Albany-Schenectady-Troy, NY Metro Area
2419          Hartford-East Hartford-Middletown, CT Metro Area
2420          Hartford-East Hartford-Middletown, CT Metro Area
2421                 Boston-Cambridge-Newton, MA-NH Metro Area
2422                 Boston-Cambridge-Newton, MA-NH Metro Area
2423                 Boston-Cambridge-Newton, MA-NH Metro Area
2424                 Boston-Cambridge-Newton, MA-NH Metro Area
2425             Los Angeles-Long Beach-Anaheim, CA Metro Area
2426   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2427        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2428          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2429                    Seattle-Tacoma-Bellevue, WA Metro Area
2430          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2431          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2432          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2433             Los Angeles-Long Beach-Anaheim, CA Metro Area
2434             Los Angeles-Long Beach-Anaheim, CA Metro Area
2435           Riverside-San Bernardino-Ontario, CA Metro Area
2436                      Providence-Warwick, RI-MA Metro Area
2437                      Providence-Warwick, RI-MA Metro Area
2438             San Diego-Chula Vista-Carlsbad, CA Metro Area
2439                    San Juan-Bayamón-Caguas, PR Metro Area
2440                    San Juan-Bayamón-Caguas, PR Metro Area
2441                Sacramento-Roseville-Folsom, CA Metro Area
2442              North Port-Sarasota-Bradenton, FL Metro Area
2443                                   Syracuse, NY Metro Area
2444           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2445           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2446           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2447           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2448           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2449           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2450           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2451           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2452           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2453           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2454           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2455           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2456           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2457           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2458           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2459           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2460           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2461           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2462           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2463           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2464           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2465           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2466               Austin-Round Rock-Georgetown, TX Metro Area
2467               Austin-Round Rock-Georgetown, TX Metro Area
2468 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2469                 Boston-Cambridge-Newton, MA-NH Metro Area
2470                                 Jackson, WY-ID Micro Area
2471              Charlotte-Concord-Gastonia, NC-SC Metro Area
2472                           Cincinnati, OH-KY-IN Metro Area
2473                           Cincinnati, OH-KY-IN Metro Area
2474                           Cincinnati, OH-KY-IN Metro Area
2475                              Traverse City, MI Micro Area
2476                Dallas-Fort Worth-Arlington, TX Metro Area
2477                    Detroit-Warren-Dearborn, MI Metro Area
2478                    Detroit-Warren-Dearborn, MI Metro Area
2479                    Detroit-Warren-Dearborn, MI Metro Area
2480                    Detroit-Warren-Dearborn, MI Metro Area
2481                    Detroit-Warren-Dearborn, MI Metro Area
2482                    Detroit-Warren-Dearborn, MI Metro Area
2483                    Detroit-Warren-Dearborn, MI Metro Area
2484                    Detroit-Warren-Dearborn, MI Metro Area
2485                    Detroit-Warren-Dearborn, MI Metro Area
2486                                    El Paso, TX Metro Area
2487              Palm Bay-Melbourne-Titusville, FL Metro Area
2488   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2489               Indianapolis-Carmel-Anderson, IN Metro Area
2490          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2491          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2492             Los Angeles-Long Beach-Anaheim, CA Metro Area
2493             Los Angeles-Long Beach-Anaheim, CA Metro Area
2494                  Orlando-Kissimmee-Sanford, FL Metro Area
2495                              Memphis, TN-MS-AR Metro Area
2496        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2497        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2498        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2499        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2500        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2501        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2502        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2503        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2504        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2505        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2506        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2507        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2508        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2509        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2510          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2511                      Greensboro-High Point, NC Metro Area
2512                      Cape Coral-Fort Myers, FL Metro Area
2513                  San Antonio-New Braunfels, TX Metro Area
2514                    Seattle-Tacoma-Bellevue, WA Metro Area
2515                    Seattle-Tacoma-Bellevue, WA Metro Area
2516                                 Rapid City, SD Metro Area
2517                    Seattle-Tacoma-Bellevue, WA Metro Area
2518             San Francisco-Oakland-Berkeley, CA Metro Area
2519                    San Juan-Bayamón-Caguas, PR Metro Area
2520                             Salt Lake City, UT Metro Area
2521                             Salt Lake City, UT Metro Area
2522                             Salt Lake City, UT Metro Area
2523                             Salt Lake City, UT Metro Area
2524                             Salt Lake City, UT Metro Area
2525                             Salt Lake City, UT Metro Area
2526                             Salt Lake City, UT Metro Area
2527                             Salt Lake City, UT Metro Area
2528                             Salt Lake City, UT Metro Area
2529                             Salt Lake City, UT Metro Area
2530                             Salt Lake City, UT Metro Area
2531                             Salt Lake City, UT Metro Area
2532                             Salt Lake City, UT Metro Area
2533                       Kingsport-Bristol, TN-VA Metro Area
2534                Burlington-South Burlington, VT Metro Area
2535          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2536          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2537          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2538          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2539          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2540          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2541   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2542   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2543             Los Angeles-Long Beach-Anaheim, CA Metro Area
2544                                Tallahassee, FL Metro Area
2545                      Brownsville-Harlingen, TX Metro Area
2546                Dallas-Fort Worth-Arlington, TX Metro Area
2547                Dallas-Fort Worth-Arlington, TX Metro Area
2548                Dallas-Fort Worth-Arlington, TX Metro Area
2549                Dallas-Fort Worth-Arlington, TX Metro Area
2550                Dallas-Fort Worth-Arlington, TX Metro Area
2551                Dallas-Fort Worth-Arlington, TX Metro Area
2552                 Des Moines-West Des Moines, IA Metro Area
2553    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2554                              Fort Smith, AR-OK Metro Area
2555                             Grand Junction, CO Metro Area
2556                                    Wichita, KS Metro Area
2557                                    Jackson, MS Metro Area
2558                               Lake Charles, LA Metro Area
2559        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2560                    Omaha-Council Bluffs, NE-IA Metro Area
2561             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2562             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2563             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2564                                Springfield, IL Metro Area
2565                                Tallahassee, FL Metro Area
2566                             Salt Lake City, UT Metro Area
2567                                    El Paso, TX Metro Area
2568              Charlotte-Concord-Gastonia, NC-SC Metro Area
2569              Charlotte-Concord-Gastonia, NC-SC Metro Area
2570              Charlotte-Concord-Gastonia, NC-SC Metro Area
2571              Charlotte-Concord-Gastonia, NC-SC Metro Area
2572              Charlotte-Concord-Gastonia, NC-SC Metro Area
2573              Charlotte-Concord-Gastonia, NC-SC Metro Area
2574   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2575   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2576                      Greensboro-High Point, NC Metro Area
2577                                    Madison, WI Metro Area
2578    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2579                 Pensacola-Ferry Pass-Brent, FL Metro Area
2580                                 Huntsville, AL Metro Area
2581                                   Bismarck, ND Metro Area
2582                                     Casper, WY Metro Area
2583                             Corpus Christi, TX Metro Area
2584                     Denver-Aurora-Lakewood, CO Metro Area
2585                     Denver-Aurora-Lakewood, CO Metro Area
2586                     Denver-Aurora-Lakewood, CO Metro Area
2587                     Denver-Aurora-Lakewood, CO Metro Area
2588                     Denver-Aurora-Lakewood, CO Metro Area
2589                     Denver-Aurora-Lakewood, CO Metro Area
2590                     Denver-Aurora-Lakewood, CO Metro Area
2591                     Denver-Aurora-Lakewood, CO Metro Area
2592                    Detroit-Warren-Dearborn, MI Metro Area
2593                    Detroit-Warren-Dearborn, MI Metro Area
2594                    Detroit-Warren-Dearborn, MI Metro Area
2595                               St. Louis, MO-IL Metro Area
2596          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2597           Houston-The Woodlands-Sugar Land, TX Metro Area
2598           Houston-The Woodlands-Sugar Land, TX Metro Area
2599           Houston-The Woodlands-Sugar Land, TX Metro Area
2600           Houston-The Woodlands-Sugar Land, TX Metro Area
2601             Los Angeles-Long Beach-Anaheim, CA Metro Area
2602                                    Lubbock, TX Metro Area
2603                                    Midland, TX Metro Area
2604                             Kansas City, MO-KS Metro Area
2605        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2606        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2607        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2608        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2609        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2610        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2611        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2612                    Omaha-Council Bluffs, NE-IA Metro Area
2613             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2614             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2615             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2616             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2617             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2618     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2619                      Phoenix-Mesa-Chandler, AZ Metro Area
2620                                   Richmond, VA Metro Area
2621                                   Savannah, GA Metro Area
2622                    Seattle-Tacoma-Bellevue, WA Metro Area
2623             San Francisco-Oakland-Berkeley, CA Metro Area
2624             San Francisco-Oakland-Berkeley, CA Metro Area
2625                             Salt Lake City, UT Metro Area
2626                             Salt Lake City, UT Metro Area
2627                             Salt Lake City, UT Metro Area
2628                             Salt Lake City, UT Metro Area
2629                             Salt Lake City, UT Metro Area
2630                             Salt Lake City, UT Metro Area
2631                             Salt Lake City, UT Metro Area
2632                                     Tucson, AZ Metro Area
2633            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2634   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2635                     Denver-Aurora-Lakewood, CO Metro Area
2636                     Denver-Aurora-Lakewood, CO Metro Area
2637                     Denver-Aurora-Lakewood, CO Metro Area
2638                 Des Moines-West Des Moines, IA Metro Area
2639          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2640          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2641                                  Anchorage, AK Metro Area
2642                Sacramento-Roseville-Folsom, CA Metro Area
2643   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2644   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2645   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2646   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2647           Houston-The Woodlands-Sugar Land, TX Metro Area
2648           Houston-The Woodlands-Sugar Land, TX Metro Area
2649           Houston-The Woodlands-Sugar Land, TX Metro Area
2650           Houston-The Woodlands-Sugar Land, TX Metro Area
2651           Houston-The Woodlands-Sugar Land, TX Metro Area
2652           Houston-The Woodlands-Sugar Land, TX Metro Area
2653           Houston-The Woodlands-Sugar Land, TX Metro Area
2654           Houston-The Woodlands-Sugar Land, TX Metro Area
2655                             Kansas City, MO-KS Metro Area
2656                   McAllen-Edinburg-Mission, TX Metro Area
2657                    Omaha-Council Bluffs, NE-IA Metro Area
2658                                 Pittsburgh, PA Metro Area
2659             San Diego-Chula Vista-Carlsbad, CA Metro Area
2660                           Glenwood Springs, CO Micro Area
2661             San Francisco-Oakland-Berkeley, CA Metro Area
2662             San Francisco-Oakland-Berkeley, CA Metro Area
2663             San Francisco-Oakland-Berkeley, CA Metro Area
2664             San Francisco-Oakland-Berkeley, CA Metro Area
2665                Sacramento-Roseville-Folsom, CA Metro Area
2666                           Glenwood Springs, CO Micro Area
2667             Los Angeles-Long Beach-Anaheim, CA Metro Area
2668               Austin-Round Rock-Georgetown, TX Metro Area
2669             Los Angeles-Long Beach-Anaheim, CA Metro Area
2670                  Baltimore-Columbia-Towson, MD Metro Area
2671                                   Columbus, OH Metro Area
2672                     Denver-Aurora-Lakewood, CO Metro Area
2673            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2674               Las Vegas-Henderson-Paradise, NV Metro Area
2675               Las Vegas-Henderson-Paradise, NV Metro Area
2676             San Diego-Chula Vista-Carlsbad, CA Metro Area
2677                      Phoenix-Mesa-Chandler, AZ Metro Area
2678                      Cape Coral-Fort Myers, FL Metro Area
2679             San Diego-Chula Vista-Carlsbad, CA Metro Area
2680                         Milwaukee-Waukesha, WI Metro Area
2681                                    El Paso, TX Metro Area
2682                                Sioux Falls, SD Metro Area
2683           Houston-The Woodlands-Sugar Land, TX Metro Area
2684           Houston-The Woodlands-Sugar Land, TX Metro Area
2685           Houston-The Woodlands-Sugar Land, TX Metro Area
2686                             Kansas City, MO-KS Metro Area
2687                 Boston-Cambridge-Newton, MA-NH Metro Area
2688                 Boston-Cambridge-Newton, MA-NH Metro Area
2689                 Boston-Cambridge-Newton, MA-NH Metro Area
2690                Charleston-North Charleston, SC Metro Area
2691                                   Columbus, OH Metro Area
2692   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2693                    Detroit-Warren-Dearborn, MI Metro Area
2694          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2695          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2696          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2697          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2698                                Spartanburg, SC Metro Area
2699          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2700          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2701          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2702                              Oklahoma City, OK Metro Area
2703             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2704             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2705             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2706             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2707    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2708    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2709                    Shreveport-Bossier City, LA Metro Area
2710                               Raleigh-Cary, NC Metro Area
2711             Fayetteville-Springdale-Rogers, AR Metro Area
2712                              Evansville, IN-KY Metro Area
2713   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2714             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2715             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2716                 Pensacola-Ferry Pass-Brent, FL Metro Area
2717        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2718           Riverside-San Bernardino-Ontario, CA Metro Area
2719                      Cape Coral-Fort Myers, FL Metro Area
2720              Charlotte-Concord-Gastonia, NC-SC Metro Area
2721              Charlotte-Concord-Gastonia, NC-SC Metro Area
2722                          Manchester-Nashua, NH Metro Area
2723    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2724    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
2725                          Birmingham-Hoover, AL Metro Area
2726                     Denver-Aurora-Lakewood, CO Metro Area
2727   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2728           Houston-The Woodlands-Sugar Land, TX Metro Area
2729           Houston-The Woodlands-Sugar Land, TX Metro Area
2730                                    Wichita, KS Metro Area
2731       Little Rock-North Little Rock-Conway, AR Metro Area
2732           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2733                                     Bangor, ME Metro Area
2734 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
2735                Burlington-South Burlington, VT Metro Area
2736                  Baltimore-Columbia-Towson, MD Metro Area
2737                      Grand Rapids-Kentwood, MI Metro Area
2738                                Spartanburg, SC Metro Area
2739          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2740          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2741          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2742          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2743          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2744             Fayetteville-Springdale-Rogers, AR Metro Area
2745                               Raleigh-Cary, NC Metro Area
2746                                   Richmond, VA Metro Area
2747                                  Rochester, NY Metro Area
2748                                  Rochester, NY Metro Area
2749                                   Savannah, GA Metro Area
2750                                   Savannah, GA Metro Area
2751            Tampa-St. Petersburg-Clearwater, FL Metro Area
2752                                 Huntsville, AL Metro Area
2753               Austin-Round Rock-Georgetown, TX Metro Area
2754                                     Tucson, AZ Metro Area
2755                             Chattanooga, TN-GA Metro Area
2756                                 Greenville, NC Metro Area
2757                                 Boise City, ID Metro Area
2758                    Kahului-Wailuku-Lahaina, HI Metro Area
2759                                    Midland, TX Metro Area
2760             Los Angeles-Long Beach-Anaheim, CA Metro Area
2761                             Urban Honolulu, HI Metro Area
2762                                  Lafayette, LA Metro Area
2763                           Cleveland-Elyria, OH Metro Area
2764                           Cleveland-Elyria, OH Metro Area
2765                           Cleveland-Elyria, OH Metro Area
2766                                  Anchorage, AK Metro Area
2767              Charlotte-Concord-Gastonia, NC-SC Metro Area
2768              Charlotte-Concord-Gastonia, NC-SC Metro Area
2769              Charlotte-Concord-Gastonia, NC-SC Metro Area
2770              Charlotte-Concord-Gastonia, NC-SC Metro Area
2771              Charlotte-Concord-Gastonia, NC-SC Metro Area
2772              Charlotte-Concord-Gastonia, NC-SC Metro Area
2773              Charlotte-Concord-Gastonia, NC-SC Metro Area
2774              Charlotte-Concord-Gastonia, NC-SC Metro Area
2775              Charlotte-Concord-Gastonia, NC-SC Metro Area
2776              Charlotte-Concord-Gastonia, NC-SC Metro Area
2777              Charlotte-Concord-Gastonia, NC-SC Metro Area
2778              Charlotte-Concord-Gastonia, NC-SC Metro Area
2779              Charlotte-Concord-Gastonia, NC-SC Metro Area
2780              Charlotte-Concord-Gastonia, NC-SC Metro Area
2781                           Cincinnati, OH-KY-IN Metro Area
2782   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2783   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2784                Dallas-Fort Worth-Arlington, TX Metro Area
2785                Dallas-Fort Worth-Arlington, TX Metro Area
2786                Dallas-Fort Worth-Arlington, TX Metro Area
2787                Dallas-Fort Worth-Arlington, TX Metro Area
2788                Dallas-Fort Worth-Arlington, TX Metro Area
2789                Dallas-Fort Worth-Arlington, TX Metro Area
2790                Dallas-Fort Worth-Arlington, TX Metro Area
2791                Dallas-Fort Worth-Arlington, TX Metro Area
2792                Dallas-Fort Worth-Arlington, TX Metro Area
2793                Dallas-Fort Worth-Arlington, TX Metro Area
2794                Dallas-Fort Worth-Arlington, TX Metro Area
2795                Dallas-Fort Worth-Arlington, TX Metro Area
2796                Dallas-Fort Worth-Arlington, TX Metro Area
2797                Dallas-Fort Worth-Arlington, TX Metro Area
2798                Dallas-Fort Worth-Arlington, TX Metro Area
2799                Dallas-Fort Worth-Arlington, TX Metro Area
2800                Dallas-Fort Worth-Arlington, TX Metro Area
2801                Dallas-Fort Worth-Arlington, TX Metro Area
2802                    Omaha-Council Bluffs, NE-IA Metro Area
2803                          Lexington-Fayette, KY Metro Area
2804                                   Syracuse, NY Metro Area
2805                              Oklahoma City, OK Metro Area
2806                                   Columbia, MO Metro Area
2807                                       Reno, NV Metro Area
2808                                                      <NA>
2809                                   Columbus, OH Metro Area
2810               Indianapolis-Carmel-Anderson, IN Metro Area
2811                               Jacksonville, FL Metro Area
2812                     Scranton--Wilkes-Barre, PA Metro Area
2813                            Gulfport-Biloxi, MS Metro Area
2814         Crestview-Fort Walton Beach-Destin, FL Metro Area
2815                                      Tulsa, OK Metro Area
2816                                     Bangor, ME Metro Area
2817                 Augusta-Richmond County, GA-SC Metro Area
2818             Los Angeles-Long Beach-Anaheim, CA Metro Area
2819              North Port-Sarasota-Bradenton, FL Metro Area
2820                               Grand Island, NE Metro Area
2821                              Memphis, TN-MS-AR Metro Area
2822                      Providence-Warwick, RI-MA Metro Area
2823                                   Columbia, SC Metro Area
2824  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
2825                                     Mobile, AL Metro Area
2826                             Kansas City, MO-KS Metro Area
2827                          Steamboat Springs, CO Micro Area
2828                              Memphis, TN-MS-AR Metro Area
2829        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2830        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2831        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2832                                       Reno, NV Metro Area
2833        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2834                 Des Moines-West Des Moines, IA Metro Area
2835        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2836        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2837                                    Madison, WI Metro Area
2838                                   Richmond, VA Metro Area
2839                                       Waco, TX Metro Area
2840             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2841             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2842           Riverside-San Bernardino-Ontario, CA Metro Area
2843        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2844                                    El Paso, TX Metro Area
2845                                   New Bern, NC Metro Area
2846                    San Juan-Bayamón-Caguas, PR Metro Area
2847                      Phoenix-Mesa-Chandler, AZ Metro Area
2848                      Phoenix-Mesa-Chandler, AZ Metro Area
2849                                 Pittsburgh, PA Metro Area
2850                  Baltimore-Columbia-Towson, MD Metro Area
2851                             Grand Junction, CO Metro Area
2852                                  Rochester, NY Metro Area
2853     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
2854                 Pensacola-Ferry Pass-Brent, FL Metro Area
2855             Los Angeles-Long Beach-Anaheim, CA Metro Area
2856                      Brownsville-Harlingen, TX Metro Area
2857                    Seattle-Tacoma-Bellevue, WA Metro Area
2858                          Manchester-Nashua, NH Metro Area
2859                                  Asheville, NC Metro Area
2860             San Francisco-Oakland-Berkeley, CA Metro Area
2861           Houston-The Woodlands-Sugar Land, TX Metro Area
2862            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2863                    San Juan-Bayamón-Caguas, PR Metro Area
2864                                   Columbia, SC Metro Area
2865                                  Asheville, NC Metro Area
2866                          Lexington-Fayette, KY Metro Area
2867                               St. Louis, MO-IL Metro Area
2868                                Columbus, GA-AL Metro Area
2869            Tampa-St. Petersburg-Clearwater, FL Metro Area
2870                                     Tucson, AZ Metro Area
2871                                Albuquerque, NM Metro Area
2872                Dallas-Fort Worth-Arlington, TX Metro Area
2873                              Oklahoma City, OK Metro Area
2874                Charleston-North Charleston, SC Metro Area
2875                  Baltimore-Columbia-Towson, MD Metro Area
2876               Indianapolis-Carmel-Anderson, IN Metro Area
2877                                  Ketchikan, AK Micro Area
2878                                  Ketchikan, AK Micro Area
2879                  Orlando-Kissimmee-Sanford, FL Metro Area
2880                         Milwaukee-Waukesha, WI Metro Area
2881            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2882             San Diego-Chula Vista-Carlsbad, CA Metro Area
2883                  San Antonio-New Braunfels, TX Metro Area
2884                    Seattle-Tacoma-Bellevue, WA Metro Area
2885                    Seattle-Tacoma-Bellevue, WA Metro Area
2886                    Seattle-Tacoma-Bellevue, WA Metro Area
2887                    Seattle-Tacoma-Bellevue, WA Metro Area
2888                    Seattle-Tacoma-Bellevue, WA Metro Area
2889                    Seattle-Tacoma-Bellevue, WA Metro Area
2890                    Seattle-Tacoma-Bellevue, WA Metro Area
2891                    Seattle-Tacoma-Bellevue, WA Metro Area
2892                    Seattle-Tacoma-Bellevue, WA Metro Area
2893                    Seattle-Tacoma-Bellevue, WA Metro Area
2894                    Seattle-Tacoma-Bellevue, WA Metro Area
2895                    Seattle-Tacoma-Bellevue, WA Metro Area
2896             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2897          Hartford-East Hartford-Middletown, CT Metro Area
2898          Hartford-East Hartford-Middletown, CT Metro Area
2899          Hartford-East Hartford-Middletown, CT Metro Area
2900                 Boston-Cambridge-Newton, MA-NH Metro Area
2901                 Boston-Cambridge-Newton, MA-NH Metro Area
2902                 Boston-Cambridge-Newton, MA-NH Metro Area
2903                          Aguadilla-Isabela, PR Metro Area
2904                        Buffalo-Cheektowaga, NY Metro Area
2905                Charleston-North Charleston, SC Metro Area
2906                           Cleveland-Elyria, OH Metro Area
2907             San Diego-Chula Vista-Carlsbad, CA Metro Area
2908   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2909          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2910          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2911        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2912        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2913        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2914        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2915        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2916          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2917          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2918           Houston-The Woodlands-Sugar Land, TX Metro Area
2919                               Jacksonville, FL Metro Area
2920                               Jacksonville, FL Metro Area
2921                               Jacksonville, FL Metro Area
2922                               Jacksonville, FL Metro Area
2923          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2924          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2925          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2926          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2927          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2928                  Orlando-Kissimmee-Sanford, FL Metro Area
2929        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2930        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2931        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2932        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2933        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2934                                      Ponce, PR Metro Area
2935                                   Richmond, VA Metro Area
2936                                   Richmond, VA Metro Area
2937                                   Richmond, VA Metro Area
2938                                       Reno, NV Metro Area
2939                      Cape Coral-Fort Myers, FL Metro Area
2940             San Diego-Chula Vista-Carlsbad, CA Metro Area
2941                  San Antonio-New Braunfels, TX Metro Area
2942             San Jose-Sunnyvale-Santa Clara, CA Metro Area
2943                    San Juan-Bayamón-Caguas, PR Metro Area
2944                Burlington-South Burlington, VT Metro Area
2945              North Port-Sarasota-Bradenton, FL Metro Area
2946                              Oklahoma City, OK Metro Area
2947           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2948           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2949           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2950           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2951           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2952           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
2953                                   Billings, MT Metro Area
2954                                 Fort Wayne, IN Metro Area
2955                             Urban Honolulu, HI Metro Area
2956                                 Huntsville, AL Metro Area
2957                                                      <NA>
2958   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2959                    Detroit-Warren-Dearborn, MI Metro Area
2960            Davenport-Moline-Rock Island, IA-IL Metro Area
2961        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
2962                           Cleveland-Elyria, OH Metro Area
2963                          Lexington-Fayette, KY Metro Area
2964                                     Elmira, NY Metro Area
2965                                Columbus, GA-AL Metro Area
2966                                 Fort Wayne, IN Metro Area
2967                                 Wilmington, NC Metro Area
2968                                     Albany, GA Metro Area
2969             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2970            Portland-Vancouver-Hillsboro, OR-WA Metro Area
2971                      Cape Coral-Fort Myers, FL Metro Area
2972   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2973                               St. Louis, MO-IL Metro Area
2974                             Grand Junction, CO Metro Area
2975                             Salt Lake City, UT Metro Area
2976                                  Rochester, NY Metro Area
2977               Indianapolis-Carmel-Anderson, IN Metro Area
2978                     Denver-Aurora-Lakewood, CO Metro Area
2979                     Denver-Aurora-Lakewood, CO Metro Area
2980                     Denver-Aurora-Lakewood, CO Metro Area
2981                     Denver-Aurora-Lakewood, CO Metro Area
2982          New York-Newark-Jersey City, NY-NJ-PA Metro Area
2983               Las Vegas-Henderson-Paradise, NV Metro Area
2984                  Orlando-Kissimmee-Sanford, FL Metro Area
2985           Riverside-San Bernardino-Ontario, CA Metro Area
2986                      Cape Coral-Fort Myers, FL Metro Area
2987                      Cape Coral-Fort Myers, FL Metro Area
2988                               St. Louis, MO-IL Metro Area
2989            Tampa-St. Petersburg-Clearwater, FL Metro Area
2990                          Trenton-Princeton, NJ Metro Area
2991                          Trenton-Princeton, NJ Metro Area
2992                                  Knoxville, TN Metro Area
2993             Fayetteville-Springdale-Rogers, AR Metro Area
2994                      Grand Rapids-Kentwood, MI Metro Area
2995                      Greensboro-High Point, NC Metro Area
2996   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
2997             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
2998                          Aguadilla-Isabela, PR Metro Area
2999                               St. Louis, MO-IL Metro Area
3000                                     Mobile, AL Metro Area
3001                          Birmingham-Hoover, AL Metro Area
3002                                     Lawton, OK Metro Area
3003                             Chattanooga, TN-GA Metro Area
3004                               Cedar Rapids, IA Metro Area
3005   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3006                Dallas-Fort Worth-Arlington, TX Metro Area
3007                Dallas-Fort Worth-Arlington, TX Metro Area
3008                Dallas-Fort Worth-Arlington, TX Metro Area
3009                Dallas-Fort Worth-Arlington, TX Metro Area
3010                Dallas-Fort Worth-Arlington, TX Metro Area
3011                Dallas-Fort Worth-Arlington, TX Metro Area
3012                Dallas-Fort Worth-Arlington, TX Metro Area
3013                      Grand Rapids-Kentwood, MI Metro Area
3014        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3015        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3016        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3017             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3018             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3019             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3020             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3021              Charlotte-Concord-Gastonia, NC-SC Metro Area
3022                                   Savannah, GA Metro Area
3023                                  Knoxville, TN Metro Area
3024                    Atlantic City-Hammonton, NJ Metro Area
3025                                      Akron, OH Metro Area
3026                           Cleveland-Elyria, OH Metro Area
3027               Las Vegas-Henderson-Paradise, NV Metro Area
3028             Los Angeles-Long Beach-Anaheim, CA Metro Area
3029                         Milwaukee-Waukesha, WI Metro Area
3030             Louisville/Jefferson County, KY-IN Metro Area
3031                 Augusta-Richmond County, GA-SC Metro Area
3032                           Cleveland-Elyria, OH Metro Area
3033              Charlotte-Concord-Gastonia, NC-SC Metro Area
3034              Charlotte-Concord-Gastonia, NC-SC Metro Area
3035              Charlotte-Concord-Gastonia, NC-SC Metro Area
3036              Charlotte-Concord-Gastonia, NC-SC Metro Area
3037                           Cincinnati, OH-KY-IN Metro Area
3038   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3039   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3040   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3041   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3042   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3043   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3044                 Des Moines-West Des Moines, IA Metro Area
3045                          Birmingham-Hoover, AL Metro Area
3046                                Panama City, FL Metro Area
3047                                Gainesville, FL Metro Area
3048                      Grand Rapids-Kentwood, MI Metro Area
3049                                       Erie, PA Metro Area
3050               Indianapolis-Carmel-Anderson, IN Metro Area
3051    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3052                    South Bend-Mishawaka, IN-MI Metro Area
3053               Austin-Round Rock-Georgetown, TX Metro Area
3054                                Bakersfield, CA Metro Area
3055                   Prescott Valley-Prescott, AZ Metro Area
3056                        Santa Rosa-Petaluma, CA Metro Area
3057                     Denver-Aurora-Lakewood, CO Metro Area
3058                     Denver-Aurora-Lakewood, CO Metro Area
3059                     Denver-Aurora-Lakewood, CO Metro Area
3060                Dallas-Fort Worth-Arlington, TX Metro Area
3061                Dallas-Fort Worth-Arlington, TX Metro Area
3062                    Detroit-Warren-Dearborn, MI Metro Area
3063                                 Fort Wayne, IN Metro Area
3064                                     Juneau, AK Micro Area
3065                                      Hobbs, NM Micro Area
3066                                Idaho Falls, ID Metro Area
3067             Los Angeles-Long Beach-Anaheim, CA Metro Area
3068             Los Angeles-Long Beach-Anaheim, CA Metro Area
3069             Los Angeles-Long Beach-Anaheim, CA Metro Area
3070                                 Alexandria, LA Metro Area
3071                                   Victoria, TX Metro Area
3072        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3073             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3074                    Portland-South Portland, ME Metro Area
3075                                   Santa Fe, NM Metro Area
3076                                   Savannah, GA Metro Area
3077                                    Roanoke, VA Metro Area
3078                    Seattle-Tacoma-Bellevue, WA Metro Area
3079             San Francisco-Oakland-Berkeley, CA Metro Area
3080             San Francisco-Oakland-Berkeley, CA Metro Area
3081             San Francisco-Oakland-Berkeley, CA Metro Area
3082             San Francisco-Oakland-Berkeley, CA Metro Area
3083                             Salt Lake City, UT Metro Area
3084                         Eugene-Springfield, OR Metro Area
3085     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3086                                Walla Walla, WA Metro Area
3087                                  Anchorage, AK Metro Area
3088             Los Angeles-Long Beach-Anaheim, CA Metro Area
3089                                    Salinas, CA Metro Area
3090                    Seattle-Tacoma-Bellevue, WA Metro Area
3091                    Seattle-Tacoma-Bellevue, WA Metro Area
3092               Austin-Round Rock-Georgetown, TX Metro Area
3093                             Urban Honolulu, HI Metro Area
3094                                   Sikeston, MO Micro Area
3095                                      Tulsa, OK Metro Area
3096                    San Juan-Bayamón-Caguas, PR Metro Area
3097                                   Columbus, OH Metro Area
3098                     Denver-Aurora-Lakewood, CO Metro Area
3099                     Denver-Aurora-Lakewood, CO Metro Area
3100          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3101                                     Fresno, CA Metro Area
3102   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3103   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3104           Houston-The Woodlands-Sugar Land, TX Metro Area
3105           Houston-The Woodlands-Sugar Land, TX Metro Area
3106           Houston-The Woodlands-Sugar Land, TX Metro Area
3107           Houston-The Woodlands-Sugar Land, TX Metro Area
3108           Houston-The Woodlands-Sugar Land, TX Metro Area
3109           Houston-The Woodlands-Sugar Land, TX Metro Area
3110            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3111                                    Redding, CA Metro Area
3112             Los Angeles-Long Beach-Anaheim, CA Metro Area
3113             Los Angeles-Long Beach-Anaheim, CA Metro Area
3114                                                      <NA>
3115                    San Juan-Bayamón-Caguas, PR Metro Area
3116    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3117                                     Salina, KS Micro Area
3118              North Port-Sarasota-Bradenton, FL Metro Area
3119                             Corpus Christi, TX Metro Area
3120                                    Liberal, KS Micro Area
3121                                Albuquerque, NM Metro Area
3122                                Albuquerque, NM Metro Area
3123               Austin-Round Rock-Georgetown, TX Metro Area
3124               Austin-Round Rock-Georgetown, TX Metro Area
3125                          Birmingham-Hoover, AL Metro Area
3126 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3127 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3128 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3129                      Phoenix-Mesa-Chandler, AZ Metro Area
3130                        Buffalo-Cheektowaga, NY Metro Area
3131                  Baltimore-Columbia-Towson, MD Metro Area
3132                  Baltimore-Columbia-Towson, MD Metro Area
3133                  Baltimore-Columbia-Towson, MD Metro Area
3134                  Baltimore-Columbia-Towson, MD Metro Area
3135                  Baltimore-Columbia-Towson, MD Metro Area
3136                  Baltimore-Columbia-Towson, MD Metro Area
3137                  Baltimore-Columbia-Towson, MD Metro Area
3138                  Baltimore-Columbia-Towson, MD Metro Area
3139                  Baltimore-Columbia-Towson, MD Metro Area
3140                  Baltimore-Columbia-Towson, MD Metro Area
3141                Charleston-North Charleston, SC Metro Area
3142                                   Columbus, OH Metro Area
3143                                   Columbus, OH Metro Area
3144                Dallas-Fort Worth-Arlington, TX Metro Area
3145                Dallas-Fort Worth-Arlington, TX Metro Area
3146                Dallas-Fort Worth-Arlington, TX Metro Area
3147                Dallas-Fort Worth-Arlington, TX Metro Area
3148                Dallas-Fort Worth-Arlington, TX Metro Area
3149                Dallas-Fort Worth-Arlington, TX Metro Area
3150                Dallas-Fort Worth-Arlington, TX Metro Area
3151                Dallas-Fort Worth-Arlington, TX Metro Area
3152   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3153   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3154                     Denver-Aurora-Lakewood, CO Metro Area
3155                     Denver-Aurora-Lakewood, CO Metro Area
3156        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3157           Houston-The Woodlands-Sugar Land, TX Metro Area
3158           Houston-The Woodlands-Sugar Land, TX Metro Area
3159           Houston-The Woodlands-Sugar Land, TX Metro Area
3160           Houston-The Woodlands-Sugar Land, TX Metro Area
3161          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3162               Las Vegas-Henderson-Paradise, NV Metro Area
3163               Las Vegas-Henderson-Paradise, NV Metro Area
3164                                    Lubbock, TX Metro Area
3165                                    Lubbock, TX Metro Area
3166             Los Angeles-Long Beach-Anaheim, CA Metro Area
3167       Little Rock-North Little Rock-Conway, AR Metro Area
3168                                    Midland, TX Metro Area
3169                             Kansas City, MO-KS Metro Area
3170                             Kansas City, MO-KS Metro Area
3171                  Orlando-Kissimmee-Sanford, FL Metro Area
3172                  Orlando-Kissimmee-Sanford, FL Metro Area
3173                  Orlando-Kissimmee-Sanford, FL Metro Area
3174             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3175             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3176             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3177             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3178             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3179             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3180             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3181                              Memphis, TN-MS-AR Metro Area
3182                         Milwaukee-Waukesha, WI Metro Area
3183  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3184             San Francisco-Oakland-Berkeley, CA Metro Area
3185             San Francisco-Oakland-Berkeley, CA Metro Area
3186                    Omaha-Council Bluffs, NE-IA Metro Area
3187                    Omaha-Council Bluffs, NE-IA Metro Area
3188                      Phoenix-Mesa-Chandler, AZ Metro Area
3189                      Phoenix-Mesa-Chandler, AZ Metro Area
3190                      Phoenix-Mesa-Chandler, AZ Metro Area
3191                                 Pittsburgh, PA Metro Area
3192           Riverside-San Bernardino-Ontario, CA Metro Area
3193                      Providence-Warwick, RI-MA Metro Area
3194                      Providence-Warwick, RI-MA Metro Area
3195                               Raleigh-Cary, NC Metro Area
3196                                       Reno, NV Metro Area
3197                                       Reno, NV Metro Area
3198                                  Rochester, NY Metro Area
3199                      Cape Coral-Fort Myers, FL Metro Area
3200             San Diego-Chula Vista-Carlsbad, CA Metro Area
3201             San Diego-Chula Vista-Carlsbad, CA Metro Area
3202                  San Antonio-New Braunfels, TX Metro Area
3203                  San Antonio-New Braunfels, TX Metro Area
3204                                   Savannah, GA Metro Area
3205             Louisville/Jefferson County, KY-IN Metro Area
3206                Sacramento-Roseville-Folsom, CA Metro Area
3207                               St. Louis, MO-IL Metro Area
3208                               St. Louis, MO-IL Metro Area
3209                               St. Louis, MO-IL Metro Area
3210                               St. Louis, MO-IL Metro Area
3211            Tampa-St. Petersburg-Clearwater, FL Metro Area
3212            Tampa-St. Petersburg-Clearwater, FL Metro Area
3213            Tampa-St. Petersburg-Clearwater, FL Metro Area
3214                                      Tulsa, OK Metro Area
3215                                      Tulsa, OK Metro Area
3216                                   Savannah, GA Metro Area
3217              Charlotte-Concord-Gastonia, NC-SC Metro Area
3218                Dallas-Fort Worth-Arlington, TX Metro Area
3219                Dallas-Fort Worth-Arlington, TX Metro Area
3220                                       Yuma, AZ Metro Area
3221                      Phoenix-Mesa-Chandler, AZ Metro Area
3222                      Phoenix-Mesa-Chandler, AZ Metro Area
3223                                   Richmond, VA Metro Area
3224          Hartford-East Hartford-Middletown, CT Metro Area
3225                 Boston-Cambridge-Newton, MA-NH Metro Area
3226   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3227   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3228          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3229          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3230   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3231   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3232                                   Columbus, OH Metro Area
3233          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3234          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3235          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3236             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3237             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3238             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3239    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3240                                      Akron, OH Metro Area
3241              North Port-Sarasota-Bradenton, FL Metro Area
3242                                  Asheville, NC Metro Area
3243            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3244                                     Fresno, CA Metro Area
3245                                   Columbia, SC Metro Area
3246                              Wausau-Weston, WI Metro Area
3247           Houston-The Woodlands-Sugar Land, TX Metro Area
3248                                       Erie, PA Metro Area
3249   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3250                         Milwaukee-Waukesha, WI Metro Area
3251             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3252                              State College, PA Metro Area
3253                     Scranton--Wilkes-Barre, PA Metro Area
3254                           Cincinnati, OH-KY-IN Metro Area
3255        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3256        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3257                 Boston-Cambridge-Newton, MA-NH Metro Area
3258              Charlotte-Concord-Gastonia, NC-SC Metro Area
3259                      Grand Rapids-Kentwood, MI Metro Area
3260    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3261    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3262                                  Rochester, NY Metro Area
3263                                Spartanburg, SC Metro Area
3264                       New Orleans-Metairie, LA Metro Area
3265           Houston-The Woodlands-Sugar Land, TX Metro Area
3266                                   Santa Fe, NM Metro Area
3267          Hartford-East Hartford-Middletown, CT Metro Area
3268              Charlotte-Concord-Gastonia, NC-SC Metro Area
3269                Dallas-Fort Worth-Arlington, TX Metro Area
3270                Dallas-Fort Worth-Arlington, TX Metro Area
3271                                 Montgomery, AL Metro Area
3272    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3273                                       Hilo, HI Micro Area
3274             Los Angeles-Long Beach-Anaheim, CA Metro Area
3275                               Salisbury, MD-DE Metro Area
3276                                 San Angelo, TX Metro Area
3277                                  Marquette, MI Micro Area
3278                      Phoenix-Mesa-Chandler, AZ Metro Area
3279                       Beaumont-Port Arthur, TX Metro Area
3280                                  Anchorage, AK Metro Area
3281                                  Anchorage, AK Metro Area
3282                                  Anchorage, AK Metro Area
3283                    Seattle-Tacoma-Bellevue, WA Metro Area
3284                                                      <NA>
3285                                                      <NA>
3286          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3287          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3288                      Providence-Warwick, RI-MA Metro Area
3289                  San Antonio-New Braunfels, TX Metro Area
3290           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3291           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3292           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3293           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3294           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3295           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3296                                Gainesville, FL Metro Area
3297                                  Anchorage, AK Metro Area
3298                    Shreveport-Bossier City, LA Metro Area
3299                                    Bozeman, MT Micro Area
3300                               St. Louis, MO-IL Metro Area
3301   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3302                Dallas-Fort Worth-Arlington, TX Metro Area
3303                Dallas-Fort Worth-Arlington, TX Metro Area
3304                                    Salinas, CA Metro Area
3305              Charlotte-Concord-Gastonia, NC-SC Metro Area
3306              Charlotte-Concord-Gastonia, NC-SC Metro Area
3307   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3308   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3309                               Salisbury, MD-DE Metro Area
3310    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3311                     Denver-Aurora-Lakewood, CO Metro Area
3312                                    Lubbock, TX Metro Area
3313             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3314                  San Antonio-New Braunfels, TX Metro Area
3315             San Francisco-Oakland-Berkeley, CA Metro Area
3316          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3317          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3318           Houston-The Woodlands-Sugar Land, TX Metro Area
3319                             Urban Honolulu, HI Metro Area
3320             San Diego-Chula Vista-Carlsbad, CA Metro Area
3321                                      Minot, ND Micro Area
3322             San Francisco-Oakland-Berkeley, CA Metro Area
3323                  Baltimore-Columbia-Towson, MD Metro Area
3324   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3325                         Eugene-Springfield, OR Metro Area
3326                     Spokane-Spokane Valley, WA Metro Area
3327             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3328                    Omaha-Council Bluffs, NE-IA Metro Area
3329             Los Angeles-Long Beach-Anaheim, CA Metro Area
3330             San Diego-Chula Vista-Carlsbad, CA Metro Area
3331             San Diego-Chula Vista-Carlsbad, CA Metro Area
3332             Los Angeles-Long Beach-Anaheim, CA Metro Area
3333                               St. Louis, MO-IL Metro Area
3334            Tampa-St. Petersburg-Clearwater, FL Metro Area
3335                Charleston-North Charleston, SC Metro Area
3336                Dallas-Fort Worth-Arlington, TX Metro Area
3337                Dallas-Fort Worth-Arlington, TX Metro Area
3338                Dallas-Fort Worth-Arlington, TX Metro Area
3339           Houston-The Woodlands-Sugar Land, TX Metro Area
3340           Houston-The Woodlands-Sugar Land, TX Metro Area
3341           Houston-The Woodlands-Sugar Land, TX Metro Area
3342                                 Rapid City, SD Metro Area
3343              Charlotte-Concord-Gastonia, NC-SC Metro Area
3344              Charlotte-Concord-Gastonia, NC-SC Metro Area
3345          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3346     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3347    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3348        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3349    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3350    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3351                     Denver-Aurora-Lakewood, CO Metro Area
3352                     Denver-Aurora-Lakewood, CO Metro Area
3353                    Shreveport-Bossier City, LA Metro Area
3354    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3355             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3356           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3357   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3358                Dallas-Fort Worth-Arlington, TX Metro Area
3359                Dallas-Fort Worth-Arlington, TX Metro Area
3360                                     Peoria, IL Metro Area
3361                San Luis Obispo-Paso Robles, CA Metro Area
3362                      College Station-Bryan, TX Metro Area
3363        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3364    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3365                           Champaign-Urbana, IL Metro Area
3366           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3367           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3368                  Baltimore-Columbia-Towson, MD Metro Area
3369                    Detroit-Warren-Dearborn, MI Metro Area
3370             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3371                                Bakersfield, CA Metro Area
3372                Dallas-Fort Worth-Arlington, TX Metro Area
3373        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3374   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3375   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3376                     Denver-Aurora-Lakewood, CO Metro Area
3377                                                      <NA>
3378             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3379                         Kennewick-Richland, WA Metro Area
3380             San Francisco-Oakland-Berkeley, CA Metro Area
3381                                       Reno, NV Metro Area
3382                     Denver-Aurora-Lakewood, CO Metro Area
3383          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3384          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3385           Houston-The Woodlands-Sugar Land, TX Metro Area
3386               Indianapolis-Carmel-Anderson, IN Metro Area
3387             San Francisco-Oakland-Berkeley, CA Metro Area
3388                      Cape Coral-Fort Myers, FL Metro Area
3389               Las Vegas-Henderson-Paradise, NV Metro Area
3390                                   Amarillo, TX Metro Area
3391                Dallas-Fort Worth-Arlington, TX Metro Area
3392                Dallas-Fort Worth-Arlington, TX Metro Area
3393           Houston-The Woodlands-Sugar Land, TX Metro Area
3394                             Kansas City, MO-KS Metro Area
3395                             Salt Lake City, UT Metro Area
3396             Louisville/Jefferson County, KY-IN Metro Area
3397           Houston-The Woodlands-Sugar Land, TX Metro Area
3398              Charlotte-Concord-Gastonia, NC-SC Metro Area
3399           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3400                Dallas-Fort Worth-Arlington, TX Metro Area
3401          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3402           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3403                                Bloomington, IL Metro Area
3404                               Cedar Rapids, IA Metro Area
3405                    Detroit-Warren-Dearborn, MI Metro Area
3406          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3407                              Memphis, TN-MS-AR Metro Area
3408            Davenport-Moline-Rock Island, IA-IL Metro Area
3409                             Urban Honolulu, HI Metro Area
3410                    South Bend-Mishawaka, IN-MI Metro Area
3411               Austin-Round Rock-Georgetown, TX Metro Area
3412                                Spartanburg, SC Metro Area
3413                                    Durango, CO Micro Area
3414              Charlotte-Concord-Gastonia, NC-SC Metro Area
3415              Charlotte-Concord-Gastonia, NC-SC Metro Area
3416              Charlotte-Concord-Gastonia, NC-SC Metro Area
3417              Charlotte-Concord-Gastonia, NC-SC Metro Area
3418              Charlotte-Concord-Gastonia, NC-SC Metro Area
3419              Charlotte-Concord-Gastonia, NC-SC Metro Area
3420              Charlotte-Concord-Gastonia, NC-SC Metro Area
3421                Dallas-Fort Worth-Arlington, TX Metro Area
3422                Dallas-Fort Worth-Arlington, TX Metro Area
3423                Dallas-Fort Worth-Arlington, TX Metro Area
3424                Dallas-Fort Worth-Arlington, TX Metro Area
3425                Dallas-Fort Worth-Arlington, TX Metro Area
3426                                 Jackson, WY-ID Micro Area
3427                                Springfield, MO Metro Area
3428                                    Abilene, TX Metro Area
3429                    San Juan-Bayamón-Caguas, PR Metro Area
3430        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3431                                   Bismarck, ND Metro Area
3432                      Grand Rapids-Kentwood, MI Metro Area
3433                  Santa Maria-Santa Barbara, CA Metro Area
3434                                 Bellingham, WA Metro Area
3435                      Phoenix-Mesa-Chandler, AZ Metro Area
3436                Burlington-South Burlington, VT Metro Area
3437                  San Antonio-New Braunfels, TX Metro Area
3438                              Wichita Falls, TX Metro Area
3439             Los Angeles-Long Beach-Anaheim, CA Metro Area
3440                                 Pittsburgh, PA Metro Area
3441             Los Angeles-Long Beach-Anaheim, CA Metro Area
3442                Dallas-Fort Worth-Arlington, TX Metro Area
3443                      Phoenix-Mesa-Chandler, AZ Metro Area
3444           Riverside-San Bernardino-Ontario, CA Metro Area
3445            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3446            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3447            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3448            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3449                San Luis Obispo-Paso Robles, CA Metro Area
3450             San Diego-Chula Vista-Carlsbad, CA Metro Area
3451                    Seattle-Tacoma-Bellevue, WA Metro Area
3452                    Seattle-Tacoma-Bellevue, WA Metro Area
3453                    Seattle-Tacoma-Bellevue, WA Metro Area
3454                    Seattle-Tacoma-Bellevue, WA Metro Area
3455                    Seattle-Tacoma-Bellevue, WA Metro Area
3456                                                      <NA>
3457                                                      <NA>
3458             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3459             Los Angeles-Long Beach-Anaheim, CA Metro Area
3460          Hartford-East Hartford-Middletown, CT Metro Area
3461                 Boston-Cambridge-Newton, MA-NH Metro Area
3462                 Boston-Cambridge-Newton, MA-NH Metro Area
3463          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3464             Los Angeles-Long Beach-Anaheim, CA Metro Area
3465             Los Angeles-Long Beach-Anaheim, CA Metro Area
3466          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3467                    San Juan-Bayamón-Caguas, PR Metro Area
3468           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3469           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3470                             Grand Forks, ND-MN Metro Area
3471           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3472                                    Wichita, KS Metro Area
3473                 Boston-Cambridge-Newton, MA-NH Metro Area
3474                                    Bozeman, MT Micro Area
3475                                 Boise City, ID Metro Area
3476                                Tallahassee, FL Metro Area
3477                                   Columbia, SC Metro Area
3478                                      Minot, ND Micro Area
3479                                Lewiston, ID-WA Metro Area
3480                                    Medford, OR Metro Area
3481             Los Angeles-Long Beach-Anaheim, CA Metro Area
3482                             Kansas City, MO-KS Metro Area
3483                              Memphis, TN-MS-AR Metro Area
3484                                   Missoula, MT Metro Area
3485                           Glenwood Springs, CO Micro Area
3486        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3487            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3488                                      Tulsa, OK Metro Area
3489                                     Mobile, AL Metro Area
3490                              Traverse City, MI Micro Area
3491                           Dayton-Kettering, OH Metro Area
3492                Dallas-Fort Worth-Arlington, TX Metro Area
3493                Dallas-Fort Worth-Arlington, TX Metro Area
3494                Dallas-Fort Worth-Arlington, TX Metro Area
3495                Dallas-Fort Worth-Arlington, TX Metro Area
3496                                Gainesville, FL Metro Area
3497        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3498                                 Charleston, WV Metro Area
3499              Charlotte-Concord-Gastonia, NC-SC Metro Area
3500   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3501                                    Madison, WI Metro Area
3502     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3503    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3504                                   Bismarck, ND Metro Area
3505                                   Brainerd, MN Micro Area
3506                     Denver-Aurora-Lakewood, CO Metro Area
3507                     Denver-Aurora-Lakewood, CO Metro Area
3508                     Denver-Aurora-Lakewood, CO Metro Area
3509                     Denver-Aurora-Lakewood, CO Metro Area
3510                Dallas-Fort Worth-Arlington, TX Metro Area
3511                Dallas-Fort Worth-Arlington, TX Metro Area
3512                Dallas-Fort Worth-Arlington, TX Metro Area
3513   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3514                                   Appleton, WI Metro Area
3515                                  Marquette, MI Micro Area
3516        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3517        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3518                    Omaha-Council Bluffs, NE-IA Metro Area
3519             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3520             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3521            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3522            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3523                      Phoenix-Mesa-Chandler, AZ Metro Area
3524                      Phoenix-Mesa-Chandler, AZ Metro Area
3525                     Spokane-Spokane Valley, WA Metro Area
3526   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3527             San Diego-Chula Vista-Carlsbad, CA Metro Area
3528                San Luis Obispo-Paso Robles, CA Metro Area
3529                             Salt Lake City, UT Metro Area
3530                             Salt Lake City, UT Metro Area
3531                             Salt Lake City, UT Metro Area
3532                             Salt Lake City, UT Metro Area
3533                             Salt Lake City, UT Metro Area
3534                    Seattle-Tacoma-Bellevue, WA Metro Area
3535                                    Pullman, WA Micro Area
3536                  Santa Maria-Santa Barbara, CA Metro Area
3537                    Seattle-Tacoma-Bellevue, WA Metro Area
3538                    Seattle-Tacoma-Bellevue, WA Metro Area
3539                     Denver-Aurora-Lakewood, CO Metro Area
3540   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3541   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3542           Houston-The Woodlands-Sugar Land, TX Metro Area
3543                                  Knoxville, TN Metro Area
3544                                                      <NA>
3545                                   Syracuse, NY Metro Area
3546             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3547                                    Jackson, MS Metro Area
3548                                       Reno, NV Metro Area
3549             San Francisco-Oakland-Berkeley, CA Metro Area
3550             San Francisco-Oakland-Berkeley, CA Metro Area
3551             Los Angeles-Long Beach-Anaheim, CA Metro Area
3552                                 Charleston, WV Metro Area
3553                             Grand Junction, CO Metro Area
3554                Dallas-Fort Worth-Arlington, TX Metro Area
3555                     Denver-Aurora-Lakewood, CO Metro Area
3556        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3557                      Grand Rapids-Kentwood, MI Metro Area
3558           Houston-The Woodlands-Sugar Land, TX Metro Area
3559               Las Vegas-Henderson-Paradise, NV Metro Area
3560                      Phoenix-Mesa-Chandler, AZ Metro Area
3561                                 Pittsburgh, PA Metro Area
3562                Sacramento-Roseville-Folsom, CA Metro Area
3563                               St. Louis, MO-IL Metro Area
3564                               St. Louis, MO-IL Metro Area
3565                Sacramento-Roseville-Folsom, CA Metro Area
3566   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3567           Houston-The Woodlands-Sugar Land, TX Metro Area
3568           Houston-The Woodlands-Sugar Land, TX Metro Area
3569                  Santa Maria-Santa Barbara, CA Metro Area
3570              Charlotte-Concord-Gastonia, NC-SC Metro Area
3571                      Grand Rapids-Kentwood, MI Metro Area
3572    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3573             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3574                           Dayton-Kettering, OH Metro Area
3575    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3576                     Denver-Aurora-Lakewood, CO Metro Area
3577                                 Boise City, ID Metro Area
3578           Houston-The Woodlands-Sugar Land, TX Metro Area
3579                         Eugene-Springfield, OR Metro Area
3580           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3581           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3582                 Des Moines-West Des Moines, IA Metro Area
3583                    Detroit-Warren-Dearborn, MI Metro Area
3584          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3585          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3586        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3587        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3588                                  Knoxville, TN Metro Area
3589                                Springfield, MO Metro Area
3590                                    Bozeman, MT Micro Area
3591                San Luis Obispo-Paso Robles, CA Metro Area
3592              Charlotte-Concord-Gastonia, NC-SC Metro Area
3593                                   Missoula, MT Metro Area
3594                                Panama City, FL Metro Area
3595                Dallas-Fort Worth-Arlington, TX Metro Area
3596                Dallas-Fort Worth-Arlington, TX Metro Area
3597                Dallas-Fort Worth-Arlington, TX Metro Area
3598                 Des Moines-West Des Moines, IA Metro Area
3599                         Eugene-Springfield, OR Metro Area
3600                        Buffalo-Cheektowaga, NY Metro Area
3601                                    Edwards, CO Micro Area
3602                      Phoenix-Mesa-Chandler, AZ Metro Area
3603                                Bloomington, IL Metro Area
3604                                   Key West, FL Micro Area
3605                                                      <NA>
3606                                  Anchorage, AK Metro Area
3607                                 Boise City, ID Metro Area
3608                Dallas-Fort Worth-Arlington, TX Metro Area
3609                             Urban Honolulu, HI Metro Area
3610             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3611            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3612            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3613            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3614             San Diego-Chula Vista-Carlsbad, CA Metro Area
3615                    Seattle-Tacoma-Bellevue, WA Metro Area
3616                                     Tucson, AZ Metro Area
3617                 Boston-Cambridge-Newton, MA-NH Metro Area
3618          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3619           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3620           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3621                    South Bend-Mishawaka, IN-MI Metro Area
3622        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3623                                   Columbus, MS Micro Area
3624                             Salt Lake City, UT Metro Area
3625                Dallas-Fort Worth-Arlington, TX Metro Area
3626                Dallas-Fort Worth-Arlington, TX Metro Area
3627                Dallas-Fort Worth-Arlington, TX Metro Area
3628                Dallas-Fort Worth-Arlington, TX Metro Area
3629                  San Antonio-New Braunfels, TX Metro Area
3630       Little Rock-North Little Rock-Conway, AR Metro Area
3631        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3632  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3633                          Aguadilla-Isabela, PR Metro Area
3634                                   Columbia, SC Metro Area
3635              Charlotte-Concord-Gastonia, NC-SC Metro Area
3636   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3637                                Sioux Falls, SD Metro Area
3638                          Manchester-Nashua, NH Metro Area
3639    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3640                                Albuquerque, NM Metro Area
3641                                   Billings, MT Metro Area
3642                Dallas-Fort Worth-Arlington, TX Metro Area
3643                Dallas-Fort Worth-Arlington, TX Metro Area
3644                    Detroit-Warren-Dearborn, MI Metro Area
3645                    Detroit-Warren-Dearborn, MI Metro Area
3646                     Spokane-Spokane Valley, WA Metro Area
3647        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3648             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3649                                    Edwards, CO Micro Area
3650             San Francisco-Oakland-Berkeley, CA Metro Area
3651             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3652                             Salt Lake City, UT Metro Area
3653                             Salt Lake City, UT Metro Area
3654                             Salt Lake City, UT Metro Area
3655               Las Vegas-Henderson-Paradise, NV Metro Area
3656             San Diego-Chula Vista-Carlsbad, CA Metro Area
3657                    Seattle-Tacoma-Bellevue, WA Metro Area
3658                     Denver-Aurora-Lakewood, CO Metro Area
3659                Hilton Head Island-Bluffton, SC Metro Area
3660             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3661                 Pensacola-Ferry Pass-Brent, FL Metro Area
3662                                     Helena, MT Micro Area
3663                                   Key West, FL Micro Area
3664                  San Antonio-New Braunfels, TX Metro Area
3665                            Gulfport-Biloxi, MS Metro Area
3666             Los Angeles-Long Beach-Anaheim, CA Metro Area
3667   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3668          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3669                  Orlando-Kissimmee-Sanford, FL Metro Area
3670             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3671             San Francisco-Oakland-Berkeley, CA Metro Area
3672             San Francisco-Oakland-Berkeley, CA Metro Area
3673             San Francisco-Oakland-Berkeley, CA Metro Area
3674                      Phoenix-Mesa-Chandler, AZ Metro Area
3675                                    Wichita, KS Metro Area
3676              Charlotte-Concord-Gastonia, NC-SC Metro Area
3677                Sacramento-Roseville-Folsom, CA Metro Area
3678                               St. Louis, MO-IL Metro Area
3679                Dallas-Fort Worth-Arlington, TX Metro Area
3680                                   Fargo, ND-MN Metro Area
3681                                Sioux Falls, SD Metro Area
3682           Houston-The Woodlands-Sugar Land, TX Metro Area
3683           Houston-The Woodlands-Sugar Land, TX Metro Area
3684            Davenport-Moline-Rock Island, IA-IL Metro Area
3685                               Raleigh-Cary, NC Metro Area
3686   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3687   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3688          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3689                              Memphis, TN-MS-AR Metro Area
3690    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3691             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3692              Charlotte-Concord-Gastonia, NC-SC Metro Area
3693              Charlotte-Concord-Gastonia, NC-SC Metro Area
3694    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3695    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3696           Houston-The Woodlands-Sugar Land, TX Metro Area
3697                                     Mobile, AL Metro Area
3698           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3699                    Detroit-Warren-Dearborn, MI Metro Area
3700                                  Anchorage, AK Metro Area
3701                                     Bangor, ME Metro Area
3702              Charlotte-Concord-Gastonia, NC-SC Metro Area
3703        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3704                                    Lubbock, TX Metro Area
3705                Dallas-Fort Worth-Arlington, TX Metro Area
3706                Dallas-Fort Worth-Arlington, TX Metro Area
3707                Dallas-Fort Worth-Arlington, TX Metro Area
3708                Dallas-Fort Worth-Arlington, TX Metro Area
3709                Dallas-Fort Worth-Arlington, TX Metro Area
3710                Dallas-Fort Worth-Arlington, TX Metro Area
3711                Dallas-Fort Worth-Arlington, TX Metro Area
3712                Dallas-Fort Worth-Arlington, TX Metro Area
3713                Dallas-Fort Worth-Arlington, TX Metro Area
3714                         Milwaukee-Waukesha, WI Metro Area
3715          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3716          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3717                        Buffalo-Cheektowaga, NY Metro Area
3718                          Steamboat Springs, CO Micro Area
3719        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3720     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
3721                                   Savannah, GA Metro Area
3722                    San Juan-Bayamón-Caguas, PR Metro Area
3723                                Springfield, MO Metro Area
3724                             Salt Lake City, UT Metro Area
3725                                  Anchorage, AK Metro Area
3726                                                      <NA>
3727                                                      <NA>
3728          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3729               Las Vegas-Henderson-Paradise, NV Metro Area
3730                    San Juan-Bayamón-Caguas, PR Metro Area
3731            Tampa-St. Petersburg-Clearwater, FL Metro Area
3732           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3733                              Memphis, TN-MS-AR Metro Area
3734          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3735                Dallas-Fort Worth-Arlington, TX Metro Area
3736                Dallas-Fort Worth-Arlington, TX Metro Area
3737        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3738                              Oklahoma City, OK Metro Area
3739                         Milwaukee-Waukesha, WI Metro Area
3740                               Cedar Rapids, IA Metro Area
3741              Charlotte-Concord-Gastonia, NC-SC Metro Area
3742              Charlotte-Concord-Gastonia, NC-SC Metro Area
3743   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3744   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3745                              Memphis, TN-MS-AR Metro Area
3746                    Albany-Schenectady-Troy, NY Metro Area
3747                Dallas-Fort Worth-Arlington, TX Metro Area
3748           Houston-The Woodlands-Sugar Land, TX Metro Area
3749             Los Angeles-Long Beach-Anaheim, CA Metro Area
3750                                Lewiston, ID-WA Metro Area
3751             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3752             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3753             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3754                      Phoenix-Mesa-Chandler, AZ Metro Area
3755                San Luis Obispo-Paso Robles, CA Metro Area
3756             San Francisco-Oakland-Berkeley, CA Metro Area
3757                             Salt Lake City, UT Metro Area
3758                                                      <NA>
3759                                 Huntsville, AL Metro Area
3760                      Brownsville-Harlingen, TX Metro Area
3761   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3762           Houston-The Woodlands-Sugar Land, TX Metro Area
3763             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3764             San Francisco-Oakland-Berkeley, CA Metro Area
3765                                Albuquerque, NM Metro Area
3766 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3767 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
3768                  Baltimore-Columbia-Towson, MD Metro Area
3769                  Baltimore-Columbia-Towson, MD Metro Area
3770                     Denver-Aurora-Lakewood, CO Metro Area
3771                               Jacksonville, FL Metro Area
3772                          Steamboat Springs, CO Micro Area
3773           Houston-The Woodlands-Sugar Land, TX Metro Area
3774               Las Vegas-Henderson-Paradise, NV Metro Area
3775               Las Vegas-Henderson-Paradise, NV Metro Area
3776               Las Vegas-Henderson-Paradise, NV Metro Area
3777               Las Vegas-Henderson-Paradise, NV Metro Area
3778               Las Vegas-Henderson-Paradise, NV Metro Area
3779       Little Rock-North Little Rock-Conway, AR Metro Area
3780                  Orlando-Kissimmee-Sanford, FL Metro Area
3781             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3782                          Manchester-Nashua, NH Metro Area
3783                          Manchester-Nashua, NH Metro Area
3784                         Milwaukee-Waukesha, WI Metro Area
3785            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3786            Portland-Vancouver-Hillsboro, OR-WA Metro Area
3787                      Phoenix-Mesa-Chandler, AZ Metro Area
3788                      Phoenix-Mesa-Chandler, AZ Metro Area
3789                  San Antonio-New Braunfels, TX Metro Area
3790             Louisville/Jefferson County, KY-IN Metro Area
3791                Sacramento-Roseville-Folsom, CA Metro Area
3792                Sacramento-Roseville-Folsom, CA Metro Area
3793                               St. Louis, MO-IL Metro Area
3794                Dallas-Fort Worth-Arlington, TX Metro Area
3795                Dallas-Fort Worth-Arlington, TX Metro Area
3796                    Detroit-Warren-Dearborn, MI Metro Area
3797                                 Huntsville, AL Metro Area
3798                      Phoenix-Mesa-Chandler, AZ Metro Area
3799                      Phoenix-Mesa-Chandler, AZ Metro Area
3800              Charlotte-Concord-Gastonia, NC-SC Metro Area
3801          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3802                               Raleigh-Cary, NC Metro Area
3803             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3804   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3805                              Oklahoma City, OK Metro Area
3806                               Worcester, MA-CT Metro Area
3807                                   Billings, MT Metro Area
3808                Hilton Head Island-Bluffton, SC Metro Area
3809                  Baltimore-Columbia-Towson, MD Metro Area
3810        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3811                Charleston-North Charleston, SC Metro Area
3812        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3813          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3814                               Worcester, MA-CT Metro Area
3815                               Worcester, MA-CT Metro Area
3816                    San Juan-Bayamón-Caguas, PR Metro Area
3817                                                      <NA>
3818                                    Madison, WI Metro Area
3819                                Bloomington, IL Metro Area
3820                        Buffalo-Cheektowaga, NY Metro Area
3821                     Denver-Aurora-Lakewood, CO Metro Area
3822                     Denver-Aurora-Lakewood, CO Metro Area
3823                     Denver-Aurora-Lakewood, CO Metro Area
3824                 Des Moines-West Des Moines, IA Metro Area
3825                                    Durango, CO Micro Area
3826                                Sioux Falls, SD Metro Area
3827                      Brownsville-Harlingen, TX Metro Area
3828    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3829          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3830          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3831               Las Vegas-Henderson-Paradise, NV Metro Area
3832                  Orlando-Kissimmee-Sanford, FL Metro Area
3833                  Orlando-Kissimmee-Sanford, FL Metro Area
3834             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3835        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3836                    Portland-South Portland, ME Metro Area
3837                    Portland-South Portland, ME Metro Area
3838                               Raleigh-Cary, NC Metro Area
3839                               Raleigh-Cary, NC Metro Area
3840                      Cape Coral-Fort Myers, FL Metro Area
3841           Poughkeepsie-Newburgh-Middletown, NY Metro Area
3842           Poughkeepsie-Newburgh-Middletown, NY Metro Area
3843                                   Syracuse, NY Metro Area
3844            Tampa-St. Petersburg-Clearwater, FL Metro Area
3845                          Trenton-Princeton, NJ Metro Area
3846                          Trenton-Princeton, NJ Metro Area
3847                          Trenton-Princeton, NJ Metro Area
3848                          Trenton-Princeton, NJ Metro Area
3849                Charleston-North Charleston, SC Metro Area
3850                    Atlantic City-Hammonton, NJ Metro Area
3851                    Atlantic City-Hammonton, NJ Metro Area
3852                                      Akron, OH Metro Area
3853                                   Columbus, OH Metro Area
3854        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3855        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3856               Indianapolis-Carmel-Anderson, IN Metro Area
3857               Las Vegas-Henderson-Paradise, NV Metro Area
3858             Los Angeles-Long Beach-Anaheim, CA Metro Area
3859                                 Pittsburgh, PA Metro Area
3860          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3861                  Orlando-Kissimmee-Sanford, FL Metro Area
3862                  Orlando-Kissimmee-Sanford, FL Metro Area
3863                  Orlando-Kissimmee-Sanford, FL Metro Area
3864  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3865  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3866  Myrtle Beach-Conway-North Myrtle Beach, SC-NC Metro Area
3867                                                      <NA>
3868             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3869    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3870                      Cape Coral-Fort Myers, FL Metro Area
3871                      Cape Coral-Fort Myers, FL Metro Area
3872             Louisville/Jefferson County, KY-IN Metro Area
3873                                  Knoxville, TN Metro Area
3874             Los Angeles-Long Beach-Anaheim, CA Metro Area
3875             San Francisco-Oakland-Berkeley, CA Metro Area
3876                     Denver-Aurora-Lakewood, CO Metro Area
3877              Allentown-Bethlehem-Easton, PA-NJ Metro Area
3878             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3879                    Detroit-Warren-Dearborn, MI Metro Area
3880                                   Savannah, GA Metro Area
3881                                       Hilo, HI Micro Area
3882           Houston-The Woodlands-Sugar Land, TX Metro Area
3883                               Worcester, MA-CT Metro Area
3884                           Cleveland-Elyria, OH Metro Area
3885                                  Asheville, NC Metro Area
3886        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3887        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3888        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
3889        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3890                                Punta Gorda, FL Metro Area
3891           Houston-The Woodlands-Sugar Land, TX Metro Area
3892                             Urban Honolulu, HI Metro Area
3893          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3894                                  Anchorage, AK Metro Area
3895                                  Anchorage, AK Metro Area
3896           Houston-The Woodlands-Sugar Land, TX Metro Area
3897             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
3898             San Jose-Sunnyvale-Santa Clara, CA Metro Area
3899           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3900                    Detroit-Warren-Dearborn, MI Metro Area
3901              Charlotte-Concord-Gastonia, NC-SC Metro Area
3902              Charlotte-Concord-Gastonia, NC-SC Metro Area
3903              Charlotte-Concord-Gastonia, NC-SC Metro Area
3904                Dallas-Fort Worth-Arlington, TX Metro Area
3905                      Phoenix-Mesa-Chandler, AZ Metro Area
3906                                  Anchorage, AK Metro Area
3907                                                      <NA>
3908                    Seattle-Tacoma-Bellevue, WA Metro Area
3909        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3910                                                      <NA>
3911           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3912           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3913           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3914               Las Vegas-Henderson-Paradise, NV Metro Area
3915                                     Casper, WY Metro Area
3916                                   Aberdeen, SD Micro Area
3917          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3918                      Greensboro-High Point, NC Metro Area
3919                                   Billings, MT Metro Area
3920                                Baton Rouge, LA Metro Area
3921                                 Charleston, WV Metro Area
3922   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3923                                Spartanburg, SC Metro Area
3924    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3925    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3926    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3927                                   Gillette, WY Micro Area
3928                     Denver-Aurora-Lakewood, CO Metro Area
3929                     Denver-Aurora-Lakewood, CO Metro Area
3930                     Denver-Aurora-Lakewood, CO Metro Area
3931                     Denver-Aurora-Lakewood, CO Metro Area
3932                Dallas-Fort Worth-Arlington, TX Metro Area
3933                Dallas-Fort Worth-Arlington, TX Metro Area
3934                      Phoenix-Mesa-Chandler, AZ Metro Area
3935                                     Hailey, ID Micro Area
3936                         Eugene-Springfield, OR Metro Area
3937                                 Twin Falls, ID Metro Area
3938                                Albuquerque, NM Metro Area
3939             San Francisco-Oakland-Berkeley, CA Metro Area
3940           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3941                        Buffalo-Cheektowaga, NY Metro Area
3942                        Buffalo-Cheektowaga, NY Metro Area
3943                  Baltimore-Columbia-Towson, MD Metro Area
3944                                   Columbus, OH Metro Area
3945                                   Columbus, OH Metro Area
3946                Dallas-Fort Worth-Arlington, TX Metro Area
3947                Dallas-Fort Worth-Arlington, TX Metro Area
3948                      Grand Rapids-Kentwood, MI Metro Area
3949                      Phoenix-Mesa-Chandler, AZ Metro Area
3950                                Panama City, FL Metro Area
3951             Louisville/Jefferson County, KY-IN Metro Area
3952                               Cedar Rapids, IA Metro Area
3953                Dallas-Fort Worth-Arlington, TX Metro Area
3954           Houston-The Woodlands-Sugar Land, TX Metro Area
3955           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3956                           Dayton-Kettering, OH Metro Area
3957   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
3958                Burlington-South Burlington, VT Metro Area
3959    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3960          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3961                                 Montgomery, AL Metro Area
3962                                    Durango, CO Micro Area
3963                                   Florence, SC Metro Area
3964                                 Huntsville, AL Metro Area
3965        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3966                Charleston-North Charleston, SC Metro Area
3967                                     Laredo, TX Metro Area
3968                           Cincinnati, OH-KY-IN Metro Area
3969    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
3970                      Greensboro-High Point, NC Metro Area
3971                Dallas-Fort Worth-Arlington, TX Metro Area
3972                                Bloomington, IL Metro Area
3973                      La Crosse-Onalaska, WI-MN Metro Area
3974                                Bakersfield, CA Metro Area
3975                    South Bend-Mishawaka, IN-MI Metro Area
3976                                  Rochester, NY Metro Area
3977          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3978           Riverside-San Bernardino-Ontario, CA Metro Area
3979                       Kingsport-Bristol, TN-VA Metro Area
3980                Burlington-South Burlington, VT Metro Area
3981                                  Rochester, MN Metro Area
3982        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3983                                    Del Rio, TX Micro Area
3984                                 Charleston, WV Metro Area
3985                              Evansville, IN-KY Metro Area
3986                                Great Falls, MT Metro Area
3987           Riverside-San Bernardino-Ontario, CA Metro Area
3988                                       Reno, NV Metro Area
3989          New York-Newark-Jersey City, NY-NJ-PA Metro Area
3990                    Portland-South Portland, ME Metro Area
3991                Charleston-North Charleston, SC Metro Area
3992                                                      <NA>
3993           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
3994                                   Appleton, WI Metro Area
3995                    Albany-Schenectady-Troy, NY Metro Area
3996                                    Wichita, KS Metro Area
3997                                  Rochester, MN Metro Area
3998        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
3999                              Wausau-Weston, WI Metro Area
4000                             Chattanooga, TN-GA Metro Area
4001                               Jacksonville, FL Metro Area
4002          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4003              Charlotte-Concord-Gastonia, NC-SC Metro Area
4004                       New Orleans-Metairie, LA Metro Area
4005           Houston-The Woodlands-Sugar Land, TX Metro Area
4006                  Orlando-Kissimmee-Sanford, FL Metro Area
4007             San Francisco-Oakland-Berkeley, CA Metro Area
4008        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4009           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4010           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4011                      Phoenix-Mesa-Chandler, AZ Metro Area
4012                     Spokane-Spokane Valley, WA Metro Area
4013                    Detroit-Warren-Dearborn, MI Metro Area
4014                                      Kapaa, HI Micro Area
4015              Charlotte-Concord-Gastonia, NC-SC Metro Area
4016   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4017              Charlotte-Concord-Gastonia, NC-SC Metro Area
4018        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4019        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4020             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4021            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4022             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4023              Charlotte-Concord-Gastonia, NC-SC Metro Area
4024    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4025    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4026   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4027                                     Monroe, LA Metro Area
4028   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4029                             Salt Lake City, UT Metro Area
4030                             Urban Honolulu, HI Metro Area
4031             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4032                      Cape Coral-Fort Myers, FL Metro Area
4033                             Urban Honolulu, HI Metro Area
4034           Houston-The Woodlands-Sugar Land, TX Metro Area
4035           Houston-The Woodlands-Sugar Land, TX Metro Area
4036                                   Escanaba, MI Micro Area
4037   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4038                                                      <NA>
4039                      Phoenix-Mesa-Chandler, AZ Metro Area
4040                             Salt Lake City, UT Metro Area
4041                                  Watertown, SD Micro Area
4042             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4043                               St. Louis, MO-IL Metro Area
4044                Dallas-Fort Worth-Arlington, TX Metro Area
4045                    Kahului-Wailuku-Lahaina, HI Metro Area
4046             Los Angeles-Long Beach-Anaheim, CA Metro Area
4047                  Orlando-Kissimmee-Sanford, FL Metro Area
4048                  Baltimore-Columbia-Towson, MD Metro Area
4049             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4050           Houston-The Woodlands-Sugar Land, TX Metro Area
4051                                       Hilo, HI Micro Area
4052                             Salt Lake City, UT Metro Area
4053                                  Anchorage, AK Metro Area
4054           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4055                    Kahului-Wailuku-Lahaina, HI Metro Area
4056              Charlotte-Concord-Gastonia, NC-SC Metro Area
4057             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4058             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4059              Charlotte-Concord-Gastonia, NC-SC Metro Area
4060              Charlotte-Concord-Gastonia, NC-SC Metro Area
4061               Austin-Round Rock-Georgetown, TX Metro Area
4062             Los Angeles-Long Beach-Anaheim, CA Metro Area
4063                                 Pittsburgh, PA Metro Area
4064             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4065                Dallas-Fort Worth-Arlington, TX Metro Area
4066                                 Pittsburgh, PA Metro Area
4067                                  Anchorage, AK Metro Area
4068            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4069            Portland-Vancouver-Hillsboro, OR-WA Metro Area
4070                      Cape Coral-Fort Myers, FL Metro Area
4071                    Seattle-Tacoma-Bellevue, WA Metro Area
4072                  Orlando-Kissimmee-Sanford, FL Metro Area
4073                       New Orleans-Metairie, LA Metro Area
4074           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4075           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
4076                                       Reno, NV Metro Area
4077                             Salt Lake City, UT Metro Area
4078          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4079              Charlotte-Concord-Gastonia, NC-SC Metro Area
4080                                   Richmond, VA Metro Area
4081              Charlotte-Concord-Gastonia, NC-SC Metro Area
4082              Charlotte-Concord-Gastonia, NC-SC Metro Area
4083                                     Ithaca, NY Metro Area
4084    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4085                           Glenwood Springs, CO Micro Area
4086                Dallas-Fort Worth-Arlington, TX Metro Area
4087             Los Angeles-Long Beach-Anaheim, CA Metro Area
4088                                                      <NA>
4089               Austin-Round Rock-Georgetown, TX Metro Area
4090              North Port-Sarasota-Bradenton, FL Metro Area
4091                                 St. George, UT Metro Area
4092             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4093    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4094    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4095           Houston-The Woodlands-Sugar Land, TX Metro Area
4096                                  Anchorage, AK Metro Area
4097                     Denver-Aurora-Lakewood, CO Metro Area
4098                                  Green Bay, WI Metro Area
4099          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4100               Las Vegas-Henderson-Paradise, NV Metro Area
4101                  Orlando-Kissimmee-Sanford, FL Metro Area
4102                  Orlando-Kissimmee-Sanford, FL Metro Area
4103                  Orlando-Kissimmee-Sanford, FL Metro Area
4104                  Orlando-Kissimmee-Sanford, FL Metro Area
4105        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
4106                                    Madison, WI Metro Area
4107                                   Syracuse, NY Metro Area
4108                                                      <NA>
4109              Charlotte-Concord-Gastonia, NC-SC Metro Area
4110                Dallas-Fort Worth-Arlington, TX Metro Area
4111                                Spartanburg, SC Metro Area
4112                                                      <NA>
4113                                                      <NA>
4114                 Boston-Cambridge-Newton, MA-NH Metro Area
4115             San Jose-Sunnyvale-Santa Clara, CA Metro Area
4116                           Cincinnati, OH-KY-IN Metro Area
4117                                 Twin Falls, ID Metro Area
4118                                      Ozark, AL Micro Area
4119                                Great Falls, MT Metro Area
4120                           Butte-Silver Bow, MT Micro Area
4121                                 Charleston, WV Metro Area
4122                             Salt Lake City, UT Metro Area
4123                Dallas-Fort Worth-Arlington, TX Metro Area
4124              Charlotte-Concord-Gastonia, NC-SC Metro Area
4125              Charlotte-Concord-Gastonia, NC-SC Metro Area
4126              Charlotte-Concord-Gastonia, NC-SC Metro Area
4127    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
4128                                Tallahassee, FL Metro Area
4129                Dallas-Fort Worth-Arlington, TX Metro Area
4130                    Detroit-Warren-Dearborn, MI Metro Area
4131                                  Marquette, MI Micro Area
4132             Los Angeles-Long Beach-Anaheim, CA Metro Area
4133                        Santa Rosa-Petaluma, CA Metro Area
4134                                                      <NA>
4135        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4136                              Oklahoma City, OK Metro Area
4137                                 St. George, UT Metro Area
4138                      Brownsville-Harlingen, TX Metro Area
4139          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4140             Los Angeles-Long Beach-Anaheim, CA Metro Area
4141             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
4142                                Albuquerque, NM Metro Area
4143                    San Juan-Bayamón-Caguas, PR Metro Area
4144               Austin-Round Rock-Georgetown, TX Metro Area
4145                Dallas-Fort Worth-Arlington, TX Metro Area
4146           Houston-The Woodlands-Sugar Land, TX Metro Area
4147           Houston-The Woodlands-Sugar Land, TX Metro Area
4148             Los Angeles-Long Beach-Anaheim, CA Metro Area
4149            Tampa-St. Petersburg-Clearwater, FL Metro Area
4150                Dallas-Fort Worth-Arlington, TX Metro Area
4151              Charlotte-Concord-Gastonia, NC-SC Metro Area
4152                                    Bozeman, MT Micro Area
4153             Fayetteville-Springdale-Rogers, AR Metro Area
4154          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4155        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4156                 Boston-Cambridge-Newton, MA-NH Metro Area
4157          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4158          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4159          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4160          New York-Newark-Jersey City, NY-NJ-PA Metro Area
4161     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
4162                                 Jackson, WY-ID Micro Area
4163                Dallas-Fort Worth-Arlington, TX Metro Area
4164                                    El Paso, TX Metro Area
4165                                Spartanburg, SC Metro Area
4166                                 Montgomery, AL Metro Area
     total_populationE.y total_populationM.y age_distributionE.y
1                4375604                  NA             2148947
2                4375604                  NA             2148947
3                4375604                  NA             2148947
4                4375604                  NA             2148947
5                4692242                  NA             2342253
6                4864209                  NA             2434382
7                4375604                  NA             2148947
8                6123949                  NA             3001027
9                4375604                  NA             2148947
10               4375604                  NA             2148947
11               4375604                  NA             2148947
12               4375604                  NA             2148947
13               2505312                  NA             1250855
14               4864209                  NA             2434382
15               1981584                  NA             1011796
16               1981584                  NA             1011796
17               4375604                  NA             2148947
18                812506                  NA              397560
19               1163462                  NA              568061
20                181055                  NA               90237
21               3678328                  NA             1837913
22               4610050                  NA             2315218
23               1670949                  NA              818990
24               1613587                  NA              790463
25               6123949                  NA             3001027
26                469484                  NA              227358
27              19908595                  NA             9713298
28                 82044                  NA               42677
29                591397                  NA              285117
30              13111917                  NA             6515114
31               2505312                  NA             1250855
32               1420825                  NA              698689
33               2394673                  NA             1181313
34               6123949                  NA             3001027
35               4692242                  NA             2342253
36               2959386                  NA             1493164
37              19908595                  NA             9713298
38               3289701                  NA             1667851
39               4001701                  NA             2024424
40               3289701                  NA             1667851
41               2394673                  NA             1181313
42                304252                  NA              154587
43              19908595                  NA             9713298
44              19908595                  NA             9713298
45               6094752                  NA             2965233
46               7673379                  NA             3806912
47                479865                  NA              235485
48               2296377                  NA             1160944
49               2253528                  NA             1113732
50               2190750                  NA             1084347
51               9566955                  NA             4718471
52               3289701                  NA             1667851
53                658694                  NA              322943
54               6123949                  NA             3001027
55               1010100                  NA              512085
56               1163462                  NA              568061
57                277944                  NA              140783
58                119685                  NA               62534
59               4001701                  NA             2024424
60                711490                  NA              355020
61               4912449                  NA             2407307
62              19908595                  NA             9713298
63                251635                  NA              126980
64               6094752                  NA             2965233
65               6346083                  NA             3128067
66              19908595                  NA             9713298
67               1264357                  NA              612537
68               2570862                  NA             1280273
69              13111917                  NA             6515114
70               1008280                  NA              506526
71                158478                  NA               79833
72               4610050                  NA             2315218
73                416839                  NA              205169
74               4912449                  NA             2407307
75               2679298                  NA             1318555
76                330119                  NA              161252
77                901729                  NA              444836
78               1215703                 422              594920
79               4375604                  NA             2148947
80               1568940                  NA              770847
81               7673379                  NA             3806912
82               1335804                  NA              641128
83               2840005                  NA             1374325
84               2137223                  NA             1061042
85               1264357                  NA              612537
86               1798025                  NA              886709
87               2365501                  NA             1162773
88               6123949                  NA             3001027
89               2679298                  NA             1318555
90               2265926                  NA             1137581
91               3289701                  NA             1667851
92               2394673                  NA             1181313
93               1420825                  NA              698689
94               2137223                  NA             1061042
95               2679298                  NA             1318555
96               2505312                  NA             1250855
97                966688                  NA              483251
98                676035                  NA              330879
99               2109957                  NA             1038760
100             19908595                  NA             9713298
101              1254675                  NA              635422
102               844461                  NA              407362
103               288639                  NA              146836
104              4912449                  NA             2407307
105              2109957                  NA             1038760
106              1042393                  NA              516095
107             13111917                  NA             6515114
108             13111917                  NA             6515114
109              9566955                  NA             4718471
110               775169                  NA              372915
111              2079759                  NA             1012336
112              1087068                  NA              546278
113              6232894                  NA             3033772
114             13111917                  NA             6515114
115              7142603                  NA             3563435
116               261426                  NA              128595
117             19908595                  NA             9713298
118             19908595                  NA             9713298
119              2959386                  NA             1493164
120               202163                  NA              100828
121             19908595                  NA             9713298
122             19908595                  NA             9713298
123             19908595                  NA             9713298
124             19908595                  NA             9713298
125             19908595                  NA             9713298
126                73511                  NA               36809
127              1254675                  NA              635422
128             13111917                  NA             6515114
129               585485                  NA              292820
130               585485                  NA              292820
131                35159                  NA               18160
132              4692242                  NA             2342253
133               755081                  NA              384572
134             19908595                  NA             9713298
135             19908595                  NA             9713298
136               490769                  NA              249622
137               771602                  NA              388362
138               203686                  NA              113368
139              2253528                  NA             1113732
140               658694                  NA              322943
141              2079759                  NA             1012336
142              3194310                  NA             1562880
143               658694                  NA              322943
144              2265926                  NA             1137581
145               291491                  NA              148126
146              1215703                 422              594920
147             19908595                  NA             9713298
148              2296377                  NA             1160944
149              2265926                  NA             1137581
150               612898                  NA              299409
151              1316145                  NA              640643
152              2570862                  NA             1280273
153             13111917                  NA             6515114
154             19908595                  NA             9713298
155              4912449                  NA             2407307
156             13111917                  NA             6515114
157              1215703                 422              594920
158              1163462                  NA              568061
159             19908595                  NA             9713298
160              1316145                  NA              640643
161             13111917                  NA             6515114
162              1163462                  NA              568061
163              1316145                  NA              640643
164              2679298                  NA             1318555
165             13111917                  NA             6515114
166               399335                  NA              205955
167               105950                  NA               53095
168             13111917                  NA             6515114
169               118541                  NA               59633
170                25381                 138               13207
171              1428923                  NA              708697
172              1087068                  NA              546278
173             13111917                  NA             6515114
174              4864209                  NA             2434382
175              3289701                  NA             1667851
176              4001701                  NA             2024424
177             19908595                  NA             9713298
178               771602                  NA              388362
179               585485                  NA              292820
180              4864209                  NA             2434382
181              4692242                  NA             2342253
182              2394673                  NA             1181313
183             19908595                  NA             9713298
184             19908595                  NA             9713298
185             19908595                  NA             9713298
186              4912449                  NA             2407307
187               749290                  NA              363653
188               869755                  NA              427134
189              2505312                  NA             1250855
190               515954                  NA              253400
191              1010100                  NA              512085
192              6346083                  NA             3128067
193              2813523                  NA             1375126
194              2679298                  NA             1318555
195               139042                  NA               68498
196              2679298                  NA             1318555
197              2679298                  NA             1318555
198               328011                  NA              164852
199              3194310                  NA             1562880
200              1042393                  NA              516095
201              2959386                  NA             1493164
202              4692242                  NA             2342253
203               884359                  NA              435364
204               275693                  NA              137408
205              2959386                  NA             1493164
206               113854                  NA               53949
207               772902                  NA              380685
208               330119                  NA              161252
209              6346083                  NA             3128067
210              6123949                  NA             3001027
211               496299                  NA              240510
212               406575                  NA              197548
213              1017724                  NA              503252
214              3678328                  NA             1837913
215              3678328                  NA             1837913
216              3678328                  NA             1837913
217              3678328                  NA             1837913
218              3678328                  NA             1837913
219              3678328                  NA             1837913
220              7673379                  NA             3806912
221              6123949                  NA             3001027
222               772902                  NA              380685
223              3678328                  NA             1837913
224              3678328                  NA             1837913
225              3678328                  NA             1837913
226               552916                  NA              270938
227              3678328                  NA             1837913
228              3678328                  NA             1837913
229              3678328                  NA             1837913
230              3678328                  NA             1837913
231              3678328                  NA             1837913
232              3678328                  NA             1837913
233              3678328                  NA             1837913
234              3678328                  NA             1837913
235              3678328                  NA             1837913
236              3678328                  NA             1837913
237               538985                  NA              265985
238              1264357                  NA              612537
239              1264357                  NA              612537
240             13111917                  NA             6515114
241              1114368                  NA              538428
242              2668688                  NA             1305000
243              1420825                  NA              698689
244              4692242                  NA             2342253
245               510290                  NA              256202
246              2679298                  NA             1318555
247              4610050                  NA             2315218
248               218515                  NA              108665
249              9566955                  NA             4718471
250              1282588                  NA              630858
251               658694                  NA              322943
252              9566955                  NA             4718471
253              9566955                  NA             4718471
254               291491                  NA              148126
255             13111917                  NA             6515114
256               711490                  NA              355020
257               803398                  NA              394257
258              2109957                  NA             1038760
259              4610050                  NA             2315218
260              4912449                  NA             2407307
261              2190750                  NA             1084347
262               915968                  NA              453044
263               490769                  NA              249622
264               915968                  NA              453044
265              6123949                  NA             3001027
266              6232894                  NA             3033772
267               225911                  NA              111978
268               552916                  NA              270938
269              4912449                  NA             2407307
270               323992                  NA              159346
271              1990873                  NA              978574
272              6346083                  NA             3128067
273              2265926                  NA             1137581
274              1420825                  NA              698689
275              1420825                  NA              698689
276              1420825                  NA              698689
277              1420825                  NA              698689
278              4692242                  NA             2342253
279              1420825                  NA              698689
280              1420825                  NA              698689
281              7673379                  NA             3806912
282               225745                  NA              112032
283               772902                  NA              380685
284               328011                  NA              164852
285              3289701                  NA             1667851
286              2679298                  NA             1318555
287              3194310                  NA             1562880
288               522537                  NA              259930
289              4001701                  NA             2024424
290              2840005                  NA             1374325
291              6346083                  NA             3128067
292              4001701                  NA             2024424
293              4001701                  NA             2024424
294              1568940                  NA              770847
295              4001701                  NA             2024424
296              4001701                  NA             2024424
297               183297                  NA               91287
298              4001701                  NA             2024424
299              1990873                  NA              978574
300              2253528                  NA             1113732
301              6123949                  NA             3001027
302              4375604                  NA             2148947
303              4375604                  NA             2148947
304              1254675                  NA              635422
305              1254675                  NA              635422
306               275693                  NA              137408
307              1568940                  NA              770847
308              2137223                  NA             1061042
309              1254675                  NA              635422
310              1254675                  NA              635422
311              1254675                  NA              635422
312              1254675                  NA              635422
313              1254675                  NA              635422
314             19908595                  NA             9713298
315              1254675                  NA              635422
316              1254675                  NA              635422
317              1254675                  NA              635422
318              1254675                  NA              635422
319              1254675                  NA              635422
320              1990873                  NA              978574
321              3678328                  NA             1837913
322               564466                  NA              276108
323              1087068                  NA              546278
324               382218                  NA              189292
325               199352                  NA               99597
326              1282588                  NA              630858
327              2813523                  NA             1375126
328               585485                  NA              292820
329               328011                  NA              164852
330               277944                  NA              140783
331               189821                  NA               92665
332              2265926                  NA             1137581
333              3194310                  NA             1562880
334              3194310                  NA             1562880
335              3194310                  NA             1562880
336              6094752                  NA             2965233
337              6094752                  NA             2965233
338              2296377                  NA             1160944
339              2840005                  NA             1374325
340              2079759                  NA             1012336
341              3289701                  NA             1667851
342              4610050                  NA             2315218
343              2668688                  NA             1305000
344              2959386                  NA             1493164
345              2959386                  NA             1493164
346             19908595                  NA             9713298
347              2265926                  NA             1137581
348              2679298                  NA             1318555
349              4610050                  NA             2315218
350              1335804                  NA              641128
351              6123949                  NA             3001027
352              2505312                  NA             1250855
353              6232894                  NA             3033772
354              6232894                  NA             3033772
355              6232894                  NA             3033772
356              4864209                  NA             2434382
357              1420825                  NA              698689
358              3289701                  NA             1667851
359              2570862                  NA             1280273
360              2073546                  NA              975289
361             19908595                  NA             9713298
362              2668688                  NA             1305000
363              2668688                  NA             1305000
364              1010100                  NA              512085
365              2265926                  NA             1137581
366              4864209                  NA             2434382
367              6123949                  NA             3001027
368              7142603                  NA             3563435
369             19908595                  NA             9713298
370              2959386                  NA             1493164
371             19908595                  NA             9713298
372             19908595                  NA             9713298
373             19908595                  NA             9713298
374               469484                  NA              227358
375               775169                  NA              372915
376               208406                  NA              100899
377              6346083                  NA             3128067
378              6346083                  NA             3128067
379               884359                  NA              435364
380               772902                  NA              380685
381              7142603                  NA             3563435
382              4692242                  NA             2342253
383              1990873                  NA              978574
384              4692242                  NA             2342253
385              4692242                  NA             2342253
386              3194310                  NA             1562880
387              1613587                  NA              790463
388              4001701                  NA             2024424
389              1086859                  NA              532509
390              4001701                  NA             2024424
391              2813523                  NA             1375126
392               658694                  NA              322943
393              2109957                  NA             1038760
394              4864209                  NA             2434382
395               749290                  NA              363653
396             19908595                  NA             9713298
397               884359                  NA              435364
398              2365501                  NA             1162773
399              1215703                 422              594920
400                   NA                  NA                  NA
401              2679298                  NA             1318555
402              2296377                  NA             1160944
403              2296377                  NA             1160944
404              2296377                  NA             1160944
405              1282588                  NA              630858
406              2265926                  NA             1137581
407              6094752                  NA             2965233
408               658694                  NA              322943
409              4912449                  NA             2407307
410               251635                  NA              126980
411             19908595                  NA             9713298
412             13111917                  NA             6515114
413              1428923                  NA              708697
414              1008280                  NA              506526
415               550596                  NA              277195
416              2505312                  NA             1250855
417              2679298                  NA             1318555
418              2253528                  NA             1113732
419              2679298                  NA             1318555
420              3194310                  NA             1562880
421              2253528                  NA             1113732
422               646794                  NA              322648
423               206072                  NA               99873
424              6346083                  NA             3128067
425              6346083                  NA             3128067
426              7673379                  NA             3806912
427              7673379                  NA             3806912
428              1114368                  NA              538428
429              1981584                  NA             1011796
430              2679298                  NA             1318555
431              6123949                  NA             3001027
432              1316145                  NA              640643
433              1017724                  NA              503252
434             13111917                  NA             6515114
435              4864209                  NA             2434382
436              6123949                  NA             3001027
437               755081                  NA              384572
438               585485                  NA              292820
439                42151                  NA               21738
440               262124                  NA              126417
441              9566955                  NA             4718471
442               152640                  NA               75942
443              1613587                  NA              790463
444               277944                  NA              140783
445              1282588                  NA              630858
446               658694                  NA              322943
447              2296377                  NA             1160944
448              4610050                  NA             2315218
449               479865                  NA              235485
450              6346083                  NA             3128067
451              2296377                  NA             1160944
452              1981584                  NA             1011796
453              2190750                  NA             1084347
454              6123949                  NA             3001027
455              1990873                  NA              978574
456              2079759                  NA             1012336
457              2190750                  NA             1084347
458               419715                  NA              207197
459              1264357                  NA              612537
460               831913                  NA              404751
461               515954                  NA              253400
462              9566955                  NA             4718471
463              9566955                  NA             4718471
464              9566955                  NA             4718471
465               490769                  NA              249622
466              1087068                  NA              546278
467              9566955                  NA             4718471
468               550596                  NA              277195
469             13111917                  NA             6515114
470                82044                  NA               42677
471              1282588                  NA              630858
472              7142603                  NA             3563435
473               612898                  NA              299409
474              1420825                  NA              698689
475              1264357                  NA              612537
476               915968                  NA              453044
477              6094752                  NA             2965233
478               538985                  NA              265985
479              2959386                  NA             1493164
480              2265926                  NA             1137581
481              4001701                  NA             2024424
482               274339                  NA              133897
483               274339                  NA              133897
484               274339                  NA              133897
485              6094752                  NA             2965233
486              2296377                  NA             1160944
487              6094752                  NA             2965233
488             13111917                  NA             6515114
489              6094752                  NA             2965233
490              6094752                  NA             2965233
491              1215703                 422              594920
492              1990873                  NA              978574
493              1990873                  NA              978574
494              1990873                  NA              978574
495              1990873                  NA              978574
496              4912449                  NA             2407307
497              4912449                  NA             2407307
498              4912449                  NA             2407307
499              4912449                  NA             2407307
500              4912449                  NA             2407307
501             13111917                  NA             6515114
502              2840005                  NA             1374325
503              2959386                  NA             1493164
504              2840005                  NA             1374325
505              2840005                  NA             1374325
506              2840005                  NA             1374325
507              2840005                  NA             1374325
508              2079759                  NA             1012336
509              2679298                  NA             1318555
510              2079759                  NA             1012336
511              2079759                  NA             1012336
512              7142603                  NA             3563435
513              2668688                  NA             1305000
514              2137223                  NA             1061042
515              2840005                  NA             1374325
516              7673379                  NA             3806912
517              7673379                  NA             3806912
518              7673379                  NA             3806912
519              7673379                  NA             3806912
520              9566955                  NA             4718471
521              4375604                  NA             2148947
522             19908595                  NA             9713298
523             19908595                  NA             9713298
524             19908595                  NA             9713298
525             19908595                  NA             9713298
526             19908595                  NA             9713298
527              6123949                  NA             3001027
528              6123949                  NA             3001027
529              6123949                  NA             3001027
530              6123949                  NA             3001027
531              6123949                  NA             3001027
532              6123949                  NA             3001027
533              6123949                  NA             3001027
534              6123949                  NA             3001027
535              7142603                  NA             3563435
536              7142603                  NA             3563435
537              2109957                  NA             1038760
538              2109957                  NA             1038760
539              2109957                  NA             1038760
540              2265926                  NA             1137581
541              2265926                  NA             1137581
542              6094752                  NA             2965233
543               775169                  NA              372915
544              2265926                  NA             1137581
545              2265926                  NA             1137581
546              2265926                  NA             1137581
547             13111917                  NA             6515114
548             13111917                  NA             6515114
549              3194310                  NA             1562880
550             13111917                  NA             6515114
551             13111917                  NA             6515114
552              2365501                  NA             1162773
553              2365501                  NA             1162773
554              2190750                  NA             1084347
555              2190750                  NA             1084347
556              2679298                  NA             1318555
557              2679298                  NA             1318555
558              2679298                  NA             1318555
559              4692242                  NA             2342253
560              2679298                  NA             1318555
561              2679298                  NA             1318555
562              1568940                  NA              770847
563              6232894                  NA             3033772
564              1264357                  NA              612537
565             19908595                  NA             9713298
566              9566955                  NA             4718471
567              9566955                  NA             4718471
568              9566955                  NA             4718471
569              9566955                  NA             4718471
570              2365501                  NA             1162773
571              2365501                  NA             1162773
572              2365501                  NA             1162773
573              3289701                  NA             1667851
574              2073546                  NA              975289
575              2813523                  NA             1375126
576              7142603                  NA             3563435
577              3194310                  NA             1562880
578              3194310                  NA             1562880
579              3194310                  NA             1562880
580              3194310                  NA             1562880
581               844461                  NA              407362
582              1282588                  NA              630858
583               288639                  NA              146836
584              2265926                  NA             1137581
585              4864209                  NA             2434382
586               901729                  NA              444836
587              2265926                  NA             1137581
588             19908595                  NA             9713298
589              3678328                  NA             1837913
590              6232894                  NA             3033772
591              6123949                  NA             3001027
592              1990873                  NA              978574
593             19908595                  NA             9713298
594             19908595                  NA             9713298
595              3194310                  NA             1562880
596               288639                  NA              146836
597              2813523                  NA             1375126
598              2570862                  NA             1280273
599               803398                  NA              394257
600              2840005                  NA             1374325
601              2668688                  NA             1305000
602              2668688                  NA             1305000
603              2668688                  NA             1305000
604              2668688                  NA             1305000
605              2668688                  NA             1305000
606              6123949                  NA             3001027
607              1428923                  NA              708697
608              2679298                  NA             1318555
609              2109957                  NA             1038760
610              1335804                  NA              641128
611              4864209                  NA             2434382
612               700578                  NA              343022
613              2079759                  NA             1012336
614               812506                  NA              397560
615              2296377                  NA             1160944
616              6346083                  NA             3128067
617              6346083                  NA             3128067
618              6346083                  NA             3128067
619              4692242                  NA             2342253
620              7673379                  NA             3806912
621              6346083                  NA             3128067
622             19908595                  NA             9713298
623              1670949                  NA              818990
624              6094752                  NA             2965233
625              4375604                  NA             2148947
626               552916                  NA              270938
627               406575                  NA              197548
628               749290                  NA              363653
629               610723                  NA              300904
630              4375604                  NA             2148947
631              2190750                  NA             1084347
632              9566955                  NA             4718471
633              1568940                  NA              770847
634               405280                  NA              196717
635               812506                  NA              397560
636              4912449                  NA             2407307
637              2365501                  NA             1162773
638              7673379                  NA             3806912
639               966688                  NA              483251
640             19908595                  NA             9713298
641              6123949                  NA             3001027
642              6094752                  NA             2965233
643               772902                  NA              380685
644              1163462                  NA              568061
645              2365501                  NA             1162773
646               863166                  NA              427343
647              1798025                  NA              886709
648              1798025                  NA              886709
649              1613587                  NA              790463
650              1613587                  NA              790463
651               422733                  NA              212276
652              4912449                  NA             2407307
653              1613587                  NA              790463
654               469484                  NA              227358
655              1420825                  NA              698689
656               522537                  NA              259930
657               203686                  NA              113368
658               593318                  NA              293750
659              6123949                  NA             3001027
660               803398                  NA              394257
661              7142603                  NA             3563435
662               711490                  NA              355020
663               330119                  NA              161252
664               552916                  NA              270938
665              1264357                  NA              612537
666               591397                  NA              285117
667              1264357                  NA              612537
668               515954                  NA              253400
669              6232894                  NA             3033772
670              6232894                  NA             3033772
671              1114368                  NA              538428
672              6232894                  NA             3033772
673              6232894                  NA             3033772
674              6232894                  NA             3033772
675              6232894                  NA             3033772
676              2959386                  NA             1493164
677              3289701                  NA             1667851
678              4001701                  NA             2024424
679              2109957                  NA             1038760
680             19908595                  NA             9713298
681              9566955                  NA             4718471
682              1215703                 422              594920
683               884359                  NA              435364
684              1670949                  NA              818990
685              1420825                  NA              698689
686              2813523                  NA             1375126
687               658694                  NA              322943
688              1282588                  NA              630858
689               915968                  NA              453044
690              7142603                  NA             3563435
691               339707                  NA              171627
692               901729                  NA              444836
693              4610050                  NA             2315218
694                79008                  NA               40763
695              1010100                  NA              512085
696              4001701                  NA             2024424
697               915968                  NA              453044
698              1990873                  NA              978574
699              2190750                  NA             1084347
700                   NA                  NA                  NA
701               222604                  NA              109360
702              4610050                  NA             2315218
703               445213                  NA              223753
704             13111917                  NA             6515114
705               771602                  NA              388362
706               771602                  NA              388362
707               771602                  NA              388362
708              6094752                  NA             2965233
709               771602                  NA              388362
710               771602                  NA              388362
711               202163                  NA              100828
712             13111917                  NA             6515114
713               771602                  NA              388362
714               488436                  NA              240478
715             13111917                  NA             6515114
716             13111917                  NA             6515114
717               164765                  21               82304
718               119685                  NA               62534
719              2840005                  NA             1374325
720               119685                  NA               62534
721              1428923                  NA              708697
722               477577                  NA              239362
723              4912449                  NA             2407307
724             19908595                  NA             9713298
725               755081                  NA              384572
726             13111917                  NA             6515114
727              7673379                  NA             3806912
728              2959386                  NA             1493164
729              2959386                  NA             1493164
730              2959386                  NA             1493164
731              2959386                  NA             1493164
732              2959386                  NA             1493164
733              2959386                  NA             1493164
734              1042393                  NA              516095
735              1254675                  NA              635422
736              2365501                  NA             1162773
737               711490                  NA              355020
738               304252                  NA              154587
739               593318                  NA              293750
740               382218                  NA              189292
741              2959386                  NA             1493164
742              1008280                  NA              506526
743              1008280                  NA              506526
744              1008280                  NA              506526
745              1008280                  NA              506526
746               199352                  NA               99597
747              9566955                  NA             4718471
748               105950                  NA               53095
749              9566955                  NA             4718471
750              6123949                  NA             3001027
751               844461                  NA              407362
752              1613587                  NA              790463
753              4864209                  NA             2434382
754               585485                  NA              292820
755               585485                  NA              292820
756              4912449                  NA             2407307
757              1990873                  NA              978574
758              6123949                  NA             3001027
759              6123949                  NA             3001027
760              1981584                  NA             1011796
761               863166                  NA              427343
762                24944                  NA               13144
763              1254675                  NA              635422
764               139042                  NA               68498
765              7142603                  NA             3563435
766              7142603                  NA             3563435
767                95352                  NA               48019
768              2079759                  NA             1012336
769               251635                  NA              126980
770              6346083                  NA             3128067
771              2365501                  NA             1162773
772              9566955                  NA             4718471
773             13111917                  NA             6515114
774             13111917                  NA             6515114
775             13111917                  NA             6515114
776             13111917                  NA             6515114
777             13111917                  NA             6515114
778             13111917                  NA             6515114
779             13111917                  NA             6515114
780             13111917                  NA             6515114
781               869755                  NA              427134
782              4692242                  NA             2342253
783              2109957                  NA             1038760
784               261426                  NA              128595
785              2570862                  NA             1280273
786               678995                  NA              341280
787              3678328                  NA             1837913
788              3289701                  NA             1667851
789              1568940                  NA              770847
790              2265926                  NA             1137581
791               382218                  NA              189292
792               437609                  NA              223186
793               678995                  NA              341280
794              3678328                  NA             1837913
795              3678328                  NA             1837913
796                84423                  NA               43002
797               328011                  NA              164852
798              4692242                  NA             2342253
799                64701                  NA               32652
800               164765                  21               82304
801               567287                  NA              281431
802             19908595                  NA             9713298
803              1613587                  NA              790463
804               966688                  NA              483251
805              1670949                  NA              818990
806                36670                  NA               19879
807              4610050                  NA             2315218
808              2570862                  NA             1280273
809              4610050                  NA             2315218
810              6123949                  NA             3001027
811              9566955                  NA             4718471
812              9566955                  NA             4718471
813              9566955                  NA             4718471
814              9566955                  NA             4718471
815              2959386                  NA             1493164
816              2505312                  NA             1250855
817              2505312                  NA             1250855
818              2505312                  NA             1250855
819              2505312                  NA             1250855
820              2505312                  NA             1250855
821              2505312                  NA             1250855
822              2505312                  NA             1250855
823              2505312                  NA             1250855
824              2190750                  NA             1084347
825               202163                  NA              100828
826              4864209                  NA             2434382
827              4864209                  NA             2434382
828              2365501                  NA             1162773
829              1568940                  NA              770847
830              2265926                  NA             1137581
831               199352                  NA               99597
832              4610050                  NA             2315218
833               771602                  NA              388362
834               678995                  NA              341280
835               140356                  NA               72104
836              1335804                  NA              641128
837              4610050                  NA             2315218
838                83760                  NA               42020
839               242972                  NA              122440
840              2668688                  NA             1305000
841              1316145                  NA              640643
842               490769                  NA              249622
843              2394673                  NA             1181313
844              3289701                  NA             1667851
845              3289701                  NA             1667851
846              3289701                  NA             1667851
847              3289701                  NA             1667851
848              3289701                  NA             1667851
849              3289701                  NA             1667851
850              3289701                  NA             1667851
851               437609                  NA              223186
852               237830                  NA              117352
853               281712                  NA              142477
854              2265926                  NA             1137581
855               445213                  NA              223753
856              2813523                  NA             1375126
857               281712                  NA              142477
858              2265926                  NA             1137581
859              6123949                  NA             3001027
860              4001701                  NA             2024424
861              4001701                  NA             2024424
862              4001701                  NA             2024424
863              4001701                  NA             2024424
864              4692242                  NA             2342253
865              4692242                  NA             2342253
866              4692242                  NA             2342253
867              4692242                  NA             2342253
868              4692242                  NA             2342253
869              4692242                  NA             2342253
870              4692242                  NA             2342253
871              4692242                  NA             2342253
872              1981584                  NA             1011796
873              1981584                  NA             1011796
874              1981584                  NA             1011796
875              1981584                  NA             1011796
876              1981584                  NA             1011796
877              4375604                  NA             2148947
878              1042393                  NA              516095
879               202163                  NA              100828
880              1254675                  NA              635422
881                55983                  NA               28379
882              2679298                  NA             1318555
883               906883                  NA              464093
884               281712                  NA              142477
885              1010100                  NA              512085
886              2394673                  NA             1181313
887              2394673                  NA             1181313
888              2394673                  NA             1181313
889              1010100                  NA              512085
890               199352                  NA               99597
891              4001701                  NA             2024424
892             13111917                  NA             6515114
893              1114368                  NA              538428
894               323992                  NA              159346
895              7673379                  NA             3806912
896               488436                  NA              240478
897               488436                  NA              240478
898               488436                  NA              240478
899               966688                  NA              483251
900               966688                  NA              483251
901               399335                  NA              205955
902              1042393                  NA              516095
903              6346083                  NA             3128067
904             13111917                  NA             6515114
905               915968                  NA              453044
906               185147                  NA               92047
907              9566955                  NA             4718471
908               771602                  NA              388362
909               771602                  NA              388362
910               771602                  NA              388362
911               119685                  NA               62534
912               304252                  NA              154587
913              4375604                  NA             2148947
914             19908595                  NA             9713298
915              1264357                  NA              612537
916               118541                  NA               59633
917               105950                  NA               53095
918               585485                  NA              292820
919             19908595                  NA             9713298
920               445213                  NA              223753
921             19908595                  NA             9713298
922               585485                  NA              292820
923               222604                  NA              109360
924                83760                  NA               42020
925               158478                  NA               79833
926             13111917                  NA             6515114
927               222604                  NA              109360
928               222604                  NA              109360
929              4692242                  NA             2342253
930              4001701                  NA             2024424
931              4001701                  NA             2024424
932              4001701                  NA             2024424
933              4001701                  NA             2024424
934              2505312                  NA             1250855
935              2505312                  NA             1250855
936              4610050                  NA             2315218
937               867161                  NA              431851
938                47141                  NA               23954
939               199352                  NA               99597
940              3289701                  NA             1667851
941               445213                  NA              223753
942              4001701                  NA             2024424
943              4001701                  NA             2024424
944              4001701                  NA             2024424
945              4001701                  NA             2024424
946              4001701                  NA             2024424
947              4001701                  NA             2024424
948              4001701                  NA             2024424
949              4001701                  NA             2024424
950              4001701                  NA             2024424
951              4001701                  NA             2024424
952              4001701                  NA             2024424
953              4001701                  NA             2024424
954              4001701                  NA             2024424
955              4001701                  NA             2024424
956              4001701                  NA             2024424
957              4692242                  NA             2342253
958              1981584                  NA             1011796
959             13111917                  NA             6515114
960               488436                  NA              240478
961              2959386                  NA             1493164
962              2296377                  NA             1160944
963              1215703                 422              594920
964              6232894                  NA             3033772
965               105950                  NA               53095
966               118541                  NA               59633
967              6094752                  NA             2965233
968                   NA                  NA                  NA
969               242972                  NA              122440
970              2959386                  NA             1493164
971              2296377                  NA             1160944
972               966688                  NA              483251
973              2296377                  NA             1160944
974                97274                  NA               47217
975              4001701                  NA             2024424
976             13111917                  NA             6515114
977             19908595                  NA             9713298
978             13111917                  NA             6515114
979              2296377                  NA             1160944
980              1215703                 422              594920
981             13111917                  NA             6515114
982              1420825                  NA              698689
983               406575                  NA              197548
984               775169                  NA              372915
985              1114368                  NA              538428
986              2253528                  NA             1113732
987              6094752                  NA             2965233
988               771602                  NA              388362
989                35159                  NA               18160
990               199352                  NA               99597
991              4912449                  NA             2407307
992              2959386                  NA             1493164
993              2679298                  NA             1318555
994              1264357                  NA              612537
995              3194310                  NA             1562880
996               218515                  NA              108665
997              4912449                  NA             2407307
998                73511                  NA               36809
999               711490                  NA              355020
1000               73511                  NA               36809
1001             1163462                  NA              568061
1002            19908595                  NA             9713298
1003             1010100                  NA              512085
1004             1010100                  NA              512085
1005              164765                  21               82304
1006             2265926                  NA             1137581
1007             1264357                  NA              612537
1008             2365501                  NA             1162773
1009              189821                  NA               92665
1010              552916                  NA              270938
1011              339707                  NA              171627
1012             2079759                  NA             1012336
1013             2079759                  NA             1012336
1014              772902                  NA              380685
1015              490769                  NA              249622
1016              755081                  NA              384572
1017               59928                  NA               30012
1018            19908595                  NA             9713298
1019             6123949                  NA             3001027
1020             4912449                  NA             2407307
1021              288639                  NA              146836
1022             2959386                  NA             1493164
1023              445213                  NA              223753
1024            19908595                  NA             9713298
1025             2959386                  NA             1493164
1026             6346083                  NA             3128067
1027             1798025                  NA              886709
1028              291491                  NA              148126
1029             2959386                  NA             1493164
1030             2959386                  NA             1493164
1031             2959386                  NA             1493164
1032             2959386                  NA             1493164
1033             7673379                  NA             3806912
1034              181807                  NA               90224
1035             7142603                  NA             3563435
1036             2959386                  NA             1493164
1037              772902                  NA              380685
1038            19908595                  NA             9713298
1039              755081                  NA              384572
1040             2394673                  NA             1181313
1041             1990873                  NA              978574
1042              755081                  NA              384572
1043             1428923                  NA              708697
1044            19908595                  NA             9713298
1045             6123949                  NA             3001027
1046            19908595                  NA             9713298
1047             1254675                  NA              635422
1048               35159                  NA               18160
1049            19908595                  NA             9713298
1050            19908595                  NA             9713298
1051            19908595                  NA             9713298
1052            19908595                  NA             9713298
1053            19908595                  NA             9713298
1054            19908595                  NA             9713298
1055            19908595                  NA             9713298
1056            19908595                  NA             9713298
1057            19908595                  NA             9713298
1058            19908595                  NA             9713298
1059            19908595                  NA             9713298
1060              277944                  NA              140783
1061             4692242                  NA             2342253
1062                  NA                  NA                  NA
1063             6123949                  NA             3001027
1064              477577                  NA              239362
1065             6123949                  NA             3001027
1066             3194310                  NA             1562880
1067             2570862                  NA             1280273
1068              330119                  NA              161252
1069             2365501                  NA             1162773
1070             1282588                  NA              630858
1071              844461                  NA              407362
1072              181055                  NA               90237
1073             1264357                  NA              612537
1074             1282588                  NA              630858
1075             2394673                  NA             1181313
1076             2840005                  NA             1374325
1077             2679298                  NA             1318555
1078             6346083                  NA             3128067
1079             6346083                  NA             3128067
1080             6346083                  NA             3128067
1081             6346083                  NA             3128067
1082             6346083                  NA             3128067
1083             6346083                  NA             3128067
1084             6346083                  NA             3128067
1085             6346083                  NA             3128067
1086              304252                  NA              154587
1087             6346083                  NA             3128067
1088              915968                  NA              453044
1089             7142603                  NA             3563435
1090             7142603                  NA             3563435
1091             7142603                  NA             3563435
1092             7142603                  NA             3563435
1093               98430                  NA               48073
1094             7142603                  NA             3563435
1095             7142603                  NA             3563435
1096             7142603                  NA             3563435
1097              803398                  NA              394257
1098             1428923                  NA              708697
1099             6346083                  NA             3128067
1100              552916                  NA              270938
1101             1086859                  NA              532509
1102             1613587                  NA              790463
1103             2570862                  NA             1280273
1104            19908595                  NA             9713298
1105             2840005                  NA             1374325
1106             2137223                  NA             1061042
1107             1316145                  NA              640643
1108             2265926                  NA             1137581
1109              152640                  NA               75942
1110              422733                  NA              212276
1111             1990873                  NA              978574
1112             1568940                  NA              770847
1113             2079759                  NA             1012336
1114             2109957                  NA             1038760
1115             2679298                  NA             1318555
1116             3194310                  NA             1562880
1117             2137223                  NA             1061042
1118             2253528                  NA             1113732
1119              678995                  NA              341280
1120             2253528                  NA             1113732
1121             4375604                  NA             2148947
1122             2253528                  NA             1113732
1123              772902                  NA              380685
1124            13111917                  NA             6515114
1125            13111917                  NA             6515114
1126             4375604                  NA             2148947
1127             1981584                  NA             1011796
1128             2505312                  NA             1250855
1129             2959386                  NA             1493164
1130             2394673                  NA             1181313
1131             1420825                  NA              698689
1132             2840005                  NA             1374325
1133              164765                  21               82304
1134              772902                  NA              380685
1135             1798025                  NA              886709
1136             4864209                  NA             2434382
1137             3289701                  NA             1667851
1138              405280                  NA              196717
1139             6123949                  NA             3001027
1140              479865                  NA              235485
1141             6346083                  NA             3128067
1142             1114368                  NA              538428
1143              185147                  NA               92047
1144              202163                  NA              100828
1145              658694                  NA              322943
1146             1254675                  NA              635422
1147             2813523                  NA             1375126
1148             1215703                 422              594920
1149             2109957                  NA             1038760
1150             9566955                  NA             4718471
1151             9566955                  NA             4718471
1152             9566955                  NA             4718471
1153             9566955                  NA             4718471
1154             4610050                  NA             2315218
1155             9566955                  NA             4718471
1156             9566955                  NA             4718471
1157             2959386                  NA             1493164
1158             9566955                  NA             4718471
1159             9566955                  NA             4718471
1160             9566955                  NA             4718471
1161             9566955                  NA             4718471
1162             9566955                  NA             4718471
1163             9566955                  NA             4718471
1164               73511                  NA               36809
1165             1335804                  NA              641128
1166             2137223                  NA             1061042
1167              275693                  NA              137408
1168             2505312                  NA             1250855
1169             6346083                  NA             3128067
1170             4864209                  NA             2434382
1171             1163462                  NA              568061
1172              564466                  NA              276108
1173              119685                  NA               62534
1174             1282588                  NA              630858
1175             1990873                  NA              978574
1176              401702                  NA              198867
1177              222604                  NA              109360
1178             2570862                  NA             1280273
1179             7673379                  NA             3806912
1180             4610050                  NA             2315218
1181              382983                  NA              189968
1182             7673379                  NA             3806912
1183              102555                  NA               50314
1184              225745                  NA              112032
1185              275693                  NA              137408
1186              812506                  NA              397560
1187             4692242                  NA             2342253
1188            19908595                  NA             9713298
1189             1670949                  NA              818990
1190             4692242                  NA             2342253
1191              552916                  NA              270938
1192             6232894                  NA             3033772
1193             2813523                  NA             1375126
1194             4692242                  NA             2342253
1195             1670949                  NA              818990
1196             1086859                  NA              532509
1197              382983                  NA              189968
1198             6346083                  NA             3128067
1199             1215703                 422              594920
1200             6123949                  NA             3001027
1201             3194310                  NA             1562880
1202             2253528                  NA             1113732
1203             4610050                  NA             2315218
1204             1042393                  NA              516095
1205              181055                  NA               90237
1206              915968                  NA              453044
1207               73511                  NA               36809
1208              915968                  NA              453044
1209              915968                  NA              453044
1210              915968                  NA              453044
1211              901729                  NA              444836
1212             2679298                  NA             1318555
1213             6123949                  NA             3001027
1214              772902                  NA              380685
1215              772902                  NA              380685
1216             2394673                  NA             1181313
1217              901729                  NA              444836
1218             2394673                  NA             1181313
1219              901729                  NA              444836
1220              269278                 239              135933
1221              269278                 239              135933
1222             6094752                  NA             2965233
1223             6094752                  NA             2965233
1224              867161                  NA              431851
1225             2265926                  NA             1137581
1226            13111917                  NA             6515114
1227             4864209                  NA             2434382
1228             6094752                  NA             2965233
1229             6094752                  NA             2965233
1230             6094752                  NA             2965233
1231             6094752                  NA             2965233
1232             6094752                  NA             2965233
1233            13111917                  NA             6515114
1234             4692242                  NA             2342253
1235             1254675                  NA              635422
1236             6094752                  NA             2965233
1237             6094752                  NA             2965233
1238             6094752                  NA             2965233
1239             6094752                  NA             2965233
1240             6094752                  NA             2965233
1241             6094752                  NA             2965233
1242             1017724                  NA              503252
1243             6094752                  NA             2965233
1244             6094752                  NA             2965233
1245              164765                  21               82304
1246             6094752                  NA             2965233
1247             6094752                  NA             2965233
1248             6094752                  NA             2965233
1249             6094752                  NA             2965233
1250             6094752                  NA             2965233
1251             1010100                  NA              512085
1252             6094752                  NA             2965233
1253             6094752                  NA             2965233
1254             6094752                  NA             2965233
1255             6094752                  NA             2965233
1256             4912449                  NA             2407307
1257            19908595                  NA             9713298
1258              966688                  NA              483251
1259              406575                  NA              197548
1260             2296377                  NA             1160944
1261             6123949                  NA             3001027
1262              966688                  NA              483251
1263             4692242                  NA             2342253
1264             4001701                  NA             2024424
1265             4610050                  NA             2315218
1266             3289701                  NA             1667851
1267             2296377                  NA             1160944
1268             2296377                  NA             1160944
1269             2296377                  NA             1160944
1270             2296377                  NA             1160944
1271             2296377                  NA             1160944
1272             2296377                  NA             1160944
1273             2296377                  NA             1160944
1274             2296377                  NA             1160944
1275             2296377                  NA             1160944
1276             2296377                  NA             1160944
1277             2296377                  NA             1160944
1278             2296377                  NA             1160944
1279             2296377                  NA             1160944
1280             2296377                  NA             1160944
1281             2296377                  NA             1160944
1282             2296377                  NA             1160944
1283             2296377                  NA             1160944
1284             2296377                  NA             1160944
1285             1670949                  NA              818990
1286             2265926                  NA             1137581
1287             4610050                  NA             2315218
1288             1215703                 422              594920
1289             1215703                 422              594920
1290             1114368                  NA              538428
1291             1114368                  NA              538428
1292             1114368                  NA              538428
1293             1114368                  NA              538428
1294             1114368                  NA              538428
1295             1114368                  NA              538428
1296              226523                  NA              112654
1297             1990873                  NA              978574
1298             1990873                  NA              978574
1299             1990873                  NA              978574
1300               47759                  NA               23950
1301             1990873                  NA              978574
1302             1990873                  NA              978574
1303             1990873                  NA              978574
1304             1990873                  NA              978574
1305             1990873                  NA              978574
1306              490769                  NA              249622
1307             1990873                  NA              978574
1308            13111917                  NA             6515114
1309             1990873                  NA              978574
1310             1990873                  NA              978574
1311             1990873                  NA              978574
1312             1990873                  NA              978574
1313             1990873                  NA              978574
1314             1990873                  NA              978574
1315             1990873                  NA              978574
1316             1990873                  NA              978574
1317             1990873                  NA              978574
1318             1990873                  NA              978574
1319             1990873                  NA              978574
1320             1990873                  NA              978574
1321             1990873                  NA              978574
1322             1990873                  NA              978574
1323             1990873                  NA              978574
1324             1990873                  NA              978574
1325             1010100                  NA              512085
1326              164765                  21               82304
1327             1990873                  NA              978574
1328             1990873                  NA              978574
1329             1990873                  NA              978574
1330             1990873                  NA              978574
1331             1990873                  NA              978574
1332             1990873                  NA              978574
1333             1163462                  NA              568061
1334             6123949                  NA             3001027
1335              771602                  NA              388362
1336              771602                  NA              388362
1337              771602                  NA              388362
1338              771602                  NA              388362
1339              490769                  NA              249622
1340             7673379                  NA             3806912
1341             7142603                  NA             3563435
1342              803398                  NA              394257
1343              330119                  NA              161252
1344             2109957                  NA             1038760
1345             1613587                  NA              790463
1346             4864209                  NA             2434382
1347              406575                  NA              197548
1348             2959386                  NA             1493164
1349            13111917                  NA             6515114
1350             3678328                  NA             1837913
1351             4864209                  NA             2434382
1352             1981584                  NA             1011796
1353             4912449                  NA             2407307
1354              844461                  NA              407362
1355             1163462                  NA              568061
1356             1163462                  NA              568061
1357             1163462                  NA              568061
1358            13111917                  NA             6515114
1359             1264357                  NA              612537
1360             1420825                  NA              698689
1361             3194310                  NA             1562880
1362             1428923                  NA              708697
1363            13111917                  NA             6515114
1364            13111917                  NA             6515114
1365            13111917                  NA             6515114
1366            13111917                  NA             6515114
1367            13111917                  NA             6515114
1368            13111917                  NA             6515114
1369             2840005                  NA             1374325
1370             2840005                  NA             1374325
1371             4001701                  NA             2024424
1372             2840005                  NA             1374325
1373             2840005                  NA             1374325
1374             2840005                  NA             1374325
1375             2840005                  NA             1374325
1376             2840005                  NA             1374325
1377             2840005                  NA             1374325
1378             2840005                  NA             1374325
1379             2840005                  NA             1374325
1380             2840005                  NA             1374325
1381             2840005                  NA             1374325
1382             2073546                  NA              975289
1383             2840005                  NA             1374325
1384             2840005                  NA             1374325
1385             2840005                  NA             1374325
1386              202163                  NA              100828
1387             2840005                  NA             1374325
1388             6346083                  NA             3128067
1389             2840005                  NA             1374325
1390             2840005                  NA             1374325
1391             2840005                  NA             1374325
1392              202163                  NA              100828
1393             2840005                  NA             1374325
1394             2840005                  NA             1374325
1395             2840005                  NA             1374325
1396             2840005                  NA             1374325
1397             2840005                  NA             1374325
1398             2840005                  NA             1374325
1399             2840005                  NA             1374325
1400              772902                  NA              380685
1401              119685                  NA               62534
1402             2190750                  NA             1084347
1403             1568940                  NA              770847
1404              803398                  NA              394257
1405              755081                  NA              384572
1406              803398                  NA              394257
1407            13111917                  NA             6515114
1408              772902                  NA              380685
1409             2079759                  NA             1012336
1410             2079759                  NA             1012336
1411             1010100                  NA              512085
1412             2079759                  NA             1012336
1413             2079759                  NA             1012336
1414             2137223                  NA             1061042
1415             2137223                  NA             1061042
1416             1042393                  NA              516095
1417             2137223                  NA             1061042
1418             4864209                  NA             2434382
1419              181055                  NA               90237
1420             2137223                  NA             1061042
1421             2137223                  NA             1061042
1422             2137223                  NA             1061042
1423             2137223                  NA             1061042
1424             2137223                  NA             1061042
1425             2137223                  NA             1061042
1426              445213                  NA              223753
1427              755081                  NA              384572
1428              755081                  NA              384572
1429              422187                  NA              211290
1430              772902                  NA              380685
1431              585485                  NA              292820
1432             4692242                  NA             2342253
1433             2253528                  NA             1113732
1434             2253528                  NA             1113732
1435             2253528                  NA             1113732
1436             3194310                  NA             1562880
1437             2253528                  NA             1113732
1438             7673379                  NA             3806912
1439            13111917                  NA             6515114
1440             7673379                  NA             3806912
1441             4692242                  NA             2342253
1442             7673379                  NA             3806912
1443             7673379                  NA             3806912
1444             7673379                  NA             3806912
1445             7673379                  NA             3806912
1446             7673379                  NA             3806912
1447             7673379                  NA             3806912
1448             7673379                  NA             3806912
1449             7673379                  NA             3806912
1450             7673379                  NA             3806912
1451             7673379                  NA             3806912
1452             7673379                  NA             3806912
1453             7673379                  NA             3806912
1454             7673379                  NA             3806912
1455             7673379                  NA             3806912
1456             7673379                  NA             3806912
1457             7673379                  NA             3806912
1458             7673379                  NA             3806912
1459             7673379                  NA             3806912
1460             7673379                  NA             3806912
1461             7673379                  NA             3806912
1462             7673379                  NA             3806912
1463             7673379                  NA             3806912
1464             7673379                  NA             3806912
1465             7673379                  NA             3806912
1466             7673379                  NA             3806912
1467             7673379                  NA             3806912
1468             7673379                  NA             3806912
1469             7673379                  NA             3806912
1470             7673379                  NA             3806912
1471             7673379                  NA             3806912
1472             7673379                  NA             3806912
1473             7673379                  NA             3806912
1474             7673379                  NA             3806912
1475             7673379                  NA             3806912
1476             4692242                  NA             2342253
1477              844461                  NA              407362
1478             6346083                  NA             3128067
1479             6346083                  NA             3128067
1480             6346083                  NA             3128067
1481             2959386                  NA             1493164
1482             6346083                  NA             3128067
1483             6346083                  NA             3128067
1484             6346083                  NA             3128067
1485             6346083                  NA             3128067
1486             6346083                  NA             3128067
1487             6346083                  NA             3128067
1488             6346083                  NA             3128067
1489             2840005                  NA             1374325
1490             6346083                  NA             3128067
1491             2959386                  NA             1493164
1492            19908595                  NA             9713298
1493             2959386                  NA             1493164
1494            19908595                  NA             9713298
1495             2959386                  NA             1493164
1496              844461                  NA              407362
1497             2959386                  NA             1493164
1498             2959386                  NA             1493164
1499             2959386                  NA             1493164
1500              844461                  NA              407362
1501             2959386                  NA             1493164
1502             2959386                  NA             1493164
1503             2959386                  NA             1493164
1504             2679298                  NA             1318555
1505             6232894                  NA             3033772
1506             2959386                  NA             1493164
1507             2959386                  NA             1493164
1508             2959386                  NA             1493164
1509             6123949                  NA             3001027
1510             2959386                  NA             1493164
1511             2959386                  NA             1493164
1512             2959386                  NA             1493164
1513             2959386                  NA             1493164
1514             2959386                  NA             1493164
1515             2959386                  NA             1493164
1516             2959386                  NA             1493164
1517             2959386                  NA             1493164
1518             2394673                  NA             1181313
1519             2959386                  NA             1493164
1520             2959386                  NA             1493164
1521             2959386                  NA             1493164
1522             2959386                  NA             1493164
1523             2959386                  NA             1493164
1524             2959386                  NA             1493164
1525             2959386                  NA             1493164
1526             2959386                  NA             1493164
1527             2959386                  NA             1493164
1528             3194310                  NA             1562880
1529             7142603                  NA             3563435
1530             7142603                  NA             3563435
1531             3289701                  NA             1667851
1532             4375604                  NA             2148947
1533             4375604                  NA             2148947
1534             4375604                  NA             2148947
1535              915968                  NA              453044
1536             6232894                  NA             3033772
1537              867161                  NA              431851
1538              867161                  NA              431851
1539              867161                  NA              431851
1540              867161                  NA              431851
1541              867161                  NA              431851
1542             1981584                  NA             1011796
1543             3194310                  NA             1562880
1544             1613587                  NA              790463
1545             3194310                  NA             1562880
1546              867161                  NA              431851
1547              867161                  NA              431851
1548             3289701                  NA             1667851
1549              382218                  NA              189292
1550              382218                  NA              189292
1551             1008280                  NA              506526
1552             2959386                  NA             1493164
1553             2265926                  NA             1137581
1554             1981584                  NA             1011796
1555             6123949                  NA             3001027
1556             2296377                  NA             1160944
1557             6123949                  NA             3001027
1558             6123949                  NA             3001027
1559             1670949                  NA              818990
1560             6123949                  NA             3001027
1561             6123949                  NA             3001027
1562             6123949                  NA             3001027
1563             6123949                  NA             3001027
1564            13111917                  NA             6515114
1565             6123949                  NA             3001027
1566             6123949                  NA             3001027
1567             6123949                  NA             3001027
1568             1798025                  NA              886709
1569             1017724                  NA              503252
1570              585485                  NA              292820
1571              422733                  NA              212276
1572              585485                  NA              292820
1573              585485                  NA              292820
1574             4864209                  NA             2434382
1575              585485                  NA              292820
1576             1087068                  NA              546278
1577              330119                  NA              161252
1578             1981584                  NA             1011796
1579            13111917                  NA             6515114
1580             1254675                  NA              635422
1581             1990873                  NA              978574
1582             7142603                  NA             3563435
1583             1420825                  NA              698689
1584            19908595                  NA             9713298
1585             7142603                  NA             3563435
1586             7142603                  NA             3563435
1587             7142603                  NA             3563435
1588             7142603                  NA             3563435
1589             7142603                  NA             3563435
1590             7142603                  NA             3563435
1591             7142603                  NA             3563435
1592             7142603                  NA             3563435
1593             7142603                  NA             3563435
1594            19908595                  NA             9713298
1595             7142603                  NA             3563435
1596             7142603                  NA             3563435
1597             7142603                  NA             3563435
1598             7142603                  NA             3563435
1599             7142603                  NA             3563435
1600             7142603                  NA             3563435
1601             7142603                  NA             3563435
1602             7142603                  NA             3563435
1603             7142603                  NA             3563435
1604             7142603                  NA             3563435
1605             7142603                  NA             3563435
1606             7142603                  NA             3563435
1607             7142603                  NA             3563435
1608             7142603                  NA             3563435
1609             7142603                  NA             3563435
1610             7142603                  NA             3563435
1611             7142603                  NA             3563435
1612             7142603                  NA             3563435
1613             7142603                  NA             3563435
1614             7142603                  NA             3563435
1615            19908595                  NA             9713298
1616             7142603                  NA             3563435
1617             7142603                  NA             3563435
1618             7142603                  NA             3563435
1619             7142603                  NA             3563435
1620              591397                  NA              285117
1621              421854                  NA              208182
1622              755081                  NA              384572
1623             1254675                  NA              635422
1624             4692242                  NA             2342253
1625             2394673                  NA             1181313
1626             1087068                  NA              546278
1627             7142603                  NA             3563435
1628             2679298                  NA             1318555
1629             7142603                  NA             3563435
1630              646794                  NA              322648
1631              646794                  NA              322648
1632              552916                  NA              270938
1633             2109957                  NA             1038760
1634             2109957                  NA             1038760
1635             2109957                  NA             1038760
1636             2109957                  NA             1038760
1637             2109957                  NA             1038760
1638            19908595                  NA             9713298
1639             6123949                  NA             3001027
1640              288639                  NA              146836
1641              422733                  NA              212276
1642             1613587                  NA              790463
1643             1613587                  NA              790463
1644             1613587                  NA              790463
1645             6094752                  NA             2965233
1646             2840005                  NA             1374325
1647             1428923                  NA              708697
1648             2265926                  NA             1137581
1649             2265926                  NA             1137581
1650             2109957                  NA             1038760
1651             1264357                  NA              612537
1652             2365501                  NA             1162773
1653             2265926                  NA             1137581
1654             2365501                  NA             1162773
1655             3194310                  NA             1562880
1656             2265926                  NA             1137581
1657             2265926                  NA             1137581
1658             6094752                  NA             2965233
1659             9566955                  NA             4718471
1660             2265926                  NA             1137581
1661             2265926                  NA             1137581
1662             2365501                  NA             1162773
1663             2265926                  NA             1137581
1664             2265926                  NA             1137581
1665             2265926                  NA             1137581
1666             2265926                  NA             1137581
1667             2265926                  NA             1137581
1668             2265926                  NA             1137581
1669             2265926                  NA             1137581
1670             2265926                  NA             1137581
1671             2265926                  NA             1137581
1672             2265926                  NA             1137581
1673             2265926                  NA             1137581
1674             2265926                  NA             1137581
1675             2265926                  NA             1137581
1676             2265926                  NA             1137581
1677             2265926                  NA             1137581
1678             2265926                  NA             1137581
1679            13111917                  NA             6515114
1680            13111917                  NA             6515114
1681               73511                  NA               36809
1682             1264357                  NA              612537
1683             2570862                  NA             1280273
1684            13111917                  NA             6515114
1685             1017724                  NA              503252
1686             2679298                  NA             1318555
1687             6123949                  NA             3001027
1688            13111917                  NA             6515114
1689            13111917                  NA             6515114
1690            13111917                  NA             6515114
1691            13111917                  NA             6515114
1692             4610050                  NA             2315218
1693             1420825                  NA              698689
1694              322285                  NA              159719
1695             7673379                  NA             3806912
1696             7142603                  NA             3563435
1697            19908595                  NA             9713298
1698             1264357                  NA              612537
1699             1428923                  NA              708697
1700            19908595                  NA             9713298
1701            19908595                  NA             9713298
1702            13111917                  NA             6515114
1703             9566955                  NA             4718471
1704            13111917                  NA             6515114
1705            13111917                  NA             6515114
1706            13111917                  NA             6515114
1707            13111917                  NA             6515114
1708            13111917                  NA             6515114
1709             4610050                  NA             2315218
1710            13111917                  NA             6515114
1711            13111917                  NA             6515114
1712            13111917                  NA             6515114
1713            13111917                  NA             6515114
1714            13111917                  NA             6515114
1715              749290                  NA              363653
1716              174621                  NA               89435
1717              174621                  NA               89435
1718             2190750                  NA             1084347
1719             2190750                  NA             1084347
1720              844461                  NA              407362
1721             2190750                  NA             1084347
1722             2190750                  NA             1084347
1723             2190750                  NA             1084347
1724             2190750                  NA             1084347
1725             2190750                  NA             1084347
1726             2190750                  NA             1084347
1727             2190750                  NA             1084347
1728             1163462                  NA              568061
1729              119685                  NA               62534
1730             4610050                  NA             2315218
1731             4001701                  NA             2024424
1732             1008280                  NA              506526
1733             4864209                  NA             2434382
1734             2679298                  NA             1318555
1735             4912449                  NA             2407307
1736              711490                  NA              355020
1737             3289701                  NA             1667851
1738             2679298                  NA             1318555
1739             2679298                  NA             1318555
1740             2679298                  NA             1318555
1741             2679298                  NA             1318555
1742             2679298                  NA             1318555
1743             2679298                  NA             1318555
1744             2679298                  NA             1318555
1745             2679298                  NA             1318555
1746             2679298                  NA             1318555
1747             2679298                  NA             1318555
1748               73511                  NA               36809
1749             2679298                  NA             1318555
1750             2679298                  NA             1318555
1751             9566955                  NA             4718471
1752             9566955                  NA             4718471
1753             9566955                  NA             4718471
1754             9566955                  NA             4718471
1755             9566955                  NA             4718471
1756             9566955                  NA             4718471
1757             9566955                  NA             4718471
1758             9566955                  NA             4718471
1759             9566955                  NA             4718471
1760             9566955                  NA             4718471
1761             9566955                  NA             4718471
1762             9566955                  NA             4718471
1763             9566955                  NA             4718471
1764             9566955                  NA             4718471
1765             9566955                  NA             4718471
1766             9566955                  NA             4718471
1767             9566955                  NA             4718471
1768             9566955                  NA             4718471
1769             9566955                  NA             4718471
1770             9566955                  NA             4718471
1771             9566955                  NA             4718471
1772             9566955                  NA             4718471
1773             9566955                  NA             4718471
1774             9566955                  NA             4718471
1775             9566955                  NA             4718471
1776             9566955                  NA             4718471
1777             9566955                  NA             4718471
1778             9566955                  NA             4718471
1779             9566955                  NA             4718471
1780             9566955                  NA             4718471
1781             9566955                  NA             4718471
1782             2813523                  NA             1375126
1783             9566955                  NA             4718471
1784             9566955                  NA             4718471
1785             9566955                  NA             4718471
1786             9566955                  NA             4718471
1787             9566955                  NA             4718471
1788             9566955                  NA             4718471
1789             9566955                  NA             4718471
1790             9566955                  NA             4718471
1791             9566955                  NA             4718471
1792             9566955                  NA             4718471
1793             9566955                  NA             4718471
1794             9566955                  NA             4718471
1795             9566955                  NA             4718471
1796             9566955                  NA             4718471
1797             9566955                  NA             4718471
1798             9566955                  NA             4718471
1799             9566955                  NA             4718471
1800             9566955                  NA             4718471
1801             1335804                  NA              641128
1802             1335804                  NA              641128
1803             1335804                  NA              641128
1804             1335804                  NA              641128
1805             1335804                  NA              641128
1806             2570862                  NA             1280273
1807             3678328                  NA             1837913
1808             6123949                  NA             3001027
1809             6123949                  NA             3001027
1810             2190750                  NA             1084347
1811             1568940                  NA              770847
1812             1568940                  NA              770847
1813             1568940                  NA              770847
1814             1568940                  NA              770847
1815             1568940                  NA              770847
1816             3678328                  NA             1837913
1817              772902                  NA              380685
1818             3289701                  NA             1667851
1819             1264357                  NA              612537
1820             1264357                  NA              612537
1821             1264357                  NA              612537
1822             1264357                  NA              612537
1823             1264357                  NA              612537
1824             1264357                  NA              612537
1825             1264357                  NA              612537
1826             1264357                  NA              612537
1827              755081                  NA              384572
1828             1264357                  NA              612537
1829             1264357                  NA              612537
1830             1264357                  NA              612537
1831             1017724                  NA              503252
1832              496299                  NA              240510
1833              496299                  NA              240510
1834             4692242                  NA             2342253
1835             4692242                  NA             2342253
1836             4692242                  NA             2342253
1837             4692242                  NA             2342253
1838             3289701                  NA             1667851
1839             4692242                  NA             2342253
1840             2109957                  NA             1038760
1841             4692242                  NA             2342253
1842             4692242                  NA             2342253
1843             4692242                  NA             2342253
1844             1981584                  NA             1011796
1845             4692242                  NA             2342253
1846             4692242                  NA             2342253
1847             4692242                  NA             2342253
1848             4692242                  NA             2342253
1849             4692242                  NA             2342253
1850             2394673                  NA             1181313
1851             1428923                  NA              708697
1852             1428923                  NA              708697
1853             1428923                  NA              708697
1854              164765                  21               82304
1855              844461                  NA              407362
1856              966688                  NA              483251
1857              966688                  NA              483251
1858              966688                  NA              483251
1859             2570862                  NA             1280273
1860             4610050                  NA             2315218
1861             4610050                  NA             2315218
1862              406575                  NA              197548
1863             9566955                  NA             4718471
1864             9566955                  NA             4718471
1865             9566955                  NA             4718471
1866             1798025                  NA              886709
1867             1798025                  NA              886709
1868             1798025                  NA              886709
1869             1798025                  NA              886709
1870             1215703                 422              594920
1871              966688                  NA              483251
1872             2505312                  NA             1250855
1873             3194310                  NA             1562880
1874               73511                  NA               36809
1875             4692242                  NA             2342253
1876             6232894                  NA             3033772
1877             6123949                  NA             3001027
1878             4864209                  NA             2434382
1879             1568940                  NA              770847
1880             4864209                  NA             2434382
1881             6094752                  NA             2965233
1882             4864209                  NA             2434382
1883             4864209                  NA             2434382
1884             4864209                  NA             2434382
1885             4864209                  NA             2434382
1886             4864209                  NA             2434382
1887             4864209                  NA             2434382
1888             4864209                  NA             2434382
1889             4864209                  NA             2434382
1890             4864209                  NA             2434382
1891             4864209                  NA             2434382
1892             4864209                  NA             2434382
1893             4864209                  NA             2434382
1894             4864209                  NA             2434382
1895             4864209                  NA             2434382
1896             1010100                  NA              512085
1897             4864209                  NA             2434382
1898             4864209                  NA             2434382
1899             4864209                  NA             2434382
1900             4864209                  NA             2434382
1901             4864209                  NA             2434382
1902             4864209                  NA             2434382
1903             2365501                  NA             1162773
1904             2365501                  NA             1162773
1905             2365501                  NA             1162773
1906             2365501                  NA             1162773
1907             2365501                  NA             1162773
1908             2365501                  NA             1162773
1909              510290                  NA              256202
1910              510290                  NA              256202
1911              510290                  NA              256202
1912             4610050                  NA             2315218
1913             4610050                  NA             2315218
1914             1420825                  NA              698689
1915             4692242                  NA             2342253
1916             1420825                  NA              698689
1917             2073546                  NA              975289
1918             2570862                  NA             1280273
1919             1420825                  NA              698689
1920             1316145                  NA              640643
1921              490769                  NA              249622
1922              490769                  NA              249622
1923              490769                  NA              249622
1924              490769                  NA              249622
1925             1086859                  NA              532509
1926             1086859                  NA              532509
1927             4375604                  NA             2148947
1928              772902                  NA              380685
1929              772902                  NA              380685
1930              772902                  NA              380685
1931              772902                  NA              380685
1932              772902                  NA              380685
1933             3289701                  NA             1667851
1934              288639                  NA              146836
1935              803398                  NA              394257
1936              585485                  NA              292820
1937             3289701                  NA             1667851
1938             3289701                  NA             1667851
1939             3289701                  NA             1667851
1940             3678328                  NA             1837913
1941             1042393                  NA              516095
1942             2570862                  NA             1280273
1943             2570862                  NA             1280273
1944             2570862                  NA             1280273
1945             2570862                  NA             1280273
1946             7673379                  NA             3806912
1947              445213                  NA              223753
1948             1282588                  NA              630858
1949             1282588                  NA              630858
1950             1282588                  NA              630858
1951             1282588                  NA              630858
1952             1282588                  NA              630858
1953            13111917                  NA             6515114
1954            13111917                  NA             6515114
1955             1420825                  NA              698689
1956             4692242                  NA             2342253
1957             4692242                  NA             2342253
1958             1981584                  NA             1011796
1959             1981584                  NA             1011796
1960             1010100                  NA              512085
1961             1981584                  NA             1011796
1962              164765                  21               82304
1963              164765                  21               82304
1964             1981584                  NA             1011796
1965             1981584                  NA             1011796
1966             1981584                  NA             1011796
1967             1981584                  NA             1011796
1968             2073546                  NA              975289
1969             1254675                  NA              635422
1970             1254675                  NA              635422
1971             1254675                  NA              635422
1972             1254675                  NA              635422
1973             2394673                  NA             1181313
1974             2190750                  NA             1084347
1975             2394673                  NA             1181313
1976             2394673                  NA             1181313
1977              202163                  NA              100828
1978             2394673                  NA             1181313
1979             2394673                  NA             1181313
1980             2394673                  NA             1181313
1981             2394673                  NA             1181313
1982            13111917                  NA             6515114
1983             1264357                  NA              612537
1984            13111917                  NA             6515114
1985              844461                  NA              407362
1986              844461                  NA              407362
1987              844461                  NA              407362
1988              844461                  NA              407362
1989             2813523                  NA             1375126
1990             2813523                  NA             1375126
1991             2813523                  NA             1375126
1992             2813523                  NA             1375126
1993             2813523                  NA             1375126
1994             2813523                  NA             1375126
1995             2813523                  NA             1375126
1996             2813523                  NA             1375126
1997             2813523                  NA             1375126
1998             2813523                  NA             1375126
1999             2813523                  NA             1375126
2000             1215703                 422              594920
2001             2813523                  NA             1375126
2002             2813523                  NA             1375126
2003             2813523                  NA             1375126
2004             2813523                  NA             1375126
2005             2813523                  NA             1375126
2006             2813523                  NA             1375126
2007             2813523                  NA             1375126
2008             2813523                  NA             1375126
2009             2813523                  NA             1375126
2010             2813523                  NA             1375126
2011             2813523                  NA             1375126
2012             2813523                  NA             1375126
2013             2813523                  NA             1375126
2014             2813523                  NA             1375126
2015             2813523                  NA             1375126
2016             2813523                  NA             1375126
2017             3194310                  NA             1562880
2018              658694                  NA              322943
2019             2959386                  NA             1493164
2020             3194310                  NA             1562880
2021             3194310                  NA             1562880
2022             3194310                  NA             1562880
2023             3194310                  NA             1562880
2024             3194310                  NA             1562880
2025             3194310                  NA             1562880
2026             3194310                  NA             1562880
2027             3194310                  NA             1562880
2028             3194310                  NA             1562880
2029             1042393                  NA              516095
2030             1042393                  NA              516095
2031              288639                  NA              146836
2032             1568940                  NA              770847
2033              391957                  NA              189194
2034              222604                  NA              109360
2035             2679298                  NA             1318555
2036             7673379                  NA             3806912
2037             2394673                  NA             1181313
2038             2253528                  NA             1113732
2039             1613587                  NA              790463
2040             3289701                  NA             1667851
2041             1420825                  NA              698689
2042             6346083                  NA             3128067
2043             6346083                  NA             3128067
2044             7142603                  NA             3563435
2045             7142603                  NA             3563435
2046            19908595                  NA             9713298
2047             6232894                  NA             3033772
2048             4864209                  NA             2434382
2049             4864209                  NA             2434382
2050            13111917                  NA             6515114
2051              510290                  NA              256202
2052             3678328                  NA             1837913
2053             2073546                  NA              975289
2054             6346083                  NA             3128067
2055              152640                  NA               75942
2056             1163462                  NA              568061
2057              593318                  NA              293750
2058             1613587                  NA              790463
2059             4912449                  NA             2407307
2060             2253528                  NA             1113732
2061             4912449                  NA             2407307
2062             2959386                  NA             1493164
2063             1264357                  NA              612537
2064              711490                  NA              355020
2065             1798025                  NA              886709
2066             7673379                  NA             3806912
2067             6123949                  NA             3001027
2068             4912449                  NA             2407307
2069             4912449                  NA             2407307
2070             4912449                  NA             2407307
2071             4692242                  NA             2342253
2072              422733                  NA              212276
2073              803398                  NA              394257
2074             1017724                  NA              503252
2075             2079759                  NA             1012336
2076             2079759                  NA             1012336
2077             2668688                  NA             1305000
2078             2668688                  NA             1305000
2079             2109957                  NA             1038760
2080             2137223                  NA             1061042
2081             2137223                  NA             1061042
2082             2137223                  NA             1061042
2083             2253528                  NA             1113732
2084             2394673                  NA             1181313
2085             6346083                  NA             3128067
2086             6346083                  NA             3128067
2087             6346083                  NA             3128067
2088             6346083                  NA             3128067
2089              678995                  NA              341280
2090            19908595                  NA             9713298
2091            19908595                  NA             9713298
2092            19908595                  NA             9713298
2093            19908595                  NA             9713298
2094            19908595                  NA             9713298
2095            19908595                  NA             9713298
2096              510290                  NA              256202
2097              775169                  NA              372915
2098             6346083                  NA             3128067
2099             6346083                  NA             3128067
2100              289726                  NA              140509
2101             2109957                  NA             1038760
2102              676035                  NA              330879
2103             2109957                  NA             1038760
2104             1568940                  NA              770847
2105              133609                  NA               67870
2106             7673379                  NA             3806912
2107            19908595                  NA             9713298
2108              181055                  NA               90237
2109            19908595                  NA             9713298
2110             4864209                  NA             2434382
2111              884359                  NA              435364
2112            19908595                  NA             9713298
2113            19908595                  NA             9713298
2114            19908595                  NA             9713298
2115            19908595                  NA             9713298
2116            19908595                  NA             9713298
2117            19908595                  NA             9713298
2118            19908595                  NA             9713298
2119            19908595                  NA             9713298
2120            19908595                  NA             9713298
2121            19908595                  NA             9713298
2122            19908595                  NA             9713298
2123            19908595                  NA             9713298
2124              330119                  NA              161252
2125             1798025                  NA              886709
2126              966688                  NA              483251
2127             1798025                  NA              886709
2128             6232894                  NA             3033772
2129             2365501                  NA             1162773
2130             2365501                  NA             1162773
2131               96299                  NA               52279
2132             2365501                  NA             1162773
2133              406575                  NA              197548
2134              406575                  NA              197548
2135             1282588                  NA              630858
2136             1420825                  NA              698689
2137             1420825                  NA              698689
2138             1670949                  NA              818990
2139             4912449                  NA             2407307
2140             1282588                  NA              630858
2141             2137223                  NA             1061042
2142             2668688                  NA             1305000
2143              803398                  NA              394257
2144             2079759                  NA             1012336
2145              221648                  NA              106730
2146              700578                  NA              343022
2147             6346083                  NA             3128067
2148             4001701                  NA             2024424
2149              149113                  NA               74782
2150             9566955                  NA             4718471
2151             9566955                  NA             4718471
2152             2265926                  NA             1137581
2153             2570862                  NA             1280273
2154             4864209                  NA             2434382
2155             3678328                  NA             1837913
2156             3678328                  NA             1837913
2157              171951                  NA               87139
2158              901729                  NA              444836
2159              289726                  NA              140509
2160             2959386                  NA             1493164
2161             6346083                  NA             3128067
2162             3289701                  NA             1667851
2163              496299                  NA              240510
2164              772902                  NA              380685
2165             1316145                  NA              640643
2166              775169                  NA              372915
2167              658694                  NA              322943
2168             2190750                  NA             1084347
2169             2959386                  NA             1493164
2170             1087068                  NA              546278
2171              493980                  NA              244298
2172             7142603                  NA             3563435
2173            13111917                  NA             6515114
2174             6123949                  NA             3001027
2175              510290                  NA              256202
2176             2959386                  NA             1493164
2177              510290                  NA              256202
2178              866377                  58              420485
2179              866377                  58              420485
2180             2679298                  NA             1318555
2181            13111917                  NA             6515114
2182               79008                  NA               40763
2183             1114368                  NA              538428
2184            19908595                  NA             9713298
2185             1568940                  NA              770847
2186             6346083                  NA             3128067
2187             6346083                  NA             3128067
2188             7673379                  NA             3806912
2189             7673379                  NA             3806912
2190             7673379                  NA             3806912
2191             1010100                  NA              512085
2192            19908595                  NA             9713298
2193             6094752                  NA             2965233
2194             9566955                  NA             4718471
2195             6232894                  NA             3033772
2196             6232894                  NA             3033772
2197             4864209                  NA             2434382
2198             4864209                  NA             2434382
2199             3289701                  NA             1667851
2200               96299                  NA               52279
2201             2505312                  NA             1250855
2202             4912449                  NA             2407307
2203             4912449                  NA             2407307
2204            19908595                  NA             9713298
2205             4610050                  NA             2315218
2206             4692242                  NA             2342253
2207             6094752                  NA             2965233
2208             6094752                  NA             2965233
2209             6094752                  NA             2965233
2210             6094752                  NA             2965233
2211             6094752                  NA             2965233
2212             6094752                  NA             2965233
2213             4912449                  NA             2407307
2214             6346083                  NA             3128067
2215             4375604                  NA             2148947
2216             4375604                  NA             2148947
2217             4375604                  NA             2148947
2218            19908595                  NA             9713298
2219            19908595                  NA             9713298
2220            19908595                  NA             9713298
2221            19908595                  NA             9713298
2222            13111917                  NA             6515114
2223            13111917                  NA             6515114
2224            13111917                  NA             6515114
2225             3678328                  NA             1837913
2226             3678328                  NA             1837913
2227             1981584                  NA             1011796
2228             1254675                  NA              635422
2229             1254675                  NA              635422
2230             1254675                  NA              635422
2231             3194310                  NA             1562880
2232             3194310                  NA             1562880
2233            13111917                  NA             6515114
2234             4375604                  NA             2148947
2235             9566955                  NA             4718471
2236             2959386                  NA             1493164
2237            19908595                  NA             9713298
2238             7142603                  NA             3563435
2239             7142603                  NA             3563435
2240             7142603                  NA             3563435
2241             7142603                  NA             3563435
2242             1420825                  NA              698689
2243             4692242                  NA             2342253
2244             7142603                  NA             3563435
2245            19908595                  NA             9713298
2246            19908595                  NA             9713298
2247             9566955                  NA             4718471
2248             1316145                  NA              640643
2249             6232894                  NA             3033772
2250             2190750                  NA             1084347
2251             7673379                  NA             3806912
2252             1087068                  NA              546278
2253             6232894                  NA             3033772
2254              496299                  NA              240510
2255               96299                  NA               52279
2256                  NA                  NA                  NA
2257                  NA                  NA                  NA
2258             4001701                  NA             2024424
2259             4001701                  NA             2024424
2260             1254675                  NA              635422
2261             2959386                  NA             1493164
2262             6346083                  NA             3128067
2263              863166                  NA              427343
2264             6094752                  NA             2965233
2265             6094752                  NA             2965233
2266             6094752                  NA             2965233
2267             6094752                  NA             2965233
2268             6094752                  NA             2965233
2269             6094752                  NA             2965233
2270             6094752                  NA             2965233
2271             6094752                  NA             2965233
2272              152640                  NA               75942
2273             4912449                  NA             2407307
2274             4912449                  NA             2407307
2275              221648                  NA              106730
2276              803398                  NA              394257
2277             2253528                  NA             1113732
2278              593318                  NA              293750
2279             4375604                  NA             2148947
2280             4375604                  NA             2148947
2281             4375604                  NA             2148947
2282             4375604                  NA             2148947
2283             4375604                  NA             2148947
2284             4375604                  NA             2148947
2285             4375604                  NA             2148947
2286            19908595                  NA             9713298
2287             4864209                  NA             2434382
2288             2109957                  NA             1038760
2289            19908595                  NA             9713298
2290            19908595                  NA             9713298
2291            19908595                  NA             9713298
2292            19908595                  NA             9713298
2293            19908595                  NA             9713298
2294            19908595                  NA             9713298
2295            19908595                  NA             9713298
2296            19908595                  NA             9713298
2297            19908595                  NA             9713298
2298            19908595                  NA             9713298
2299            19908595                  NA             9713298
2300            19908595                  NA             9713298
2301              593318                  NA              293750
2302             3678328                  NA             1837913
2303             3678328                  NA             1837913
2304             3678328                  NA             1837913
2305             1420825                  NA              698689
2306              314708                  NA              152116
2307             1086859                  NA              532509
2308              884359                  NA              435364
2309             2296377                  NA             1160944
2310             2296377                  NA             1160944
2311              678995                  NA              341280
2312             2296377                  NA             1160944
2313             1215703                 422              594920
2314             4912449                  NA             2407307
2315             4912449                  NA             2407307
2316             2109957                  NA             1038760
2317             4912449                  NA             2407307
2318             4692242                  NA             2342253
2319             2668688                  NA             1305000
2320             2668688                  NA             1305000
2321             2668688                  NA             1305000
2322             2668688                  NA             1305000
2323             2668688                  NA             1305000
2324              437609                  NA              223186
2325             2668688                  NA             1305000
2326             2668688                  NA             1305000
2327             2668688                  NA             1305000
2328             2253528                  NA             1113732
2329             6346083                  NA             3128067
2330             7673379                  NA             3806912
2331             7673379                  NA             3806912
2332             7673379                  NA             3806912
2333             7673379                  NA             3806912
2334             7673379                  NA             3806912
2335             7673379                  NA             3806912
2336             7673379                  NA             3806912
2337             7673379                  NA             3806912
2338             7673379                  NA             3806912
2339             7673379                  NA             3806912
2340             7673379                  NA             3806912
2341             7673379                  NA             3806912
2342             7673379                  NA             3806912
2343             7673379                  NA             3806912
2344             7673379                  NA             3806912
2345             7673379                  NA             3806912
2346              477056                  NA              234726
2347              211078                  NA              103187
2348             4001701                  NA             2024424
2349             7142603                  NA             3563435
2350             6123949                  NA             3001027
2351            19908595                  NA             9713298
2352             2265926                  NA             1137581
2353              391957                  NA              189194
2354              289726                  NA              140509
2355             1316145                  NA              640643
2356              225745                  NA              112032
2357            19908595                  NA             9713298
2358             2679298                  NA             1318555
2359              593318                  NA              293750
2360              552916                  NA              270938
2361              749290                  NA              363653
2362              873167                  NA              431639
2363             6123949                  NA             3001027
2364             6123949                  NA             3001027
2365             6123949                  NA             3001027
2366             6123949                  NA             3001027
2367             6123949                  NA             3001027
2368             6123949                  NA             3001027
2369              386064                  NA              186619
2370             6123949                  NA             3001027
2371              803398                  NA              394257
2372             9566955                  NA             4718471
2373             9566955                  NA             4718471
2374             9566955                  NA             4718471
2375             9566955                  NA             4718471
2376             9566955                  NA             4718471
2377              221648                  NA              106730
2378             6232894                  NA             3033772
2379             6232894                  NA             3033772
2380             4864209                  NA             2434382
2381             4864209                  NA             2434382
2382             4864209                  NA             2434382
2383             4864209                  NA             2434382
2384             2505312                  NA             1250855
2385              869755                  NA              427134
2386             1420825                  NA              698689
2387              772902                  NA              380685
2388              308386                  NA              152054
2389             2365501                  NA             1162773
2390              775169                  NA              372915
2391              314708                  NA              152116
2392             1114368                  NA              538428
2393             2073546                  NA              975289
2394             2137223                  NA             1061042
2395             1282588                  NA              630858
2396              251635                  NA              126980
2397              204374                  NA              105162
2398              399335                  NA              205955
2399              399335                  NA              205955
2400                  NA                  NA                  NA
2401             6346083                  NA             3128067
2402               13910                  NA                7232
2403             1010100                  NA              512085
2404               13910                  NA                7232
2405            13111917                  NA             6515114
2406            13111917                  NA             6515114
2407              966688                  NA              483251
2408                  NA                  NA                  NA
2409             2505312                  NA             1250855
2410              164765                  21               82304
2411             4001701                  NA             2024424
2412             4001701                  NA             2024424
2413             4001701                  NA             2024424
2414             4001701                  NA             2024424
2415             4692242                  NA             2342253
2416              915968                  NA              453044
2417              772902                  NA              380685
2418              901729                  NA              444836
2419             1215703                 422              594920
2420             1215703                 422              594920
2421             4912449                  NA             2407307
2422             4912449                  NA             2407307
2423             4912449                  NA             2407307
2424             4912449                  NA             2407307
2425            13111917                  NA             6515114
2426             6346083                  NA             3128067
2427             6123949                  NA             3001027
2428            19908595                  NA             9713298
2429             4001701                  NA             2024424
2430            19908595                  NA             9713298
2431            19908595                  NA             9713298
2432            19908595                  NA             9713298
2433            13111917                  NA             6515114
2434            13111917                  NA             6515114
2435             4610050                  NA             2315218
2436             1670949                  NA              818990
2437             1670949                  NA              818990
2438             3289701                  NA             1667851
2439             2073546                  NA              975289
2440             2073546                  NA              975289
2441             2394673                  NA             1181313
2442              844461                  NA              407362
2443              658694                  NA              322943
2444             6094752                  NA             2965233
2445             6094752                  NA             2965233
2446             6094752                  NA             2965233
2447             6094752                  NA             2965233
2448             6094752                  NA             2965233
2449             6094752                  NA             2965233
2450             6094752                  NA             2965233
2451             6094752                  NA             2965233
2452             6094752                  NA             2965233
2453             6094752                  NA             2965233
2454             6094752                  NA             2965233
2455             6094752                  NA             2965233
2456             6094752                  NA             2965233
2457             6094752                  NA             2965233
2458             6094752                  NA             2965233
2459             6094752                  NA             2965233
2460             6094752                  NA             2965233
2461             6094752                  NA             2965233
2462             6094752                  NA             2965233
2463             6094752                  NA             2965233
2464             6094752                  NA             2965233
2465             6094752                  NA             2965233
2466             2296377                  NA             1160944
2467             2296377                  NA             1160944
2468             1990873                  NA              978574
2469             4912449                  NA             2407307
2470               35159                  NA               18160
2471             2668688                  NA             1305000
2472             2253528                  NA             1113732
2473             2253528                  NA             1113732
2474             2253528                  NA             1113732
2475              153733                  NA               76642
2476             7673379                  NA             3806912
2477             4375604                  NA             2148947
2478             4375604                  NA             2148947
2479             4375604                  NA             2148947
2480             4375604                  NA             2148947
2481             4375604                  NA             2148947
2482             4375604                  NA             2148947
2483             4375604                  NA             2148947
2484             4375604                  NA             2148947
2485             4375604                  NA             2148947
2486              867161                  NA              431851
2487              610723                  NA              300904
2488             6346083                  NA             3128067
2489             2109957                  NA             1038760
2490            19908595                  NA             9713298
2491            19908595                  NA             9713298
2492            13111917                  NA             6515114
2493            13111917                  NA             6515114
2494             2679298                  NA             1318555
2495             1335804                  NA              641128
2496             6123949                  NA             3001027
2497             6123949                  NA             3001027
2498             3678328                  NA             1837913
2499             3678328                  NA             1837913
2500             3678328                  NA             1837913
2501             3678328                  NA             1837913
2502             3678328                  NA             1837913
2503             3678328                  NA             1837913
2504             3678328                  NA             1837913
2505             3678328                  NA             1837913
2506             3678328                  NA             1837913
2507             3678328                  NA             1837913
2508             3678328                  NA             1837913
2509             3678328                  NA             1837913
2510            19908595                  NA             9713298
2511              775169                  NA              372915
2512              772902                  NA              380685
2513             2570862                  NA             1280273
2514             4001701                  NA             2024424
2515             4001701                  NA             2024424
2516              140356                  NA               72104
2517             4001701                  NA             2024424
2518             4692242                  NA             2342253
2519             2073546                  NA              975289
2520             1254675                  NA              635422
2521             1254675                  NA              635422
2522             1254675                  NA              635422
2523             1254675                  NA              635422
2524             1254675                  NA              635422
2525             1254675                  NA              635422
2526             1254675                  NA              635422
2527             1254675                  NA              635422
2528             1254675                  NA              635422
2529             1254675                  NA              635422
2530             1254675                  NA              635422
2531             1254675                  NA              635422
2532             1254675                  NA              635422
2533              308386                  NA              152054
2534              225745                  NA              112032
2535            19908595                  NA             9713298
2536            19908595                  NA             9713298
2537            19908595                  NA             9713298
2538            19908595                  NA             9713298
2539            19908595                  NA             9713298
2540            19908595                  NA             9713298
2541             6346083                  NA             3128067
2542             6346083                  NA             3128067
2543            13111917                  NA             6515114
2544              386064                  NA              186619
2545              421854                  NA              208182
2546             7673379                  NA             3806912
2547             7673379                  NA             3806912
2548             7673379                  NA             3806912
2549             7673379                  NA             3806912
2550             7673379                  NA             3806912
2551             7673379                  NA             3806912
2552              711490                  NA              355020
2553             6232894                  NA             3033772
2554              245475                  NA              121109
2555              156131                  NA               77615
2556              646794                  NA              322648
2557              591397                  NA              285117
2558              216217                  NA              106627
2559             6123949                  NA             3001027
2560              966688                  NA              483251
2561             9566955                  NA             4718471
2562             9566955                  NA             4718471
2563             9566955                  NA             4718471
2564              208406                  NA              100899
2565              386064                  NA              186619
2566             1254675                  NA              635422
2567              867161                  NA              431851
2568             2668688                  NA             1305000
2569             2668688                  NA             1305000
2570             2668688                  NA             1305000
2571             2668688                  NA             1305000
2572             2668688                  NA             1305000
2573             2668688                  NA             1305000
2574             6346083                  NA             3128067
2575             6346083                  NA             3128067
2576              775169                  NA              372915
2577              678995                  NA              341280
2578             6232894                  NA             3033772
2579              510290                  NA              256202
2580              493980                  NA              244298
2581              133467                 110               67534
2582               79506                  NA               40147
2583              422187                  NA              211290
2584             2959386                  NA             1493164
2585             2959386                  NA             1493164
2586             2959386                  NA             1493164
2587             2959386                  NA             1493164
2588             2959386                  NA             1493164
2589             2959386                  NA             1493164
2590             2959386                  NA             1493164
2591             2959386                  NA             1493164
2592             4375604                  NA             2148947
2593             4375604                  NA             2148947
2594             4375604                  NA             2148947
2595             2813523                  NA             1375126
2596            19908595                  NA             9713298
2597             7142603                  NA             3563435
2598             7142603                  NA             3563435
2599             7142603                  NA             3563435
2600             7142603                  NA             3563435
2601            13111917                  NA             6515114
2602              322285                  NA              159719
2603              174621                  NA               89435
2604             2190750                  NA             1084347
2605             3678328                  NA             1837913
2606             3678328                  NA             1837913
2607             3678328                  NA             1837913
2608             3678328                  NA             1837913
2609             3678328                  NA             1837913
2610             3678328                  NA             1837913
2611             3678328                  NA             1837913
2612              966688                  NA              483251
2613             9566955                  NA             4718471
2614             9566955                  NA             4718471
2615             9566955                  NA             4718471
2616             9566955                  NA             4718471
2617             9566955                  NA             4718471
2618             1798025                  NA              886709
2619             4864209                  NA             2434382
2620             1316145                  NA              640643
2621              406575                  NA              197548
2622             4001701                  NA             2024424
2623             4692242                  NA             2342253
2624             4692242                  NA             2342253
2625             1254675                  NA              635422
2626             1254675                  NA              635422
2627             1254675                  NA              635422
2628             1254675                  NA              635422
2629             1254675                  NA              635422
2630             1254675                  NA              635422
2631             1254675                  NA              635422
2632             1042393                  NA              516095
2633             2505312                  NA             1250855
2634             6346083                  NA             3128067
2635             2959386                  NA             1493164
2636             2959386                  NA             1493164
2637             2959386                  NA             1493164
2638              711490                  NA              355020
2639            19908595                  NA             9713298
2640            19908595                  NA             9713298
2641              399335                  NA              205955
2642             2394673                  NA             1181313
2643             6346083                  NA             3128067
2644             6346083                  NA             3128067
2645             6346083                  NA             3128067
2646             6346083                  NA             3128067
2647             7142603                  NA             3563435
2648             7142603                  NA             3563435
2649             7142603                  NA             3563435
2650             7142603                  NA             3563435
2651             7142603                  NA             3563435
2652             7142603                  NA             3563435
2653             7142603                  NA             3563435
2654             7142603                  NA             3563435
2655             2190750                  NA             1084347
2656              873167                  NA              431639
2657              966688                  NA              483251
2658             2365501                  NA             1162773
2659             3289701                  NA             1667851
2660               79008                  NA               40763
2661             4692242                  NA             2342253
2662             4692242                  NA             2342253
2663             4692242                  NA             2342253
2664             4692242                  NA             2342253
2665             2394673                  NA             1181313
2666               79008                  NA               40763
2667            13111917                  NA             6515114
2668             2296377                  NA             1160944
2669            13111917                  NA             6515114
2670             2840005                  NA             1374325
2671             2137223                  NA             1061042
2672             2959386                  NA             1493164
2673             2505312                  NA             1250855
2674             2265926                  NA             1137581
2675             2265926                  NA             1137581
2676             3289701                  NA             1667851
2677             4864209                  NA             2434382
2678              772902                  NA              380685
2679             3289701                  NA             1667851
2680             1568940                  NA              770847
2681              867161                  NA              431851
2682              277944                  NA              140783
2683             7142603                  NA             3563435
2684             7142603                  NA             3563435
2685             7142603                  NA             3563435
2686             2190750                  NA             1084347
2687             4912449                  NA             2407307
2688             4912449                  NA             2407307
2689             4912449                  NA             2407307
2690              803398                  NA              394257
2691             2137223                  NA             1061042
2692             6346083                  NA             3128067
2693             4375604                  NA             2148947
2694            19908595                  NA             9713298
2695            19908595                  NA             9713298
2696            19908595                  NA             9713298
2697            19908595                  NA             9713298
2698              330119                  NA              161252
2699            19908595                  NA             9713298
2700            19908595                  NA             9713298
2701            19908595                  NA             9713298
2702             1428923                  NA              708697
2703             9566955                  NA             4718471
2704             9566955                  NA             4718471
2705             9566955                  NA             4718471
2706             9566955                  NA             4718471
2707             6232894                  NA             3033772
2708             6232894                  NA             3033772
2709              391957                  NA              189194
2710             1420825                  NA              698689
2711              550596                  NA              277195
2712              313961                  NA              153951
2713             6346083                  NA             3128067
2714             9566955                  NA             4718471
2715             9566955                  NA             4718471
2716              510290                  NA              256202
2717             3678328                  NA             1837913
2718             4610050                  NA             2315218
2719              772902                  NA              380685
2720             2668688                  NA             1305000
2721             2668688                  NA             1305000
2722              422733                  NA              212276
2723             6232894                  NA             3033772
2724             6232894                  NA             3033772
2725             1114368                  NA              538428
2726             2959386                  NA             1493164
2727             6346083                  NA             3128067
2728             7142603                  NA             3563435
2729             7142603                  NA             3563435
2730              646794                  NA              322648
2731              749290                  NA              363653
2732             6094752                  NA             2965233
2733              152640                  NA               75942
2734             1990873                  NA              978574
2735              225745                  NA              112032
2736             2840005                  NA             1374325
2737             1087068                  NA              546278
2738              330119                  NA              161252
2739            19908595                  NA             9713298
2740            19908595                  NA             9713298
2741            19908595                  NA             9713298
2742            19908595                  NA             9713298
2743            19908595                  NA             9713298
2744              550596                  NA              277195
2745             1420825                  NA              698689
2746             1316145                  NA              640643
2747             1086859                  NA              532509
2748             1086859                  NA              532509
2749              406575                  NA              197548
2750              406575                  NA              197548
2751             3194310                  NA             1562880
2752              493980                  NA              244298
2753             2296377                  NA             1160944
2754             1042393                  NA              516095
2755              564466                  NA              276108
2756              171196                  NA               80857
2757              771602                  NA              388362
2758              164765                  21               82304
2759              174621                  NA               89435
2760            13111917                  NA             6515114
2761             1010100                  NA              512085
2762              479865                  NA              235485
2763             2079759                  NA             1012336
2764             2079759                  NA             1012336
2765             2079759                  NA             1012336
2766              399335                  NA              205955
2767             2668688                  NA             1305000
2768             2668688                  NA             1305000
2769             2668688                  NA             1305000
2770             2668688                  NA             1305000
2771             2668688                  NA             1305000
2772             2668688                  NA             1305000
2773             2668688                  NA             1305000
2774             2668688                  NA             1305000
2775             2668688                  NA             1305000
2776             2668688                  NA             1305000
2777             2668688                  NA             1305000
2778             2668688                  NA             1305000
2779             2668688                  NA             1305000
2780             2668688                  NA             1305000
2781             2253528                  NA             1113732
2782             6346083                  NA             3128067
2783             6346083                  NA             3128067
2784             7673379                  NA             3806912
2785             7673379                  NA             3806912
2786             7673379                  NA             3806912
2787             7673379                  NA             3806912
2788             7673379                  NA             3806912
2789             7673379                  NA             3806912
2790             7673379                  NA             3806912
2791             7673379                  NA             3806912
2792             7673379                  NA             3806912
2793             7673379                  NA             3806912
2794             7673379                  NA             3806912
2795             7673379                  NA             3806912
2796             7673379                  NA             3806912
2797             7673379                  NA             3806912
2798             7673379                  NA             3806912
2799             7673379                  NA             3806912
2800             7673379                  NA             3806912
2801             7673379                  NA             3806912
2802              966688                  NA              483251
2803              515954                  NA              253400
2804              658694                  NA              322943
2805             1428923                  NA              708697
2806              211078                  NA              103187
2807              490769                  NA              249622
2808                  NA                  NA                  NA
2809             2137223                  NA             1061042
2810             2109957                  NA             1038760
2811             1613587                  NA              790463
2812              567287                  NA              281431
2813              416839                  NA              205169
2814              288639                  NA              146836
2815             1017724                  NA              503252
2816              152640                  NA               75942
2817              612898                  NA              299409
2818            13111917                  NA             6515114
2819              844461                  NA              407362
2820               76726                  NA               39209
2821             1335804                  NA              641128
2822             1670949                  NA              818990
2823              831913                  NA              404751
2824              496299                  NA              240510
2825              429312                  NA              206306
2826             2190750                  NA             1084347
2827               24944                  NA               13144
2828             1335804                  NA              641128
2829             6123949                  NA             3001027
2830             6123949                  NA             3001027
2831             6123949                  NA             3001027
2832              490769                  NA              249622
2833             6123949                  NA             3001027
2834              711490                  NA              355020
2835             6123949                  NA             3001027
2836             6123949                  NA             3001027
2837              678995                  NA              341280
2838             1316145                  NA              640643
2839              278103                  NA              136234
2840             9566955                  NA             4718471
2841             9566955                  NA             4718471
2842             4610050                  NA             2315218
2843             6123949                  NA             3001027
2844              867161                  NA              431851
2845              122678                  NA               61536
2846             2073546                  NA              975289
2847             4864209                  NA             2434382
2848             4864209                  NA             2434382
2849             2365501                  NA             1162773
2850             2840005                  NA             1374325
2851              156131                  NA               77615
2852             1086859                  NA              532509
2853             1798025                  NA              886709
2854              510290                  NA              256202
2855            13111917                  NA             6515114
2856              421854                  NA              208182
2857             4001701                  NA             2024424
2858              422733                  NA              212276
2859              469484                  NA              227358
2860             4692242                  NA             2342253
2861             7142603                  NA             3563435
2862             2505312                  NA             1250855
2863             2073546                  NA              975289
2864              831913                  NA              404751
2865              469484                  NA              227358
2866              515954                  NA              253400
2867             2813523                  NA             1375126
2868              326159                  NA              160906
2869             3194310                  NA             1562880
2870             1042393                  NA              516095
2871              915968                  NA              453044
2872             7673379                  NA             3806912
2873             1428923                  NA              708697
2874              803398                  NA              394257
2875             2840005                  NA             1374325
2876             2109957                  NA             1038760
2877               13910                  NA                7232
2878               13910                  NA                7232
2879             2679298                  NA             1318555
2880             1568940                  NA              770847
2881             2505312                  NA             1250855
2882             3289701                  NA             1667851
2883             2570862                  NA             1280273
2884             4001701                  NA             2024424
2885             4001701                  NA             2024424
2886             4001701                  NA             2024424
2887             4001701                  NA             2024424
2888             4001701                  NA             2024424
2889             4001701                  NA             2024424
2890             4001701                  NA             2024424
2891             4001701                  NA             2024424
2892             4001701                  NA             2024424
2893             4001701                  NA             2024424
2894             4001701                  NA             2024424
2895             4001701                  NA             2024424
2896             1981584                  NA             1011796
2897             1215703                 422              594920
2898             1215703                 422              594920
2899             1215703                 422              594920
2900             4912449                  NA             2407307
2901             4912449                  NA             2407307
2902             4912449                  NA             2407307
2903              308919                  NA              149938
2904             1163462                  NA              568061
2905              803398                  NA              394257
2906             2079759                  NA             1012336
2907             3289701                  NA             1667851
2908             6346083                  NA             3128067
2909            19908595                  NA             9713298
2910            19908595                  NA             9713298
2911             6123949                  NA             3001027
2912             6123949                  NA             3001027
2913             6123949                  NA             3001027
2914             6123949                  NA             3001027
2915             6123949                  NA             3001027
2916            19908595                  NA             9713298
2917            19908595                  NA             9713298
2918             7142603                  NA             3563435
2919             1613587                  NA              790463
2920             1613587                  NA              790463
2921             1613587                  NA              790463
2922             1613587                  NA              790463
2923            19908595                  NA             9713298
2924            19908595                  NA             9713298
2925            19908595                  NA             9713298
2926            19908595                  NA             9713298
2927            19908595                  NA             9713298
2928             2679298                  NA             1318555
2929             6123949                  NA             3001027
2930             6123949                  NA             3001027
2931             6123949                  NA             3001027
2932             6123949                  NA             3001027
2933             6123949                  NA             3001027
2934              222831                  NA              106479
2935             1316145                  NA              640643
2936             1316145                  NA              640643
2937             1316145                  NA              640643
2938              490769                  NA              249622
2939              772902                  NA              380685
2940             3289701                  NA             1667851
2941             2570862                  NA             1280273
2942             1981584                  NA             1011796
2943             2073546                  NA              975289
2944              225745                  NA              112032
2945              844461                  NA              407362
2946             1428923                  NA              708697
2947             6094752                  NA             2965233
2948             6094752                  NA             2965233
2949             6094752                  NA             2965233
2950             6094752                  NA             2965233
2951             6094752                  NA             2965233
2952             6094752                  NA             2965233
2953              185147                  NA               92047
2954              419715                  NA              207197
2955             1010100                  NA              512085
2956              493980                  NA              244298
2957                  NA                  NA                  NA
2958             6346083                  NA             3128067
2959             4375604                  NA             2148947
2960              382983                  NA              189968
2961             6123949                  NA             3001027
2962             2079759                  NA             1012336
2963              515954                  NA              253400
2964               83584                  NA               41704
2965              326159                  NA              160906
2966              419715                  NA              207197
2967              289726                  NA              140509
2968              147716                  NA               70170
2969             9566955                  NA             4718471
2970             2505312                  NA             1250855
2971              772902                  NA              380685
2972             6346083                  NA             3128067
2973             2813523                  NA             1375126
2974              156131                  NA               77615
2975             1254675                  NA              635422
2976             1086859                  NA              532509
2977             2109957                  NA             1038760
2978             2959386                  NA             1493164
2979             2959386                  NA             1493164
2980             2959386                  NA             1493164
2981             2959386                  NA             1493164
2982            19908595                  NA             9713298
2983             2265926                  NA             1137581
2984             2679298                  NA             1318555
2985             4610050                  NA             2315218
2986              772902                  NA              380685
2987              772902                  NA              380685
2988             2813523                  NA             1375126
2989             3194310                  NA             1562880
2990              383732                  NA              189495
2991              383732                  NA              189495
2992              884359                  NA              435364
2993              550596                  NA              277195
2994             1087068                  NA              546278
2995              775169                  NA              372915
2996             6346083                  NA             3128067
2997             9566955                  NA             4718471
2998              308919                  NA              149938
2999             2813523                  NA             1375126
3000              429312                  NA              206306
3001             1114368                  NA              538428
3002              127314                  NA               65959
3003              564466                  NA              276108
3004              275693                  NA              137408
3005             6346083                  NA             3128067
3006             7673379                  NA             3806912
3007             7673379                  NA             3806912
3008             7673379                  NA             3806912
3009             7673379                  NA             3806912
3010             7673379                  NA             3806912
3011             7673379                  NA             3806912
3012             7673379                  NA             3806912
3013             1087068                  NA              546278
3014             6123949                  NA             3001027
3015             6123949                  NA             3001027
3016             6123949                  NA             3001027
3017             9566955                  NA             4718471
3018             9566955                  NA             4718471
3019             9566955                  NA             4718471
3020             9566955                  NA             4718471
3021             2668688                  NA             1305000
3022              406575                  NA              197548
3023              884359                  NA              435364
3024              274339                  NA              133897
3025              700578                  NA              343022
3026             2079759                  NA             1012336
3027             2265926                  NA             1137581
3028            13111917                  NA             6515114
3029             1568940                  NA              770847
3030             1282588                  NA              630858
3031              612898                  NA              299409
3032             2079759                  NA             1012336
3033             2668688                  NA             1305000
3034             2668688                  NA             1305000
3035             2668688                  NA             1305000
3036             2668688                  NA             1305000
3037             2253528                  NA             1113732
3038             6346083                  NA             3128067
3039             6346083                  NA             3128067
3040             6346083                  NA             3128067
3041             6346083                  NA             3128067
3042             6346083                  NA             3128067
3043             6346083                  NA             3128067
3044              711490                  NA              355020
3045             1114368                  NA              538428
3046              181055                  NA               90237
3047              341067                  NA              165567
3048             1087068                  NA              546278
3049              270495                  NA              134616
3050             2109957                  NA             1038760
3051             6232894                  NA             3033772
3052              323992                  NA              159346
3053             2296377                  NA             1160944
3054              906883                  NA              464093
3055              237830                  NA              117352
3056              488436                  NA              240478
3057             2959386                  NA             1493164
3058             2959386                  NA             1493164
3059             2959386                  NA             1493164
3060             7673379                  NA             3806912
3061             7673379                  NA             3806912
3062             4375604                  NA             2148947
3063              419715                  NA              207197
3064               32108                  NA               16461
3065               73103                  NA               37934
3066              158478                  NA               79833
3067            13111917                  NA             6515114
3068            13111917                  NA             6515114
3069            13111917                  NA             6515114
3070              151721                  NA               75403
3071               98301                  NA               48462
3072             3678328                  NA             1837913
3073             9566955                  NA             4718471
3074              552916                  NA              270938
3075              154481                  NA               75375
3076              406575                  NA              197548
3077              314708                  NA              152116
3078             4001701                  NA             2024424
3079             4692242                  NA             2342253
3080             4692242                  NA             2342253
3081             4692242                  NA             2342253
3082             4692242                  NA             2342253
3083             1254675                  NA              635422
3084              382218                  NA              189292
3085             1798025                  NA              886709
3086               62150                  NA               31276
3087              399335                  NA              205955
3088            13111917                  NA             6515114
3089              437609                  NA              223186
3090             4001701                  NA             2024424
3091             4001701                  NA             2024424
3092             2296377                  NA             1160944
3093             1010100                  NA              512085
3094               38055                  NA               18523
3095             1017724                  NA              503252
3096             2073546                  NA              975289
3097             2137223                  NA             1061042
3098             2959386                  NA             1493164
3099             2959386                  NA             1493164
3100            19908595                  NA             9713298
3101             1008280                  NA              506526
3102             6346083                  NA             3128067
3103             6346083                  NA             3128067
3104             7142603                  NA             3563435
3105             7142603                  NA             3563435
3106             7142603                  NA             3563435
3107             7142603                  NA             3563435
3108             7142603                  NA             3563435
3109             7142603                  NA             3563435
3110             2505312                  NA             1250855
3111              181852                  NA               89879
3112            13111917                  NA             6515114
3113            13111917                  NA             6515114
3114                  NA                  NA                  NA
3115             2073546                  NA              975289
3116             6232894                  NA             3033772
3117               59928                  NA               30012
3118              844461                  NA              407362
3119              422187                  NA              211290
3120               21942                  NA               11564
3121              915968                  NA              453044
3122              915968                  NA              453044
3123             2296377                  NA             1160944
3124             2296377                  NA             1160944
3125             1114368                  NA              538428
3126             1990873                  NA              978574
3127             1990873                  NA              978574
3128             1990873                  NA              978574
3129             4864209                  NA             2434382
3130             1163462                  NA              568061
3131             2840005                  NA             1374325
3132             2840005                  NA             1374325
3133             2840005                  NA             1374325
3134             2840005                  NA             1374325
3135             2840005                  NA             1374325
3136             2840005                  NA             1374325
3137             2840005                  NA             1374325
3138             2840005                  NA             1374325
3139             2840005                  NA             1374325
3140             2840005                  NA             1374325
3141              803398                  NA              394257
3142             2137223                  NA             1061042
3143             2137223                  NA             1061042
3144             7673379                  NA             3806912
3145             7673379                  NA             3806912
3146             7673379                  NA             3806912
3147             7673379                  NA             3806912
3148             7673379                  NA             3806912
3149             7673379                  NA             3806912
3150             7673379                  NA             3806912
3151             7673379                  NA             3806912
3152             6346083                  NA             3128067
3153             6346083                  NA             3128067
3154             2959386                  NA             1493164
3155             2959386                  NA             1493164
3156             6123949                  NA             3001027
3157             7142603                  NA             3563435
3158             7142603                  NA             3563435
3159             7142603                  NA             3563435
3160             7142603                  NA             3563435
3161            19908595                  NA             9713298
3162             2265926                  NA             1137581
3163             2265926                  NA             1137581
3164              322285                  NA              159719
3165              322285                  NA              159719
3166            13111917                  NA             6515114
3167              749290                  NA              363653
3168              174621                  NA               89435
3169             2190750                  NA             1084347
3170             2190750                  NA             1084347
3171             2679298                  NA             1318555
3172             2679298                  NA             1318555
3173             2679298                  NA             1318555
3174             9566955                  NA             4718471
3175             9566955                  NA             4718471
3176             9566955                  NA             4718471
3177             9566955                  NA             4718471
3178             9566955                  NA             4718471
3179             9566955                  NA             4718471
3180             9566955                  NA             4718471
3181             1335804                  NA              641128
3182             1568940                  NA              770847
3183              496299                  NA              240510
3184             4692242                  NA             2342253
3185             4692242                  NA             2342253
3186              966688                  NA              483251
3187              966688                  NA              483251
3188             4864209                  NA             2434382
3189             4864209                  NA             2434382
3190             4864209                  NA             2434382
3191             2365501                  NA             1162773
3192             4610050                  NA             2315218
3193             1670949                  NA              818990
3194             1670949                  NA              818990
3195             1420825                  NA              698689
3196              490769                  NA              249622
3197              490769                  NA              249622
3198             1086859                  NA              532509
3199              772902                  NA              380685
3200             3289701                  NA             1667851
3201             3289701                  NA             1667851
3202             2570862                  NA             1280273
3203             2570862                  NA             1280273
3204              406575                  NA              197548
3205             1282588                  NA              630858
3206             2394673                  NA             1181313
3207             2813523                  NA             1375126
3208             2813523                  NA             1375126
3209             2813523                  NA             1375126
3210             2813523                  NA             1375126
3211             3194310                  NA             1562880
3212             3194310                  NA             1562880
3213             3194310                  NA             1562880
3214             1017724                  NA              503252
3215             1017724                  NA              503252
3216              406575                  NA              197548
3217             2668688                  NA             1305000
3218             7673379                  NA             3806912
3219             7673379                  NA             3806912
3220              204374                  NA              105162
3221             4864209                  NA             2434382
3222             4864209                  NA             2434382
3223             1316145                  NA              640643
3224             1215703                 422              594920
3225             4912449                  NA             2407307
3226             6346083                  NA             3128067
3227             6346083                  NA             3128067
3228            19908595                  NA             9713298
3229            19908595                  NA             9713298
3230             6346083                  NA             3128067
3231             6346083                  NA             3128067
3232             2137223                  NA             1061042
3233            19908595                  NA             9713298
3234            19908595                  NA             9713298
3235            19908595                  NA             9713298
3236             9566955                  NA             4718471
3237             9566955                  NA             4718471
3238             9566955                  NA             4718471
3239             6232894                  NA             3033772
3240              700578                  NA              343022
3241              844461                  NA              407362
3242              469484                  NA              227358
3243             2505312                  NA             1250855
3244             1008280                  NA              506526
3245              831913                  NA              404751
3246              166222                  NA               84066
3247             7142603                  NA             3563435
3248              270495                  NA              134616
3249             6346083                  NA             3128067
3250             1568940                  NA              770847
3251             9566955                  NA             4718471
3252              158665                  NA               83943
3253              567287                  NA              281431
3254             2253528                  NA             1113732
3255             3678328                  NA             1837913
3256             6123949                  NA             3001027
3257             4912449                  NA             2407307
3258             2668688                  NA             1305000
3259             1087068                  NA              546278
3260             6232894                  NA             3033772
3261             6232894                  NA             3033772
3262             1086859                  NA              532509
3263              330119                  NA              161252
3264             1264357                  NA              612537
3265             7142603                  NA             3563435
3266              154481                  NA               75375
3267             1215703                 422              594920
3268             2668688                  NA             1305000
3269             7673379                  NA             3806912
3270             7673379                  NA             3806912
3271              384740                  NA              183928
3272             6232894                  NA             3033772
3273              202163                  NA              100828
3274            13111917                  NA             6515114
3275              421982                  NA              206161
3276              122229                 225               61221
3277               66376                  NA               33782
3278             4864209                  NA             2434382
3279              396279                  NA              201129
3280              399335                  NA              205955
3281              399335                  NA              205955
3282              399335                  NA              205955
3283             4001701                  NA             2024424
3284                  NA                  NA                  NA
3285                  NA                  NA                  NA
3286            19908595                  NA             9713298
3287            19908595                  NA             9713298
3288             1670949                  NA              818990
3289             2570862                  NA             1280273
3290             6094752                  NA             2965233
3291             6094752                  NA             2965233
3292             6094752                  NA             2965233
3293             6094752                  NA             2965233
3294             6094752                  NA             2965233
3295             6094752                  NA             2965233
3296              341067                  NA              165567
3297              399335                  NA              205955
3298              391957                  NA              189194
3299              119685                  NA               62534
3300             2813523                  NA             1375126
3301             6346083                  NA             3128067
3302             7673379                  NA             3806912
3303             7673379                  NA             3806912
3304              437609                  NA              223186
3305             2668688                  NA             1305000
3306             2668688                  NA             1305000
3307             6346083                  NA             3128067
3308             6346083                  NA             3128067
3309              421982                  NA              206161
3310             6232894                  NA             3033772
3311             2959386                  NA             1493164
3312              322285                  NA              159719
3313             9566955                  NA             4718471
3314             2570862                  NA             1280273
3315             4692242                  NA             2342253
3316            19908595                  NA             9713298
3317            19908595                  NA             9713298
3318             7142603                  NA             3563435
3319             1010100                  NA              512085
3320             3289701                  NA             1667851
3321               77140                  NA               40384
3322             4692242                  NA             2342253
3323             2840005                  NA             1374325
3324             6346083                  NA             3128067
3325              382218                  NA              189292
3326              585485                  NA              292820
3327             9566955                  NA             4718471
3328              966688                  NA              483251
3329            13111917                  NA             6515114
3330             3289701                  NA             1667851
3331             3289701                  NA             1667851
3332            13111917                  NA             6515114
3333             2813523                  NA             1375126
3334             3194310                  NA             1562880
3335              803398                  NA              394257
3336             7673379                  NA             3806912
3337             7673379                  NA             3806912
3338             7673379                  NA             3806912
3339             7142603                  NA             3563435
3340             7142603                  NA             3563435
3341             7142603                  NA             3563435
3342              140356                  NA               72104
3343             2668688                  NA             1305000
3344             2668688                  NA             1305000
3345            19908595                  NA             9713298
3346             1798025                  NA              886709
3347             6232894                  NA             3033772
3348             3678328                  NA             1837913
3349             6232894                  NA             3033772
3350             6232894                  NA             3033772
3351             2959386                  NA             1493164
3352             2959386                  NA             1493164
3353              391957                  NA              189194
3354             6232894                  NA             3033772
3355             9566955                  NA             4718471
3356             6094752                  NA             2965233
3357             6346083                  NA             3128067
3358             7673379                  NA             3806912
3359             7673379                  NA             3806912
3360              401702                  NA              198867
3361              281712                  NA              142477
3362              269418                  NA              135977
3363             6123949                  NA             3001027
3364             6232894                  NA             3033772
3365              223223                  NA              111472
3366             6094752                  NA             2965233
3367             6094752                  NA             2965233
3368             2840005                  NA             1374325
3369             4375604                  NA             2148947
3370             9566955                  NA             4718471
3371              906883                  NA              464093
3372             7673379                  NA             3806912
3373             6123949                  NA             3001027
3374             6346083                  NA             3128067
3375             6346083                  NA             3128067
3376             2959386                  NA             1493164
3377                  NA                  NA                  NA
3378             9566955                  NA             4718471
3379              304252                  NA              154587
3380             4692242                  NA             2342253
3381              490769                  NA              249622
3382             2959386                  NA             1493164
3383            19908595                  NA             9713298
3384            19908595                  NA             9713298
3385             7142603                  NA             3563435
3386             2109957                  NA             1038760
3387             4692242                  NA             2342253
3388              772902                  NA              380685
3389             2265926                  NA             1137581
3390              269278                 239              135933
3391             7673379                  NA             3806912
3392             7673379                  NA             3806912
3393             7142603                  NA             3563435
3394             2190750                  NA             1084347
3395             1254675                  NA              635422
3396             1282588                  NA              630858
3397             7142603                  NA             3563435
3398             2668688                  NA             1305000
3399             6094752                  NA             2965233
3400             7673379                  NA             3806912
3401            19908595                  NA             9713298
3402             6094752                  NA             2965233
3403              171284                  NA               83922
3404              275693                  NA              137408
3405             4375604                  NA             2148947
3406            19908595                  NA             9713298
3407             1335804                  NA              641128
3408              382983                  NA              189968
3409             1010100                  NA              512085
3410              323992                  NA              159346
3411             2296377                  NA             1160944
3412              330119                  NA              161252
3413               55983                  NA               28379
3414             2668688                  NA             1305000
3415             2668688                  NA             1305000
3416             2668688                  NA             1305000
3417             2668688                  NA             1305000
3418             2668688                  NA             1305000
3419             2668688                  NA             1305000
3420             2668688                  NA             1305000
3421             7673379                  NA             3806912
3422             7673379                  NA             3806912
3423             7673379                  NA             3806912
3424             7673379                  NA             3806912
3425             7673379                  NA             3806912
3426               35159                  NA               18160
3427              477056                  NA              234726
3428              176656                  NA               89507
3429             2073546                  NA              975289
3430             6123949                  NA             3001027
3431              133467                 110               67534
3432             1087068                  NA              546278
3433              445213                  NA              223753
3434              226523                  NA              112654
3435             4864209                  NA             2434382
3436              225745                  NA              112032
3437             2570862                  NA             1280273
3438              148523                  NA               76658
3439            13111917                  NA             6515114
3440             2365501                  NA             1162773
3441            13111917                  NA             6515114
3442             7673379                  NA             3806912
3443             4864209                  NA             2434382
3444             4610050                  NA             2315218
3445             2505312                  NA             1250855
3446             2505312                  NA             1250855
3447             2505312                  NA             1250855
3448             2505312                  NA             1250855
3449              281712                  NA              142477
3450             3289701                  NA             1667851
3451             4001701                  NA             2024424
3452             4001701                  NA             2024424
3453             4001701                  NA             2024424
3454             4001701                  NA             2024424
3455             4001701                  NA             2024424
3456                  NA                  NA                  NA
3457                  NA                  NA                  NA
3458             1981584                  NA             1011796
3459            13111917                  NA             6515114
3460             1215703                 422              594920
3461             4912449                  NA             2407307
3462             4912449                  NA             2407307
3463            19908595                  NA             9713298
3464            13111917                  NA             6515114
3465            13111917                  NA             6515114
3466            19908595                  NA             9713298
3467             2073546                  NA              975289
3468             6094752                  NA             2965233
3469             6094752                  NA             2965233
3470              104055                  NA               53837
3471             6094752                  NA             2965233
3472              646794                  NA              322648
3473             4912449                  NA             2407307
3474              119685                  NA               62534
3475              771602                  NA              388362
3476              386064                  NA              186619
3477              831913                  NA              404751
3478               77140                  NA               40384
3479               64570                  NA               32031
3480              222604                  NA              109360
3481            13111917                  NA             6515114
3482             2190750                  NA             1084347
3483             1335804                  NA              641128
3484              118541                  NA               59633
3485               79008                  NA               40763
3486             3678328                  NA             1837913
3487             2505312                  NA             1250855
3488             1017724                  NA              503252
3489              429312                  NA              206306
3490              153733                  NA               76642
3491              812506                  NA              397560
3492             7673379                  NA             3806912
3493             7673379                  NA             3806912
3494             7673379                  NA             3806912
3495             7673379                  NA             3806912
3496              341067                  NA              165567
3497             6123949                  NA             3001027
3498              257927                  NA              126314
3499             2668688                  NA             1305000
3500             6346083                  NA             3128067
3501              678995                  NA              341280
3502             1798025                  NA              886709
3503             6232894                  NA             3033772
3504              133467                 110               67534
3505               96846                  NA               48894
3506             2959386                  NA             1493164
3507             2959386                  NA             1493164
3508             2959386                  NA             1493164
3509             2959386                  NA             1493164
3510             7673379                  NA             3806912
3511             7673379                  NA             3806912
3512             7673379                  NA             3806912
3513             6346083                  NA             3128067
3514              242972                  NA              122440
3515               66376                  NA               33782
3516             3678328                  NA             1837913
3517             3678328                  NA             1837913
3518              966688                  NA              483251
3519             9566955                  NA             4718471
3520             9566955                  NA             4718471
3521             2505312                  NA             1250855
3522             2505312                  NA             1250855
3523             4864209                  NA             2434382
3524             4864209                  NA             2434382
3525              585485                  NA              292820
3526             6346083                  NA             3128067
3527             3289701                  NA             1667851
3528              281712                  NA              142477
3529             1254675                  NA              635422
3530             1254675                  NA              635422
3531             1254675                  NA              635422
3532             1254675                  NA              635422
3533             1254675                  NA              635422
3534             4001701                  NA             2024424
3535               47141                  NA               23954
3536              445213                  NA              223753
3537             4001701                  NA             2024424
3538             4001701                  NA             2024424
3539             2959386                  NA             1493164
3540             6346083                  NA             3128067
3541             6346083                  NA             3128067
3542             7142603                  NA             3563435
3543              884359                  NA              435364
3544                  NA                  NA                  NA
3545              658694                  NA              322943
3546             9566955                  NA             4718471
3547              591397                  NA              285117
3548              490769                  NA              249622
3549             4692242                  NA             2342253
3550             4692242                  NA             2342253
3551            13111917                  NA             6515114
3552              257927                  NA              126314
3553              156131                  NA               77615
3554             7673379                  NA             3806912
3555             2959386                  NA             1493164
3556             6123949                  NA             3001027
3557             1087068                  NA              546278
3558             7142603                  NA             3563435
3559             2265926                  NA             1137581
3560             4864209                  NA             2434382
3561             2365501                  NA             1162773
3562             2394673                  NA             1181313
3563             2813523                  NA             1375126
3564             2813523                  NA             1375126
3565             2394673                  NA             1181313
3566             6346083                  NA             3128067
3567             7142603                  NA             3563435
3568             7142603                  NA             3563435
3569              445213                  NA              223753
3570             2668688                  NA             1305000
3571             1087068                  NA              546278
3572             6232894                  NA             3033772
3573             9566955                  NA             4718471
3574              812506                  NA              397560
3575             6232894                  NA             3033772
3576             2959386                  NA             1493164
3577              771602                  NA              388362
3578             7142603                  NA             3563435
3579              382218                  NA              189292
3580             6094752                  NA             2965233
3581             6094752                  NA             2965233
3582              711490                  NA              355020
3583             4375604                  NA             2148947
3584            19908595                  NA             9713298
3585            19908595                  NA             9713298
3586             3678328                  NA             1837913
3587             3678328                  NA             1837913
3588              884359                  NA              435364
3589              477056                  NA              234726
3590              119685                  NA               62534
3591              281712                  NA              142477
3592             2668688                  NA             1305000
3593              118541                  NA               59633
3594              181055                  NA               90237
3595             7673379                  NA             3806912
3596             7673379                  NA             3806912
3597             7673379                  NA             3806912
3598              711490                  NA              355020
3599              382218                  NA              189292
3600             1163462                  NA              568061
3601               55650                  NA               29968
3602             4864209                  NA             2434382
3603              171284                  NA               83922
3604               82044                  NA               42677
3605                  NA                  NA                  NA
3606              399335                  NA              205955
3607              771602                  NA              388362
3608             7673379                  NA             3806912
3609             1010100                  NA              512085
3610             9566955                  NA             4718471
3611             2505312                  NA             1250855
3612             2505312                  NA             1250855
3613             2505312                  NA             1250855
3614             3289701                  NA             1667851
3615             4001701                  NA             2024424
3616             1042393                  NA              516095
3617             4912449                  NA             2407307
3618            19908595                  NA             9713298
3619             6094752                  NA             2965233
3620             6094752                  NA             2965233
3621              323992                  NA              159346
3622             3678328                  NA             1837913
3623               58547                  NA               27946
3624             1254675                  NA              635422
3625             7673379                  NA             3806912
3626             7673379                  NA             3806912
3627             7673379                  NA             3806912
3628             7673379                  NA             3806912
3629             2570862                  NA             1280273
3630              749290                  NA              363653
3631             6123949                  NA             3001027
3632              496299                  NA              240510
3633              308919                  NA              149938
3634              831913                  NA              404751
3635             2668688                  NA             1305000
3636             6346083                  NA             3128067
3637              277944                  NA              140783
3638              422733                  NA              212276
3639             6232894                  NA             3033772
3640              915968                  NA              453044
3641              185147                  NA               92047
3642             7673379                  NA             3806912
3643             7673379                  NA             3806912
3644             4375604                  NA             2148947
3645             4375604                  NA             2148947
3646              585485                  NA              292820
3647             3678328                  NA             1837913
3648             9566955                  NA             4718471
3649               55650                  NA               29968
3650             4692242                  NA             2342253
3651             1981584                  NA             1011796
3652             1254675                  NA              635422
3653             1254675                  NA              635422
3654             1254675                  NA              635422
3655             2265926                  NA             1137581
3656             3289701                  NA             1667851
3657             4001701                  NA             2024424
3658             2959386                  NA             1493164
3659              218515                  NA              108665
3660             9566955                  NA             4718471
3661              510290                  NA              256202
3662               83760                  NA               42020
3663               82044                  NA               42677
3664             2570862                  NA             1280273
3665              416839                  NA              205169
3666            13111917                  NA             6515114
3667             6346083                  NA             3128067
3668            19908595                  NA             9713298
3669             2679298                  NA             1318555
3670             9566955                  NA             4718471
3671             4692242                  NA             2342253
3672             4692242                  NA             2342253
3673             4692242                  NA             2342253
3674             4864209                  NA             2434382
3675              646794                  NA              322648
3676             2668688                  NA             1305000
3677             2394673                  NA             1181313
3678             2813523                  NA             1375126
3679             7673379                  NA             3806912
3680              251635                  NA              126980
3681              277944                  NA              140783
3682             7142603                  NA             3563435
3683             7142603                  NA             3563435
3684              382983                  NA              189968
3685             1420825                  NA              698689
3686             6346083                  NA             3128067
3687             6346083                  NA             3128067
3688            19908595                  NA             9713298
3689             1335804                  NA              641128
3690             6232894                  NA             3033772
3691             9566955                  NA             4718471
3692             2668688                  NA             1305000
3693             2668688                  NA             1305000
3694             6232894                  NA             3033772
3695             6232894                  NA             3033772
3696             7142603                  NA             3563435
3697              429312                  NA              206306
3698             6094752                  NA             2965233
3699             4375604                  NA             2148947
3700              399335                  NA              205955
3701              152640                  NA               75942
3702             2668688                  NA             1305000
3703             6123949                  NA             3001027
3704              322285                  NA              159719
3705             7673379                  NA             3806912
3706             7673379                  NA             3806912
3707             7673379                  NA             3806912
3708             7673379                  NA             3806912
3709             7673379                  NA             3806912
3710             7673379                  NA             3806912
3711             7673379                  NA             3806912
3712             7673379                  NA             3806912
3713             7673379                  NA             3806912
3714             1568940                  NA              770847
3715            19908595                  NA             9713298
3716            19908595                  NA             9713298
3717             1163462                  NA              568061
3718               24944                  NA               13144
3719             6123949                  NA             3001027
3720             1798025                  NA              886709
3721              406575                  NA              197548
3722             2073546                  NA              975289
3723              477056                  NA              234726
3724             1254675                  NA              635422
3725              399335                  NA              205955
3726                  NA                  NA                  NA
3727                  NA                  NA                  NA
3728            19908595                  NA             9713298
3729             2265926                  NA             1137581
3730             2073546                  NA              975289
3731             3194310                  NA             1562880
3732             6094752                  NA             2965233
3733             1335804                  NA              641128
3734            19908595                  NA             9713298
3735             7673379                  NA             3806912
3736             7673379                  NA             3806912
3737             6123949                  NA             3001027
3738             1428923                  NA              708697
3739             1568940                  NA              770847
3740              275693                  NA              137408
3741             2668688                  NA             1305000
3742             2668688                  NA             1305000
3743             6346083                  NA             3128067
3744             6346083                  NA             3128067
3745             1335804                  NA              641128
3746              901729                  NA              444836
3747             7673379                  NA             3806912
3748             7142603                  NA             3563435
3749            13111917                  NA             6515114
3750               64570                  NA               32031
3751             9566955                  NA             4718471
3752             9566955                  NA             4718471
3753             9566955                  NA             4718471
3754             4864209                  NA             2434382
3755              281712                  NA              142477
3756             4692242                  NA             2342253
3757             1254675                  NA              635422
3758                  NA                  NA                  NA
3759              493980                  NA              244298
3760              421854                  NA              208182
3761             6346083                  NA             3128067
3762             7142603                  NA             3563435
3763             9566955                  NA             4718471
3764             4692242                  NA             2342253
3765              915968                  NA              453044
3766             1990873                  NA              978574
3767             1990873                  NA              978574
3768             2840005                  NA             1374325
3769             2840005                  NA             1374325
3770             2959386                  NA             1493164
3771             1613587                  NA              790463
3772               24944                  NA               13144
3773             7142603                  NA             3563435
3774             2265926                  NA             1137581
3775             2265926                  NA             1137581
3776             2265926                  NA             1137581
3777             2265926                  NA             1137581
3778             2265926                  NA             1137581
3779              749290                  NA              363653
3780             2679298                  NA             1318555
3781             9566955                  NA             4718471
3782              422733                  NA              212276
3783              422733                  NA              212276
3784             1568940                  NA              770847
3785             2505312                  NA             1250855
3786             2505312                  NA             1250855
3787             4864209                  NA             2434382
3788             4864209                  NA             2434382
3789             2570862                  NA             1280273
3790             1282588                  NA              630858
3791             2394673                  NA             1181313
3792             2394673                  NA             1181313
3793             2813523                  NA             1375126
3794             7673379                  NA             3806912
3795             7673379                  NA             3806912
3796             4375604                  NA             2148947
3797              493980                  NA              244298
3798             4864209                  NA             2434382
3799             4864209                  NA             2434382
3800             2668688                  NA             1305000
3801            19908595                  NA             9713298
3802             1420825                  NA              698689
3803             9566955                  NA             4718471
3804             6346083                  NA             3128067
3805             1428923                  NA              708697
3806              975551                 164              484741
3807              185147                  NA               92047
3808              218515                  NA              108665
3809             2840005                  NA             1374325
3810             6123949                  NA             3001027
3811              803398                  NA              394257
3812             6123949                  NA             3001027
3813            19908595                  NA             9713298
3814              975551                 164              484741
3815              975551                 164              484741
3816             2073546                  NA              975289
3817                  NA                  NA                  NA
3818              678995                  NA              341280
3819              171284                  NA               83922
3820             1163462                  NA              568061
3821             2959386                  NA             1493164
3822             2959386                  NA             1493164
3823             2959386                  NA             1493164
3824              711490                  NA              355020
3825               55983                  NA               28379
3826              277944                  NA              140783
3827              421854                  NA              208182
3828             6232894                  NA             3033772
3829            19908595                  NA             9713298
3830            19908595                  NA             9713298
3831             2265926                  NA             1137581
3832             2679298                  NA             1318555
3833             2679298                  NA             1318555
3834             9566955                  NA             4718471
3835             6123949                  NA             3001027
3836              552916                  NA              270938
3837              552916                  NA              270938
3838             1420825                  NA              698689
3839             1420825                  NA              698689
3840              772902                  NA              380685
3841              697704                  NA              348873
3842              697704                  NA              348873
3843              658694                  NA              322943
3844             3194310                  NA             1562880
3845              383732                  NA              189495
3846              383732                  NA              189495
3847              383732                  NA              189495
3848              383732                  NA              189495
3849              803398                  NA              394257
3850              274339                  NA              133897
3851              274339                  NA              133897
3852              700578                  NA              343022
3853             2137223                  NA             1061042
3854             6123949                  NA             3001027
3855             6123949                  NA             3001027
3856             2109957                  NA             1038760
3857             2265926                  NA             1137581
3858            13111917                  NA             6515114
3859             2365501                  NA             1162773
3860            19908595                  NA             9713298
3861             2679298                  NA             1318555
3862             2679298                  NA             1318555
3863             2679298                  NA             1318555
3864              496299                  NA              240510
3865              496299                  NA              240510
3866              496299                  NA              240510
3867                  NA                  NA                  NA
3868             9566955                  NA             4718471
3869             6232894                  NA             3033772
3870              772902                  NA              380685
3871              772902                  NA              380685
3872             1282588                  NA              630858
3873              884359                  NA              435364
3874            13111917                  NA             6515114
3875             4692242                  NA             2342253
3876             2959386                  NA             1493164
3877              863166                  NA              427343
3878             9566955                  NA             4718471
3879             4375604                  NA             2148947
3880              406575                  NA              197548
3881              202163                  NA              100828
3882             7142603                  NA             3563435
3883              975551                 164              484741
3884             2079759                  NA             1012336
3885              469484                  NA              227358
3886             3678328                  NA             1837913
3887             3678328                  NA             1837913
3888             3678328                  NA             1837913
3889             6123949                  NA             3001027
3890              189900                  NA               93505
3891             7142603                  NA             3563435
3892             1010100                  NA              512085
3893            19908595                  NA             9713298
3894              399335                  NA              205955
3895              399335                  NA              205955
3896             7142603                  NA             3563435
3897             9566955                  NA             4718471
3898             1981584                  NA             1011796
3899             6094752                  NA             2965233
3900             4375604                  NA             2148947
3901             2668688                  NA             1305000
3902             2668688                  NA             1305000
3903             2668688                  NA             1305000
3904             7673379                  NA             3806912
3905             4864209                  NA             2434382
3906              399335                  NA              205955
3907                  NA                  NA                  NA
3908             4001701                  NA             2024424
3909             6123949                  NA             3001027
3910                  NA                  NA                  NA
3911             6094752                  NA             2965233
3912             6094752                  NA             2965233
3913             6094752                  NA             2965233
3914             2265926                  NA             1137581
3915               79506                  NA               40147
3916               42292                  NA               21066
3917            19908595                  NA             9713298
3918              775169                  NA              372915
3919              185147                  NA               92047
3920              869755                  NA              427134
3921              257927                  NA              126314
3922             6346083                  NA             3128067
3923              330119                  NA              161252
3924             6232894                  NA             3033772
3925             6232894                  NA             3033772
3926             6232894                  NA             3033772
3927               60985                  NA               31578
3928             2959386                  NA             1493164
3929             2959386                  NA             1493164
3930             2959386                  NA             1493164
3931             2959386                  NA             1493164
3932             7673379                  NA             3806912
3933             7673379                  NA             3806912
3934             4864209                  NA             2434382
3935               25381                 138               13207
3936              382218                  NA              189292
3937              115066                  NA               57649
3938              915968                  NA              453044
3939             4692242                  NA             2342253
3940             6094752                  NA             2965233
3941             1163462                  NA              568061
3942             1163462                  NA              568061
3943             2840005                  NA             1374325
3944             2137223                  NA             1061042
3945             2137223                  NA             1061042
3946             7673379                  NA             3806912
3947             7673379                  NA             3806912
3948             1087068                  NA              546278
3949             4864209                  NA             2434382
3950              181055                  NA               90237
3951             1282588                  NA              630858
3952              275693                  NA              137408
3953             7673379                  NA             3806912
3954             7142603                  NA             3563435
3955             6094752                  NA             2965233
3956              812506                  NA              397560
3957             6346083                  NA             3128067
3958              225745                  NA              112032
3959             6232894                  NA             3033772
3960            19908595                  NA             9713298
3961              384740                  NA              183928
3962               55983                  NA               28379
3963              200040                  NA               94821
3964              493980                  NA              244298
3965             6123949                  NA             3001027
3966              803398                  NA              394257
3967              267282                  NA              132495
3968             2253528                  NA             1113732
3969             6232894                  NA             3033772
3970              775169                  NA              372915
3971             7673379                  NA             3806912
3972              171284                  NA               83922
3973              139042                  NA               68498
3974              906883                  NA              464093
3975              323992                  NA              159346
3976             1086859                  NA              532509
3977            19908595                  NA             9713298
3978             4610050                  NA             2315218
3979              308386                  NA              152054
3980              225745                  NA              112032
3981              225911                  NA              111978
3982             6123949                  NA             3001027
3983               47693                  NA               24643
3984              257927                  NA              126314
3985              313961                  NA              153951
3986               84423                  NA               43002
3987             4610050                  NA             2315218
3988              490769                  NA              249622
3989            19908595                  NA             9713298
3990              552916                  NA              270938
3991              803398                  NA              394257
3992                  NA                  NA                  NA
3993             6094752                  NA             2965233
3994              242972                  NA              122440
3995              901729                  NA              444836
3996              646794                  NA              322648
3997              225911                  NA              111978
3998             6123949                  NA             3001027
3999              166222                  NA               84066
4000              564466                  NA              276108
4001             1613587                  NA              790463
4002            19908595                  NA             9713298
4003             2668688                  NA             1305000
4004             1264357                  NA              612537
4005             7142603                  NA             3563435
4006             2679298                  NA             1318555
4007             4692242                  NA             2342253
4008             3678328                  NA             1837913
4009             6094752                  NA             2965233
4010             6094752                  NA             2965233
4011             4864209                  NA             2434382
4012              585485                  NA              292820
4013             4375604                  NA             2148947
4014               73511                  NA               36809
4015             2668688                  NA             1305000
4016             6346083                  NA             3128067
4017             2668688                  NA             1305000
4018             6123949                  NA             3001027
4019             6123949                  NA             3001027
4020             9566955                  NA             4718471
4021             2505312                  NA             1250855
4022             9566955                  NA             4718471
4023             2668688                  NA             1305000
4024             6232894                  NA             3033772
4025             6232894                  NA             3033772
4026             6346083                  NA             3128067
4027              206072                  NA               99873
4028             6346083                  NA             3128067
4029             1254675                  NA              635422
4030             1010100                  NA              512085
4031             1981584                  NA             1011796
4032              772902                  NA              380685
4033             1010100                  NA              512085
4034             7142603                  NA             3563435
4035             7142603                  NA             3563435
4036               36839                  NA               18645
4037             6346083                  NA             3128067
4038                  NA                  NA                  NA
4039             4864209                  NA             2434382
4040             1254675                  NA              635422
4041               34598                  NA               17590
4042             9566955                  NA             4718471
4043             2813523                  NA             1375126
4044             7673379                  NA             3806912
4045              164765                  21               82304
4046            13111917                  NA             6515114
4047             2679298                  NA             1318555
4048             2840005                  NA             1374325
4049             9566955                  NA             4718471
4050             7142603                  NA             3563435
4051              202163                  NA              100828
4052             1254675                  NA              635422
4053              399335                  NA              205955
4054             6094752                  NA             2965233
4055              164765                  21               82304
4056             2668688                  NA             1305000
4057             9566955                  NA             4718471
4058             9566955                  NA             4718471
4059             2668688                  NA             1305000
4060             2668688                  NA             1305000
4061             2296377                  NA             1160944
4062            13111917                  NA             6515114
4063             2365501                  NA             1162773
4064             9566955                  NA             4718471
4065             7673379                  NA             3806912
4066             2365501                  NA             1162773
4067              399335                  NA              205955
4068             2505312                  NA             1250855
4069             2505312                  NA             1250855
4070              772902                  NA              380685
4071             4001701                  NA             2024424
4072             2679298                  NA             1318555
4073             1264357                  NA              612537
4074             6094752                  NA             2965233
4075             6094752                  NA             2965233
4076              490769                  NA              249622
4077             1254675                  NA              635422
4078            19908595                  NA             9713298
4079             2668688                  NA             1305000
4080             1316145                  NA              640643
4081             2668688                  NA             1305000
4082             2668688                  NA             1305000
4083              102555                  NA               50314
4084             6232894                  NA             3033772
4085               79008                  NA               40763
4086             7673379                  NA             3806912
4087            13111917                  NA             6515114
4088                  NA                  NA                  NA
4089             2296377                  NA             1160944
4090              844461                  NA              407362
4091              183297                  NA               91287
4092             9566955                  NA             4718471
4093             6232894                  NA             3033772
4094             6232894                  NA             3033772
4095             7142603                  NA             3563435
4096              399335                  NA              205955
4097             2959386                  NA             1493164
4098              328011                  NA              164852
4099            19908595                  NA             9713298
4100             2265926                  NA             1137581
4101             2679298                  NA             1318555
4102             2679298                  NA             1318555
4103             2679298                  NA             1318555
4104             2679298                  NA             1318555
4105             6123949                  NA             3001027
4106              678995                  NA              341280
4107              658694                  NA              322943
4108                  NA                  NA                  NA
4109             2668688                  NA             1305000
4110             7673379                  NA             3806912
4111              330119                  NA              161252
4112                  NA                  NA                  NA
4113                  NA                  NA                  NA
4114             4912449                  NA             2407307
4115             1981584                  NA             1011796
4116             2253528                  NA             1113732
4117              115066                  NA               57649
4118               49455                  NA               24461
4119               84423                  NA               43002
4120               35306                  NA               18120
4121              257927                  NA              126314
4122             1254675                  NA              635422
4123             7673379                  NA             3806912
4124             2668688                  NA             1305000
4125             2668688                  NA             1305000
4126             2668688                  NA             1305000
4127             6232894                  NA             3033772
4128              386064                  NA              186619
4129             7673379                  NA             3806912
4130             4375604                  NA             2148947
4131               66376                  NA               33782
4132            13111917                  NA             6515114
4133              488436                  NA              240478
4134                  NA                  NA                  NA
4135             3678328                  NA             1837913
4136             1428923                  NA              708697
4137              183297                  NA               91287
4138              421854                  NA              208182
4139            19908595                  NA             9713298
4140            13111917                  NA             6515114
4141             9566955                  NA             4718471
4142              915968                  NA              453044
4143             2073546                  NA              975289
4144             2296377                  NA             1160944
4145             7673379                  NA             3806912
4146             7142603                  NA             3563435
4147             7142603                  NA             3563435
4148            13111917                  NA             6515114
4149             3194310                  NA             1562880
4150             7673379                  NA             3806912
4151             2668688                  NA             1305000
4152              119685                  NA               62534
4153              550596                  NA              277195
4154            19908595                  NA             9713298
4155             3678328                  NA             1837913
4156             4912449                  NA             2407307
4157            19908595                  NA             9713298
4158            19908595                  NA             9713298
4159            19908595                  NA             9713298
4160            19908595                  NA             9713298
4161             1798025                  NA              886709
4162               35159                  NA               18160
4163             7673379                  NA             3806912
4164              867161                  NA              431851
4165              330119                  NA              161252
4166              384740                  NA              183928
     age_distributionM.y grouped_dest_passengers   dest_pop
1                    188                11581260  542574896
2                    188                11581260  542574896
3                    188                11581260  542574896
4                    188                11581260  542574896
5                    320                17716130  882141496
6                    157                19326570  671260842
7                    188                11581260  542574896
8                    195                24375750 1567730944
9                    188                11581260  542574896
10                   188                11581260  542574896
11                   188                11581260  542574896
12                   188                11581260  542574896
13                   406                 6214440  225478080
14                   157                19326570  671260842
15                   354                 4742370  166453056
16                   354                 4742370  166453056
17                   188                11581260  542574896
18                   201                  478810    7312554
19                   155                 1892340   73298106
20                   148                  729320    8690640
21                   458                12877300  540714216
22                   243                 3835670  585476350
23                   468                 1422430   90231246
24                   387                 2808920   93588046
25                   195                24375750 1567730944
26                   262                  448050    6103292
27                   650                38846110 6649470730
28                   177                  613380    1394748
29                   421                  551030   23655880
30                    NA                30305010 4667842452
31                   406                 6214440  225478080
32                   221                 5061900  116507650
33                   252                 5386650  203547205
34                   195                24375750 1567730944
35                   320                17716130  882141496
36                   389                28512200  571161498
37                   650                38846110 6649470730
38                    NA                 9543350  342128904
39                    73                17698440  496210924
40                    NA                 9543350  342128904
41                   252                 5386650  203547205
42                   312                  305400    1825512
43                   650                38846110 6649470730
44                   650                38846110 6649470730
45                   880                36046920 1005634080
46                   442                34690690 2255973426
47                   329                  200540    1919460
48                   432                 8760710  238823208
49                   640                 2832500  126197568
50                   492                 4302940  208121250
51                   425                33355530 2908354320
52                    NA                 9543350  342128904
53                   249                 1041010   25030372
54                   195                24375750 1567730944
55                    30                 3462700   33333300
56                   155                 1892340   73298106
57                   421                  397810    2779440
58                   190                 1027250    6822045
59                    73                17698440  496210924
60                   278                  984810   32017050
61                   403                12843550  550194288
62                   650                38846110 6649470730
63                   301                  317250    1509810
64                   880                36046920 1005634080
65                   735                15908200 1484983422
66                   650                38846110 6649470730
67                   452                 5148900  117585201
68                   338                 3828130  244231890
69                    NA                30305010 4667842452
70                    56                  803620   33273240
71                   230                  226940     950868
72                   243                 3835670  585476350
73                   299                  221590    2084195
74                   403                12843550  550194288
75                   326                20309490  340270846
76                   101                  929150   14525236
77                   160                 1166370   51398553
78                   926                 2608440   72942180
79                   188                11581260  542574896
80                   201                 2557720  112963680
81                   442                34690690 2255973426
82                   280                 1820580   81484044
83                   218                 9819040  292520515
84                   342                 3256520  188075624
85                   452                 5148900  117585201
86                   642                 1864750  109679525
87                   204                 3479050  175047074
88                   195                24375750 1567730944
89                   326                20309490  340270846
90                    NA                20921910  271911120
91                    NA                 9543350  342128904
92                   252                 5386650  203547205
93                   221                 5061900  116507650
94                   342                 3256520  188075624
95                   326                20309490  340270846
96                   406                 6214440  225478080
97                   270                 1914290   66701472
98                   298                  272670    4056210
99                   572                 3598220  170906517
100                  650                38846110 6649470730
101                  145                10784180  144287625
102                  124                 1457760   50667660
103                  223                  666310   11834199
104                  403                12843550  550194288
105                  572                 3598220  170906517
106                  117                 1526650   60458794
107                   NA                30305010 4667842452
108                   NA                30305010 4667842452
109                  425                33355530 2908354320
110                  218                  708880   10077197
111                  195                 3844560  153902166
112                  323                 1261610   51092196
113                  332                 9903470  735481492
114                   NA                30305010 4667842452
115                  532                17731000 1664226499
116                   91                   73140     522852
117                  650                38846110 6649470730
118                  650                38846110 6649470730
119                  389                28512200  571161498
120                   55                 1366930    5256238
121                  650                38846110 6649470730
122                  650                38846110 6649470730
123                  650                38846110 6649470730
124                  650                38846110 6649470730
125                  650                38846110 6649470730
126                  115                  963790     955643
127                  145                10784180  144287625
128                   NA                30305010 4667842452
129                  126                 1701380   30445220
130                  126                 1701380   30445220
131                  188                  387460     632862
132                  320                17716130  882141496
133                  211                 1054220   52100589
134                  650                38846110 6649470730
135                  650                38846110 6649470730
136                  187                 1909710   36316906
137                  230                 1944450   48610926
138                  208                  143220     407372
139                  640                 2832500  126197568
140                  249                 1041010   25030372
141                  195                 3844560  153902166
142                  249                 9504360  344985480
143                  249                 1041010   25030372
144                   NA                20921910  271911120
145                  172                  132950    1457455
146                  926                 2608440   72942180
147                  650                38846110 6649470730
148                  432                 8760710  238823208
149                   NA                20921910  271911120
150                  472                  249510    6128980
151                  629                 1738780   56594235
152                  338                 3828130  244231890
153                   NA                30305010 4667842452
154                  650                38846110 6649470730
155                  403                12843550  550194288
156                   NA                30305010 4667842452
157                  926                 2608440   72942180
158                  155                 1892340   73298106
159                  650                38846110 6649470730
160                  629                 1738780   56594235
161                   NA                30305010 4667842452
162                  155                 1892340   73298106
163                  629                 1738780   56594235
164                  326                20309490  340270846
165                   NA                30305010 4667842452
166                  208                 1725420   14376060
167                  130                  374250    1483300
168                   NA                30305010 4667842452
169                  128                  345400    1422492
170                  222                   97680     152286
171                  296                 1729780   95737841
172                  323                 1261610   51092196
173                   NA                30305010 4667842452
174                  157                19326570  671260842
175                   NA                 9543350  342128904
176                   73                17698440  496210924
177                  650                38846110 6649470730
178                  230                 1944450   48610926
179                  126                 1701380   30445220
180                  157                19326570  671260842
181                  320                17716130  882141496
182                  252                 5386650  203547205
183                  650                38846110 6649470730
184                  650                38846110 6649470730
185                  650                38846110 6649470730
186                  403                12843550  550194288
187                  316                  868800   35965920
188                  671                  295120    5218530
189                  406                 6214440  225478080
190                  455                  426050    5159540
191                   30                 3462700   33333300
192                  735                15908200 1484983422
193                  423                 6010310  289792869
194                  326                20309490  340270846
195                  143                   70130     417126
196                  326                20309490  340270846
197                  326                20309490  340270846
198                  168                  273650    3936132
199                  249                 9504360  344985480
200                  117                 1526650   60458794
201                  389                28512200  571161498
202                  320                17716130  882141496
203                  356                  774530   13265385
204                  125                  425810    3032623
205                  389                28512200  571161498
206                  292                   35430     113854
207                   73                 5232400   67242474
208                  101                  929150   14525236
209                  735                15908200 1484983422
210                  195                24375750 1567730944
211                  173                 1529910   30274239
212                  414                 1474740   23174775
213                  211                 1230310   62081164
214                  458                12877300  540714216
215                  458                12877300  540714216
216                  458                12877300  540714216
217                  458                12877300  540714216
218                  458                12877300  540714216
219                  458                12877300  540714216
220                  442                34690690 2255973426
221                  195                24375750 1567730944
222                   73                 5232400   67242474
223                  458                12877300  540714216
224                  458                12877300  540714216
225                  458                12877300  540714216
226                  223                  953610   23222472
227                  458                12877300  540714216
228                  458                12877300  540714216
229                  458                12877300  540714216
230                  458                12877300  540714216
231                  458                12877300  540714216
232                  458                12877300  540714216
233                  458                12877300  540714216
234                  458                12877300  540714216
235                  458                12877300  540714216
236                  458                12877300  540714216
237                  207                   80920    1616955
238                  452                 5148900  117585201
239                  452                 5148900  117585201
240                   NA                30305010 4667842452
241                  383                 1220480   64633344
242                  381                19485700  416315328
243                  221                 5061900  116507650
244                  320                17716130  882141496
245                  214                 1121150   23473340
246                  326                20309490  340270846
247                  243                 3835670  585476350
248                  349                  123690    2185150
249                  425                33355530 2908354320
250                  398                 1621270   84650808
251                  249                 1041010   25030372
252                  425                33355530 2908354320
253                  425                33355530 2908354320
254                  172                  132950    1457455
255                   NA                30305010 4667842452
256                  278                  984810   32017050
257                  163                 2215040   53827666
258                  572                 3598220  170906517
259                  243                 3835670  585476350
260                  403                12843550  550194288
261                  492                 4302940  208121250
262                  376                 2092800   69613568
263                  187                 1909710   36316906
264                  376                 2092800   69613568
265                  195                24375750 1567730944
266                  332                 9903470  735481492
267                  102                   83710    1355466
268                  223                  953610   23222472
269                  403                12843550  550194288
270                  109                  236200    4859880
271                  496                 8668170  193114681
272                  735                15908200 1484983422
273                   NA                20921910  271911120
274                  221                 5061900  116507650
275                  221                 5061900  116507650
276                  221                 5061900  116507650
277                  221                 5061900  116507650
278                  320                17716130  882141496
279                  221                 5061900  116507650
280                  221                 5061900  116507650
281                  442                34690690 2255973426
282                  173                  559730    3611920
283                   73                 5232400   67242474
284                  168                  273650    3936132
285                   NA                 9543350  342128904
286                  326                20309490  340270846
287                  249                 9504360  344985480
288                  196                  161180    1567611
289                   73                17698440  496210924
290                  218                 9819040  292520515
291                  735                15908200 1484983422
292                   73                17698440  496210924
293                   73                17698440  496210924
294                  201                 2557720  112963680
295                   73                17698440  496210924
296                   73                17698440  496210924
297                  232                  120610     733188
298                   73                17698440  496210924
299                  496                 8668170  193114681
300                  640                 2832500  126197568
301                  195                24375750 1567730944
302                  188                11581260  542574896
303                  188                11581260  542574896
304                  145                10784180  144287625
305                  145                10784180  144287625
306                  125                  425810    3032623
307                  201                 2557720  112963680
308                  342                 3256520  188075624
309                  145                10784180  144287625
310                  145                10784180  144287625
311                  145                10784180  144287625
312                  145                10784180  144287625
313                  145                10784180  144287625
314                  650                38846110 6649470730
315                  145                10784180  144287625
316                  145                10784180  144287625
317                  145                10784180  144287625
318                  145                10784180  144287625
319                  145                10784180  144287625
320                  496                 8668170  193114681
321                  458                12877300  540714216
322                  458                  373780    3951262
323                  323                 1261610   51092196
324                   38                  649750   12230976
325                  226                  461460    2192872
326                  398                 1621270   84650808
327                  423                 6010310  289792869
328                  126                 1701380   30445220
329                  168                  273650    3936132
330                  421                  397810    2779440
331                  101                   68560     379642
332                   NA                20921910  271911120
333                  249                 9504360  344985480
334                  249                 9504360  344985480
335                  249                 9504360  344985480
336                  880                36046920 1005634080
337                  880                36046920 1005634080
338                  432                 8760710  238823208
339                  218                 9819040  292520515
340                  195                 3844560  153902166
341                   NA                 9543350  342128904
342                  243                 3835670  585476350
343                  381                19485700  416315328
344                  389                28512200  571161498
345                  389                28512200  571161498
346                  650                38846110 6649470730
347                   NA                20921910  271911120
348                  326                20309490  340270846
349                  243                 3835670  585476350
350                  280                 1820580   81484044
351                  195                24375750 1567730944
352                  406                 6214440  225478080
353                  332                 9903470  735481492
354                  332                 9903470  735481492
355                  332                 9903470  735481492
356                  157                19326570  671260842
357                  221                 5061900  116507650
358                   NA                 9543350  342128904
359                  338                 3828130  244231890
360                  435                 4303230  126486306
361                  650                38846110 6649470730
362                  381                19485700  416315328
363                  381                19485700  416315328
364                   30                 3462700   33333300
365                   NA                20921910  271911120
366                  157                19326570  671260842
367                  195                24375750 1567730944
368                  532                17731000 1664226499
369                  650                38846110 6649470730
370                  389                28512200  571161498
371                  650                38846110 6649470730
372                  650                38846110 6649470730
373                  650                38846110 6649470730
374                  262                  448050    6103292
375                  218                  708880   10077197
376                  142                   43880     416812
377                  735                15908200 1484983422
378                  735                15908200 1484983422
379                  356                  774530   13265385
380                   73                 5232400   67242474
381                  532                17731000 1664226499
382                  320                17716130  882141496
383                  496                 8668170  193114681
384                  320                17716130  882141496
385                  320                17716130  882141496
386                  249                 9504360  344985480
387                  387                 2808920   93588046
388                   73                17698440  496210924
389                  342                 1021670   47821796
390                   73                17698440  496210924
391                  423                 6010310  289792869
392                  249                 1041010   25030372
393                  572                 3598220  170906517
394                  157                19326570  671260842
395                  316                  868800   35965920
396                  650                38846110 6649470730
397                  356                  774530   13265385
398                  204                 3479050  175047074
399                  926                 2608440   72942180
400                   NA                 1696410         NA
401                  326                20309490  340270846
402                  432                 8760710  238823208
403                  432                 8760710  238823208
404                  432                 8760710  238823208
405                  398                 1621270   84650808
406                   NA                20921910  271911120
407                  880                36046920 1005634080
408                  249                 1041010   25030372
409                  403                12843550  550194288
410                  301                  317250    1509810
411                  650                38846110 6649470730
412                   NA                30305010 4667842452
413                  296                 1729780   95737841
414                   56                  803620   33273240
415                  287                  603120    8809536
416                  406                 6214440  225478080
417                  326                20309490  340270846
418                  640                 2832500  126197568
419                  326                20309490  340270846
420                  249                 9504360  344985480
421                  640                 2832500  126197568
422                  249                  613820   22637790
423                  335                   78960     618216
424                  735                15908200 1484983422
425                  735                15908200 1484983422
426                  442                34690690 2255973426
427                  442                34690690 2255973426
428                  383                 1220480   64633344
429                  354                 4742370  166453056
430                  326                20309490  340270846
431                  195                24375750 1567730944
432                  629                 1738780   56594235
433                  211                 1230310   62081164
434                   NA                30305010 4667842452
435                  157                19326570  671260842
436                  195                24375750 1567730944
437                  211                 1054220   52100589
438                  126                 1701380   30445220
439                  161                   27370      42151
440                  337                   73900     262124
441                  425                33355530 2908354320
442                  126                  274750    1526400
443                  387                 2808920   93588046
444                  421                  397810    2779440
445                  398                 1621270   84650808
446                  249                 1041010   25030372
447                  432                 8760710  238823208
448                  243                 3835670  585476350
449                  329                  200540    1919460
450                  735                15908200 1484983422
451                  432                 8760710  238823208
452                  354                 4742370  166453056
453                  492                 4302940  208121250
454                  195                24375750 1567730944
455                  496                 8668170  193114681
456                  195                 3844560  153902166
457                  492                 4302940  208121250
458                  118                  224910    2938005
459                  452                 5148900  117585201
460                  336                  473580    9151043
461                  455                  426050    5159540
462                  425                33355530 2908354320
463                  425                33355530 2908354320
464                  425                33355530 2908354320
465                  187                 1909710   36316906
466                  323                 1261610   51092196
467                  425                33355530 2908354320
468                  287                  603120    8809536
469                   NA                30305010 4667842452
470                  177                  613380    1394748
471                  398                 1621270   84650808
472                  532                17731000 1664226499
473                  472                  249510    6128980
474                  221                 5061900  116507650
475                  452                 5148900  117585201
476                  376                 2092800   69613568
477                  880                36046920 1005634080
478                  207                   80920    1616955
479                  389                28512200  571161498
480                   NA                20921910  271911120
481                   73                17698440  496210924
482                   52                  399050    3017729
483                   52                  399050    3017729
484                   52                  399050    3017729
485                  880                36046920 1005634080
486                  432                 8760710  238823208
487                  880                36046920 1005634080
488                   NA                30305010 4667842452
489                  880                36046920 1005634080
490                  880                36046920 1005634080
491                  926                 2608440   72942180
492                  496                 8668170  193114681
493                  496                 8668170  193114681
494                  496                 8668170  193114681
495                  496                 8668170  193114681
496                  403                12843550  550194288
497                  403                12843550  550194288
498                  403                12843550  550194288
499                  403                12843550  550194288
500                  403                12843550  550194288
501                   NA                30305010 4667842452
502                  218                 9819040  292520515
503                  389                28512200  571161498
504                  218                 9819040  292520515
505                  218                 9819040  292520515
506                  218                 9819040  292520515
507                  218                 9819040  292520515
508                  195                 3844560  153902166
509                  326                20309490  340270846
510                  195                 3844560  153902166
511                  195                 3844560  153902166
512                  532                17731000 1664226499
513                  381                19485700  416315328
514                  342                 3256520  188075624
515                  218                 9819040  292520515
516                  442                34690690 2255973426
517                  442                34690690 2255973426
518                  442                34690690 2255973426
519                  442                34690690 2255973426
520                  425                33355530 2908354320
521                  188                11581260  542574896
522                  650                38846110 6649470730
523                  650                38846110 6649470730
524                  650                38846110 6649470730
525                  650                38846110 6649470730
526                  650                38846110 6649470730
527                  195                24375750 1567730944
528                  195                24375750 1567730944
529                  195                24375750 1567730944
530                  195                24375750 1567730944
531                  195                24375750 1567730944
532                  195                24375750 1567730944
533                  195                24375750 1567730944
534                  195                24375750 1567730944
535                  532                17731000 1664226499
536                  532                17731000 1664226499
537                  572                 3598220  170906517
538                  572                 3598220  170906517
539                  572                 3598220  170906517
540                   NA                20921910  271911120
541                   NA                20921910  271911120
542                  880                36046920 1005634080
543                  218                  708880   10077197
544                   NA                20921910  271911120
545                   NA                20921910  271911120
546                   NA                20921910  271911120
547                   NA                30305010 4667842452
548                   NA                30305010 4667842452
549                  249                 9504360  344985480
550                   NA                30305010 4667842452
551                   NA                30305010 4667842452
552                  204                 3479050  175047074
553                  204                 3479050  175047074
554                  492                 4302940  208121250
555                  492                 4302940  208121250
556                  326                20309490  340270846
557                  326                20309490  340270846
558                  326                20309490  340270846
559                  320                17716130  882141496
560                  326                20309490  340270846
561                  326                20309490  340270846
562                  201                 2557720  112963680
563                  332                 9903470  735481492
564                  452                 5148900  117585201
565                  650                38846110 6649470730
566                  425                33355530 2908354320
567                  425                33355530 2908354320
568                  425                33355530 2908354320
569                  425                33355530 2908354320
570                  204                 3479050  175047074
571                  204                 3479050  175047074
572                  204                 3479050  175047074
573                   NA                 9543350  342128904
574                  435                 4303230  126486306
575                  423                 6010310  289792869
576                  532                17731000 1664226499
577                  249                 9504360  344985480
578                  249                 9504360  344985480
579                  249                 9504360  344985480
580                  249                 9504360  344985480
581                  124                 1457760   50667660
582                  398                 1621270   84650808
583                  223                  666310   11834199
584                   NA                20921910  271911120
585                  157                19326570  671260842
586                  160                 1166370   51398553
587                   NA                20921910  271911120
588                  650                38846110 6649470730
589                  458                12877300  540714216
590                  332                 9903470  735481492
591                  195                24375750 1567730944
592                  496                 8668170  193114681
593                  650                38846110 6649470730
594                  650                38846110 6649470730
595                  249                 9504360  344985480
596                  223                  666310   11834199
597                  423                 6010310  289792869
598                  338                 3828130  244231890
599                  163                 2215040   53827666
600                  218                 9819040  292520515
601                  381                19485700  416315328
602                  381                19485700  416315328
603                  381                19485700  416315328
604                  381                19485700  416315328
605                  381                19485700  416315328
606                  195                24375750 1567730944
607                  296                 1729780   95737841
608                  326                20309490  340270846
609                  572                 3598220  170906517
610                  280                 1820580   81484044
611                  157                19326570  671260842
612                  159                  173950    6305202
613                  195                 3844560  153902166
614                  201                  478810    7312554
615                  432                 8760710  238823208
616                  735                15908200 1484983422
617                  735                15908200 1484983422
618                  735                15908200 1484983422
619                  320                17716130  882141496
620                  442                34690690 2255973426
621                  735                15908200 1484983422
622                  650                38846110 6649470730
623                  468                 1422430   90231246
624                  880                36046920 1005634080
625                  188                11581260  542574896
626                  223                  953610   23222472
627                  414                 1474740   23174775
628                  316                  868800   35965920
629                   75                  189920    2442892
630                  188                11581260  542574896
631                  492                 4302940  208121250
632                  425                33355530 2908354320
633                  201                 2557720  112963680
634                   99                  101260    1215840
635                  201                  478810    7312554
636                  403                12843550  550194288
637                  204                 3479050  175047074
638                  442                34690690 2255973426
639                  270                 1914290   66701472
640                  650                38846110 6649470730
641                  195                24375750 1567730944
642                  880                36046920 1005634080
643                   73                 5232400   67242474
644                  155                 1892340   73298106
645                  204                 3479050  175047074
646                  249                  200770    6042162
647                  642                 1864750  109679525
648                  642                 1864750  109679525
649                  387                 2808920   93588046
650                  387                 2808920   93588046
651                   44                  632460   18177519
652                  403                12843550  550194288
653                  387                 2808920   93588046
654                  262                  448050    6103292
655                  221                 5061900  116507650
656                  196                  161180    1567611
657                  208                  143220     407372
658                  186                  465570    9493088
659                  195                24375750 1567730944
660                  163                 2215040   53827666
661                  532                17731000 1664226499
662                  278                  984810   32017050
663                  101                  929150   14525236
664                  223                  953610   23222472
665                  452                 5148900  117585201
666                  421                  551030   23655880
667                  452                 5148900  117585201
668                  455                  426050    5159540
669                  332                 9903470  735481492
670                  332                 9903470  735481492
671                  383                 1220480   64633344
672                  332                 9903470  735481492
673                  332                 9903470  735481492
674                  332                 9903470  735481492
675                  332                 9903470  735481492
676                  389                28512200  571161498
677                   NA                 9543350  342128904
678                   73                17698440  496210924
679                  572                 3598220  170906517
680                  650                38846110 6649470730
681                  425                33355530 2908354320
682                  926                 2608440   72942180
683                  356                  774530   13265385
684                  468                 1422430   90231246
685                  221                 5061900  116507650
686                  423                 6010310  289792869
687                  249                 1041010   25030372
688                  398                 1621270   84650808
689                  376                 2092800   69613568
690                  532                17731000 1664226499
691                  120                   88790    2377949
692                  160                 1166370   51398553
693                  243                 3835670  585476350
694                  308                  287340     790080
695                   30                 3462700   33333300
696                   73                17698440  496210924
697                  376                 2092800   69613568
698                  496                 8668170  193114681
699                  492                 4302940  208121250
700                   NA                 1696410         NA
701                  231                  410120    2226040
702                  243                 3835670  585476350
703                  185                  568460   16472881
704                   NA                30305010 4667842452
705                  230                 1944450   48610926
706                  230                 1944450   48610926
707                  230                 1944450   48610926
708                  880                36046920 1005634080
709                  230                 1944450   48610926
710                  230                 1944450   48610926
711                   55                 1366930    5256238
712                   NA                30305010 4667842452
713                  230                 1944450   48610926
714                  204                  301060    4884360
715                   NA                30305010 4667842452
716                   NA                30305010 4667842452
717                  124                 2131480    4119125
718                  190                 1027250    6822045
719                  218                 9819040  292520515
720                  190                 1027250    6822045
721                  296                 1729780   95737841
722                  248                  105560     955154
723                  403                12843550  550194288
724                  650                38846110 6649470730
725                  211                 1054220   52100589
726                   NA                30305010 4667842452
727                  442                34690690 2255973426
728                  389                28512200  571161498
729                  389                28512200  571161498
730                  389                28512200  571161498
731                  389                28512200  571161498
732                  389                28512200  571161498
733                  389                28512200  571161498
734                  117                 1526650   60458794
735                  145                10784180  144287625
736                  204                 3479050  175047074
737                  278                  984810   32017050
738                  312                  305400    1825512
739                  186                  465570    9493088
740                   38                  649750   12230976
741                  389                28512200  571161498
742                   56                  803620   33273240
743                   56                  803620   33273240
744                   56                  803620   33273240
745                   56                  803620   33273240
746                  226                  461460    2192872
747                  425                33355530 2908354320
748                  130                  374250    1483300
749                  425                33355530 2908354320
750                  195                24375750 1567730944
751                  124                 1457760   50667660
752                  387                 2808920   93588046
753                  157                19326570  671260842
754                  126                 1701380   30445220
755                  126                 1701380   30445220
756                  403                12843550  550194288
757                  496                 8668170  193114681
758                  195                24375750 1567730944
759                  195                24375750 1567730944
760                  354                 4742370  166453056
761                  249                  200770    6042162
762                  156                  197740     623600
763                  145                10784180  144287625
764                  143                   70130     417126
765                  532                17731000 1664226499
766                  532                17731000 1664226499
767                  204                   13370      95352
768                  195                 3844560  153902166
769                  301                  317250    1509810
770                  735                15908200 1484983422
771                  204                 3479050  175047074
772                  425                33355530 2908354320
773                   NA                30305010 4667842452
774                   NA                30305010 4667842452
775                   NA                30305010 4667842452
776                   NA                30305010 4667842452
777                   NA                30305010 4667842452
778                   NA                30305010 4667842452
779                   NA                30305010 4667842452
780                   NA                30305010 4667842452
781                  671                  295120    5218530
782                  320                17716130  882141496
783                  572                 3598220  170906517
784                   91                   73140     522852
785                  338                 3828130  244231890
786                  162                  848130   18332865
787                  458                12877300  540714216
788                   NA                 9543350  342128904
789                  201                 2557720  112963680
790                   NA                20921910  271911120
791                   38                  649750   12230976
792                  110                  209470    3063263
793                  162                  848130   18332865
794                  458                12877300  540714216
795                  458                12877300  540714216
796                  119                  107170     422115
797                  168                  273650    3936132
798                  320                17716130  882141496
799                  134                   52890     129402
800                  124                 2131480    4119125
801                  119                  185150    2269148
802                  650                38846110 6649470730
803                  387                 2808920   93588046
804                  270                 1914290   66701472
805                  468                 1422430   90231246
806                  216                   24050     110010
807                  243                 3835670  585476350
808                  338                 3828130  244231890
809                  243                 3835670  585476350
810                  195                24375750 1567730944
811                  425                33355530 2908354320
812                  425                33355530 2908354320
813                  425                33355530 2908354320
814                  425                33355530 2908354320
815                  389                28512200  571161498
816                  406                 6214440  225478080
817                  406                 6214440  225478080
818                  406                 6214440  225478080
819                  406                 6214440  225478080
820                  406                 6214440  225478080
821                  406                 6214440  225478080
822                  406                 6214440  225478080
823                  406                 6214440  225478080
824                  492                 4302940  208121250
825                   55                 1366930    5256238
826                  157                19326570  671260842
827                  157                19326570  671260842
828                  204                 3479050  175047074
829                  201                 2557720  112963680
830                   NA                20921910  271911120
831                  226                  461460    2192872
832                  243                 3835670  585476350
833                  230                 1944450   48610926
834                  162                  848130   18332865
835                  269                  272200    1543916
836                  280                 1820580   81484044
837                  243                 3835670  585476350
838                  175                   79470     251280
839                  180                  240950    1457832
840                  381                19485700  416315328
841                  629                 1738780   56594235
842                  187                 1909710   36316906
843                  252                 5386650  203547205
844                   NA                 9543350  342128904
845                   NA                 9543350  342128904
846                   NA                 9543350  342128904
847                   NA                 9543350  342128904
848                   NA                 9543350  342128904
849                   NA                 9543350  342128904
850                   NA                 9543350  342128904
851                  110                  209470    3063263
852                  106                    9980     475660
853                  194                  244720    2253696
854                   NA                20921910  271911120
855                  185                  568460   16472881
856                  423                 6010310  289792869
857                  194                  244720    2253696
858                   NA                20921910  271911120
859                  195                24375750 1567730944
860                   73                17698440  496210924
861                   73                17698440  496210924
862                   73                17698440  496210924
863                   73                17698440  496210924
864                  320                17716130  882141496
865                  320                17716130  882141496
866                  320                17716130  882141496
867                  320                17716130  882141496
868                  320                17716130  882141496
869                  320                17716130  882141496
870                  320                17716130  882141496
871                  320                17716130  882141496
872                  354                 4742370  166453056
873                  354                 4742370  166453056
874                  354                 4742370  166453056
875                  354                 4742370  166453056
876                  354                 4742370  166453056
877                  188                11581260  542574896
878                  117                 1526650   60458794
879                   55                 1366930    5256238
880                  145                10784180  144287625
881                   61                  176170     279915
882                  326                20309490  340270846
883                  104                  137510    3627532
884                  194                  244720    2253696
885                   30                 3462700   33333300
886                  252                 5386650  203547205
887                  252                 5386650  203547205
888                  252                 5386650  203547205
889                   30                 3462700   33333300
890                  226                  461460    2192872
891                   73                17698440  496210924
892                   NA                30305010 4667842452
893                  383                 1220480   64633344
894                  109                  236200    4859880
895                  442                34690690 2255973426
896                  204                  301060    4884360
897                  204                  301060    4884360
898                  204                  301060    4884360
899                  270                 1914290   66701472
900                  270                 1914290   66701472
901                  208                 1725420   14376060
902                  117                 1526650   60458794
903                  735                15908200 1484983422
904                   NA                30305010 4667842452
905                  376                 2092800   69613568
906                  125                  303450    1481176
907                  425                33355530 2908354320
908                  230                 1944450   48610926
909                  230                 1944450   48610926
910                  230                 1944450   48610926
911                  190                 1027250    6822045
912                  312                  305400    1825512
913                  188                11581260  542574896
914                  650                38846110 6649470730
915                  452                 5148900  117585201
916                  128                  345400    1422492
917                  130                  374250    1483300
918                  126                 1701380   30445220
919                  650                38846110 6649470730
920                  185                  568460   16472881
921                  650                38846110 6649470730
922                  126                 1701380   30445220
923                  231                  410120    2226040
924                  175                   79470     251280
925                  230                  226940     950868
926                   NA                30305010 4667842452
927                  231                  410120    2226040
928                  231                  410120    2226040
929                  320                17716130  882141496
930                   73                17698440  496210924
931                   73                17698440  496210924
932                   73                17698440  496210924
933                   73                17698440  496210924
934                  406                 6214440  225478080
935                  406                 6214440  225478080
936                  243                 3835670  585476350
937                  177                 1610000   60701270
938                  106                   65030      94282
939                  226                  461460    2192872
940                   NA                 9543350  342128904
941                  185                  568460   16472881
942                   73                17698440  496210924
943                   73                17698440  496210924
944                   73                17698440  496210924
945                   73                17698440  496210924
946                   73                17698440  496210924
947                   73                17698440  496210924
948                   73                17698440  496210924
949                   73                17698440  496210924
950                   73                17698440  496210924
951                   73                17698440  496210924
952                   73                17698440  496210924
953                   73                17698440  496210924
954                   73                17698440  496210924
955                   73                17698440  496210924
956                   73                17698440  496210924
957                  320                17716130  882141496
958                  354                 4742370  166453056
959                   NA                30305010 4667842452
960                  204                  301060    4884360
961                  389                28512200  571161498
962                  432                 8760710  238823208
963                  926                 2608440   72942180
964                  332                 9903470  735481492
965                  130                  374250    1483300
966                  128                  345400    1422492
967                  880                36046920 1005634080
968                   NA                 1696410         NA
969                  180                  240950    1457832
970                  389                28512200  571161498
971                  432                 8760710  238823208
972                  270                 1914290   66701472
973                  432                 8760710  238823208
974                  187                   10820     194548
975                   73                17698440  496210924
976                   NA                30305010 4667842452
977                  650                38846110 6649470730
978                   NA                30305010 4667842452
979                  432                 8760710  238823208
980                  926                 2608440   72942180
981                   NA                30305010 4667842452
982                  221                 5061900  116507650
983                  414                 1474740   23174775
984                  218                  708880   10077197
985                  383                 1220480   64633344
986                  640                 2832500  126197568
987                  880                36046920 1005634080
988                  230                 1944450   48610926
989                  188                  387460     632862
990                  226                  461460    2192872
991                  403                12843550  550194288
992                  389                28512200  571161498
993                  326                20309490  340270846
994                  452                 5148900  117585201
995                  249                 9504360  344985480
996                  349                  123690    2185150
997                  403                12843550  550194288
998                  115                  963790     955643
999                  278                  984810   32017050
1000                 115                  963790     955643
1001                 155                 1892340   73298106
1002                 650                38846110 6649470730
1003                  30                 3462700   33333300
1004                  30                 3462700   33333300
1005                 124                 2131480    4119125
1006                  NA                20921910  271911120
1007                 452                 5148900  117585201
1008                 204                 3479050  175047074
1009                 101                   68560     379642
1010                 223                  953610   23222472
1011                 120                   88790    2377949
1012                 195                 3844560  153902166
1013                 195                 3844560  153902166
1014                  73                 5232400   67242474
1015                 187                 1909710   36316906
1016                 211                 1054220   52100589
1017                 172                   13100     179784
1018                 650                38846110 6649470730
1019                 195                24375750 1567730944
1020                 403                12843550  550194288
1021                 223                  666310   11834199
1022                 389                28512200  571161498
1023                 185                  568460   16472881
1024                 650                38846110 6649470730
1025                 389                28512200  571161498
1026                 735                15908200 1484983422
1027                 642                 1864750  109679525
1028                 172                  132950    1457455
1029                 389                28512200  571161498
1030                 389                28512200  571161498
1031                 389                28512200  571161498
1032                 389                28512200  571161498
1033                 442                34690690 2255973426
1034                 217                   15350     545421
1035                 532                17731000 1664226499
1036                 389                28512200  571161498
1037                  73                 5232400   67242474
1038                 650                38846110 6649470730
1039                 211                 1054220   52100589
1040                 252                 5386650  203547205
1041                 496                 8668170  193114681
1042                 211                 1054220   52100589
1043                 296                 1729780   95737841
1044                 650                38846110 6649470730
1045                 195                24375750 1567730944
1046                 650                38846110 6649470730
1047                 145                10784180  144287625
1048                 188                  387460     632862
1049                 650                38846110 6649470730
1050                 650                38846110 6649470730
1051                 650                38846110 6649470730
1052                 650                38846110 6649470730
1053                 650                38846110 6649470730
1054                 650                38846110 6649470730
1055                 650                38846110 6649470730
1056                 650                38846110 6649470730
1057                 650                38846110 6649470730
1058                 650                38846110 6649470730
1059                 650                38846110 6649470730
1060                 421                  397810    2779440
1061                 320                17716130  882141496
1062                  NA                 1696410         NA
1063                 195                24375750 1567730944
1064                 248                  105560     955154
1065                 195                24375750 1567730944
1066                 249                 9504360  344985480
1067                 338                 3828130  244231890
1068                 101                  929150   14525236
1069                 204                 3479050  175047074
1070                 398                 1621270   84650808
1071                 124                 1457760   50667660
1072                 148                  729320    8690640
1073                 452                 5148900  117585201
1074                 398                 1621270   84650808
1075                 252                 5386650  203547205
1076                 218                 9819040  292520515
1077                 326                20309490  340270846
1078                 735                15908200 1484983422
1079                 735                15908200 1484983422
1080                 735                15908200 1484983422
1081                 735                15908200 1484983422
1082                 735                15908200 1484983422
1083                 735                15908200 1484983422
1084                 735                15908200 1484983422
1085                 735                15908200 1484983422
1086                 312                  305400    1825512
1087                 735                15908200 1484983422
1088                 376                 2092800   69613568
1089                 532                17731000 1664226499
1090                 532                17731000 1664226499
1091                 532                17731000 1664226499
1092                 532                17731000 1664226499
1093                 167                   11570     196860
1094                 532                17731000 1664226499
1095                 532                17731000 1664226499
1096                 532                17731000 1664226499
1097                 163                 2215040   53827666
1098                 296                 1729780   95737841
1099                 735                15908200 1484983422
1100                 223                  953610   23222472
1101                 342                 1021670   47821796
1102                 387                 2808920   93588046
1103                 338                 3828130  244231890
1104                 650                38846110 6649470730
1105                 218                 9819040  292520515
1106                 342                 3256520  188075624
1107                 629                 1738780   56594235
1108                  NA                20921910  271911120
1109                 126                  274750    1526400
1110                  44                  632460   18177519
1111                 496                 8668170  193114681
1112                 201                 2557720  112963680
1113                 195                 3844560  153902166
1114                 572                 3598220  170906517
1115                 326                20309490  340270846
1116                 249                 9504360  344985480
1117                 342                 3256520  188075624
1118                 640                 2832500  126197568
1119                 162                  848130   18332865
1120                 640                 2832500  126197568
1121                 188                11581260  542574896
1122                 640                 2832500  126197568
1123                  73                 5232400   67242474
1124                  NA                30305010 4667842452
1125                  NA                30305010 4667842452
1126                 188                11581260  542574896
1127                 354                 4742370  166453056
1128                 406                 6214440  225478080
1129                 389                28512200  571161498
1130                 252                 5386650  203547205
1131                 221                 5061900  116507650
1132                 218                 9819040  292520515
1133                 124                 2131480    4119125
1134                  73                 5232400   67242474
1135                 642                 1864750  109679525
1136                 157                19326570  671260842
1137                  NA                 9543350  342128904
1138                  99                  101260    1215840
1139                 195                24375750 1567730944
1140                 329                  200540    1919460
1141                 735                15908200 1484983422
1142                 383                 1220480   64633344
1143                 125                  303450    1481176
1144                  55                 1366930    5256238
1145                 249                 1041010   25030372
1146                 145                10784180  144287625
1147                 423                 6010310  289792869
1148                 926                 2608440   72942180
1149                 572                 3598220  170906517
1150                 425                33355530 2908354320
1151                 425                33355530 2908354320
1152                 425                33355530 2908354320
1153                 425                33355530 2908354320
1154                 243                 3835670  585476350
1155                 425                33355530 2908354320
1156                 425                33355530 2908354320
1157                 389                28512200  571161498
1158                 425                33355530 2908354320
1159                 425                33355530 2908354320
1160                 425                33355530 2908354320
1161                 425                33355530 2908354320
1162                 425                33355530 2908354320
1163                 425                33355530 2908354320
1164                 115                  963790     955643
1165                 280                 1820580   81484044
1166                 342                 3256520  188075624
1167                 125                  425810    3032623
1168                 406                 6214440  225478080
1169                 735                15908200 1484983422
1170                 157                19326570  671260842
1171                 155                 1892340   73298106
1172                 458                  373780    3951262
1173                 190                 1027250    6822045
1174                 398                 1621270   84650808
1175                 496                 8668170  193114681
1176                 193                  129310    1205106
1177                 231                  410120    2226040
1178                 338                 3828130  244231890
1179                 442                34690690 2255973426
1180                 243                 3835670  585476350
1181                 213                  195830    1914915
1182                 442                34690690 2255973426
1183                 236                   61450     615330
1184                 173                  559730    3611920
1185                 125                  425810    3032623
1186                 201                  478810    7312554
1187                 320                17716130  882141496
1188                 650                38846110 6649470730
1189                 468                 1422430   90231246
1190                 320                17716130  882141496
1191                 223                  953610   23222472
1192                 332                 9903470  735481492
1193                 423                 6010310  289792869
1194                 320                17716130  882141496
1195                 468                 1422430   90231246
1196                 342                 1021670   47821796
1197                 213                  195830    1914915
1198                 735                15908200 1484983422
1199                 926                 2608440   72942180
1200                 195                24375750 1567730944
1201                 249                 9504360  344985480
1202                 640                 2832500  126197568
1203                 243                 3835670  585476350
1204                 117                 1526650   60458794
1205                 148                  729320    8690640
1206                 376                 2092800   69613568
1207                 115                  963790     955643
1208                 376                 2092800   69613568
1209                 376                 2092800   69613568
1210                 376                 2092800   69613568
1211                 160                 1166370   51398553
1212                 326                20309490  340270846
1213                 195                24375750 1567730944
1214                  73                 5232400   67242474
1215                  73                 5232400   67242474
1216                 252                 5386650  203547205
1217                 160                 1166370   51398553
1218                 252                 5386650  203547205
1219                 160                 1166370   51398553
1220                 280                  329610   11040398
1221                 280                  329610   11040398
1222                 880                36046920 1005634080
1223                 880                36046920 1005634080
1224                 177                 1610000   60701270
1225                  NA                20921910  271911120
1226                  NA                30305010 4667842452
1227                 157                19326570  671260842
1228                 880                36046920 1005634080
1229                 880                36046920 1005634080
1230                 880                36046920 1005634080
1231                 880                36046920 1005634080
1232                 880                36046920 1005634080
1233                  NA                30305010 4667842452
1234                 320                17716130  882141496
1235                 145                10784180  144287625
1236                 880                36046920 1005634080
1237                 880                36046920 1005634080
1238                 880                36046920 1005634080
1239                 880                36046920 1005634080
1240                 880                36046920 1005634080
1241                 880                36046920 1005634080
1242                 211                 1230310   62081164
1243                 880                36046920 1005634080
1244                 880                36046920 1005634080
1245                 124                 2131480    4119125
1246                 880                36046920 1005634080
1247                 880                36046920 1005634080
1248                 880                36046920 1005634080
1249                 880                36046920 1005634080
1250                 880                36046920 1005634080
1251                  30                 3462700   33333300
1252                 880                36046920 1005634080
1253                 880                36046920 1005634080
1254                 880                36046920 1005634080
1255                 880                36046920 1005634080
1256                 403                12843550  550194288
1257                 650                38846110 6649470730
1258                 270                 1914290   66701472
1259                 414                 1474740   23174775
1260                 432                 8760710  238823208
1261                 195                24375750 1567730944
1262                 270                 1914290   66701472
1263                 320                17716130  882141496
1264                  73                17698440  496210924
1265                 243                 3835670  585476350
1266                  NA                 9543350  342128904
1267                 432                 8760710  238823208
1268                 432                 8760710  238823208
1269                 432                 8760710  238823208
1270                 432                 8760710  238823208
1271                 432                 8760710  238823208
1272                 432                 8760710  238823208
1273                 432                 8760710  238823208
1274                 432                 8760710  238823208
1275                 432                 8760710  238823208
1276                 432                 8760710  238823208
1277                 432                 8760710  238823208
1278                 432                 8760710  238823208
1279                 432                 8760710  238823208
1280                 432                 8760710  238823208
1281                 432                 8760710  238823208
1282                 432                 8760710  238823208
1283                 432                 8760710  238823208
1284                 432                 8760710  238823208
1285                 468                 1422430   90231246
1286                  NA                20921910  271911120
1287                 243                 3835670  585476350
1288                 926                 2608440   72942180
1289                 926                 2608440   72942180
1290                 383                 1220480   64633344
1291                 383                 1220480   64633344
1292                 383                 1220480   64633344
1293                 383                 1220480   64633344
1294                 383                 1220480   64633344
1295                 383                 1220480   64633344
1296                 110                  176560    3397845
1297                 496                 8668170  193114681
1298                 496                 8668170  193114681
1299                 496                 8668170  193114681
1300                 207                  222670    1193975
1301                 496                 8668170  193114681
1302                 496                 8668170  193114681
1303                 496                 8668170  193114681
1304                 496                 8668170  193114681
1305                 496                 8668170  193114681
1306                 187                 1909710   36316906
1307                 496                 8668170  193114681
1308                  NA                30305010 4667842452
1309                 496                 8668170  193114681
1310                 496                 8668170  193114681
1311                 496                 8668170  193114681
1312                 496                 8668170  193114681
1313                 496                 8668170  193114681
1314                 496                 8668170  193114681
1315                 496                 8668170  193114681
1316                 496                 8668170  193114681
1317                 496                 8668170  193114681
1318                 496                 8668170  193114681
1319                 496                 8668170  193114681
1320                 496                 8668170  193114681
1321                 496                 8668170  193114681
1322                 496                 8668170  193114681
1323                 496                 8668170  193114681
1324                 496                 8668170  193114681
1325                  30                 3462700   33333300
1326                 124                 2131480    4119125
1327                 496                 8668170  193114681
1328                 496                 8668170  193114681
1329                 496                 8668170  193114681
1330                 496                 8668170  193114681
1331                 496                 8668170  193114681
1332                 496                 8668170  193114681
1333                 155                 1892340   73298106
1334                 195                24375750 1567730944
1335                 230                 1944450   48610926
1336                 230                 1944450   48610926
1337                 230                 1944450   48610926
1338                 230                 1944450   48610926
1339                 187                 1909710   36316906
1340                 442                34690690 2255973426
1341                 532                17731000 1664226499
1342                 163                 2215040   53827666
1343                 101                  929150   14525236
1344                 572                 3598220  170906517
1345                 387                 2808920   93588046
1346                 157                19326570  671260842
1347                 414                 1474740   23174775
1348                 389                28512200  571161498
1349                  NA                30305010 4667842452
1350                 458                12877300  540714216
1351                 157                19326570  671260842
1352                 354                 4742370  166453056
1353                 403                12843550  550194288
1354                 124                 1457760   50667660
1355                 155                 1892340   73298106
1356                 155                 1892340   73298106
1357                 155                 1892340   73298106
1358                  NA                30305010 4667842452
1359                 452                 5148900  117585201
1360                 221                 5061900  116507650
1361                 249                 9504360  344985480
1362                 296                 1729780   95737841
1363                  NA                30305010 4667842452
1364                  NA                30305010 4667842452
1365                  NA                30305010 4667842452
1366                  NA                30305010 4667842452
1367                  NA                30305010 4667842452
1368                  NA                30305010 4667842452
1369                 218                 9819040  292520515
1370                 218                 9819040  292520515
1371                  73                17698440  496210924
1372                 218                 9819040  292520515
1373                 218                 9819040  292520515
1374                 218                 9819040  292520515
1375                 218                 9819040  292520515
1376                 218                 9819040  292520515
1377                 218                 9819040  292520515
1378                 218                 9819040  292520515
1379                 218                 9819040  292520515
1380                 218                 9819040  292520515
1381                 218                 9819040  292520515
1382                 435                 4303230  126486306
1383                 218                 9819040  292520515
1384                 218                 9819040  292520515
1385                 218                 9819040  292520515
1386                  55                 1366930    5256238
1387                 218                 9819040  292520515
1388                 735                15908200 1484983422
1389                 218                 9819040  292520515
1390                 218                 9819040  292520515
1391                 218                 9819040  292520515
1392                  55                 1366930    5256238
1393                 218                 9819040  292520515
1394                 218                 9819040  292520515
1395                 218                 9819040  292520515
1396                 218                 9819040  292520515
1397                 218                 9819040  292520515
1398                 218                 9819040  292520515
1399                 218                 9819040  292520515
1400                  73                 5232400   67242474
1401                 190                 1027250    6822045
1402                 492                 4302940  208121250
1403                 201                 2557720  112963680
1404                 163                 2215040   53827666
1405                 211                 1054220   52100589
1406                 163                 2215040   53827666
1407                  NA                30305010 4667842452
1408                  73                 5232400   67242474
1409                 195                 3844560  153902166
1410                 195                 3844560  153902166
1411                  30                 3462700   33333300
1412                 195                 3844560  153902166
1413                 195                 3844560  153902166
1414                 342                 3256520  188075624
1415                 342                 3256520  188075624
1416                 117                 1526650   60458794
1417                 342                 3256520  188075624
1418                 157                19326570  671260842
1419                 148                  729320    8690640
1420                 342                 3256520  188075624
1421                 342                 3256520  188075624
1422                 342                 3256520  188075624
1423                 342                 3256520  188075624
1424                 342                 3256520  188075624
1425                 342                 3256520  188075624
1426                 185                  568460   16472881
1427                 211                 1054220   52100589
1428                 211                 1054220   52100589
1429                 199                  287100   10554675
1430                  73                 5232400   67242474
1431                 126                 1701380   30445220
1432                 320                17716130  882141496
1433                 640                 2832500  126197568
1434                 640                 2832500  126197568
1435                 640                 2832500  126197568
1436                 249                 9504360  344985480
1437                 640                 2832500  126197568
1438                 442                34690690 2255973426
1439                  NA                30305010 4667842452
1440                 442                34690690 2255973426
1441                 320                17716130  882141496
1442                 442                34690690 2255973426
1443                 442                34690690 2255973426
1444                 442                34690690 2255973426
1445                 442                34690690 2255973426
1446                 442                34690690 2255973426
1447                 442                34690690 2255973426
1448                 442                34690690 2255973426
1449                 442                34690690 2255973426
1450                 442                34690690 2255973426
1451                 442                34690690 2255973426
1452                 442                34690690 2255973426
1453                 442                34690690 2255973426
1454                 442                34690690 2255973426
1455                 442                34690690 2255973426
1456                 442                34690690 2255973426
1457                 442                34690690 2255973426
1458                 442                34690690 2255973426
1459                 442                34690690 2255973426
1460                 442                34690690 2255973426
1461                 442                34690690 2255973426
1462                 442                34690690 2255973426
1463                 442                34690690 2255973426
1464                 442                34690690 2255973426
1465                 442                34690690 2255973426
1466                 442                34690690 2255973426
1467                 442                34690690 2255973426
1468                 442                34690690 2255973426
1469                 442                34690690 2255973426
1470                 442                34690690 2255973426
1471                 442                34690690 2255973426
1472                 442                34690690 2255973426
1473                 442                34690690 2255973426
1474                 442                34690690 2255973426
1475                 442                34690690 2255973426
1476                 320                17716130  882141496
1477                 124                 1457760   50667660
1478                 735                15908200 1484983422
1479                 735                15908200 1484983422
1480                 735                15908200 1484983422
1481                 389                28512200  571161498
1482                 735                15908200 1484983422
1483                 735                15908200 1484983422
1484                 735                15908200 1484983422
1485                 735                15908200 1484983422
1486                 735                15908200 1484983422
1487                 735                15908200 1484983422
1488                 735                15908200 1484983422
1489                 218                 9819040  292520515
1490                 735                15908200 1484983422
1491                 389                28512200  571161498
1492                 650                38846110 6649470730
1493                 389                28512200  571161498
1494                 650                38846110 6649470730
1495                 389                28512200  571161498
1496                 124                 1457760   50667660
1497                 389                28512200  571161498
1498                 389                28512200  571161498
1499                 389                28512200  571161498
1500                 124                 1457760   50667660
1501                 389                28512200  571161498
1502                 389                28512200  571161498
1503                 389                28512200  571161498
1504                 326                20309490  340270846
1505                 332                 9903470  735481492
1506                 389                28512200  571161498
1507                 389                28512200  571161498
1508                 389                28512200  571161498
1509                 195                24375750 1567730944
1510                 389                28512200  571161498
1511                 389                28512200  571161498
1512                 389                28512200  571161498
1513                 389                28512200  571161498
1514                 389                28512200  571161498
1515                 389                28512200  571161498
1516                 389                28512200  571161498
1517                 389                28512200  571161498
1518                 252                 5386650  203547205
1519                 389                28512200  571161498
1520                 389                28512200  571161498
1521                 389                28512200  571161498
1522                 389                28512200  571161498
1523                 389                28512200  571161498
1524                 389                28512200  571161498
1525                 389                28512200  571161498
1526                 389                28512200  571161498
1527                 389                28512200  571161498
1528                 249                 9504360  344985480
1529                 532                17731000 1664226499
1530                 532                17731000 1664226499
1531                  NA                 9543350  342128904
1532                 188                11581260  542574896
1533                 188                11581260  542574896
1534                 188                11581260  542574896
1535                 376                 2092800   69613568
1536                 332                 9903470  735481492
1537                 177                 1610000   60701270
1538                 177                 1610000   60701270
1539                 177                 1610000   60701270
1540                 177                 1610000   60701270
1541                 177                 1610000   60701270
1542                 354                 4742370  166453056
1543                 249                 9504360  344985480
1544                 387                 2808920   93588046
1545                 249                 9504360  344985480
1546                 177                 1610000   60701270
1547                 177                 1610000   60701270
1548                  NA                 9543350  342128904
1549                  38                  649750   12230976
1550                  38                  649750   12230976
1551                  56                  803620   33273240
1552                 389                28512200  571161498
1553                  NA                20921910  271911120
1554                 354                 4742370  166453056
1555                 195                24375750 1567730944
1556                 432                 8760710  238823208
1557                 195                24375750 1567730944
1558                 195                24375750 1567730944
1559                 468                 1422430   90231246
1560                 195                24375750 1567730944
1561                 195                24375750 1567730944
1562                 195                24375750 1567730944
1563                 195                24375750 1567730944
1564                  NA                30305010 4667842452
1565                 195                24375750 1567730944
1566                 195                24375750 1567730944
1567                 195                24375750 1567730944
1568                 642                 1864750  109679525
1569                 211                 1230310   62081164
1570                 126                 1701380   30445220
1571                  44                  632460   18177519
1572                 126                 1701380   30445220
1573                 126                 1701380   30445220
1574                 157                19326570  671260842
1575                 126                 1701380   30445220
1576                 323                 1261610   51092196
1577                 101                  929150   14525236
1578                 354                 4742370  166453056
1579                  NA                30305010 4667842452
1580                 145                10784180  144287625
1581                 496                 8668170  193114681
1582                 532                17731000 1664226499
1583                 221                 5061900  116507650
1584                 650                38846110 6649470730
1585                 532                17731000 1664226499
1586                 532                17731000 1664226499
1587                 532                17731000 1664226499
1588                 532                17731000 1664226499
1589                 532                17731000 1664226499
1590                 532                17731000 1664226499
1591                 532                17731000 1664226499
1592                 532                17731000 1664226499
1593                 532                17731000 1664226499
1594                 650                38846110 6649470730
1595                 532                17731000 1664226499
1596                 532                17731000 1664226499
1597                 532                17731000 1664226499
1598                 532                17731000 1664226499
1599                 532                17731000 1664226499
1600                 532                17731000 1664226499
1601                 532                17731000 1664226499
1602                 532                17731000 1664226499
1603                 532                17731000 1664226499
1604                 532                17731000 1664226499
1605                 532                17731000 1664226499
1606                 532                17731000 1664226499
1607                 532                17731000 1664226499
1608                 532                17731000 1664226499
1609                 532                17731000 1664226499
1610                 532                17731000 1664226499
1611                 532                17731000 1664226499
1612                 532                17731000 1664226499
1613                 532                17731000 1664226499
1614                 532                17731000 1664226499
1615                 650                38846110 6649470730
1616                 532                17731000 1664226499
1617                 532                17731000 1664226499
1618                 532                17731000 1664226499
1619                 532                17731000 1664226499
1620                 421                  551030   23655880
1621                 136                  449340   19827138
1622                 211                 1054220   52100589
1623                 145                10784180  144287625
1624                 320                17716130  882141496
1625                 252                 5386650  203547205
1626                 323                 1261610   51092196
1627                 532                17731000 1664226499
1628                 326                20309490  340270846
1629                 532                17731000 1664226499
1630                 249                  613820   22637790
1631                 249                  613820   22637790
1632                 223                  953610   23222472
1633                 572                 3598220  170906517
1634                 572                 3598220  170906517
1635                 572                 3598220  170906517
1636                 572                 3598220  170906517
1637                 572                 3598220  170906517
1638                 650                38846110 6649470730
1639                 195                24375750 1567730944
1640                 223                  666310   11834199
1641                  44                  632460   18177519
1642                 387                 2808920   93588046
1643                 387                 2808920   93588046
1644                 387                 2808920   93588046
1645                 880                36046920 1005634080
1646                 218                 9819040  292520515
1647                 296                 1729780   95737841
1648                  NA                20921910  271911120
1649                  NA                20921910  271911120
1650                 572                 3598220  170906517
1651                 452                 5148900  117585201
1652                 204                 3479050  175047074
1653                  NA                20921910  271911120
1654                 204                 3479050  175047074
1655                 249                 9504360  344985480
1656                  NA                20921910  271911120
1657                  NA                20921910  271911120
1658                 880                36046920 1005634080
1659                 425                33355530 2908354320
1660                  NA                20921910  271911120
1661                  NA                20921910  271911120
1662                 204                 3479050  175047074
1663                  NA                20921910  271911120
1664                  NA                20921910  271911120
1665                  NA                20921910  271911120
1666                  NA                20921910  271911120
1667                  NA                20921910  271911120
1668                  NA                20921910  271911120
1669                  NA                20921910  271911120
1670                  NA                20921910  271911120
1671                  NA                20921910  271911120
1672                  NA                20921910  271911120
1673                  NA                20921910  271911120
1674                  NA                20921910  271911120
1675                  NA                20921910  271911120
1676                  NA                20921910  271911120
1677                  NA                20921910  271911120
1678                  NA                20921910  271911120
1679                  NA                30305010 4667842452
1680                  NA                30305010 4667842452
1681                 115                  963790     955643
1682                 452                 5148900  117585201
1683                 338                 3828130  244231890
1684                  NA                30305010 4667842452
1685                 211                 1230310   62081164
1686                 326                20309490  340270846
1687                 195                24375750 1567730944
1688                  NA                30305010 4667842452
1689                  NA                30305010 4667842452
1690                  NA                30305010 4667842452
1691                  NA                30305010 4667842452
1692                 243                 3835670  585476350
1693                 221                 5061900  116507650
1694                  88                  457820   14825110
1695                 442                34690690 2255973426
1696                 532                17731000 1664226499
1697                 650                38846110 6649470730
1698                 452                 5148900  117585201
1699                 296                 1729780   95737841
1700                 650                38846110 6649470730
1701                 650                38846110 6649470730
1702                  NA                30305010 4667842452
1703                 425                33355530 2908354320
1704                  NA                30305010 4667842452
1705                  NA                30305010 4667842452
1706                  NA                30305010 4667842452
1707                  NA                30305010 4667842452
1708                  NA                30305010 4667842452
1709                 243                 3835670  585476350
1710                  NA                30305010 4667842452
1711                  NA                30305010 4667842452
1712                  NA                30305010 4667842452
1713                  NA                30305010 4667842452
1714                  NA                30305010 4667842452
1715                 316                  868800   35965920
1716                 316                  573110    8905671
1717                 316                  573110    8905671
1718                 492                 4302940  208121250
1719                 492                 4302940  208121250
1720                 124                 1457760   50667660
1721                 492                 4302940  208121250
1722                 492                 4302940  208121250
1723                 492                 4302940  208121250
1724                 492                 4302940  208121250
1725                 492                 4302940  208121250
1726                 492                 4302940  208121250
1727                 492                 4302940  208121250
1728                 155                 1892340   73298106
1729                 190                 1027250    6822045
1730                 243                 3835670  585476350
1731                  73                17698440  496210924
1732                  56                  803620   33273240
1733                 157                19326570  671260842
1734                 326                20309490  340270846
1735                 403                12843550  550194288
1736                 278                  984810   32017050
1737                  NA                 9543350  342128904
1738                 326                20309490  340270846
1739                 326                20309490  340270846
1740                 326                20309490  340270846
1741                 326                20309490  340270846
1742                 326                20309490  340270846
1743                 326                20309490  340270846
1744                 326                20309490  340270846
1745                 326                20309490  340270846
1746                 326                20309490  340270846
1747                 326                20309490  340270846
1748                 115                  963790     955643
1749                 326                20309490  340270846
1750                 326                20309490  340270846
1751                 425                33355530 2908354320
1752                 425                33355530 2908354320
1753                 425                33355530 2908354320
1754                 425                33355530 2908354320
1755                 425                33355530 2908354320
1756                 425                33355530 2908354320
1757                 425                33355530 2908354320
1758                 425                33355530 2908354320
1759                 425                33355530 2908354320
1760                 425                33355530 2908354320
1761                 425                33355530 2908354320
1762                 425                33355530 2908354320
1763                 425                33355530 2908354320
1764                 425                33355530 2908354320
1765                 425                33355530 2908354320
1766                 425                33355530 2908354320
1767                 425                33355530 2908354320
1768                 425                33355530 2908354320
1769                 425                33355530 2908354320
1770                 425                33355530 2908354320
1771                 425                33355530 2908354320
1772                 425                33355530 2908354320
1773                 425                33355530 2908354320
1774                 425                33355530 2908354320
1775                 425                33355530 2908354320
1776                 425                33355530 2908354320
1777                 425                33355530 2908354320
1778                 425                33355530 2908354320
1779                 425                33355530 2908354320
1780                 425                33355530 2908354320
1781                 425                33355530 2908354320
1782                 423                 6010310  289792869
1783                 425                33355530 2908354320
1784                 425                33355530 2908354320
1785                 425                33355530 2908354320
1786                 425                33355530 2908354320
1787                 425                33355530 2908354320
1788                 425                33355530 2908354320
1789                 425                33355530 2908354320
1790                 425                33355530 2908354320
1791                 425                33355530 2908354320
1792                 425                33355530 2908354320
1793                 425                33355530 2908354320
1794                 425                33355530 2908354320
1795                 425                33355530 2908354320
1796                 425                33355530 2908354320
1797                 425                33355530 2908354320
1798                 425                33355530 2908354320
1799                 425                33355530 2908354320
1800                 425                33355530 2908354320
1801                 280                 1820580   81484044
1802                 280                 1820580   81484044
1803                 280                 1820580   81484044
1804                 280                 1820580   81484044
1805                 280                 1820580   81484044
1806                 338                 3828130  244231890
1807                 458                12877300  540714216
1808                 195                24375750 1567730944
1809                 195                24375750 1567730944
1810                 492                 4302940  208121250
1811                 201                 2557720  112963680
1812                 201                 2557720  112963680
1813                 201                 2557720  112963680
1814                 201                 2557720  112963680
1815                 201                 2557720  112963680
1816                 458                12877300  540714216
1817                  73                 5232400   67242474
1818                  NA                 9543350  342128904
1819                 452                 5148900  117585201
1820                 452                 5148900  117585201
1821                 452                 5148900  117585201
1822                 452                 5148900  117585201
1823                 452                 5148900  117585201
1824                 452                 5148900  117585201
1825                 452                 5148900  117585201
1826                 452                 5148900  117585201
1827                 211                 1054220   52100589
1828                 452                 5148900  117585201
1829                 452                 5148900  117585201
1830                 452                 5148900  117585201
1831                 211                 1230310   62081164
1832                 173                 1529910   30274239
1833                 173                 1529910   30274239
1834                 320                17716130  882141496
1835                 320                17716130  882141496
1836                 320                17716130  882141496
1837                 320                17716130  882141496
1838                  NA                 9543350  342128904
1839                 320                17716130  882141496
1840                 572                 3598220  170906517
1841                 320                17716130  882141496
1842                 320                17716130  882141496
1843                 320                17716130  882141496
1844                 354                 4742370  166453056
1845                 320                17716130  882141496
1846                 320                17716130  882141496
1847                 320                17716130  882141496
1848                 320                17716130  882141496
1849                 320                17716130  882141496
1850                 252                 5386650  203547205
1851                 296                 1729780   95737841
1852                 296                 1729780   95737841
1853                 296                 1729780   95737841
1854                 124                 2131480    4119125
1855                 124                 1457760   50667660
1856                 270                 1914290   66701472
1857                 270                 1914290   66701472
1858                 270                 1914290   66701472
1859                 338                 3828130  244231890
1860                 243                 3835670  585476350
1861                 243                 3835670  585476350
1862                 414                 1474740   23174775
1863                 425                33355530 2908354320
1864                 425                33355530 2908354320
1865                 425                33355530 2908354320
1866                 642                 1864750  109679525
1867                 642                 1864750  109679525
1868                 642                 1864750  109679525
1869                 642                 1864750  109679525
1870                 926                 2608440   72942180
1871                 270                 1914290   66701472
1872                 406                 6214440  225478080
1873                 249                 9504360  344985480
1874                 115                  963790     955643
1875                 320                17716130  882141496
1876                 332                 9903470  735481492
1877                 195                24375750 1567730944
1878                 157                19326570  671260842
1879                 201                 2557720  112963680
1880                 157                19326570  671260842
1881                 880                36046920 1005634080
1882                 157                19326570  671260842
1883                 157                19326570  671260842
1884                 157                19326570  671260842
1885                 157                19326570  671260842
1886                 157                19326570  671260842
1887                 157                19326570  671260842
1888                 157                19326570  671260842
1889                 157                19326570  671260842
1890                 157                19326570  671260842
1891                 157                19326570  671260842
1892                 157                19326570  671260842
1893                 157                19326570  671260842
1894                 157                19326570  671260842
1895                 157                19326570  671260842
1896                  30                 3462700   33333300
1897                 157                19326570  671260842
1898                 157                19326570  671260842
1899                 157                19326570  671260842
1900                 157                19326570  671260842
1901                 157                19326570  671260842
1902                 157                19326570  671260842
1903                 204                 3479050  175047074
1904                 204                 3479050  175047074
1905                 204                 3479050  175047074
1906                 204                 3479050  175047074
1907                 204                 3479050  175047074
1908                 204                 3479050  175047074
1909                 214                 1121150   23473340
1910                 214                 1121150   23473340
1911                 214                 1121150   23473340
1912                 243                 3835670  585476350
1913                 243                 3835670  585476350
1914                 221                 5061900  116507650
1915                 320                17716130  882141496
1916                 221                 5061900  116507650
1917                 435                 4303230  126486306
1918                 338                 3828130  244231890
1919                 221                 5061900  116507650
1920                 629                 1738780   56594235
1921                 187                 1909710   36316906
1922                 187                 1909710   36316906
1923                 187                 1909710   36316906
1924                 187                 1909710   36316906
1925                 342                 1021670   47821796
1926                 342                 1021670   47821796
1927                 188                11581260  542574896
1928                  73                 5232400   67242474
1929                  73                 5232400   67242474
1930                  73                 5232400   67242474
1931                  73                 5232400   67242474
1932                  73                 5232400   67242474
1933                  NA                 9543350  342128904
1934                 223                  666310   11834199
1935                 163                 2215040   53827666
1936                 126                 1701380   30445220
1937                  NA                 9543350  342128904
1938                  NA                 9543350  342128904
1939                  NA                 9543350  342128904
1940                 458                12877300  540714216
1941                 117                 1526650   60458794
1942                 338                 3828130  244231890
1943                 338                 3828130  244231890
1944                 338                 3828130  244231890
1945                 338                 3828130  244231890
1946                 442                34690690 2255973426
1947                 185                  568460   16472881
1948                 398                 1621270   84650808
1949                 398                 1621270   84650808
1950                 398                 1621270   84650808
1951                 398                 1621270   84650808
1952                 398                 1621270   84650808
1953                  NA                30305010 4667842452
1954                  NA                30305010 4667842452
1955                 221                 5061900  116507650
1956                 320                17716130  882141496
1957                 320                17716130  882141496
1958                 354                 4742370  166453056
1959                 354                 4742370  166453056
1960                  30                 3462700   33333300
1961                 354                 4742370  166453056
1962                 124                 2131480    4119125
1963                 124                 2131480    4119125
1964                 354                 4742370  166453056
1965                 354                 4742370  166453056
1966                 354                 4742370  166453056
1967                 354                 4742370  166453056
1968                 435                 4303230  126486306
1969                 145                10784180  144287625
1970                 145                10784180  144287625
1971                 145                10784180  144287625
1972                 145                10784180  144287625
1973                 252                 5386650  203547205
1974                 492                 4302940  208121250
1975                 252                 5386650  203547205
1976                 252                 5386650  203547205
1977                  55                 1366930    5256238
1978                 252                 5386650  203547205
1979                 252                 5386650  203547205
1980                 252                 5386650  203547205
1981                 252                 5386650  203547205
1982                  NA                30305010 4667842452
1983                 452                 5148900  117585201
1984                  NA                30305010 4667842452
1985                 124                 1457760   50667660
1986                 124                 1457760   50667660
1987                 124                 1457760   50667660
1988                 124                 1457760   50667660
1989                 423                 6010310  289792869
1990                 423                 6010310  289792869
1991                 423                 6010310  289792869
1992                 423                 6010310  289792869
1993                 423                 6010310  289792869
1994                 423                 6010310  289792869
1995                 423                 6010310  289792869
1996                 423                 6010310  289792869
1997                 423                 6010310  289792869
1998                 423                 6010310  289792869
1999                 423                 6010310  289792869
2000                 926                 2608440   72942180
2001                 423                 6010310  289792869
2002                 423                 6010310  289792869
2003                 423                 6010310  289792869
2004                 423                 6010310  289792869
2005                 423                 6010310  289792869
2006                 423                 6010310  289792869
2007                 423                 6010310  289792869
2008                 423                 6010310  289792869
2009                 423                 6010310  289792869
2010                 423                 6010310  289792869
2011                 423                 6010310  289792869
2012                 423                 6010310  289792869
2013                 423                 6010310  289792869
2014                 423                 6010310  289792869
2015                 423                 6010310  289792869
2016                 423                 6010310  289792869
2017                 249                 9504360  344985480
2018                 249                 1041010   25030372
2019                 389                28512200  571161498
2020                 249                 9504360  344985480
2021                 249                 9504360  344985480
2022                 249                 9504360  344985480
2023                 249                 9504360  344985480
2024                 249                 9504360  344985480
2025                 249                 9504360  344985480
2026                 249                 9504360  344985480
2027                 249                 9504360  344985480
2028                 249                 9504360  344985480
2029                 117                 1526650   60458794
2030                 117                 1526650   60458794
2031                 223                  666310   11834199
2032                 201                 2557720  112963680
2033                 244                  225070    1959785
2034                 231                  410120    2226040
2035                 326                20309490  340270846
2036                 442                34690690 2255973426
2037                 252                 5386650  203547205
2038                 640                 2832500  126197568
2039                 387                 2808920   93588046
2040                  NA                 9543350  342128904
2041                 221                 5061900  116507650
2042                 735                15908200 1484983422
2043                 735                15908200 1484983422
2044                 532                17731000 1664226499
2045                 532                17731000 1664226499
2046                 650                38846110 6649470730
2047                 332                 9903470  735481492
2048                 157                19326570  671260842
2049                 157                19326570  671260842
2050                  NA                30305010 4667842452
2051                 214                 1121150   23473340
2052                 458                12877300  540714216
2053                 435                 4303230  126486306
2054                 735                15908200 1484983422
2055                 126                  274750    1526400
2056                 155                 1892340   73298106
2057                 186                  465570    9493088
2058                 387                 2808920   93588046
2059                 403                12843550  550194288
2060                 640                 2832500  126197568
2061                 403                12843550  550194288
2062                 389                28512200  571161498
2063                 452                 5148900  117585201
2064                 278                  984810   32017050
2065                 642                 1864750  109679525
2066                 442                34690690 2255973426
2067                 195                24375750 1567730944
2068                 403                12843550  550194288
2069                 403                12843550  550194288
2070                 403                12843550  550194288
2071                 320                17716130  882141496
2072                  44                  632460   18177519
2073                 163                 2215040   53827666
2074                 211                 1230310   62081164
2075                 195                 3844560  153902166
2076                 195                 3844560  153902166
2077                 381                19485700  416315328
2078                 381                19485700  416315328
2079                 572                 3598220  170906517
2080                 342                 3256520  188075624
2081                 342                 3256520  188075624
2082                 342                 3256520  188075624
2083                 640                 2832500  126197568
2084                 252                 5386650  203547205
2085                 735                15908200 1484983422
2086                 735                15908200 1484983422
2087                 735                15908200 1484983422
2088                 735                15908200 1484983422
2089                 162                  848130   18332865
2090                 650                38846110 6649470730
2091                 650                38846110 6649470730
2092                 650                38846110 6649470730
2093                 650                38846110 6649470730
2094                 650                38846110 6649470730
2095                 650                38846110 6649470730
2096                 214                 1121150   23473340
2097                 218                  708880   10077197
2098                 735                15908200 1484983422
2099                 735                15908200 1484983422
2100                 212                  486940    3766438
2101                 572                 3598220  170906517
2102                 298                  272670    4056210
2103                 572                 3598220  170906517
2104                 201                 2557720  112963680
2105                 249                    1520     267218
2106                 442                34690690 2255973426
2107                 650                38846110 6649470730
2108                 148                  729320    8690640
2109                 650                38846110 6649470730
2110                 157                19326570  671260842
2111                 356                  774530   13265385
2112                 650                38846110 6649470730
2113                 650                38846110 6649470730
2114                 650                38846110 6649470730
2115                 650                38846110 6649470730
2116                 650                38846110 6649470730
2117                 650                38846110 6649470730
2118                 650                38846110 6649470730
2119                 650                38846110 6649470730
2120                 650                38846110 6649470730
2121                 650                38846110 6649470730
2122                 650                38846110 6649470730
2123                 650                38846110 6649470730
2124                 101                  929150   14525236
2125                 642                 1864750  109679525
2126                 270                 1914290   66701472
2127                 642                 1864750  109679525
2128                 332                 9903470  735481492
2129                 204                 3479050  175047074
2130                 204                 3479050  175047074
2131                 219                  447870     962990
2132                 204                 3479050  175047074
2133                 414                 1474740   23174775
2134                 414                 1474740   23174775
2135                 398                 1621270   84650808
2136                 221                 5061900  116507650
2137                 221                 5061900  116507650
2138                 468                 1422430   90231246
2139                 403                12843550  550194288
2140                 398                 1621270   84650808
2141                 342                 3256520  188075624
2142                 381                19485700  416315328
2143                 163                 2215040   53827666
2144                 195                 3844560  153902166
2145                 331                  248740    1551536
2146                 159                  173950    6305202
2147                 735                15908200 1484983422
2148                  73                17698440  496210924
2149                 229                   16330     298226
2150                 425                33355530 2908354320
2151                 425                33355530 2908354320
2152                  NA                20921910  271911120
2153                 338                 3828130  244231890
2154                 157                19326570  671260842
2155                 458                12877300  540714216
2156                 458                12877300  540714216
2157                 155                   15220     343902
2158                 160                 1166370   51398553
2159                 212                  486940    3766438
2160                 389                28512200  571161498
2161                 735                15908200 1484983422
2162                  NA                 9543350  342128904
2163                 173                 1529910   30274239
2164                  73                 5232400   67242474
2165                 629                 1738780   56594235
2166                 218                  708880   10077197
2167                 249                 1041010   25030372
2168                 492                 4302940  208121250
2169                 389                28512200  571161498
2170                 323                 1261610   51092196
2171                 233                  518780    6421740
2172                 532                17731000 1664226499
2173                  NA                30305010 4667842452
2174                 195                24375750 1567730944
2175                 214                 1121150   23473340
2176                 389                28512200  571161498
2177                 214                 1121150   23473340
2178                 915                  266710   12129278
2179                 915                  266710   12129278
2180                 326                20309490  340270846
2181                  NA                30305010 4667842452
2182                 308                  287340     790080
2183                 383                 1220480   64633344
2184                 650                38846110 6649470730
2185                 201                 2557720  112963680
2186                 735                15908200 1484983422
2187                 735                15908200 1484983422
2188                 442                34690690 2255973426
2189                 442                34690690 2255973426
2190                 442                34690690 2255973426
2191                  30                 3462700   33333300
2192                 650                38846110 6649470730
2193                 880                36046920 1005634080
2194                 425                33355530 2908354320
2195                 332                 9903470  735481492
2196                 332                 9903470  735481492
2197                 157                19326570  671260842
2198                 157                19326570  671260842
2199                  NA                 9543350  342128904
2200                 219                  447870     962990
2201                 406                 6214440  225478080
2202                 403                12843550  550194288
2203                 403                12843550  550194288
2204                 650                38846110 6649470730
2205                 243                 3835670  585476350
2206                 320                17716130  882141496
2207                 880                36046920 1005634080
2208                 880                36046920 1005634080
2209                 880                36046920 1005634080
2210                 880                36046920 1005634080
2211                 880                36046920 1005634080
2212                 880                36046920 1005634080
2213                 403                12843550  550194288
2214                 735                15908200 1484983422
2215                 188                11581260  542574896
2216                 188                11581260  542574896
2217                 188                11581260  542574896
2218                 650                38846110 6649470730
2219                 650                38846110 6649470730
2220                 650                38846110 6649470730
2221                 650                38846110 6649470730
2222                  NA                30305010 4667842452
2223                  NA                30305010 4667842452
2224                  NA                30305010 4667842452
2225                 458                12877300  540714216
2226                 458                12877300  540714216
2227                 354                 4742370  166453056
2228                 145                10784180  144287625
2229                 145                10784180  144287625
2230                 145                10784180  144287625
2231                 249                 9504360  344985480
2232                 249                 9504360  344985480
2233                  NA                30305010 4667842452
2234                 188                11581260  542574896
2235                 425                33355530 2908354320
2236                 389                28512200  571161498
2237                 650                38846110 6649470730
2238                 532                17731000 1664226499
2239                 532                17731000 1664226499
2240                 532                17731000 1664226499
2241                 532                17731000 1664226499
2242                 221                 5061900  116507650
2243                 320                17716130  882141496
2244                 532                17731000 1664226499
2245                 650                38846110 6649470730
2246                 650                38846110 6649470730
2247                 425                33355530 2908354320
2248                 629                 1738780   56594235
2249                 332                 9903470  735481492
2250                 492                 4302940  208121250
2251                 442                34690690 2255973426
2252                 323                 1261610   51092196
2253                 332                 9903470  735481492
2254                 173                 1529910   30274239
2255                 219                  447870     962990
2256                  NA                 1696410         NA
2257                  NA                 1696410         NA
2258                  73                17698440  496210924
2259                  73                17698440  496210924
2260                 145                10784180  144287625
2261                 389                28512200  571161498
2262                 735                15908200 1484983422
2263                 249                  200770    6042162
2264                 880                36046920 1005634080
2265                 880                36046920 1005634080
2266                 880                36046920 1005634080
2267                 880                36046920 1005634080
2268                 880                36046920 1005634080
2269                 880                36046920 1005634080
2270                 880                36046920 1005634080
2271                 880                36046920 1005634080
2272                 126                  274750    1526400
2273                 403                12843550  550194288
2274                 403                12843550  550194288
2275                 331                  248740    1551536
2276                 163                 2215040   53827666
2277                 640                 2832500  126197568
2278                 186                  465570    9493088
2279                 188                11581260  542574896
2280                 188                11581260  542574896
2281                 188                11581260  542574896
2282                 188                11581260  542574896
2283                 188                11581260  542574896
2284                 188                11581260  542574896
2285                 188                11581260  542574896
2286                 650                38846110 6649470730
2287                 157                19326570  671260842
2288                 572                 3598220  170906517
2289                 650                38846110 6649470730
2290                 650                38846110 6649470730
2291                 650                38846110 6649470730
2292                 650                38846110 6649470730
2293                 650                38846110 6649470730
2294                 650                38846110 6649470730
2295                 650                38846110 6649470730
2296                 650                38846110 6649470730
2297                 650                38846110 6649470730
2298                 650                38846110 6649470730
2299                 650                38846110 6649470730
2300                 650                38846110 6649470730
2301                 186                  465570    9493088
2302                 458                12877300  540714216
2303                 458                12877300  540714216
2304                 458                12877300  540714216
2305                 221                 5061900  116507650
2306                 417                  240390    2202956
2307                 342                 1021670   47821796
2308                 356                  774530   13265385
2309                 432                 8760710  238823208
2310                 432                 8760710  238823208
2311                 162                  848130   18332865
2312                 432                 8760710  238823208
2313                 926                 2608440   72942180
2314                 403                12843550  550194288
2315                 403                12843550  550194288
2316                 572                 3598220  170906517
2317                 403                12843550  550194288
2318                 320                17716130  882141496
2319                 381                19485700  416315328
2320                 381                19485700  416315328
2321                 381                19485700  416315328
2322                 381                19485700  416315328
2323                 381                19485700  416315328
2324                 110                  209470    3063263
2325                 381                19485700  416315328
2326                 381                19485700  416315328
2327                 381                19485700  416315328
2328                 640                 2832500  126197568
2329                 735                15908200 1484983422
2330                 442                34690690 2255973426
2331                 442                34690690 2255973426
2332                 442                34690690 2255973426
2333                 442                34690690 2255973426
2334                 442                34690690 2255973426
2335                 442                34690690 2255973426
2336                 442                34690690 2255973426
2337                 442                34690690 2255973426
2338                 442                34690690 2255973426
2339                 442                34690690 2255973426
2340                 442                34690690 2255973426
2341                 442                34690690 2255973426
2342                 442                34690690 2255973426
2343                 442                34690690 2255973426
2344                 442                34690690 2255973426
2345                 442                34690690 2255973426
2346                 332                  370210    3339392
2347                 195                   78590     422156
2348                  73                17698440  496210924
2349                 532                17731000 1664226499
2350                 195                24375750 1567730944
2351                 650                38846110 6649470730
2352                  NA                20921910  271911120
2353                 244                  225070    1959785
2354                 212                  486940    3766438
2355                 629                 1738780   56594235
2356                 173                  559730    3611920
2357                 650                38846110 6649470730
2358                 326                20309490  340270846
2359                 186                  465570    9493088
2360                 223                  953610   23222472
2361                 316                  868800   35965920
2362                 200                  293770    2619501
2363                 195                24375750 1567730944
2364                 195                24375750 1567730944
2365                 195                24375750 1567730944
2366                 195                24375750 1567730944
2367                 195                24375750 1567730944
2368                 195                24375750 1567730944
2369                 280                  359960    2702448
2370                 195                24375750 1567730944
2371                 163                 2215040   53827666
2372                 425                33355530 2908354320
2373                 425                33355530 2908354320
2374                 425                33355530 2908354320
2375                 425                33355530 2908354320
2376                 425                33355530 2908354320
2377                 331                  248740    1551536
2378                 332                 9903470  735481492
2379                 332                 9903470  735481492
2380                 157                19326570  671260842
2381                 157                19326570  671260842
2382                 157                19326570  671260842
2383                 157                19326570  671260842
2384                 406                 6214440  225478080
2385                 671                  295120    5218530
2386                 221                 5061900  116507650
2387                  73                 5232400   67242474
2388                 280                  153760     925158
2389                 204                 3479050  175047074
2390                 218                  708880   10077197
2391                 417                  240390    2202956
2392                 383                 1220480   64633344
2393                 435                 4303230  126486306
2394                 342                 3256520  188075624
2395                 398                 1621270   84650808
2396                 301                  317250    1509810
2397                 131                   85190     408748
2398                 208                 1725420   14376060
2399                 208                 1725420   14376060
2400                  NA                 1696410         NA
2401                 735                15908200 1484983422
2402                  51                   99730      97370
2403                  30                 3462700   33333300
2404                  51                   99730      97370
2405                  NA                30305010 4667842452
2406                  NA                30305010 4667842452
2407                 270                 1914290   66701472
2408                  NA                 1696410         NA
2409                 406                 6214440  225478080
2410                 124                 2131480    4119125
2411                  73                17698440  496210924
2412                  73                17698440  496210924
2413                  73                17698440  496210924
2414                  73                17698440  496210924
2415                 320                17716130  882141496
2416                 376                 2092800   69613568
2417                  73                 5232400   67242474
2418                 160                 1166370   51398553
2419                 926                 2608440   72942180
2420                 926                 2608440   72942180
2421                 403                12843550  550194288
2422                 403                12843550  550194288
2423                 403                12843550  550194288
2424                 403                12843550  550194288
2425                  NA                30305010 4667842452
2426                 735                15908200 1484983422
2427                 195                24375750 1567730944
2428                 650                38846110 6649470730
2429                  73                17698440  496210924
2430                 650                38846110 6649470730
2431                 650                38846110 6649470730
2432                 650                38846110 6649470730
2433                  NA                30305010 4667842452
2434                  NA                30305010 4667842452
2435                 243                 3835670  585476350
2436                 468                 1422430   90231246
2437                 468                 1422430   90231246
2438                  NA                 9543350  342128904
2439                 435                 4303230  126486306
2440                 435                 4303230  126486306
2441                 252                 5386650  203547205
2442                 124                 1457760   50667660
2443                 249                 1041010   25030372
2444                 880                36046920 1005634080
2445                 880                36046920 1005634080
2446                 880                36046920 1005634080
2447                 880                36046920 1005634080
2448                 880                36046920 1005634080
2449                 880                36046920 1005634080
2450                 880                36046920 1005634080
2451                 880                36046920 1005634080
2452                 880                36046920 1005634080
2453                 880                36046920 1005634080
2454                 880                36046920 1005634080
2455                 880                36046920 1005634080
2456                 880                36046920 1005634080
2457                 880                36046920 1005634080
2458                 880                36046920 1005634080
2459                 880                36046920 1005634080
2460                 880                36046920 1005634080
2461                 880                36046920 1005634080
2462                 880                36046920 1005634080
2463                 880                36046920 1005634080
2464                 880                36046920 1005634080
2465                 880                36046920 1005634080
2466                 432                 8760710  238823208
2467                 432                 8760710  238823208
2468                 496                 8668170  193114681
2469                 403                12843550  550194288
2470                 188                  387460     632862
2471                 381                19485700  416315328
2472                 640                 2832500  126197568
2473                 640                 2832500  126197568
2474                 640                 2832500  126197568
2475                 194                  238170    2152262
2476                 442                34690690 2255973426
2477                 188                11581260  542574896
2478                 188                11581260  542574896
2479                 188                11581260  542574896
2480                 188                11581260  542574896
2481                 188                11581260  542574896
2482                 188                11581260  542574896
2483                 188                11581260  542574896
2484                 188                11581260  542574896
2485                 188                11581260  542574896
2486                 177                 1610000   60701270
2487                  75                  189920    2442892
2488                 735                15908200 1484983422
2489                 572                 3598220  170906517
2490                 650                38846110 6649470730
2491                 650                38846110 6649470730
2492                  NA                30305010 4667842452
2493                  NA                30305010 4667842452
2494                 326                20309490  340270846
2495                 280                 1820580   81484044
2496                 195                24375750 1567730944
2497                 195                24375750 1567730944
2498                 458                12877300  540714216
2499                 458                12877300  540714216
2500                 458                12877300  540714216
2501                 458                12877300  540714216
2502                 458                12877300  540714216
2503                 458                12877300  540714216
2504                 458                12877300  540714216
2505                 458                12877300  540714216
2506                 458                12877300  540714216
2507                 458                12877300  540714216
2508                 458                12877300  540714216
2509                 458                12877300  540714216
2510                 650                38846110 6649470730
2511                 218                  708880   10077197
2512                  73                 5232400   67242474
2513                 338                 3828130  244231890
2514                  73                17698440  496210924
2515                  73                17698440  496210924
2516                 269                  272200    1543916
2517                  73                17698440  496210924
2518                 320                17716130  882141496
2519                 435                 4303230  126486306
2520                 145                10784180  144287625
2521                 145                10784180  144287625
2522                 145                10784180  144287625
2523                 145                10784180  144287625
2524                 145                10784180  144287625
2525                 145                10784180  144287625
2526                 145                10784180  144287625
2527                 145                10784180  144287625
2528                 145                10784180  144287625
2529                 145                10784180  144287625
2530                 145                10784180  144287625
2531                 145                10784180  144287625
2532                 145                10784180  144287625
2533                 280                  153760     925158
2534                 173                  559730    3611920
2535                 650                38846110 6649470730
2536                 650                38846110 6649470730
2537                 650                38846110 6649470730
2538                 650                38846110 6649470730
2539                 650                38846110 6649470730
2540                 650                38846110 6649470730
2541                 735                15908200 1484983422
2542                 735                15908200 1484983422
2543                  NA                30305010 4667842452
2544                 280                  359960    2702448
2545                 136                  449340   19827138
2546                 442                34690690 2255973426
2547                 442                34690690 2255973426
2548                 442                34690690 2255973426
2549                 442                34690690 2255973426
2550                 442                34690690 2255973426
2551                 442                34690690 2255973426
2552                 278                  984810   32017050
2553                 332                 9903470  735481492
2554                 337                   53030     245475
2555                 112                  194160     780655
2556                 249                  613820   22637790
2557                 421                  551030   23655880
2558                 251                   58310     432434
2559                 195                24375750 1567730944
2560                 270                 1914290   66701472
2561                 425                33355530 2908354320
2562                 425                33355530 2908354320
2563                 425                33355530 2908354320
2564                 142                   43880     416812
2565                 280                  359960    2702448
2566                 145                10784180  144287625
2567                 177                 1610000   60701270
2568                 381                19485700  416315328
2569                 381                19485700  416315328
2570                 381                19485700  416315328
2571                 381                19485700  416315328
2572                 381                19485700  416315328
2573                 381                19485700  416315328
2574                 735                15908200 1484983422
2575                 735                15908200 1484983422
2576                 218                  708880   10077197
2577                 162                  848130   18332865
2578                 332                 9903470  735481492
2579                 214                 1121150   23473340
2580                 233                  518780    6421740
2581                 408                  163140     533868
2582                 166                   69620     159012
2583                 199                  287100   10554675
2584                 389                28512200  571161498
2585                 389                28512200  571161498
2586                 389                28512200  571161498
2587                 389                28512200  571161498
2588                 389                28512200  571161498
2589                 389                28512200  571161498
2590                 389                28512200  571161498
2591                 389                28512200  571161498
2592                 188                11581260  542574896
2593                 188                11581260  542574896
2594                 188                11581260  542574896
2595                 423                 6010310  289792869
2596                 650                38846110 6649470730
2597                 532                17731000 1664226499
2598                 532                17731000 1664226499
2599                 532                17731000 1664226499
2600                 532                17731000 1664226499
2601                  NA                30305010 4667842452
2602                  88                  457820   14825110
2603                 316                  573110    8905671
2604                 492                 4302940  208121250
2605                 458                12877300  540714216
2606                 458                12877300  540714216
2607                 458                12877300  540714216
2608                 458                12877300  540714216
2609                 458                12877300  540714216
2610                 458                12877300  540714216
2611                 458                12877300  540714216
2612                 270                 1914290   66701472
2613                 425                33355530 2908354320
2614                 425                33355530 2908354320
2615                 425                33355530 2908354320
2616                 425                33355530 2908354320
2617                 425                33355530 2908354320
2618                 642                 1864750  109679525
2619                 157                19326570  671260842
2620                 629                 1738780   56594235
2621                 414                 1474740   23174775
2622                  73                17698440  496210924
2623                 320                17716130  882141496
2624                 320                17716130  882141496
2625                 145                10784180  144287625
2626                 145                10784180  144287625
2627                 145                10784180  144287625
2628                 145                10784180  144287625
2629                 145                10784180  144287625
2630                 145                10784180  144287625
2631                 145                10784180  144287625
2632                 117                 1526650   60458794
2633                 406                 6214440  225478080
2634                 735                15908200 1484983422
2635                 389                28512200  571161498
2636                 389                28512200  571161498
2637                 389                28512200  571161498
2638                 278                  984810   32017050
2639                 650                38846110 6649470730
2640                 650                38846110 6649470730
2641                 208                 1725420   14376060
2642                 252                 5386650  203547205
2643                 735                15908200 1484983422
2644                 735                15908200 1484983422
2645                 735                15908200 1484983422
2646                 735                15908200 1484983422
2647                 532                17731000 1664226499
2648                 532                17731000 1664226499
2649                 532                17731000 1664226499
2650                 532                17731000 1664226499
2651                 532                17731000 1664226499
2652                 532                17731000 1664226499
2653                 532                17731000 1664226499
2654                 532                17731000 1664226499
2655                 492                 4302940  208121250
2656                 200                  293770    2619501
2657                 270                 1914290   66701472
2658                 204                 3479050  175047074
2659                  NA                 9543350  342128904
2660                 308                  287340     790080
2661                 320                17716130  882141496
2662                 320                17716130  882141496
2663                 320                17716130  882141496
2664                 320                17716130  882141496
2665                 252                 5386650  203547205
2666                 308                  287340     790080
2667                  NA                30305010 4667842452
2668                 432                 8760710  238823208
2669                  NA                30305010 4667842452
2670                 218                 9819040  292520515
2671                 342                 3256520  188075624
2672                 389                28512200  571161498
2673                 406                 6214440  225478080
2674                  NA                20921910  271911120
2675                  NA                20921910  271911120
2676                  NA                 9543350  342128904
2677                 157                19326570  671260842
2678                  73                 5232400   67242474
2679                  NA                 9543350  342128904
2680                 201                 2557720  112963680
2681                 177                 1610000   60701270
2682                 421                  397810    2779440
2683                 532                17731000 1664226499
2684                 532                17731000 1664226499
2685                 532                17731000 1664226499
2686                 492                 4302940  208121250
2687                 403                12843550  550194288
2688                 403                12843550  550194288
2689                 403                12843550  550194288
2690                 163                 2215040   53827666
2691                 342                 3256520  188075624
2692                 735                15908200 1484983422
2693                 188                11581260  542574896
2694                 650                38846110 6649470730
2695                 650                38846110 6649470730
2696                 650                38846110 6649470730
2697                 650                38846110 6649470730
2698                 101                  929150   14525236
2699                 650                38846110 6649470730
2700                 650                38846110 6649470730
2701                 650                38846110 6649470730
2702                 296                 1729780   95737841
2703                 425                33355530 2908354320
2704                 425                33355530 2908354320
2705                 425                33355530 2908354320
2706                 425                33355530 2908354320
2707                 332                 9903470  735481492
2708                 332                 9903470  735481492
2709                 244                  225070    1959785
2710                 221                 5061900  116507650
2711                 287                  603120    8809536
2712                 276                  133870    1569805
2713                 735                15908200 1484983422
2714                 425                33355530 2908354320
2715                 425                33355530 2908354320
2716                 214                 1121150   23473340
2717                 458                12877300  540714216
2718                 243                 3835670  585476350
2719                  73                 5232400   67242474
2720                 381                19485700  416315328
2721                 381                19485700  416315328
2722                  44                  632460   18177519
2723                 332                 9903470  735481492
2724                 332                 9903470  735481492
2725                 383                 1220480   64633344
2726                 389                28512200  571161498
2727                 735                15908200 1484983422
2728                 532                17731000 1664226499
2729                 532                17731000 1664226499
2730                 249                  613820   22637790
2731                 316                  868800   35965920
2732                 880                36046920 1005634080
2733                 126                  274750    1526400
2734                 496                 8668170  193114681
2735                 173                  559730    3611920
2736                 218                 9819040  292520515
2737                 323                 1261610   51092196
2738                 101                  929150   14525236
2739                 650                38846110 6649470730
2740                 650                38846110 6649470730
2741                 650                38846110 6649470730
2742                 650                38846110 6649470730
2743                 650                38846110 6649470730
2744                 287                  603120    8809536
2745                 221                 5061900  116507650
2746                 629                 1738780   56594235
2747                 342                 1021670   47821796
2748                 342                 1021670   47821796
2749                 414                 1474740   23174775
2750                 414                 1474740   23174775
2751                 249                 9504360  344985480
2752                 233                  518780    6421740
2753                 432                 8760710  238823208
2754                 117                 1526650   60458794
2755                 458                  373780    3951262
2756                 190                   33690     171196
2757                 230                 1944450   48610926
2758                 124                 2131480    4119125
2759                 316                  573110    8905671
2760                  NA                30305010 4667842452
2761                  30                 3462700   33333300
2762                 329                  200540    1919460
2763                 195                 3844560  153902166
2764                 195                 3844560  153902166
2765                 195                 3844560  153902166
2766                 208                 1725420   14376060
2767                 381                19485700  416315328
2768                 381                19485700  416315328
2769                 381                19485700  416315328
2770                 381                19485700  416315328
2771                 381                19485700  416315328
2772                 381                19485700  416315328
2773                 381                19485700  416315328
2774                 381                19485700  416315328
2775                 381                19485700  416315328
2776                 381                19485700  416315328
2777                 381                19485700  416315328
2778                 381                19485700  416315328
2779                 381                19485700  416315328
2780                 381                19485700  416315328
2781                 640                 2832500  126197568
2782                 735                15908200 1484983422
2783                 735                15908200 1484983422
2784                 442                34690690 2255973426
2785                 442                34690690 2255973426
2786                 442                34690690 2255973426
2787                 442                34690690 2255973426
2788                 442                34690690 2255973426
2789                 442                34690690 2255973426
2790                 442                34690690 2255973426
2791                 442                34690690 2255973426
2792                 442                34690690 2255973426
2793                 442                34690690 2255973426
2794                 442                34690690 2255973426
2795                 442                34690690 2255973426
2796                 442                34690690 2255973426
2797                 442                34690690 2255973426
2798                 442                34690690 2255973426
2799                 442                34690690 2255973426
2800                 442                34690690 2255973426
2801                 442                34690690 2255973426
2802                 270                 1914290   66701472
2803                 455                  426050    5159540
2804                 249                 1041010   25030372
2805                 296                 1729780   95737841
2806                 195                   78590     422156
2807                 187                 1909710   36316906
2808                  NA                 1696410         NA
2809                 342                 3256520  188075624
2810                 572                 3598220  170906517
2811                 387                 2808920   93588046
2812                 119                  185150    2269148
2813                 299                  221590    2084195
2814                 223                  666310   11834199
2815                 211                 1230310   62081164
2816                 126                  274750    1526400
2817                 472                  249510    6128980
2818                  NA                30305010 4667842452
2819                 124                 1457760   50667660
2820                 176                   26960      76726
2821                 280                 1820580   81484044
2822                 468                 1422430   90231246
2823                 336                  473580    9151043
2824                 173                 1529910   30274239
2825                 228                  239600    1717248
2826                 492                 4302940  208121250
2827                 156                  197740     623600
2828                 280                 1820580   81484044
2829                 195                24375750 1567730944
2830                 195                24375750 1567730944
2831                 195                24375750 1567730944
2832                 187                 1909710   36316906
2833                 195                24375750 1567730944
2834                 278                  984810   32017050
2835                 195                24375750 1567730944
2836                 195                24375750 1567730944
2837                 162                  848130   18332865
2838                 629                 1738780   56594235
2839                 143                   50130     278103
2840                 425                33355530 2908354320
2841                 425                33355530 2908354320
2842                 243                 3835670  585476350
2843                 195                24375750 1567730944
2844                 177                 1610000   60701270
2845                 236                   72060     245356
2846                 435                 4303230  126486306
2847                 157                19326570  671260842
2848                 157                19326570  671260842
2849                 204                 3479050  175047074
2850                 218                 9819040  292520515
2851                 112                  194160     780655
2852                 342                 1021670   47821796
2853                 642                 1864750  109679525
2854                 214                 1121150   23473340
2855                  NA                30305010 4667842452
2856                 136                  449340   19827138
2857                  73                17698440  496210924
2858                  44                  632460   18177519
2859                 262                  448050    6103292
2860                 320                17716130  882141496
2861                 532                17731000 1664226499
2862                 406                 6214440  225478080
2863                 435                 4303230  126486306
2864                 336                  473580    9151043
2865                 262                  448050    6103292
2866                 455                  426050    5159540
2867                 423                 6010310  289792869
2868                 371                   73600     978477
2869                 249                 9504360  344985480
2870                 117                 1526650   60458794
2871                 376                 2092800   69613568
2872                 442                34690690 2255973426
2873                 296                 1729780   95737841
2874                 163                 2215040   53827666
2875                 218                 9819040  292520515
2876                 572                 3598220  170906517
2877                  51                   99730      97370
2878                  51                   99730      97370
2879                 326                20309490  340270846
2880                 201                 2557720  112963680
2881                 406                 6214440  225478080
2882                  NA                 9543350  342128904
2883                 338                 3828130  244231890
2884                  73                17698440  496210924
2885                  73                17698440  496210924
2886                  73                17698440  496210924
2887                  73                17698440  496210924
2888                  73                17698440  496210924
2889                  73                17698440  496210924
2890                  73                17698440  496210924
2891                  73                17698440  496210924
2892                  73                17698440  496210924
2893                  73                17698440  496210924
2894                  73                17698440  496210924
2895                  73                17698440  496210924
2896                 354                 4742370  166453056
2897                 926                 2608440   72942180
2898                 926                 2608440   72942180
2899                 926                 2608440   72942180
2900                 403                12843550  550194288
2901                 403                12843550  550194288
2902                 403                12843550  550194288
2903                  90                  324420    1544595
2904                 155                 1892340   73298106
2905                 163                 2215040   53827666
2906                 195                 3844560  153902166
2907                  NA                 9543350  342128904
2908                 735                15908200 1484983422
2909                 650                38846110 6649470730
2910                 650                38846110 6649470730
2911                 195                24375750 1567730944
2912                 195                24375750 1567730944
2913                 195                24375750 1567730944
2914                 195                24375750 1567730944
2915                 195                24375750 1567730944
2916                 650                38846110 6649470730
2917                 650                38846110 6649470730
2918                 532                17731000 1664226499
2919                 387                 2808920   93588046
2920                 387                 2808920   93588046
2921                 387                 2808920   93588046
2922                 387                 2808920   93588046
2923                 650                38846110 6649470730
2924                 650                38846110 6649470730
2925                 650                38846110 6649470730
2926                 650                38846110 6649470730
2927                 650                38846110 6649470730
2928                 326                20309490  340270846
2929                 195                24375750 1567730944
2930                 195                24375750 1567730944
2931                 195                24375750 1567730944
2932                 195                24375750 1567730944
2933                 195                24375750 1567730944
2934                  NA                   95350     445662
2935                 629                 1738780   56594235
2936                 629                 1738780   56594235
2937                 629                 1738780   56594235
2938                 187                 1909710   36316906
2939                  73                 5232400   67242474
2940                  NA                 9543350  342128904
2941                 338                 3828130  244231890
2942                 354                 4742370  166453056
2943                 435                 4303230  126486306
2944                 173                  559730    3611920
2945                 124                 1457760   50667660
2946                 296                 1729780   95737841
2947                 880                36046920 1005634080
2948                 880                36046920 1005634080
2949                 880                36046920 1005634080
2950                 880                36046920 1005634080
2951                 880                36046920 1005634080
2952                 880                36046920 1005634080
2953                 125                  303450    1481176
2954                 118                  224910    2938005
2955                  30                 3462700   33333300
2956                 233                  518780    6421740
2957                  NA                 1696410         NA
2958                 735                15908200 1484983422
2959                 188                11581260  542574896
2960                 213                  195830    1914915
2961                 195                24375750 1567730944
2962                 195                 3844560  153902166
2963                 455                  426050    5159540
2964                 155                   38130      83584
2965                 371                   73600     978477
2966                 118                  224910    2938005
2967                 212                  486940    3766438
2968                 349                   33350     147716
2969                 425                33355530 2908354320
2970                 406                 6214440  225478080
2971                  73                 5232400   67242474
2972                 735                15908200 1484983422
2973                 423                 6010310  289792869
2974                 112                  194160     780655
2975                 145                10784180  144287625
2976                 342                 1021670   47821796
2977                 572                 3598220  170906517
2978                 389                28512200  571161498
2979                 389                28512200  571161498
2980                 389                28512200  571161498
2981                 389                28512200  571161498
2982                 650                38846110 6649470730
2983                  NA                20921910  271911120
2984                 326                20309490  340270846
2985                 243                 3835670  585476350
2986                  73                 5232400   67242474
2987                  73                 5232400   67242474
2988                 423                 6010310  289792869
2989                 249                 9504360  344985480
2990                  92                  352680    3837320
2991                  92                  352680    3837320
2992                 356                  774530   13265385
2993                 287                  603120    8809536
2994                 323                 1261610   51092196
2995                 218                  708880   10077197
2996                 735                15908200 1484983422
2997                 425                33355530 2908354320
2998                  90                  324420    1544595
2999                 423                 6010310  289792869
3000                 228                  239600    1717248
3001                 383                 1220480   64633344
3002                 122                   42530     127314
3003                 458                  373780    3951262
3004                 125                  425810    3032623
3005                 735                15908200 1484983422
3006                 442                34690690 2255973426
3007                 442                34690690 2255973426
3008                 442                34690690 2255973426
3009                 442                34690690 2255973426
3010                 442                34690690 2255973426
3011                 442                34690690 2255973426
3012                 442                34690690 2255973426
3013                 323                 1261610   51092196
3014                 195                24375750 1567730944
3015                 195                24375750 1567730944
3016                 195                24375750 1567730944
3017                 425                33355530 2908354320
3018                 425                33355530 2908354320
3019                 425                33355530 2908354320
3020                 425                33355530 2908354320
3021                 381                19485700  416315328
3022                 414                 1474740   23174775
3023                 356                  774530   13265385
3024                  52                  399050    3017729
3025                 159                  173950    6305202
3026                 195                 3844560  153902166
3027                  NA                20921910  271911120
3028                  NA                30305010 4667842452
3029                 201                 2557720  112963680
3030                 398                 1621270   84650808
3031                 472                  249510    6128980
3032                 195                 3844560  153902166
3033                 381                19485700  416315328
3034                 381                19485700  416315328
3035                 381                19485700  416315328
3036                 381                19485700  416315328
3037                 640                 2832500  126197568
3038                 735                15908200 1484983422
3039                 735                15908200 1484983422
3040                 735                15908200 1484983422
3041                 735                15908200 1484983422
3042                 735                15908200 1484983422
3043                 735                15908200 1484983422
3044                 278                  984810   32017050
3045                 383                 1220480   64633344
3046                 148                  729320    8690640
3047                 165                  240100    1364268
3048                 323                 1261610   51092196
3049                  70                   62090     811485
3050                 572                 3598220  170906517
3051                 332                 9903470  735481492
3052                 109                  236200    4859880
3053                 432                 8760710  238823208
3054                 104                  137510    3627532
3055                 106                    9980     475660
3056                 204                  301060    4884360
3057                 389                28512200  571161498
3058                 389                28512200  571161498
3059                 389                28512200  571161498
3060                 442                34690690 2255973426
3061                 442                34690690 2255973426
3062                 188                11581260  542574896
3063                 118                  224910    2938005
3064                 170                  256300     321080
3065                 180                   17910     146206
3066                 230                  226940     950868
3067                  NA                30305010 4667842452
3068                  NA                30305010 4667842452
3069                  NA                30305010 4667842452
3070                 227                   88430     606884
3071                 179                    5960      98301
3072                 458                12877300  540714216
3073                 425                33355530 2908354320
3074                 223                  953610   23222472
3075                  58                  123380     463443
3076                 414                 1474740   23174775
3077                 417                  240390    2202956
3078                  73                17698440  496210924
3079                 320                17716130  882141496
3080                 320                17716130  882141496
3081                 320                17716130  882141496
3082                 320                17716130  882141496
3083                 145                10784180  144287625
3084                  38                  649750   12230976
3085                 642                 1864750  109679525
3086                 269                   37750      62150
3087                 208                 1725420   14376060
3088                  NA                30305010 4667842452
3089                 110                  209470    3063263
3090                  73                17698440  496210924
3091                  73                17698440  496210924
3092                 432                 8760710  238823208
3093                  30                 3462700   33333300
3094                 202                    6720     152220
3095                 211                 1230310   62081164
3096                 435                 4303230  126486306
3097                 342                 3256520  188075624
3098                 389                28512200  571161498
3099                 389                28512200  571161498
3100                 650                38846110 6649470730
3101                  56                  803620   33273240
3102                 735                15908200 1484983422
3103                 735                15908200 1484983422
3104                 532                17731000 1664226499
3105                 532                17731000 1664226499
3106                 532                17731000 1664226499
3107                 532                17731000 1664226499
3108                 532                17731000 1664226499
3109                 532                17731000 1664226499
3110                 406                 6214440  225478080
3111                 141                   94160     909260
3112                  NA                30305010 4667842452
3113                  NA                30305010 4667842452
3114                  NA                 1696410         NA
3115                 435                 4303230  126486306
3116                 332                 9903470  735481492
3117                 172                   13100     179784
3118                 124                 1457760   50667660
3119                 199                  287100   10554675
3120                 166                    5920      43884
3121                 376                 2092800   69613568
3122                 376                 2092800   69613568
3123                 432                 8760710  238823208
3124                 432                 8760710  238823208
3125                 383                 1220480   64633344
3126                 496                 8668170  193114681
3127                 496                 8668170  193114681
3128                 496                 8668170  193114681
3129                 157                19326570  671260842
3130                 155                 1892340   73298106
3131                 218                 9819040  292520515
3132                 218                 9819040  292520515
3133                 218                 9819040  292520515
3134                 218                 9819040  292520515
3135                 218                 9819040  292520515
3136                 218                 9819040  292520515
3137                 218                 9819040  292520515
3138                 218                 9819040  292520515
3139                 218                 9819040  292520515
3140                 218                 9819040  292520515
3141                 163                 2215040   53827666
3142                 342                 3256520  188075624
3143                 342                 3256520  188075624
3144                 442                34690690 2255973426
3145                 442                34690690 2255973426
3146                 442                34690690 2255973426
3147                 442                34690690 2255973426
3148                 442                34690690 2255973426
3149                 442                34690690 2255973426
3150                 442                34690690 2255973426
3151                 442                34690690 2255973426
3152                 735                15908200 1484983422
3153                 735                15908200 1484983422
3154                 389                28512200  571161498
3155                 389                28512200  571161498
3156                 195                24375750 1567730944
3157                 532                17731000 1664226499
3158                 532                17731000 1664226499
3159                 532                17731000 1664226499
3160                 532                17731000 1664226499
3161                 650                38846110 6649470730
3162                  NA                20921910  271911120
3163                  NA                20921910  271911120
3164                  88                  457820   14825110
3165                  88                  457820   14825110
3166                  NA                30305010 4667842452
3167                 316                  868800   35965920
3168                 316                  573110    8905671
3169                 492                 4302940  208121250
3170                 492                 4302940  208121250
3171                 326                20309490  340270846
3172                 326                20309490  340270846
3173                 326                20309490  340270846
3174                 425                33355530 2908354320
3175                 425                33355530 2908354320
3176                 425                33355530 2908354320
3177                 425                33355530 2908354320
3178                 425                33355530 2908354320
3179                 425                33355530 2908354320
3180                 425                33355530 2908354320
3181                 280                 1820580   81484044
3182                 201                 2557720  112963680
3183                 173                 1529910   30274239
3184                 320                17716130  882141496
3185                 320                17716130  882141496
3186                 270                 1914290   66701472
3187                 270                 1914290   66701472
3188                 157                19326570  671260842
3189                 157                19326570  671260842
3190                 157                19326570  671260842
3191                 204                 3479050  175047074
3192                 243                 3835670  585476350
3193                 468                 1422430   90231246
3194                 468                 1422430   90231246
3195                 221                 5061900  116507650
3196                 187                 1909710   36316906
3197                 187                 1909710   36316906
3198                 342                 1021670   47821796
3199                  73                 5232400   67242474
3200                  NA                 9543350  342128904
3201                  NA                 9543350  342128904
3202                 338                 3828130  244231890
3203                 338                 3828130  244231890
3204                 414                 1474740   23174775
3205                 398                 1621270   84650808
3206                 252                 5386650  203547205
3207                 423                 6010310  289792869
3208                 423                 6010310  289792869
3209                 423                 6010310  289792869
3210                 423                 6010310  289792869
3211                 249                 9504360  344985480
3212                 249                 9504360  344985480
3213                 249                 9504360  344985480
3214                 211                 1230310   62081164
3215                 211                 1230310   62081164
3216                 414                 1474740   23174775
3217                 381                19485700  416315328
3218                 442                34690690 2255973426
3219                 442                34690690 2255973426
3220                 131                   85190     408748
3221                 157                19326570  671260842
3222                 157                19326570  671260842
3223                 629                 1738780   56594235
3224                 926                 2608440   72942180
3225                 403                12843550  550194288
3226                 735                15908200 1484983422
3227                 735                15908200 1484983422
3228                 650                38846110 6649470730
3229                 650                38846110 6649470730
3230                 735                15908200 1484983422
3231                 735                15908200 1484983422
3232                 342                 3256520  188075624
3233                 650                38846110 6649470730
3234                 650                38846110 6649470730
3235                 650                38846110 6649470730
3236                 425                33355530 2908354320
3237                 425                33355530 2908354320
3238                 425                33355530 2908354320
3239                 332                 9903470  735481492
3240                 159                  173950    6305202
3241                 124                 1457760   50667660
3242                 262                  448050    6103292
3243                 406                 6214440  225478080
3244                  56                  803620   33273240
3245                 336                  473580    9151043
3246                 154                   79920     498666
3247                 532                17731000 1664226499
3248                  70                   62090     811485
3249                 735                15908200 1484983422
3250                 201                 2557720  112963680
3251                 425                33355530 2908354320
3252                 173                   98720     951990
3253                 119                  185150    2269148
3254                 640                 2832500  126197568
3255                 458                12877300  540714216
3256                 195                24375750 1567730944
3257                 403                12843550  550194288
3258                 381                19485700  416315328
3259                 323                 1261610   51092196
3260                 332                 9903470  735481492
3261                 332                 9903470  735481492
3262                 342                 1021670   47821796
3263                 101                  929150   14525236
3264                 452                 5148900  117585201
3265                 532                17731000 1664226499
3266                  58                  123380     463443
3267                 926                 2608440   72942180
3268                 381                19485700  416315328
3269                 442                34690690 2255973426
3270                 442                34690690 2255973426
3271                 283                  144270    1923700
3272                 332                 9903470  735481492
3273                  55                 1366930    5256238
3274                  NA                30305010 4667842452
3275                 308                   51600     843964
3276                 230                   52550     122229
3277                 113                   47770     199128
3278                 157                19326570  671260842
3279                 225                   22850     396279
3280                 208                 1725420   14376060
3281                 208                 1725420   14376060
3282                 208                 1725420   14376060
3283                  73                17698440  496210924
3284                  NA                 1696410         NA
3285                  NA                 1696410         NA
3286                 650                38846110 6649470730
3287                 650                38846110 6649470730
3288                 468                 1422430   90231246
3289                 338                 3828130  244231890
3290                 880                36046920 1005634080
3291                 880                36046920 1005634080
3292                 880                36046920 1005634080
3293                 880                36046920 1005634080
3294                 880                36046920 1005634080
3295                 880                36046920 1005634080
3296                 165                  240100    1364268
3297                 208                 1725420   14376060
3298                 244                  225070    1959785
3299                 190                 1027250    6822045
3300                 423                 6010310  289792869
3301                 735                15908200 1484983422
3302                 442                34690690 2255973426
3303                 442                34690690 2255973426
3304                 110                  209470    3063263
3305                 381                19485700  416315328
3306                 381                19485700  416315328
3307                 735                15908200 1484983422
3308                 735                15908200 1484983422
3309                 308                   51600     843964
3310                 332                 9903470  735481492
3311                 389                28512200  571161498
3312                  88                  457820   14825110
3313                 425                33355530 2908354320
3314                 338                 3828130  244231890
3315                 320                17716130  882141496
3316                 650                38846110 6649470730
3317                 650                38846110 6649470730
3318                 532                17731000 1664226499
3319                  30                 3462700   33333300
3320                  NA                 9543350  342128904
3321                 211                   99530     154280
3322                 320                17716130  882141496
3323                 218                 9819040  292520515
3324                 735                15908200 1484983422
3325                  38                  649750   12230976
3326                 126                 1701380   30445220
3327                 425                33355530 2908354320
3328                 270                 1914290   66701472
3329                  NA                30305010 4667842452
3330                  NA                 9543350  342128904
3331                  NA                 9543350  342128904
3332                  NA                30305010 4667842452
3333                 423                 6010310  289792869
3334                 249                 9504360  344985480
3335                 163                 2215040   53827666
3336                 442                34690690 2255973426
3337                 442                34690690 2255973426
3338                 442                34690690 2255973426
3339                 532                17731000 1664226499
3340                 532                17731000 1664226499
3341                 532                17731000 1664226499
3342                 269                  272200    1543916
3343                 381                19485700  416315328
3344                 381                19485700  416315328
3345                 650                38846110 6649470730
3346                 642                 1864750  109679525
3347                 332                 9903470  735481492
3348                 458                12877300  540714216
3349                 332                 9903470  735481492
3350                 332                 9903470  735481492
3351                 389                28512200  571161498
3352                 389                28512200  571161498
3353                 244                  225070    1959785
3354                 332                 9903470  735481492
3355                 425                33355530 2908354320
3356                 880                36046920 1005634080
3357                 735                15908200 1484983422
3358                 442                34690690 2255973426
3359                 442                34690690 2255973426
3360                 193                  129310    1205106
3361                 194                  244720    2253696
3362                 189                   54720     808254
3363                 195                24375750 1567730944
3364                 332                 9903470  735481492
3365                 223                   57350     669669
3366                 880                36046920 1005634080
3367                 880                36046920 1005634080
3368                 218                 9819040  292520515
3369                 188                11581260  542574896
3370                 425                33355530 2908354320
3371                 104                  137510    3627532
3372                 442                34690690 2255973426
3373                 195                24375750 1567730944
3374                 735                15908200 1484983422
3375                 735                15908200 1484983422
3376                 389                28512200  571161498
3377                  NA                 1696410         NA
3378                 425                33355530 2908354320
3379                 312                  305400    1825512
3380                 320                17716130  882141496
3381                 187                 1909710   36316906
3382                 389                28512200  571161498
3383                 650                38846110 6649470730
3384                 650                38846110 6649470730
3385                 532                17731000 1664226499
3386                 572                 3598220  170906517
3387                 320                17716130  882141496
3388                  73                 5232400   67242474
3389                  NA                20921910  271911120
3390                 280                  329610   11040398
3391                 442                34690690 2255973426
3392                 442                34690690 2255973426
3393                 532                17731000 1664226499
3394                 492                 4302940  208121250
3395                 145                10784180  144287625
3396                 398                 1621270   84650808
3397                 532                17731000 1664226499
3398                 381                19485700  416315328
3399                 880                36046920 1005634080
3400                 442                34690690 2255973426
3401                 650                38846110 6649470730
3402                 880                36046920 1005634080
3403                  37                  136540    1370272
3404                 125                  425810    3032623
3405                 188                11581260  542574896
3406                 650                38846110 6649470730
3407                 280                 1820580   81484044
3408                 213                  195830    1914915
3409                  30                 3462700   33333300
3410                 109                  236200    4859880
3411                 432                 8760710  238823208
3412                 101                  929150   14525236
3413                  61                  176170     279915
3414                 381                19485700  416315328
3415                 381                19485700  416315328
3416                 381                19485700  416315328
3417                 381                19485700  416315328
3418                 381                19485700  416315328
3419                 381                19485700  416315328
3420                 381                19485700  416315328
3421                 442                34690690 2255973426
3422                 442                34690690 2255973426
3423                 442                34690690 2255973426
3424                 442                34690690 2255973426
3425                 442                34690690 2255973426
3426                 188                  387460     632862
3427                 332                  370210    3339392
3428                 216                   67510     176656
3429                 435                 4303230  126486306
3430                 195                24375750 1567730944
3431                 408                  163140     533868
3432                 323                 1261610   51092196
3433                 185                  568460   16472881
3434                 110                  176560    3397845
3435                 157                19326570  671260842
3436                 173                  559730    3611920
3437                 338                 3828130  244231890
3438                 121                   24040     148523
3439                  NA                30305010 4667842452
3440                 204                 3479050  175047074
3441                  NA                30305010 4667842452
3442                 442                34690690 2255973426
3443                 157                19326570  671260842
3444                 243                 3835670  585476350
3445                 406                 6214440  225478080
3446                 406                 6214440  225478080
3447                 406                 6214440  225478080
3448                 406                 6214440  225478080
3449                 194                  244720    2253696
3450                  NA                 9543350  342128904
3451                  73                17698440  496210924
3452                  73                17698440  496210924
3453                  73                17698440  496210924
3454                  73                17698440  496210924
3455                  73                17698440  496210924
3456                  NA                 1696410         NA
3457                  NA                 1696410         NA
3458                 354                 4742370  166453056
3459                  NA                30305010 4667842452
3460                 926                 2608440   72942180
3461                 403                12843550  550194288
3462                 403                12843550  550194288
3463                 650                38846110 6649470730
3464                  NA                30305010 4667842452
3465                  NA                30305010 4667842452
3466                 650                38846110 6649470730
3467                 435                 4303230  126486306
3468                 880                36046920 1005634080
3469                 880                36046920 1005634080
3470                 193                   56950     104055
3471                 880                36046920 1005634080
3472                 249                  613820   22637790
3473                 403                12843550  550194288
3474                 190                 1027250    6822045
3475                 230                 1944450   48610926
3476                 280                  359960    2702448
3477                 336                  473580    9151043
3478                 211                   99530     154280
3479                 282                   42100     129140
3480                 231                  410120    2226040
3481                  NA                30305010 4667842452
3482                 492                 4302940  208121250
3483                 280                 1820580   81484044
3484                 128                  345400    1422492
3485                 308                  287340     790080
3486                 458                12877300  540714216
3487                 406                 6214440  225478080
3488                 211                 1230310   62081164
3489                 228                  239600    1717248
3490                 194                  238170    2152262
3491                 201                  478810    7312554
3492                 442                34690690 2255973426
3493                 442                34690690 2255973426
3494                 442                34690690 2255973426
3495                 442                34690690 2255973426
3496                 165                  240100    1364268
3497                 195                24375750 1567730944
3498                 210                  149720    1805489
3499                 381                19485700  416315328
3500                 735                15908200 1484983422
3501                 162                  848130   18332865
3502                 642                 1864750  109679525
3503                 332                 9903470  735481492
3504                 408                  163140     533868
3505                 150                   21930     193692
3506                 389                28512200  571161498
3507                 389                28512200  571161498
3508                 389                28512200  571161498
3509                 389                28512200  571161498
3510                 442                34690690 2255973426
3511                 442                34690690 2255973426
3512                 442                34690690 2255973426
3513                 735                15908200 1484983422
3514                 180                  240950    1457832
3515                 113                   47770     199128
3516                 458                12877300  540714216
3517                 458                12877300  540714216
3518                 270                 1914290   66701472
3519                 425                33355530 2908354320
3520                 425                33355530 2908354320
3521                 406                 6214440  225478080
3522                 406                 6214440  225478080
3523                 157                19326570  671260842
3524                 157                19326570  671260842
3525                 126                 1701380   30445220
3526                 735                15908200 1484983422
3527                  NA                 9543350  342128904
3528                 194                  244720    2253696
3529                 145                10784180  144287625
3530                 145                10784180  144287625
3531                 145                10784180  144287625
3532                 145                10784180  144287625
3533                 145                10784180  144287625
3534                  73                17698440  496210924
3535                 106                   65030      94282
3536                 185                  568460   16472881
3537                  73                17698440  496210924
3538                  73                17698440  496210924
3539                 389                28512200  571161498
3540                 735                15908200 1484983422
3541                 735                15908200 1484983422
3542                 532                17731000 1664226499
3543                 356                  774530   13265385
3544                  NA                 1696410         NA
3545                 249                 1041010   25030372
3546                 425                33355530 2908354320
3547                 421                  551030   23655880
3548                 187                 1909710   36316906
3549                 320                17716130  882141496
3550                 320                17716130  882141496
3551                  NA                30305010 4667842452
3552                 210                  149720    1805489
3553                 112                  194160     780655
3554                 442                34690690 2255973426
3555                 389                28512200  571161498
3556                 195                24375750 1567730944
3557                 323                 1261610   51092196
3558                 532                17731000 1664226499
3559                  NA                20921910  271911120
3560                 157                19326570  671260842
3561                 204                 3479050  175047074
3562                 252                 5386650  203547205
3563                 423                 6010310  289792869
3564                 423                 6010310  289792869
3565                 252                 5386650  203547205
3566                 735                15908200 1484983422
3567                 532                17731000 1664226499
3568                 532                17731000 1664226499
3569                 185                  568460   16472881
3570                 381                19485700  416315328
3571                 323                 1261610   51092196
3572                 332                 9903470  735481492
3573                 425                33355530 2908354320
3574                 201                  478810    7312554
3575                 332                 9903470  735481492
3576                 389                28512200  571161498
3577                 230                 1944450   48610926
3578                 532                17731000 1664226499
3579                  38                  649750   12230976
3580                 880                36046920 1005634080
3581                 880                36046920 1005634080
3582                 278                  984810   32017050
3583                 188                11581260  542574896
3584                 650                38846110 6649470730
3585                 650                38846110 6649470730
3586                 458                12877300  540714216
3587                 458                12877300  540714216
3588                 356                  774530   13265385
3589                 332                  370210    3339392
3590                 190                 1027250    6822045
3591                 194                  244720    2253696
3592                 381                19485700  416315328
3593                 128                  345400    1422492
3594                 148                  729320    8690640
3595                 442                34690690 2255973426
3596                 442                34690690 2255973426
3597                 442                34690690 2255973426
3598                 278                  984810   32017050
3599                  38                  649750   12230976
3600                 155                 1892340   73298106
3601                 225                  202160     723450
3602                 157                19326570  671260842
3603                  37                  136540    1370272
3604                 177                  613380    1394748
3605                  NA                 1696410         NA
3606                 208                 1725420   14376060
3607                 230                 1944450   48610926
3608                 442                34690690 2255973426
3609                  30                 3462700   33333300
3610                 425                33355530 2908354320
3611                 406                 6214440  225478080
3612                 406                 6214440  225478080
3613                 406                 6214440  225478080
3614                  NA                 9543350  342128904
3615                  73                17698440  496210924
3616                 117                 1526650   60458794
3617                 403                12843550  550194288
3618                 650                38846110 6649470730
3619                 880                36046920 1005634080
3620                 880                36046920 1005634080
3621                 109                  236200    4859880
3622                 458                12877300  540714216
3623                  92                   37420      58547
3624                 145                10784180  144287625
3625                 442                34690690 2255973426
3626                 442                34690690 2255973426
3627                 442                34690690 2255973426
3628                 442                34690690 2255973426
3629                 338                 3828130  244231890
3630                 316                  868800   35965920
3631                 195                24375750 1567730944
3632                 173                 1529910   30274239
3633                  90                  324420    1544595
3634                 336                  473580    9151043
3635                 381                19485700  416315328
3636                 735                15908200 1484983422
3637                 421                  397810    2779440
3638                  44                  632460   18177519
3639                 332                 9903470  735481492
3640                 376                 2092800   69613568
3641                 125                  303450    1481176
3642                 442                34690690 2255973426
3643                 442                34690690 2255973426
3644                 188                11581260  542574896
3645                 188                11581260  542574896
3646                 126                 1701380   30445220
3647                 458                12877300  540714216
3648                 425                33355530 2908354320
3649                 225                  202160     723450
3650                 320                17716130  882141496
3651                 354                 4742370  166453056
3652                 145                10784180  144287625
3653                 145                10784180  144287625
3654                 145                10784180  144287625
3655                  NA                20921910  271911120
3656                  NA                 9543350  342128904
3657                  73                17698440  496210924
3658                 389                28512200  571161498
3659                 349                  123690    2185150
3660                 425                33355530 2908354320
3661                 214                 1121150   23473340
3662                 175                   79470     251280
3663                 177                  613380    1394748
3664                 338                 3828130  244231890
3665                 299                  221590    2084195
3666                  NA                30305010 4667842452
3667                 735                15908200 1484983422
3668                 650                38846110 6649470730
3669                 326                20309490  340270846
3670                 425                33355530 2908354320
3671                 320                17716130  882141496
3672                 320                17716130  882141496
3673                 320                17716130  882141496
3674                 157                19326570  671260842
3675                 249                  613820   22637790
3676                 381                19485700  416315328
3677                 252                 5386650  203547205
3678                 423                 6010310  289792869
3679                 442                34690690 2255973426
3680                 301                  317250    1509810
3681                 421                  397810    2779440
3682                 532                17731000 1664226499
3683                 532                17731000 1664226499
3684                 213                  195830    1914915
3685                 221                 5061900  116507650
3686                 735                15908200 1484983422
3687                 735                15908200 1484983422
3688                 650                38846110 6649470730
3689                 280                 1820580   81484044
3690                 332                 9903470  735481492
3691                 425                33355530 2908354320
3692                 381                19485700  416315328
3693                 381                19485700  416315328
3694                 332                 9903470  735481492
3695                 332                 9903470  735481492
3696                 532                17731000 1664226499
3697                 228                  239600    1717248
3698                 880                36046920 1005634080
3699                 188                11581260  542574896
3700                 208                 1725420   14376060
3701                 126                  274750    1526400
3702                 381                19485700  416315328
3703                 195                24375750 1567730944
3704                  88                  457820   14825110
3705                 442                34690690 2255973426
3706                 442                34690690 2255973426
3707                 442                34690690 2255973426
3708                 442                34690690 2255973426
3709                 442                34690690 2255973426
3710                 442                34690690 2255973426
3711                 442                34690690 2255973426
3712                 442                34690690 2255973426
3713                 442                34690690 2255973426
3714                 201                 2557720  112963680
3715                 650                38846110 6649470730
3716                 650                38846110 6649470730
3717                 155                 1892340   73298106
3718                 156                  197740     623600
3719                 195                24375750 1567730944
3720                 642                 1864750  109679525
3721                 414                 1474740   23174775
3722                 435                 4303230  126486306
3723                 332                  370210    3339392
3724                 145                10784180  144287625
3725                 208                 1725420   14376060
3726                  NA                 1696410         NA
3727                  NA                 1696410         NA
3728                 650                38846110 6649470730
3729                  NA                20921910  271911120
3730                 435                 4303230  126486306
3731                 249                 9504360  344985480
3732                 880                36046920 1005634080
3733                 280                 1820580   81484044
3734                 650                38846110 6649470730
3735                 442                34690690 2255973426
3736                 442                34690690 2255973426
3737                 195                24375750 1567730944
3738                 296                 1729780   95737841
3739                 201                 2557720  112963680
3740                 125                  425810    3032623
3741                 381                19485700  416315328
3742                 381                19485700  416315328
3743                 735                15908200 1484983422
3744                 735                15908200 1484983422
3745                 280                 1820580   81484044
3746                 160                 1166370   51398553
3747                 442                34690690 2255973426
3748                 532                17731000 1664226499
3749                  NA                30305010 4667842452
3750                 282                   42100     129140
3751                 425                33355530 2908354320
3752                 425                33355530 2908354320
3753                 425                33355530 2908354320
3754                 157                19326570  671260842
3755                 194                  244720    2253696
3756                 320                17716130  882141496
3757                 145                10784180  144287625
3758                  NA                 1696410         NA
3759                 233                  518780    6421740
3760                 136                  449340   19827138
3761                 735                15908200 1484983422
3762                 532                17731000 1664226499
3763                 425                33355530 2908354320
3764                 320                17716130  882141496
3765                 376                 2092800   69613568
3766                 496                 8668170  193114681
3767                 496                 8668170  193114681
3768                 218                 9819040  292520515
3769                 218                 9819040  292520515
3770                 389                28512200  571161498
3771                 387                 2808920   93588046
3772                 156                  197740     623600
3773                 532                17731000 1664226499
3774                  NA                20921910  271911120
3775                  NA                20921910  271911120
3776                  NA                20921910  271911120
3777                  NA                20921910  271911120
3778                  NA                20921910  271911120
3779                 316                  868800   35965920
3780                 326                20309490  340270846
3781                 425                33355530 2908354320
3782                  44                  632460   18177519
3783                  44                  632460   18177519
3784                 201                 2557720  112963680
3785                 406                 6214440  225478080
3786                 406                 6214440  225478080
3787                 157                19326570  671260842
3788                 157                19326570  671260842
3789                 338                 3828130  244231890
3790                 398                 1621270   84650808
3791                 252                 5386650  203547205
3792                 252                 5386650  203547205
3793                 423                 6010310  289792869
3794                 442                34690690 2255973426
3795                 442                34690690 2255973426
3796                 188                11581260  542574896
3797                 233                  518780    6421740
3798                 157                19326570  671260842
3799                 157                19326570  671260842
3800                 381                19485700  416315328
3801                 650                38846110 6649470730
3802                 221                 5061900  116507650
3803                 425                33355530 2908354320
3804                 735                15908200 1484983422
3805                 296                 1729780   95737841
3806                 608                   68290    3902204
3807                 125                  303450    1481176
3808                 349                  123690    2185150
3809                 218                 9819040  292520515
3810                 195                24375750 1567730944
3811                 163                 2215040   53827666
3812                 195                24375750 1567730944
3813                 650                38846110 6649470730
3814                 608                   68290    3902204
3815                 608                   68290    3902204
3816                 435                 4303230  126486306
3817                  NA                 1696410         NA
3818                 162                  848130   18332865
3819                  37                  136540    1370272
3820                 155                 1892340   73298106
3821                 389                28512200  571161498
3822                 389                28512200  571161498
3823                 389                28512200  571161498
3824                 278                  984810   32017050
3825                  61                  176170     279915
3826                 421                  397810    2779440
3827                 136                  449340   19827138
3828                 332                 9903470  735481492
3829                 650                38846110 6649470730
3830                 650                38846110 6649470730
3831                  NA                20921910  271911120
3832                 326                20309490  340270846
3833                 326                20309490  340270846
3834                 425                33355530 2908354320
3835                 195                24375750 1567730944
3836                 223                  953610   23222472
3837                 223                  953610   23222472
3838                 221                 5061900  116507650
3839                 221                 5061900  116507650
3840                  73                 5232400   67242474
3841                  85                   62920    4186224
3842                  85                   62920    4186224
3843                 249                 1041010   25030372
3844                 249                 9504360  344985480
3845                  92                  352680    3837320
3846                  92                  352680    3837320
3847                  92                  352680    3837320
3848                  92                  352680    3837320
3849                 163                 2215040   53827666
3850                  52                  399050    3017729
3851                  52                  399050    3017729
3852                 159                  173950    6305202
3853                 342                 3256520  188075624
3854                 195                24375750 1567730944
3855                 195                24375750 1567730944
3856                 572                 3598220  170906517
3857                  NA                20921910  271911120
3858                  NA                30305010 4667842452
3859                 204                 3479050  175047074
3860                 650                38846110 6649470730
3861                 326                20309490  340270846
3862                 326                20309490  340270846
3863                 326                20309490  340270846
3864                 173                 1529910   30274239
3865                 173                 1529910   30274239
3866                 173                 1529910   30274239
3867                  NA                 1696410         NA
3868                 425                33355530 2908354320
3869                 332                 9903470  735481492
3870                  73                 5232400   67242474
3871                  73                 5232400   67242474
3872                 398                 1621270   84650808
3873                 356                  774530   13265385
3874                  NA                30305010 4667842452
3875                 320                17716130  882141496
3876                 389                28512200  571161498
3877                 249                  200770    6042162
3878                 425                33355530 2908354320
3879                 188                11581260  542574896
3880                 414                 1474740   23174775
3881                  55                 1366930    5256238
3882                 532                17731000 1664226499
3883                 608                   68290    3902204
3884                 195                 3844560  153902166
3885                 262                  448050    6103292
3886                 458                12877300  540714216
3887                 458                12877300  540714216
3888                 458                12877300  540714216
3889                 195                24375750 1567730944
3890                 124                   12270     189900
3891                 532                17731000 1664226499
3892                  30                 3462700   33333300
3893                 650                38846110 6649470730
3894                 208                 1725420   14376060
3895                 208                 1725420   14376060
3896                 532                17731000 1664226499
3897                 425                33355530 2908354320
3898                 354                 4742370  166453056
3899                 880                36046920 1005634080
3900                 188                11581260  542574896
3901                 381                19485700  416315328
3902                 381                19485700  416315328
3903                 381                19485700  416315328
3904                 442                34690690 2255973426
3905                 157                19326570  671260842
3906                 208                 1725420   14376060
3907                  NA                 1696410         NA
3908                  73                17698440  496210924
3909                 195                24375750 1567730944
3910                  NA                 1696410         NA
3911                 880                36046920 1005634080
3912                 880                36046920 1005634080
3913                 880                36046920 1005634080
3914                  NA                20921910  271911120
3915                 166                   69620     159012
3916                 257                   25970      42292
3917                 650                38846110 6649470730
3918                 218                  708880   10077197
3919                 125                  303450    1481176
3920                 671                  295120    5218530
3921                 210                  149720    1805489
3922                 735                15908200 1484983422
3923                 101                  929150   14525236
3924                 332                 9903470  735481492
3925                 332                 9903470  735481492
3926                 332                 9903470  735481492
3927                 240                   21540      60985
3928                 389                28512200  571161498
3929                 389                28512200  571161498
3930                 389                28512200  571161498
3931                 389                28512200  571161498
3932                 442                34690690 2255973426
3933                 442                34690690 2255973426
3934                 157                19326570  671260842
3935                 222                   97680     152286
3936                  38                  649750   12230976
3937                 153                   20360     575330
3938                 376                 2092800   69613568
3939                 320                17716130  882141496
3940                 880                36046920 1005634080
3941                 155                 1892340   73298106
3942                 155                 1892340   73298106
3943                 218                 9819040  292520515
3944                 342                 3256520  188075624
3945                 342                 3256520  188075624
3946                 442                34690690 2255973426
3947                 442                34690690 2255973426
3948                 323                 1261610   51092196
3949                 157                19326570  671260842
3950                 148                  729320    8690640
3951                 398                 1621270   84650808
3952                 125                  425810    3032623
3953                 442                34690690 2255973426
3954                 532                17731000 1664226499
3955                 880                36046920 1005634080
3956                 201                  478810    7312554
3957                 735                15908200 1484983422
3958                 173                  559730    3611920
3959                 332                 9903470  735481492
3960                 650                38846110 6649470730
3961                 283                  144270    1923700
3962                  61                  176170     279915
3963                 166                   31200     200040
3964                 233                  518780    6421740
3965                 195                24375750 1567730944
3966                 163                 2215040   53827666
3967                 136                   82600     534564
3968                 640                 2832500  126197568
3969                 332                 9903470  735481492
3970                 218                  708880   10077197
3971                 442                34690690 2255973426
3972                  37                  136540    1370272
3973                 143                   70130     417126
3974                 104                  137510    3627532
3975                 109                  236200    4859880
3976                 342                 1021670   47821796
3977                 650                38846110 6649470730
3978                 243                 3835670  585476350
3979                 280                  153760     925158
3980                 173                  559730    3611920
3981                 102                   83710    1355466
3982                 195                24375750 1567730944
3983                 101                   22630      47693
3984                 210                  149720    1805489
3985                 276                  133870    1569805
3986                 119                  107170     422115
3987                 243                 3835670  585476350
3988                 187                 1909710   36316906
3989                 650                38846110 6649470730
3990                 223                  953610   23222472
3991                 163                 2215040   53827666
3992                  NA                 1696410         NA
3993                 880                36046920 1005634080
3994                 180                  240950    1457832
3995                 160                 1166370   51398553
3996                 249                  613820   22637790
3997                 102                   83710    1355466
3998                 195                24375750 1567730944
3999                 154                   79920     498666
4000                 458                  373780    3951262
4001                 387                 2808920   93588046
4002                 650                38846110 6649470730
4003                 381                19485700  416315328
4004                 452                 5148900  117585201
4005                 532                17731000 1664226499
4006                 326                20309490  340270846
4007                 320                17716130  882141496
4008                 458                12877300  540714216
4009                 880                36046920 1005634080
4010                 880                36046920 1005634080
4011                 157                19326570  671260842
4012                 126                 1701380   30445220
4013                 188                11581260  542574896
4014                 115                  963790     955643
4015                 381                19485700  416315328
4016                 735                15908200 1484983422
4017                 381                19485700  416315328
4018                 195                24375750 1567730944
4019                 195                24375750 1567730944
4020                 425                33355530 2908354320
4021                 406                 6214440  225478080
4022                 425                33355530 2908354320
4023                 381                19485700  416315328
4024                 332                 9903470  735481492
4025                 332                 9903470  735481492
4026                 735                15908200 1484983422
4027                 335                   78960     618216
4028                 735                15908200 1484983422
4029                 145                10784180  144287625
4030                  30                 3462700   33333300
4031                 354                 4742370  166453056
4032                  73                 5232400   67242474
4033                  30                 3462700   33333300
4034                 532                17731000 1664226499
4035                 532                17731000 1664226499
4036                  89                   20070      73678
4037                 735                15908200 1484983422
4038                  NA                 1696410         NA
4039                 157                19326570  671260842
4040                 145                10784180  144287625
4041                 141                    2020      69196
4042                 425                33355530 2908354320
4043                 423                 6010310  289792869
4044                 442                34690690 2255973426
4045                 124                 2131480    4119125
4046                  NA                30305010 4667842452
4047                 326                20309490  340270846
4048                 218                 9819040  292520515
4049                 425                33355530 2908354320
4050                 532                17731000 1664226499
4051                  55                 1366930    5256238
4052                 145                10784180  144287625
4053                 208                 1725420   14376060
4054                 880                36046920 1005634080
4055                 124                 2131480    4119125
4056                 381                19485700  416315328
4057                 425                33355530 2908354320
4058                 425                33355530 2908354320
4059                 381                19485700  416315328
4060                 381                19485700  416315328
4061                 432                 8760710  238823208
4062                  NA                30305010 4667842452
4063                 204                 3479050  175047074
4064                 425                33355530 2908354320
4065                 442                34690690 2255973426
4066                 204                 3479050  175047074
4067                 208                 1725420   14376060
4068                 406                 6214440  225478080
4069                 406                 6214440  225478080
4070                  73                 5232400   67242474
4071                  73                17698440  496210924
4072                 326                20309490  340270846
4073                 452                 5148900  117585201
4074                 880                36046920 1005634080
4075                 880                36046920 1005634080
4076                 187                 1909710   36316906
4077                 145                10784180  144287625
4078                 650                38846110 6649470730
4079                 381                19485700  416315328
4080                 629                 1738780   56594235
4081                 381                19485700  416315328
4082                 381                19485700  416315328
4083                 236                   61450     615330
4084                 332                 9903470  735481492
4085                 308                  287340     790080
4086                 442                34690690 2255973426
4087                  NA                30305010 4667842452
4088                  NA                 1696410         NA
4089                 432                 8760710  238823208
4090                 124                 1457760   50667660
4091                 232                  120610     733188
4092                 425                33355530 2908354320
4093                 332                 9903470  735481492
4094                 332                 9903470  735481492
4095                 532                17731000 1664226499
4096                 208                 1725420   14376060
4097                 389                28512200  571161498
4098                 168                  273650    3936132
4099                 650                38846110 6649470730
4100                  NA                20921910  271911120
4101                 326                20309490  340270846
4102                 326                20309490  340270846
4103                 326                20309490  340270846
4104                 326                20309490  340270846
4105                 195                24375750 1567730944
4106                 162                  848130   18332865
4107                 249                 1041010   25030372
4108                  NA                 1696410         NA
4109                 381                19485700  416315328
4110                 442                34690690 2255973426
4111                 101                  929150   14525236
4112                  NA                 1696410         NA
4113                  NA                 1696410         NA
4114                 403                12843550  550194288
4115                 354                 4742370  166453056
4116                 640                 2832500  126197568
4117                 153                   20360     575330
4118                 104                   39250      49455
4119                 119                  107170     422115
4120                 201                   18780      70612
4121                 210                  149720    1805489
4122                 145                10784180  144287625
4123                 442                34690690 2255973426
4124                 381                19485700  416315328
4125                 381                19485700  416315328
4126                 381                19485700  416315328
4127                 332                 9903470  735481492
4128                 280                  359960    2702448
4129                 442                34690690 2255973426
4130                 188                11581260  542574896
4131                 113                   47770     199128
4132                  NA                30305010 4667842452
4133                 204                  301060    4884360
4134                  NA                 1696410         NA
4135                 458                12877300  540714216
4136                 296                 1729780   95737841
4137                 232                  120610     733188
4138                 136                  449340   19827138
4139                 650                38846110 6649470730
4140                  NA                30305010 4667842452
4141                 425                33355530 2908354320
4142                 376                 2092800   69613568
4143                 435                 4303230  126486306
4144                 432                 8760710  238823208
4145                 442                34690690 2255973426
4146                 532                17731000 1664226499
4147                 532                17731000 1664226499
4148                  NA                30305010 4667842452
4149                 249                 9504360  344985480
4150                 442                34690690 2255973426
4151                 381                19485700  416315328
4152                 190                 1027250    6822045
4153                 287                  603120    8809536
4154                 650                38846110 6649470730
4155                 458                12877300  540714216
4156                 403                12843550  550194288
4157                 650                38846110 6649470730
4158                 650                38846110 6649470730
4159                 650                38846110 6649470730
4160                 650                38846110 6649470730
4161                 642                 1864750  109679525
4162                 188                  387460     632862
4163                 442                34690690 2255973426
4164                 177                 1610000   60701270
4165                 101                  929150   14525236
4166                 283                  144270    1923700
     grouped_origin_passengers origin_pop
1                     39004000 6709196515
2                     24783250 1598350689
3                      2811160  103269568
4                     30962410 4694066286
5                     30962410 4694066286
6                     30962410 4694066286
7                     39004000 6709196515
8                     39004000 6709196515
9                     20310360  321515760
10                    24783250 1598350689
11                     5150590  116320844
12                     5290380   63377964
13                    18579150  496210924
14                    18579150  496210924
15                    18579150  496210924
16                    11241370  143032950
17                     9516290  335402550
18                    36601160  999539328
19                    36601160  999539328
20                    36601160  999539328
21                    36601160  999539328
22                    36601160  999539328
23                    36601160  999539328
24                    36601160  999539328
25                    36601160  999539328
26                    36601160  999539328
27                    36601160  999539328
28                    36601160  999539328
29                    36601160  999539328
30                    36601160  999539328
31                    36601160  999539328
32                    36601160  999539328
33                    36601160  999539328
34                    11784620  533823688
35                    11784620  533823688
36                    13305330  507609264
37                    13305330  507609264
38                    13305330  507609264
39                    13305330  507609264
40                    11241370  143032950
41                    11241370  143032950
42                    11241370  143032950
43                    36601160  999539328
44                    36601160  999539328
45                    13305330  507609264
46                    13305330  507609264
47                    36601160  999539328
48                    36601160  999539328
49                    36601160  999539328
50                    36601160  999539328
51                    36601160  999539328
52                    36601160  999539328
53                    36601160  999539328
54                    39004000 6709196515
55                    30962410 4694066286
56                    39004000 6709196515
57                    13305330  507609264
58                    11241370  143032950
59                    11241370  143032950
60                    13305330  507609264
61                    13305330  507609264
62                    13305330  507609264
63                    13305330  507609264
64                    11241370  143032950
65                    11241370  143032950
66                    11241370  143032950
67                    11241370  143032950
68                    11241370  143032950
69                    11241370  143032950
70                    11241370  143032950
71                    11241370  143032950
72                    11241370  143032950
73                    36601160  999539328
74                    36601160  999539328
75                    36601160  999539328
76                    11784620  533823688
77                    36601160  999539328
78                    36601160  999539328
79                    36601160  999539328
80                    36601160  999539328
81                    36601160  999539328
82                    36601160  999539328
83                    36601160  999539328
84                    36601160  999539328
85                    36601160  999539328
86                    36601160  999539328
87                    36601160  999539328
88                    30962410 4694066286
89                    30962410 4694066286
90                    30962410 4694066286
91                    30962410 4694066286
92                    30962410 4694066286
93                    13305330  507609264
94                    13305330  507609264
95                    18579150  496210924
96                    11241370  143032950
97                    36601160  999539328
98                    36601160  999539328
99                    36601160  999539328
100                   36601160  999539328
101                   36601160  999539328
102                   36601160  999539328
103                   36601160  999539328
104                   11784620  533823688
105                   30962410 4694066286
106                   30962410 4694066286
107                   13305330  507609264
108                   11241370  143032950
109                   36601160  999539328
110                   36601160  999539328
111                   36601160  999539328
112                   36601160  999539328
113                   36601160  999539328
114                   36601160  999539328
115                   36601160  999539328
116                   11784620  533823688
117                   11784620  533823688
118                   21108660  262847416
119                   30962410 4694066286
120                   30962410 4694066286
121                   20310360  321515760
122                   20310360  321515760
123                   24783250 1598350689
124                   24783250 1598350689
125                    5290380   63377964
126                   18579150  496210924
127                   18579150  496210924
128                   18579150  496210924
129                   18579150  496210924
130                   11241370  143032950
131                   11241370  143032950
132                   11241370  143032950
133                   11241370  143032950
134                    9516290  335402550
135                    9776530  322390698
136                   30962410 4694066286
137                   18579150  496210924
138                   36601160  999539328
139                   11784620  533823688
140                   11784620  533823688
141                   11784620  533823688
142                   11784620  533823688
143                   39004000 6709196515
144                   39004000 6709196515
145                   13305330  507609264
146                   13305330  507609264
147                    5020960  125032600
148                   11241370  143032950
149                   11241370  143032950
150                   36601160  999539328
151                   36601160  999539328
152                   36601160  999539328
153                    8634070  199087300
154                    2805360  130704624
155                    2805360  130704624
156                   35279890 2232953289
157                   11784620  533823688
158                   11784620  533823688
159                   11784620  533823688
160                   11784620  533823688
161                    4046880   40404000
162                   39004000 6709196515
163                   39004000 6709196515
164                    5020960  125032600
165                    4002460  233948442
166                   18579150  496210924
167                   11241370  143032950
168                   11241370  143032950
169                   11241370  143032950
170                   11241370  143032950
171                   36601160  999539328
172                   11784620  533823688
173                   11784620  533823688
174                   11784620  533823688
175                   11784620  533823688
176                   11784620  533823688
177                   24783250 1598350689
178                   13305330  507609264
179                   13305330  507609264
180                   13305330  507609264
181                   13305330  507609264
182                   13305330  507609264
183                   33828410 2898787365
184                    1481400   52356582
185                    9516290  335402550
186                   30962410 4694066286
187                   36601160  999539328
188                   36601160  999539328
189                   13305330  507609264
190                   36601160  999539328
191                   36601160  999539328
192                   36601160  999539328
193                   36601160  999539328
194                   11784620  533823688
195                   11784620  533823688
196                   39004000 6709196515
197                   39004000 6709196515
198                   13305330  507609264
199                   36601160  999539328
200                   36601160  999539328
201                   36601160  999539328
202                   36601160  999539328
203                   36601160  999539328
204                   13305330  507609264
205                   11241370  143032950
206                   36601160  999539328
207                   36601160  999539328
208                   36601160  999539328
209                   13305330  507609264
210                   36601160  999539328
211                   36601160  999539328
212                   36601160  999539328
213                   36601160  999539328
214                    8739580  231934077
215                    8634070  199087300
216                   12733330  525632043
217                   15959520 1504021671
218                   30078990  580039656
219                   35279890 2232953289
220                   11784620  533823688
221                   11784620  533823688
222                   11784620  533823688
223                   39004000 6709196515
224                   21108660  262847416
225                   30962410 4694066286
226                   39004000 6709196515
227                   39004000 6709196515
228                   20310360  321515760
229                    5150590  116320844
230                   33828410 2898787365
231                    6251420  225478080
232                    9903090  754180174
233                    5020960  125032600
234                    5290380   63377964
235                   18579150  496210924
236                    9516290  335402550
237                   11784620  533823688
238                   11784620  533823688
239                   13305330  507609264
240                   13305330  507609264
241                   36601160  999539328
242                   36601160  999539328
243                   11241370  143032950
244                   11241370  143032950
245                   36601160  999539328
246                   13305330  507609264
247                   11241370  143032950
248                   36601160  999539328
249                   12733330  525632043
250                   11784620  533823688
251                   39004000 6709196515
252                   39004000 6709196515
253                   13305330  507609264
254                   13305330  507609264
255                   18579150  496210924
256                   36601160  999539328
257                   36601160  999539328
258                   13305330  507609264
259                   18579150  496210924
260                   11241370  143032950
261                   11241370  143032950
262                   11241370  143032950
263                   11241370  143032950
264                   36601160  999539328
265                   36601160  999539328
266                   11784620  533823688
267                   13305330  507609264
268                   36601160  999539328
269                   39004000 6709196515
270                   13305330  507609264
271                   36601160  999539328
272                   36601160  999539328
273                   36601160  999539328
274                   11784620  533823688
275                   24783250 1598350689
276                   21108660  262847416
277                   30962410 4694066286
278                   30962410 4694066286
279                   20310360  321515760
280                   18579150  496210924
281                   36601160  999539328
282                   36601160  999539328
283                   39004000 6709196515
284                   11784620  533823688
285                   18579150  496210924
286                   11241370  143032950
287                   11241370  143032950
288                   36601160  999539328
289                   36601160  999539328
290                   11784620  533823688
291                   11784620  533823688
292                   21108660  262847416
293                   30962410 4694066286
294                   13305330  507609264
295                   19768080  666396633
296                    9776530  322390698
297                   11241370  143032950
298                   30962410 4694066286
299                   18579150  496210924
300                   11241370  143032950
301                   11241370  143032950
302                   13305330  507609264
303                   11241370  143032950
304                    1953290   38580100
305                   35279890 2232953289
306                   11784620  533823688
307                   11784620  533823688
308                   11784620  533823688
309                   39004000 6709196515
310                    1699350   31616190
311                   39004000 6709196515
312                   21108660  262847416
313                   30962410 4694066286
314                   13305330  507609264
315                    3857150  543985900
316                    9776530  322390698
317                   18186640  877449254
318                    4856990  166453056
319                   30962410 4694066286
320                   13305330  507609264
321                   11241370  143032950
322                   36601160  999539328
323                   13305330  507609264
324                   18579150  496210924
325                   11241370  143032950
326                   36601160  999539328
327                   13305330  507609264
328                   36601160  999539328
329                   36601160  999539328
330                   36601160  999539328
331                   11784620  533823688
332                   11784620  533823688
333                   39004000 6709196515
334                   39004000 6709196515
335                   13305330  507609264
336                   21108660  262847416
337                    3857150  543985900
338                   21108660  262847416
339                   20310360  321515760
340                   20310360  321515760
341                   30078990  580039656
342                   21108660  262847416
343                    9903090  754180174
344                     797960   33273240
345                   33828410 2898787365
346                    9516290  335402550
347                    9516290  335402550
348                     355330    3837320
349                   30078990  580039656
350                   21108660  262847416
351                    9903090  754180174
352                   21108660  262847416
353                   21108660  262847416
354                   20310360  321515760
355                    9516290  335402550
356                    9776530  322390698
357                    4396180  132706944
358                   21108660  262847416
359                   21108660  262847416
360                   39004000 6709196515
361                   15959520 1504021671
362                   39004000 6709196515
363                   33828410 2898787365
364                   15959520 1504021671
365                   33828410 2898787365
366                   33828410 2898787365
367                   39004000 6709196515
368                    3835830  135184335
369                   19707640  421652704
370                   15959520 1504021671
371                     699520    9302028
372                    3578970  164576646
373                    1008540   43474360
374                   15959520 1504021671
375                   39004000 6709196515
376                   33828410 2898787365
377                     124750    2403665
378                    3578970  164576646
379                   15959520 1504021671
380                   33828410 2898787365
381                   33828410 2898787365
382                   33828410 2898787365
383                   39004000 6709196515
384                   39004000 6709196515
385                   15959520 1504021671
386                   15959520 1504021671
387                   39004000 6709196515
388                   39004000 6709196515
389                   39004000 6709196515
390                   33828410 2898787365
391                   33828410 2898787365
392                   39004000 6709196515
393                   39004000 6709196515
394                   15959520 1504021671
395                   33828410 2898787365
396                   33828410 2898787365
397                   33828410 2898787365
398                   33828410 2898787365
399                   19707640  421652704
400                   24783250 1598350689
401                   33828410 2898787365
402                    8634070  199087300
403                    2805360  130704624
404                    1712540  108598148
405                   33828410 2898787365
406                    8739580  231934077
407                   33828410 2898787365
408                   33828410 2898787365
409                   33828410 2898787365
410                   33828410 2898787365
411                   35279890 2232953289
412                   33828410 2898787365
413                   35279890 2232953289
414                   35279890 2232953289
415                   35279890 2232953289
416                   33828410 2898787365
417                   15959520 1504021671
418                   15959520 1504021671
419                   24783250 1598350689
420                   24783250 1598350689
421                   24783250 1598350689
422                   33828410 2898787365
423                   35279890 2232953289
424                   11784620  533823688
425                    1813050   85491456
426                      57840     432434
427                         NA         NA
428                   35279890 2232953289
429                   33828410 2898787365
430                   35279890 2232953289
431                   33828410 2898787365
432                   33828410 2898787365
433                   35279890 2232953289
434                   33828410 2898787365
435                   35279890 2232953289
436                   35279890 2232953289
437                   35279890 2232953289
438                   35279890 2232953289
439                   35279890 2232953289
440                   19707640  421652704
441                   24783250 1598350689
442                   33828410 2898787365
443                   33828410 2898787365
444                   33828410 2898787365
445                   35279890 2232953289
446                   35279890 2232953289
447                   35279890 2232953289
448                   35279890 2232953289
449                   35279890 2232953289
450                   19707640  421652704
451                   33828410 2898787365
452                   35279890 2232953289
453                   33828410 2898787365
454                    3465640  177412575
455                   35279890 2232953289
456                   33828410 2898787365
457                   35279890 2232953289
458                   33828410 2898787365
459                   33828410 2898787365
460                   35279890 2232953289
461                   33828410 2898787365
462                    8739580  231934077
463                    2805360  130704624
464                    5020960  125032600
465                   33828410 2898787365
466                   33828410 2898787365
467                   35279890 2232953289
468                   33828410 2898787365
469                   24783250 1598350689
470                   24783250 1598350689
471                   24783250 1598350689
472                   35279890 2232953289
473                   35279890 2232953289
474                   33828410 2898787365
475                   35279890 2232953289
476                   35279890 2232953289
477                   24783250 1598350689
478                   33828410 2898787365
479                   35279890 2232953289
480                   35279890 2232953289
481                   35279890 2232953289
482                   24783250 1598350689
483                    1527760   30770538
484                    5290380   63377964
485                   39004000 6709196515
486                   24783250 1598350689
487                   17916080 1671369102
488                   21108660  262847416
489                    5150590  116320844
490                   30962410 4694066286
491                    9516290  335402550
492                   24783250 1598350689
493                   21108660  262847416
494                   30962410 4694066286
495                   39004000 6709196515
496                    9823260  289680510
497                   24783250 1598350689
498                   21108660  262847416
499                    4396180  132706944
500                    9516290  335402550
501                   21108660  262847416
502                   24783250 1598350689
503                   24783250 1598350689
504                   21108660  262847416
505                    5150590  116320844
506                    9516290  335402550
507                   12733330  525632043
508                   21108660  262847416
509                   21108660  262847416
510                    5290380   63377964
511                    9516290  335402550
512                   20310360  321515760
513                   20310360  321515760
514                   20310360  321515760
515                   17916080 1671369102
516                   24783250 1598350689
517                   21108660  262847416
518                    5150590  116320844
519                   33828410 2898787365
520                    9516290  335402550
521                   21108660  262847416
522                    8634070  199087300
523                   24783250 1598350689
524                   17916080 1671369102
525                   20310360  321515760
526                    8739580  231934077
527                    8634070  199087300
528                   12733330  525632043
529                    9823260  289680510
530                   30078990  580039656
531                   39004000 6709196515
532                    3578970  164576646
533                   21108660  262847416
534                   39004000 6709196515
535                   39004000 6709196515
536                   21108660  262847416
537                   24783250 1598350689
538                   21108660  262847416
539                    9516290  335402550
540                    8634070  199087300
541                   12733330  525632043
542                   11784620  533823688
543                   20310360  321515760
544                    5150590  116320844
545                    3465640  177412575
546                   18579150  496210924
547                   24783250 1598350689
548                    4258870  197167500
549                    5150590  116320844
550                    9903090  754180174
551                    1607810   75672692
552                   20310360  321515760
553                    5290380   63377964
554                   21108660  262847416
555                   30962410 4694066286
556                    8634070  199087300
557                     326020    1544595
558                   19707640  421652704
559                   21108660  262847416
560                    3465640  177412575
561                    4396180  132706944
562                   21108660  262847416
563                   24783250 1598350689
564                   21108660  262847416
565                   21108660  262847416
566                   21108660  262847416
567                   20310360  321515760
568                    5150590  116320844
569                    5290380   63377964
570                   21108660  262847416
571                   30962410 4694066286
572                   20310360  321515760
573                   33828410 2898787365
574                   12733330  525632043
575                    9516290  335402550
576                   24783250 1598350689
577                   12733330  525632043
578                    9823260  289680510
579                    3229400  179526732
580                   21108660  262847416
581                   19707640  421652704
582                   19707640  421652704
583                   15959520 1504021671
584                    9903090  754180174
585                   15959520 1504021671
586                   19707640  421652704
587                   19707640  421652704
588                   19707640  421652704
589                   19707640  421652704
590                   19707640  421652704
591                   19707640  421652704
592                   15959520 1504021671
593                   15959520 1504021671
594                   15959520 1504021671
595                   19707640  421652704
596                   19707640  421652704
597                   19707640  421652704
598                   19707640  421652704
599                    9903090  754180174
600                   19707640  421652704
601                     199170    5178996
602                    8634070  199087300
603                   39004000 6709196515
604                   15959520 1504021671
605                     127640    1205106
606                   19707640  421652704
607                   19707640  421652704
608                    9903090  754180174
609                   19707640  421652704
610                   19707640  421652704
611                   19707640  421652704
612                   19707640  421652704
613                   19707640  421652704
614                   15959520 1504021671
615                   19707640  421652704
616                     553240   25430071
617                    2811160  103269568
618                    5150590  116320844
619                    9903090  754180174
620                     144250    1923700
621                   19707640  421652704
622                   15959520 1504021671
623                   15959520 1504021671
624                   19707640  421652704
625                    9903090  754180174
626                    9903090  754180174
627                   19707640  421652704
628                   19707640  421652704
629                   19707640  421652704
630                   19707640  421652704
631                   19707640  421652704
632                   19707640  421652704
633                   19707640  421652704
634                   19707640  421652704
635                   19707640  421652704
636                   15959520 1504021671
637                   15959520 1504021671
638                   19707640  421652704
639                   19707640  421652704
640                   19707640  421652704
641                   15959520 1504021671
642                   15959520 1504021671
643                   19707640  421652704
644                   19707640  421652704
645                   19707640  421652704
646                   19707640  421652704
647                   19707640  421652704
648                   19707640  421652704
649                   19707640  421652704
650                   15959520 1504021671
651                   15959520 1504021671
652                    9903090  754180174
653                    9903090  754180174
654                   19707640  421652704
655                   19707640  421652704
656                   19707640  421652704
657                   19707640  421652704
658                   19707640  421652704
659                   19707640  421652704
660                   19707640  421652704
661                   19707640  421652704
662                   19707640  421652704
663                   19707640  421652704
664                   15959520 1504021671
665                   19707640  421652704
666                   19707640  421652704
667                   15959520 1504021671
668                    9903090  754180174
669                    8634070  199087300
670                    2211430   50614074
671                   15959520 1504021671
672                     486040    3766438
673                    2811160  103269568
674                   13305330  507609264
675                    5020960  125032600
676                   19707640  421652704
677                   19707640  421652704
678                    9903090  754180174
679                    9903090  754180174
680                    9903090  754180174
681                    9903090  754180174
682                    9903090  754180174
683                   19707640  421652704
684                   19707640  421652704
685                   15959520 1504021671
686                   15959520 1504021671
687                   15959520 1504021671
688                   15959520 1504021671
689                   30962410 4694066286
690                   30078990  580039656
691                   33828410 2898787365
692                   33828410 2898787365
693                   33828410 2898787365
694                   30962410 4694066286
695                    9776530  322390698
696                   30078990  580039656
697                   33828410 2898787365
698                   33828410 2898787365
699                   30078990  580039656
700                   18186640  877449254
701                   30078990  580039656
702                   33828410 2898787365
703                   30078990  580039656
704                   17916080 1671369102
705                    1699350   31616190
706                   30962410 4694066286
707                    6251420  225478080
708                   18579150  496210924
709                   18186640  877449254
710                    4856990  166453056
711                   18579150  496210924
712                   11241370  143032950
713                   30078990  580039656
714                   19768080  666396633
715                   19768080  666396633
716                    6251420  225478080
717                   18186640  877449254
718                   30962410 4694066286
719                   33828410 2898787365
720                   30078990  580039656
721                   33828410 2898787365
722                   35279890 2232953289
723                   30078990  580039656
724                   30078990  580039656
725                   30962410 4694066286
726                   30078990  580039656
727                   30962410 4694066286
728                    8739580  231934077
729                    1953290   38580100
730                         NA         NA
731                     974800   25613640
732                    1813050   85491456
733                    1894340   74434976
734                   30078990  580039656
735                   30078990  580039656
736                   13305330  507609264
737                   30078990  580039656
738                   30078990  580039656
739                   33828410 2898787365
740                   18186640  877449254
741                   18186640  877449254
742                   19768080  666396633
743                    6251420  225478080
744                    9776530  322390698
745                   18579150  496210924
746                   18186640  877449254
747                   18186640  877449254
748                   13305330  507609264
749                   11241370  143032950
750                   33828410 2898787365
751                   33828410 2898787365
752                   11784620  533823688
753                    1953290   38580100
754                    1953290   38580100
755                   30962410 4694066286
756                   18579150  496210924
757                   18186640  877449254
758                   17916080 1671369102
759                   17916080 1671369102
760                   17916080 1671369102
761                   33828410 2898787365
762                   30078990  580039656
763                   11784620  533823688
764                   13305330  507609264
765                   11784620  533823688
766                    1709200   58099787
767                   11241370  143032950
768                   30078990  580039656
769                   30078990  580039656
770                   33828410 2898787365
771                   15959520 1504021671
772                   30962410 4694066286
773                   19768080  666396633
774                    1565970   58374008
775                    1953290   38580100
776                         NA         NA
777                    1699350   31616190
778                     300320    4884360
779                    4856990  166453056
780                         NA         NA
781                   17916080 1671369102
782                   17916080 1671369102
783                   33828410 2898787365
784                   33828410 2898787365
785                   35279890 2232953289
786                   33828410 2898787365
787                   19768080  666396633
788                   18186640  877449254
789                   30078990  580039656
790                   30078990  580039656
791                   30078990  580039656
792                    9776530  322390698
793                   13305330  507609264
794                     237490    1700804
795                   15959520 1504021671
796                   30078990  580039656
797                   33828410 2898787365
798                    6251420  225478080
799                   35279890 2232953289
800                   30962410 4694066286
801                   33828410 2898787365
802                   30078990  580039656
803                   17916080 1671369102
804                   30962410 4694066286
805                   11784620  533823688
806                   13305330  507609264
807                   19768080  666396633
808                   19768080  666396633
809                   18186640  877449254
810                    3835830  135184335
811                      76660     422156
812                     611970   22637790
813                     920980   13864998
814                     776080   13265385
815                   11784620  533823688
816                   30962410 4694066286
817                     797960   33273240
818                     409990    2671248
819                   18186640  877449254
820                    9776530  322390698
821                   18186640  877449254
822                    5374230  196363186
823                   30962410 4694066286
824                   18579150  496210924
825                   18186640  877449254
826                     797960   33273240
827                   30078990  580039656
828                   11784620  533823688
829                   33828410 2898787365
830                   17916080 1671369102
831                   19768080  666396633
832                    4856990  166453056
833                   11241370  143032950
834                   11784620  533823688
835                   30078990  580039656
836                   19768080  666396633
837                   18579150  496210924
838                   11241370  143032950
839                   30078990  580039656
840                   30078990  580039656
841                   30078990  580039656
842                   18579150  496210924
843                   19768080  666396633
844                    5374230  196363186
845                    8739580  231934077
846                     797960   33273240
847                     206500    3063263
848                    6251420  225478080
849                    4856990  166453056
850                     300320    4884360
851                   30962410 4694066286
852                   30962410 4694066286
853                   30962410 4694066286
854                   19768080  666396633
855                   18186640  877449254
856                   11784620  533823688
857                    6251420  225478080
858                   13305330  507609264
859                   30962410 4694066286
860                    1953290   38580100
861                     797960   33273240
862                    1699350   31616190
863                    4856990  166453056
864                    3857150  543985900
865                   35279890 2232953289
866                    6251420  225478080
867                   19768080  666396633
868                   30962410 4694066286
869                    1953290   38580100
870                   35279890 2232953289
871                    1699350   31616190
872                    8739580  231934077
873                    1699350   31616190
874                   30962410 4694066286
875                    6251420  225478080
876                    9776530  322390698
877                   30078990  580039656
878                   35279890 2232953289
879                    9776530  322390698
880                   30962410 4694066286
881                   30078990  580039656
882                   30078990  580039656
883                   18186640  877449254
884                   18186640  877449254
885                   18186640  877449254
886                    1953290   38580100
887                    6251420  225478080
888                    9776530  322390698
889                   18579150  496210924
890                   18579150  496210924
891                   18186640  877449254
892                   18186640  877449254
893                   33828410 2898787365
894                   33828410 2898787365
895                   19768080  666396633
896                   30962410 4694066286
897                    6251420  225478080
898                    9776530  322390698
899                   33828410 2898787365
900                   11784620  533823688
901                   30962410 4694066286
902                   18579150  496210924
903                   17916080 1671369102
904                   18186640  877449254
905                    6251420  225478080
906                   18579150  496210924
907                   18579150  496210924
908                   18579150  496210924
909                         NA         NA
910                    5374230  196363186
911                   18579150  496210924
912                   18579150  496210924
913                   18579150  496210924
914                   18579150  496210924
915                   18579150  496210924
916                   18579150  496210924
917                   18579150  496210924
918                   18579150  496210924
919                    6251420  225478080
920                    6251420  225478080
921                   18579150  496210924
922                   18186640  877449254
923                   18579150  496210924
924                   18579150  496210924
925                   18579150  496210924
926                   18186640  877449254
927                   30962410 4694066286
928                    6251420  225478080
929                   18579150  496210924
930                    1953290   38580100
931                    1699350   31616190
932                   21108660  262847416
933                   30962410 4694066286
934                    1699350   31616190
935                    4856990  166453056
936                   18186640  877449254
937                   18579150  496210924
938                   18579150  496210924
939                   30962410 4694066286
940                   18579150  496210924
941                   18579150  496210924
942                         NA         NA
943                     645910   13377630
944                         NA         NA
945                     107610     422115
946                     229060     950868
947                     409990    2671248
948                     206500    3063263
949                     350840    1185410
950                   18186640  877449254
951                    6251420  225478080
952                         NA         NA
953                      92930     909260
954                     461770    2392224
955                    1905960   32390754
956                    5374230  196363186
957                   21108660  262847416
958                    1953290   38580100
959                     300320    4884360
960                   18579150  496210924
961                   18579150  496210924
962                   17916080 1671369102
963                   33828410 2898787365
964                   33828410 2898787365
965                   30078990  580039656
966                   30078990  580039656
967                   15959520 1504021671
968                   33828410 2898787365
969                   33828410 2898787365
970                   12733330  525632043
971                   30078990  580039656
972                   30078990  580039656
973                   39004000 6709196515
974                   17916080 1671369102
975                   17916080 1671369102
976                   17916080 1671369102
977                   17916080 1671369102
978                   30078990  580039656
979                   15959520 1504021671
980                   15959520 1504021671
981                   15959520 1504021671
982                   15959520 1504021671
983                   15959520 1504021671
984                   15959520 1504021671
985                      54280     808254
986                   30078990  580039656
987                   30078990  580039656
988                   33828410 2898787365
989                   30078990  580039656
990                   30078990  580039656
991                   39004000 6709196515
992                   39004000 6709196515
993                   39004000 6709196515
994                   39004000 6709196515
995                   39004000 6709196515
996                   15959520 1504021671
997                   17916080 1671369102
998                   30962410 4694066286
999                   33828410 2898787365
1000                  18186640  877449254
1001                  39004000 6709196515
1002                  15959520 1504021671
1003                  30078990  580039656
1004                  33828410 2898787365
1005                  33828410 2898787365
1006                  18186640  877449254
1007                  30078990  580039656
1008                  30078990  580039656
1009                  33828410 2898787365
1010                  33828410 2898787365
1011                  30078990  580039656
1012                  39004000 6709196515
1013                  24783250 1598350689
1014                  15959520 1504021671
1015                  30078990  580039656
1016                  33828410 2898787365
1017                  33828410 2898787365
1018                  12733330  525632043
1019                  39004000 6709196515
1020                  15959520 1504021671
1021                  17916080 1671369102
1022                  17916080 1671369102
1023                  30962410 4694066286
1024                  30962410 4694066286
1025                   4258870  197167500
1026                  33828410 2898787365
1027                  33828410 2898787365
1028                  33828410 2898787365
1029                   6251420  225478080
1030                  19768080  666396633
1031                   4002460  233948442
1032                   5374230  196363186
1033                  39004000 6709196515
1034                  33828410 2898787365
1035                  18186640  877449254
1036                   3835830  135184335
1037                   3835830  135184335
1038                   3835830  135184335
1039                  30078990  580039656
1040                  30078990  580039656
1041                  15959520 1504021671
1042                  17916080 1671369102
1043                  17916080 1671369102
1044                   2811160  103269568
1045                  20310360  321515760
1046                  24783250 1598350689
1047                  33828410 2898787365
1048                  33828410 2898787365
1049                  24783250 1598350689
1050                  19768080  666396633
1051                   5020960  125032600
1052                   5290380   63377964
1053                   9776530  322390698
1054                   1483750   21955050
1055                  18186640  877449254
1056                   4396180  132706944
1057                  11241370  143032950
1058                   1481400   52356582
1059                   9516290  335402550
1060                  30078990  580039656
1061                  30078990  580039656
1062                  39004000 6709196515
1063                  15959520 1504021671
1064                  17916080 1671369102
1065                  18186640  877449254
1066                  30078990  580039656
1067                  30078990  580039656
1068                  33828410 2898787365
1069                  39004000 6709196515
1070                  39004000 6709196515
1071                  39004000 6709196515
1072                  17916080 1671369102
1073                  17916080 1671369102
1074                  17916080 1671369102
1075                  18186640  877449254
1076                  18186640  877449254
1077                  18186640  877449254
1078                   8634070  199087300
1079                  12733330  525632043
1080                  24783250 1598350689
1081                   2811160  103269568
1082                  30962410 4694066286
1083                  20310360  321515760
1084                  24783250 1598350689
1085                   5020960  125032600
1086                  18186640  877449254
1087                   9516290  335402550
1088                  30078990  580039656
1089                   2811160  103269568
1090                  30962410 4694066286
1091                  39004000 6709196515
1092                   5150590  116320844
1093                  33828410 2898787365
1094                  19768080  666396633
1095                   5290380   63377964
1096                   9516290  335402550
1097                  30078990  580039656
1098                  30078990  580039656
1099                  30078990  580039656
1100                  39004000 6709196515
1101                  15959520 1504021671
1102                  15959520 1504021671
1103                  17916080 1671369102
1104                  18186640  877449254
1105                  30078990  580039656
1106                  30078990  580039656
1107                  39004000 6709196515
1108                  39004000 6709196515
1109                  15959520 1504021671
1110                  15959520 1504021671
1111                  17916080 1671369102
1112                  17916080 1671369102
1113                  17916080 1671369102
1114                  17916080 1671369102
1115                  17916080 1671369102
1116                  17916080 1671369102
1117                  33828410 2898787365
1118                  33828410 2898787365
1119                  30078990  580039656
1120                  39004000 6709196515
1121                  17916080 1671369102
1122                  17916080 1671369102
1123                  17916080 1671369102
1124                  21108660  262847416
1125                  20310360  321515760
1126                  33828410 2898787365
1127                  30078990  580039656
1128                  30078990  580039656
1129                  15959520 1504021671
1130                  33828410 2898787365
1131                  30078990  580039656
1132                  30962410 4694066286
1133                  30078990  580039656
1134                  39004000 6709196515
1135                  15959520 1504021671
1136                  17916080 1671369102
1137                  17916080 1671369102
1138                  33828410 2898787365
1139                  17916080 1671369102
1140                  17916080 1671369102
1141                  30078990  580039656
1142                  30078990  580039656
1143                  30078990  580039656
1144                  30078990  580039656
1145                  15959520 1504021671
1146                  17916080 1671369102
1147                  30078990  580039656
1148                  30078990  580039656
1149                  30078990  580039656
1150                  30078990  580039656
1151                   9823260  289680510
1152                   3835830  135184335
1153                  15959520 1504021671
1154                  30078990  580039656
1155                  39004000 6709196515
1156                  24783250 1598350689
1157                   1254090   46743924
1158                  15959520 1504021671
1159                  17916080 1671369102
1160                   3465640  177412575
1161                   1735520   56594235
1162                   1008540   43474360
1163                   9776530  322390698
1164                  30078990  580039656
1165                  33828410 2898787365
1166                  39004000 6709196515
1167                  30078990  580039656
1168                  39004000 6709196515
1169                  18186640  877449254
1170                  18186640  877449254
1171                  15959520 1504021671
1172                  33828410 2898787365
1173                  33828410 2898787365
1174                  30078990  580039656
1175                  30078990  580039656
1176                  33828410 2898787365
1177                  18186640  877449254
1178                  39004000 6709196515
1179                  17916080 1671369102
1180                  17916080 1671369102
1181                  30078990  580039656
1182                  30078990  580039656
1183                  15959520 1504021671
1184                  33828410 2898787365
1185                  33828410 2898787365
1186                  33828410 2898787365
1187                   8739580  231934077
1188                  15959520 1504021671
1189                  39004000 6709196515
1190                  24783250 1598350689
1191                  15959520 1504021671
1192                  15959520 1504021671
1193                  17916080 1671369102
1194                   2198670    5107715
1195                  33828410 2898787365
1196                  33828410 2898787365
1197                  33828410 2898787365
1198                  39004000 6709196515
1199                  17916080 1671369102
1200                  15959520 1504021671
1201                   3835830  135184335
1202                  15959520 1504021671
1203                  17916080 1671369102
1204                  17916080 1671369102
1205                  35279890 2232953289
1206                  35279890 2232953289
1207                  21108660  262847416
1208                   8739580  231934077
1209                  21108660  262847416
1210                  19768080  666396633
1211                   9823260  289680510
1212                   9823260  289680510
1213                   9823260  289680510
1214                   9823260  289680510
1215                  20310360  321515760
1216                  33828410 2898787365
1217                  33828410 2898787365
1218                   9823260  289680510
1219                  20310360  321515760
1220                  21108660  262847416
1221                  35279890 2232953289
1222                   9823260  289680510
1223                  35279890 2232953289
1224                  35279890 2232953289
1225                  35279890 2232953289
1226                  35279890 2232953289
1227                  35279890 2232953289
1228                  17916080 1671369102
1229                  39004000 6709196515
1230                  20310360  321515760
1231                  33828410 2898787365
1232                   2546580  125515200
1233                  19768080  666396633
1234                  19768080  666396633
1235                  19768080  666396633
1236                   5974490  270098208
1237                   8739580  231934077
1238                   8634070  199087300
1239                   3835830  135184335
1240                    740590   10320135
1241                  24783250 1598350689
1242                  17916080 1671369102
1243                   3578970  164576646
1244                    553240   25430071
1245                  21108660  262847416
1246                    862150   38963080
1247                   4258870  197167500
1248                   1813050   85491456
1249                   1527760   30770538
1250                   9903090  754180174
1251                  19768080  666396633
1252                   3465640  177412575
1253                   1735520   56594235
1254                   5290380   63377964
1255                   9516290  335402550
1256                   8634070  199087300
1257                  35279890 2232953289
1258                  35279890 2232953289
1259                  35279890 2232953289
1260                   1709200   58099787
1261                  17916080 1671369102
1262                  17916080 1671369102
1263                  30962410 4694066286
1264                  33828410 2898787365
1265                  19768080  666396633
1266                  19768080  666396633
1267                  19768080  666396633
1268                   9776530  322390698
1269                  30962410 4694066286
1270                   9823260  289680510
1271                  35279890 2232953289
1272                  15959520 1504021671
1273                  17916080 1671369102
1274                    518150   21514554
1275                  30962410 4694066286
1276                  30962410 4694066286
1277                   4258870  197167500
1278                  33828410 2898787365
1279                  13305330  507609264
1280                   5150590  116320844
1281                  18186640  877449254
1282                   5020960  125032600
1283                  30962410 4694066286
1284                   5974490  270098208
1285                   9516290  335402550
1286                  33828410 2898787365
1287                  33828410 2898787365
1288                   9823260  289680510
1289                  20310360  321515760
1290                   9823260  289680510
1291                  35279890 2232953289
1292                  17916080 1671369102
1293                  20310360  321515760
1294                  33828410 2898787365
1295                   9516290  335402550
1296                  21108660  262847416
1297                   8739580  231934077
1298                   2572340   72942180
1299                  35279890 2232953289
1300                  30078990  580039656
1301                  17916080 1671369102
1302                  39004000 6709196515
1303                   4258870  197167500
1304                  20310360  321515760
1305                   1845290  100689400
1306                  19768080  666396633
1307                   5290380   63377964
1308                   4856990  166453056
1309                   1481400   52356582
1310                   9516290  335402550
1311                  12733330  525632043
1312                   9823260  289680510
1313                   2211430   50614074
1314                   3835830  135184335
1315                  19707640  421652704
1316                   3229400  179526732
1317                  11784620  533823688
1318                    740590   10320135
1319                   2811160  103269568
1320                  33828410 2898787365
1321                  24783250 1598350689
1322                   2546580  125515200
1323                   5150590  116320844
1324                   1527760   30770538
1325                  18186640  877449254
1326                  18186640  877449254
1327                   9903090  754180174
1328                   3465640  177412575
1329                   1131360   26535080
1330                   5020960  125032600
1331                   1483750   21955050
1332                    669860   13277394
1333                  30078990  580039656
1334                  30078990  580039656
1335                  21108660  262847416
1336                  18186640  877449254
1337                  19768080  666396633
1338                   9776530  322390698
1339                  21108660  262847416
1340                   8634070  199087300
1341                   8634070  199087300
1342                   9823260  289680510
1343                   9823260  289680510
1344                   9823260  289680510
1345                   9823260  289680510
1346                   9823260  289680510
1347                   9823260  289680510
1348                  33828410 2898787365
1349                  33828410 2898787365
1350                  33828410 2898787365
1351                  33828410 2898787365
1352                  33828410 2898787365
1353                  33828410 2898787365
1354                   9823260  289680510
1355                  24783250 1598350689
1356                  20310360  321515760
1357                  33828410 2898787365
1358                  35279890 2232953289
1359                  35279890 2232953289
1360                  35279890 2232953289
1361                  35279890 2232953289
1362                  21108660  262847416
1363                   5374230  196363186
1364                   8739580  231934077
1365                  30078990  580039656
1366                  17916080 1671369102
1367                  18186640  877449254
1368                   4856990  166453056
1369                   1208540   62404608
1370                   8634070  199087300
1371                   8634070  199087300
1372                   2805360  130704624
1373                   1254090   46743924
1374                   3578970  164576646
1375                  33828410 2898787365
1376                   1483750   21955050
1377                    669860   13277394
1378                   2572340   72942180
1379                   1872090   79115416
1380                   2211430   50614074
1381                   3835830  135184335
1382                  24783250 1598350689
1383                    920980   13864998
1384                  17916080 1671369102
1385                  39004000 6709196515
1386                  21108660  262847416
1387                  39004000 6709196515
1388                  33828410 2898787365
1389                  24783250 1598350689
1390                   1527760   30770538
1391                   1845290  100689400
1392                  19768080  666396633
1393                   3465640  177412575
1394                   1408700   93573144
1395                    950330   26539968
1396                   5020960  125032600
1397                   1008540   43474360
1398                   5290380   63377964
1399                   1607810   75672692
1400                  30078990  580039656
1401                  21108660  262847416
1402                   8634070  199087300
1403                   8634070  199087300
1404                   8634070  199087300
1405                  35279890 2232953289
1406                  33828410 2898787365
1407                   5974490  270098208
1408                   8634070  199087300
1409                   8634070  199087300
1410                   9823260  289680510
1411                  21108660  262847416
1412                  33828410 2898787365
1413                   5974490  270098208
1414                   8634070  199087300
1415                  33828410 2898787365
1416                  33828410 2898787365
1417                   1481400   52356582
1418                   5974490  270098208
1419                   8634070  199087300
1420                   9823260  289680510
1421                  15959520 1504021671
1422                  21108660  262847416
1423                  19768080  666396633
1424                   5974490  270098208
1425                   9516290  335402550
1426                  21108660  262847416
1427                  21108660  262847416
1428                  19768080  666396633
1429                  17916080 1671369102
1430                  17916080 1671369102
1431                  30078990  580039656
1432                  33828410 2898787365
1433                   9823260  289680510
1434                  20310360  321515760
1435                  33828410 2898787365
1436                  33828410 2898787365
1437                   9516290  335402550
1438                   2105300   67781632
1439                   8739580  231934077
1440                   1208540   62404608
1441                  30078990  580039656
1442                  30078990  580039656
1443                   1709200   58099787
1444                  17916080 1671369102
1445                  39004000 6709196515
1446                  30962410 4694066286
1447                  20310360  321515760
1448                  18186640  877449254
1449                   1894340   74434976
1450                   4856990  166453056
1451                  11241370  143032950
1452                  30962410 4694066286
1453                   5974490  270098208
1454                   9516290  335402550
1455                    331090    9963286
1456                   8739580  231934077
1457                   3229400  179526732
1458                   1049170   50590427
1459                  15959520 1504021671
1460                    740590   10320135
1461                  24783250 1598350689
1462                  17916080 1671369102
1463                    456510   15147395
1464                    862150   38963080
1465                    588370    8905671
1466                   4258870  197167500
1467                  33828410 2898787365
1468                  13305330  507609264
1469                   5150590  116320844
1470                  33828410 2898787365
1471                  19768080  666396633
1472                   1131360   26535080
1473                   4002460  233948442
1474                   1211150   67169784
1475                    669860   13277394
1476                   8634070  199087300
1477                   8634070  199087300
1478                   8634070  199087300
1479                  24783250 1598350689
1480                  33828410 2898787365
1481                   5974490  270098208
1482                   5974490  270098208
1483                   3229400  179526732
1484                  35279890 2232953289
1485                  20310360  321515760
1486                   2546580  125515200
1487                   1894340   74434976
1488                   5290380   63377964
1489                   5974490  270098208
1490                   9516290  335402550
1491                   1208540   62404608
1492                   8634070  199087300
1493                  30962410 4694066286
1494                   9823260  289680510
1495                   2805360  130704624
1496                  35279890 2232953289
1497                  35279890 2232953289
1498                   1709200   58099787
1499                   1699350   31616190
1500                  17916080 1671369102
1501                   3578970  164576646
1502                  21108660  262847416
1503                  39004000 6709196515
1504                  33828410 2898787365
1505                  33828410 2898787365
1506                   2546580  125515200
1507                    570230   19144159
1508                  30962410 4694066286
1509                   5974490  270098208
1510                   1211150   67169784
1511                   1565970   58374008
1512                   2105300   67781632
1513                   1872090   79115416
1514                   2211430   50614074
1515                        NA         NA
1516                  17916080 1671369102
1517                    611970   22637790
1518                  21108660  262847416
1519                  30962410 4694066286
1520                    862150   38963080
1521                  24783250 1598350689
1522                   5150590  116320844
1523                  18186640  877449254
1524                   1712540  108598148
1525                   1905960   32390754
1526                   9776530  322390698
1527                   9516290  335402550
1528                   5974490  270098208
1529                   8634070  199087300
1530                  33828410 2898787365
1531                  33828410 2898787365
1532                   8634070  199087300
1533                   9823260  289680510
1534                   5974490  270098208
1535                  17916080 1671369102
1536                   5974490  270098208
1537                   8739580  231934077
1538                  30078990  580039656
1539                  17916080 1671369102
1540                  21108660  262847416
1541                  30962410 4694066286
1542                  19768080  666396633
1543                   8739580  231934077
1544                  17916080 1671369102
1545                  17916080 1671369102
1546                  19768080  666396633
1547                   4002460  233948442
1548                  18186640  877449254
1549                  21108660  262847416
1550                  18186640  877449254
1551                  21108660  262847416
1552                   9823260  289680510
1553                  17916080 1671369102
1554                  17916080 1671369102
1555                  17916080 1671369102
1556                  20310360  321515760
1557                   5150590  116320844
1558                   5020960  125032600
1559                   9823260  289680510
1560                  35279890 2232953289
1561                  15959520 1504021671
1562                  33828410 2898787365
1563                  19768080  666396633
1564                  19768080  666396633
1565                   3465640  177412575
1566                   4002460  233948442
1567                   9516290  335402550
1568                  30078990  580039656
1569                  30078990  580039656
1570                  21108660  262847416
1571                  33828410 2898787365
1572                  19768080  666396633
1573                   5374230  196363186
1574                  21108660  262847416
1575                  18186640  877449254
1576                   9823260  289680510
1577                  17916080 1671369102
1578                        NA         NA
1579                  18186640  877449254
1580                  18186640  877449254
1581                  19768080  666396633
1582                  36601160  999539328
1583                   8634070  199087300
1584                   9823260  289680510
1585                  35279890 2232953289
1586                  30078990  580039656
1587                   1709200   58099787
1588                    920980   13864998
1589                  24783250 1598350689
1590                  13305330  507609264
1591                   5150590  116320844
1592                  19768080  666396633
1593                   5974490  270098208
1594                   5974490  270098208
1595                   8739580  231934077
1596                  30962410 4694066286
1597                    740590   10320135
1598                  24783250 1598350689
1599                    518150   21514554
1600                  21108660  262847416
1601                  30962410 4694066286
1602                    456510   15147395
1603                  39004000 6709196515
1604                  30962410 4694066286
1605                    588370    8905671
1606                  20310360  321515760
1607                   1813050   85491456
1608                  18186640  877449254
1609                   1712540  108598148
1610                   3857150  543985900
1611                   9903090  754180174
1612                   1131360   26535080
1613                   5290380   63377964
1614                   4002460  233948442
1615                   4002460  233948442
1616                   1483750   21955050
1617                   4856990  166453056
1618                   9516290  335402550
1619                   1211150   67169784
1620                  17916080 1671369102
1621                  17916080 1671369102
1622                  33828410 2898787365
1623                  33828410 2898787365
1624                  35279890 2232953289
1625                  35279890 2232953289
1626                  33828410 2898787365
1627                  35279890 2232953289
1628                  35279890 2232953289
1629                  33828410 2898787365
1630                  30078990  580039656
1631                   5974490  270098208
1632                   9823260  289680510
1633                  35279890 2232953289
1634                  17916080 1671369102
1635                  20310360  321515760
1636                   5290380   63377964
1637                   1481400   52356582
1638                   8634070  199087300
1639                   9823260  289680510
1640                   9823260  289680510
1641                   9823260  289680510
1642                   5974490  270098208
1643                   8634070  199087300
1644                  33828410 2898787365
1645                  19768080  666396633
1646                  19768080  666396633
1647                  19768080  666396633
1648                   2105300   67781632
1649                    331090    9963286
1650                   8739580  231934077
1651                   8739580  231934077
1652                  35279890 2232953289
1653                   1699350   31616190
1654                  33828410 2898787365
1655                   2546580  125515200
1656                  18186640  877449254
1657                   6251420  225478080
1658                   4002460  233948442
1659                  11241370  143032950
1660                   5374230  196363186
1661                  30962410 4694066286
1662                   5974490  270098208
1663                   1953290   38580100
1664                  30962410 4694066286
1665                   9823260  289680510
1666                        NA         NA
1667                   1049170   50590427
1668                    645910   13377630
1669                  30962410 4694066286
1670                   2546580  125515200
1671                   3857150  543985900
1672                   3857150  543985900
1673                   1905960   32390754
1674                   9776530  322390698
1675                    570230   19144159
1676                   4856990  166453056
1677                   1211150   67169784
1678                   1565970   58374008
1679                   2105300   67781632
1680                   1709200   58099787
1681                   4046880   40404000
1682                  33828410 2898787365
1683                   5150590  116320844
1684                   5150590  116320844
1685                  19768080  666396633
1686                  19768080  666396633
1687                   8739580  231934077
1688                   8739580  231934077
1689                  17916080 1671369102
1690                   1905960   32390754
1691                   5374230  196363186
1692                   5374230  196363186
1693                   8739580  231934077
1694                  35279890 2232953289
1695                   9823260  289680510
1696                   9823260  289680510
1697                  17916080 1671369102
1698                   5974490  270098208
1699                   5974490  270098208
1700                  33828410 2898787365
1701                   5150590  116320844
1702                  30078990  580039656
1703                  21108660  262847416
1704                  18186640  877449254
1705                   5374230  196363186
1706                   5974490  270098208
1707                   4046880   40404000
1708                  17916080 1671369102
1709                  17916080 1671369102
1710                  21108660  262847416
1711                  33828410 2898787365
1712                   2198670    5107715
1713                   1905960   32390754
1714                   5374230  196363186
1715                  35279890 2232953289
1716                  35279890 2232953289
1717                  17916080 1671369102
1718                   8739580  231934077
1719                  35279890 2232953289
1720                  33828410 2898787365
1721                  33828410 2898787365
1722                   9823260  289680510
1723                  24783250 1598350689
1724                  39004000 6709196515
1725                  20310360  321515760
1726                   5150590  116320844
1727                   5290380   63377964
1728                   9823260  289680510
1729                  35279890 2232953289
1730                  35279890 2232953289
1731                  35279890 2232953289
1732                  30078990  580039656
1733                  17916080 1671369102
1734                   4258870  197167500
1735                   5974490  270098208
1736                   5974490  270098208
1737                   5974490  270098208
1738                   1153460   46889908
1739                   2572340   72942180
1740                   1208540   62404608
1741                   1872090   79115416
1742                   2805360  130704624
1743                  24783250 1598350689
1744                   3578970  164576646
1745                   1813050   85491456
1746                   5150590  116320844
1747                   1845290  100689400
1748                  19768080  666396633
1749                   1607810   75672692
1750                   5974490  270098208
1751                   8739580  231934077
1752                   1208540   62404608
1753                   8634070  199087300
1754                   9823260  289680510
1755                   2211430   50614074
1756                   3229400  179526732
1757                  35279890 2232953289
1758                  15959520 1504021671
1759                  30078990  580039656
1760                  24783250 1598350689
1761                   1254090   46743924
1762                  15959520 1504021671
1763                   2811160  103269568
1764                  39004000 6709196515
1765                   4258870  197167500
1766                  20310360  321515760
1767                  13305330  507609264
1768                   5150590  116320844
1769                   1894340   74434976
1770                   1845290  100689400
1771                  19768080  666396633
1772                   1408700   93573144
1773                   1735520   56594235
1774                   9776530  322390698
1775                   1607810   75672692
1776                  18579150  496210924
1777                  18186640  877449254
1778                   9516290  335402550
1779                  12733330  525632043
1780                   1872090   79115416
1781                   3835830  135184335
1782                   3835830  135184335
1783                   2805360  130704624
1784                  17916080 1671369102
1785                  17916080 1671369102
1786                  30962410 4694066286
1787                   1813050   85491456
1788                  24783250 1598350689
1789                   1527760   30770538
1790                  18186640  877449254
1791                   1712540  108598148
1792                   9903090  754180174
1793                   3465640  177412575
1794                   5020960  125032600
1795                   5290380   63377964
1796                   5374230  196363186
1797                  30962410 4694066286
1798                   1481400   52356582
1799                   5974490  270098208
1800                   1565970   58374008
1801                  20310360  321515760
1802                  33828410 2898787365
1803                  35279890 2232953289
1804                  30078990  580039656
1805                  17916080 1671369102
1806                   9823260  289680510
1807                   5974490  270098208
1808                  33828410 2898787365
1809                   5150590  116320844
1810                   5974490  270098208
1811                   9823260  289680510
1812                  15959520 1504021671
1813                  19768080  666396633
1814                   5290380   63377964
1815                   5974490  270098208
1816                  17916080 1671369102
1817                   5974490  270098208
1818                  17916080 1671369102
1819                  17916080 1671369102
1820                   4258870  197167500
1821                   8634070  199087300
1822                   9823260  289680510
1823                  24783250 1598350689
1824                  30962410 4694066286
1825                  39004000 6709196515
1826                  20310360  321515760
1827                  20310360  321515760
1828                  24783250 1598350689
1829                   4002460  233948442
1830                   9516290  335402550
1831                  35279890 2232953289
1832                   9823260  289680510
1833                  33828410 2898787365
1834                   8739580  231934077
1835                    173480    4303937
1836                  30962410 4694066286
1837                   4046880   40404000
1838                        NA         NA
1839                   3857150  543985900
1840                  19768080  666396633
1841                   3857150  543985900
1842                   9776530  322390698
1843                   1953290   38580100
1844                  30962410 4694066286
1845                    645910   13377630
1846                   1699350   31616190
1847                        NA         NA
1848                    570230   19144159
1849                  30962410 4694066286
1850                   4046880   40404000
1851                   8739580  231934077
1852                  17916080 1671369102
1853                  33828410 2898787365
1854                  19768080  666396633
1855                   5974490  270098208
1856                  21108660  262847416
1857                  33828410 2898787365
1858                   5974490  270098208
1859                  17916080 1671369102
1860                  18186640  877449254
1861                   4856990  166453056
1862                   8634070  199087300
1863                  19768080  666396633
1864                   8634070  199087300
1865                  35279890 2232953289
1866                   8634070  199087300
1867                  33828410 2898787365
1868                   9823260  289680510
1869                  20310360  321515760
1870                  33828410 2898787365
1871                  19768080  666396633
1872                  19768080  666396633
1873                  19768080  666396633
1874                   4856990  166453056
1875                  33828410 2898787365
1876                  30078990  580039656
1877                   8739580  231934077
1878                   1699350   31616190
1879                  17916080 1671369102
1880                  18186640  877449254
1881                   1712540  108598148
1882                   6251420  225478080
1883                   1905960   32390754
1884                   4002460  233948442
1885                   4856990  166453056
1886                  11241370  143032950
1887                   5374230  196363186
1888                   2105300   67781632
1889                   8739580  231934077
1890                  30962410 4694066286
1891                   3229400  179526732
1892                   1049170   50590427
1893                   1709200   58099787
1894                  24783250 1598350689
1895                  30962410 4694066286
1896                        NA         NA
1897                   2546580  125515200
1898                   1894340   74434976
1899                   3857150  543985900
1900                   3857150  543985900
1901                  30962410 4694066286
1902                   9516290  335402550
1903                  19768080  666396633
1904                   5290380   63377964
1905                   1481400   52356582
1906                   8634070  199087300
1907                   9823260  289680510
1908                  24783250 1598350689
1909                   8634070  199087300
1910                  35279890 2232953289
1911                  17916080 1671369102
1912                   5374230  196363186
1913                  21108660  262847416
1914                  33828410 2898787365
1915                   5974490  270098208
1916                   9823260  289680510
1917                   9823260  289680510
1918                  20310360  321515760
1919                   9516290  335402550
1920                  33828410 2898787365
1921                  30962410 4694066286
1922                  30962410 4694066286
1923                   9776530  322390698
1924                   4856990  166453056
1925                  20310360  321515760
1926                   9516290  335402550
1927                  33828410 2898787365
1928                   2546580  125515200
1929                  15959520 1504021671
1930                   4258870  197167500
1931                  33828410 2898787365
1932                   1607810   75672692
1933                   1953290   38580100
1934                  35279890 2232953289
1935                  17916080 1671369102
1936                   4856990  166453056
1937                   4046880   40404000
1938                   2198670    5107715
1939                   1565970   58374008
1940                  35279890 2232953289
1941                  17916080 1671369102
1942                   8634070  199087300
1943                  35279890 2232953289
1944                   1709200   58099787
1945                  30962410 4694066286
1946                  21108660  262847416
1947                  18186640  877449254
1948                  20310360  321515760
1949                  33828410 2898787365
1950                   9823260  289680510
1951                   5290380   63377964
1952                   9516290  335402550
1953                  18186640  877449254
1954                   4856990  166453056
1955                  19768080  666396633
1956                  30962410 4694066286
1957                   9776530  322390698
1958                  35279890 2232953289
1959                  21108660  262847416
1960                   2198670    5107715
1961                   2198670    5107715
1962                   4046880   40404000
1963                        NA         NA
1964                  30962410 4694066286
1965                   3857150  543985900
1966                   1905960   32390754
1967                  30962410 4694066286
1968                  20310360  321515760
1969                  35279890 2232953289
1970                  30962410 4694066286
1971                  20310360  321515760
1972                   5374230  196363186
1973                   1699350   31616190
1974                   9776530  322390698
1975                  18579150  496210924
1976                  30962410 4694066286
1977                   4046880   40404000
1978                  30962410 4694066286
1979                   3857150  543985900
1980                   3857150  543985900
1981                  30962410 4694066286
1982                  35279890 2232953289
1983                  19768080  666396633
1984                   8739580  231934077
1985                   3229400  179526732
1986                   8739580  231934077
1987                   3578970  164576646
1988                  39004000 6709196515
1989                   9823260  289680510
1990                  35279890 2232953289
1991                  24783250 1598350689
1992                  17916080 1671369102
1993                   2811160  103269568
1994                  39004000 6709196515
1995                  30962410 4694066286
1996                  33828410 2898787365
1997                   5150590  116320844
1998                  18579150  496210924
1999                   8739580  231934077
2000                   8634070  199087300
2001                   8634070  199087300
2002                   3229400  179526732
2003                    974800   25613640
2004                    740590   10320135
2005                    611970   22637790
2006                  30962410 4694066286
2007                    862150   38963080
2008                   4258870  197167500
2009                  20310360  321515760
2010                  24783250 1598350689
2011                   2546580  125515200
2012                   1712540  108598148
2013                   1894340   74434976
2014                  19768080  666396633
2015                   1131360   26535080
2016                   1481400   52356582
2017                   8634070  199087300
2018                   9823260  289680510
2019                   3229400  179526732
2020                  15959520 1504021671
2021                  33828410 2898787365
2022                   5020960  125032600
2023                   1607810   75672692
2024                   2572340   72942180
2025                   1208540   62404608
2026                   1872090   79115416
2027                   2805360  130704624
2028                  24783250 1598350689
2029                   9776530  322390698
2030                  21108660  262847416
2031                   8634070  199087300
2032                  35279890 2232953289
2033                  17916080 1671369102
2034                  19768080  666396633
2035                  15959520 1504021671
2036                   5974490  270098208
2037                  35279890 2232953289
2038                  19768080  666396633
2039                  35279890 2232953289
2040                  35279890 2232953289
2041                  35279890 2232953289
2042                  39004000 6709196515
2043                   3465640  177412575
2044                   1483750   21955050
2045                   1211150   67169784
2046                  35279890 2232953289
2047                  19768080  666396633
2048                    136400    3627532
2049                    645910   13377630
2050                  35279890 2232953289
2051                  35279890 2232953289
2052                  17916080 1671369102
2053                  17916080 1671369102
2054                  17916080 1671369102
2055                  15959520 1504021671
2056                  15959520 1504021671
2057                   9903090  754180174
2058                  39004000 6709196515
2059                   3578970  164576646
2060                  39004000 6709196515
2061                   3229400  179526732
2062                  39004000 6709196515
2063                  39004000 6709196515
2064                  39004000 6709196515
2065                  39004000 6709196515
2066                  39004000 6709196515
2067                  39004000 6709196515
2068                  39004000 6709196515
2069                   3465640  177412575
2070                   5020960  125032600
2071                  39004000 6709196515
2072                  39004000 6709196515
2073                  39004000 6709196515
2074                  19707640  421652704
2075                  39004000 6709196515
2076                  39004000 6709196515
2077                  39004000 6709196515
2078                  39004000 6709196515
2079                  39004000 6709196515
2080                  39004000 6709196515
2081                  12733330  525632043
2082                   9903090  754180174
2083                  39004000 6709196515
2084                  19707640  421652704
2085                  39004000 6709196515
2086                   5020960  125032600
2087                   1607810   75672692
2088                  12733330  525632043
2089                  39004000 6709196515
2090                   2211430   50614074
2091                  11784620  533823688
2092                        NA         NA
2093                   2546580  125515200
2094                   5150590  116320844
2095                    950330   26539968
2096                  19707640  421652704
2097                  39004000 6709196515
2098                   5150590  116320844
2099                   1481400   52356582
2100                  39004000 6709196515
2101                  12733330  525632043
2102                  19707640  421652704
2103                  15959520 1504021671
2104                  39004000 6709196515
2105                   8634070  199087300
2106                   9823260  289680510
2107                   9823260  289680510
2108                  15959520 1504021671
2109                   1845290  100689400
2110                   9903090  754180174
2111                   9903090  754180174
2112                   3465640  177412575
2113                   3835830  135184335
2114                   3229400  179526732
2115                   3578970  164576646
2116                   3578970  164576646
2117                   1735520   56594235
2118                   2805360  130704624
2119                  19707640  421652704
2120                   2811160  103269568
2121                  12733330  525632043
2122                   5020960  125032600
2123                   3229400  179526732
2124                  15959520 1504021671
2125                  15959520 1504021671
2126                  39004000 6709196515
2127                  39004000 6709196515
2128                  12733330  525632043
2129                  39004000 6709196515
2130                  39004000 6709196515
2131                  33828410 2898787365
2132                  12733330  525632043
2133                  15959520 1504021671
2134                  39004000 6709196515
2135                  15959520 1504021671
2136                   9903090  754180174
2137                  39004000 6709196515
2138                  15959520 1504021671
2139                  19707640  421652704
2140                  39004000 6709196515
2141                  19707640  421652704
2142                  15959520 1504021671
2143                  33828410 2898787365
2144                  15959520 1504021671
2145                  15959520 1504021671
2146                  15959520 1504021671
2147                   1872090   79115416
2148                  15959520 1504021671
2149                  33828410 2898787365
2150                    699520    9302028
2151                  39004000 6709196515
2152                  15959520 1504021671
2153                  13305330  507609264
2154                  13305330  507609264
2155                        NA         NA
2156                  18186640  877449254
2157                  13305330  507609264
2158                   9903090  754180174
2159                   9903090  754180174
2160                   9903090  754180174
2161                   9903090  754180174
2162                   9903090  754180174
2163                   9903090  754180174
2164                   9903090  754180174
2165                   9903090  754180174
2166                   9903090  754180174
2167                  12733330  525632043
2168                   9903090  754180174
2169                     98780     434115
2170                  30078990  580039656
2171                  15959520 1504021671
2172                    862150   38963080
2173                  39004000 6709196515
2174                        NA         NA
2175                  20310360  321515760
2176                  20310360  321515760
2177                   9516290  335402550
2178                  24783250 1598350689
2179                   9516290  335402550
2180                    266730   12129278
2181                  12733330  525632043
2182                  17916080 1671369102
2183                  39004000 6709196515
2184                   2546580  125515200
2185                  39004000 6709196515
2186                  21108660  262847416
2187                  24783250 1598350689
2188                  12733330  525632043
2189                   3857150  543985900
2190                   2198670    5107715
2191                  35279890 2232953289
2192                  19768080  666396633
2193                  35279890 2232953289
2194                        NA         NA
2195                   9776530  322390698
2196                  18186640  877449254
2197                   4258870  197167500
2198                   5020960  125032600
2199                  24783250 1598350689
2200                  18579150  496210924
2201                   4046880   40404000
2202                   5290380   63377964
2203                  18186640  877449254
2204                   5290380   63377964
2205                  39004000 6709196515
2206                   2572340   72942180
2207                   2105300   67781632
2208                  12733330  525632043
2209                        NA         NA
2210                    190610    2442892
2211                  24783250 1598350689
2212                   6251420  225478080
2213                  20310360  321515760
2214                  30962410 4694066286
2215                   4258870  197167500
2216                  19768080  666396633
2217                  35279890 2232953289
2218                   8739580  231934077
2219                  30078990  580039656
2220                  24783250 1598350689
2221                   4396180  132706944
2222                   2805360  130704624
2223                  39004000 6709196515
2224                   5020960  125032600
2225                  24783250 1598350689
2226                   9776530  322390698
2227                  36601160  999539328
2228                   8739580  231934077
2229                   4258870  197167500
2230                  13305330  507609264
2231                  30962410 4694066286
2232                  18579150  496210924
2233                  19707640  421652704
2234                  39004000 6709196515
2235                   3857150  543985900
2236                   5290380   63377964
2237                  30962410 4694066286
2238                  12733330  525632043
2239                        NA         NA
2240                   1905960   32390754
2241                  11241370  143032950
2242                  18186640  877449254
2243                   9516290  335402550
2244                   5020960  125032600
2245                   3229400  179526732
2246                   4258870  197167500
2247                   2105300   67781632
2248                  39004000 6709196515
2249                  18579150  496210924
2250                  13305330  507609264
2251                  11241370  143032950
2252                   9516290  335402550
2253                   4396180  132706944
2254                  24783250 1598350689
2255                   2196870   13577390
2256                   4046880   40404000
2257                        NA         NA
2258                   4046880   40404000
2259                        NA         NA
2260                   4046880   40404000
2261                   2198670    5107715
2262                  21108660  262847416
2263                  36601160  999539328
2264                    296260    4348775
2265                    243860    1364268
2266                    227790    2084195
2267                    420290    5159540
2268                    241390    1717248
2269                    238060    2202956
2270                    370320    2862336
2271                   1211150   67169784
2272                  39004000 6709196515
2273                   2546580  125515200
2274                   1735520   56594235
2275                  36601160  999539328
2276                  39004000 6709196515
2277                  12733330  525632043
2278                  11784620  533823688
2279                    554940    4063410
2280                   2211430   50614074
2281                    920980   13864998
2282                    950330   26539968
2283                   5020960  125032600
2284                   1008540   43474360
2285                    776080   13265385
2286                   2805360  130704624
2287                  36601160  999539328
2288                  39004000 6709196515
2289                    277540    1526400
2290                   8634070  199087300
2291                   2211430   50614074
2292                   2211430   50614074
2293                   3465640  177412575
2294                   1483750   21955050
2295                   1208540   62404608
2296                    699520    9302028
2297                    920980   13864998
2298                   1813050   85491456
2299                    950330   26539968
2300                   1483750   21955050
2301                  36601160  999539328
2302                   2805360  130704624
2303                    974800   25613640
2304                  39004000 6709196515
2305                  39004000 6709196515
2306                  36601160  999539328
2307                  11784620  533823688
2308                  39004000 6709196515
2309                   9516290  335402550
2310                  12733330  525632043
2311                  35279890 2232953289
2312                  39004000 6709196515
2313                  24783250 1598350689
2314                   8739580  231934077
2315                  35279890 2232953289
2316                  35279890 2232953289
2317                  19768080  666396633
2318                  19707640  421652704
2319                   3229400  179526732
2320                  21108660  262847416
2321                  13305330  507609264
2322                   5150590  116320844
2323                   1845290  100689400
2324                  19768080  666396633
2325                   3465640  177412575
2326                    950330   26539968
2327                   9516290  335402550
2328                  19707640  421652704
2329                  39004000 6709196515
2330                   2811160  103269568
2331                   1813050   85491456
2332                   2105300   67781632
2333                    277540    1526400
2334                   3229400  179526732
2335                    699520    9302028
2336                    611970   22637790
2337                  30962410 4694066286
2338                    461250    7119816
2339                    339440    2619501
2340                   2546580  125515200
2341                   3857150  543985900
2342                  24783250 1598350689
2343                    950330   26539968
2344                   5290380   63377964
2345                  18186640  877449254
2346                  33828410 2898787365
2347                  33828410 2898787365
2348                  19707640  421652704
2349                  24783250 1598350689
2350                  35279890 2232953289
2351                  35279890 2232953289
2352                  24783250 1598350689
2353                  35279890 2232953289
2354                  19707640  421652704
2355                  35279890 2232953289
2356                  19707640  421652704
2357                  33828410 2898787365
2358                   8739580  231934077
2359                  35279890 2232953289
2360                  19707640  421652704
2361                  35279890 2232953289
2362                  35279890 2232953289
2363                   9516290  335402550
2364                  21108660  262847416
2365                  19768080  666396633
2366                  18186640  877449254
2367                   4396180  132706944
2368                        NA         NA
2369                  19707640  421652704
2370                  35279890 2232953289
2371                  35279890 2232953289
2372                        NA         NA
2373                   3857150  543985900
2374                   4396180  132706944
2375                  30962410 4694066286
2376                   1481400   52356582
2377                  19707640  421652704
2378                  35279890 2232953289
2379                   5290380   63377964
2380                  12733330  525632043
2381                  39004000 6709196515
2382                  39004000 6709196515
2383                  24783250 1598350689
2384                  19707640  421652704
2385                  35279890 2232953289
2386                  24783250 1598350689
2387                  35279890 2232953289
2388                  35279890 2232953289
2389                   9903090  754180174
2390                  19707640  421652704
2391                  19707640  421652704
2392                  19707640  421652704
2393                  24783250 1598350689
2394                  24783250 1598350689
2395                   9903090  754180174
2396                  35279890 2232953289
2397                  35279890 2232953289
2398                   4046880   40404000
2399                        NA         NA
2400                   2196870   13577390
2401                  18579150  496210924
2402                  18579150  496210924
2403                   2196870   13577390
2404                   2196870   13577390
2405                        NA         NA
2406                   6251420  225478080
2407                  18579150  496210924
2408                   2196870   13577390
2409                        NA         NA
2410                  18579150  496210924
2411                   3857150  543985900
2412                  24783250 1598350689
2413                        NA         NA
2414                  20310360  321515760
2415                  15959520 1504021671
2416                  39004000 6709196515
2417                  12733330  525632043
2418                  24783250 1598350689
2419                  24783250 1598350689
2420                  18186640  877449254
2421                   1872090   79115416
2422                  24783250 1598350689
2423                   9776530  322390698
2424                   1481400   52356582
2425                  39004000 6709196515
2426                  24783250 1598350689
2427                   1735520   56594235
2428                   2105300   67781632
2429                  12733330  525632043
2430                  30962410 4694066286
2431                  24783250 1598350689
2432                   3857150  543985900
2433                   2572340   72942180
2434                   1872090   79115416
2435                  39004000 6709196515
2436                  20310360  321515760
2437                  24783250 1598350689
2438                  39004000 6709196515
2439                  39004000 6709196515
2440                   9516290  335402550
2441                  39004000 6709196515
2442                  12733330  525632043
2443                  20310360  321515760
2444                   1153460   46889908
2445                   2572340   72942180
2446                   1953290   38580100
2447                        NA         NA
2448                   3229400  179526732
2449                    475730    7312554
2450                        NA         NA
2451                    699520    9302028
2452                    514580    6421740
2453                    486040    3766438
2454                   2811160  103269568
2455                   1894340   74434976
2456                   1845290  100689400
2457                   1131360   26535080
2458                    950330   26539968
2459                   5020960  125032600
2460                   9776530  322390698
2461                  18186640  877449254
2462                   4396180  132706944
2463                  30962410 4694066286
2464                   1565970   58374008
2465                    669860   13277394
2466                  11784620  533823688
2467                  18579150  496210924
2468                  11241370  143032950
2469                  24783250 1598350689
2470                  13305330  507609264
2471                  11241370  143032950
2472                  24783250 1598350689
2473                  21108660  262847416
2474                   5290380   63377964
2475                  11784620  533823688
2476                  39004000 6709196515
2477                   8739580  231934077
2478                  12733330  525632043
2479                   1872090   79115416
2480                   2546580  125515200
2481                   1527760   30770538
2482                   9776530  322390698
2483                   4002460  233948442
2484                  18186640  877449254
2485                   1481400   52356582
2486                  36601160  999539328
2487                  36601160  999539328
2488                  18579150  496210924
2489                  11241370  143032950
2490                   5150590  116320844
2491                  24783250 1598350689
2492                   3578970  164576646
2493                   9516290  335402550
2494                  12733330  525632043
2495                  11241370  143032950
2496                  12733330  525632043
2497                  39004000 6709196515
2498                   2572340   72942180
2499                   9823260  289680510
2500                  11784620  533823688
2501                  24783250 1598350689
2502                   4258870  197167500
2503                   2546580  125515200
2504                    350840    1185410
2505                   3857150  543985900
2506                   4002460  233948442
2507                   5374230  196363186
2508                  30962410 4694066286
2509                   1481400   52356582
2510                  12733330  525632043
2511                  11784620  533823688
2512                   2805360  130704624
2513                  11784620  533823688
2514                   8739580  231934077
2515                  39004000 6709196515
2516                  13305330  507609264
2517                   9516290  335402550
2518                  12733330  525632043
2519                  36601160  999539328
2520                   8634070  199087300
2521                  12733330  525632043
2522                   9823260  289680510
2523                  15959520 1504021671
2524                  24783250 1598350689
2525                   3578970  164576646
2526                   5150590  116320844
2527                   6251420  225478080
2528                   5020960  125032600
2529                   1905960   32390754
2530                   4002460  233948442
2531                   5974490  270098208
2532                   9516290  335402550
2533                  36601160  999539328
2534                  39004000 6709196515
2535                    554940    4063410
2536                   1872090   79115416
2537                   1254090   46743924
2538                    920980   13864998
2539                    124750    2403665
2540                   1735520   56594235
2541                    554940    4063410
2542                   5974490  270098208
2543                        NA         NA
2544                  35279890 2232953289
2545                  35279890 2232953289
2546                    518150   21514554
2547                    462740    8319130
2548                     55730     669669
2549                    294710   12243423
2550                     42680     625218
2551                    776080   13265385
2552                  24783250 1598350689
2553                  24783250 1598350689
2554                  35279890 2232953289
2555                  35279890 2232953289
2556                  35279890 2232953289
2557                  35279890 2232953289
2558                  35279890 2232953289
2559                   1894340   74434976
2560                  24783250 1598350689
2561                   1894340   74434976
2562                    974800   25613640
2563                     86330    1355466
2564                  35279890 2232953289
2565                  24783250 1598350689
2566                  19707640  421652704
2567                  19707640  421652704
2568                    841020   19011860
2569                   3835830  135184335
2570                  11784620  533823688
2571                    202390    1919460
2572                    862150   38963080
2573                    461250    7119816
2574                    475730    7312554
2575                    776080   13265385
2576                  15959520 1504021671
2577                   9903090  754180174
2578                    626940   22404849
2579                  15959520 1504021671
2580                  15959520 1504021671
2581                  13305330  507609264
2582                  30078990  580039656
2583                  35279890 2232953289
2584                    237490    1700804
2585                   8634070  199087300
2586                     69090     159012
2587                    645910   13377630
2588                    588370    8905671
2589                   1845290  100689400
2590                   1607810   75672692
2591                        NA         NA
2592                   1153460   46889908
2593                   1894340   74434976
2594                    231150    4535888
2595                  35279890 2232953289
2596                  33828410 2898787365
2597                  13305330  507609264
2598                   4258870  197167500
2599                   2546580  125515200
2600                   3857150  543985900
2601                    596590    8809536
2602                  30078990  580039656
2603                  30078990  580039656
2604                  17916080 1671369102
2605                    161170     533868
2606                   1813050   85491456
2607                   1712540  108598148
2608                   1894340   74434976
2609                   3465640  177412575
2610                   1735520   56594235
2611                   1607810   75672692
2612                  13305330  507609264
2613                   2572340   72942180
2614                   1153460   46889908
2615                   1208540   62404608
2616                   1813050   85491456
2617                    276620    1684272
2618                  11784620  533823688
2619                        NA         NA
2620                  13305330  507609264
2621                  30078990  580039656
2622                   3857150  543985900
2623                   2105300   67781632
2624                   1565970   58374008
2625                   2105300   67781632
2626                    797960   33273240
2627                        NA         NA
2628                    305410    1825512
2629                   3857150  543985900
2630                    276620    1684272
2631                   1565970   58374008
2632                  11241370  143032950
2633                   1953290   38580100
2634                  18186640  877449254
2635                        NA         NA
2636                    841020   19011860
2637                    350840    1185410
2638                  17916080 1671369102
2639                   4002460  233948442
2640                   5374230  196363186
2641                  30078990  580039656
2642                  17916080 1671369102
2643                   6251420  225478080
2644                  19768080  666396633
2645                   9776530  322390698
2646                   4396180  132706944
2647                   9823260  289680510
2648                   3229400  179526732
2649                   2805360  130704624
2650                   4046880   40404000
2651                        NA         NA
2652                   9903090  754180174
2653                   3465640  177412575
2654                  18579150  496210924
2655                  39004000 6709196515
2656                  17916080 1671369102
2657                  17916080 1671369102
2658                  17916080 1671369102
2659                  39004000 6709196515
2660                  33828410 2898787365
2661                   9823260  289680510
2662                   4046880   40404000
2663                  20310360  321515760
2664                  18579150  496210924
2665                  39004000 6709196515
2666                  30078990  580039656
2667                  39004000 6709196515
2668                   4856990  166453056
2669                   8634070  199087300
2670                   4396180  132706944
2671                   5290380   63377964
2672                    740590   10320135
2673                  17916080 1671369102
2674                   4046880   40404000
2675                   4258870  197167500
2676                   8634070  199087300
2677                   4046880   40404000
2678                   3578970  164576646
2679                   4002460  233948442
2680                  24783250 1598350689
2681                  17916080 1671369102
2682                  35279890 2232953289
2683                    974800   25613640
2684                        NA         NA
2685                   1607810   75672692
2686                  15959520 1504021671
2687                   2211430   50614074
2688                   3835830  135184335
2689                   2811160  103269568
2690                  12733330  525632043
2691                  39004000 6709196515
2692                    841020   19011860
2693                   3229400  179526732
2694                   4258870  197167500
2695                   1813050   85491456
2696                    841020   19011860
2697                   1607810   75672692
2698                  39004000 6709196515
2699                    596590    8809536
2700                        NA         NA
2701                   1607810   75672692
2702                  39004000 6709196515
2703                  39004000 6709196515
2704                   2211430   50614074
2705                   2811160  103269568
2706                   1607810   75672692
2707                        NA         NA
2708                   5150590  116320844
2709                  19707640  421652704
2710                  12733330  525632043
2711                  39004000 6709196515
2712                  33828410 2898787365
2713                     61270     615330
2714                    462740    8319130
2715                   1131360   26535080
2716                  33828410 2898787365
2717                    518150   21514554
2718                  13305330  507609264
2719                    273260    4592154
2720                     48080     843964
2721                   1607810   75672692
2722                   9903090  754180174
2723                  39004000 6709196515
2724                   1483750   21955050
2725                  17916080 1671369102
2726                        NA         NA
2727                   1153460   46889908
2728                    241390    1717248
2729                   5974490  270098208
2730                  17916080 1671369102
2731                  30078990  580039656
2732                    199170    5178996
2733                  39004000 6709196515
2734                  39004000 6709196515
2735                  39004000 6709196515
2736                  13305330  507609264
2737                  39004000 6709196515
2738                  39004000 6709196515
2739                    554940    4063410
2740                    950330   26539968
2741                    462740    8319130
2742                   1254090   46743924
2743                   1845290  100689400
2744                  36601160  999539328
2745                  39004000 6709196515
2746                  12733330  525632043
2747                  39004000 6709196515
2748                  39004000 6709196515
2749                  39004000 6709196515
2750                  39004000 6709196515
2751                  35279890 2232953289
2752                  35279890 2232953289
2753                  24783250 1598350689
2754                  19768080  666396633
2755                  19707640  421652704
2756                  19707640  421652704
2757                  35279890 2232953289
2758                  35279890 2232953289
2759                  35279890 2232953289
2760                  35279890 2232953289
2761                  19707640  421652704
2762                  19707640  421652704
2763                  35279890 2232953289
2764                  24783250 1598350689
2765                  19768080  666396633
2766                  33828410 2898787365
2767                  12733330  525632043
2768                   1872090   79115416
2769                   9823260  289680510
2770                   2805360  130704624
2771                  35279890 2232953289
2772                        NA         NA
2773                  24783250 1598350689
2774                  30962410 4694066286
2775                  24783250 1598350689
2776                  19768080  666396633
2777                   5290380   63377964
2778                  18186640  877449254
2779                   5974490  270098208
2780                   1029690   27006454
2781                  35279890 2232953289
2782                  35279890 2232953289
2783                   1481400   52356582
2784                   9903090  754180174
2785                   8634070  199087300
2786                   1953290   38580100
2787                  30962410 4694066286
2788                   1049170   50590427
2789                   2805360  130704624
2790                  15959520 1504021671
2791                        NA         NA
2792                    862150   38963080
2793                   4258870  197167500
2794                  20310360  321515760
2795                  24783250 1598350689
2796                   3465640  177412575
2797                   9776530  322390698
2798                   1483750   21955050
2799                   4396180  132706944
2800                   5374230  196363186
2801                  30962410 4694066286
2802                  35279890 2232953289
2803                  19707640  421652704
2804                  19707640  421652704
2805                  30962410 4694066286
2806                  35279890 2232953289
2807                  35279890 2232953289
2808                  24783250 1598350689
2809                  35279890 2232953289
2810                  24783250 1598350689
2811                  24783250 1598350689
2812                  19707640  421652704
2813                  35279890 2232953289
2814                  35279890 2232953289
2815                   8739580  231934077
2816                  19707640  421652704
2817                  19707640  421652704
2818                  15959520 1504021671
2819                  35279890 2232953289
2820                  35279890 2232953289
2821                  35279890 2232953289
2822                   9903090  754180174
2823                  19707640  421652704
2824                  19707640  421652704
2825                  19707640  421652704
2826                  19768080  666396633
2827                  35279890 2232953289
2828                  24783250 1598350689
2829                   5020960  125032600
2830                   8634070  199087300
2831                   2211430   50614074
2832                  19707640  421652704
2833                  15959520 1504021671
2834                  35279890 2232953289
2835                   2811160  103269568
2836                  18579150  496210924
2837                  19768080  666396633
2838                  19707640  421652704
2839                  35279890 2232953289
2840                  24783250 1598350689
2841                   1565970   58374008
2842                  35279890 2232953289
2843                   9903090  754180174
2844                  35279890 2232953289
2845                  19707640  421652704
2846                  19707640  421652704
2847                  20310360  321515760
2848                    841020   19011860
2849                  35279890 2232953289
2850                  35279890 2232953289
2851                  19768080  666396633
2852                  19707640  421652704
2853                  35279890 2232953289
2854                  24783250 1598350689
2855                  35279890 2232953289
2856                  35279890 2232953289
2857                  24783250 1598350689
2858                  33828410 2898787365
2859                   9903090  754180174
2860                  24783250 1598350689
2861                  35279890 2232953289
2862                  35279890 2232953289
2863                   9903090  754180174
2864                   9903090  754180174
2865                  35279890 2232953289
2866                  35279890 2232953289
2867                  12733330  525632043
2868                  19707640  421652704
2869                   9903090  754180174
2870                  33828410 2898787365
2871                  18579150  496210924
2872                  18579150  496210924
2873                  18579150  496210924
2874                  18579150  496210924
2875                  18579150  496210924
2876                  18579150  496210924
2877                        NA         NA
2878                        NA         NA
2879                   9776530  322390698
2880                  18579150  496210924
2881                   2105300   67781632
2882                  20310360  321515760
2883                  18579150  496210924
2884                  30962410 4694066286
2885                   3229400  179526732
2886                   2805360  130704624
2887                   3578970  164576646
2888                   2546580  125515200
2889                   2198670    5107715
2890                   1712540  108598148
2891                   1894340   74434976
2892                   5020960  125032600
2893                   4002460  233948442
2894                   5974490  270098208
2895                   1565970   58374008
2896                   4046880   40404000
2897                  30962410 4694066286
2898                  24783250 1598350689
2899                   5290380   63377964
2900                        NA         NA
2901                   4002460  233948442
2902                   1483750   21955050
2903                  20310360  321515760
2904                  12733330  525632043
2905                  30962410 4694066286
2906                  12733330  525632043
2907                  12733330  525632043
2908                   4396180  132706944
2909                        NA         NA
2910                        NA         NA
2911                   2811160  103269568
2912                   1408700   93573144
2913                   9776530  322390698
2914                   4396180  132706944
2915                  11241370  143032950
2916                  20310360  321515760
2917                   9516290  335402550
2918                  39004000 6709196515
2919                  12733330  525632043
2920                  24783250 1598350689
2921                  30962410 4694066286
2922                  39004000 6709196515
2923                    326020    1544595
2924                        NA         NA
2925                  17916080 1671369102
2926                   4002460  233948442
2927                   1481400   52356582
2928                   1408700   93573144
2929                   2572340   72942180
2930                   2572340   72942180
2931                  12733330  525632043
2932                  39004000 6709196515
2933                   1408700   93573144
2934                  20310360  321515760
2935                  24783250 1598350689
2936                  30962410 4694066286
2937                  20310360  321515760
2938                  39004000 6709196515
2939                  39004000 6709196515
2940                  24783250 1598350689
2941                  12733330  525632043
2942                  39004000 6709196515
2943                   5020960  125032600
2944                  39004000 6709196515
2945                  39004000 6709196515
2946                  11241370  143032950
2947                   1872090   79115416
2948                   2211430   50614074
2949                   1254090   46743924
2950                  39004000 6709196515
2951                   1408700   93573144
2952                   1481400   52356582
2953                  13305330  507609264
2954                  11784620  533823688
2955                  11241370  143032950
2956                  36601160  999539328
2957                  36601160  999539328
2958                  11241370  143032950
2959                  15959520 1504021671
2960                  13305330  507609264
2961                  13305330  507609264
2962                  13305330  507609264
2963                  11784620  533823688
2964                  11784620  533823688
2965                  36601160  999539328
2966                  36601160  999539328
2967                  36601160  999539328
2968                  36601160  999539328
2969                  11784620  533823688
2970                  39004000 6709196515
2971                  13305330  507609264
2972                   2805360  130704624
2973                  11241370  143032950
2974                  11241370  143032950
2975                  15959520 1504021671
2976                  36601160  999539328
2977                  11784620  533823688
2978                    419230    3308316
2979                    315840    1509810
2980                   5020960  125032600
2981                    596590    8809536
2982                  24783250 1598350689
2983                   5020960  125032600
2984                    862150   38963080
2985                  20310360  321515760
2986                    950330   26539968
2987                   1029690   27006454
2988                  21108660  262847416
2989                    355330    3837320
2990                  20310360  321515760
2991                   5290380   63377964
2992                  30078990  580039656
2993                  30078990  580039656
2994                  15959520 1504021671
2995                  33828410 2898787365
2996                    920980   13864998
2997                   1845290  100689400
2998                  39004000 6709196515
2999                  15959520 1504021671
3000                  35279890 2232953289
3001                  24783250 1598350689
3002                  35279890 2232953289
3003                  35279890 2232953289
3004                  35279890 2232953289
3005                   3578970  164576646
3006                    448090    6103292
3007                    136400    3627532
3008                   1208540   62404608
3009                        NA         NA
3010                     86500     534564
3011                   1527760   30770538
3012                    669860   13277394
3013                  24783250 1598350689
3014                   2805360  130704624
3015                   1483750   21955050
3016                    776080   13265385
3017                   3229400  179526732
3018                    132030    1569805
3019                    862150   38963080
3020                   4002460  233948442
3021                   8739580  231934077
3022                  24783250 1598350689
3023                  35279890 2232953289
3024                  20310360  321515760
3025                  20310360  321515760
3026                  30962410 4694066286
3027                   3578970  164576646
3028                   2546580  125515200
3029                  30962410 4694066286
3030                  30962410 4694066286
3031                  15959520 1504021671
3032                   9903090  754180174
3033                    740590   10320135
3034                   2546580  125515200
3035                    359580    2702448
3036                    669860   13277394
3037                   9903090  754180174
3038                    255460    6128980
3039                   1153460   46889908
3040                    974800   25613640
3041                    514580    6421740
3042                    144250    1923700
3043                    950330   26539968
3044                  15959520 1504021671
3045                   9903090  754180174
3046                  19707640  421652704
3047                  19707640  421652704
3048                  15959520 1504021671
3049                  19707640  421652704
3050                  15959520 1504021671
3051                   2805360  130704624
3052                  35279890 2232953289
3053                   3857150  543985900
3054                  30078990  580039656
3055                  30078990  580039656
3056                  18186640  877449254
3057                   2811160  103269568
3058                   3857150  543985900
3059                   1483750   21955050
3060                    456510   15147395
3061                    152050     925158
3062                   1408700   93573144
3063                  35279890 2232953289
3064                  18579150  496210924
3065                  17916080 1671369102
3066                  30078990  580039656
3067                   1712540  108598148
3068                    797960   33273240
3069                    409990    2671248
3070                  17916080 1671369102
3071                  17916080 1671369102
3072                   3229400  179526732
3073                   1712540  108598148
3074                  11784620  533823688
3075                  19768080  666396633
3076                  33828410 2898787365
3077                  33828410 2898787365
3078                   4258870  197167500
3079                    645910   13377630
3080                    409990    2671248
3081                   3857150  543985900
3082                    570230   19144159
3083                    974800   25613640
3084                  11241370  143032950
3085                  17916080 1671369102
3086                  18579150  496210924
3087                    439590     770392
3088                   2196870   13577390
3089                  18579150  496210924
3090                   3857150  543985900
3091                     38090      62150
3092                  18186640  877449254
3093                  39004000 6709196515
3094                  33828410 2898787365
3095                  33828410 2898787365
3096                  33828410 2898787365
3097                  17916080 1671369102
3098                   3465640  177412575
3099                   4856990  166453056
3100                    326020    1544595
3101                  30962410 4694066286
3102                   8739580  231934077
3103                   5290380   63377964
3104                    339440    2619501
3105                   6251420  225478080
3106                   9776530  322390698
3107                   4856990  166453056
3108                   5374230  196363186
3109                  30962410 4694066286
3110                  17916080 1671369102
3111                  18186640  877449254
3112                   9823260  289680510
3113                   3835830  135184335
3114                  15959520 1504021671
3115                  15959520 1504021671
3116                  17916080 1671369102
3117                  30078990  580039656
3118                  30078990  580039656
3119                  17916080 1671369102
3120                  30078990  580039656
3121                  18186640  877449254
3122                   9776530  322390698
3123                   2105300   67781632
3124                    456510   15147395
3125                  21108660  262847416
3126                   5974490  270098208
3127                  18186640  877449254
3128                   5374230  196363186
3129                   8634070  199087300
3130                   9516290  335402550
3131                   1153460   46889908
3132                   8739580  231934077
3133                   3229400  179526732
3134                  35279890 2232953289
3135                   4258870  197167500
3136                    626940   22404849
3137                   1029690   27006454
3138                   2546580  125515200
3139                  24783250 1598350689
3140                   4002460  233948442
3141                  35279890 2232953289
3142                  24783250 1598350689
3143                   1527760   30770538
3144                   3578970  164576646
3145                   1813050   85491456
3146                  24783250 1598350689
3147                   2546580  125515200
3148                   9776530  322390698
3149                   1483750   21955050
3150                   1481400   52356582
3151                   5290380   63377964
3152                  17916080 1671369102
3153                   4258870  197167500
3154                   1049170   50590427
3155                        NA         NA
3156                  39004000 6709196515
3157                   2105300   67781632
3158                    294710   12243423
3159                  15959520 1504021671
3160                    553240   25430071
3161                  20310360  321515760
3162                    797960   33273240
3163                   1712540  108598148
3164                  21108660  262847416
3165                  17916080 1671369102
3166                  35279890 2232953289
3167                   5974490  270098208
3168                  21108660  262847416
3169                  17916080 1671369102
3170                  15959520 1504021671
3171                   4002460  233948442
3172                  17916080 1671369102
3173                  39004000 6709196515
3174                  11784620  533823688
3175                    626940   22404849
3176                   1483750   21955050
3177                   2105300   67781632
3178                   2572340   72942180
3179                  30962410 4694066286
3180                   4002460  233948442
3181                   9516290  335402550
3182                  24783250 1598350689
3183                   8634070  199087300
3184                  17916080 1671369102
3185                   4258870  197167500
3186                  15959520 1504021671
3187                   8634070  199087300
3188                   1712540  108598148
3189                    611970   22637790
3190                   3578970  164576646
3191                   9516290  335402550
3192                  18186640  877449254
3193                  33828410 2898787365
3194                  24783250 1598350689
3195                   5974490  270098208
3196                  18186640  877449254
3197                  30962410 4694066286
3198                   9823260  289680510
3199                   3465640  177412575
3200                   1905960   32390754
3201                  35279890 2232953289
3202                   1049170   50590427
3203                   5974490  270098208
3204                  17916080 1671369102
3205                  21108660  262847416
3206                   8739580  231934077
3207                   5290380   63377964
3208                   1211150   67169784
3209                   5020960  125032600
3210                   4856990  166453056
3211                  39004000 6709196515
3212                   3465640  177412575
3213                   3578970  164576646
3214                  21108660  262847416
3215                   5974490  270098208
3216                  17916080 1671369102
3217                  17916080 1671369102
3218                   1709200   58099787
3219                    359580    2702448
3220                  19768080  666396633
3221                    206500    3063263
3222                    570230   19144159
3223                  17916080 1671369102
3224                  15959520 1504021671
3225                   4258870  197167500
3226                    277540    1526400
3227                   2211430   50614074
3228                   3465640  177412575
3229                   5974490  270098208
3230                  39004000 6709196515
3231                   2805360  130704624
3232                  15959520 1504021671
3233                   3835830  135184335
3234                   2811160  103269568
3235                    238060    2202956
3236                    448090    6103292
3237                    132320    1457455
3238                   1483750   21955050
3239                   3229400  179526732
3240                  33828410 2898787365
3241                  15959520 1504021671
3242                  33828410 2898787365
3243                  15959520 1504021671
3244                  33828410 2898787365
3245                  33828410 2898787365
3246                  33828410 2898787365
3247                  15959520 1504021671
3248                  33828410 2898787365
3249                    776080   13265385
3250                  15959520 1504021671
3251                    247360    1551536
3252                  33828410 2898787365
3253                  15959520 1504021671
3254                  13305330  507609264
3255                    227790    2084195
3256                  13305330  507609264
3257                   1008540   43474360
3258                    373050    3951262
3259                   9903090  754180174
3260                    448090    6103292
3261                    238060    2202956
3262                  12733330  525632043
3263                  17916080 1671369102
3264                  15959520 1504021671
3265                    740590   10320135
3266                  30078990  580039656
3267                  35279890 2232953289
3268                   4396180  132706944
3269                   3835830  135184335
3270                        NA         NA
3271                  35279890 2232953289
3272                  30962410 4694066286
3273                  35279890 2232953289
3274                   2198670    5107715
3275                   9903090  754180174
3276                  35279890 2232953289
3277                  33828410 2898787365
3278                   2805360  130704624
3279                  35279890 2232953289
3280                        NA         NA
3281                   2198670    5107715
3282                        NA         NA
3283                   2196870   13577390
3284                   2196870   13577390
3285                  18579150  496210924
3286                  24783250 1598350689
3287                   5290380   63377964
3288                   5290380   63377964
3289                  39004000 6709196515
3290                    237490    1700804
3291                    419230    3308316
3292                   5374230  196363186
3293                        NA         NA
3294                        NA         NA
3295                   1483750   21955050
3296                  36601160  999539328
3297                  36601160  999539328
3298                  36601160  999539328
3299                  13305330  507609264
3300                  39004000 6709196515
3301                        NA         NA
3302                    475730    7312554
3303                     33410     294906
3304                  35279890 2232953289
3305                    171760    6305202
3306                    271160    4056210
3307                  39004000 6709196515
3308                    359580    2702448
3309                  19707640  421652704
3310                   3835830  135184335
3311                   1029690   27006454
3312                  19768080  666396633
3313                        NA         NA
3314                  18186640  877449254
3315                        NA         NA
3316                   4046880   40404000
3317                  30962410 4694066286
3318                        NA         NA
3319                  17916080 1671369102
3320                  15959520 1504021671
3321                  30078990  580039656
3322                   8634070  199087300
3323                   9776530  322390698
3324                   2105300   67781632
3325                   9776530  322390698
3326                  30962410 4694066286
3327                   3857150  543985900
3328                  20310360  321515760
3329                  33828410 2898787365
3330                   9823260  289680510
3331                   5150590  116320844
3332                  33828410 2898787365
3333                  18186640  877449254
3334                   4396180  132706944
3335                  17916080 1671369102
3336                    127640    1205106
3337                   1131360   26535080
3338                    276620    1684272
3339                        NA         NA
3340                   2211430   50614074
3341                   1845290  100689400
3342                  35279890 2232953289
3343                    124750    2403665
3344                    237490    1700804
3345                   1894340   74434976
3346                  39004000 6709196515
3347                  24783250 1598350689
3348                   4396180  132706944
3349                    277540    1526400
3350                   1254090   46743924
3351                        NA         NA
3352                    227260    1959785
3353                  30078990  580039656
3354                  11241370  143032950
3355                   2198670    5107715
3356                    221460    2938005
3357                  19768080  666396633
3358                   1735520   56594235
3359                   9516290  335402550
3360                  35279890 2232953289
3361                  19768080  666396633
3362                  35279890 2232953289
3363                  33828410 2898787365
3364                        NA         NA
3365                  35279890 2232953289
3366                        NA         NA
3367                    359580    2702448
3368                  11241370  143032950
3369                  24783250 1598350689
3370                    395200    2779440
3371                  35279890 2232953289
3372                    350840    1185410
3373                   1131360   26535080
3374                   1208540   62404608
3375                   1483750   21955050
3376                    229060     950868
3377                  13305330  507609264
3378                   1953290   38580100
3379                  13305330  507609264
3380                        NA         NA
3381                  17916080 1671369102
3382                   4046880   40404000
3383                        NA         NA
3384                        NA         NA
3385                   8739580  231934077
3386                  18186640  877449254
3387                   5290380   63377964
3388                  18186640  877449254
3389                  20310360  321515760
3390                  35279890 2232953289
3391                    740590   10320135
3392                    486040    3766438
3393                        NA         NA
3394                  12733330  525632043
3395                   2198670    5107715
3396                  13305330  507609264
3397                  15959520 1504021671
3398                   4046880   40404000
3399                   4046880   40404000
3400                        NA         NA
3401                        NA         NA
3402                    202390    1919460
3403                  36601160  999539328
3404                  36601160  999539328
3405                     79880     498666
3406                    974800   25613640
3407                  39004000 6709196515
3408                  36601160  999539328
3409                  13305330  507609264
3410                  36601160  999539328
3411                   4396180  132706944
3412                  15959520 1504021671
3413                  19768080  666396633
3414                  24783250 1598350689
3415                   2572340   72942180
3416                   1008540   43474360
3417                   9776530  322390698
3418                  18579150  496210924
3419                        NA         NA
3420                        NA         NA
3421                   1905960   32390754
3422                        NA         NA
3423                    797960   33273240
3424                   1845290  100689400
3425                   5020960  125032600
3426                  35279890 2232953289
3427                  35279890 2232953289
3428                  35279890 2232953289
3429                  35279890 2232953289
3430                   3578970  164576646
3431                  19768080  666396633
3432                  35279890 2232953289
3433                  35279890 2232953289
3434                  18579150  496210924
3435                   3835830  135184335
3436                   9903090  754180174
3437                  33828410 2898787365
3438                  35279890 2232953289
3439                  39004000 6709196515
3440                  18579150  496210924
3441                  18579150  496210924
3442                  18186640  877449254
3443                   2196870   13577390
3444                   6251420  225478080
3445                   8739580  231934077
3446                  30962410 4694066286
3447                  20310360  321515760
3448                   2198670    5107715
3449                  18579150  496210924
3450                        NA         NA
3451                   2105300   67781632
3452                   2211430   50614074
3453                        NA         NA
3454                        NA         NA
3455                   5150590  116320844
3456                  18579150  496210924
3457                   2196870   13577390
3458                        NA         NA
3459                   6251420  225478080
3460                   4396180  132706944
3461                   5150590  116320844
3462                   6251420  225478080
3463                   3857150  543985900
3464                   2811160  103269568
3465                  24783250 1598350689
3466                        NA         NA
3467                   2572340   72942180
3468                    271160    4056210
3469                    611970   22637790
3470                  13305330  507609264
3471                   4856990  166453056
3472                  36601160  999539328
3473                        NA         NA
3474                  36601160  999539328
3475                  36601160  999539328
3476                  36601160  999539328
3477                  36601160  999539328
3478                  13305330  507609264
3479                  11241370  143032950
3480                  11241370  143032950
3481                   1813050   85491456
3482                  11784620  533823688
3483                  30962410 4694066286
3484                  13305330  507609264
3485                  36601160  999539328
3486                    304660    1481176
3487                  11784620  533823688
3488                  11241370  143032950
3489                  36601160  999539328
3490                  33828410 2898787365
3491                  35279890 2232953289
3492                    304660    1481176
3493                    296260    4348775
3494                    553240   25430071
3495                   1481400   52356582
3496                  24783250 1598350689
3497                   1208540   62404608
3498                  20310360  321515760
3499                     75600     978477
3500                    554940    4063410
3501                  19707640  421652704
3502                   9903090  754180174
3503                    271160    4056210
3504                  30078990  580039656
3505                  13305330  507609264
3506                    161170     533868
3507                    195480     624524
3508                    245190    2253696
3509                    776080   13265385
3510                        NA         NA
3511                        NA         NA
3512                    195480     624524
3513                  13305330  507609264
3514                  13305330  507609264
3515                  11784620  533823688
3516                   3835830  135184335
3517                        NA         NA
3518                  11241370  143032950
3519                    461250    7119816
3520                        NA         NA
3521                   3857150  543985900
3522                    300320    4884360
3523                        NA         NA
3524                    300320    4884360
3525                  33828410 2898787365
3526                  35279890 2232953289
3527                        NA         NA
3528                   9776530  322390698
3529                    304660    1481176
3530                    645910   13377630
3531                    350840    1185410
3532                   1712540  108598148
3533                   1894340   74434976
3534                  19768080  666396633
3535                   1953290   38580100
3536                   9776530  322390698
3537                   1709200   58099787
3538                    570230   19144159
3539                   1735520   56594235
3540                   4002460  233948442
3541                        NA         NA
3542                   4396180  132706944
3543                  17916080 1671369102
3544                  30078990  580039656
3545                  30078990  580039656
3546                    554940    4063410
3547                  17916080 1671369102
3548                  18186640  877449254
3549                        NA         NA
3550                        NA         NA
3551                   4046880   40404000
3552                  33828410 2898787365
3553                  30078990  580039656
3554                  18579150  496210924
3555                   1481400   52356582
3556                   3229400  179526732
3557                  20310360  321515760
3558                   9776530  322390698
3559                   1709200   58099787
3560                   2198670    5107715
3561                   8739580  231934077
3562                   2198670    5107715
3563                   9903090  754180174
3564                   9776530  322390698
3565                  15959520 1504021671
3566                   4258870  197167500
3567                   3578970  164576646
3568                    588370    8905671
3569                  19768080  666396633
3570                   3578970  164576646
3571                  19707640  421652704
3572                   4258870  197167500
3573                    199170    5178996
3574                   9903090  754180174
3575                   1872090   79115416
3576                        NA         NA
3577                  17916080 1671369102
3578                    370320    2862336
3579                  30962410 4694066286
3580                    135570    1370272
3581                    132030    1569805
3582                  11784620  533823688
3583                   1029690   27006454
3584                    247360    1551536
3585                    841020   19011860
3586                    841020   19011860
3587                    596590    8809536
3588                  11784620  533823688
3589                  36601160  999539328
3590                  35279890 2232953289
3591                  35279890 2232953289
3592                   1735520   56594235
3593                  35279890 2232953289
3594                  35279890 2232953289
3595                   8739580  231934077
3596                        NA         NA
3597                   1894340   74434976
3598                  19768080  666396633
3599                  35279890 2232953289
3600                  35279890 2232953289
3601                  35279890 2232953289
3602                        NA         NA
3603                  33828410 2898787365
3604                  35279890 2232953289
3605                  19707640  421652704
3606                  19768080  666396633
3607                   8739580  231934077
3608                   6251420  225478080
3609                   6251420  225478080
3610                   2196870   13577390
3611                   1565970   58374008
3612                        NA         NA
3613                   3857150  543985900
3614                   1699350   31616190
3615                        NA         NA
3616                   6251420  225478080
3617                        NA         NA
3618                   5374230  196363186
3619                   1029690   27006454
3620                    596590    8809536
3621                  11784620  533823688
3622                   1953290   38580100
3623                  36601160  999539328
3624                  24783250 1598350689
3625                    373050    3951262
3626                     54280     808254
3627                    132030    1569805
3628                    241390    1717248
3629                  24783250 1598350689
3630                  15959520 1504021671
3631                   1607810   75672692
3632                  35279890 2232953289
3633                  24783250 1598350689
3634                  15959520 1504021671
3635                   1894340   74434976
3636                   1131360   26535080
3637                  19707640  421652704
3638                  19707640  421652704
3639                    776080   13265385
3640                  18186640  877449254
3641                  11241370  143032950
3642                    231150    4535888
3643                   1254090   46743924
3644                   1813050   85491456
3645                   1845290  100689400
3646                   9776530  322390698
3647                    276620    1684272
3648                        NA         NA
3649                  30078990  580039656
3650                        NA         NA
3651                   3857150  543985900
3652                    409990    2671248
3653                    461770    2392224
3654                   1211150   67169784
3655                  18579150  496210924
3656                    570230   19144159
3657                    300320    4884360
3658                        NA         NA
3659                  39004000 6709196515
3660                   6251420  225478080
3661                  17916080 1671369102
3662                  30078990  580039656
3663                  39004000 6709196515
3664                  15959520 1504021671
3665                  17916080 1671369102
3666                   1905960   32390754
3667                   8739580  231934077
3668                  17916080 1671369102
3669                   2546580  125515200
3670                   4856990  166453056
3671                   2198670    5107715
3672                   2105300   67781632
3673                        NA         NA
3674                   3465640  177412575
3675                  21108660  262847416
3676                  33828410 2898787365
3677                        NA         NA
3678                   4002460  233948442
3679                    514580    6421740
3680                  19768080  666396633
3681                  19768080  666396633
3682                   1254090   46743924
3683                    920980   13864998
3684                  35279890 2232953289
3685                  17916080 1671369102
3686                   3835830  135184335
3687                   1483750   21955050
3688                    231150    4535888
3689                  39004000 6709196515
3690                   2572340   72942180
3691                    475730    7312554
3692                    241390    1717248
3693                    776080   13265385
3694                    475730    7312554
3695                   1845290  100689400
3696                    776080   13265385
3697                  17916080 1671369102
3698                    462740    8319130
3699                  39004000 6709196515
3700                  35279890 2232953289
3701                  35279890 2232953289
3702                    974800   25613640
3703                   9776530  322390698
3704                  35279890 2232953289
3705                   2211430   50614074
3706                        NA         NA
3707                    920980   13864998
3708                        NA         NA
3709                   4046880   40404000
3710                   3578970  164576646
3711                   1712540  108598148
3712                   4002460  233948442
3713                    570230   19144159
3714                  35279890 2232953289
3715                        NA         NA
3716                  30962410 4694066286
3717                  33828410 2898787365
3718                  33828410 2898787365
3719                   2572340   72942180
3720                  24783250 1598350689
3721                  35279890 2232953289
3722                   8739580  231934077
3723                  19707640  421652704
3724                   9903090  754180174
3725                        NA         NA
3726                        NA         NA
3727                   2196870   13577390
3728                   1008540   43474360
3729                  24783250 1598350689
3730                  15959520 1504021671
3731                  39004000 6709196515
3732                    841020   19011860
3733                  11784620  533823688
3734                   1408700   93573144
3735                   1029690   27006454
3736                    202390    1919460
3737                    359580    2702448
3738                  24783250 1598350689
3739                  20310360  321515760
3740                  19707640  421652704
3741                    419230    3308316
3742                   1813050   85491456
3743                   1872090   79115416
3744                   1254090   46743924
3745                  15959520 1504021671
3746                  15959520 1504021671
3747                     67730     267668
3748                   1565970   58374008
3749                        NA         NA
3750                  30078990  580039656
3751                    181710    2269148
3752                   1029690   27006454
3753                        NA         NA
3754                        NA         NA
3755                  30078990  580039656
3756                        NA         NA
3757                    195480     624524
3758                   2196870   13577390
3759                  33828410 2898787365
3760                  17916080 1671369102
3761                   5374230  196363186
3762                   2105300   67781632
3763                   4046880   40404000
3764                   5020960  125032600
3765                   9823260  289680510
3766                   9776530  322390698
3767                   4856990  166453056
3768                   2105300   67781632
3769                   1481400   52356582
3770                   1153460   46889908
3771                  30078990  580039656
3772                   9516290  335402550
3773                  11241370  143032950
3774                   1208540   62404608
3775                   3229400  179526732
3776                   1607810   75672692
3777                   1872090   79115416
3778                   4002460  233948442
3779                  19768080  666396633
3780                   3229400  179526732
3781                   6251420  225478080
3782                  20310360  321515760
3783                   9516290  335402550
3784                   9516290  335402550
3785                  35279890 2232953289
3786                  33828410 2898787365
3787                   1872090   79115416
3788                   1607810   75672692
3789                  24783250 1598350689
3790                  35279890 2232953289
3791                  17916080 1671369102
3792                   5974490  270098208
3793                   5374230  196363186
3794                    419230    3308316
3795                    315840    1509810
3796                  15959520 1504021671
3797                  17916080 1671369102
3798                    419230    3308316
3799                    315840    1509810
3800                   1254090   46743924
3801                    475730    7312554
3802                   3465640  177412575
3803                    238060    2202956
3804                    514580    6421740
3805                  15959520 1504021671
3806                   9903090  754180174
3807                  33828410 2898787365
3808                  19707640  421652704
3809                  39004000 6709196515
3810                  20310360  321515760
3811                  39004000 6709196515
3812                     63170    3902204
3813                     63170    3902204
3814                  24783250 1598350689
3815                  39004000 6709196515
3816                        NA         NA
3817                   4396180  132706944
3818                  36601160  999539328
3819                  20310360  321515760
3820                   5290380   63377964
3821                    395200    2779440
3822                    518150   21514554
3823                   3857150  543985900
3824                  21108660  262847416
3825                  21108660  262847416
3826                  21108660  262847416
3827                  20310360  321515760
3828                  20310360  321515760
3829                   1527760   30770538
3830                   5290380   63377964
3831                   5974490  270098208
3832                   3835830  135184335
3833                   3857150  543985900
3834                    355330    3837320
3835                  39004000 6709196515
3836                  20310360  321515760
3837                   5290380   63377964
3838                   2572340   72942180
3839                    355330    3837320
3840                  39004000 6709196515
3841                  20310360  321515760
3842                   9516290  335402550
3843                   9516290  335402550
3844                   1254090   46743924
3845                  36601160  999539328
3846                  33828410 2898787365
3847                  24783250 1598350689
3848                   9516290  335402550
3849                  24783250 1598350689
3850                  24783250 1598350689
3851                   9516290  335402550
3852                   5290380   63377964
3853                  30962410 4694066286
3854                    411310    3017729
3855                   1607810   75672692
3856                   1131360   26535080
3857                   3835830  135184335
3858                   3465640  177412575
3859                   1527760   30770538
3860                   1527760   30770538
3861                    411310    3017729
3862                    626940   22404849
3863                        NA         NA
3864                  39004000 6709196515
3865                   3465640  177412575
3866                  39004000 6709196515
3867                  20310360  321515760
3868                   1527760   30770538
3869                   1527760   30770538
3870                    411310    3017729
3871                   3465640  177412575
3872                  24783250 1598350689
3873                  15959520 1504021671
3874                    206500    3063263
3875                    136400    3627532
3876                    304660    1481176
3877                  15959520 1504021671
3878                   4258870  197167500
3879                  17916080 1671369102
3880                  33828410 2898787365
3881                   4046880   40404000
3882                   1712540  108598148
3883                  39004000 6709196515
3884                  15959520 1504021671
3885                  13305330  507609264
3886                    448090    6103292
3887                   3578970  164576646
3888                  24783250 1598350689
3889                  13305330  507609264
3890                  13305330  507609264
3891                    456510   15147395
3892                        NA         NA
3893                        NA         NA
3894                   6251420  225478080
3895                  11241370  143032950
3896                   1735520   56594235
3897                        NA         NA
3898                   5974490  270098208
3899                     86330    1355466
3900                    273260    4592154
3901                   4258870  197167500
3902                   1712540  108598148
3903                   1481400   52356582
3904                    596590    8809536
3905                    974800   25613640
3906                        NA         NA
3907                   2196870   13577390
3908                  15959520 1504021671
3909                  39004000 6709196515
3910                  39004000 6709196515
3911                   2805360  130704624
3912                   1709200   58099787
3913                   1008540   43474360
3914                   2805360  130704624
3915                  11241370  143032950
3916                  13305330  507609264
3917                   1845290  100689400
3918                  35279890 2232953289
3919                  35279890 2232953289
3920                  19707640  421652704
3921                  15959520 1504021671
3922                   1845290  100689400
3923                   9903090  754180174
3924                    920980   13864998
3925                    841020   19011860
3926                   1845290  100689400
3927                  30078990  580039656
3928                        NA         NA
3929                        NA         NA
3930                    409990    2671248
3931                        NA         NA
3932                    229060     950868
3933                    122690     463443
3934                    409990    2671248
3935                  18186640  877449254
3936                  30962410 4694066286
3937                  30078990  580039656
3938                  17916080 1671369102
3939                   3578970  164576646
3940                  30962410 4694066286
3941                  21108660  262847416
3942                  19768080  666396633
3943                   2811160  103269568
3944                  17916080 1671369102
3945                  35279890 2232953289
3946                        NA         NA
3947                   5020960  125032600
3948                   5290380   63377964
3949                   1211150   67169784
3950                  17916080 1671369102
3951                  19768080  666396633
3952                  19768080  666396633
3953                    135570    1370272
3954                  24783250 1598350689
3955                    124750    2403665
3956                  39004000 6709196515
3957                        NA         NA
3958                  15959520 1504021671
3959                   2546580  125515200
3960                  15959520 1504021671
3961                  36601160  999539328
3962                  35279890 2232953289
3963                  19707640  421652704
3964                  19707640  421652704
3965                   9903090  754180174
3966                  15959520 1504021671
3967                  35279890 2232953289
3968                   8739580  231934077
3969                  39004000 6709196515
3970                  24783250 1598350689
3971                   1211150   67169784
3972                  35279890 2232953289
3973                  33828410 2898787365
3974                  19768080  666396633
3975                  19707640  421652704
3976                   9903090  754180174
3977                   9903090  754180174
3978                  19707640  421652704
3979                  19707640  421652704
3980                  15959520 1504021671
3981                  33828410 2898787365
3982                   3229400  179526732
3983                  35279890 2232953289
3984                  19707640  421652704
3985                  19707640  421652704
3986                  18579150  496210924
3987                   6251420  225478080
3988                   6251420  225478080
3989                   1872090   79115416
3990                  39004000 6709196515
3991                  24783250 1598350689
3992                  39004000 6709196515
3993                   1607810   75672692
3994                  11784620  533823688
3995                  11784620  533823688
3996                  13305330  507609264
3997                  36601160  999539328
3998                   2805360  130704624
3999                  11784620  533823688
4000                  11784620  533823688
4001                   4396180  132706944
4002                   1029690   27006454
4003                   1211150   67169784
4004                   9776530  322390698
4005                  30962410 4694066286
4006                   5290380   63377964
4007                   5374230  196363186
4008                    192640    1914915
4009                   1208540   62404608
4010                    776080   13265385
4011                   1565970   58374008
4012                   6251420  225478080
4013                   3578970  164576646
4014                   9776530  322390698
4015                    255460    6128980
4016                   2572340   72942180
4017                   5020960  125032600
4018                   1527760   30770538
4019                        NA         NA
4020                   3578970  164576646
4021                   2196870   13577390
4022                    596590    8809536
4023                   2211430   50614074
4024                  15959520 1504021671
4025                   1153460   46889908
4026                    238060    2202956
4027                  17916080 1671369102
4028                  24783250 1598350689
4029                  17916080 1671369102
4030                   4856990  166453056
4031                   8634070  199087300
4032                  35279890 2232953289
4033                        NA         NA
4034                   3465640  177412575
4035                    227260    1959785
4036                  13305330  507609264
4037                  39004000 6709196515
4038                  24783250 1598350689
4039                     98780     434115
4040                        NA         NA
4041                  30078990  580039656
4042                  19707640  421652704
4043                   3465640  177412575
4044                   2211430   50614074
4045                   4856990  166453056
4046                  20310360  321515760
4047                     95000     445662
4048                    553240   25430071
4049                   1254090   46743924
4050                   4002460  233948442
4051                   6251420  225478080
4052                   2196870   13577390
4053                        NA         NA
4054                    920980   13864998
4055                  11241370  143032950
4056                    486040    3766438
4057                   4396180  132706944
4058                   5974490  270098208
4059                   2811160  103269568
4060                   1483750   21955050
4061                   1905960   32390754
4062                   5974490  270098208
4063                   1527760   30770538
4064                   1049170   50590427
4065                   4856990  166453056
4066                  24783250 1598350689
4067                        NA         NA
4068                  12733330  525632043
4069                  15959520 1504021671
4070                  30962410 4694066286
4071                   9823260  289680510
4072                  39004000 6709196515
4073                  12733330  525632043
4074                        NA         NA
4075                  39004000 6709196515
4076                  36601160  999539328
4077                   1813050   85491456
4078                   1527760   30770538
4079                    370320    2862336
4080                  24783250 1598350689
4081                   1208540   62404608
4082                    554940    4063410
4083                  19707640  421652704
4084                    950330   26539968
4085                  35279890 2232953289
4086                     75600     978477
4087                   1211150   67169784
4088                  17916080 1671369102
4089                   3578970  164576646
4090                   3465640  177412575
4091                  19768080  666396633
4092                    950330   26539968
4093                   8739580  231934077
4094                   1481400   52356582
4095                    611970   22637790
4096                  13305330  507609264
4097                    135570    1370272
4098                  20310360  321515760
4099                  36601160  999539328
4100                   1813050   85491456
4101                    514580    6421740
4102                    841020   19011860
4103                   1131360   26535080
4104                     64110    4186224
4105                   1408700   93573144
4106                  20310360  321515760
4107                   5290380   63377964
4108                  11784620  533823688
4109                   4002460  233948442
4110                  15959520 1504021671
4111                  24783250 1598350689
4112                        NA         NA
4113                   2196870   13577390
4114                   3857150  543985900
4115                  12733330  525632043
4116                  30962410 4694066286
4117                  11241370  143032950
4118                  36601160  999539328
4119                  11241370  143032950
4120                  11241370  143032950
4121                  36601160  999539328
4122                   2805360  130704624
4123                    370320    2862336
4124                    553240   25430071
4125                   1131360   26535080
4126                   1408700   93573144
4127                   3578970  164576646
4128                  15959520 1504021671
4129                     76660     422156
4130                        NA         NA
4131                  13305330  507609264
4132                        NA         NA
4133                  35279890 2232953289
4134                  30078990  580039656
4135                   1254090   46743924
4136                  13305330  507609264
4137                  30078990  580039656
4138                  17916080 1671369102
4139                   2198670    5107715
4140                        NA         NA
4141                   1049170   50590427
4142                  33828410 2898787365
4143                  33828410 2898787365
4144                   5374230  196363186
4145                  30962410 4694066286
4146                   1208540   62404608
4147                   2811160  103269568
4148                   8634070  199087300
4149                   1408700   93573144
4150                    395200    2779440
4151                    420290    5159540
4152                  17916080 1671369102
4153                  17916080 1671369102
4154                        NA         NA
4155                   4046880   40404000
4156                   1845290  100689400
4157                    277540    1526400
4158                    554940    4063410
4159                   1008540   43474360
4160                   1029690   27006454
4161                  12733330  525632043
4162                  19707640  421652704
4163                    331090    9963286
4164                  33828410 2898787365
4165                  35279890 2232953289
4166                  19707640  421652704
 [ reached 'max' / getOption("max.print") -- omitted 5336 rows ]

creating the regression

full_regression = lm(passengers ~ origin_pop + dest_pop + distancemiles + age_distributionE.x + age_distributionE.y, data = join_2)
summary(full_regression)

Call:
lm(formula = passengers ~ origin_pop + dest_pop + distancemiles + 
    age_distributionE.x + age_distributionE.y, data = join_2)

Residuals:
    Min      1Q  Median      3Q     Max 
-294177  -61581  -24467   20680 1110019 

Coefficients:
                      Estimate Std. Error t value Pr(>|t|)    
(Intercept)         -4.234e+04  3.975e+03  -10.65   <2e-16 ***
origin_pop          -9.598e-05  4.147e-06  -23.15   <2e-16 ***
dest_pop            -9.972e-05  4.199e-06  -23.75   <2e-16 ***
distancemiles       -2.686e+01  1.864e+00  -14.41   <2e-16 ***
age_distributionE.x  8.269e-02  3.000e-03   27.57   <2e-16 ***
age_distributionE.y  8.556e-02  2.990e-03   28.61   <2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 123300 on 8919 degrees of freedom
  (577 observations deleted due to missingness)
Multiple R-squared:  0.1817,    Adjusted R-squared:  0.1813 
F-statistic: 396.1 on 5 and 8919 DF,  p-value: < 2.2e-16

#finding data on RDU for question 4

RDU_info = join_2 |>
  filter (origin == "RDU")
print(RDU_info)
   origin dest passengers distancemiles                  origin_name
1     RDU  JFK     183080           427 Raleigh-Durham International
2     RDU  MCO     259640           534 Raleigh-Durham International
3     RDU  MSP     123300           980 Raleigh-Durham International
4     RDU  ORD     201390           646 Raleigh-Durham International
5     RDU  PHL     153970           337 Raleigh-Durham International
6     RDU  EWR     195890           416 Raleigh-Durham International
7     RDU  IAD      78870           224 Raleigh-Durham International
8     RDU  AUS     101110          1162 Raleigh-Durham International
9     RDU  BNA     141990           442 Raleigh-Durham International
10    RDU  BWI     130900           255 Raleigh-Durham International
11    RDU  FLL      94610           680 Raleigh-Durham International
12    RDU  MDW     118840           632 Raleigh-Durham International
13    RDU  TPA     146550           587 Raleigh-Durham International
14    RDU  BOS     215960           612 Raleigh-Durham International
15    RDU  DCA     129930           227 Raleigh-Durham International
16    RDU  LGA     272810           431 Raleigh-Durham International
17    RDU  PHX      50940          1891 Raleigh-Durham International
18    RDU  LAX     101210          2239 Raleigh-Durham International
19    RDU  IAH      60860          1042 Raleigh-Durham International
20    RDU  DTW     130110           501 Raleigh-Durham International
21    RDU  ATL     540190           356 Raleigh-Durham International
22    RDU  SLC      55170          1823 Raleigh-Durham International
23    RDU  MIA     196350           700 Raleigh-Durham International
24    RDU  SEA     109050          2354 Raleigh-Durham International
25    RDU  SJU      36860          1433 Raleigh-Durham International
26    RDU  DEN     226520          1436 Raleigh-Durham International
27    RDU  LAS      94810          2026 Raleigh-Durham International
28    RDU  STL      41960           667 Raleigh-Durham International
29    RDU  DFW     215960          1061 Raleigh-Durham International
30    RDU  SFO      47820          2400 Raleigh-Durham International
31    RDU  DAL      46530          1052 Raleigh-Durham International
32    RDU  CLT     370480           130 Raleigh-Durham International
33    RDU  BDL       8840           532 Raleigh-Durham International
34    RDU  PIT      30750           328 Raleigh-Durham International
35    RDU  TTN      17650           373 Raleigh-Durham International
36    RDU  HOU       2980          1050 Raleigh-Durham International
37    RDU  MAF         50          1369 Raleigh-Durham International
38    RDU  ROC        420           503 Raleigh-Durham International
39    RDU  MEM        320           633 Raleigh-Durham International
40    RDU  MSY       7190           779 Raleigh-Durham International
41    RDU  SAN        950          2193 Raleigh-Durham International
42    RDU  SNA         60          2213 Raleigh-Durham International
43    RDU  MCI       2180           904 Raleigh-Durham International
44    RDU  OKC        230          1058 Raleigh-Durham International
45    RDU  SAT        310          1224 Raleigh-Durham International
46    RDU  SJC        150          2379 Raleigh-Durham International
47    RDU  AMA         10          1289 Raleigh-Durham International
48    RDU  PWM       5960           700 Raleigh-Durham International
49    RDU  SBN        190           571 Raleigh-Durham International
50    RDU  PDX         90          2363 Raleigh-Durham International
51    RDU  PVD       7280           566 Raleigh-Durham International
52    RDU  ELP         30          1606 Raleigh-Durham International
53    RDU  CMH        130           362 Raleigh-Durham International
54    RDU  MHT         40           625 Raleigh-Durham International
55    RDU  OAK       1210          2390 Raleigh-Durham International
56    RDU  RSW        210           667 Raleigh-Durham International
57    RDU  SDF        630           415 Raleigh-Durham International
58    RDU  MKE        250           689 Raleigh-Durham International
59    RDU  ECP         60           556 Raleigh-Durham International
60    RDU  ICT         60          1040 Raleigh-Durham International
61    RDU  PBI         70           638 Raleigh-Durham International
62    RDU  LGB         10          2226 Raleigh-Durham International
63    RDU  VPS         20           582 Raleigh-Durham International
64    RDU  BOI         10          2045 Raleigh-Durham International
65    RDU  SRQ        280           625 Raleigh-Durham International
66    RDU  HRL         20          1298 Raleigh-Durham International
67    RDU  ONT         10          2192 Raleigh-Durham International
68    RDU  SMF        100          2345 Raleigh-Durham International
69    RDU  RNO        160          2241 Raleigh-Durham International
70    RDU  IND       5210           489 Raleigh-Durham International
71    RDU  ABQ        160          1565 Raleigh-Durham International
72    RDU  COS         20          1436 Raleigh-Durham International
73    RDU  ALB       5520           544 Raleigh-Durham International
74    RDU  ISP       4300           459 Raleigh-Durham International
75    RDU  BUF       9710           487 Raleigh-Durham International
76    RDU  CVG       5830           390 Raleigh-Durham International
77    RDU  SYR       6620           519 Raleigh-Durham International
78    RDU  CLE       8870           416 Raleigh-Durham International
79    RDU  HVN       9430           490 Raleigh-Durham International
80    RDU  SWF       2320           463 Raleigh-Durham International
81    RDU  FAI         10          3406 Raleigh-Durham International
82    RDU  TUS         10          1856 Raleigh-Durham International
83    RDU  GEG         20          2133 Raleigh-Durham International
84    RDU  LIT         80           763 Raleigh-Durham International
85    RDU  TUL         70           957 Raleigh-Durham International
86    RDU  OMA         30           997 Raleigh-Durham International
87    RDU  PNS         80           612 Raleigh-Durham International
88    RDU  JAN        100           692 Raleigh-Durham International
   origin_cbsa origin_cbsa_name                                  dest_name
1        39580 Raleigh-Cary, NC              John F. Kennedy International
2        39580 Raleigh-Cary, NC                      Orlando International
3        39580 Raleigh-Cary, NC          Minneapolis-St Paul International
4        39580 Raleigh-Cary, NC               Chicago O'Hare International
5        39580 Raleigh-Cary, NC                 Philadelphia International
6        39580 Raleigh-Cary, NC               Newark Liberty International
7        39580 Raleigh-Cary, NC            Washington Dulles International
8        39580 Raleigh-Cary, NC           Austin - Bergstrom International
9        39580 Raleigh-Cary, NC                    Nashville International
10       39580 Raleigh-Cary, NC         Baltimore/Washington International
11       39580 Raleigh-Cary, NC    Fort Lauderdale-Hollywood International
12       39580 Raleigh-Cary, NC               Chicago Midway International
13       39580 Raleigh-Cary, NC                        Tampa International
14       39580 Raleigh-Cary, NC                        Logan International
15       39580 Raleigh-Cary, NC          Ronald Reagan Washington National
16       39580 Raleigh-Cary, NC                                  LaGuardia
17       39580 Raleigh-Cary, NC           Phoenix Sky Harbor International
18       39580 Raleigh-Cary, NC                  Los Angeles International
19       39580 Raleigh-Cary, NC       George Bush Intercontinental/Houston
20       39580 Raleigh-Cary, NC                 Detroit Metro Wayne County
21       39580 Raleigh-Cary, NC   Hartsfield-Jackson Atlanta International
22       39580 Raleigh-Cary, NC               Salt Lake City International
23       39580 Raleigh-Cary, NC                        Miami International
24       39580 Raleigh-Cary, NC               Seattle/Tacoma International
25       39580 Raleigh-Cary, NC             Luis Munoz Marin International
26       39580 Raleigh-Cary, NC                       Denver International
27       39580 Raleigh-Cary, NC                     McCarran International
28       39580 Raleigh-Cary, NC             St Louis Lambert International
29       39580 Raleigh-Cary, NC            Dallas/Fort Worth International
30       39580 Raleigh-Cary, NC                San Francisco International
31       39580 Raleigh-Cary, NC                          Dallas Love Field
32       39580 Raleigh-Cary, NC            Charlotte Douglas International
33       39580 Raleigh-Cary, NC                      Bradley International
34       39580 Raleigh-Cary, NC                   Pittsburgh International
35       39580 Raleigh-Cary, NC                             Trenton Mercer
36       39580 Raleigh-Cary, NC                            William P Hobby
37       39580 Raleigh-Cary, NC   Midland International Air and Space Port
38       39580 Raleigh-Cary, NC            Greater Rochester International
39       39580 Raleigh-Cary, NC                      Memphis International
40       39580 Raleigh-Cary, NC  Louis Armstrong New Orleans International
41       39580 Raleigh-Cary, NC                    San Diego International
42       39580 Raleigh-Cary, NC           John Wayne Airport-Orange County
43       39580 Raleigh-Cary, NC                  Kansas City International
44       39580 Raleigh-Cary, NC                          Will Rogers World
45       39580 Raleigh-Cary, NC                  San Antonio International
46       39580 Raleigh-Cary, NC    Norman Y. Mineta San Jose International
47       39580 Raleigh-Cary, NC        Rick Husband Amarillo International
48       39580 Raleigh-Cary, NC             Portland International Jetport
49       39580 Raleigh-Cary, NC                        South Bend Regional
50       39580 Raleigh-Cary, NC                     Portland International
51       39580 Raleigh-Cary, NC               Theodore Francis Green State
52       39580 Raleigh-Cary, NC                      El Paso International
53       39580 Raleigh-Cary, NC          John Glenn Columbus International
54       39580 Raleigh-Cary, NC                 Manchester-Boston Regional
55       39580 Raleigh-Cary, NC         Metropolitan Oakland International
56       39580 Raleigh-Cary, NC            Southwest Florida International
57       39580 Raleigh-Cary, NC      Louisville Muhammad Ali International
58       39580 Raleigh-Cary, NC             General Mitchell International
59       39580 Raleigh-Cary, NC    Northwest Florida Beaches International
60       39580 Raleigh-Cary, NC                      Wichita Mid-Continent
61       39580 Raleigh-Cary, NC                   Palm Beach International
62       39580 Raleigh-Cary, NC                         Long Beach Airport
63       39580 Raleigh-Cary, NC         Eglin AFB Destin Fort Walton Beach
64       39580 Raleigh-Cary, NC                         Boise Air Terminal
65       39580 Raleigh-Cary, NC           Sarasota/Bradenton International
66       39580 Raleigh-Cary, NC                       Valley International
67       39580 Raleigh-Cary, NC                      Ontario International
68       39580 Raleigh-Cary, NC                   Sacramento International
69       39580 Raleigh-Cary, NC                   Reno/Tahoe International
70       39580 Raleigh-Cary, NC                 Indianapolis International
71       39580 Raleigh-Cary, NC          Albuquerque International Sunport
72       39580 Raleigh-Cary, NC         City of Colorado Springs Municipal
73       39580 Raleigh-Cary, NC                       Albany International
74       39580 Raleigh-Cary, NC                      Long Island MacArthur
75       39580 Raleigh-Cary, NC              Buffalo Niagara International
76       39580 Raleigh-Cary, NC Cincinnati/Northern Kentucky International
77       39580 Raleigh-Cary, NC             Syracuse Hancock International
78       39580 Raleigh-Cary, NC            Cleveland-Hopkins International
79       39580 Raleigh-Cary, NC                            Tweed New Haven
80       39580 Raleigh-Cary, NC             New York Stewart International
81       39580 Raleigh-Cary, NC                    Fairbanks International
82       39580 Raleigh-Cary, NC                       Tucson International
83       39580 Raleigh-Cary, NC                      Spokane International
84       39580 Raleigh-Cary, NC                                Adams Field
85       39580 Raleigh-Cary, NC                        Tulsa International
86       39580 Raleigh-Cary, NC                            Eppley Airfield
87       39580 Raleigh-Cary, NC              Pensacola Gulf Coast Regional
88       39580 Raleigh-Cary, NC   Jackson Medgar Wiley Evers International
   dest_cbsa                                 dest_cbsa_name
1      35620          New York-Newark-Jersey City, NY-NJ-PA
2      36740                  Orlando-Kissimmee-Sanford, FL
3      33460        Minneapolis-St. Paul-Bloomington, MN-WI
4      16980             Chicago-Naperville-Elgin, IL-IN-WI
5      37980    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
6      35620          New York-Newark-Jersey City, NY-NJ-PA
7      47900   Washington-Arlington-Alexandria, DC-VA-MD-WV
8      12420               Austin-Round Rock-Georgetown, TX
9      34980 Nashville-Davidson--Murfreesboro--Franklin, TN
10     12580                  Baltimore-Columbia-Towson, MD
11     33100        Miami-Fort Lauderdale-Pompano Beach, FL
12     16980             Chicago-Naperville-Elgin, IL-IN-WI
13     45300            Tampa-St. Petersburg-Clearwater, FL
14     14460                 Boston-Cambridge-Newton, MA-NH
15     47900   Washington-Arlington-Alexandria, DC-VA-MD-WV
16     35620          New York-Newark-Jersey City, NY-NJ-PA
17     38060                      Phoenix-Mesa-Chandler, AZ
18     31080             Los Angeles-Long Beach-Anaheim, CA
19     26420           Houston-The Woodlands-Sugar Land, TX
20     19820                    Detroit-Warren-Dearborn, MI
21     12060           Atlanta-Sandy Springs-Alpharetta, GA
22     41620                             Salt Lake City, UT
23     33100        Miami-Fort Lauderdale-Pompano Beach, FL
24     42660                    Seattle-Tacoma-Bellevue, WA
25     41980                    San Juan-Bayamón-Caguas, PR
26     19740                     Denver-Aurora-Lakewood, CO
27     29820               Las Vegas-Henderson-Paradise, NV
28     41180                               St. Louis, MO-IL
29     19100                Dallas-Fort Worth-Arlington, TX
30     41860             San Francisco-Oakland-Berkeley, CA
31     19100                Dallas-Fort Worth-Arlington, TX
32     16740              Charlotte-Concord-Gastonia, NC-SC
33     25540          Hartford-East Hartford-Middletown, CT
34     38300                                 Pittsburgh, PA
35     45940                          Trenton-Princeton, NJ
36     26420           Houston-The Woodlands-Sugar Land, TX
37     33260                                    Midland, TX
38     40380                                  Rochester, NY
39     32820                              Memphis, TN-MS-AR
40     35380                       New Orleans-Metairie, LA
41     41740             San Diego-Chula Vista-Carlsbad, CA
42     31080             Los Angeles-Long Beach-Anaheim, CA
43     28140                             Kansas City, MO-KS
44     36420                              Oklahoma City, OK
45     41700                  San Antonio-New Braunfels, TX
46     41940             San Jose-Sunnyvale-Santa Clara, CA
47     11100                                   Amarillo, TX
48     38860                    Portland-South Portland, ME
49     43780                    South Bend-Mishawaka, IN-MI
50     38900            Portland-Vancouver-Hillsboro, OR-WA
51     39300                      Providence-Warwick, RI-MA
52     21340                                    El Paso, TX
53     18140                                   Columbus, OH
54     31700                          Manchester-Nashua, NH
55     41860             San Francisco-Oakland-Berkeley, CA
56     15980                      Cape Coral-Fort Myers, FL
57     31140             Louisville/Jefferson County, KY-IN
58     33340                         Milwaukee-Waukesha, WI
59     37460                                Panama City, FL
60     48620                                    Wichita, KS
61     33100        Miami-Fort Lauderdale-Pompano Beach, FL
62     31080             Los Angeles-Long Beach-Anaheim, CA
63     18880         Crestview-Fort Walton Beach-Destin, FL
64     14260                                 Boise City, ID
65     35840              North Port-Sarasota-Bradenton, FL
66     15180                      Brownsville-Harlingen, TX
67     40140           Riverside-San Bernardino-Ontario, CA
68     40900                Sacramento-Roseville-Folsom, CA
69     39900                                       Reno, NV
70     26900               Indianapolis-Carmel-Anderson, IN
71     10740                                Albuquerque, NM
72     17820                           Colorado Springs, CO
73     10580                    Albany-Schenectady-Troy, NY
74     35620          New York-Newark-Jersey City, NY-NJ-PA
75     15380                        Buffalo-Cheektowaga, NY
76     17140                           Cincinnati, OH-KY-IN
77     45060                                   Syracuse, NY
78     17460                           Cleveland-Elyria, OH
79     35300                          New Haven-Milford, CT
80     39100           Poughkeepsie-Newburgh-Middletown, NY
81     21820                                  Fairbanks, AK
82     46060                                     Tucson, AZ
83     44060                     Spokane-Spokane Valley, WA
84     30780       Little Rock-North Little Rock-Conway, AR
85     46140                                      Tulsa, OK
86     36540                    Omaha-Council Bluffs, NE-IA
87     37860                 Pensacola-Ferry Pass-Brent, FL
88     27140                                    Jackson, MS
                        NAME.x total_populationE.x total_populationM.x
1  Raleigh-Cary, NC Metro Area             1420825                  NA
2  Raleigh-Cary, NC Metro Area             1420825                  NA
3  Raleigh-Cary, NC Metro Area             1420825                  NA
4  Raleigh-Cary, NC Metro Area             1420825                  NA
5  Raleigh-Cary, NC Metro Area             1420825                  NA
6  Raleigh-Cary, NC Metro Area             1420825                  NA
7  Raleigh-Cary, NC Metro Area             1420825                  NA
8  Raleigh-Cary, NC Metro Area             1420825                  NA
9  Raleigh-Cary, NC Metro Area             1420825                  NA
10 Raleigh-Cary, NC Metro Area             1420825                  NA
11 Raleigh-Cary, NC Metro Area             1420825                  NA
12 Raleigh-Cary, NC Metro Area             1420825                  NA
13 Raleigh-Cary, NC Metro Area             1420825                  NA
14 Raleigh-Cary, NC Metro Area             1420825                  NA
15 Raleigh-Cary, NC Metro Area             1420825                  NA
16 Raleigh-Cary, NC Metro Area             1420825                  NA
17 Raleigh-Cary, NC Metro Area             1420825                  NA
18 Raleigh-Cary, NC Metro Area             1420825                  NA
19 Raleigh-Cary, NC Metro Area             1420825                  NA
20 Raleigh-Cary, NC Metro Area             1420825                  NA
21 Raleigh-Cary, NC Metro Area             1420825                  NA
22 Raleigh-Cary, NC Metro Area             1420825                  NA
23 Raleigh-Cary, NC Metro Area             1420825                  NA
24 Raleigh-Cary, NC Metro Area             1420825                  NA
25 Raleigh-Cary, NC Metro Area             1420825                  NA
26 Raleigh-Cary, NC Metro Area             1420825                  NA
27 Raleigh-Cary, NC Metro Area             1420825                  NA
28 Raleigh-Cary, NC Metro Area             1420825                  NA
29 Raleigh-Cary, NC Metro Area             1420825                  NA
30 Raleigh-Cary, NC Metro Area             1420825                  NA
31 Raleigh-Cary, NC Metro Area             1420825                  NA
32 Raleigh-Cary, NC Metro Area             1420825                  NA
33 Raleigh-Cary, NC Metro Area             1420825                  NA
34 Raleigh-Cary, NC Metro Area             1420825                  NA
35 Raleigh-Cary, NC Metro Area             1420825                  NA
36 Raleigh-Cary, NC Metro Area             1420825                  NA
37 Raleigh-Cary, NC Metro Area             1420825                  NA
38 Raleigh-Cary, NC Metro Area             1420825                  NA
39 Raleigh-Cary, NC Metro Area             1420825                  NA
40 Raleigh-Cary, NC Metro Area             1420825                  NA
41 Raleigh-Cary, NC Metro Area             1420825                  NA
42 Raleigh-Cary, NC Metro Area             1420825                  NA
43 Raleigh-Cary, NC Metro Area             1420825                  NA
44 Raleigh-Cary, NC Metro Area             1420825                  NA
45 Raleigh-Cary, NC Metro Area             1420825                  NA
46 Raleigh-Cary, NC Metro Area             1420825                  NA
47 Raleigh-Cary, NC Metro Area             1420825                  NA
48 Raleigh-Cary, NC Metro Area             1420825                  NA
49 Raleigh-Cary, NC Metro Area             1420825                  NA
50 Raleigh-Cary, NC Metro Area             1420825                  NA
51 Raleigh-Cary, NC Metro Area             1420825                  NA
52 Raleigh-Cary, NC Metro Area             1420825                  NA
53 Raleigh-Cary, NC Metro Area             1420825                  NA
54 Raleigh-Cary, NC Metro Area             1420825                  NA
55 Raleigh-Cary, NC Metro Area             1420825                  NA
56 Raleigh-Cary, NC Metro Area             1420825                  NA
57 Raleigh-Cary, NC Metro Area             1420825                  NA
58 Raleigh-Cary, NC Metro Area             1420825                  NA
59 Raleigh-Cary, NC Metro Area             1420825                  NA
60 Raleigh-Cary, NC Metro Area             1420825                  NA
61 Raleigh-Cary, NC Metro Area             1420825                  NA
62 Raleigh-Cary, NC Metro Area             1420825                  NA
63 Raleigh-Cary, NC Metro Area             1420825                  NA
64 Raleigh-Cary, NC Metro Area             1420825                  NA
65 Raleigh-Cary, NC Metro Area             1420825                  NA
66 Raleigh-Cary, NC Metro Area             1420825                  NA
67 Raleigh-Cary, NC Metro Area             1420825                  NA
68 Raleigh-Cary, NC Metro Area             1420825                  NA
69 Raleigh-Cary, NC Metro Area             1420825                  NA
70 Raleigh-Cary, NC Metro Area             1420825                  NA
71 Raleigh-Cary, NC Metro Area             1420825                  NA
72 Raleigh-Cary, NC Metro Area             1420825                  NA
73 Raleigh-Cary, NC Metro Area             1420825                  NA
74 Raleigh-Cary, NC Metro Area             1420825                  NA
75 Raleigh-Cary, NC Metro Area             1420825                  NA
76 Raleigh-Cary, NC Metro Area             1420825                  NA
77 Raleigh-Cary, NC Metro Area             1420825                  NA
78 Raleigh-Cary, NC Metro Area             1420825                  NA
79 Raleigh-Cary, NC Metro Area             1420825                  NA
80 Raleigh-Cary, NC Metro Area             1420825                  NA
81 Raleigh-Cary, NC Metro Area             1420825                  NA
82 Raleigh-Cary, NC Metro Area             1420825                  NA
83 Raleigh-Cary, NC Metro Area             1420825                  NA
84 Raleigh-Cary, NC Metro Area             1420825                  NA
85 Raleigh-Cary, NC Metro Area             1420825                  NA
86 Raleigh-Cary, NC Metro Area             1420825                  NA
87 Raleigh-Cary, NC Metro Area             1420825                  NA
88 Raleigh-Cary, NC Metro Area             1420825                  NA
   age_distributionE.x age_distributionM.x
1               698689                 221
2               698689                 221
3               698689                 221
4               698689                 221
5               698689                 221
6               698689                 221
7               698689                 221
8               698689                 221
9               698689                 221
10              698689                 221
11              698689                 221
12              698689                 221
13              698689                 221
14              698689                 221
15              698689                 221
16              698689                 221
17              698689                 221
18              698689                 221
19              698689                 221
20              698689                 221
21              698689                 221
22              698689                 221
23              698689                 221
24              698689                 221
25              698689                 221
26              698689                 221
27              698689                 221
28              698689                 221
29              698689                 221
30              698689                 221
31              698689                 221
32              698689                 221
33              698689                 221
34              698689                 221
35              698689                 221
36              698689                 221
37              698689                 221
38              698689                 221
39              698689                 221
40              698689                 221
41              698689                 221
42              698689                 221
43              698689                 221
44              698689                 221
45              698689                 221
46              698689                 221
47              698689                 221
48              698689                 221
49              698689                 221
50              698689                 221
51              698689                 221
52              698689                 221
53              698689                 221
54              698689                 221
55              698689                 221
56              698689                 221
57              698689                 221
58              698689                 221
59              698689                 221
60              698689                 221
61              698689                 221
62              698689                 221
63              698689                 221
64              698689                 221
65              698689                 221
66              698689                 221
67              698689                 221
68              698689                 221
69              698689                 221
70              698689                 221
71              698689                 221
72              698689                 221
73              698689                 221
74              698689                 221
75              698689                 221
76              698689                 221
77              698689                 221
78              698689                 221
79              698689                 221
80              698689                 221
81              698689                 221
82              698689                 221
83              698689                 221
84              698689                 221
85              698689                 221
86              698689                 221
87              698689                 221
88              698689                 221
                                                      NAME.y
1           New York-Newark-Jersey City, NY-NJ-PA Metro Area
2                   Orlando-Kissimmee-Sanford, FL Metro Area
3         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
4              Chicago-Naperville-Elgin, IL-IN-WI Metro Area
5     Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
6           New York-Newark-Jersey City, NY-NJ-PA Metro Area
7    Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
8                Austin-Round Rock-Georgetown, TX Metro Area
9  Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
10                  Baltimore-Columbia-Towson, MD Metro Area
11        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
12             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
13            Tampa-St. Petersburg-Clearwater, FL Metro Area
14                 Boston-Cambridge-Newton, MA-NH Metro Area
15   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
16          New York-Newark-Jersey City, NY-NJ-PA Metro Area
17                      Phoenix-Mesa-Chandler, AZ Metro Area
18             Los Angeles-Long Beach-Anaheim, CA Metro Area
19           Houston-The Woodlands-Sugar Land, TX Metro Area
20                    Detroit-Warren-Dearborn, MI Metro Area
21           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
22                             Salt Lake City, UT Metro Area
23        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
24                    Seattle-Tacoma-Bellevue, WA Metro Area
25                    San Juan-Bayamón-Caguas, PR Metro Area
26                     Denver-Aurora-Lakewood, CO Metro Area
27               Las Vegas-Henderson-Paradise, NV Metro Area
28                               St. Louis, MO-IL Metro Area
29                Dallas-Fort Worth-Arlington, TX Metro Area
30             San Francisco-Oakland-Berkeley, CA Metro Area
31                Dallas-Fort Worth-Arlington, TX Metro Area
32              Charlotte-Concord-Gastonia, NC-SC Metro Area
33          Hartford-East Hartford-Middletown, CT Metro Area
34                                 Pittsburgh, PA Metro Area
35                          Trenton-Princeton, NJ Metro Area
36           Houston-The Woodlands-Sugar Land, TX Metro Area
37                                    Midland, TX Metro Area
38                                  Rochester, NY Metro Area
39                              Memphis, TN-MS-AR Metro Area
40                       New Orleans-Metairie, LA Metro Area
41             San Diego-Chula Vista-Carlsbad, CA Metro Area
42             Los Angeles-Long Beach-Anaheim, CA Metro Area
43                             Kansas City, MO-KS Metro Area
44                              Oklahoma City, OK Metro Area
45                  San Antonio-New Braunfels, TX Metro Area
46             San Jose-Sunnyvale-Santa Clara, CA Metro Area
47                                   Amarillo, TX Metro Area
48                    Portland-South Portland, ME Metro Area
49                    South Bend-Mishawaka, IN-MI Metro Area
50            Portland-Vancouver-Hillsboro, OR-WA Metro Area
51                      Providence-Warwick, RI-MA Metro Area
52                                    El Paso, TX Metro Area
53                                   Columbus, OH Metro Area
54                          Manchester-Nashua, NH Metro Area
55             San Francisco-Oakland-Berkeley, CA Metro Area
56                      Cape Coral-Fort Myers, FL Metro Area
57             Louisville/Jefferson County, KY-IN Metro Area
58                         Milwaukee-Waukesha, WI Metro Area
59                                Panama City, FL Metro Area
60                                    Wichita, KS Metro Area
61        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
62             Los Angeles-Long Beach-Anaheim, CA Metro Area
63         Crestview-Fort Walton Beach-Destin, FL Metro Area
64                                 Boise City, ID Metro Area
65              North Port-Sarasota-Bradenton, FL Metro Area
66                      Brownsville-Harlingen, TX Metro Area
67           Riverside-San Bernardino-Ontario, CA Metro Area
68                Sacramento-Roseville-Folsom, CA Metro Area
69                                       Reno, NV Metro Area
70               Indianapolis-Carmel-Anderson, IN Metro Area
71                                Albuquerque, NM Metro Area
72                           Colorado Springs, CO Metro Area
73                    Albany-Schenectady-Troy, NY Metro Area
74          New York-Newark-Jersey City, NY-NJ-PA Metro Area
75                        Buffalo-Cheektowaga, NY Metro Area
76                           Cincinnati, OH-KY-IN Metro Area
77                                   Syracuse, NY Metro Area
78                           Cleveland-Elyria, OH Metro Area
79                          New Haven-Milford, CT Metro Area
80           Poughkeepsie-Newburgh-Middletown, NY Metro Area
81                                  Fairbanks, AK Metro Area
82                                     Tucson, AZ Metro Area
83                     Spokane-Spokane Valley, WA Metro Area
84       Little Rock-North Little Rock-Conway, AR Metro Area
85                                      Tulsa, OK Metro Area
86                    Omaha-Council Bluffs, NE-IA Metro Area
87                 Pensacola-Ferry Pass-Brent, FL Metro Area
88                                    Jackson, MS Metro Area
   total_populationE.y total_populationM.y age_distributionE.y
1             19908595                  NA             9713298
2              2679298                  NA             1318555
3              3678328                  NA             1837913
4              9566955                  NA             4718471
5              6232894                  NA             3033772
6             19908595                  NA             9713298
7              6346083                  NA             3128067
8              2296377                  NA             1160944
9              1990873                  NA              978574
10             2840005                  NA             1374325
11             6123949                  NA             3001027
12             9566955                  NA             4718471
13             3194310                  NA             1562880
14             4912449                  NA             2407307
15             6346083                  NA             3128067
16            19908595                  NA             9713298
17             4864209                  NA             2434382
18            13111917                  NA             6515114
19             7142603                  NA             3563435
20             4375604                  NA             2148947
21             6094752                  NA             2965233
22             1254675                  NA              635422
23             6123949                  NA             3001027
24             4001701                  NA             2024424
25             2073546                  NA              975289
26             2959386                  NA             1493164
27             2265926                  NA             1137581
28             2813523                  NA             1375126
29             7673379                  NA             3806912
30             4692242                  NA             2342253
31             7673379                  NA             3806912
32             2668688                  NA             1305000
33             1215703                 422              594920
34             2365501                  NA             1162773
35              383732                  NA              189495
36             7142603                  NA             3563435
37              174621                  NA               89435
38             1086859                  NA              532509
39             1335804                  NA              641128
40             1264357                  NA              612537
41             3289701                  NA             1667851
42            13111917                  NA             6515114
43             2190750                  NA             1084347
44             1428923                  NA              708697
45             2570862                  NA             1280273
46             1981584                  NA             1011796
47              269278                 239              135933
48              552916                  NA              270938
49              323992                  NA              159346
50             2505312                  NA             1250855
51             1670949                  NA              818990
52              867161                  NA              431851
53             2137223                  NA             1061042
54              422733                  NA              212276
55             4692242                  NA             2342253
56              772902                  NA              380685
57             1282588                  NA              630858
58             1568940                  NA              770847
59              181055                  NA               90237
60              646794                  NA              322648
61             6123949                  NA             3001027
62            13111917                  NA             6515114
63              288639                  NA              146836
64              771602                  NA              388362
65              844461                  NA              407362
66              421854                  NA              208182
67             4610050                  NA             2315218
68             2394673                  NA             1181313
69              490769                  NA              249622
70             2109957                  NA             1038760
71              915968                  NA              453044
72              755081                  NA              384572
73              901729                  NA              444836
74            19908595                  NA             9713298
75             1163462                  NA              568061
76             2253528                  NA             1113732
77              658694                  NA              322943
78             2079759                  NA             1012336
79              866377                  58              420485
80              697704                  NA              348873
81               96299                  NA               52279
82             1042393                  NA              516095
83              585485                  NA              292820
84              749290                  NA              363653
85             1017724                  NA              503252
86              966688                  NA              483251
87              510290                  NA              256202
88              591397                  NA              285117
   age_distributionM.y grouped_dest_passengers   dest_pop
1                  650                38846110 6649470730
2                  326                20309490  340270846
3                  458                12877300  540714216
4                  425                33355530 2908354320
5                  332                 9903470  735481492
6                  650                38846110 6649470730
7                  735                15908200 1484983422
8                  432                 8760710  238823208
9                  496                 8668170  193114681
10                 218                 9819040  292520515
11                 195                24375750 1567730944
12                 425                33355530 2908354320
13                 249                 9504360  344985480
14                 403                12843550  550194288
15                 735                15908200 1484983422
16                 650                38846110 6649470730
17                 157                19326570  671260842
18                  NA                30305010 4667842452
19                 532                17731000 1664226499
20                 188                11581260  542574896
21                 880                36046920 1005634080
22                 145                10784180  144287625
23                 195                24375750 1567730944
24                  73                17698440  496210924
25                 435                 4303230  126486306
26                 389                28512200  571161498
27                  NA                20921910  271911120
28                 423                 6010310  289792869
29                 442                34690690 2255973426
30                 320                17716130  882141496
31                 442                34690690 2255973426
32                 381                19485700  416315328
33                 926                 2608440   72942180
34                 204                 3479050  175047074
35                  92                  352680    3837320
36                 532                17731000 1664226499
37                 316                  573110    8905671
38                 342                 1021670   47821796
39                 280                 1820580   81484044
40                 452                 5148900  117585201
41                  NA                 9543350  342128904
42                  NA                30305010 4667842452
43                 492                 4302940  208121250
44                 296                 1729780   95737841
45                 338                 3828130  244231890
46                 354                 4742370  166453056
47                 280                  329610   11040398
48                 223                  953610   23222472
49                 109                  236200    4859880
50                 406                 6214440  225478080
51                 468                 1422430   90231246
52                 177                 1610000   60701270
53                 342                 3256520  188075624
54                  44                  632460   18177519
55                 320                17716130  882141496
56                  73                 5232400   67242474
57                 398                 1621270   84650808
58                 201                 2557720  112963680
59                 148                  729320    8690640
60                 249                  613820   22637790
61                 195                24375750 1567730944
62                  NA                30305010 4667842452
63                 223                  666310   11834199
64                 230                 1944450   48610926
65                 124                 1457760   50667660
66                 136                  449340   19827138
67                 243                 3835670  585476350
68                 252                 5386650  203547205
69                 187                 1909710   36316906
70                 572                 3598220  170906517
71                 376                 2092800   69613568
72                 211                 1054220   52100589
73                 160                 1166370   51398553
74                 650                38846110 6649470730
75                 155                 1892340   73298106
76                 640                 2832500  126197568
77                 249                 1041010   25030372
78                 195                 3844560  153902166
79                 915                  266710   12129278
80                  85                   62920    4186224
81                 219                  447870     962990
82                 117                 1526650   60458794
83                 126                 1701380   30445220
84                 316                  868800   35965920
85                 211                 1230310   62081164
86                 270                 1914290   66701472
87                 214                 1121150   23473340
88                 421                  551030   23655880
   grouped_origin_passengers origin_pop
1                    5020960  125032600
2                    5020960  125032600
3                    5020960  125032600
4                    5020960  125032600
5                    5020960  125032600
6                    5020960  125032600
7                    5020960  125032600
8                    5020960  125032600
9                    5020960  125032600
10                   5020960  125032600
11                   5020960  125032600
12                   5020960  125032600
13                   5020960  125032600
14                   5020960  125032600
15                   5020960  125032600
16                   5020960  125032600
17                   5020960  125032600
18                   5020960  125032600
19                   5020960  125032600
20                   5020960  125032600
21                   5020960  125032600
22                   5020960  125032600
23                   5020960  125032600
24                   5020960  125032600
25                   5020960  125032600
26                   5020960  125032600
27                   5020960  125032600
28                   5020960  125032600
29                   5020960  125032600
30                   5020960  125032600
31                   5020960  125032600
32                   5020960  125032600
33                   5020960  125032600
34                   5020960  125032600
35                   5020960  125032600
36                   5020960  125032600
37                   5020960  125032600
38                   5020960  125032600
39                   5020960  125032600
40                   5020960  125032600
41                   5020960  125032600
42                   5020960  125032600
43                   5020960  125032600
44                   5020960  125032600
45                   5020960  125032600
46                   5020960  125032600
47                   5020960  125032600
48                   5020960  125032600
49                   5020960  125032600
50                   5020960  125032600
51                   5020960  125032600
52                   5020960  125032600
53                   5020960  125032600
54                   5020960  125032600
55                   5020960  125032600
56                   5020960  125032600
57                   5020960  125032600
58                   5020960  125032600
59                   5020960  125032600
60                   5020960  125032600
61                   5020960  125032600
62                   5020960  125032600
63                   5020960  125032600
64                   5020960  125032600
65                   5020960  125032600
66                   5020960  125032600
67                   5020960  125032600
68                   5020960  125032600
69                   5020960  125032600
70                   5020960  125032600
71                   5020960  125032600
72                   5020960  125032600
73                   5020960  125032600
74                   5020960  125032600
75                   5020960  125032600
76                   5020960  125032600
77                   5020960  125032600
78                   5020960  125032600
79                   5020960  125032600
80                   5020960  125032600
81                   5020960  125032600
82                   5020960  125032600
83                   5020960  125032600
84                   5020960  125032600
85                   5020960  125032600
86                   5020960  125032600
87                   5020960  125032600
88                   5020960  125032600

#finding data on Portland, OR (PDX)

PDX_info = join_2 |>
  filter(origin == "PDX")
print(PDX_info)
   origin dest passengers distancemiles            origin_name origin_cbsa
1     PDX  MSP     231140          1426 Portland International       38900
2     PDX  BOI      81040           344 Portland International       38900
3     PDX  BUR      71560           817 Portland International       38900
4     PDX  FAT      27380           626 Portland International       38900
5     PDX  OAK     196830           543 Portland International       38900
6     PDX  SAN     195180           933 Portland International       38900
7     PDX  SBP      17890           722 Portland International       38900
8     PDX  SFO     354140           550 Portland International       38900
9     PDX  SJC     240540           569 Portland International       38900
10    PDX  SMF     173420           479 Portland International       38900
11    PDX  STS      23120           489 Portland International       38900
12    PDX  ABQ      28950          1111 Portland International       38900
13    PDX  JFK     129440          2454 Portland International       38900
14    PDX  SBA      19440           784 Portland International       38900
15    PDX  MFR      23090           222 Portland International       38900
16    PDX  SEA     504200           129 Portland International       38900
17    PDX  DEN     474230           991 Portland International       38900
18    PDX  LAS     441990           763 Portland International       38900
19    PDX  PHX     374630          1009 Portland International       38900
20    PDX  ATL     197620          2172 Portland International       38900
21    PDX  LAX     394570           834 Portland International       38900
22    PDX  SLC     279390           630 Portland International       38900
23    PDX  IAD      39970          2327 Portland International       38900
24    PDX  IAH      80760          1825 Portland International       38900
25    PDX  ONT      53440           838 Portland International       38900
26    PDX  SNA     131180           859 Portland International       38900
27    PDX  BOS      59440          2537 Portland International       38900
28    PDX  DFW     276680          1616 Portland International       38900
29    PDX  HNL      55380          2603 Portland International       38900
30    PDX  TUS      21020          1119 Portland International       38900
31    PDX  ORD     252910          1739 Portland International       38900
32    PDX  MDW      65430          1751 Portland International       38900
33    PDX  ANC      59640          1542 Portland International       38900
34    PDX  PSP      49350           873 Portland International       38900
35    PDX  RNO      39370           444 Portland International       38900
36    PDX  GEG      74320           279 Portland International       38900
37    PDX  KOA      31200          2607 Portland International       38900
38    PDX  AUS      45210          1715 Portland International       38900
39    PDX  FLL      10810          2694 Portland International       38900
40    PDX  EWR     109160          2434 Portland International       38900
41    PDX  RDM       1000           116 Portland International       38900
42    PDX  MCO      57470          2534 Portland International       38900
43    PDX  STL       8150          1708 Portland International       38900
44    PDX  DCA      44410          2350 Portland International       38900
45    PDX  CLT      40490          2282 Portland International       38900
46    PDX  MCI      12330          1482 Portland International       38900
47    PDX  DTW      53570          1953 Portland International       38900
48    PDX  LIH      26080          2631 Portland International       38900
49    PDX  OGG      47830          2562 Portland International       38900
50    PDX  DAL       4530          1626 Portland International       38900
51    PDX  HOU       1100          1843 Portland International       38900
52    PDX  BIL       1090           679 Portland International       38900
53    PDX  TPA       2350          2497 Portland International       38900
54    PDX  PDT        260           182 Portland International       38900
55    PDX  LGB       2510           846 Portland International       38900
56    PDX  BZN       1760           554 Portland International       38900
57    PDX  BWI       1020          2358 Portland International       38900
58    PDX  OKC        210          1484 Portland International       38900
59    PDX  SAT        150          1714 Portland International       38900
60    PDX  BDL         90          2470 Portland International       38900
61    PDX  CHS         30          2411 Portland International       38900
62    PDX  MSY        570          2050 Portland International       38900
63    PDX  MAF         20          1441 Portland International       38900
64    PDX  COS        250          1028 Portland International       38900
65    PDX  PNS         30          2170 Portland International       38900
66    PDX  ELP         40          1288 Portland International       38900
67    PDX  DSM         50          1471 Portland International       38900
68    PDX  OMA        200          1369 Portland International       38900
69    PDX  JAX         40          2429 Portland International       38900
70    PDX  GRR         10          1833 Portland International       38900
71    PDX  ICT         30          1406 Portland International       38900
72    PDX  MKE        120          1718 Portland International       38900
73    PDX  CVG        120          1975 Portland International       38900
74    PDX  BNA       1160          1973 Portland International       38900
75    PDX  PHL         50          2406 Portland International       38900
76    PDX  BUF        130          2157 Portland International       38900
77    PDX  PAE       4200           161 Portland International       38900
78    PDX  CMH         10          2034 Portland International       38900
79    PDX  SDF         30          1950 Portland International       38900
80    PDX  ECP         10          2240 Portland International       38900
81    PDX  MSO       1490           418 Portland International       38900
82    PDX  MEM        330          1854 Portland International       38900
83    PDX  CLE        190          2045 Portland International       38900
84    PDX  LGA         60          2445 Portland International       38900
85    PDX  FCA        540           437 Portland International       38900
86    PDX  ROC        120          2203 Portland International       38900
87    PDX  IND         60          1877 Portland International       38900
88    PDX  RIC         40          2379 Portland International       38900
89    PDX  PIT         10          2148 Portland International       38900
90    PDX  RSW         20          2598 Portland International       38900
                      origin_cbsa_name
1  Portland-Vancouver-Hillsboro, OR-WA
2  Portland-Vancouver-Hillsboro, OR-WA
3  Portland-Vancouver-Hillsboro, OR-WA
4  Portland-Vancouver-Hillsboro, OR-WA
5  Portland-Vancouver-Hillsboro, OR-WA
6  Portland-Vancouver-Hillsboro, OR-WA
7  Portland-Vancouver-Hillsboro, OR-WA
8  Portland-Vancouver-Hillsboro, OR-WA
9  Portland-Vancouver-Hillsboro, OR-WA
10 Portland-Vancouver-Hillsboro, OR-WA
11 Portland-Vancouver-Hillsboro, OR-WA
12 Portland-Vancouver-Hillsboro, OR-WA
13 Portland-Vancouver-Hillsboro, OR-WA
14 Portland-Vancouver-Hillsboro, OR-WA
15 Portland-Vancouver-Hillsboro, OR-WA
16 Portland-Vancouver-Hillsboro, OR-WA
17 Portland-Vancouver-Hillsboro, OR-WA
18 Portland-Vancouver-Hillsboro, OR-WA
19 Portland-Vancouver-Hillsboro, OR-WA
20 Portland-Vancouver-Hillsboro, OR-WA
21 Portland-Vancouver-Hillsboro, OR-WA
22 Portland-Vancouver-Hillsboro, OR-WA
23 Portland-Vancouver-Hillsboro, OR-WA
24 Portland-Vancouver-Hillsboro, OR-WA
25 Portland-Vancouver-Hillsboro, OR-WA
26 Portland-Vancouver-Hillsboro, OR-WA
27 Portland-Vancouver-Hillsboro, OR-WA
28 Portland-Vancouver-Hillsboro, OR-WA
29 Portland-Vancouver-Hillsboro, OR-WA
30 Portland-Vancouver-Hillsboro, OR-WA
31 Portland-Vancouver-Hillsboro, OR-WA
32 Portland-Vancouver-Hillsboro, OR-WA
33 Portland-Vancouver-Hillsboro, OR-WA
34 Portland-Vancouver-Hillsboro, OR-WA
35 Portland-Vancouver-Hillsboro, OR-WA
36 Portland-Vancouver-Hillsboro, OR-WA
37 Portland-Vancouver-Hillsboro, OR-WA
38 Portland-Vancouver-Hillsboro, OR-WA
39 Portland-Vancouver-Hillsboro, OR-WA
40 Portland-Vancouver-Hillsboro, OR-WA
41 Portland-Vancouver-Hillsboro, OR-WA
42 Portland-Vancouver-Hillsboro, OR-WA
43 Portland-Vancouver-Hillsboro, OR-WA
44 Portland-Vancouver-Hillsboro, OR-WA
45 Portland-Vancouver-Hillsboro, OR-WA
46 Portland-Vancouver-Hillsboro, OR-WA
47 Portland-Vancouver-Hillsboro, OR-WA
48 Portland-Vancouver-Hillsboro, OR-WA
49 Portland-Vancouver-Hillsboro, OR-WA
50 Portland-Vancouver-Hillsboro, OR-WA
51 Portland-Vancouver-Hillsboro, OR-WA
52 Portland-Vancouver-Hillsboro, OR-WA
53 Portland-Vancouver-Hillsboro, OR-WA
54 Portland-Vancouver-Hillsboro, OR-WA
55 Portland-Vancouver-Hillsboro, OR-WA
56 Portland-Vancouver-Hillsboro, OR-WA
57 Portland-Vancouver-Hillsboro, OR-WA
58 Portland-Vancouver-Hillsboro, OR-WA
59 Portland-Vancouver-Hillsboro, OR-WA
60 Portland-Vancouver-Hillsboro, OR-WA
61 Portland-Vancouver-Hillsboro, OR-WA
62 Portland-Vancouver-Hillsboro, OR-WA
63 Portland-Vancouver-Hillsboro, OR-WA
64 Portland-Vancouver-Hillsboro, OR-WA
65 Portland-Vancouver-Hillsboro, OR-WA
66 Portland-Vancouver-Hillsboro, OR-WA
67 Portland-Vancouver-Hillsboro, OR-WA
68 Portland-Vancouver-Hillsboro, OR-WA
69 Portland-Vancouver-Hillsboro, OR-WA
70 Portland-Vancouver-Hillsboro, OR-WA
71 Portland-Vancouver-Hillsboro, OR-WA
72 Portland-Vancouver-Hillsboro, OR-WA
73 Portland-Vancouver-Hillsboro, OR-WA
74 Portland-Vancouver-Hillsboro, OR-WA
75 Portland-Vancouver-Hillsboro, OR-WA
76 Portland-Vancouver-Hillsboro, OR-WA
77 Portland-Vancouver-Hillsboro, OR-WA
78 Portland-Vancouver-Hillsboro, OR-WA
79 Portland-Vancouver-Hillsboro, OR-WA
80 Portland-Vancouver-Hillsboro, OR-WA
81 Portland-Vancouver-Hillsboro, OR-WA
82 Portland-Vancouver-Hillsboro, OR-WA
83 Portland-Vancouver-Hillsboro, OR-WA
84 Portland-Vancouver-Hillsboro, OR-WA
85 Portland-Vancouver-Hillsboro, OR-WA
86 Portland-Vancouver-Hillsboro, OR-WA
87 Portland-Vancouver-Hillsboro, OR-WA
88 Portland-Vancouver-Hillsboro, OR-WA
89 Portland-Vancouver-Hillsboro, OR-WA
90 Portland-Vancouver-Hillsboro, OR-WA
                                    dest_name dest_cbsa
1           Minneapolis-St Paul International     33460
2                          Boise Air Terminal     14260
3                                    Bob Hope     31080
4               Fresno Yosemite International     23420
5          Metropolitan Oakland International     41860
6                     San Diego International     41740
7                    San Luis County Regional     42020
8                 San Francisco International     41860
9     Norman Y. Mineta San Jose International     41940
10                   Sacramento International     40900
11          Charles M. Schulz - Sonoma County     42220
12          Albuquerque International Sunport     10740
13              John F. Kennedy International     35620
14                    Santa Barbara Municipal     42200
15       Rogue Valley International - Medford     32780
16               Seattle/Tacoma International     42660
17                       Denver International     19740
18                     McCarran International     29820
19           Phoenix Sky Harbor International     38060
20   Hartsfield-Jackson Atlanta International     12060
21                  Los Angeles International     31080
22               Salt Lake City International     41620
23            Washington Dulles International     47900
24       George Bush Intercontinental/Houston     26420
25                      Ontario International     40140
26           John Wayne Airport-Orange County     31080
27                        Logan International     14460
28            Dallas/Fort Worth International     19100
29              Daniel K Inouye International     46520
30                       Tucson International     46060
31               Chicago O'Hare International     16980
32               Chicago Midway International     16980
33        Ted Stevens Anchorage International     11260
34                 Palm Springs International     40140
35                   Reno/Tahoe International     39900
36                      Spokane International     44060
37      Kona International Airport at Keahole     25900
38           Austin - Bergstrom International     12420
39    Fort Lauderdale-Hollywood International     33100
40               Newark Liberty International     35620
41                              Roberts Field     13460
42                      Orlando International     36740
43             St Louis Lambert International     41180
44          Ronald Reagan Washington National     47900
45            Charlotte Douglas International     16740
46                  Kansas City International     28140
47                 Detroit Metro Wayne County     19820
48                              Lihue Airport     28180
49                            Kahului Airport     27980
50                          Dallas Love Field     19100
51                            William P Hobby     26420
52               Billings Logan International     13740
53                        Tampa International     45300
54       Eastern Oregon Regional at Pendleton     25840
55                         Long Beach Airport     31080
56          Bozeman Yellowstone International     14580
57         Baltimore/Washington International     12580
58                          Will Rogers World     36420
59                  San Antonio International     41700
60                      Bradley International     25540
61               Charleston AFB/International     16700
62  Louis Armstrong New Orleans International     35380
63   Midland International Air and Space Port     33260
64         City of Colorado Springs Municipal     17820
65              Pensacola Gulf Coast Regional     37860
66                      El Paso International     21340
67                   Des Moines International     19780
68                            Eppley Airfield     36540
69                 Jacksonville International     27260
70               Gerald R. Ford International     24340
71                      Wichita Mid-Continent     48620
72             General Mitchell International     33340
73 Cincinnati/Northern Kentucky International     17140
74                    Nashville International     34980
75                 Philadelphia International     37980
76              Buffalo Niagara International     15380
77                           Snohomish County     42660
78          John Glenn Columbus International     18140
79      Louisville Muhammad Ali International     31140
80    Northwest Florida Beaches International     37460
81                     Missoula International     33540
82                      Memphis International     32820
83            Cleveland-Hopkins International     17460
84                                  LaGuardia     35620
85                 Glacier Park International     28060
86            Greater Rochester International     40380
87                 Indianapolis International     26900
88                     Richmond International     40060
89                   Pittsburgh International     38300
90            Southwest Florida International     15980
                                   dest_cbsa_name
1         Minneapolis-St. Paul-Bloomington, MN-WI
2                                  Boise City, ID
3              Los Angeles-Long Beach-Anaheim, CA
4                                      Fresno, CA
5              San Francisco-Oakland-Berkeley, CA
6              San Diego-Chula Vista-Carlsbad, CA
7                 San Luis Obispo-Paso Robles, CA
8              San Francisco-Oakland-Berkeley, CA
9              San Jose-Sunnyvale-Santa Clara, CA
10                Sacramento-Roseville-Folsom, CA
11                        Santa Rosa-Petaluma, CA
12                                Albuquerque, NM
13          New York-Newark-Jersey City, NY-NJ-PA
14                  Santa Maria-Santa Barbara, CA
15                                    Medford, OR
16                    Seattle-Tacoma-Bellevue, WA
17                     Denver-Aurora-Lakewood, CO
18               Las Vegas-Henderson-Paradise, NV
19                      Phoenix-Mesa-Chandler, AZ
20           Atlanta-Sandy Springs-Alpharetta, GA
21             Los Angeles-Long Beach-Anaheim, CA
22                             Salt Lake City, UT
23   Washington-Arlington-Alexandria, DC-VA-MD-WV
24           Houston-The Woodlands-Sugar Land, TX
25           Riverside-San Bernardino-Ontario, CA
26             Los Angeles-Long Beach-Anaheim, CA
27                 Boston-Cambridge-Newton, MA-NH
28                Dallas-Fort Worth-Arlington, TX
29                             Urban Honolulu, HI
30                                     Tucson, AZ
31             Chicago-Naperville-Elgin, IL-IN-WI
32             Chicago-Naperville-Elgin, IL-IN-WI
33                                  Anchorage, AK
34           Riverside-San Bernardino-Ontario, CA
35                                       Reno, NV
36                     Spokane-Spokane Valley, WA
37                                       Hilo, HI
38               Austin-Round Rock-Georgetown, TX
39        Miami-Fort Lauderdale-Pompano Beach, FL
40          New York-Newark-Jersey City, NY-NJ-PA
41                                       Bend, OR
42                  Orlando-Kissimmee-Sanford, FL
43                               St. Louis, MO-IL
44   Washington-Arlington-Alexandria, DC-VA-MD-WV
45              Charlotte-Concord-Gastonia, NC-SC
46                             Kansas City, MO-KS
47                    Detroit-Warren-Dearborn, MI
48                                      Kapaa, HI
49                    Kahului-Wailuku-Lahaina, HI
50                Dallas-Fort Worth-Arlington, TX
51           Houston-The Woodlands-Sugar Land, TX
52                                   Billings, MT
53            Tampa-St. Petersburg-Clearwater, FL
54                        Hermiston-Pendleton, OR
55             Los Angeles-Long Beach-Anaheim, CA
56                                    Bozeman, MT
57                  Baltimore-Columbia-Towson, MD
58                              Oklahoma City, OK
59                  San Antonio-New Braunfels, TX
60          Hartford-East Hartford-Middletown, CT
61                Charleston-North Charleston, SC
62                       New Orleans-Metairie, LA
63                                    Midland, TX
64                           Colorado Springs, CO
65                 Pensacola-Ferry Pass-Brent, FL
66                                    El Paso, TX
67                 Des Moines-West Des Moines, IA
68                    Omaha-Council Bluffs, NE-IA
69                               Jacksonville, FL
70                      Grand Rapids-Kentwood, MI
71                                    Wichita, KS
72                         Milwaukee-Waukesha, WI
73                           Cincinnati, OH-KY-IN
74 Nashville-Davidson--Murfreesboro--Franklin, TN
75    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
76                        Buffalo-Cheektowaga, NY
77                    Seattle-Tacoma-Bellevue, WA
78                                   Columbus, OH
79             Louisville/Jefferson County, KY-IN
80                                Panama City, FL
81                                   Missoula, MT
82                              Memphis, TN-MS-AR
83                           Cleveland-Elyria, OH
84          New York-Newark-Jersey City, NY-NJ-PA
85                                  Kalispell, MT
86                                  Rochester, NY
87               Indianapolis-Carmel-Anderson, IN
88                                   Richmond, VA
89                                 Pittsburgh, PA
90                      Cape Coral-Fort Myers, FL
                                           NAME.x total_populationE.x
1  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
2  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
3  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
4  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
5  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
6  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
7  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
8  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
9  Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
10 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
11 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
12 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
13 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
14 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
15 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
16 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
17 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
18 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
19 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
20 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
21 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
22 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
23 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
24 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
25 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
26 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
27 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
28 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
29 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
30 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
31 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
32 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
33 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
34 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
35 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
36 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
37 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
38 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
39 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
40 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
41 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
42 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
43 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
44 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
45 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
46 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
47 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
48 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
49 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
50 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
51 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
52 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
53 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
54 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
55 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
56 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
57 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
58 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
59 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
60 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
61 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
62 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
63 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
64 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
65 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
66 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
67 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
68 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
69 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
70 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
71 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
72 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
73 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
74 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
75 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
76 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
77 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
78 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
79 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
80 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
81 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
82 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
83 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
84 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
85 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
86 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
87 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
88 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
89 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
90 Portland-Vancouver-Hillsboro, OR-WA Metro Area             2505312
   total_populationM.x age_distributionE.x age_distributionM.x
1                   NA             1250855                 406
2                   NA             1250855                 406
3                   NA             1250855                 406
4                   NA             1250855                 406
5                   NA             1250855                 406
6                   NA             1250855                 406
7                   NA             1250855                 406
8                   NA             1250855                 406
9                   NA             1250855                 406
10                  NA             1250855                 406
11                  NA             1250855                 406
12                  NA             1250855                 406
13                  NA             1250855                 406
14                  NA             1250855                 406
15                  NA             1250855                 406
16                  NA             1250855                 406
17                  NA             1250855                 406
18                  NA             1250855                 406
19                  NA             1250855                 406
20                  NA             1250855                 406
21                  NA             1250855                 406
22                  NA             1250855                 406
23                  NA             1250855                 406
24                  NA             1250855                 406
25                  NA             1250855                 406
26                  NA             1250855                 406
27                  NA             1250855                 406
28                  NA             1250855                 406
29                  NA             1250855                 406
30                  NA             1250855                 406
31                  NA             1250855                 406
32                  NA             1250855                 406
33                  NA             1250855                 406
34                  NA             1250855                 406
35                  NA             1250855                 406
36                  NA             1250855                 406
37                  NA             1250855                 406
38                  NA             1250855                 406
39                  NA             1250855                 406
40                  NA             1250855                 406
41                  NA             1250855                 406
42                  NA             1250855                 406
43                  NA             1250855                 406
44                  NA             1250855                 406
45                  NA             1250855                 406
46                  NA             1250855                 406
47                  NA             1250855                 406
48                  NA             1250855                 406
49                  NA             1250855                 406
50                  NA             1250855                 406
51                  NA             1250855                 406
52                  NA             1250855                 406
53                  NA             1250855                 406
54                  NA             1250855                 406
55                  NA             1250855                 406
56                  NA             1250855                 406
57                  NA             1250855                 406
58                  NA             1250855                 406
59                  NA             1250855                 406
60                  NA             1250855                 406
61                  NA             1250855                 406
62                  NA             1250855                 406
63                  NA             1250855                 406
64                  NA             1250855                 406
65                  NA             1250855                 406
66                  NA             1250855                 406
67                  NA             1250855                 406
68                  NA             1250855                 406
69                  NA             1250855                 406
70                  NA             1250855                 406
71                  NA             1250855                 406
72                  NA             1250855                 406
73                  NA             1250855                 406
74                  NA             1250855                 406
75                  NA             1250855                 406
76                  NA             1250855                 406
77                  NA             1250855                 406
78                  NA             1250855                 406
79                  NA             1250855                 406
80                  NA             1250855                 406
81                  NA             1250855                 406
82                  NA             1250855                 406
83                  NA             1250855                 406
84                  NA             1250855                 406
85                  NA             1250855                 406
86                  NA             1250855                 406
87                  NA             1250855                 406
88                  NA             1250855                 406
89                  NA             1250855                 406
90                  NA             1250855                 406
                                                      NAME.y
1         Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
2                                  Boise City, ID Metro Area
3              Los Angeles-Long Beach-Anaheim, CA Metro Area
4                                      Fresno, CA Metro Area
5              San Francisco-Oakland-Berkeley, CA Metro Area
6              San Diego-Chula Vista-Carlsbad, CA Metro Area
7                 San Luis Obispo-Paso Robles, CA Metro Area
8              San Francisco-Oakland-Berkeley, CA Metro Area
9              San Jose-Sunnyvale-Santa Clara, CA Metro Area
10                Sacramento-Roseville-Folsom, CA Metro Area
11                        Santa Rosa-Petaluma, CA Metro Area
12                                Albuquerque, NM Metro Area
13          New York-Newark-Jersey City, NY-NJ-PA Metro Area
14                  Santa Maria-Santa Barbara, CA Metro Area
15                                    Medford, OR Metro Area
16                    Seattle-Tacoma-Bellevue, WA Metro Area
17                     Denver-Aurora-Lakewood, CO Metro Area
18               Las Vegas-Henderson-Paradise, NV Metro Area
19                      Phoenix-Mesa-Chandler, AZ Metro Area
20           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
21             Los Angeles-Long Beach-Anaheim, CA Metro Area
22                             Salt Lake City, UT Metro Area
23   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
24           Houston-The Woodlands-Sugar Land, TX Metro Area
25           Riverside-San Bernardino-Ontario, CA Metro Area
26             Los Angeles-Long Beach-Anaheim, CA Metro Area
27                 Boston-Cambridge-Newton, MA-NH Metro Area
28                Dallas-Fort Worth-Arlington, TX Metro Area
29                             Urban Honolulu, HI Metro Area
30                                     Tucson, AZ Metro Area
31             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
32             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
33                                  Anchorage, AK Metro Area
34           Riverside-San Bernardino-Ontario, CA Metro Area
35                                       Reno, NV Metro Area
36                     Spokane-Spokane Valley, WA Metro Area
37                                       Hilo, HI Micro Area
38               Austin-Round Rock-Georgetown, TX Metro Area
39        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
40          New York-Newark-Jersey City, NY-NJ-PA Metro Area
41                                       Bend, OR Metro Area
42                  Orlando-Kissimmee-Sanford, FL Metro Area
43                               St. Louis, MO-IL Metro Area
44   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
45              Charlotte-Concord-Gastonia, NC-SC Metro Area
46                             Kansas City, MO-KS Metro Area
47                    Detroit-Warren-Dearborn, MI Metro Area
48                                      Kapaa, HI Micro Area
49                    Kahului-Wailuku-Lahaina, HI Metro Area
50                Dallas-Fort Worth-Arlington, TX Metro Area
51           Houston-The Woodlands-Sugar Land, TX Metro Area
52                                   Billings, MT Metro Area
53            Tampa-St. Petersburg-Clearwater, FL Metro Area
54                        Hermiston-Pendleton, OR Micro Area
55             Los Angeles-Long Beach-Anaheim, CA Metro Area
56                                    Bozeman, MT Micro Area
57                  Baltimore-Columbia-Towson, MD Metro Area
58                              Oklahoma City, OK Metro Area
59                  San Antonio-New Braunfels, TX Metro Area
60          Hartford-East Hartford-Middletown, CT Metro Area
61                Charleston-North Charleston, SC Metro Area
62                       New Orleans-Metairie, LA Metro Area
63                                    Midland, TX Metro Area
64                           Colorado Springs, CO Metro Area
65                 Pensacola-Ferry Pass-Brent, FL Metro Area
66                                    El Paso, TX Metro Area
67                 Des Moines-West Des Moines, IA Metro Area
68                    Omaha-Council Bluffs, NE-IA Metro Area
69                               Jacksonville, FL Metro Area
70                      Grand Rapids-Kentwood, MI Metro Area
71                                    Wichita, KS Metro Area
72                         Milwaukee-Waukesha, WI Metro Area
73                           Cincinnati, OH-KY-IN Metro Area
74 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
75    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
76                        Buffalo-Cheektowaga, NY Metro Area
77                    Seattle-Tacoma-Bellevue, WA Metro Area
78                                   Columbus, OH Metro Area
79             Louisville/Jefferson County, KY-IN Metro Area
80                                Panama City, FL Metro Area
81                                   Missoula, MT Metro Area
82                              Memphis, TN-MS-AR Metro Area
83                           Cleveland-Elyria, OH Metro Area
84          New York-Newark-Jersey City, NY-NJ-PA Metro Area
85                                  Kalispell, MT Micro Area
86                                  Rochester, NY Metro Area
87               Indianapolis-Carmel-Anderson, IN Metro Area
88                                   Richmond, VA Metro Area
89                                 Pittsburgh, PA Metro Area
90                      Cape Coral-Fort Myers, FL Metro Area
   total_populationE.y total_populationM.y age_distributionE.y
1              3678328                  NA             1837913
2               771602                  NA              388362
3             13111917                  NA             6515114
4              1008280                  NA              506526
5              4692242                  NA             2342253
6              3289701                  NA             1667851
7               281712                  NA              142477
8              4692242                  NA             2342253
9              1981584                  NA             1011796
10             2394673                  NA             1181313
11              488436                  NA              240478
12              915968                  NA              453044
13            19908595                  NA             9713298
14              445213                  NA              223753
15              222604                  NA              109360
16             4001701                  NA             2024424
17             2959386                  NA             1493164
18             2265926                  NA             1137581
19             4864209                  NA             2434382
20             6094752                  NA             2965233
21            13111917                  NA             6515114
22             1254675                  NA              635422
23             6346083                  NA             3128067
24             7142603                  NA             3563435
25             4610050                  NA             2315218
26            13111917                  NA             6515114
27             4912449                  NA             2407307
28             7673379                  NA             3806912
29             1010100                  NA              512085
30             1042393                  NA              516095
31             9566955                  NA             4718471
32             9566955                  NA             4718471
33              399335                  NA              205955
34             4610050                  NA             2315218
35              490769                  NA              249622
36              585485                  NA              292820
37              202163                  NA              100828
38             2296377                  NA             1160944
39             6123949                  NA             3001027
40            19908595                  NA             9713298
41              199352                  NA               99597
42             2679298                  NA             1318555
43             2813523                  NA             1375126
44             6346083                  NA             3128067
45             2668688                  NA             1305000
46             2190750                  NA             1084347
47             4375604                  NA             2148947
48               73511                  NA               36809
49              164765                  21               82304
50             7673379                  NA             3806912
51             7142603                  NA             3563435
52              185147                  NA               92047
53             3194310                  NA             1562880
54               92044                  NA               48073
55            13111917                  NA             6515114
56              119685                  NA               62534
57             2840005                  NA             1374325
58             1428923                  NA              708697
59             2570862                  NA             1280273
60             1215703                 422              594920
61              803398                  NA              394257
62             1264357                  NA              612537
63              174621                  NA               89435
64              755081                  NA              384572
65              510290                  NA              256202
66              867161                  NA              431851
67              711490                  NA              355020
68              966688                  NA              483251
69             1613587                  NA              790463
70             1087068                  NA              546278
71              646794                  NA              322648
72             1568940                  NA              770847
73             2253528                  NA             1113732
74             1990873                  NA              978574
75             6232894                  NA             3033772
76             1163462                  NA              568061
77             4001701                  NA             2024424
78             2137223                  NA             1061042
79             1282588                  NA              630858
80              181055                  NA               90237
81              118541                  NA               59633
82             1335804                  NA              641128
83             2079759                  NA             1012336
84            19908595                  NA             9713298
85              105950                  NA               53095
86             1086859                  NA              532509
87             2109957                  NA             1038760
88             1316145                  NA              640643
89             2365501                  NA             1162773
90              772902                  NA              380685
   age_distributionM.y grouped_dest_passengers   dest_pop
1                  458                12877300  540714216
2                  230                 1944450   48610926
3                   NA                30305010 4667842452
4                   56                  803620   33273240
5                  320                17716130  882141496
6                   NA                 9543350  342128904
7                  194                  244720    2253696
8                  320                17716130  882141496
9                  354                 4742370  166453056
10                 252                 5386650  203547205
11                 204                  301060    4884360
12                 376                 2092800   69613568
13                 650                38846110 6649470730
14                 185                  568460   16472881
15                 231                  410120    2226040
16                  73                17698440  496210924
17                 389                28512200  571161498
18                  NA                20921910  271911120
19                 157                19326570  671260842
20                 880                36046920 1005634080
21                  NA                30305010 4667842452
22                 145                10784180  144287625
23                 735                15908200 1484983422
24                 532                17731000 1664226499
25                 243                 3835670  585476350
26                  NA                30305010 4667842452
27                 403                12843550  550194288
28                 442                34690690 2255973426
29                  30                 3462700   33333300
30                 117                 1526650   60458794
31                 425                33355530 2908354320
32                 425                33355530 2908354320
33                 208                 1725420   14376060
34                 243                 3835670  585476350
35                 187                 1909710   36316906
36                 126                 1701380   30445220
37                  55                 1366930    5256238
38                 432                 8760710  238823208
39                 195                24375750 1567730944
40                 650                38846110 6649470730
41                 226                  461460    2192872
42                 326                20309490  340270846
43                 423                 6010310  289792869
44                 735                15908200 1484983422
45                 381                19485700  416315328
46                 492                 4302940  208121250
47                 188                11581260  542574896
48                 115                  963790     955643
49                 124                 2131480    4119125
50                 442                34690690 2255973426
51                 532                17731000 1664226499
52                 125                  303450    1481176
53                 249                 9504360  344985480
54                 146                     260      92044
55                  NA                30305010 4667842452
56                 190                 1027250    6822045
57                 218                 9819040  292520515
58                 296                 1729780   95737841
59                 338                 3828130  244231890
60                 926                 2608440   72942180
61                 163                 2215040   53827666
62                 452                 5148900  117585201
63                 316                  573110    8905671
64                 211                 1054220   52100589
65                 214                 1121150   23473340
66                 177                 1610000   60701270
67                 278                  984810   32017050
68                 270                 1914290   66701472
69                 387                 2808920   93588046
70                 323                 1261610   51092196
71                 249                  613820   22637790
72                 201                 2557720  112963680
73                 640                 2832500  126197568
74                 496                 8668170  193114681
75                 332                 9903470  735481492
76                 155                 1892340   73298106
77                  73                17698440  496210924
78                 342                 3256520  188075624
79                 398                 1621270   84650808
80                 148                  729320    8690640
81                 128                  345400    1422492
82                 280                 1820580   81484044
83                 195                 3844560  153902166
84                 650                38846110 6649470730
85                 130                  374250    1483300
86                 342                 1021670   47821796
87                 572                 3598220  170906517
88                 629                 1738780   56594235
89                 204                 3479050  175047074
90                  73                 5232400   67242474
   grouped_origin_passengers origin_pop
1                    6251420  225478080
2                    6251420  225478080
3                    6251420  225478080
4                    6251420  225478080
5                    6251420  225478080
6                    6251420  225478080
7                    6251420  225478080
8                    6251420  225478080
9                    6251420  225478080
10                   6251420  225478080
11                   6251420  225478080
12                   6251420  225478080
13                   6251420  225478080
14                   6251420  225478080
15                   6251420  225478080
16                   6251420  225478080
17                   6251420  225478080
18                   6251420  225478080
19                   6251420  225478080
20                   6251420  225478080
21                   6251420  225478080
22                   6251420  225478080
23                   6251420  225478080
24                   6251420  225478080
25                   6251420  225478080
26                   6251420  225478080
27                   6251420  225478080
28                   6251420  225478080
29                   6251420  225478080
30                   6251420  225478080
31                   6251420  225478080
32                   6251420  225478080
33                   6251420  225478080
34                   6251420  225478080
35                   6251420  225478080
36                   6251420  225478080
37                   6251420  225478080
38                   6251420  225478080
39                   6251420  225478080
40                   6251420  225478080
41                   6251420  225478080
42                   6251420  225478080
43                   6251420  225478080
44                   6251420  225478080
45                   6251420  225478080
46                   6251420  225478080
47                   6251420  225478080
48                   6251420  225478080
49                   6251420  225478080
50                   6251420  225478080
51                   6251420  225478080
52                   6251420  225478080
53                   6251420  225478080
54                   6251420  225478080
55                   6251420  225478080
56                   6251420  225478080
57                   6251420  225478080
58                   6251420  225478080
59                   6251420  225478080
60                   6251420  225478080
61                   6251420  225478080
62                   6251420  225478080
63                   6251420  225478080
64                   6251420  225478080
65                   6251420  225478080
66                   6251420  225478080
67                   6251420  225478080
68                   6251420  225478080
69                   6251420  225478080
70                   6251420  225478080
71                   6251420  225478080
72                   6251420  225478080
73                   6251420  225478080
74                   6251420  225478080
75                   6251420  225478080
76                   6251420  225478080
77                   6251420  225478080
78                   6251420  225478080
79                   6251420  225478080
80                   6251420  225478080
81                   6251420  225478080
82                   6251420  225478080
83                   6251420  225478080
84                   6251420  225478080
85                   6251420  225478080
86                   6251420  225478080
87                   6251420  225478080
88                   6251420  225478080
89                   6251420  225478080
90                   6251420  225478080

#finding data on El paso, TX (ELP)

ELP_info = join_2 |>
  filter(origin == "ELP")
print(ELP_info)
   origin dest passengers distancemiles           origin_name origin_cbsa
1     ELP  IAH      78010           667 El Paso International       21340
2     ELP  AUS     157020           528 El Paso International       21340
3     ELP  DAL     167630           562 El Paso International       21340
4     ELP  DEN     135400           563 El Paso International       21340
5     ELP  HOU     106340           677 El Paso International       21340
6     ELP  LAX      93150           715 El Paso International       21340
7     ELP  PHX     227050           347 El Paso International       21340
8     ELP  SAT      66370           496 El Paso International       21340
9     ELP  DFW     319900           551 El Paso International       21340
10    ELP  SEA      37400          1368 El Paso International       21340
11    ELP  LAS     106140           583 El Paso International       21340
12    ELP  ATL      98170          1282 El Paso International       21340
13    ELP  ORD      53980          1236 El Paso International       21340
14    ELP  CLT      10180          1482 El Paso International       21340
15    ELP  MSY       1850           965 El Paso International       21340
16    ELP  MCO      16220          1516 El Paso International       21340
17    ELP  STL        750          1022 El Paso International       21340
18    ELP  SJC       2170           964 El Paso International       21340
19    ELP  BNA        550          1167 El Paso International       21340
20    ELP  OAK        850           988 El Paso International       21340
21    ELP  SLC        400           693 El Paso International       21340
22    ELP  OKC        930           563 El Paso International       21340
23    ELP  BWI        550          1741 El Paso International       21340
24    ELP  LGA       1250          1904 El Paso International       21340
25    ELP  LGB        190           699 El Paso International       21340
26    ELP  COS         70           492 El Paso International       21340
27    ELP  SAN      13320           636 El Paso International       21340
28    ELP  SMF       2670           981 El Paso International       21340
29    ELP  MDW       1090          1237 El Paso International       21340
30    ELP  RNO         90           920 El Paso International       21340
31    ELP  ONT        570           670 El Paso International       21340
32    ELP  CHS         80          1538 El Paso International       21340
33    ELP  SNA        390           681 El Paso International       21340
34    ELP  MIA        140          1631 El Paso International       21340
35    ELP  DCA       1030          1719 El Paso International       21340
36    ELP  MKE         30          1270 El Paso International       21340
37    ELP  BHM        460          1148 El Paso International       21340
38    ELP  BUR        240           715 El Paso International       21340
39    ELP  EUG         10          1247 El Paso International       21340
40    ELP  TPA       1820          1452 El Paso International       21340
41    ELP  BZN         10           997 El Paso International       21340
42    ELP  VPS         10          1178 El Paso International       21340
43    ELP  PDX        180          1288 El Paso International       21340
44    ELP  BOI         10           972 El Paso International       21340
45    ELP  OMA         90           875 El Paso International       21340
46    ELP  CMH       1190          1428 El Paso International       21340
47    ELP  SRQ         30          1463 El Paso International       21340
48    ELP  SFO        510           993 El Paso International       21340
49    ELP  PIT         40          1572 El Paso International       21340
50    ELP  ECP        130          1223 El Paso International       21340
51    ELP  RSW        180          1528 El Paso International       21340
52    ELP  MCI        270           834 El Paso International       21340
53    ELP  MSP         10          1147 El Paso International       21340
54    ELP  GEG         10          1239 El Paso International       21340
55    ELP  HRL        730           653 El Paso International       21340
56    ELP  GSP         10          1410 El Paso International       21340
57    ELP  AMA         10           358 El Paso International       21340
58    ELP  JAN        720           956 El Paso International       21340
59    ELP  DSM        200           972 El Paso International       21340
60    ELP  TUL         70           673 El Paso International       21340
61    ELP  FLL         80          1633 El Paso International       21340
62    ELP  PSP         20           605 El Paso International       21340
63    ELP  ICT        110           648 El Paso International       21340
64    ELP  IND         80          1249 El Paso International       21340
65    ELP  SDF         10          1247 El Paso International       21340
66    ELP  DTW         20          1455 El Paso International       21340
67    ELP  MEM         10           972 El Paso International       21340
   origin_cbsa_name                                 dest_name dest_cbsa
1       El Paso, TX      George Bush Intercontinental/Houston     26420
2       El Paso, TX          Austin - Bergstrom International     12420
3       El Paso, TX                         Dallas Love Field     19100
4       El Paso, TX                      Denver International     19740
5       El Paso, TX                           William P Hobby     26420
6       El Paso, TX                 Los Angeles International     31080
7       El Paso, TX          Phoenix Sky Harbor International     38060
8       El Paso, TX                 San Antonio International     41700
9       El Paso, TX           Dallas/Fort Worth International     19100
10      El Paso, TX              Seattle/Tacoma International     42660
11      El Paso, TX                    McCarran International     29820
12      El Paso, TX  Hartsfield-Jackson Atlanta International     12060
13      El Paso, TX              Chicago O'Hare International     16980
14      El Paso, TX           Charlotte Douglas International     16740
15      El Paso, TX Louis Armstrong New Orleans International     35380
16      El Paso, TX                     Orlando International     36740
17      El Paso, TX            St Louis Lambert International     41180
18      El Paso, TX   Norman Y. Mineta San Jose International     41940
19      El Paso, TX                   Nashville International     34980
20      El Paso, TX        Metropolitan Oakland International     41860
21      El Paso, TX              Salt Lake City International     41620
22      El Paso, TX                         Will Rogers World     36420
23      El Paso, TX        Baltimore/Washington International     12580
24      El Paso, TX                                 LaGuardia     35620
25      El Paso, TX                        Long Beach Airport     31080
26      El Paso, TX        City of Colorado Springs Municipal     17820
27      El Paso, TX                   San Diego International     41740
28      El Paso, TX                  Sacramento International     40900
29      El Paso, TX              Chicago Midway International     16980
30      El Paso, TX                  Reno/Tahoe International     39900
31      El Paso, TX                     Ontario International     40140
32      El Paso, TX              Charleston AFB/International     16700
33      El Paso, TX          John Wayne Airport-Orange County     31080
34      El Paso, TX                       Miami International     33100
35      El Paso, TX         Ronald Reagan Washington National     47900
36      El Paso, TX            General Mitchell International     33340
37      El Paso, TX    Birmingham-Shuttlesworth International     13820
38      El Paso, TX                                  Bob Hope     31080
39      El Paso, TX                        Mahlon Sweet Field     21660
40      El Paso, TX                       Tampa International     45300
41      El Paso, TX         Bozeman Yellowstone International     14580
42      El Paso, TX        Eglin AFB Destin Fort Walton Beach     18880
43      El Paso, TX                    Portland International     38900
44      El Paso, TX                        Boise Air Terminal     14260
45      El Paso, TX                           Eppley Airfield     36540
46      El Paso, TX         John Glenn Columbus International     18140
47      El Paso, TX          Sarasota/Bradenton International     35840
48      El Paso, TX               San Francisco International     41860
49      El Paso, TX                  Pittsburgh International     38300
50      El Paso, TX   Northwest Florida Beaches International     37460
51      El Paso, TX           Southwest Florida International     15980
52      El Paso, TX                 Kansas City International     28140
53      El Paso, TX         Minneapolis-St Paul International     33460
54      El Paso, TX                     Spokane International     44060
55      El Paso, TX                      Valley International     15180
56      El Paso, TX      Greenville-Spartanburg International     43900
57      El Paso, TX       Rick Husband Amarillo International     11100
58      El Paso, TX  Jackson Medgar Wiley Evers International     27140
59      El Paso, TX                  Des Moines International     19780
60      El Paso, TX                       Tulsa International     46140
61      El Paso, TX   Fort Lauderdale-Hollywood International     33100
62      El Paso, TX                Palm Springs International     40140
63      El Paso, TX                     Wichita Mid-Continent     48620
64      El Paso, TX                Indianapolis International     26900
65      El Paso, TX     Louisville Muhammad Ali International     31140
66      El Paso, TX                Detroit Metro Wayne County     19820
67      El Paso, TX                     Memphis International     32820
                                   dest_cbsa_name                 NAME.x
1            Houston-The Woodlands-Sugar Land, TX El Paso, TX Metro Area
2                Austin-Round Rock-Georgetown, TX El Paso, TX Metro Area
3                 Dallas-Fort Worth-Arlington, TX El Paso, TX Metro Area
4                      Denver-Aurora-Lakewood, CO El Paso, TX Metro Area
5            Houston-The Woodlands-Sugar Land, TX El Paso, TX Metro Area
6              Los Angeles-Long Beach-Anaheim, CA El Paso, TX Metro Area
7                       Phoenix-Mesa-Chandler, AZ El Paso, TX Metro Area
8                   San Antonio-New Braunfels, TX El Paso, TX Metro Area
9                 Dallas-Fort Worth-Arlington, TX El Paso, TX Metro Area
10                    Seattle-Tacoma-Bellevue, WA El Paso, TX Metro Area
11               Las Vegas-Henderson-Paradise, NV El Paso, TX Metro Area
12           Atlanta-Sandy Springs-Alpharetta, GA El Paso, TX Metro Area
13             Chicago-Naperville-Elgin, IL-IN-WI El Paso, TX Metro Area
14              Charlotte-Concord-Gastonia, NC-SC El Paso, TX Metro Area
15                       New Orleans-Metairie, LA El Paso, TX Metro Area
16                  Orlando-Kissimmee-Sanford, FL El Paso, TX Metro Area
17                               St. Louis, MO-IL El Paso, TX Metro Area
18             San Jose-Sunnyvale-Santa Clara, CA El Paso, TX Metro Area
19 Nashville-Davidson--Murfreesboro--Franklin, TN El Paso, TX Metro Area
20             San Francisco-Oakland-Berkeley, CA El Paso, TX Metro Area
21                             Salt Lake City, UT El Paso, TX Metro Area
22                              Oklahoma City, OK El Paso, TX Metro Area
23                  Baltimore-Columbia-Towson, MD El Paso, TX Metro Area
24          New York-Newark-Jersey City, NY-NJ-PA El Paso, TX Metro Area
25             Los Angeles-Long Beach-Anaheim, CA El Paso, TX Metro Area
26                           Colorado Springs, CO El Paso, TX Metro Area
27             San Diego-Chula Vista-Carlsbad, CA El Paso, TX Metro Area
28                Sacramento-Roseville-Folsom, CA El Paso, TX Metro Area
29             Chicago-Naperville-Elgin, IL-IN-WI El Paso, TX Metro Area
30                                       Reno, NV El Paso, TX Metro Area
31           Riverside-San Bernardino-Ontario, CA El Paso, TX Metro Area
32                Charleston-North Charleston, SC El Paso, TX Metro Area
33             Los Angeles-Long Beach-Anaheim, CA El Paso, TX Metro Area
34        Miami-Fort Lauderdale-Pompano Beach, FL El Paso, TX Metro Area
35   Washington-Arlington-Alexandria, DC-VA-MD-WV El Paso, TX Metro Area
36                         Milwaukee-Waukesha, WI El Paso, TX Metro Area
37                          Birmingham-Hoover, AL El Paso, TX Metro Area
38             Los Angeles-Long Beach-Anaheim, CA El Paso, TX Metro Area
39                         Eugene-Springfield, OR El Paso, TX Metro Area
40            Tampa-St. Petersburg-Clearwater, FL El Paso, TX Metro Area
41                                    Bozeman, MT El Paso, TX Metro Area
42         Crestview-Fort Walton Beach-Destin, FL El Paso, TX Metro Area
43            Portland-Vancouver-Hillsboro, OR-WA El Paso, TX Metro Area
44                                 Boise City, ID El Paso, TX Metro Area
45                    Omaha-Council Bluffs, NE-IA El Paso, TX Metro Area
46                                   Columbus, OH El Paso, TX Metro Area
47              North Port-Sarasota-Bradenton, FL El Paso, TX Metro Area
48             San Francisco-Oakland-Berkeley, CA El Paso, TX Metro Area
49                                 Pittsburgh, PA El Paso, TX Metro Area
50                                Panama City, FL El Paso, TX Metro Area
51                      Cape Coral-Fort Myers, FL El Paso, TX Metro Area
52                             Kansas City, MO-KS El Paso, TX Metro Area
53        Minneapolis-St. Paul-Bloomington, MN-WI El Paso, TX Metro Area
54                     Spokane-Spokane Valley, WA El Paso, TX Metro Area
55                      Brownsville-Harlingen, TX El Paso, TX Metro Area
56                                Spartanburg, SC El Paso, TX Metro Area
57                                   Amarillo, TX El Paso, TX Metro Area
58                                    Jackson, MS El Paso, TX Metro Area
59                 Des Moines-West Des Moines, IA El Paso, TX Metro Area
60                                      Tulsa, OK El Paso, TX Metro Area
61        Miami-Fort Lauderdale-Pompano Beach, FL El Paso, TX Metro Area
62           Riverside-San Bernardino-Ontario, CA El Paso, TX Metro Area
63                                    Wichita, KS El Paso, TX Metro Area
64               Indianapolis-Carmel-Anderson, IN El Paso, TX Metro Area
65             Louisville/Jefferson County, KY-IN El Paso, TX Metro Area
66                    Detroit-Warren-Dearborn, MI El Paso, TX Metro Area
67                              Memphis, TN-MS-AR El Paso, TX Metro Area
   total_populationE.x total_populationM.x age_distributionE.x
1               867161                  NA              431851
2               867161                  NA              431851
3               867161                  NA              431851
4               867161                  NA              431851
5               867161                  NA              431851
6               867161                  NA              431851
7               867161                  NA              431851
8               867161                  NA              431851
9               867161                  NA              431851
10              867161                  NA              431851
11              867161                  NA              431851
12              867161                  NA              431851
13              867161                  NA              431851
14              867161                  NA              431851
15              867161                  NA              431851
16              867161                  NA              431851
17              867161                  NA              431851
18              867161                  NA              431851
19              867161                  NA              431851
20              867161                  NA              431851
21              867161                  NA              431851
22              867161                  NA              431851
23              867161                  NA              431851
24              867161                  NA              431851
25              867161                  NA              431851
26              867161                  NA              431851
27              867161                  NA              431851
28              867161                  NA              431851
29              867161                  NA              431851
30              867161                  NA              431851
31              867161                  NA              431851
32              867161                  NA              431851
33              867161                  NA              431851
34              867161                  NA              431851
35              867161                  NA              431851
36              867161                  NA              431851
37              867161                  NA              431851
38              867161                  NA              431851
39              867161                  NA              431851
40              867161                  NA              431851
41              867161                  NA              431851
42              867161                  NA              431851
43              867161                  NA              431851
44              867161                  NA              431851
45              867161                  NA              431851
46              867161                  NA              431851
47              867161                  NA              431851
48              867161                  NA              431851
49              867161                  NA              431851
50              867161                  NA              431851
51              867161                  NA              431851
52              867161                  NA              431851
53              867161                  NA              431851
54              867161                  NA              431851
55              867161                  NA              431851
56              867161                  NA              431851
57              867161                  NA              431851
58              867161                  NA              431851
59              867161                  NA              431851
60              867161                  NA              431851
61              867161                  NA              431851
62              867161                  NA              431851
63              867161                  NA              431851
64              867161                  NA              431851
65              867161                  NA              431851
66              867161                  NA              431851
67              867161                  NA              431851
   age_distributionM.x
1                  177
2                  177
3                  177
4                  177
5                  177
6                  177
7                  177
8                  177
9                  177
10                 177
11                 177
12                 177
13                 177
14                 177
15                 177
16                 177
17                 177
18                 177
19                 177
20                 177
21                 177
22                 177
23                 177
24                 177
25                 177
26                 177
27                 177
28                 177
29                 177
30                 177
31                 177
32                 177
33                 177
34                 177
35                 177
36                 177
37                 177
38                 177
39                 177
40                 177
41                 177
42                 177
43                 177
44                 177
45                 177
46                 177
47                 177
48                 177
49                 177
50                 177
51                 177
52                 177
53                 177
54                 177
55                 177
56                 177
57                 177
58                 177
59                 177
60                 177
61                 177
62                 177
63                 177
64                 177
65                 177
66                 177
67                 177
                                                      NAME.y
1            Houston-The Woodlands-Sugar Land, TX Metro Area
2                Austin-Round Rock-Georgetown, TX Metro Area
3                 Dallas-Fort Worth-Arlington, TX Metro Area
4                      Denver-Aurora-Lakewood, CO Metro Area
5            Houston-The Woodlands-Sugar Land, TX Metro Area
6              Los Angeles-Long Beach-Anaheim, CA Metro Area
7                       Phoenix-Mesa-Chandler, AZ Metro Area
8                   San Antonio-New Braunfels, TX Metro Area
9                 Dallas-Fort Worth-Arlington, TX Metro Area
10                    Seattle-Tacoma-Bellevue, WA Metro Area
11               Las Vegas-Henderson-Paradise, NV Metro Area
12           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
13             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
14              Charlotte-Concord-Gastonia, NC-SC Metro Area
15                       New Orleans-Metairie, LA Metro Area
16                  Orlando-Kissimmee-Sanford, FL Metro Area
17                               St. Louis, MO-IL Metro Area
18             San Jose-Sunnyvale-Santa Clara, CA Metro Area
19 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
20             San Francisco-Oakland-Berkeley, CA Metro Area
21                             Salt Lake City, UT Metro Area
22                              Oklahoma City, OK Metro Area
23                  Baltimore-Columbia-Towson, MD Metro Area
24          New York-Newark-Jersey City, NY-NJ-PA Metro Area
25             Los Angeles-Long Beach-Anaheim, CA Metro Area
26                           Colorado Springs, CO Metro Area
27             San Diego-Chula Vista-Carlsbad, CA Metro Area
28                Sacramento-Roseville-Folsom, CA Metro Area
29             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
30                                       Reno, NV Metro Area
31           Riverside-San Bernardino-Ontario, CA Metro Area
32                Charleston-North Charleston, SC Metro Area
33             Los Angeles-Long Beach-Anaheim, CA Metro Area
34        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
35   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
36                         Milwaukee-Waukesha, WI Metro Area
37                          Birmingham-Hoover, AL Metro Area
38             Los Angeles-Long Beach-Anaheim, CA Metro Area
39                         Eugene-Springfield, OR Metro Area
40            Tampa-St. Petersburg-Clearwater, FL Metro Area
41                                    Bozeman, MT Micro Area
42         Crestview-Fort Walton Beach-Destin, FL Metro Area
43            Portland-Vancouver-Hillsboro, OR-WA Metro Area
44                                 Boise City, ID Metro Area
45                    Omaha-Council Bluffs, NE-IA Metro Area
46                                   Columbus, OH Metro Area
47              North Port-Sarasota-Bradenton, FL Metro Area
48             San Francisco-Oakland-Berkeley, CA Metro Area
49                                 Pittsburgh, PA Metro Area
50                                Panama City, FL Metro Area
51                      Cape Coral-Fort Myers, FL Metro Area
52                             Kansas City, MO-KS Metro Area
53        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
54                     Spokane-Spokane Valley, WA Metro Area
55                      Brownsville-Harlingen, TX Metro Area
56                                Spartanburg, SC Metro Area
57                                   Amarillo, TX Metro Area
58                                    Jackson, MS Metro Area
59                 Des Moines-West Des Moines, IA Metro Area
60                                      Tulsa, OK Metro Area
61        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
62           Riverside-San Bernardino-Ontario, CA Metro Area
63                                    Wichita, KS Metro Area
64               Indianapolis-Carmel-Anderson, IN Metro Area
65             Louisville/Jefferson County, KY-IN Metro Area
66                    Detroit-Warren-Dearborn, MI Metro Area
67                              Memphis, TN-MS-AR Metro Area
   total_populationE.y total_populationM.y age_distributionE.y
1              7142603                  NA             3563435
2              2296377                  NA             1160944
3              7673379                  NA             3806912
4              2959386                  NA             1493164
5              7142603                  NA             3563435
6             13111917                  NA             6515114
7              4864209                  NA             2434382
8              2570862                  NA             1280273
9              7673379                  NA             3806912
10             4001701                  NA             2024424
11             2265926                  NA             1137581
12             6094752                  NA             2965233
13             9566955                  NA             4718471
14             2668688                  NA             1305000
15             1264357                  NA              612537
16             2679298                  NA             1318555
17             2813523                  NA             1375126
18             1981584                  NA             1011796
19             1990873                  NA              978574
20             4692242                  NA             2342253
21             1254675                  NA              635422
22             1428923                  NA              708697
23             2840005                  NA             1374325
24            19908595                  NA             9713298
25            13111917                  NA             6515114
26              755081                  NA              384572
27             3289701                  NA             1667851
28             2394673                  NA             1181313
29             9566955                  NA             4718471
30              490769                  NA              249622
31             4610050                  NA             2315218
32              803398                  NA              394257
33            13111917                  NA             6515114
34             6123949                  NA             3001027
35             6346083                  NA             3128067
36             1568940                  NA              770847
37             1114368                  NA              538428
38            13111917                  NA             6515114
39              382218                  NA              189292
40             3194310                  NA             1562880
41              119685                  NA               62534
42              288639                  NA              146836
43             2505312                  NA             1250855
44              771602                  NA              388362
45              966688                  NA              483251
46             2137223                  NA             1061042
47              844461                  NA              407362
48             4692242                  NA             2342253
49             2365501                  NA             1162773
50              181055                  NA               90237
51              772902                  NA              380685
52             2190750                  NA             1084347
53             3678328                  NA             1837913
54              585485                  NA              292820
55              421854                  NA              208182
56              330119                  NA              161252
57              269278                 239              135933
58              591397                  NA              285117
59              711490                  NA              355020
60             1017724                  NA              503252
61             6123949                  NA             3001027
62             4610050                  NA             2315218
63              646794                  NA              322648
64             2109957                  NA             1038760
65             1282588                  NA              630858
66             4375604                  NA             2148947
67             1335804                  NA              641128
   age_distributionM.y grouped_dest_passengers   dest_pop
1                  532                17731000 1664226499
2                  432                 8760710  238823208
3                  442                34690690 2255973426
4                  389                28512200  571161498
5                  532                17731000 1664226499
6                   NA                30305010 4667842452
7                  157                19326570  671260842
8                  338                 3828130  244231890
9                  442                34690690 2255973426
10                  73                17698440  496210924
11                  NA                20921910  271911120
12                 880                36046920 1005634080
13                 425                33355530 2908354320
14                 381                19485700  416315328
15                 452                 5148900  117585201
16                 326                20309490  340270846
17                 423                 6010310  289792869
18                 354                 4742370  166453056
19                 496                 8668170  193114681
20                 320                17716130  882141496
21                 145                10784180  144287625
22                 296                 1729780   95737841
23                 218                 9819040  292520515
24                 650                38846110 6649470730
25                  NA                30305010 4667842452
26                 211                 1054220   52100589
27                  NA                 9543350  342128904
28                 252                 5386650  203547205
29                 425                33355530 2908354320
30                 187                 1909710   36316906
31                 243                 3835670  585476350
32                 163                 2215040   53827666
33                  NA                30305010 4667842452
34                 195                24375750 1567730944
35                 735                15908200 1484983422
36                 201                 2557720  112963680
37                 383                 1220480   64633344
38                  NA                30305010 4667842452
39                  38                  649750   12230976
40                 249                 9504360  344985480
41                 190                 1027250    6822045
42                 223                  666310   11834199
43                 406                 6214440  225478080
44                 230                 1944450   48610926
45                 270                 1914290   66701472
46                 342                 3256520  188075624
47                 124                 1457760   50667660
48                 320                17716130  882141496
49                 204                 3479050  175047074
50                 148                  729320    8690640
51                  73                 5232400   67242474
52                 492                 4302940  208121250
53                 458                12877300  540714216
54                 126                 1701380   30445220
55                 136                  449340   19827138
56                 101                  929150   14525236
57                 280                  329610   11040398
58                 421                  551030   23655880
59                 278                  984810   32017050
60                 211                 1230310   62081164
61                 195                24375750 1567730944
62                 243                 3835670  585476350
63                 249                  613820   22637790
64                 572                 3598220  170906517
65                 398                 1621270   84650808
66                 188                11581260  542574896
67                 280                 1820580   81484044
   grouped_origin_passengers origin_pop
1                    1709200   58099787
2                    1709200   58099787
3                    1709200   58099787
4                    1709200   58099787
5                    1709200   58099787
6                    1709200   58099787
7                    1709200   58099787
8                    1709200   58099787
9                    1709200   58099787
10                   1709200   58099787
11                   1709200   58099787
12                   1709200   58099787
13                   1709200   58099787
14                   1709200   58099787
15                   1709200   58099787
16                   1709200   58099787
17                   1709200   58099787
18                   1709200   58099787
19                   1709200   58099787
20                   1709200   58099787
21                   1709200   58099787
22                   1709200   58099787
23                   1709200   58099787
24                   1709200   58099787
25                   1709200   58099787
26                   1709200   58099787
27                   1709200   58099787
28                   1709200   58099787
29                   1709200   58099787
30                   1709200   58099787
31                   1709200   58099787
32                   1709200   58099787
33                   1709200   58099787
34                   1709200   58099787
35                   1709200   58099787
36                   1709200   58099787
37                   1709200   58099787
38                   1709200   58099787
39                   1709200   58099787
40                   1709200   58099787
41                   1709200   58099787
42                   1709200   58099787
43                   1709200   58099787
44                   1709200   58099787
45                   1709200   58099787
46                   1709200   58099787
47                   1709200   58099787
48                   1709200   58099787
49                   1709200   58099787
50                   1709200   58099787
51                   1709200   58099787
52                   1709200   58099787
53                   1709200   58099787
54                   1709200   58099787
55                   1709200   58099787
56                   1709200   58099787
57                   1709200   58099787
58                   1709200   58099787
59                   1709200   58099787
60                   1709200   58099787
61                   1709200   58099787
62                   1709200   58099787
63                   1709200   58099787
64                   1709200   58099787
65                   1709200   58099787
66                   1709200   58099787
67                   1709200   58099787

#finding data on TLH

TLH_info = join_2 |>
  filter(origin == "TLH")
print(TLH_info)
  origin dest passengers distancemiles          origin_name origin_cbsa
1    TLH  CLT      70920           386 Tallahassee Regional       45220
2    TLH  DFW      50650           767 Tallahassee Regional       45220
3    TLH  DCA      18470           716 Tallahassee Regional       45220
4    TLH  ATL     163310           223 Tallahassee Regional       45220
5    TLH  MIA      52550           402 Tallahassee Regional       45220
6    TLH  FLL       2470           393 Tallahassee Regional       45220
7    TLH  TPA       1210           200 Tallahassee Regional       45220
  origin_cbsa_name                                dest_name dest_cbsa
1  Tallahassee, FL          Charlotte Douglas International     16740
2  Tallahassee, FL          Dallas/Fort Worth International     19100
3  Tallahassee, FL        Ronald Reagan Washington National     47900
4  Tallahassee, FL Hartsfield-Jackson Atlanta International     12060
5  Tallahassee, FL                      Miami International     33100
6  Tallahassee, FL  Fort Lauderdale-Hollywood International     33100
7  Tallahassee, FL                      Tampa International     45300
                                dest_cbsa_name                     NAME.x
1            Charlotte-Concord-Gastonia, NC-SC Tallahassee, FL Metro Area
2              Dallas-Fort Worth-Arlington, TX Tallahassee, FL Metro Area
3 Washington-Arlington-Alexandria, DC-VA-MD-WV Tallahassee, FL Metro Area
4         Atlanta-Sandy Springs-Alpharetta, GA Tallahassee, FL Metro Area
5      Miami-Fort Lauderdale-Pompano Beach, FL Tallahassee, FL Metro Area
6      Miami-Fort Lauderdale-Pompano Beach, FL Tallahassee, FL Metro Area
7          Tampa-St. Petersburg-Clearwater, FL Tallahassee, FL Metro Area
  total_populationE.x total_populationM.x age_distributionE.x
1              386064                  NA              186619
2              386064                  NA              186619
3              386064                  NA              186619
4              386064                  NA              186619
5              386064                  NA              186619
6              386064                  NA              186619
7              386064                  NA              186619
  age_distributionM.x                                                  NAME.y
1                 280            Charlotte-Concord-Gastonia, NC-SC Metro Area
2                 280              Dallas-Fort Worth-Arlington, TX Metro Area
3                 280 Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
4                 280         Atlanta-Sandy Springs-Alpharetta, GA Metro Area
5                 280      Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
6                 280      Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
7                 280          Tampa-St. Petersburg-Clearwater, FL Metro Area
  total_populationE.y total_populationM.y age_distributionE.y
1             2668688                  NA             1305000
2             7673379                  NA             3806912
3             6346083                  NA             3128067
4             6094752                  NA             2965233
5             6123949                  NA             3001027
6             6123949                  NA             3001027
7             3194310                  NA             1562880
  age_distributionM.y grouped_dest_passengers   dest_pop
1                 381                19485700  416315328
2                 442                34690690 2255973426
3                 735                15908200 1484983422
4                 880                36046920 1005634080
5                 195                24375750 1567730944
6                 195                24375750 1567730944
7                 249                 9504360  344985480
  grouped_origin_passengers origin_pop
1                    359580    2702448
2                    359580    2702448
3                    359580    2702448
4                    359580    2702448
5                    359580    2702448
6                    359580    2702448
7                    359580    2702448

#finding data on SMF

SMF_info = join_2 |>
  filter(origin == "SMF")
print(SMF_info)
   origin dest passengers distancemiles              origin_name origin_cbsa
1     SMF  PDX     176540           479 Sacramento International       40900
2     SMF  SAN     555330           480 Sacramento International       40900
3     SMF  BOI      78540           437 Sacramento International       40900
4     SMF  SEA     423510           605 Sacramento International       40900
5     SMF  DEN     443410           909 Sacramento International       40900
6     SMF  BUR     251690           358 Sacramento International       40900
7     SMF  GEG      55540           649 Sacramento International       40900
8     SMF  LAS     540530           397 Sacramento International       40900
9     SMF  LAX     348030           373 Sacramento International       40900
10    SMF  ONT     206530           390 Sacramento International       40900
11    SMF  SNA     271480           404 Sacramento International       40900
12    SMF  LGB     150830           387 Sacramento International       40900
13    SMF  MDW      51720          1790 Sacramento International       40900
14    SMF  PHX     368000           647 Sacramento International       40900
15    SMF  PSP      47270           439 Sacramento International       40900
16    SMF  SLC     205270           532 Sacramento International       40900
17    SMF  MSP      78480          1517 Sacramento International       40900
18    SMF  EWR      40530          2500 Sacramento International       40900
19    SMF  DFW     213470          1431 Sacramento International       40900
20    SMF  IAH      55530          1609 Sacramento International       40900
21    SMF  BNA       7940          1917 Sacramento International       40900
22    SMF  ATL     140470          2092 Sacramento International       40900
23    SMF  JFK      40560          2521 Sacramento International       40900
24    SMF  IAD      39980          2358 Sacramento International       40900
25    SMF  STL      32390          1679 Sacramento International       40900
26    SMF  SFO      39330            86 Sacramento International       40900
27    SMF  AUS      59700          1481 Sacramento International       40900
28    SMF  ORD     139220          1781 Sacramento International       40900
29    SMF  HOU      43340          1624 Sacramento International       40900
30    SMF  OGG      53860          2404 Sacramento International       40900
31    SMF  DAL      64680          1442 Sacramento International       40900
32    SMF  CLT      37240          2244 Sacramento International       40900
33    SMF  HNL      55560          2462 Sacramento International       40900
34    SMF  MCO       1080          2408 Sacramento International       40900
35    SMF  ABQ        920           866 Sacramento International       40900
36    SMF  FLL        530          2549 Sacramento International       40900
37    SMF  CMH        930          2058 Sacramento International       40900
38    SMF  MSY       2030          1878 Sacramento International       40900
39    SMF  OMA        240          1370 Sacramento International       40900
40    SMF  TPA        600          2357 Sacramento International       40900
41    SMF  SAT       3860          1463 Sacramento International       40900
42    SMF  MEM         30          1761 Sacramento International       40900
43    SMF  MCI       2070          1442 Sacramento International       40900
44    SMF  RDU        160          2345 Sacramento International       40900
45    SMF  BHM        140          1968 Sacramento International       40900
46    SMF  MHT         20          2607 Sacramento International       40900
47    SMF  KOA      11770          2435 Sacramento International       40900
48    SMF  DTW        290          2013 Sacramento International       40900
49    SMF  MKE         80          1778 Sacramento International       40900
50    SMF  BZN        140           724 Sacramento International       40900
51    SMF  ELP        540           981 Sacramento International       40900
52    SMF  ORF        150          2462 Sacramento International       40900
53    SMF  BDL        130          2558 Sacramento International       40900
54    SMF  LGA        100          2514 Sacramento International       40900
55    SMF  BWI       1760          2395 Sacramento International       40900
56    SMF  CHS         40          2347 Sacramento International       40900
57    SMF  PVD         50          2624 Sacramento International       40900
58    SMF  BOS      13840          2636 Sacramento International       40900
59    SMF  PIT        360          2191 Sacramento International       40900
60    SMF  MIA        260          2552 Sacramento International       40900
61    SMF  TUS        420           752 Sacramento International       40900
62    SMF  COS        180           911 Sacramento International       40900
63    SMF  LBB        520          1156 Sacramento International       40900
64    SMF  TUL        310          1419 Sacramento International       40900
65    SMF  DCA       1370          2381 Sacramento International       40900
66    SMF  BUF         50          2241 Sacramento International       40900
67    SMF  CLE        150          2097 Sacramento International       40900
68    SMF  MAF        230          1187 Sacramento International       40900
69    SMF  EUG         10           384 Sacramento International       40900
70    SMF  JAN         20          1821 Sacramento International       40900
71    SMF  SAV        290          2305 Sacramento International       40900
72    SMF  SDF         80          1933 Sacramento International       40900
73    SMF  SBA      10350           310 Sacramento International       40900
74    SMF  ALB         20          2491 Sacramento International       40900
75    SMF  IND        580          1883 Sacramento International       40900
76    SMF  OKC        490          1342 Sacramento International       40900
77    SMF  DSM        140          1486 Sacramento International       40900
78    SMF  AMA         60          1124 Sacramento International       40900
79    SMF  RSW         30          2447 Sacramento International       40900
80    SMF  PWM         20          2653 Sacramento International       40900
81    SMF  PHL        280          2458 Sacramento International       40900
82    SMF  ECP         10          2107 Sacramento International       40900
                  origin_cbsa_name                                 dest_name
1  Sacramento-Roseville-Folsom, CA                    Portland International
2  Sacramento-Roseville-Folsom, CA                   San Diego International
3  Sacramento-Roseville-Folsom, CA                        Boise Air Terminal
4  Sacramento-Roseville-Folsom, CA              Seattle/Tacoma International
5  Sacramento-Roseville-Folsom, CA                      Denver International
6  Sacramento-Roseville-Folsom, CA                                  Bob Hope
7  Sacramento-Roseville-Folsom, CA                     Spokane International
8  Sacramento-Roseville-Folsom, CA                    McCarran International
9  Sacramento-Roseville-Folsom, CA                 Los Angeles International
10 Sacramento-Roseville-Folsom, CA                     Ontario International
11 Sacramento-Roseville-Folsom, CA          John Wayne Airport-Orange County
12 Sacramento-Roseville-Folsom, CA                        Long Beach Airport
13 Sacramento-Roseville-Folsom, CA              Chicago Midway International
14 Sacramento-Roseville-Folsom, CA          Phoenix Sky Harbor International
15 Sacramento-Roseville-Folsom, CA                Palm Springs International
16 Sacramento-Roseville-Folsom, CA              Salt Lake City International
17 Sacramento-Roseville-Folsom, CA         Minneapolis-St Paul International
18 Sacramento-Roseville-Folsom, CA              Newark Liberty International
19 Sacramento-Roseville-Folsom, CA           Dallas/Fort Worth International
20 Sacramento-Roseville-Folsom, CA      George Bush Intercontinental/Houston
21 Sacramento-Roseville-Folsom, CA                   Nashville International
22 Sacramento-Roseville-Folsom, CA  Hartsfield-Jackson Atlanta International
23 Sacramento-Roseville-Folsom, CA             John F. Kennedy International
24 Sacramento-Roseville-Folsom, CA           Washington Dulles International
25 Sacramento-Roseville-Folsom, CA            St Louis Lambert International
26 Sacramento-Roseville-Folsom, CA               San Francisco International
27 Sacramento-Roseville-Folsom, CA          Austin - Bergstrom International
28 Sacramento-Roseville-Folsom, CA              Chicago O'Hare International
29 Sacramento-Roseville-Folsom, CA                           William P Hobby
30 Sacramento-Roseville-Folsom, CA                           Kahului Airport
31 Sacramento-Roseville-Folsom, CA                         Dallas Love Field
32 Sacramento-Roseville-Folsom, CA           Charlotte Douglas International
33 Sacramento-Roseville-Folsom, CA             Daniel K Inouye International
34 Sacramento-Roseville-Folsom, CA                     Orlando International
35 Sacramento-Roseville-Folsom, CA         Albuquerque International Sunport
36 Sacramento-Roseville-Folsom, CA   Fort Lauderdale-Hollywood International
37 Sacramento-Roseville-Folsom, CA         John Glenn Columbus International
38 Sacramento-Roseville-Folsom, CA Louis Armstrong New Orleans International
39 Sacramento-Roseville-Folsom, CA                           Eppley Airfield
40 Sacramento-Roseville-Folsom, CA                       Tampa International
41 Sacramento-Roseville-Folsom, CA                 San Antonio International
42 Sacramento-Roseville-Folsom, CA                     Memphis International
43 Sacramento-Roseville-Folsom, CA                 Kansas City International
44 Sacramento-Roseville-Folsom, CA              Raleigh-Durham International
45 Sacramento-Roseville-Folsom, CA    Birmingham-Shuttlesworth International
46 Sacramento-Roseville-Folsom, CA                Manchester-Boston Regional
47 Sacramento-Roseville-Folsom, CA     Kona International Airport at Keahole
48 Sacramento-Roseville-Folsom, CA                Detroit Metro Wayne County
49 Sacramento-Roseville-Folsom, CA            General Mitchell International
50 Sacramento-Roseville-Folsom, CA         Bozeman Yellowstone International
51 Sacramento-Roseville-Folsom, CA                     El Paso International
52 Sacramento-Roseville-Folsom, CA                     Norfolk International
53 Sacramento-Roseville-Folsom, CA                     Bradley International
54 Sacramento-Roseville-Folsom, CA                                 LaGuardia
55 Sacramento-Roseville-Folsom, CA        Baltimore/Washington International
56 Sacramento-Roseville-Folsom, CA              Charleston AFB/International
57 Sacramento-Roseville-Folsom, CA              Theodore Francis Green State
58 Sacramento-Roseville-Folsom, CA                       Logan International
59 Sacramento-Roseville-Folsom, CA                  Pittsburgh International
60 Sacramento-Roseville-Folsom, CA                       Miami International
61 Sacramento-Roseville-Folsom, CA                      Tucson International
62 Sacramento-Roseville-Folsom, CA        City of Colorado Springs Municipal
63 Sacramento-Roseville-Folsom, CA       Lubbock Preston Smith International
64 Sacramento-Roseville-Folsom, CA                       Tulsa International
65 Sacramento-Roseville-Folsom, CA         Ronald Reagan Washington National
66 Sacramento-Roseville-Folsom, CA             Buffalo Niagara International
67 Sacramento-Roseville-Folsom, CA           Cleveland-Hopkins International
68 Sacramento-Roseville-Folsom, CA  Midland International Air and Space Port
69 Sacramento-Roseville-Folsom, CA                        Mahlon Sweet Field
70 Sacramento-Roseville-Folsom, CA  Jackson Medgar Wiley Evers International
71 Sacramento-Roseville-Folsom, CA        Savannah/Hilton Head International
72 Sacramento-Roseville-Folsom, CA     Louisville Muhammad Ali International
73 Sacramento-Roseville-Folsom, CA                   Santa Barbara Municipal
74 Sacramento-Roseville-Folsom, CA                      Albany International
75 Sacramento-Roseville-Folsom, CA                Indianapolis International
76 Sacramento-Roseville-Folsom, CA                         Will Rogers World
77 Sacramento-Roseville-Folsom, CA                  Des Moines International
78 Sacramento-Roseville-Folsom, CA       Rick Husband Amarillo International
79 Sacramento-Roseville-Folsom, CA           Southwest Florida International
80 Sacramento-Roseville-Folsom, CA            Portland International Jetport
81 Sacramento-Roseville-Folsom, CA                Philadelphia International
82 Sacramento-Roseville-Folsom, CA   Northwest Florida Beaches International
   dest_cbsa                                 dest_cbsa_name
1      38900            Portland-Vancouver-Hillsboro, OR-WA
2      41740             San Diego-Chula Vista-Carlsbad, CA
3      14260                                 Boise City, ID
4      42660                    Seattle-Tacoma-Bellevue, WA
5      19740                     Denver-Aurora-Lakewood, CO
6      31080             Los Angeles-Long Beach-Anaheim, CA
7      44060                     Spokane-Spokane Valley, WA
8      29820               Las Vegas-Henderson-Paradise, NV
9      31080             Los Angeles-Long Beach-Anaheim, CA
10     40140           Riverside-San Bernardino-Ontario, CA
11     31080             Los Angeles-Long Beach-Anaheim, CA
12     31080             Los Angeles-Long Beach-Anaheim, CA
13     16980             Chicago-Naperville-Elgin, IL-IN-WI
14     38060                      Phoenix-Mesa-Chandler, AZ
15     40140           Riverside-San Bernardino-Ontario, CA
16     41620                             Salt Lake City, UT
17     33460        Minneapolis-St. Paul-Bloomington, MN-WI
18     35620          New York-Newark-Jersey City, NY-NJ-PA
19     19100                Dallas-Fort Worth-Arlington, TX
20     26420           Houston-The Woodlands-Sugar Land, TX
21     34980 Nashville-Davidson--Murfreesboro--Franklin, TN
22     12060           Atlanta-Sandy Springs-Alpharetta, GA
23     35620          New York-Newark-Jersey City, NY-NJ-PA
24     47900   Washington-Arlington-Alexandria, DC-VA-MD-WV
25     41180                               St. Louis, MO-IL
26     41860             San Francisco-Oakland-Berkeley, CA
27     12420               Austin-Round Rock-Georgetown, TX
28     16980             Chicago-Naperville-Elgin, IL-IN-WI
29     26420           Houston-The Woodlands-Sugar Land, TX
30     27980                    Kahului-Wailuku-Lahaina, HI
31     19100                Dallas-Fort Worth-Arlington, TX
32     16740              Charlotte-Concord-Gastonia, NC-SC
33     46520                             Urban Honolulu, HI
34     36740                  Orlando-Kissimmee-Sanford, FL
35     10740                                Albuquerque, NM
36     33100        Miami-Fort Lauderdale-Pompano Beach, FL
37     18140                                   Columbus, OH
38     35380                       New Orleans-Metairie, LA
39     36540                    Omaha-Council Bluffs, NE-IA
40     45300            Tampa-St. Petersburg-Clearwater, FL
41     41700                  San Antonio-New Braunfels, TX
42     32820                              Memphis, TN-MS-AR
43     28140                             Kansas City, MO-KS
44     39580                               Raleigh-Cary, NC
45     13820                          Birmingham-Hoover, AL
46     31700                          Manchester-Nashua, NH
47     25900                                       Hilo, HI
48     19820                    Detroit-Warren-Dearborn, MI
49     33340                         Milwaukee-Waukesha, WI
50     14580                                    Bozeman, MT
51     21340                                    El Paso, TX
52     47260     Virginia Beach-Norfolk-Newport News, VA-NC
53     25540          Hartford-East Hartford-Middletown, CT
54     35620          New York-Newark-Jersey City, NY-NJ-PA
55     12580                  Baltimore-Columbia-Towson, MD
56     16700                Charleston-North Charleston, SC
57     39300                      Providence-Warwick, RI-MA
58     14460                 Boston-Cambridge-Newton, MA-NH
59     38300                                 Pittsburgh, PA
60     33100        Miami-Fort Lauderdale-Pompano Beach, FL
61     46060                                     Tucson, AZ
62     17820                           Colorado Springs, CO
63     31180                                    Lubbock, TX
64     46140                                      Tulsa, OK
65     47900   Washington-Arlington-Alexandria, DC-VA-MD-WV
66     15380                        Buffalo-Cheektowaga, NY
67     17460                           Cleveland-Elyria, OH
68     33260                                    Midland, TX
69     21660                         Eugene-Springfield, OR
70     27140                                    Jackson, MS
71     42340                                   Savannah, GA
72     31140             Louisville/Jefferson County, KY-IN
73     42200                  Santa Maria-Santa Barbara, CA
74     10580                    Albany-Schenectady-Troy, NY
75     26900               Indianapolis-Carmel-Anderson, IN
76     36420                              Oklahoma City, OK
77     19780                 Des Moines-West Des Moines, IA
78     11100                                   Amarillo, TX
79     15980                      Cape Coral-Fort Myers, FL
80     38860                    Portland-South Portland, ME
81     37980    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD
82     37460                                Panama City, FL
                                       NAME.x total_populationE.x
1  Sacramento-Roseville-Folsom, CA Metro Area             2394673
2  Sacramento-Roseville-Folsom, CA Metro Area             2394673
3  Sacramento-Roseville-Folsom, CA Metro Area             2394673
4  Sacramento-Roseville-Folsom, CA Metro Area             2394673
5  Sacramento-Roseville-Folsom, CA Metro Area             2394673
6  Sacramento-Roseville-Folsom, CA Metro Area             2394673
7  Sacramento-Roseville-Folsom, CA Metro Area             2394673
8  Sacramento-Roseville-Folsom, CA Metro Area             2394673
9  Sacramento-Roseville-Folsom, CA Metro Area             2394673
10 Sacramento-Roseville-Folsom, CA Metro Area             2394673
11 Sacramento-Roseville-Folsom, CA Metro Area             2394673
12 Sacramento-Roseville-Folsom, CA Metro Area             2394673
13 Sacramento-Roseville-Folsom, CA Metro Area             2394673
14 Sacramento-Roseville-Folsom, CA Metro Area             2394673
15 Sacramento-Roseville-Folsom, CA Metro Area             2394673
16 Sacramento-Roseville-Folsom, CA Metro Area             2394673
17 Sacramento-Roseville-Folsom, CA Metro Area             2394673
18 Sacramento-Roseville-Folsom, CA Metro Area             2394673
19 Sacramento-Roseville-Folsom, CA Metro Area             2394673
20 Sacramento-Roseville-Folsom, CA Metro Area             2394673
21 Sacramento-Roseville-Folsom, CA Metro Area             2394673
22 Sacramento-Roseville-Folsom, CA Metro Area             2394673
23 Sacramento-Roseville-Folsom, CA Metro Area             2394673
24 Sacramento-Roseville-Folsom, CA Metro Area             2394673
25 Sacramento-Roseville-Folsom, CA Metro Area             2394673
26 Sacramento-Roseville-Folsom, CA Metro Area             2394673
27 Sacramento-Roseville-Folsom, CA Metro Area             2394673
28 Sacramento-Roseville-Folsom, CA Metro Area             2394673
29 Sacramento-Roseville-Folsom, CA Metro Area             2394673
30 Sacramento-Roseville-Folsom, CA Metro Area             2394673
31 Sacramento-Roseville-Folsom, CA Metro Area             2394673
32 Sacramento-Roseville-Folsom, CA Metro Area             2394673
33 Sacramento-Roseville-Folsom, CA Metro Area             2394673
34 Sacramento-Roseville-Folsom, CA Metro Area             2394673
35 Sacramento-Roseville-Folsom, CA Metro Area             2394673
36 Sacramento-Roseville-Folsom, CA Metro Area             2394673
37 Sacramento-Roseville-Folsom, CA Metro Area             2394673
38 Sacramento-Roseville-Folsom, CA Metro Area             2394673
39 Sacramento-Roseville-Folsom, CA Metro Area             2394673
40 Sacramento-Roseville-Folsom, CA Metro Area             2394673
41 Sacramento-Roseville-Folsom, CA Metro Area             2394673
42 Sacramento-Roseville-Folsom, CA Metro Area             2394673
43 Sacramento-Roseville-Folsom, CA Metro Area             2394673
44 Sacramento-Roseville-Folsom, CA Metro Area             2394673
45 Sacramento-Roseville-Folsom, CA Metro Area             2394673
46 Sacramento-Roseville-Folsom, CA Metro Area             2394673
47 Sacramento-Roseville-Folsom, CA Metro Area             2394673
48 Sacramento-Roseville-Folsom, CA Metro Area             2394673
49 Sacramento-Roseville-Folsom, CA Metro Area             2394673
50 Sacramento-Roseville-Folsom, CA Metro Area             2394673
51 Sacramento-Roseville-Folsom, CA Metro Area             2394673
52 Sacramento-Roseville-Folsom, CA Metro Area             2394673
53 Sacramento-Roseville-Folsom, CA Metro Area             2394673
54 Sacramento-Roseville-Folsom, CA Metro Area             2394673
55 Sacramento-Roseville-Folsom, CA Metro Area             2394673
56 Sacramento-Roseville-Folsom, CA Metro Area             2394673
57 Sacramento-Roseville-Folsom, CA Metro Area             2394673
58 Sacramento-Roseville-Folsom, CA Metro Area             2394673
59 Sacramento-Roseville-Folsom, CA Metro Area             2394673
60 Sacramento-Roseville-Folsom, CA Metro Area             2394673
61 Sacramento-Roseville-Folsom, CA Metro Area             2394673
62 Sacramento-Roseville-Folsom, CA Metro Area             2394673
63 Sacramento-Roseville-Folsom, CA Metro Area             2394673
64 Sacramento-Roseville-Folsom, CA Metro Area             2394673
65 Sacramento-Roseville-Folsom, CA Metro Area             2394673
66 Sacramento-Roseville-Folsom, CA Metro Area             2394673
67 Sacramento-Roseville-Folsom, CA Metro Area             2394673
68 Sacramento-Roseville-Folsom, CA Metro Area             2394673
69 Sacramento-Roseville-Folsom, CA Metro Area             2394673
70 Sacramento-Roseville-Folsom, CA Metro Area             2394673
71 Sacramento-Roseville-Folsom, CA Metro Area             2394673
72 Sacramento-Roseville-Folsom, CA Metro Area             2394673
73 Sacramento-Roseville-Folsom, CA Metro Area             2394673
74 Sacramento-Roseville-Folsom, CA Metro Area             2394673
75 Sacramento-Roseville-Folsom, CA Metro Area             2394673
76 Sacramento-Roseville-Folsom, CA Metro Area             2394673
77 Sacramento-Roseville-Folsom, CA Metro Area             2394673
78 Sacramento-Roseville-Folsom, CA Metro Area             2394673
79 Sacramento-Roseville-Folsom, CA Metro Area             2394673
80 Sacramento-Roseville-Folsom, CA Metro Area             2394673
81 Sacramento-Roseville-Folsom, CA Metro Area             2394673
82 Sacramento-Roseville-Folsom, CA Metro Area             2394673
   total_populationM.x age_distributionE.x age_distributionM.x
1                   NA             1181313                 252
2                   NA             1181313                 252
3                   NA             1181313                 252
4                   NA             1181313                 252
5                   NA             1181313                 252
6                   NA             1181313                 252
7                   NA             1181313                 252
8                   NA             1181313                 252
9                   NA             1181313                 252
10                  NA             1181313                 252
11                  NA             1181313                 252
12                  NA             1181313                 252
13                  NA             1181313                 252
14                  NA             1181313                 252
15                  NA             1181313                 252
16                  NA             1181313                 252
17                  NA             1181313                 252
18                  NA             1181313                 252
19                  NA             1181313                 252
20                  NA             1181313                 252
21                  NA             1181313                 252
22                  NA             1181313                 252
23                  NA             1181313                 252
24                  NA             1181313                 252
25                  NA             1181313                 252
26                  NA             1181313                 252
27                  NA             1181313                 252
28                  NA             1181313                 252
29                  NA             1181313                 252
30                  NA             1181313                 252
31                  NA             1181313                 252
32                  NA             1181313                 252
33                  NA             1181313                 252
34                  NA             1181313                 252
35                  NA             1181313                 252
36                  NA             1181313                 252
37                  NA             1181313                 252
38                  NA             1181313                 252
39                  NA             1181313                 252
40                  NA             1181313                 252
41                  NA             1181313                 252
42                  NA             1181313                 252
43                  NA             1181313                 252
44                  NA             1181313                 252
45                  NA             1181313                 252
46                  NA             1181313                 252
47                  NA             1181313                 252
48                  NA             1181313                 252
49                  NA             1181313                 252
50                  NA             1181313                 252
51                  NA             1181313                 252
52                  NA             1181313                 252
53                  NA             1181313                 252
54                  NA             1181313                 252
55                  NA             1181313                 252
56                  NA             1181313                 252
57                  NA             1181313                 252
58                  NA             1181313                 252
59                  NA             1181313                 252
60                  NA             1181313                 252
61                  NA             1181313                 252
62                  NA             1181313                 252
63                  NA             1181313                 252
64                  NA             1181313                 252
65                  NA             1181313                 252
66                  NA             1181313                 252
67                  NA             1181313                 252
68                  NA             1181313                 252
69                  NA             1181313                 252
70                  NA             1181313                 252
71                  NA             1181313                 252
72                  NA             1181313                 252
73                  NA             1181313                 252
74                  NA             1181313                 252
75                  NA             1181313                 252
76                  NA             1181313                 252
77                  NA             1181313                 252
78                  NA             1181313                 252
79                  NA             1181313                 252
80                  NA             1181313                 252
81                  NA             1181313                 252
82                  NA             1181313                 252
                                                      NAME.y
1             Portland-Vancouver-Hillsboro, OR-WA Metro Area
2              San Diego-Chula Vista-Carlsbad, CA Metro Area
3                                  Boise City, ID Metro Area
4                     Seattle-Tacoma-Bellevue, WA Metro Area
5                      Denver-Aurora-Lakewood, CO Metro Area
6              Los Angeles-Long Beach-Anaheim, CA Metro Area
7                      Spokane-Spokane Valley, WA Metro Area
8                Las Vegas-Henderson-Paradise, NV Metro Area
9              Los Angeles-Long Beach-Anaheim, CA Metro Area
10           Riverside-San Bernardino-Ontario, CA Metro Area
11             Los Angeles-Long Beach-Anaheim, CA Metro Area
12             Los Angeles-Long Beach-Anaheim, CA Metro Area
13             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
14                      Phoenix-Mesa-Chandler, AZ Metro Area
15           Riverside-San Bernardino-Ontario, CA Metro Area
16                             Salt Lake City, UT Metro Area
17        Minneapolis-St. Paul-Bloomington, MN-WI Metro Area
18          New York-Newark-Jersey City, NY-NJ-PA Metro Area
19                Dallas-Fort Worth-Arlington, TX Metro Area
20           Houston-The Woodlands-Sugar Land, TX Metro Area
21 Nashville-Davidson--Murfreesboro--Franklin, TN Metro Area
22           Atlanta-Sandy Springs-Alpharetta, GA Metro Area
23          New York-Newark-Jersey City, NY-NJ-PA Metro Area
24   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
25                               St. Louis, MO-IL Metro Area
26             San Francisco-Oakland-Berkeley, CA Metro Area
27               Austin-Round Rock-Georgetown, TX Metro Area
28             Chicago-Naperville-Elgin, IL-IN-WI Metro Area
29           Houston-The Woodlands-Sugar Land, TX Metro Area
30                    Kahului-Wailuku-Lahaina, HI Metro Area
31                Dallas-Fort Worth-Arlington, TX Metro Area
32              Charlotte-Concord-Gastonia, NC-SC Metro Area
33                             Urban Honolulu, HI Metro Area
34                  Orlando-Kissimmee-Sanford, FL Metro Area
35                                Albuquerque, NM Metro Area
36        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
37                                   Columbus, OH Metro Area
38                       New Orleans-Metairie, LA Metro Area
39                    Omaha-Council Bluffs, NE-IA Metro Area
40            Tampa-St. Petersburg-Clearwater, FL Metro Area
41                  San Antonio-New Braunfels, TX Metro Area
42                              Memphis, TN-MS-AR Metro Area
43                             Kansas City, MO-KS Metro Area
44                               Raleigh-Cary, NC Metro Area
45                          Birmingham-Hoover, AL Metro Area
46                          Manchester-Nashua, NH Metro Area
47                                       Hilo, HI Micro Area
48                    Detroit-Warren-Dearborn, MI Metro Area
49                         Milwaukee-Waukesha, WI Metro Area
50                                    Bozeman, MT Micro Area
51                                    El Paso, TX Metro Area
52     Virginia Beach-Norfolk-Newport News, VA-NC Metro Area
53          Hartford-East Hartford-Middletown, CT Metro Area
54          New York-Newark-Jersey City, NY-NJ-PA Metro Area
55                  Baltimore-Columbia-Towson, MD Metro Area
56                Charleston-North Charleston, SC Metro Area
57                      Providence-Warwick, RI-MA Metro Area
58                 Boston-Cambridge-Newton, MA-NH Metro Area
59                                 Pittsburgh, PA Metro Area
60        Miami-Fort Lauderdale-Pompano Beach, FL Metro Area
61                                     Tucson, AZ Metro Area
62                           Colorado Springs, CO Metro Area
63                                    Lubbock, TX Metro Area
64                                      Tulsa, OK Metro Area
65   Washington-Arlington-Alexandria, DC-VA-MD-WV Metro Area
66                        Buffalo-Cheektowaga, NY Metro Area
67                           Cleveland-Elyria, OH Metro Area
68                                    Midland, TX Metro Area
69                         Eugene-Springfield, OR Metro Area
70                                    Jackson, MS Metro Area
71                                   Savannah, GA Metro Area
72             Louisville/Jefferson County, KY-IN Metro Area
73                  Santa Maria-Santa Barbara, CA Metro Area
74                    Albany-Schenectady-Troy, NY Metro Area
75               Indianapolis-Carmel-Anderson, IN Metro Area
76                              Oklahoma City, OK Metro Area
77                 Des Moines-West Des Moines, IA Metro Area
78                                   Amarillo, TX Metro Area
79                      Cape Coral-Fort Myers, FL Metro Area
80                    Portland-South Portland, ME Metro Area
81    Philadelphia-Camden-Wilmington, PA-NJ-DE-MD Metro Area
82                                Panama City, FL Metro Area
   total_populationE.y total_populationM.y age_distributionE.y
1              2505312                  NA             1250855
2              3289701                  NA             1667851
3               771602                  NA              388362
4              4001701                  NA             2024424
5              2959386                  NA             1493164
6             13111917                  NA             6515114
7               585485                  NA              292820
8              2265926                  NA             1137581
9             13111917                  NA             6515114
10             4610050                  NA             2315218
11            13111917                  NA             6515114
12            13111917                  NA             6515114
13             9566955                  NA             4718471
14             4864209                  NA             2434382
15             4610050                  NA             2315218
16             1254675                  NA              635422
17             3678328                  NA             1837913
18            19908595                  NA             9713298
19             7673379                  NA             3806912
20             7142603                  NA             3563435
21             1990873                  NA              978574
22             6094752                  NA             2965233
23            19908595                  NA             9713298
24             6346083                  NA             3128067
25             2813523                  NA             1375126
26             4692242                  NA             2342253
27             2296377                  NA             1160944
28             9566955                  NA             4718471
29             7142603                  NA             3563435
30              164765                  21               82304
31             7673379                  NA             3806912
32             2668688                  NA             1305000
33             1010100                  NA              512085
34             2679298                  NA             1318555
35              915968                  NA              453044
36             6123949                  NA             3001027
37             2137223                  NA             1061042
38             1264357                  NA              612537
39              966688                  NA              483251
40             3194310                  NA             1562880
41             2570862                  NA             1280273
42             1335804                  NA              641128
43             2190750                  NA             1084347
44             1420825                  NA              698689
45             1114368                  NA              538428
46              422733                  NA              212276
47              202163                  NA              100828
48             4375604                  NA             2148947
49             1568940                  NA              770847
50              119685                  NA               62534
51              867161                  NA              431851
52             1798025                  NA              886709
53             1215703                 422              594920
54            19908595                  NA             9713298
55             2840005                  NA             1374325
56              803398                  NA              394257
57             1670949                  NA              818990
58             4912449                  NA             2407307
59             2365501                  NA             1162773
60             6123949                  NA             3001027
61             1042393                  NA              516095
62              755081                  NA              384572
63              322285                  NA              159719
64             1017724                  NA              503252
65             6346083                  NA             3128067
66             1163462                  NA              568061
67             2079759                  NA             1012336
68              174621                  NA               89435
69              382218                  NA              189292
70              591397                  NA              285117
71              406575                  NA              197548
72             1282588                  NA              630858
73              445213                  NA              223753
74              901729                  NA              444836
75             2109957                  NA             1038760
76             1428923                  NA              708697
77              711490                  NA              355020
78              269278                 239              135933
79              772902                  NA              380685
80              552916                  NA              270938
81             6232894                  NA             3033772
82              181055                  NA               90237
   age_distributionM.y grouped_dest_passengers   dest_pop
1                  406                 6214440  225478080
2                   NA                 9543350  342128904
3                  230                 1944450   48610926
4                   73                17698440  496210924
5                  389                28512200  571161498
6                   NA                30305010 4667842452
7                  126                 1701380   30445220
8                   NA                20921910  271911120
9                   NA                30305010 4667842452
10                 243                 3835670  585476350
11                  NA                30305010 4667842452
12                  NA                30305010 4667842452
13                 425                33355530 2908354320
14                 157                19326570  671260842
15                 243                 3835670  585476350
16                 145                10784180  144287625
17                 458                12877300  540714216
18                 650                38846110 6649470730
19                 442                34690690 2255973426
20                 532                17731000 1664226499
21                 496                 8668170  193114681
22                 880                36046920 1005634080
23                 650                38846110 6649470730
24                 735                15908200 1484983422
25                 423                 6010310  289792869
26                 320                17716130  882141496
27                 432                 8760710  238823208
28                 425                33355530 2908354320
29                 532                17731000 1664226499
30                 124                 2131480    4119125
31                 442                34690690 2255973426
32                 381                19485700  416315328
33                  30                 3462700   33333300
34                 326                20309490  340270846
35                 376                 2092800   69613568
36                 195                24375750 1567730944
37                 342                 3256520  188075624
38                 452                 5148900  117585201
39                 270                 1914290   66701472
40                 249                 9504360  344985480
41                 338                 3828130  244231890
42                 280                 1820580   81484044
43                 492                 4302940  208121250
44                 221                 5061900  116507650
45                 383                 1220480   64633344
46                  44                  632460   18177519
47                  55                 1366930    5256238
48                 188                11581260  542574896
49                 201                 2557720  112963680
50                 190                 1027250    6822045
51                 177                 1610000   60701270
52                 642                 1864750  109679525
53                 926                 2608440   72942180
54                 650                38846110 6649470730
55                 218                 9819040  292520515
56                 163                 2215040   53827666
57                 468                 1422430   90231246
58                 403                12843550  550194288
59                 204                 3479050  175047074
60                 195                24375750 1567730944
61                 117                 1526650   60458794
62                 211                 1054220   52100589
63                  88                  457820   14825110
64                 211                 1230310   62081164
65                 735                15908200 1484983422
66                 155                 1892340   73298106
67                 195                 3844560  153902166
68                 316                  573110    8905671
69                  38                  649750   12230976
70                 421                  551030   23655880
71                 414                 1474740   23174775
72                 398                 1621270   84650808
73                 185                  568460   16472881
74                 160                 1166370   51398553
75                 572                 3598220  170906517
76                 296                 1729780   95737841
77                 278                  984810   32017050
78                 280                  329610   11040398
79                  73                 5232400   67242474
80                 223                  953610   23222472
81                 332                 9903470  735481492
82                 148                  729320    8690640
   grouped_origin_passengers origin_pop
1                    5374230  196363186
2                    5374230  196363186
3                    5374230  196363186
4                    5374230  196363186
5                    5374230  196363186
6                    5374230  196363186
7                    5374230  196363186
8                    5374230  196363186
9                    5374230  196363186
10                   5374230  196363186
11                   5374230  196363186
12                   5374230  196363186
13                   5374230  196363186
14                   5374230  196363186
15                   5374230  196363186
16                   5374230  196363186
17                   5374230  196363186
18                   5374230  196363186
19                   5374230  196363186
20                   5374230  196363186
21                   5374230  196363186
22                   5374230  196363186
23                   5374230  196363186
24                   5374230  196363186
25                   5374230  196363186
26                   5374230  196363186
27                   5374230  196363186
28                   5374230  196363186
29                   5374230  196363186
30                   5374230  196363186
31                   5374230  196363186
32                   5374230  196363186
33                   5374230  196363186
34                   5374230  196363186
35                   5374230  196363186
36                   5374230  196363186
37                   5374230  196363186
38                   5374230  196363186
39                   5374230  196363186
40                   5374230  196363186
41                   5374230  196363186
42                   5374230  196363186
43                   5374230  196363186
44                   5374230  196363186
45                   5374230  196363186
46                   5374230  196363186
47                   5374230  196363186
48                   5374230  196363186
49                   5374230  196363186
50                   5374230  196363186
51                   5374230  196363186
52                   5374230  196363186
53                   5374230  196363186
54                   5374230  196363186
55                   5374230  196363186
56                   5374230  196363186
57                   5374230  196363186
58                   5374230  196363186
59                   5374230  196363186
60                   5374230  196363186
61                   5374230  196363186
62                   5374230  196363186
63                   5374230  196363186
64                   5374230  196363186
65                   5374230  196363186
66                   5374230  196363186
67                   5374230  196363186
68                   5374230  196363186
69                   5374230  196363186
70                   5374230  196363186
71                   5374230  196363186
72                   5374230  196363186
73                   5374230  196363186
74                   5374230  196363186
75                   5374230  196363186
76                   5374230  196363186
77                   5374230  196363186
78                   5374230  196363186
79                   5374230  196363186
80                   5374230  196363186
81                   5374230  196363186
82                   5374230  196363186